blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 2
247
| content_id
stringlengths 40
40
| detected_licenses
listlengths 0
57
| license_type
stringclasses 2
values | repo_name
stringlengths 4
111
| snapshot_id
stringlengths 40
40
| revision_id
stringlengths 40
40
| branch_name
stringlengths 4
58
| visit_date
timestamp[ns]date 2015-07-25 18:16:41
2023-09-06 10:45:08
| revision_date
timestamp[ns]date 1970-01-14 14:03:36
2023-09-06 06:22:19
| committer_date
timestamp[ns]date 1970-01-14 14:03:36
2023-09-06 06:22:19
| github_id
int64 3.89k
689M
⌀ | star_events_count
int64 0
209k
| fork_events_count
int64 0
110k
| gha_license_id
stringclasses 25
values | gha_event_created_at
timestamp[ns]date 2012-06-07 00:51:45
2023-09-14 21:58:52
⌀ | gha_created_at
timestamp[ns]date 2008-03-27 23:40:48
2023-08-24 19:49:39
⌀ | gha_language
stringclasses 159
values | src_encoding
stringclasses 34
values | language
stringclasses 1
value | is_vendor
bool 1
class | is_generated
bool 2
classes | length_bytes
int64 7
10.5M
| extension
stringclasses 111
values | filename
stringlengths 1
195
| text
stringlengths 7
10.5M
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
8ca7f655e2b54179029520f0127dbd39d7543ea5
|
f1a2325795dcd90f940e45a3535ac3a0cb765616
|
/development/TelecomServices/SNMP/src/SNMP_RmonEtherCollector.cpp
|
ba238a5f7821185c0bbcf654fe2a0d777da4d8ea
|
[] |
no_license
|
MoonStart/Frame
|
45c15d1e6febd7eb390b74b891bc5c40646db5de
|
e3a3574e5c243d9282778382509858514585ae03
|
refs/heads/master
| 2021-01-01T19:09:58.670794
| 2015-12-02T07:52:55
| 2015-12-02T07:52:55
| 31,520,344
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,602
|
cpp
|
SNMP_RmonEtherCollector.cpp
|
/*--------------------------------------------------------------------------
Copyright(c) Tellabs Transport Group. All rights reserved
SUBSYSTEM:
TARGET :
AUTHOR :
DESCRIPTION:
--------------------------------------------------------------------------*/
#include <ExecutionSupport/FC_OneShotProcess.h>
#include <Monitoring/MON_RmonCounters.h>
#include <Monitoring/MON_AppIf.h>
#include <SNMP/SNMP_RmonEtherCollector.h>
#include <T6100/T6100_TelecomIf.h>
#include <SNMP/SNMP_RmonEtherCount.h>
//-----------------------------------------------------------------
SNMP_RmonEtherCollector::SNMP_RmonEtherCollector (T6100_TelecomIf& theTelecomIf,
MON_AppIf& theMonApp,
SNMP_RmonEtherCountRegion* theCountRegion,
CT_IntfId thePortId) :
SNMP_Collector(theTelecomIf, theMonApp, "RMON", thePortId),
myRmonEtherCountRegion(theCountRegion)
{
// Nothing to do for now.
}
//-----------------------------------------------------------------
SNMP_RmonEtherCollector::~SNMP_RmonEtherCollector ()
{
// Nothing to do for now.
}
//-----------------------------------------------------------------
void SNMP_RmonEtherCollector::Init()
{
SNMP_Collector::Init();
}
void SNMP_RmonEtherCollector::ProcessData()
{
MON_RmonCounters &countersObject = (MON_RmonCounters &) (*myMonApp.GetCountersRegion())[0];
(*myRmonEtherCountRegion)[0].Update(countersObject);
SNMP_Collector::ProcessData();
}
|
f022e13287144ab685978aa50d9dcabbe11da949
|
75c22794271fe509915f2a22af13121be10489ea
|
/ioc/hello2/ahellow2.hpp
|
c178d3e80e8d113cd158741e283248cc0965021a
|
[
"BSD-3-Clause"
] |
permissive
|
OS2World/DEV-SAMPLES-VisualAgeCPP4_Samples
|
58c8edbfd1432add2e812abd1e60fbbb56ca7322
|
21975b49b0cb63cf4f6318b01c2d2daefc419cb4
|
refs/heads/master
| 2021-01-10T21:19:57.198852
| 2019-05-23T01:16:06
| 2019-05-23T01:16:06
| 18,744,150
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,521
|
hpp
|
ahellow2.hpp
|
/******************************************************************************
* .FILE: ahellow2.hpp *
* *
* .DESCRIPTION: Hello World Sample Program Version 2: Class Header *
* *
* .CLASSES: AHelloWindow *
* ACommandHandler *
* *
* .COPYRIGHT: *
* IBM Open Class Library *
* Licensed Material - Program-Property of IBM *
* (C) Copyright IBM Corp. 1992, 1997 - All Rights Reserved *
* *
* .DISCLAIMER: *
* The following [enclosed] code is sample code created by IBM *
* Corporation. This sample code is not part of any standard IBM product *
* and is provided to you solely for the purpose of assisting you in the *
* development of your applications. The code is provided 'AS IS', *
* without warranty of any kind. IBM shall not be liable for any damages *
* arising out of your use of the sample code, even if they have been *
* advised of the possibility of such damages. *
* *
* .NOTE: WE RECOMMEND USING A FIXED SPACE FONT TO LOOK AT THE SOURCE *
* *
******************************************************************************/
#ifndef _AHELLOW2_
#define _AHELLOW2_
#include <iframe.hpp>
#include <istattxt.hpp>
#include <iinfoa.hpp>
/**************************************************************************
* Class AHelloWindow--Main Frame Window *
**************************************************************************/
class AHelloWindow : public IFrameWindow
{
/*--------------------------- Constructor ------------------------------|
| Construct the object with: |
| 1) with the WindowID |
-------------------------------------------------------------------------*/
public:
AHelloWindow (const unsigned long windowId);
/*---------------------------- Destructor ------------------------------|
| Destruct the object with: |
| 1) no parameters |
-------------------------------------------------------------------------*/
virtual
~AHelloWindow() { }
private:
IStaticText
hello;
IInfoArea
infoArea;
/*------------------------------ Operators -------------------------------|
| Operators defined for this class: |
| = -- Assignment operator |
-------------------------------------------------------------------------*/
AHelloWindow
&operator= (const AHelloWindow&);
};
#endif
|
a79cc78950d1e32d4571c92d5ebb0f48cdd0fa6c
|
a15200778946f6f181e23373525b02b65c44ce6e
|
/Algoritmi/2020-09-18/all-CMS-submissions-2020-09-18/20200918T121619.VR451060_id716xls.altopiano.cpp
|
13f3443a49255dbb198baf55b0fafe697f881285
|
[] |
no_license
|
alberto-uni/portafoglioVoti_public
|
db518f4d4e750d25dcb61e41aa3f9ea69aaaf275
|
40c00ab74f641f83b23e06806bfa29c833badef9
|
refs/heads/master
| 2023-08-29T03:33:06.477640
| 2021-10-08T17:12:31
| 2021-10-08T17:12:31
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,454
|
cpp
|
20200918T121619.VR451060_id716xls.altopiano.cpp
|
/**
* user: VR451060_id716xls
* fname: NICHOLAS
* lname: CARON
* task: altopiano
* score: 25.0
* date: 2020-09-18 12:16:19.036829
*/
#include <iostream>
#include <vector>
#include <queue>
#include <algorithm>
#include <limits>
using namespace std;
const int MINIMUM = numeric_limits<int>::min();
int msb(int N) {
int bit=-1;
int n = N;
while(n!=0) {
n/=2; bit++;
}
if(N ^ (1<<bit) != 0) bit++;
n = 1<<bit;
return n;
}
vector<int> build_tree(vector<int>& viaggio, int N) {
vector<int> tree;
queue<int> q;
int n = msb(N);
for(int i=n-1; i>=0; --i){
int h = i<N?viaggio[i]:MINIMUM;
q.push(h);
tree.push_back(h);
}
while(q.size()!=1) {
int l = q.front();
q.pop();
int r = q.front();
q.pop();
int h = max(l, r);
q.push(h);
tree.push_back(h);
}
reverse(tree.begin(), tree.end());
return tree;
}
int get_max(vector<int>& tree, int id, int l, int r, int a, int b) {
if (r <= a || l >= b)
return MINIMUM;
if (l >= a && r <= b)
return tree[id-1];
int mezzo = (l + r) / 2;
return std::max(
get_max(tree, 2 * id, l, mezzo, a, b),
get_max(tree, 2 * id + 1, mezzo, r, a, b)
);
}
void update(vector<int>& tree, int id, int l, int r, int x, int y) {
if(r <= x || l > x)
return;
if(r > l+1) {
int mezzo = (l + r) / 2;
update(tree, 2 * id, l, mezzo, x, y);
update(tree, 2 * id + 1, mezzo, r, x, y);
tree[id-1] = std::max(
tree[2 * id-1],
tree[2 * id]
);
}
else {
tree[id-1] = y;
}
}
int main() {
int N, M;
cin >> N >> M;
vector<int> viaggio(N);
for(int i=0; i<N; ++i) {
cin >> viaggio[i];
}
vector<int> plateau(N, MINIMUM);
for(int i=1; i<N-1;++i) {
if(viaggio[i-1]==viaggio[i] && viaggio[i]==viaggio[i+1]) {
plateau[i] = viaggio[i];
}
}
vector<int> tree = build_tree(plateau, N);
int op, x, y;
for(int i=0; i<M; ++i) {
cin >> op >> x >> y;
if(op == 1) {
viaggio[x]+=y;
if(x-2>=0) {
if(viaggio[x-2]==viaggio[x-1] && viaggio[x-1]==viaggio[x]) {
update(tree, 1, 0, msb(N), x-1, viaggio[x-1]);
}
else {
update(tree, 1, 0, msb(N), x-1, MINIMUM);
}
}
if(x-1>=0 && x+1<N) {
if(viaggio[x-1]==viaggio[x] && viaggio[x]==viaggio[x+1]) {
update(tree, 1, 0, msb(N), x, viaggio[x]);
}
else {
update(tree, 1, 0, msb(N), x, MINIMUM);
}
}
if(x+2<N) {
if(viaggio[x]==viaggio[x+1] && viaggio[x+1]==viaggio[x+2]) {
update(tree, 1, 0, msb(N), x+1, viaggio[x+1]);
}
else {
update(tree, 1, 0, msb(N), x+1, MINIMUM);
}
}
}
else {
if(viaggio[x] == viaggio[x+1]) x++;
if(viaggio[y] == viaggio[y-1]) y--;
int maximum = get_max(tree, 1, 0, msb(N), x, y+1);
if(maximum == MINIMUM)
cout << "NESSUN_PLATEAU" << endl;
else
cout << maximum << endl;
}
}
return 0;
}
|
a394ec6a7acf17a24e238865f4f9ea44b7114142
|
261e034af496830034a163aad4deafbd7e654fe2
|
/Assets/Entity.cpp
|
3f947c8b2b55462f6ce9acc31deb93ecb490e186
|
[] |
no_license
|
albinopapa/Shooter
|
ae7f4c1acc3a755aa4f98bf4b7c4052a55ca63f1
|
3579dcea07474f2657654f1ecfa0925dd7899cb2
|
refs/heads/master
| 2016-08-12T06:47:24.808731
| 2016-03-11T17:41:34
| 2016-03-11T17:41:34
| 53,685,185
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,256
|
cpp
|
Entity.cpp
|
#include "Entity.h"
#include "TimerServer.h"
#include "StateCore.h"
Entity::Entity(StateCore &core)
:
core(core)
{
scrnSize.x = core.gfx.GetWidth();
scrnSize.y = core.gfx.GetHeight();
scaleFactor = CalcScreenScale( scrnSize );
}
void Entity::Do()
{
}
float Entity::GetDamage( )
{
return damage;
}
unsigned int Entity::GetValue()
{
return scoreValue;
}
bool Entity::CheckIsAlive( )
{
return health > 0;
}
void Entity::SetPosition(const Vec2 &Pos )
{
pos = Pos;
}
void Entity::UpdateTime( float *eventTimer)
{
TimerClient tc;
*eventTimer += tc.GetFrameTime();
}
bool Entity::HasCollided(Entity *src2)
{
const Vec2 dist = (src2->GetC() - pos);
float distSqr = dist.Dot(dist);
float rSqrSum = (radius * radius) + (src2->GetRadius() * src2->GetRadius());
return distSqr <= rSqrSum;
}
float Entity::GetHealth()
{
return health;
}
void Entity::ReduceHealth( float health )
{
this->health -= health;
}
void Entity::SetHitByAmmo( bool wasHit )
{
hitByAmmo = wasHit;
}
bool Entity::GotHitByAmmo()
{
return hitByAmmo;
}
float Entity::GetX() const
{
return pos.x;
}
float Entity::GetY() const
{
return pos.y;
}
Vec2 Entity::GetC() const
{
return pos;
}
float Entity::GetRadius() const
{
return radius;
}
Entity::~Entity()
{}
|
fd790ac21b318a1770900c70a22c745fc4a4c48a
|
235a407059b8348a6c1ad56039fae69611221f1a
|
/projetMedical/main.cpp
|
441f1b853456dc43c485c2d904795ef0e65b5fef
|
[] |
no_license
|
AmazingPipot/ProjetMedical
|
9a1e910ecad02a916389465051f302e86f9130b4
|
af093c8eff83909eeec1b618411767ae5eb9ae73
|
refs/heads/master
| 2020-04-13T23:49:01.776432
| 2019-01-07T19:51:48
| 2019-01-07T19:51:48
| 163,516,242
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 4,587
|
cpp
|
main.cpp
|
#include "mainwindow.h"
#include <QApplication>
#include <iostream>
#include "parseranalyze75.h"
#include <QApplication>
#include <QtGui>
#include <QLabel>
#include <QGridLayout>
#include <QMouseEvent>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
ParserAnalyze75 parser;
//if(!parser.load("D:/fds/master2/imagerie_medicale/reconstruction_bin2"))
//if(!parser.load("D:/Google Drive/fds/M2_IMAGINA/HMIN318M_Imagerie_medicale_et_3D/TP/tp1/MR_head.Coronal"))
if(!parser.load("/auto_home/qleroit/IMAGERIE MEDICAL 3D/PROJET/DATA"))
{
std::cerr << "Unable to load analyze7.5 file" << std::endl;
exit(1);
}
/*
if(!parser.loadSubsampled(4))
{
std::cerr << "Unable to load SD file with coef " << 4 << std::endl;
exit(1);
}
*/
QImage image;
if(!parser.getImageXY(parser.depth / 2, image))
{
std::cerr << "Unable to get imageXY " << parser.depth / 2 << std::endl;
exit(1);
}
image.save("sliceXY.jpg");
//return 0;
if(!parser.getImageYZ(parser.width / 2, image))
{
std::cerr << "Unable to get imageYZ " << parser.width / 2 << std::endl;
exit(1);
}
image.save("sliceYZ.jpg");
if(!parser.getImageXZ(parser.height / 2, image))
{
std::cerr << "Unable to get imageXZ " << parser.height / 2 << std::endl;
exit(1);
}
image.save("sliceXZ.jpg");
/*/////// tests ///////
if(!parser.getImageXY(parser.depth / 2, QRect(0, 0, parser.width, parser.height), image))
{
std::cerr << "Unable to get imageXY " << parser.depth / 2 << std::endl;
exit(1);
}
image.save("sliceXY.jpg");
if(!parser.getImageYZ(parser.width / 2, image))
{
std::cerr << "Unable to get imageYZ " << parser.width / 2 << std::endl;
exit(1);
}
image.save("sliceYZ.jpg");
if(!parser.getImageXZ(parser.height / 2, image))
{
std::cerr << "Unable to get imageXZ " << parser.width - 1 << std::endl;
exit(1);
}
image.save("sliceXZ.jpg");
if(!parser.getImageXY(parser.depth / 2, QRect(parser.width / 4, parser.height / 4, parser.width / 2, parser.height / 2), image))
{
std::cerr << "Unable to get rect imageXY " << parser.depth / 2 << std::endl;
exit(1);
}
image.save("sliceXYrect.jpg");
if(!parser.getImageYZ(parser.width / 2, QRect(parser.depth / 4, parser.height / 4, parser.depth / 2, parser.height / 2), image))
{
std::cerr << "Unable to get rect imageYZ " << parser.width / 2 << std::endl;
exit(1);
}
image.save("sliceYZrect.jpg");
if(!parser.getImageXZ(parser.height / 2, QRect(parser.width / 4, parser.depth / 4, parser.width / 2, parser.depth / 2), image))
{
std::cerr << "Unable to get rect imageXZ " << parser.width / 2 << std::endl;
exit(1);
}
image.save("sliceXZrect.jpg");
if(!parser.getImageXY(parser.depth / 2, QRect(0, 0, parser.width / 4, parser.height / 4), image))
{
std::cerr << "Unable to get rect imageXY " << parser.depth / 2 << std::endl;
exit(1);
}
image.save("sliceXYrect2.jpg");
if(!parser.getImageYZ(parser.width / 2, QRect(0, 0, parser.depth / 4, parser.height / 4), image))
{
std::cerr << "Unable to get rect imageYZ " << parser.width / 2 << std::endl;
exit(1);
}
image.save("sliceYZrect2.jpg");
if(!parser.getImageXZ(parser.height / 2, QRect(0, 0, parser.width / 4, parser.depth / 4), image))
{
std::cerr << "Unable to get rect imageXZ " << parser.width / 2 << std::endl;
exit(1);
}
image.save("sliceXZrect2.jpg");*/
//return 0;
MainWindow wDetaille(parser,"sliceXY","Image XY"," Detaillée",parser.depth);
wDetaille.setWindowTitle(wDetaille.name+wDetaille.name2+" : "+QString::number(wDetaille.slice)+" / "+QString::number(wDetaille.Axe));
wDetaille.setCentralWidget(wDetaille.widget);
wDetaille.show();
MainWindow w1(parser,"sliceXY","Image XY","", parser.depth);
w1.setCentralWidget(w1.widget);
w1.Window = &wDetaille;
w1.show();
MainWindow w2(parser,"sliceYZ","Image YZ","",parser.width);
w2.setCentralWidget(w2.widget);
w2.Window = &wDetaille;
w2.show();
MainWindow w3(parser,"sliceXZ","Image XZ","",parser.height);
w3.setCentralWidget(w3.widget);
w3.Window = &wDetaille;
w3.show();
QTimer Time;
QObject::connect(&Time,SIGNAL(timeout()), &wDetaille, SLOT(update()));
Time.start(100);
return a.exec();
}
|
26851096ad094595dbaf8859b625182f1b8981c6
|
abf6272ff8fbf789b1248fadd67bbc3a9627d485
|
/include/MayaNGL/Camera/Camera.h
|
a5b203bf1ef0dc6069008a99c186a48706f9664a
|
[] |
no_license
|
NCCA/MayaNGL
|
07dbfe25c551d7decbe803a3e22a5ba630274d4f
|
14d0b13c4fad6117e950e3f4af2b8ebc092a89a0
|
refs/heads/master
| 2020-06-02T02:25:31.561141
| 2020-03-12T10:35:55
| 2020-03-12T10:35:55
| 191,005,417
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,327
|
h
|
Camera.h
|
#pragma once
#include "MayaNGL/Mouse/Mouse.h"
#include "Inverse_Def.hpp"
#include "Focus_Def.hpp"
class Camera
{
private:
friend Focus<Camera>;
public:
typedef std::array<mc::Direction,2> LocalHVAxis;
private:
const Mouse &mouse;
private:
mc::LookAt m_lookAt;
Inverse<Camera> m_inverse;
mc::CamView m_current_view;
mc::Translation m_track;
mc::Translation m_dolly;
mc::Rotation m_pan;
public:
explicit Camera( const Mouse &mouse_,
const mc::LookAt &lookAt_ );
GET_MEMBER(m_lookAt.eye,eye)
GET_MEMBER(m_lookAt.target,target)
GET_MEMBER(m_lookAt.up,up)
GET_MEMBER(m_lookAt,lookAt)
GET_MEMBER(m_current_view,current_view)
GET_MEMBER(m_inverse.current,inv_direction)
GET_MEMBER(m_inverse.shadow,inv_shadow)
LocalHVAxis calc_local_hv_axis() const;
mc::Transform compute_transform() const;
template<typename SEL>
void focus(const SEL &select_);
void track();
void pan();
void dolly();
void reset(const mc::LookAt &lookAt_, mc::CamView panel_ = mc::CamView::PERSPECTIVE);
void front();
void side();
void top();
~Camera() noexcept = default;
};
|
16dea1fe30c401de7ba83f956508517863f9d7b8
|
63ffb050122862f597df3f30322f05c5a1ecde96
|
/core/raytracer.h
|
a67d4113d478416156f60a13a352eeb3f6934b16
|
[] |
no_license
|
cedricp/pixie
|
298e95140ee36251633e72b93bef7dc7d812c637
|
b0f2e608e8bb9db2ef0960386f12d91cb83c102a
|
refs/heads/master
| 2021-01-18T22:28:14.967399
| 2017-04-03T09:01:10
| 2017-04-03T09:01:10
| 87,055,532
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,790
|
h
|
raytracer.h
|
//////////////////////////////////////////////////////////////////////
//
// Pixie
//
// Copyright � 1999 - 2003, Okan Arikan
//
// Contact: okan@cs.utexas.edu
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
//
///////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////
//
// File : raytracer.h
// Classes : CRaytracer
// and helper classes
// Description : The raytracer hider
//
////////////////////////////////////////////////////////////////////////
#ifndef RAYTRACER_H
#define RAYTRACER_H
#include "common/global.h"
#include "object.h"
#include "options.h"
#include "shading.h"
///////////////////////////////////////////////////////////////////////
// Class : CRaytracer
// Description : Encapsulates a primary camera ray
// Comments :
class CPrimaryRay : public CRay {
public:
vector color; // Color of the ray
vector opacity; // Opacity of the ray
vector ropacity; // Residual opacity
float *samples; // The extra samples that need to be saved
float x,y; // The x,y location of the ray on the screen
};
///////////////////////////////////////////////////////////////////////
// Class : CRaytracer
// Description : Defines a raytracer
// Comments :
class CPrimaryBundle : public CRayBundle {
public:
CPrimaryBundle(int,int,int,int*,int,float*);
~CPrimaryBundle();
int postTraceAction();
void postShade(int nr,CRay **r,float **varyings);
void postShade(int nr,CRay **r);
void post();
CPrimaryRay *rayBase; // The ray memory
int maxPrimaryRays; // The maximum number of primary rays
int numExtraChannels; // The number of extra channels
int numExtraSamples; // The number of extra samples
int *sampleOrder; // The order of the extra samples
float *sampleDefaults; // The defaults for the extra samples
float *allSamples; // The memory area for all the samples
};
///////////////////////////////////////////////////////////////////////
// Class : CRaytracer
// Description : Defines a raytracer
// Comments :
class CRaytracer : public CShadingContext {
public:
CRaytracer(int thread);
virtual ~CRaytracer();
static void preDisplaySetup() { }
// The main hider interface
// The following functions are commented out for we want the CShadingContext to handle those
void renderingLoop();
// Since we're not doing any rasterization, the following functions are simple stubs
// Delayed rendering functions
void drawObject(CObject *) { }
// Primitive creation functions
void drawGrid(CSurface *,int,int,float,float,float,float) { }
void drawPoints(CSurface *,int) { }
protected:
// Sampling functions
void sample(int,int,int,int);
void computeSamples(CPrimaryRay *,int);
void splatSamples(CPrimaryRay *,int,int,int,int,int);
CPrimaryBundle primaryBundle;
float *fbContribution;
float *fbPixels;
// Some stats
int numRaytraceRays;
};
#endif
|
541e923bef4da5c1fab55c7df539489c4665f355
|
9207df03e646d0dba844a88ccc82f44ded92e068
|
/A - Myacm Triangles/test.cpp
|
b62eb01d9f246b8504d0583a34e208cb48c9f114
|
[] |
no_license
|
XiaoYuhao/ACM-ICPC-practice
|
ed02f448dfc262eb17fb1f68721f3e8effc624c6
|
43d0c560e148efc16cbe8ba8d7a588e4ba748d41
|
refs/heads/master
| 2020-03-25T21:34:46.114102
| 2019-03-11T06:50:11
| 2019-03-11T06:50:11
| 144,181,079
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,540
|
cpp
|
test.cpp
|
#define _CRT_SECURE_NO_WARNINGS
#include<iostream>
#include<algorithm>
#include<stdio.h>
#include<math.h>
using namespace std;
const int MAX = 20;
const double eps = 1e-6;
struct Point {
int x, y;
}p[MAX];
int main() {
int n;
while (1) {
scanf("%d", &n);
if (n == 0)break;
char ss[10];
for (int i = 0; i < n; i++) {
scanf("%s%d%d", ss, &p[i].x, &p[i].y);
}
int x1 = 0, x2 = 0, x3 = 0, x4 = 0, y1 = 0, y2 = 0, y3 = 0, y4 = 0;
int ans1=0, ans2=0, ans3=0;
double s=0, s1=0, s2=0, s3=0, s4=0, max = 0;
for (int i = 0; i < n; i++) {
for (int j = i + 1; j < n; j++) {
for (int k = j + 1; k < n; k++) {
x1 = p[i].x;
y1 = p[i].y;
x2 = p[j].x;
y2 = p[j].y;
x3 = p[k].x;
y3 = p[k].y;
s = fabs(((y3 - y1)*(x2 - x1) - (y2 - y1)*(x3 - x1))*(1 / 2.0));
int flag = 0;
for (int f = 0; f < n; f++) {
if (f == i || f == j || f == k)continue;
x4 = p[f].x;
y4 = p[f].y;
s1 = fabs(((y4 - y1)*(x2 - x1) - (y2 - y1)*(x4 - x1))*(1 / 2.0));
s2 = fabs(((y3 - y4)*(x2 - x4) - (y2 - y4)*(x3 - x4))*(1 / 2.0));
s3 = fabs(((y3 - y1)*(x4 - x1) - (y4 - y1)*(x3 - x1))*(1 / 2.0));
s4 = s1 + s2 + s3;
if (fabs(s4-s)<=eps) {
flag = 1;
break;
}
}
if (flag) {
continue;
}
else {
if (max < s) {
max = s;
ans1 = i;
ans2 = j;
ans3 = k;
}
}
}
}
}
char label = 'A';
printf("%c%c%c\n", char(label + ans1), char(label + ans2), char(label + ans3));
}
}
|
c1a83bb2e55c588432bd7febb183680629b1b234
|
879718eff33a6c82c90c7bea210da6d7746b338a
|
/sampling/samplingBase.h
|
3756ee44a8a9d9b2182ba27fb3512cba8f73d78b
|
[] |
no_license
|
rohan-shah/sampling
|
f6e9d297d2861f0fff6e2eec4a646ee55cd7d2b7
|
435d70d33fb41069d656c18663fdef6e5616c45b
|
refs/heads/master
| 2021-08-07T18:38:40.311918
| 2020-06-04T06:58:21
| 2020-06-04T06:58:21
| 59,632,597
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 620
|
h
|
samplingBase.h
|
#ifndef SAMPLING_BASE_HEADER_GUARD
#define SAMPLING_BASE_HEADER_GUARD
#include <vector>
#include <algorithm>
#include "includeMPFRSampling.h"
namespace sampling
{
void sampfordBase(int n, std::vector<int>& indices, std::vector<mpfr_class>& weights, std::vector<mpfr_class>& rescaledWeights, std::vector<bool>& zeroWeights, std::vector<bool>& deterministicInclusion, int& nDeterministic, int& nZeroWeights);
void samplingBase(int n, std::vector<int>& indices, std::vector<mpfr_class>& weights, std::vector<bool>& zeroWeights, std::vector<bool>& deterministicInclusion, int& nDeterministic, int& nZeroWeights);
}
#endif
|
1455fd75d8f8216ebbaa6655dd6d55caa80a3537
|
59f22160c25102edbae50773c5df601a98a74a04
|
/CODECHEF/Contests/RECNDROT.cpp
|
ebed80bf5062a60293b184c6d1bd042f619b8175
|
[] |
no_license
|
Brehm1983/Coding-Tree
|
1826f5701548223683735566122c7aa192f2eefa
|
c3a5c6ec98e9f06786fdc440563b333d662d2e94
|
refs/heads/master
| 2023-07-06T14:37:42.174220
| 2020-10-22T17:12:37
| 2020-10-22T17:12:37
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,900
|
cpp
|
RECNDROT.cpp
|
#include<bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
using namespace __gnu_pbds;
using namespace std;
#define f(i,a,b) for(i=a;i<b;i++)
#define rep(i,n) f(i,0,n)
#define ff first
#define ss second
#define int long long
#define pb push_back.
#define mp make_pair
#define pii pair<int,int>
#define vi vector<int>
#define mii map<int,int>
#define pqb priority_queue<int>
#define pqs priority_queue<int,vi,greater<int> >
#define setbits(x) __builtin_popcountll(x)
#define zerobits(x) __builtin_ctzll(x)
#define all(cont) cont.begin(), cont.end()
#define unique(a) sort(all(a)) , (a).erase(unique((a).begin(), (a).end()),(a).end())
#define pqll_max priority_queue<ll> // max heap. push(),pop(),top(),size(),empty()
#define pqll_min priority_queue<ll,vector<ll>,greater<ll> >
#define lb(v,val) lower_bound(v.begin(),v.end(),val) //first equal to or lower than [------------
#define ub(v,val) upper_bound(v.begin(),v.end(),val) //first greater than ------------)
#define bs(v,x) binary_search(v.begin(),v.end(),x) //boolean return type
#define mod 1000000007
#define inf 1e18
#define ps(x,y) fixed<<setprecision(y)<<x
#define mk(arr,n,type) type *arr=new type[n];
#define w(x) int x; cin>>x; while(x--)
#define FASTIO ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0)
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
typedef tree<int, null_type, less<int>, rb_tree_tag, tree_order_statistics_node_update> pbds;
int gcd(int a, int b) { if (a == 0) return b; return gcd(b % a, a);}
// ROTATION
// rotate(vec1.begin(), vec1.begin()+rotL, vec1.end());
// rotate(vec2.begin(), vec2.begin()+vec2.size()-rotR, vec2.end());
// min({ 1, 2, 3, 4, 5, 0, -1, 7 } min can be used to find min of multiple values like this
int32_t main()
{
FASTIO;
#ifndef ONLINE_JUDGE
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#endif
w(t) {
int n, z;
cin >> n;
vector<int> arr(n, 0);
map<int, vector<int>> mp;
for (int i = 0; i < n; i++) {
cin >> z;
arr[i] = z;
mp[z].push_back(i);
}
unique(arr);
sort(arr.begin(), arr.end());
int c = 0, uniq = mp.size(), ans = 0, idTrack = -1, init = 0;
while (1) {
int pre = -1;
for (int i = init; i < uniq; i++) {
vector<int> vv = mp[arr[i]];
auto it = upper_bound (vv.begin(), vv.end(), pre);
int kp = it - vv.begin();
if (kp < vv.size() && i == c) {
pre = vv[kp];
c++;
init++;
} else {
break;
}
}
ans++;
// cout << c << " ";
if (c == uniq) {
break;
}
}
cout << ans << "\n";
}
return 0;
}
|
00d21c3bb60603b9a8624019296edf9cf41dd2a0
|
36cee4e7a808a2503ba175a4375381d6c6961710
|
/main.cpp
|
351ad2f9692893c886c83e6d9fb02c169d8b0911
|
[] |
no_license
|
Kritten/cg_harlan_komlossy
|
f06fb31a87853514557a8dbc0687034b7b446053
|
32f5fd7f8e2bac5b7b56ee0466d6742d53206b9c
|
refs/heads/master
| 2016-08-02T20:51:40.112566
| 2015-01-12T22:02:48
| 2015-01-12T22:02:48
| 26,365,759
| 0
| 0
| null | null | null | null |
WINDOWS-1252
|
C++
| false
| false
| 75,798
|
cpp
|
main.cpp
|
//////////////////////////////////////////////////////////////////////////
//Sources: http://openglbook.com/
////////// http://www.dhpoware.com/demos/glObjViewer.html
////////// http://www.arcsynthesis.org/gltut/
/////////////////////////////////////////////////////////////////////////
#define GLEW_STATIC
#define M_PI 3.14159265358979323846f
#include <iostream>
#include <algorithm>
#include <vector>
#include <cmath>
#include <chrono>
#include <climits>
#include <GL/glew.h>
#include <GL/freeglut.h>
#include <glm/matrix.hpp>
#include <glm/gtc/matrix_transform.hpp>
#include <glm/gtc/type_ptr.hpp>
#include <TransformationStack.h>
#include <Shader.h>
//include gloost::Mesh wich is a geometry container
#include <Mesh.h>
//mesh object for loading planet geometry
gloost::Mesh* mesh = 0;
std::vector<glm::vec3> tangents;
std::vector<glm::vec3> bitangents;
std::vector<float> meshInfo;
// loader for the wavefront *.obj file format
#include <ObjLoader.h>
//#include<FreeImage.h>
#include "TextureLoader.h"
#define PI 3.1415926535897932384626433832795028841971
//
int windowWidth = 800;
int windowHeight = 600;
int windowHandle = 0;
//initial camera position
float camera_position[] = {0.0f, 6.0, 17.0f};
bool middleMouseButtonDown = false;
bool leftMouseButtonDown = false;
bool rightMouseButtonDown = false;
unsigned frameCount = 0;
int greyscale = 0;
int horizontal_mirrowed = 0;
int vertical_mirrowed = 0;
int blur = 0;
//speed
float g_elapsed_virtual_time = 0.0;
int g_last_elapsed_time = 0;
float g_speed = 0.0001;
float g_toggle = 1.0;
//navigation
float last_mouse_x = 0;
float last_mouse_y = 0;
glm::mat4 g_viewMatrix = glm::mat4(1.0);
float camera_x = 0;
float camera_y = 0;
glm::vec3 g_viewing_direction = glm::vec3(0.0f, 0.0f, -1.0f);
float g_movement_speed = 0.2f;
float g_slow_movement_speed = 0.008f;
float g_mouse_speed = 0.4f;
float g_key_shift_multiplicator = 3.0f;
float g_ascending_speed = 0.3;
float g_descending_speed = 0.3;
bool g_key_w = false;
bool g_key_s = false;
bool g_key_a = false;
bool g_key_d = false;
bool g_key_q = false;
bool g_key_e = false;
bool g_key_shift = false;
bool g_key_ctrl = false;
bool g_key_space = false;
bool g_key_z = false;
bool g_key_h = false;
bool g_key_g = false;
bool g_key_j = false;
bool g_key_t = false;
bool g_key_u = false;
//handles for shader variables
unsigned projectionMatrixUniformLocation = 0;
unsigned modelMatrixUniformLocation = 0;
unsigned viewMatrixUniformLocation = 0;
unsigned normalMatrixUniformLocation = 0;
unsigned planetColorUniformLocation = 0;
unsigned shadingModeUniformLocation = 0;
unsigned lightPositionUniformLocation = 0;
unsigned sunProjectionMatrixUniformLocation = 0;
unsigned sunModelMatrixUniformLocation = 0;
unsigned sunViewMatrixUniformLocation = 0;
unsigned sunColorUniformLocation0 = 0;
unsigned sunColorUniformLocation1 = 0;
unsigned sunTimeUniformLocation = 0;
unsigned orbitProjectionMatrixUniformLocation = 0;
unsigned orbitModelMatrixUniformLocation = 0;
unsigned orbitViewMatrixUniformLocation = 0;
unsigned orbitColorUniformLocation = 0;
unsigned orbitLightPositionUniformLocation = 0;
unsigned skyModelMatrixUniformLocation = 0;
unsigned skyViewMatrixUniformLocation = 0;
unsigned skyProjectionMatrixUniformLocation = 0;
unsigned skyColorUniformLocation = 0;
unsigned normalColorUniformLocation = 0;
unsigned glossColorUniformLocation = 0;
unsigned specularColorUniformLocation = 0;
unsigned displacementColorUniformLocation = 0;
unsigned screenQuadShaderGreyscaleUniformLocation = 0;
unsigned screenQuadShaderHorizontalMirrowedUniformLocation = 0;
unsigned screenQuadShaderVerticalMirrowedUniformLocation = 0;
unsigned screenQuadShaderBlurUniformLocation = 0;
unsigned screenQuadShaderColorTextureUniformLocation = 0;
unsigned screenQuadShaderScreenDimensionsUniformLocation = 0;
//handels for all kind of textures
unsigned whiteTexture = 0;
unsigned skyTexture = 0;
unsigned neptuneTexture = 0;
unsigned uranusTexture = 0;
unsigned saturnTexture = 0;
unsigned jupiterTexture = 0;
unsigned marsTexture = 0;
unsigned earthTexture = 0;
unsigned venusTexture = 0;
unsigned mercuryTexture = 0;
unsigned sunTexture0 = 0;
unsigned sunTexture1 = 0;
unsigned moonTexture = 0;
unsigned earthNormalTexture = 0;
unsigned planetNormalTexture = 0;
unsigned gasplanetNormalTexture = 0;
unsigned planetSpecularTexture = 0;
unsigned planetDisplacementTexture = 0;
unsigned planetGlossTexture = 0;
unsigned earthDisplacementTexture = 0;
unsigned earthGlossTexture = 0;
unsigned earthSpecularTexture = 0;
//handles for all sort of geometry objects
unsigned vertexArrayObject = 0;
unsigned vertexBufferObject = 0;
unsigned elementArrayBuffer = 0;
bool g_draw_orbits = true;
std::vector<float> orbitVertices;
unsigned orbitVertexArrayObject = 0;
unsigned orbitVertexBufferObject = 0;
unsigned orbitElementArrayBuffer = 0;
unsigned screenQuadVAO = 0;
unsigned screenQuadVBO = 0;
//handles for shader programs and shaders
unsigned shaderProgram = 0;
unsigned sunShaderProgram = 0;
unsigned orbitShaderProgram = 0;
unsigned skyShaderProgram = 0;
unsigned screenQuadShaderProgram = 0;
unsigned vertexShader = 0;
unsigned fragmentShader = 0;
// handles for the custom FBO
unsigned renderFBO = 0;
unsigned renderColorBuffer = 0;
unsigned renderDepthBuffer = 0;
// Scales
float g_neptunScale = 1.8;
float g_uranusScale = 2.0;
float g_saturnScale = 2.8;
float g_jupiterScale = 3.0;
float g_marsScale = 0.6;
float g_earthScale = 1.0;
float g_venusScale = 0.9;
float g_mercuryScale = 0.5;
float g_sunScale = 3.0;
float g_earthMoonScale = 0.2;
float g_ioScale = 0.2;
float g_europaScale = 0.2;
float g_ganymedeScale = 0.2;
float g_callistoScale = 0.2;
// Translations
glm::vec3 g_neptunTranslate = glm::vec3(30.0f, 0.0f, 0.0f);
glm::vec3 g_uranusTranslate = glm::vec3(25.0f, 0.0f, 0.0f);
glm::vec3 g_saturnTranslate = glm::vec3(20.0f, 0.0f, 0.0f);
glm::vec3 g_jupiterTranslate = glm::vec3(15.0f, 0.0f, 0.0f);
glm::vec3 g_marsTranslate = glm::vec3(11.0f, 0.0f, 0.0f);
glm::vec3 g_earthTranslate = glm::vec3(9.0f, 0.0f, 0.0f);
glm::vec3 g_mercuryTranslate = glm::vec3(5.0f, 0.0f, 0.0f);
glm::vec3 g_venusTranslate = glm::vec3(7.0f, 0.0f, 0.0f);
glm::vec3 g_earthMoonTranslate = glm::vec3(1.0f, 0.0f, 0.0f);
glm::vec3 g_ioTranslate = glm::vec3(1.8f, 0.0f, 0.0f);
glm::vec3 g_europaTranslate = glm::vec3(2.1f, 0.0f, 0.0f);
glm::vec3 g_ganymedeTranslate = glm::vec3(2.5f, 0.0f, 0.0f);
glm::vec3 g_callistoTranslate = glm::vec3(2.8f, 0.0f, 0.0f);
// Rotations
float g_neptunRotation = 0.0f;
float g_uranusRotation = 0.0f;
float g_saturnRotation = 0.0f;
float g_jupiterRotation = 0.0f;
float g_marsRotation = 0.0f;
float g_earthRotation = 0.0f;
float g_venusRotation = 0.0f;
float g_mercuryRotation = 0.0f;
float g_earthMoonRotation = 0.0f;
float g_ioRotation = 0.0f;
float g_europaRotation = 0.0f;
float g_ganymedeRotation = 0.0f;
float g_callistoRotation = 0.0f;
int g_num_of_saturn_rings = 100;
int g_num_of_uranus_rings = 30;
//the three different matrices for projection, viewing and model transforming
TransformationStack modelTransformationStack;
TransformationStack cameraTransformationStack;
//Function callbacks
void initialize(int, char*[]);
void initWindow(int, char*[]);
void resizeFunction(int, int);
void idleFunction(void);
void compute_viewMatrix();
//forward declaration of functions
void drawSun();
void drawSkySphere();
void drawSolarsystem();
void draw_jupiter_moons();
void drawOrbits();
void draw_saturn_rings();
void draw_uranus_rings();
void mouseInput(int button, int state, int x, int y);
void specialKeyRelease(int keyEvent, int x, int y);
void specialKeyPress(int keyEvent, int x, int y);
void keyRelease(unsigned char keyEvent, int x, int y);
void keyPress(unsigned char keyEvent, int x, int y);
void timerFunction(int);
void cleanup(void);
void loadModel(void);
void createQuad();
std::vector<glm::vec3> calculateTangents();
void generateOrbit();
void loadTextures();
void setupShader();
void setupFrameBuffer();
void draw(void);
void geometry_render_pass();
void screen_quad_pass();
void renderFunction(void);
glm::vec3 compute_viewing_direction(glm::mat4 matrix);
void print_matrix(glm::mat4 matrix);
void navigate();
void drawPlanet(glm::mat4 const& model_matrix);
/////////////////////////////////////////////////////////////////////////////////////////
int main(int argc, char* argv[])
{
initialize(argc, argv);
//start the glut event system
glutMainLoop();
exit(EXIT_SUCCESS);
}
/////////////////////////////////////////////////////////////////////////////////////////
//called every frame this functions draw
void draw(void)
{
navigate();
compute_viewMatrix();
geometry_render_pass();
screen_quad_pass();
}
/////////////////////////////////////////////////////////////////////////////////////////
void geometry_render_pass()
{
glBindFramebuffer(GL_FRAMEBUFFER, renderFBO);
drawSkySphere();
drawSun();
drawSolarsystem();
if(g_draw_orbits)
{
drawOrbits();
}
draw_saturn_rings();
draw_uranus_rings();
}
/////////////////////////////////////////////////////////////////////////////////////////
void screen_quad_pass()
{
glBindFramebuffer(GL_FRAMEBUFFER, 0);
glUseProgram(screenQuadShaderProgram);
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, renderColorBuffer);
glUniform1i(screenQuadShaderColorTextureUniformLocation, 0);
glUniform2i(screenQuadShaderScreenDimensionsUniformLocation, windowWidth, windowHeight);
glUniform1i(screenQuadShaderGreyscaleUniformLocation, greyscale);
glUniform1i(screenQuadShaderHorizontalMirrowedUniformLocation, horizontal_mirrowed);
glUniform1i(screenQuadShaderVerticalMirrowedUniformLocation, vertical_mirrowed);
glUniform1i(screenQuadShaderBlurUniformLocation, blur);
glBindVertexArray(screenQuadVAO);
glDrawArrays(GL_TRIANGLES, 0, 6);
}
/////////////////////////////////////////////////////////////////////////////////////////
void navigate()
{
float movement_speed = g_movement_speed;
if(g_key_shift)
{
movement_speed = g_key_shift_multiplicator * movement_speed;
}
if(g_key_z)
{
g_viewing_direction = compute_viewing_direction(glm::inverse(g_viewMatrix));
camera_position[0] += g_viewing_direction[0] * g_slow_movement_speed;
camera_position[1] += g_viewing_direction[1] * g_slow_movement_speed;
camera_position[2] += g_viewing_direction[2] * g_slow_movement_speed;
}
if(g_key_h)
{
g_viewing_direction = compute_viewing_direction(glm::inverse(g_viewMatrix));
camera_position[0] -= g_viewing_direction[0] * g_slow_movement_speed;
camera_position[1] -= g_viewing_direction[1] * g_slow_movement_speed;
camera_position[2] -= g_viewing_direction[2] * g_slow_movement_speed;
}
if(g_key_g)
{
g_viewing_direction = compute_viewing_direction(glm::inverse(g_viewMatrix));
camera_position[0] += g_viewing_direction[2] * g_slow_movement_speed;
camera_position[2] += -g_viewing_direction[0] * g_slow_movement_speed;
}
if(g_key_j)
{
g_viewing_direction = compute_viewing_direction(glm::inverse(g_viewMatrix));
camera_position[0] += -g_viewing_direction[2] * g_slow_movement_speed;
camera_position[2] += g_viewing_direction[0] * g_slow_movement_speed;
}
if(g_key_w)
{
g_viewing_direction = compute_viewing_direction(glm::inverse(g_viewMatrix));
camera_position[0] += g_viewing_direction[0] * movement_speed;
camera_position[1] += g_viewing_direction[1] * movement_speed;
camera_position[2] += g_viewing_direction[2] * movement_speed;
}
if(g_key_s)
{
g_viewing_direction = compute_viewing_direction(glm::inverse(g_viewMatrix));
camera_position[0] -= g_viewing_direction[0] * movement_speed;
camera_position[1] -= g_viewing_direction[1] * movement_speed;
camera_position[2] -= g_viewing_direction[2] * movement_speed;
}
if(g_key_a)
{
g_viewing_direction = compute_viewing_direction(glm::inverse(g_viewMatrix));
camera_position[0] += g_viewing_direction[2] * movement_speed;
camera_position[2] += -g_viewing_direction[0] * movement_speed;
}
if(g_key_d)
{
g_viewing_direction = compute_viewing_direction(glm::inverse(g_viewMatrix));
camera_position[0] += -g_viewing_direction[2] * movement_speed;
camera_position[2] += g_viewing_direction[0] * movement_speed;
}
if(g_key_t)
{
camera_position[1] += g_ascending_speed/20.0;
}
if(g_key_u)
{
camera_position[1] -= g_descending_speed/20.0;
}
if(g_key_q)
{
camera_position[1] += g_ascending_speed;
}
if(g_key_e)
{
camera_position[1] -= g_descending_speed;
}
}
void compute_viewMatrix()
{
cameraTransformationStack.clear();
//translate the camera in positive z direction to actually see the geometry residing in the coordinate origin
cameraTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0f), -camera_y, glm::vec3(1.0f, 0.0f, 0.0f) ) );
cameraTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0f), camera_x, glm::vec3(0.0f, 1.0f, 0.0f) ) );
cameraTransformationStack.pushMatrix(glm::translate(glm::mat4(1.0), glm::vec3(camera_position[0], camera_position[1], camera_position[2]) ) );
// cameraTransformationStack.pushMatrix(glm::scale(glm::mat4(1.0), glm::vec3(camera_position[0], camera_position[1], camera_position[2]) ) );
//rotate the camera
//invert the camera transformation to move the vertices
g_viewMatrix = glm::inverse(cameraTransformationStack.topMatrix() );
glUseProgram(shaderProgram);
glUniformMatrix4fv(viewMatrixUniformLocation, 1, GL_FALSE, glm::value_ptr(g_viewMatrix) );
glUseProgram(sunShaderProgram);
glUniformMatrix4fv(sunViewMatrixUniformLocation, 1, GL_FALSE, glm::value_ptr(g_viewMatrix) );
glUseProgram(orbitShaderProgram);
glUniformMatrix4fv(orbitViewMatrixUniformLocation, 1, GL_FALSE, glm::value_ptr(g_viewMatrix) );
glUseProgram(skyShaderProgram);
glUniformMatrix4fv(skyViewMatrixUniformLocation, 1, GL_FALSE, glm::value_ptr(g_viewMatrix) );
glUseProgram(0);
}
void drawSun()
{
glUseProgram(sunShaderProgram);
//scale the sun
glm::mat4 model_matrix = glm::scale(glm::mat4(1.0f), glm::vec3(g_sunScale) );
//draw the geometry
glUniform1i(sunColorUniformLocation0, 0);
glUniform1i(sunColorUniformLocation1, 1);
glUniform1f(sunTimeUniformLocation, g_elapsed_virtual_time);
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, sunTexture0);
glActiveTexture(GL_TEXTURE1);
glBindTexture(GL_TEXTURE_2D, sunTexture1);
// transfer model matrix to shader by the associated uniform location
glUniformMatrix4fv(sunModelMatrixUniformLocation, 1, GL_FALSE, glm::value_ptr(model_matrix) );
//bind the planet geometry (the VAO!)
glBindVertexArray(vertexArrayObject);
// draw object according to (the EAO!). Note, that the geometry type is triangles.
glDrawElements(GL_TRIANGLES, mesh->getTriangles().size()*3, GL_UNSIGNED_INT, 0);
//clear the transformation stack
modelTransformationStack.clear();
}
void drawSkySphere()
{
glUseProgram(skyShaderProgram);
glUniform1i(skyColorUniformLocation, 0);
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, skyTexture);
auto modelmatrix = glm::translate(glm::mat4(1.0f), glm::vec3(camera_position[0], camera_position[1], camera_position[2]) )
* glm::scale (glm::mat4(1.0f), glm::vec3(1.0 ) ) ;
// auto modelmatrix = glm::translate(glm::mat4(1.0f), glm::vec3(3.0, 0.0, 0.0) )
// transfer model matrix to shader by the associated uniform location
glUniformMatrix4fv(skyModelMatrixUniformLocation, 1, GL_FALSE, glm::value_ptr(modelmatrix) );
// glUniform3f(skyColorUniformLocation, 0.8f, 0.8f, 0.8f);
//calculate the normal transfomrations from modelview matrix
glm::mat4 normalMatrix = glm::mat4(1.0f);
normalMatrix = g_viewMatrix*modelmatrix;
normalMatrix = glm::inverse(normalMatrix);
normalMatrix = glm::transpose(normalMatrix);
//bind the planet geometry (the VAO!)
glBindVertexArray(vertexArrayObject);
// draw object according to (the EAO!). Note, that the geometry type is triangles.
glDrawElements(GL_TRIANGLES, mesh->getTriangles().size()*3, GL_UNSIGNED_INT, 0);
// clear depth buffer to make the Sky Sphere Background
glClear(GL_DEPTH_BUFFER_BIT);
}
void drawOrbits()
{
glUseProgram(orbitShaderProgram);
glBindVertexArray(orbitVertexArrayObject);
modelTransformationStack.clear();
modelTransformationStack.pushMatrix(glm::scale(glm::mat4(1.0), glm::vec3(g_mercuryTranslate.x)) );
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0), -90.0f, glm::vec3(1.0f, 0.0f, 0.0f) ) );
glUniformMatrix4fv(orbitModelMatrixUniformLocation, 1, GL_FALSE, glm::value_ptr(modelTransformationStack.topMatrix()) );
glUniform3f(orbitColorUniformLocation, 0.48f, 0.48f, 0.48f);
glDrawArrays(GL_LINE_LOOP, 0, orbitVertices.size()/3);
modelTransformationStack.clear();
modelTransformationStack.pushMatrix(glm::scale(glm::mat4(1.0), glm::vec3(g_venusTranslate.x)) );
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0), -90.0f, glm::vec3(1.0f, 0.0f, 0.0f) ) );
glUniformMatrix4fv(orbitModelMatrixUniformLocation, 1, GL_FALSE, glm::value_ptr(modelTransformationStack.topMatrix()) );
glUniform3f(orbitColorUniformLocation, 0.97f, 0.65f, 0.22f);
glDrawArrays(GL_LINE_LOOP, 0, orbitVertices.size()/3);
modelTransformationStack.clear();
modelTransformationStack.pushMatrix(glm::scale(glm::mat4(1.0), glm::vec3(g_earthTranslate.x)) );
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0), -90.0f, glm::vec3(1.0f, 0.0f, 0.0f) ) );
glUniformMatrix4fv(orbitModelMatrixUniformLocation, 1, GL_FALSE, glm::value_ptr(modelTransformationStack.topMatrix()) );
glUniform3f(orbitColorUniformLocation, 0.35f, 0.48f, 0.820f);
glDrawArrays(GL_LINE_LOOP, 0, orbitVertices.size()/3);
modelTransformationStack.clear();
modelTransformationStack.pushMatrix(glm::scale(glm::mat4(1.0), glm::vec3(g_earthMoonTranslate.x)) );
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0), -90.0f, glm::vec3(1.0f, 0.0f, 0.0f) ) );
modelTransformationStack.pushMatrix(glm::translate(glm::mat4(1.0), g_earthTranslate ) );
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0), g_earthRotation, glm::vec3(0.0f, 1.0f, 0.0f) ) );
glUniformMatrix4fv(orbitModelMatrixUniformLocation, 1, GL_FALSE, glm::value_ptr(modelTransformationStack.topMatrix()) );
glUniform3f(orbitColorUniformLocation, 0.55f, 0.68f, 1.0f);
glDrawArrays(GL_LINE_LOOP, 0, orbitVertices.size()/3);
modelTransformationStack.clear();
modelTransformationStack.pushMatrix(glm::scale(glm::mat4(1.0), glm::vec3(g_marsTranslate.x)) );
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0), -90.0f, glm::vec3(1.0f, 0.0f, 0.0f) ) );
glUniformMatrix4fv(orbitModelMatrixUniformLocation, 1, GL_FALSE, glm::value_ptr(modelTransformationStack.topMatrix()) );
glUniform3f(orbitColorUniformLocation, 0.76f, 0.58f, 0.34f);
glDrawArrays(GL_LINE_LOOP, 0, orbitVertices.size()/3);
modelTransformationStack.clear();
modelTransformationStack.pushMatrix(glm::scale(glm::mat4(1.0), glm::vec3(g_jupiterTranslate.x)) );
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0), -90.0f, glm::vec3(1.0f, 0.0f, 0.0f) ) );
glUniformMatrix4fv(orbitModelMatrixUniformLocation, 1, GL_FALSE, glm::value_ptr(modelTransformationStack.topMatrix()) );
glUniform3f(orbitColorUniformLocation, 0.84f, 0.71f, 0.53f);
glDrawArrays(GL_LINE_LOOP, 0, orbitVertices.size()/3);
modelTransformationStack.clear();
modelTransformationStack.pushMatrix(glm::scale(glm::mat4(1.0), glm::vec3(g_ioTranslate.x)) );
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0), -90.0f, glm::vec3(1.0f, 0.0f, 0.0f) ) );
modelTransformationStack.pushMatrix(glm::translate(glm::mat4(1.0), g_jupiterTranslate ) );
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0), g_jupiterRotation, glm::vec3(0.0f, 1.0f, 0.0f) ) );
glUniformMatrix4fv(orbitModelMatrixUniformLocation, 1, GL_FALSE, glm::value_ptr(modelTransformationStack.topMatrix()) );
glUniform3f(orbitColorUniformLocation, 0.84f, 0.71f, 0.53f);
glDrawArrays(GL_LINE_LOOP, 0, orbitVertices.size()/3);
modelTransformationStack.clear();
modelTransformationStack.pushMatrix(glm::scale(glm::mat4(1.0), glm::vec3(g_europaTranslate.x)) );
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0), -90.0f, glm::vec3(1.0f, 0.0f, 0.0f) ) );
modelTransformationStack.pushMatrix(glm::translate(glm::mat4(1.0), g_jupiterTranslate ) );
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0), g_jupiterRotation, glm::vec3(0.0f, 1.0f, 0.0f) ) );
glUniformMatrix4fv(orbitModelMatrixUniformLocation, 1, GL_FALSE, glm::value_ptr(modelTransformationStack.topMatrix()) );
glUniform3f(orbitColorUniformLocation, 0.76f, 0.58f, 0.34f);
glDrawArrays(GL_LINE_LOOP, 0, orbitVertices.size()/3);
modelTransformationStack.clear();
modelTransformationStack.pushMatrix(glm::scale(glm::mat4(1.0), glm::vec3(g_ganymedeTranslate.x)) );
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0), -90.0f, glm::vec3(1.0f, 0.0f, 0.0f) ) );
modelTransformationStack.pushMatrix(glm::translate(glm::mat4(1.0), g_jupiterTranslate ) );
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0), g_jupiterRotation, glm::vec3(0.0f, 1.0f, 0.0f) ) );
glUniformMatrix4fv(orbitModelMatrixUniformLocation, 1, GL_FALSE, glm::value_ptr(modelTransformationStack.topMatrix()) );
glUniform3f(orbitColorUniformLocation, 0.81f, 0.71f, 0.55f);
glDrawArrays(GL_LINE_LOOP, 0, orbitVertices.size()/3);
modelTransformationStack.clear();
modelTransformationStack.pushMatrix(glm::scale(glm::mat4(1.0), glm::vec3(g_callistoTranslate.x)) );
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0), -90.0f, glm::vec3(1.0f, 0.0f, 0.0f) ) );
modelTransformationStack.pushMatrix(glm::translate(glm::mat4(1.0), g_jupiterTranslate ) );
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0), g_jupiterRotation, glm::vec3(0.0f, 1.0f, 0.0f) ) );
glUniformMatrix4fv(orbitModelMatrixUniformLocation, 1, GL_FALSE, glm::value_ptr(modelTransformationStack.topMatrix()) );
glUniform3f(orbitColorUniformLocation, 0.76f, 0.58f, 0.34f);
glDrawArrays(GL_LINE_LOOP, 0, orbitVertices.size()/3);
modelTransformationStack.clear();
modelTransformationStack.pushMatrix(glm::scale(glm::mat4(1.0), glm::vec3(g_saturnTranslate.x)) );
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0), -90.0f, glm::vec3(1.0f, 0.0f, 0.0f) ) );
glUniformMatrix4fv(orbitModelMatrixUniformLocation, 1, GL_FALSE, glm::value_ptr(modelTransformationStack.topMatrix()) );
glUniform3f(orbitColorUniformLocation, 0.81f, 0.71f, 0.55f);
glDrawArrays(GL_LINE_LOOP, 0, orbitVertices.size()/3);
modelTransformationStack.clear();
modelTransformationStack.pushMatrix(glm::scale(glm::mat4(1.0), glm::vec3(g_uranusTranslate.x)) );
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0), -90.0f, glm::vec3(1.0f, 0.0f, 0.0f) ) );
glUniformMatrix4fv(orbitModelMatrixUniformLocation, 1, GL_FALSE, glm::value_ptr(modelTransformationStack.topMatrix()) );
glUniform3f(orbitColorUniformLocation, 0.44f, 0.62f, 0.67f);
glDrawArrays(GL_LINE_LOOP, 0, orbitVertices.size()/3);
modelTransformationStack.clear();
modelTransformationStack.pushMatrix(glm::scale(glm::mat4(1.0), glm::vec3(g_neptunTranslate.x)) );
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0), -90.0f, glm::vec3(1.0f, 0.0f, 0.0f) ) );
glUniformMatrix4fv(orbitModelMatrixUniformLocation, 1, GL_FALSE, glm::value_ptr(modelTransformationStack.topMatrix()) );
glUniform3f(orbitColorUniformLocation, 0.24f, 0.39f, 0.86f);
glDrawArrays(GL_LINE_LOOP, 0, orbitVertices.size()/3);
modelTransformationStack.clear();
}
//////////////////////////////////////////////////////////////////////////
void draw_saturn_rings()
{
glUseProgram(orbitShaderProgram);
glBindVertexArray(orbitVertexArrayObject);
float saturn_ring_parts = g_num_of_saturn_rings/10;
for(int i = 0; i < g_num_of_saturn_rings; i++)
{
modelTransformationStack.clear();
modelTransformationStack.pushMatrix(glm::scale(glm::mat4(1.0), glm::vec3(1.7+i*0.009)) );
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0), -90.0f, glm::vec3(1.0f, 0.0f, 0.0f) ) );
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0), 30.0f, glm::vec3(0.0f, 0.0f, 1.0f) ) );
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0), -g_saturnRotation, glm::vec3(0.0f, 1.0f, 0.0f) ) );
modelTransformationStack.pushMatrix(glm::translate(glm::mat4(1.0), g_saturnTranslate ) );
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0), g_saturnRotation, glm::vec3(0.0f, 1.0f, 0.0f) ) );
glUniformMatrix4fv(orbitModelMatrixUniformLocation, 1, GL_FALSE, glm::value_ptr(modelTransformationStack.topMatrix()) );
if(i<saturn_ring_parts*2) glUniform3f(orbitColorUniformLocation, 0.25f, 0.23f, 0.22f);
else if(i<saturn_ring_parts*3) glUniform3f(orbitColorUniformLocation, 0.38f, 0.35f, 0.33f);
else if(i<saturn_ring_parts*4) glUniform3f(orbitColorUniformLocation, 0.65f, 0.58f, 0.50f);
else if(i<saturn_ring_parts*6) glUniform3f(orbitColorUniformLocation, 0.58f, 0.51f, 0.41f);
else if(i<saturn_ring_parts*8) glUniform3f(orbitColorUniformLocation, 0.33f, 0.29f, 0.22f);
else if(i<saturn_ring_parts*9) glUniform3f(orbitColorUniformLocation, 0.57f, 0.51f, 0.43f);
else glUniform3f(orbitColorUniformLocation, 0.83f, 0.73f, 0.61f);
glDrawArrays(GL_LINE_LOOP, 0, orbitVertices.size()/3);
}
modelTransformationStack.clear();
}
//////////////////////////////////////////////////////////////////////////
void draw_uranus_rings()
{
glUseProgram(orbitShaderProgram);
glBindVertexArray(orbitVertexArrayObject);
float uranus_ring_parts = g_num_of_uranus_rings/3;
for(int i = 0; i < g_num_of_uranus_rings; i++)
{
modelTransformationStack.clear();
modelTransformationStack.pushMatrix(glm::scale(glm::mat4(1.0), glm::vec3(1.5+i*0.009)) );
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0), -90.0f, glm::vec3(0.0f, 1.0f, 0.0f) ) );
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0), -g_uranusRotation, glm::vec3(0.0f, 1.0f, 0.0f) ) );
modelTransformationStack.pushMatrix(glm::translate(glm::mat4(1.0), g_uranusTranslate ) );
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0), g_uranusRotation, glm::vec3(0.0f, 1.0f, 0.0f) ) );
glUniformMatrix4fv(orbitModelMatrixUniformLocation, 1, GL_FALSE, glm::value_ptr(modelTransformationStack.topMatrix()) );
if(i<uranus_ring_parts*1) glUniform3f(orbitColorUniformLocation, 0.13f, 0.20f, 0.35f);
else if(i<uranus_ring_parts*2) glUniform3f(orbitColorUniformLocation, 0.08f, 0.12f, 0.23f);
else glUniform3f(orbitColorUniformLocation, 0.05f, 0.10f, 0.19f);
glDrawArrays(GL_LINE_LOOP, 0, orbitVertices.size()/3);
}
modelTransformationStack.clear();
}
//////////////////////////////////////////////////////////////////////////
void drawSolarsystem()
{
int now = glutGet(GLUT_ELAPSED_TIME);
int time_difference = now - g_last_elapsed_time;
g_last_elapsed_time = now;
g_elapsed_virtual_time += (float)time_difference * g_speed * g_toggle;
// Rotation
g_neptunRotation = g_elapsed_virtual_time;
g_uranusRotation = g_neptunRotation *2.0;
g_saturnRotation = g_uranusRotation *3.0;
g_jupiterRotation = g_saturnRotation *5.0/2.0;
g_marsRotation = g_jupiterRotation*6.0;
g_earthRotation = g_marsRotation *2.0;
g_venusRotation = g_earthRotation *13.0/8.0;
g_mercuryRotation = g_venusRotation *2.5;
g_earthMoonRotation = g_earthRotation*12.0;
g_ioRotation = g_jupiterRotation*30.0;
g_europaRotation = g_jupiterRotation*25.0;
g_ganymedeRotation = g_jupiterRotation*20.0;
g_callistoRotation = g_jupiterRotation*15.0;
// modelTransformationStack.pushMatrix(glm::scale(glm::mat4(1.0f), glm::vec3(g_ioScale) ) );
modelTransformationStack.pushMatrix(glm::translate(glm::mat4(1.0f), g_europaTranslate ) );
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0f), (float)(g_europaRotation), glm::vec3(0.0f, 1.0f, 0.0f) ) );
modelTransformationStack.pushMatrix(glm::translate(glm::mat4(1.0f), g_jupiterTranslate ) );
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0f), (float)(g_jupiterRotation), glm::vec3(0.0f, 1.0f, 0.0f) ) );
glUseProgram(orbitShaderProgram);
glUniform3f(orbitLightPositionUniformLocation, modelTransformationStack.topMatrix()[3][0], modelTransformationStack.topMatrix()[3][1], modelTransformationStack.topMatrix()[3][2]);
glUseProgram(shaderProgram);
glUniform3f(lightPositionUniformLocation, modelTransformationStack.topMatrix()[3][0], modelTransformationStack.topMatrix()[3][1], modelTransformationStack.topMatrix()[3][2]);
modelTransformationStack.clear();
glUniform1i(planetColorUniformLocation, 0);
glUniform1i(normalColorUniformLocation, 1);
glUniform1i(glossColorUniformLocation, 2);
glUniform1i(specularColorUniformLocation, 3);
glUniform1i(displacementColorUniformLocation, 4);
//mercury
//scale the mercury
modelTransformationStack.pushMatrix(glm::scale(glm::mat4(1.0f), glm::vec3(g_mercuryScale) ) );
//rotate around own axis
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0f), -(float)(3*g_mercuryRotation), glm::vec3(0.0f, 1.0f, 0.0f) ) );
//translate the mercury
modelTransformationStack.pushMatrix(glm::translate(glm::mat4(1.0f), g_mercuryTranslate) );
//rotate it slowly around the y-axis
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0f), (float)(g_mercuryRotation), glm::vec3(0.0f, 1.0f, 0.0f) ) );
//draw the geometry
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, mercuryTexture);
glActiveTexture(GL_TEXTURE1);
glBindTexture(GL_TEXTURE_2D, planetNormalTexture);
glActiveTexture(GL_TEXTURE2);
glBindTexture(GL_TEXTURE_2D, planetGlossTexture);
glActiveTexture(GL_TEXTURE3);
glBindTexture(GL_TEXTURE_2D, planetSpecularTexture);
glActiveTexture(GL_TEXTURE4);
glBindTexture(GL_TEXTURE_2D, planetDisplacementTexture);
drawPlanet(modelTransformationStack.topMatrix());
//clear the transformation stack
modelTransformationStack.clear();
//venus
//scale the venus
modelTransformationStack.pushMatrix(glm::scale(glm::mat4(1.0f), glm::vec3(g_venusScale) ) );
//rotate around own axis
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0f), -(float)(3*g_venusRotation), glm::vec3(0.0f, 1.0f, 0.0f) ) );
//translate the venus
modelTransformationStack.pushMatrix(glm::translate(glm::mat4(1.0f), g_venusTranslate) );
//rotate it slowly around the y-axis
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0f), (float)(g_venusRotation), glm::vec3(0.0f, 1.0f, 0.0f) ) );
//draw the geometry
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, venusTexture);
glActiveTexture(GL_TEXTURE1);
glBindTexture(GL_TEXTURE_2D, planetNormalTexture);
glActiveTexture(GL_TEXTURE2);
glBindTexture(GL_TEXTURE_2D, planetGlossTexture);
glActiveTexture(GL_TEXTURE3);
glBindTexture(GL_TEXTURE_2D, planetSpecularTexture);
glActiveTexture(GL_TEXTURE4);
glBindTexture(GL_TEXTURE_2D, planetDisplacementTexture);
drawPlanet(modelTransformationStack.topMatrix());
//clear the transformation stack
modelTransformationStack.clear();
//earth
//scale the earth
modelTransformationStack.pushMatrix(glm::scale(glm::mat4(1.0f), glm::vec3(g_earthScale) ) );
//rotate around own axis
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0f), -(float)(3*g_earthRotation), glm::vec3(0.0f, 1.0f, 0.0f) ) );
//translate the earth
modelTransformationStack.pushMatrix(glm::translate(glm::mat4(1.0f), g_earthTranslate ) );
//rotate it slowly around the y-axis
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0f), (float)(g_earthRotation), glm::vec3(0.0f, 1.0f, 0.0f) ) );
//draw the geometry
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, earthTexture);
glActiveTexture(GL_TEXTURE1);
glBindTexture(GL_TEXTURE_2D, earthNormalTexture);
glActiveTexture(GL_TEXTURE2);
glBindTexture(GL_TEXTURE_2D, planetGlossTexture);
glActiveTexture(GL_TEXTURE3);
glBindTexture(GL_TEXTURE_2D, planetSpecularTexture);
glActiveTexture(GL_TEXTURE4);
glBindTexture(GL_TEXTURE_2D, earthDisplacementTexture);
drawPlanet(modelTransformationStack.topMatrix());
//clear the transformation stack
modelTransformationStack.clear();
//earthmoon
//scale the earthmoon
modelTransformationStack.pushMatrix(glm::scale(glm::mat4(1.0f), glm::vec3(g_earthMoonScale) ) );
//rotate around own axis
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0f), -(float)(3*g_earthMoonRotation), glm::vec3(0.0f, 1.0f, 0.0f) ) );
//translate the earthmoon
modelTransformationStack.pushMatrix(glm::translate(glm::mat4(1.0f), g_earthMoonTranslate ) );
//rotate it slowly around the y-axis
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0f), (float)(g_earthMoonRotation), glm::vec3(0.0f, 1.0f, 0.0f) ) );
//translate the earthmoon
modelTransformationStack.pushMatrix(glm::translate(glm::mat4(1.0f), g_earthTranslate ) );
//rotate it slowly around the y-axis
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0f), (float)(g_earthRotation), glm::vec3(0.0f, 1.0f, 0.0f) ) );
//draw the geometry
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, moonTexture);
glActiveTexture(GL_TEXTURE1);
glBindTexture(GL_TEXTURE_2D, planetNormalTexture);
glActiveTexture(GL_TEXTURE2);
glBindTexture(GL_TEXTURE_2D, planetGlossTexture);
glActiveTexture(GL_TEXTURE3);
glBindTexture(GL_TEXTURE_2D, planetSpecularTexture);
glActiveTexture(GL_TEXTURE4);
glBindTexture(GL_TEXTURE_2D, planetDisplacementTexture);
drawPlanet(modelTransformationStack.topMatrix());
//clear the transformation stack
modelTransformationStack.clear();
//mars
//scale the mars
modelTransformationStack.pushMatrix(glm::scale(glm::mat4(1.0f), glm::vec3(g_marsScale) ) );
//rotate around own axis
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0f), -(float)(3*g_marsRotation), glm::vec3(0.0f, 1.0f, 0.0f) ) );
//translate the mars
modelTransformationStack.pushMatrix(glm::translate(glm::mat4(1.0f), g_marsTranslate ) );
//rotate it slowly around the y-axis
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0f), (float)(g_marsRotation), glm::vec3(0.0f, 1.0f, 0.0f) ) );
//draw the geometry
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, marsTexture);
glActiveTexture(GL_TEXTURE1);
glBindTexture(GL_TEXTURE_2D, planetNormalTexture);
glActiveTexture(GL_TEXTURE2);
glBindTexture(GL_TEXTURE_2D, planetGlossTexture);
glActiveTexture(GL_TEXTURE3);
glBindTexture(GL_TEXTURE_2D, planetSpecularTexture);
glActiveTexture(GL_TEXTURE4);
glBindTexture(GL_TEXTURE_2D, planetDisplacementTexture);
drawPlanet(modelTransformationStack.topMatrix());
//clear the transformation stack
modelTransformationStack.clear();
//jupiter
//scale the jupiter
modelTransformationStack.pushMatrix(glm::scale(glm::mat4(1.0f), glm::vec3(g_jupiterScale) ) );
//rotate around own axis
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0f), -(float)(3*g_jupiterRotation), glm::vec3(0.0f, 1.0f, 0.0f) ) );
//translate the jupiter
modelTransformationStack.pushMatrix(glm::translate(glm::mat4(1.0f), g_jupiterTranslate ) );
//rotate it slowly around the y-axis
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0f), (float)(g_jupiterRotation), glm::vec3(0.0f, 1.0f, 0.0f) ) );
//draw the geometry
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, jupiterTexture);
glActiveTexture(GL_TEXTURE1);
glBindTexture(GL_TEXTURE_2D, gasplanetNormalTexture);
glActiveTexture(GL_TEXTURE2);
glBindTexture(GL_TEXTURE_2D, gasplanetNormalTexture);
glActiveTexture(GL_TEXTURE3);
glBindTexture(GL_TEXTURE_2D, gasplanetNormalTexture);
glActiveTexture(GL_TEXTURE4);
glBindTexture(GL_TEXTURE_2D, gasplanetNormalTexture);
drawPlanet(modelTransformationStack.topMatrix());
//clear the transformation stack
modelTransformationStack.clear();
draw_jupiter_moons();
//saturn
//scale the saturn
modelTransformationStack.pushMatrix(glm::scale(glm::mat4(1.0f), glm::vec3(g_saturnScale) ) );
//rotate around own axis
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0f), -(float)(3*g_saturnRotation), glm::vec3(0.0f, 1.0f, 0.0f) ) );
//translate the saturn
modelTransformationStack.pushMatrix(glm::translate(glm::mat4(1.0f), g_saturnTranslate ) );
//rotate it slowly around the y-axis
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0f), (float)(g_saturnRotation), glm::vec3(0.0f, 1.0f, 0.0f) ) );
//draw the geometry
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, saturnTexture);
glActiveTexture(GL_TEXTURE1);
glBindTexture(GL_TEXTURE_2D, gasplanetNormalTexture);
glActiveTexture(GL_TEXTURE2);
glBindTexture(GL_TEXTURE_2D, gasplanetNormalTexture);
glActiveTexture(GL_TEXTURE3);
glBindTexture(GL_TEXTURE_2D, gasplanetNormalTexture);
glActiveTexture(GL_TEXTURE4);
glBindTexture(GL_TEXTURE_2D, gasplanetNormalTexture);
drawPlanet(modelTransformationStack.topMatrix());
//clear the transformation stack
modelTransformationStack.clear();
//uranus
//scale the uranus
modelTransformationStack.pushMatrix(glm::scale(glm::mat4(1.0f), glm::vec3(g_uranusScale) ) );
//rotate around own axis
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0f), -(float)(3*g_uranusRotation), glm::vec3(0.0f, 1.0f, 0.0f) ) );
//translate the uranus
modelTransformationStack.pushMatrix(glm::translate(glm::mat4(1.0f), g_uranusTranslate ) );
//rotate it slowly around the y-axis
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0f), (float)(g_uranusRotation), glm::vec3(0.0f, 1.0f, 0.0f) ) );
//draw the geometry
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, uranusTexture);
glActiveTexture(GL_TEXTURE1);
glBindTexture(GL_TEXTURE_2D, gasplanetNormalTexture);
glActiveTexture(GL_TEXTURE2);
glBindTexture(GL_TEXTURE_2D, gasplanetNormalTexture);
glActiveTexture(GL_TEXTURE3);
glBindTexture(GL_TEXTURE_2D, gasplanetNormalTexture);
glActiveTexture(GL_TEXTURE4);
glBindTexture(GL_TEXTURE_2D, gasplanetNormalTexture);
drawPlanet(modelTransformationStack.topMatrix());
//clear the transformation stack
modelTransformationStack.clear();
//neptun
//scale the neptun
modelTransformationStack.pushMatrix(glm::scale(glm::mat4(1.0f), glm::vec3(g_neptunScale) ) );
//rotate around own axis
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0f), -(float)(3*g_neptunRotation), glm::vec3(0.0f, 1.0f, 0.0f) ) );
//translate the neptun
modelTransformationStack.pushMatrix(glm::translate(glm::mat4(1.0f), g_neptunTranslate ) );
//rotate it slowly around the y-axis
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0f), (float)(g_neptunRotation), glm::vec3(0.0f, 1.0f, 0.0f) ) );
//draw the geometry
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, neptuneTexture);
glActiveTexture(GL_TEXTURE1);
glBindTexture(GL_TEXTURE_2D, gasplanetNormalTexture);
glActiveTexture(GL_TEXTURE2);
glBindTexture(GL_TEXTURE_2D, gasplanetNormalTexture);
glActiveTexture(GL_TEXTURE3);
glBindTexture(GL_TEXTURE_2D, gasplanetNormalTexture);
glActiveTexture(GL_TEXTURE4);
glBindTexture(GL_TEXTURE_2D, gasplanetNormalTexture);
drawPlanet(modelTransformationStack.topMatrix());
//clear the transformation stack
modelTransformationStack.clear();
glBindVertexArray(0);
glUseProgram(0);
}
/////////////////////////////////////////////////////////////////////////////////////////
void draw_jupiter_moons()
{
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, moonTexture);
//jupitermoon Io
//scale Io
modelTransformationStack.pushMatrix(glm::scale(glm::mat4(1.0f), glm::vec3(g_ioScale) ) );
//translate the earthmoon
modelTransformationStack.pushMatrix(glm::translate(glm::mat4(1.0f), g_ioTranslate ) );
//rotate it slowly around the y-axis
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0f), (float)(g_ioRotation), glm::vec3(0.0f, 1.0f, 0.0f) ) );
//translate the earthmoon
modelTransformationStack.pushMatrix(glm::translate(glm::mat4(1.0f), g_jupiterTranslate ) );
//rotate it slowly around the y-axis
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0f), (float)(g_jupiterRotation), glm::vec3(0.0f, 1.0f, 0.0f) ) );
//draw the geometry
drawPlanet(modelTransformationStack.topMatrix());
//clear the transformation stack
modelTransformationStack.clear();
//jupitermoon Europa
//scale Europa
modelTransformationStack.pushMatrix(glm::scale(glm::mat4(1.0f), glm::vec3(g_europaScale) ) );
//translate the earthmoon
modelTransformationStack.pushMatrix(glm::translate(glm::mat4(1.0f), g_europaTranslate ) );
//rotate it slowly around the y-axis
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0f), (float)(g_europaRotation), glm::vec3(0.0f, 1.0f, 0.0f) ) );
//translate the earthmoon
modelTransformationStack.pushMatrix(glm::translate(glm::mat4(1.0f), g_jupiterTranslate ) );
//rotate it slowly around the y-axis
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0f), (float)(g_jupiterRotation), glm::vec3(0.0f, 1.0f, 0.0f) ) );
//draw the geometry
drawPlanet(modelTransformationStack.topMatrix());
//clear the transformation stack
modelTransformationStack.clear();
//jupitermoon Ganymede
//scale Ganymede
modelTransformationStack.pushMatrix(glm::scale(glm::mat4(1.0f), glm::vec3(g_ganymedeScale) ) );
//translate the earthmoon
modelTransformationStack.pushMatrix(glm::translate(glm::mat4(1.0f), g_ganymedeTranslate ) );
//rotate it slowly around the y-axis
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0f), (float)(g_ganymedeRotation), glm::vec3(0.0f, 1.0f, 0.0f) ) );
//translate the earthmoon
modelTransformationStack.pushMatrix(glm::translate(glm::mat4(1.0f), g_jupiterTranslate ) );
//rotate it slowly around the y-axis
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0f), (float)(g_jupiterRotation), glm::vec3(0.0f, 1.0f, 0.0f) ) );
//draw the geometry
drawPlanet(modelTransformationStack.topMatrix());
//clear the transformation stack
modelTransformationStack.clear();
//jupitermoon Callisto
//scale Callisto
modelTransformationStack.pushMatrix(glm::scale(glm::mat4(1.0f), glm::vec3(g_callistoScale) ) );
//translate the earthmoon
modelTransformationStack.pushMatrix(glm::translate(glm::mat4(1.0f), g_callistoTranslate ) );
//rotate it slowly around the y-axis
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0f), (float)(g_callistoRotation), glm::vec3(0.0f, 1.0f, 0.0f) ) );
//translate the earthmoon
modelTransformationStack.pushMatrix(glm::translate(glm::mat4(1.0f), g_jupiterTranslate ) );
//rotate it slowly around the y-axis
modelTransformationStack.pushMatrix(glm::rotate(glm::mat4(1.0f), (float)(g_jupiterRotation), glm::vec3(0.0f, 1.0f, 0.0f) ) );
//draw the geometry
drawPlanet(modelTransformationStack.topMatrix());
//clear the transformation stack
modelTransformationStack.clear();
}
/////////////////////////////////////////////////////////////////////////////////////////
void mouseInput(int button, int state, int x, int y)
{
if(button == GLUT_LEFT_BUTTON)
{
if(state == GLUT_UP)
{
last_mouse_x = 0;
last_mouse_y = 0;
}
}
}
void mouseMovement(int x, int y)
{
if(last_mouse_x != 0)
{
float new_camera_x = camera_x + (last_mouse_x - (float)x) * g_mouse_speed;
camera_x = new_camera_x;
}
last_mouse_x = x;
if(last_mouse_y != 0)
{
float new_camera_y = camera_y - (last_mouse_y - (float)y) * g_mouse_speed;
if(new_camera_y >= -90 && new_camera_y <= 90)
{
camera_y = new_camera_y;
}
}
last_mouse_y = y;
}
/////////////////////////////////////////////////////////////////////////////////////////
void specialKeyRelease(int keyEvent, int x, int y)
{
}
/////////////////////////////////////////////////////////////////////////////////////////
void specialKeyPress(int keyEvent, int x, int y)
{
}
/////////////////////////////////////////////////////////////////////////////////////////
void keyRelease(unsigned char keyEvent, int x, int y)
{
if(keyEvent == '1')
{
glUseProgram(shaderProgram);
glUniform1i(shadingModeUniformLocation, 1);
}
if(keyEvent == '2')
{
glUseProgram(shaderProgram);
glUniform1i(shadingModeUniformLocation, 2);
}
if(keyEvent == '7')
{
if(greyscale == 0)
{
greyscale = 1;
}
else
{
greyscale = 0;
}
}
if(keyEvent == '8')
{
if(horizontal_mirrowed == 0)
{
horizontal_mirrowed = 1;
}
else
{
horizontal_mirrowed = 0;
}
}
if(keyEvent == '9')
{
if(vertical_mirrowed == 0)
{
vertical_mirrowed = 1;
}
else
{
vertical_mirrowed = 0;
}
}
if(keyEvent == '0')
{
if(blur == 0)
{
blur = 1;
}
else
{
blur = 0;
}
}
if(keyEvent == 'r')
{
setupShader();
resizeFunction(windowWidth, windowHeight);
}
if(keyEvent == 'f' || keyEvent == 'F')
{
glutFullScreenToggle();
}
if(keyEvent == 27) //escape key
{
cleanup();
glutExit();
}
if(keyEvent == 'w' || keyEvent == 'W')
{
g_key_w = false;
}
if(keyEvent == 's' || keyEvent == 'S')
{
g_key_s = false;
}
if(keyEvent == 'a' || keyEvent == 'A')
{
g_key_a = false;
}
if(keyEvent == 'd' || keyEvent == 'D')
{
g_key_d = false;
}
if(keyEvent == 'q' || keyEvent == 'Q')
{
g_key_q = false;
}
if(keyEvent == 'e' || keyEvent == 'E')
{
g_key_e = false;
}
if(keyEvent == 'z' || keyEvent == 'Z')
{
g_key_z = false;
}
if(keyEvent == 'h' || keyEvent == 'H')
{
g_key_h = false;
}
if(keyEvent == 'g' || keyEvent == 'G')
{
g_key_g = false;
}
if(keyEvent == 'j' || keyEvent == 'J')
{
g_key_j = false;
}
if(keyEvent == 't' || keyEvent == 'T')
{
g_key_t = false;
}
if(keyEvent == 'u' || keyEvent == 'U')
{
g_key_u = false;
}
if(keyEvent == 'x' || keyEvent == 'X')
{
g_speed *= 0.8;
}
if(keyEvent == 'c' || keyEvent == 'C')
{
g_speed *= 1.2;
}
if(keyEvent == 'o' || keyEvent == 'O')
{
g_draw_orbits = !g_draw_orbits;
}
if(glutGetModifiers() != GLUT_ACTIVE_SHIFT)
{
g_key_shift = false;
}
if(glutGetModifiers() == GLUT_ACTIVE_CTRL)
{
g_key_ctrl = false;
}
if(keyEvent == ' ')
{
g_key_space = false;
}
}
/////////////////////////////////////////////////////////////////////////////////////////
void keyPress(unsigned char keyEvent, int x, int y)
{
if(keyEvent == 'w' || keyEvent == 'W')
{
g_key_w = true;
}
if(keyEvent == 's' || keyEvent == 'S')
{
g_key_s = true;
}
if(keyEvent == 'a' || keyEvent == 'A')
{
g_key_a = true;
}
if(keyEvent == 'd' || keyEvent == 'D')
{
g_key_d = true;
}
if(keyEvent == 'q' || keyEvent == 'Q')
{
g_key_q = true;
}
if(keyEvent == 'e' || keyEvent == 'E')
{
g_key_e = true;
}
if(keyEvent == 'z' || keyEvent == 'Z')
{
g_key_z = true;
}
if(keyEvent == 'h' || keyEvent == 'H')
{
g_key_h = true;
}
if(keyEvent == 'g' || keyEvent == 'G')
{
g_key_g = true;
}
if(keyEvent == 'j' || keyEvent == 'J')
{
g_key_j = true;
}
if(keyEvent == 't' || keyEvent == 'T')
{
g_key_t = true;
}
if(keyEvent == 'u' || keyEvent == 'U')
{
g_key_u = true;
}
if(glutGetModifiers() == GLUT_ACTIVE_SHIFT)
{
g_key_shift = true;
}
if(glutGetModifiers() == GLUT_ACTIVE_CTRL)
{
g_key_ctrl = true;
}
if(keyEvent == ' ')
{
if (g_toggle == 0.0){
g_toggle = 1.0;
}else{
g_toggle = 0.0;
}
g_key_space = true;
}
}
/////////////////////////////////////////////////////////////////////////////////////////
void timerFunction(int value){
if(0 != value)
{
int fps = frameCount * 4;
glutSetWindowTitle( (gloost::toString(fps) + " fps").c_str());
}
frameCount = 0;
glutTimerFunc(250, timerFunction, 1);
}
void renderFunction(void)
{
++frameCount;
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
draw();
glutSwapBuffers();
glutPostRedisplay();
}
/////////////////////////////////////////////////////////////////////////////////////////
void setupShader()
{
// LOAD, COMPILE AND LINK PLANET SHADER
shaderProgram = glCreateProgram();
{
//load a shader (of the given type) and compile it in the convenience class 'Shader'
vertexShader = Shader::loadShader("../../../data/shaders/planetVertexShader.vs", GL_VERTEX_SHADER);
fragmentShader = Shader::loadShader("../../../data/shaders/planetFragmentShader.fs", GL_FRAGMENT_SHADER);
//attach the different shader components to the shader program ...
glAttachShader(shaderProgram, vertexShader);
glAttachShader(shaderProgram, fragmentShader);
}
glLinkProgram(shaderProgram);
//program is linked, so we can detach compiled shaders again
glDetachShader(shaderProgram, vertexShader);
glDetachShader(shaderProgram, fragmentShader);
// LOAD, COMPILE AND LINK PLANET SHADER
sunShaderProgram = glCreateProgram();
{
//load a shader (of the given type) and compile it in the convenience class 'Shader'
vertexShader = Shader::loadShader("../../../data/shaders/sunVertexShader.vs", GL_VERTEX_SHADER);
fragmentShader = Shader::loadShader("../../../data/shaders/sunFragmentShader.fs", GL_FRAGMENT_SHADER);
//attach the different shader components to the shader program ...
glAttachShader(sunShaderProgram, vertexShader);
glAttachShader(sunShaderProgram, fragmentShader);
}
glLinkProgram(sunShaderProgram);
//program is linked, so we can detach compiled shaders again
glDetachShader(sunShaderProgram, vertexShader);
glDetachShader(sunShaderProgram, fragmentShader);
// LOAD, COMPILE AND LINK ORBIT SHADER
orbitShaderProgram = glCreateProgram();
{
//load a shader (of the given type) and compile it in the convenience class 'Shader'
vertexShader = Shader::loadShader("../../../data/shaders/orbitVertexShader.vs", GL_VERTEX_SHADER);
fragmentShader = Shader::loadShader("../../../data/shaders/orbitFragmentShader.fs", GL_FRAGMENT_SHADER);
//attach the different shader components to the shader program ...
glAttachShader(orbitShaderProgram, vertexShader);
glAttachShader(orbitShaderProgram, fragmentShader);
}
glLinkProgram(orbitShaderProgram);
//program is linked, so we can detach compiled shaders again
glDetachShader(orbitShaderProgram, vertexShader);
glDetachShader(orbitShaderProgram, fragmentShader);
// LOAD, COMPILE AND LINK SKYSPHERE SHADER
skyShaderProgram = glCreateProgram();
{
//load a shader (of the given type) and compile it in the convenience class 'Shader'
vertexShader = Shader::loadShader("../../../data/shaders/skyVertexShader.vs", GL_VERTEX_SHADER);
fragmentShader = Shader::loadShader("../../../data/shaders/skyFragmentShader.fs", GL_FRAGMENT_SHADER);
//attach the different shader components to the shader program ...
glAttachShader(skyShaderProgram, vertexShader);
glAttachShader(skyShaderProgram, fragmentShader);
}
glLinkProgram(skyShaderProgram);
//program is linked, so we can detach compiled shaders again
glDetachShader(skyShaderProgram, vertexShader);
glDetachShader(skyShaderProgram, fragmentShader);
// LOAD, COMPILE AND LINK SCREEN QUAD SHADER
screenQuadShaderProgram = glCreateProgram();
{
//load a shader (of the given type) and compile it in the convenience class 'Shader'
vertexShader = Shader::loadShader("../../../data/shaders/screenQuadVertexShader.vs", GL_VERTEX_SHADER);
fragmentShader = Shader::loadShader("../../../data/shaders/screenQuadFragmentShader.fs", GL_FRAGMENT_SHADER);
//attach the different shader components to the shader program ...
glAttachShader(screenQuadShaderProgram, vertexShader);
glAttachShader(screenQuadShaderProgram, fragmentShader);
}
glLinkProgram(screenQuadShaderProgram);
//program is linked, so we can detach compiled shaders again
glDetachShader(screenQuadShaderProgram, vertexShader);
glDetachShader(screenQuadShaderProgram, fragmentShader);
//obtain shader variable locations
modelMatrixUniformLocation = glGetUniformLocation(shaderProgram, "ModelMatrix");
viewMatrixUniformLocation = glGetUniformLocation(shaderProgram, "ViewMatrix");
projectionMatrixUniformLocation = glGetUniformLocation(shaderProgram, "ProjectionMatrix");
normalMatrixUniformLocation = glGetUniformLocation(shaderProgram, "NormalMatrix");
shadingModeUniformLocation = glGetUniformLocation(shaderProgram, "ShadingMode");
lightPositionUniformLocation = glGetUniformLocation(shaderProgram, "LightPosition");
planetColorUniformLocation = glGetUniformLocation(shaderProgram, "ColorTexture");
normalColorUniformLocation = glGetUniformLocation(shaderProgram, "NormalMapTexture");
glossColorUniformLocation = glGetUniformLocation(shaderProgram, "GlossMapTexture");
specularColorUniformLocation = glGetUniformLocation(shaderProgram, "SpecularMapTexture");
displacementColorUniformLocation = glGetUniformLocation(shaderProgram, "DisplacementMapTexture");
sunModelMatrixUniformLocation = glGetUniformLocation(sunShaderProgram, "ModelMatrix");
sunViewMatrixUniformLocation = glGetUniformLocation(sunShaderProgram, "ViewMatrix");
sunProjectionMatrixUniformLocation = glGetUniformLocation(sunShaderProgram, "ProjectionMatrix");
sunColorUniformLocation0 = glGetUniformLocation(sunShaderProgram, "ColorTexture0");
sunColorUniformLocation1 = glGetUniformLocation(sunShaderProgram, "ColorTexture1");
sunTimeUniformLocation = glGetUniformLocation(sunShaderProgram, "Time");
orbitModelMatrixUniformLocation = glGetUniformLocation(orbitShaderProgram, "ModelMatrix");
orbitViewMatrixUniformLocation = glGetUniformLocation(orbitShaderProgram, "ViewMatrix");
orbitProjectionMatrixUniformLocation = glGetUniformLocation(orbitShaderProgram, "ProjectionMatrix");
orbitColorUniformLocation = glGetUniformLocation(orbitShaderProgram, "OrbitColor");
orbitLightPositionUniformLocation = glGetUniformLocation(orbitShaderProgram, "LightPosition");
skyModelMatrixUniformLocation = glGetUniformLocation(skyShaderProgram, "ModelMatrix");
skyViewMatrixUniformLocation = glGetUniformLocation(skyShaderProgram, "ViewMatrix");
skyProjectionMatrixUniformLocation = glGetUniformLocation(skyShaderProgram, "ProjectionMatrix");
skyColorUniformLocation = glGetUniformLocation(skyShaderProgram, "ColorTexture");
screenQuadShaderColorTextureUniformLocation = glGetUniformLocation(screenQuadShaderProgram, "ColorTexture");
screenQuadShaderScreenDimensionsUniformLocation = glGetUniformLocation(screenQuadShaderProgram, "ScreenDimensions");
screenQuadShaderGreyscaleUniformLocation = glGetUniformLocation(screenQuadShaderProgram, "greyscale");
screenQuadShaderHorizontalMirrowedUniformLocation = glGetUniformLocation(screenQuadShaderProgram, "horizontal_mirrowed");
screenQuadShaderVerticalMirrowedUniformLocation = glGetUniformLocation(screenQuadShaderProgram, "vertical_mirrowed");
screenQuadShaderBlurUniformLocation = glGetUniformLocation(screenQuadShaderProgram, "blur");
glUseProgram(shaderProgram);
glUniform1i(shadingModeUniformLocation, 1);
}
/////////////////////////////////////////////////////////////////////////////////////////
void setupFrameBuffer()
{
// Create own Framebuffer
glGenFramebuffers(1, &renderFBO);
glBindFramebuffer(GL_FRAMEBUFFER, renderFBO);
// Generate the Color Texture
glGenTextures(1, &renderColorBuffer);
glBindTexture(GL_TEXTURE_2D, renderColorBuffer);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA8, windowWidth, windowHeight,
0, GL_BGRA, GL_UNSIGNED_BYTE, NULL);
// bind the Color Attachment to the Framebuffer
glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, renderColorBuffer, 0);
// generate Depth Buffer
glGenRenderbuffers(1, &renderDepthBuffer);
glBindRenderbuffer(GL_RENDERBUFFER, renderDepthBuffer);
glRenderbufferStorage(GL_RENDERBUFFER, GL_DEPTH_COMPONENT24, windowWidth, windowHeight);
// bind the depth buffer to the Framebuffer
glFramebufferRenderbuffer(GL_FRAMEBUFFER, GL_DEPTH_ATTACHMENT, GL_RENDERBUFFER, renderDepthBuffer);
glBindFramebuffer(GL_FRAMEBUFFER, 0);
}
/////////////////////////////////////////////////////////////////////////////////////////
void createQuad()
{
std::vector<float> geometry =
{
-1.0f, 1.0f, 0.0f,
1.0f, 1.0f, 0.0f,
-1.0f, -1.0f, 0.0f,
-1.0f, -1.0f, 0.0f,
1.0f, 1.0f, 0.0f,
1.0f, -1.0f, 0.0f
};
glGenVertexArrays(1, &screenQuadVAO);
glBindVertexArray(screenQuadVAO);
glGenBuffers(1, &screenQuadVBO);
glBindBuffer(GL_ARRAY_BUFFER, screenQuadVBO);
glBufferData(GL_ARRAY_BUFFER, 6*3* sizeof(float), &(geometry[0]), GL_STATIC_DRAW);
glEnableVertexAttribArray(0);
glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, sizeof(float) * 3, (GLvoid*)0);
glBindBuffer(GL_ARRAY_BUFFER, 0);
glBindVertexArray(0);
}
/////////////////////////////////////////////////////////////////////////////////////////
void loadModel()
{
//load a wavefront *.obj file
gloost::ObjLoader loader("../../../data/objects/sphere1.obj");
mesh = loader.getMesh();
//IMPORTANT: use this to increase the reference counter
//gloost::meshes have a garbage collector which throws
//the mesh away otherwise
mesh->takeReference();
mesh->generateNormals();
//normalizes the mesh
mesh->scaleToSize(1.0);
//puts the meshdata in one array
mesh->interleave();
//mesh->printMeshInfo();
//create V(ertex)A(rray)O(object) which stores the specified attributes of our V(ertex)B(uffer)O(bject)
glGenVertexArrays(1, &vertexArrayObject);
//bind VAO - scope begins
glBindVertexArray(vertexArrayObject);
//create a vertex buffer object
glGenBuffers(1, &vertexBufferObject);
//and bind it as a array buffer target
glBindBuffer(GL_ARRAY_BUFFER, vertexBufferObject);
tangents = calculateTangents();
for(unsigned i = 0; i < mesh->getNumInterleavedPackages(); ++i)
{
meshInfo.push_back(mesh->getVertices()[i][0]);
meshInfo.push_back(mesh->getVertices()[i][1]);
meshInfo.push_back(mesh->getVertices()[i][2]);
glm::vec3 const& normal = glm::vec3(mesh->getNormals()[i][0],mesh->getNormals()[i][1], mesh->getNormals()[i][2]);
// meshInfo.push_back(normal[0]);
// meshInfo.push_back(normal[1]);
// meshInfo.push_back(normal[2]);
meshInfo.push_back(mesh->getTexCoords()[i][0]);
meshInfo.push_back(mesh->getTexCoords()[i][1]);
meshInfo.push_back(tangents[i][0]);
meshInfo.push_back(tangents[i][1]);
meshInfo.push_back(tangents[i][2]);
glm::vec3 bitangent = glm::cross(normal, tangents[i]);
meshInfo.push_back(bitangent[0]);
meshInfo.push_back(bitangent[1]);
meshInfo.push_back(bitangent[2]);
}
//load data that resides in CPU RAM into video RAM.
glBufferData(GL_ARRAY_BUFFER, //??
sizeof(float) * meshInfo.size(), //??
&meshInfo.front(), //??
GL_STATIC_DRAW); //??
//enable vertex attribute at location 0 (compare with vertex shader input)
glEnableVertexAttribArray(0);
//specify where to read the data for attribute at location 0
glVertexAttribPointer(0,
GLOOST_MESH_NUM_COMPONENTS_VERTEX,
GL_FLOAT, //datatype
GL_FALSE, //should the data be normalized?
sizeof(float) * 11, //size of attribute stride for one primitive
(GLvoid*)(0)); //offset in stride
// //enable vertex attribute at location 1 (compare with vertex shader input)
// glEnableVertexAttribArray(1);
// //specifies where in the GL_ARRAY_BUFFER our data(the vertex normal) is exactly (compare with vertex shader input)
// glVertexAttribPointer(1,
// GLOOST_MESH_NUM_COMPONENTS_NORMAL,
// GL_FLOAT, GL_FALSE,
// sizeof(float) * 14,
// (GLvoid*)(sizeof(float) * 3));
//enable vertex attribute at location 1 (compare with vertex shader input)
glEnableVertexAttribArray(1);
//specifies where in the GL_ARRAY_BUFFER our data(the vertex normal) is exactly (compare with vertex shader input)
glVertexAttribPointer(1,
GLOOST_MESH_NUM_COMPONENTS_TEXCOORD,
GL_FLOAT, GL_FALSE,
sizeof(float) * 11,
(GLvoid*)(sizeof(float) * 3));
// enable attribute at loaction 2 (tangent)
glEnableVertexAttribArray(2);
glVertexAttribPointer(2,
GLOOST_MESH_NUM_COMPONENTS_NORMAL,
GL_FLOAT,
GL_FALSE,
sizeof(float) * 11,
(GLvoid*)(sizeof(float) * 5));
//enable attribute at loaction 3 (bitangent)
glEnableVertexAttribArray(3);
glVertexAttribPointer(3,
GLOOST_MESH_NUM_COMPONENTS_NORMAL,
GL_FLOAT,
GL_FALSE,
sizeof(float) * 11,
(GLvoid*)(sizeof(float) * 8));
//the buffer that becomes the element array object is created
glGenBuffers(1, &elementArrayBuffer);
//and then bound to the element array buffer target
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, elementArrayBuffer);
//the triangle indices are loaded and associated with the bound array element buffer
glBufferData(GL_ELEMENT_ARRAY_BUFFER,
sizeof(gloost::TriangleFace) * mesh->getTriangles().size(),
&mesh->getTriangles().front(),
GL_STATIC_DRAW);
// unbind the VAO - scope ends
glBindVertexArray(0);
}
std::vector<glm::vec3> calculateTangents()
{
std::vector<glm::vec3> tangents;
std::vector<glm::vec3> t1 = std::vector<glm::vec3>(mesh->getNumInterleavedPackages(), glm::vec3(0,0,0));
std::vector<glm::vec3> t2 = std::vector<glm::vec3>(mesh->getNumInterleavedPackages(), glm::vec3(0,0,0));
for(gloost::TriangleFace const& tri : mesh->getTriangles())
{
unsigned i1 = tri.vertexIndices[0];
unsigned i2 = tri.vertexIndices[1];
unsigned i3 = tri.vertexIndices[2];
glm::vec3 vert1 = glm::vec3(mesh->getVertices()[i1][0], mesh->getVertices()[i1][1], mesh->getVertices()[i1][2]);
glm::vec3 vert2 = glm::vec3(mesh->getVertices()[i2][0], mesh->getVertices()[i2][1], mesh->getVertices()[i2][2]);
glm::vec3 vert3 = glm::vec3(mesh->getVertices()[i3][0], mesh->getVertices()[i3][1], mesh->getVertices()[i3][2]);
glm::vec3 hor = vert2 - vert1;
glm::vec3 vert = vert3 - vert1;
glm::vec2 tex1 = glm::vec2(mesh->getTexCoords()[i1][0], mesh->getTexCoords()[i1][1]);
glm::vec2 tex2 = glm::vec2(mesh->getTexCoords()[i2][0], mesh->getTexCoords()[i2][1]);
glm::vec2 tex3 = glm::vec2(mesh->getTexCoords()[i3][0], mesh->getTexCoords()[i3][1]);
//horizontal vector
glm::vec2 s = tex2 - tex1;
//vertical vector
glm::vec2 t = tex3 - tex1;
float divisor = 1.0f / (s[0] * t[1] - s[1] * t[0]);
glm::vec3 sDir = glm::vec3(t[1] * hor[0] - t[0] * vert[0], t[1] * hor[1] - t[0] * vert[1], t[1] * hor[2] - t[0] * vert[2]);
sDir *= divisor;
glm::vec3 tDir = glm::vec3(s[0] * vert[0] - s[1] * hor[0], s[0] * vert[1] - s[1] * hor[1], s[0] * vert[2] - s[1] * hor[2]);
tDir *= divisor;
// Vector3D sdir((t2 * x1 - t1 * x2) * r, (t2 * y1 - t1 * y2) * r, (t2 * z1 - t1 * z2) * r);
// Vector3D tdir((s1 * x2 - s2 * x1) * r, (s1 * y2 - s2 * y1) * r,(s1 * z2 - s2 * z1) * r);
t1[i1] = t1[i1] + sDir;
t1[i2] = t1[i2] + sDir;
t1[i3] = t1[i3] + sDir;
t2[i1] = t2[i1] + tDir;
t2[i2] = t2[i2] + tDir;
t2[i3] = t2[i3] + tDir;
}
for(unsigned i = 0; i < mesh->getNumInterleavedPackages(); ++i)
{
glm::vec3 const& normal = glm::vec3(mesh->getNormals()[i][0],mesh->getNormals()[i][1], mesh->getNormals()[i][2]);
//orthogonalize
glm::vec3 tangent = (t1[i] - normal) * glm::normalize(glm::dot(normal, t1[i]));
// correct handedness
if(glm::dot(glm::cross(normal, t1[i]), t2[i]) < 0.0F)
{
tangent = -tangent;
}
tangents.push_back(tangent);
}
return tangents;
}
/////////////////////////////////////////////////////////////////////////////////////////
void generateOrbit()
{
for (int i = 0; i<360; ++i)
{
orbitVertices.push_back(std::cos(i*M_PI/180.0f));
orbitVertices.push_back(std::sin(i*M_PI/180.0f));
orbitVertices.push_back(0.0);
}
glGenVertexArrays(1, &orbitVertexArrayObject);
glBindVertexArray(orbitVertexArrayObject);
glGenBuffers(1, &orbitVertexBufferObject);
glBindBuffer(GL_ARRAY_BUFFER, orbitVertexBufferObject);
glBufferData(GL_ARRAY_BUFFER
, sizeof(float)*orbitVertices.size()
, &orbitVertices[0]
, GL_STATIC_DRAW
);
glEnableVertexAttribArray(0);
glVertexAttribPointer(0
, 3
, GL_FLOAT
, GL_FALSE
, sizeof(float)* 3
, (GLvoid*)(0)
);
}
/////////////////////////////////////////////////////////////////////////////////////////
void loadTextures()
{
// Sky Sphere Texture
TextureLoader::loadImageToGLTexture(skyTexture, "../../../data/textures/suncore.jpg", GL_RGB8, GL_TEXTURE0);
// TextureLoader::loadImageToGLTexture(skyTexture, "../../../data/textures/spaaace.jpg", GL_RGB8, GL_TEXTURE0);
// Sun Textures
TextureLoader::loadImageToGLTexture(sunTexture0, "../../../data/textures/suncore.jpg", GL_RGB8, GL_TEXTURE0);
TextureLoader::loadImageToGLTexture(sunTexture1, "../../../data/textures/sunmap.jpg", GL_RGB8, GL_TEXTURE1);
// Earth Textures
TextureLoader::loadImageToGLTexture(earthTexture, "../../../data/textures/earth_texture.jpg", GL_RGB8, GL_TEXTURE0);
TextureLoader::loadImageToGLTexture(earthNormalTexture, "../../../data/textures/earth_normal.jpg", GL_RGB8, GL_TEXTURE1);
TextureLoader::loadImageToGLTexture(earthGlossTexture, "../../../data/textures/earth_gloss.jpg", GL_RGB8, GL_TEXTURE2);
TextureLoader::loadImageToGLTexture(earthSpecularTexture, "../../../data/textures/earth_gloss.jpg", GL_RGB8, GL_TEXTURE3);
TextureLoader::loadImageToGLTexture(earthDisplacementTexture, "../../../data/textures/earth_displacement.jpg", GL_RGB8, GL_TEXTURE4);
// Color Textures
TextureLoader::loadImageToGLTexture(neptuneTexture, "../../../data/textures/neptunemap.jpg", GL_RGB8, GL_TEXTURE0);
TextureLoader::loadImageToGLTexture(uranusTexture, "../../../data/textures/uranusmap.jpg", GL_RGB8, GL_TEXTURE0);
TextureLoader::loadImageToGLTexture(saturnTexture, "../../../data/textures/saturnmap.jpg", GL_RGB8, GL_TEXTURE0);
TextureLoader::loadImageToGLTexture(jupiterTexture, "../../../data/textures/jupitermap.jpg", GL_RGB8, GL_TEXTURE0);
TextureLoader::loadImageToGLTexture(marsTexture, "../../../data/textures/mars_1k_color.jpg", GL_RGB8, GL_TEXTURE0);
TextureLoader::loadImageToGLTexture(venusTexture, "../../../data/textures/venusmap.jpg", GL_RGB8, GL_TEXTURE0);
TextureLoader::loadImageToGLTexture(mercuryTexture, "../../../data/textures/mercurymap.jpg", GL_RGB8, GL_TEXTURE0);
TextureLoader::loadImageToGLTexture(moonTexture, "../../../data/textures/moonmap.jpg", GL_RGB8, GL_TEXTURE0);
// Normal Textures
TextureLoader::loadImageToGLTexture(planetNormalTexture, "../../../data/textures/planet_normalmap.jpg", GL_RGB8, GL_TEXTURE1);
TextureLoader::loadImageToGLTexture(gasplanetNormalTexture, "../../../data/textures/gas_planet_normalmap.jpg", GL_RGB8, GL_TEXTURE1);
// Displacement Textures
TextureLoader::loadImageToGLTexture(planetDisplacementTexture, "../../../data/textures/planet_normalmap.jpg", GL_RGB8, GL_TEXTURE1);
// Gloss Textures
TextureLoader::loadImageToGLTexture(planetGlossTexture, "../../../data/textures/planet_gloss.jpg", GL_RGB8, GL_TEXTURE2);
// Specular Textures
TextureLoader::loadImageToGLTexture(planetSpecularTexture, "../../../data/textures/planet_gloss.jpg", GL_RGB8, GL_TEXTURE2);
}
/////////////////////////////////////////////////////////////////////////////////////////
void cleanup()
{
glDeleteShader(vertexShader);
glDeleteShader(fragmentShader);
glDeleteProgram(shaderProgram);
glDeleteProgram(sunShaderProgram);
glDeleteProgram(orbitShaderProgram);
glDeleteProgram(skyShaderProgram);
glDeleteBuffers(1, &vertexBufferObject);
glDeleteBuffers(1, &elementArrayBuffer);
glDeleteBuffers(1, &orbitVertexArrayObject);
glDeleteBuffers(1, &orbitElementArrayBuffer);
glDeleteVertexArrays(1, &vertexArrayObject);
glDeleteVertexArrays(1, &orbitVertexBufferObject);
}
/////////////////////////////////////////////////////////////////////////////////////////
void idleFunction(void)
{
glutPostRedisplay();
}
/////////////////////////////////////////////////////////////////////////////////////////
void resizeFBOtextures()
{
glBindTexture(GL_TEXTURE_2D, renderColorBuffer);
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA8, windowWidth, windowHeight, 0, GL_BGRA, GL_UNSIGNED_BYTE, NULL);
glBindTexture(GL_TEXTURE_2D, renderDepthBuffer);
glRenderbufferStorage(GL_RENDERBUFFER, GL_DEPTH_COMPONENT24, windowWidth, windowHeight);
}
/////////////////////////////////////////////////////////////////////////////////////////
void resizeFunction(int Width, int Height)
{
windowWidth = Width;
windowHeight = Height;
glViewport(0, 0, windowWidth, windowHeight);
//create a projection matrix
glm::mat4 projectionMatrix = glm::perspective(60.0f, //FOV 60.0°
(float)windowWidth/windowHeight, //aspect ratio of the projection
0.2f, //near clipping plane
100.0f); //far clipping plane
glUseProgram(shaderProgram); //bind shader program
//upload projection matrix to the shader.
glUniformMatrix4fv(projectionMatrixUniformLocation, 1, GL_FALSE, glm::value_ptr(projectionMatrix) ); //upload projection matrix to bound shader
glUseProgram(sunShaderProgram); //bind shader program
//upload projection matrix to the shader.
glUniformMatrix4fv(sunProjectionMatrixUniformLocation, 1, GL_FALSE, glm::value_ptr(projectionMatrix) ); //upload projection matrix to bound shader
glUseProgram(orbitShaderProgram); //bind shader program
//upload projection matrix to the shader.
glUniformMatrix4fv(orbitProjectionMatrixUniformLocation, 1, GL_FALSE, glm::value_ptr(projectionMatrix) ); //upload projection matrix to bound shader
glUseProgram(skyShaderProgram); //bind shader program
//upload projection matrix to the shader.
glUniformMatrix4fv(skyProjectionMatrixUniformLocation, 1, GL_FALSE, glm::value_ptr(projectionMatrix) ); //upload projection matrix to bound shader
glUseProgram(0); //unbind shader program
resizeFBOtextures();
}
/////////////////////////////////////////////////////////////////////////////////////////
void initWindow(int argc, char* argv[])
{
glutInit(&argc, argv);
glutInitContextVersion(3, 3);
glutInitContextFlags(GLUT_FORWARD_COMPATIBLE);
glutInitContextProfile(GLUT_CORE_PROFILE);
glutSetOption(
GLUT_ACTION_ON_WINDOW_CLOSE,
GLUT_ACTION_GLUTMAINLOOP_RETURNS
);
glutInitWindowSize(windowWidth, windowHeight);
glutInitDisplayMode(GLUT_DEPTH | GLUT_DOUBLE | GLUT_RGBA);
windowHandle = glutCreateWindow("");
if(windowHandle < 1)
{
fprintf(
stderr,
"ERROR: Could not create a new rendering window.\n"
);
glutExit();
}
//GLUT function callbacks. This means: register functions which are called for the specific glut events. Mind the function signature!
//??
glutMouseFunc(mouseInput);
glutMotionFunc(mouseMovement);
//??
glutSpecialFunc(specialKeyPress);
//??
glutSpecialUpFunc(specialKeyRelease);
//??
glutKeyboardFunc(keyPress);
//??
glutKeyboardUpFunc(keyRelease);
//??
glutTimerFunc(0, timerFunction, 0);
//??
glutReshapeFunc(resizeFunction);
//??
glutDisplayFunc(renderFunction);
//??
glutIdleFunc(idleFunction);
}
/////////////////////////////////////////////////////////////////////////////////////////
void initialize(int argc, char* argv[])
{
GLenum GlewInitResult;
initWindow(argc, argv);
glewExperimental = GL_TRUE;
//initialize glew for extensions
GlewInitResult = glewInit();
if (GLEW_OK != GlewInitResult)
{
fprintf(
stderr,
"ERROR: %s\n",
glewGetErrorString(GlewInitResult)
);
glutExit();
}
fprintf(
stdout,
"INFO: OpenGL Version: %s\n",
glGetString(GL_VERSION)
);
glGetError();
//set color to clear the frame buffer with
glClearColor(0.07f, 0.07f, 0.07f, 0.0f);
//enable depth testing
glEnable(GL_DEPTH_TEST);
glDepthFunc(GL_LESS);
//create shaders
setupShader();
setupFrameBuffer();
//load and creating geometry
createQuad();
loadModel();
generateOrbit();
// load Textures
loadTextures();
}
void drawPlanet(glm::mat4 const& model_matrix)
{
// transfer model matrix to shader by the associated uniform location
glUniformMatrix4fv(modelMatrixUniformLocation, 1, GL_FALSE, glm::value_ptr(model_matrix) );
//calculate the normal transfomrations from modelview matrix
glm::mat4 normalMatrix = glm::mat4(1.0f);
normalMatrix = g_viewMatrix*modelTransformationStack.topMatrix();
normalMatrix = glm::inverse(normalMatrix);
normalMatrix = glm::transpose(normalMatrix);
// transfer NormalMatrix for Geometry to Shaders
glUniformMatrix4fv(normalMatrixUniformLocation, 1, GL_FALSE, glm::value_ptr(normalMatrix) );
//bind the planet geometry (the VAO!)
glBindVertexArray(vertexArrayObject);
// draw object according to (the EAO!). Note, that the geometry type is triangles.
glDrawElements(GL_TRIANGLES, mesh->getTriangles().size()*3, GL_UNSIGNED_INT, 0);
}
glm::vec3 compute_viewing_direction(glm::mat4 matrix)
{
// std::cout << -matrix[2][0] << " " << -matrix[2][1] << " " << -matrix[2][2] << std::endl << std::endl;
return glm::vec3(-matrix[2][0], -matrix[2][1], -matrix[2][2]);
}
void print_matrix(glm::mat4 matrix)
{
// std::cout << matrix[0][0] << " " << matrix[1][0] << " " << matrix[2][0] << " " << matrix[3][0] << std::endl;
// std::cout << matrix[0][1] << " " << matrix[1][1] << " " << matrix[2][1] << " " << matrix[3][1] << std::endl;
// std::cout << matrix[0][2] << " " << matrix[1][2] << " " << matrix[2][2] << " " << matrix[3][2] << std::endl;
// std::cout << matrix[0][3] << " " << matrix[1][3] << " " << matrix[2][3] << " " << matrix[3][3] << std::endl << std::endl;
// std::cout << -matrix[2][0] << " " << -matrix[2][1] << " " << -matrix[2][2] << std::endl << std::endl;
}
|
c2dbd61a9f0d3bfa59f1828c94bf30a59de607c4
|
a33aac97878b2cb15677be26e308cbc46e2862d2
|
/program_data/PKU_raw/66/199.c
|
d0451aaa2c18708319fcd0191dab3060f89b13e4
|
[] |
no_license
|
GabeOchieng/ggnn.tensorflow
|
f5d7d0bca52258336fc12c9de6ae38223f28f786
|
7c62c0e8427bea6c8bec2cebf157b6f1ea70a213
|
refs/heads/master
| 2022-05-30T11:17:42.278048
| 2020-05-02T11:33:31
| 2020-05-02T11:33:31
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,336
|
c
|
199.c
|
int main()
{
int x,y,z,a,c,d,e,m;
scanf("%d %d %d",&x,&y,&z);
a=(x-1)/4+(x-1)/400-(x-1)/100;
c=x+a-1;
if((x%4==0&&x%100!=0)||(x%400==0))
{
switch(y)
{
case 1: d=z;
break;
case 2: d=z+3;
break;
case 3: d=z+4;
break;
case 4: d=z;
break;
case 5: d=z+2;
break;
case 6: d=z+5;
break;
case 7: d=z;
break;
case 8: d=z+3;
break;
case 9: d=z+6;
break;
case 10: d=z+1;
break;
case 11: d=z+4;
break;
case 12: d=z+6;
}
}
else
{
switch(y)
{
case 1: d=z;
break;
case 2: d=z+3;
break;
case 3: d=z+4+6;
break;
case 4: d=z+6;
break;
case 5: d=z+2+6;
break;
case 6: d=z+5+6;
break;
case 7: d=z+6;
break;
case 8: d=z+3+6;
break;
case 9: d=z+6+6;
break;
case 10: d=z+1+6;
break;
case 11: d=z+4+6;
break;
case 12: d=z+6+6;
}
}
e = c+ d;
m = e%7;
switch(m)
{
case 1: printf("Mon.\n");
break;
case 2: printf("Tue.\n");
break;
case 3: printf("Wen.\n");
break;
case 4: printf("Thu.\n");
break;
case 5: printf("Fri.\n");
break;
case 6: printf("Sat.\n");
break;
case 0: printf("Sun.\n");
}
return 0;
}
|
9c89f9381b6a9b51c18220356fed67d6577476b3
|
c7c2bebee82778b220a6465c71c41054e4fc5427
|
/runshc/main.cpp
|
a36595b41c8ae2d2243a82b79b053150468c4a65
|
[
"BSD-2-Clause"
] |
permissive
|
hasherezade/pe_to_shellcode
|
969f92746efaf9b78a77f3a5e346cb1d255cda4d
|
a2458c96619b721677af0f9b906cd6a229364b4c
|
refs/heads/master
| 2023-08-16T18:26:23.731329
| 2023-08-15T14:42:12
| 2023-08-15T14:42:12
| 145,343,356
| 2,009
| 388
|
BSD-2-Clause
| 2022-04-22T13:56:56
| 2018-08-19T22:57:07
|
Assembly
|
UTF-8
|
C++
| false
| false
| 3,788
|
cpp
|
main.cpp
|
#include <windows.h>
#include <iostream>
#include <peconv.h>
#define VERSION "1.2"
#include "..\loader_v2\peloader.h"
typedef struct {
BYTE* my_exe;
size_t exe_size;
bool is_run;
} t_module_params;
bool load_and_run(t_module_params& args)
{
BYTE* test_buf = peconv::alloc_aligned(args.exe_size, PAGE_EXECUTE_READWRITE);
if (!test_buf) {
std::cerr << "[ERROR] Allocating buffer failed" << std::endl;
return false;
}
//copy file content into executable buffer:
memcpy(test_buf, args.my_exe, args.exe_size);
//free the original buffer:
peconv::free_file(args.my_exe);
args.my_exe = nullptr;
std::cout << "[*] Running the shellcode [" << std::hex << (ULONG_PTR) test_buf << " - " << (ULONG_PTR)(test_buf + args.exe_size) << "]" << std::endl;
//run it:
int (*my_main)() = (int(*)()) ((ULONGLONG)test_buf);
int ret_val = my_main();
args.is_run = true;
min_hdr_t *my_hdr = (min_hdr_t*)test_buf;
if (my_hdr->load_status == LDS_ATTACHED) {
//run again to unload DLL:
std::cout << "[*] Running again to unload the DLL...\n";
my_main();
std::cout << "[*] Load status: " << (int)my_hdr->load_status << "\n";
}
peconv::free_aligned(test_buf, args.exe_size);
std::cout << "[+] The shellcode finished with a return value: " << std::hex << ret_val << std::endl;
return true;
}
DWORD WINAPI mod_runner(LPVOID lpParam)
{
t_module_params* args = static_cast<t_module_params*>(lpParam);
if (!args) {
return ERROR_BAD_ARGUMENTS;
}
args->is_run = false;
load_and_run(*args);
return S_OK;
}
bool run_in_new_thread(t_module_params &args)
{
std::cout << ">>> Creating a new thread...\n";
HANDLE hThead = CreateThread(
NULL, // default security attributes
0, // use default stack size
mod_runner, // thread function name
&args, // argument to thread function
0, // use default creation flags
0); // returns the thread identifier
if (!hThead) {
std::cerr << "Failed to created the thread!\n";
return false;
}
DWORD wait_result = WaitForSingleObject(hThead, INFINITE);
return (args.is_run);
}
bool run_in_curr_thread(t_module_params &args)
{
std::cout << ">>> Running in a current thread...\n";
load_and_run(args);
return (args.is_run);
}
#define NEW_THREAD
int main(int argc, char *argv[])
{
if (argc < 2) {
std::cout << "~ runshc v." << VERSION << " ~\n"
<< "Run shellcode: loads and deploys shellcode file.\n";
#ifdef _WIN64
std::cout << "For 64-bit shellcodes.\n";
#else
std::cout << "For 32-bit shellcodes.\n";
#endif
std::cout << "Args: <shellcode_file>" << std::endl;
system("pause");
return 0;
}
size_t exe_size = 0;
char* in_path = argv[1];
std::cout << "[*] Reading module from: " << in_path << std::endl;
BYTE *my_exe = peconv::load_file(in_path, exe_size);
if (!my_exe) {
std::cerr << "[ERROR] Loading file failed" << std::endl;
return -1;
}
// if the shellcode is a converted PE, check its bitness before running...
const WORD arch = peconv::get_nt_hdr_architecture(my_exe);
if (arch) {
#ifdef _WIN64
if (arch != IMAGE_NT_OPTIONAL_HDR64_MAGIC) {
std::cerr << "[ERROR] Bitness mismatch: the given payload is not compatibilie with this loader\n";
return 0;
}
#else
if (arch != IMAGE_NT_OPTIONAL_HDR32_MAGIC) {
std::cerr << "[ERROR] Bitness mismatch: the given payload is not compatibilie with this loader\n";
return 0;
}
#endif
}
t_module_params args = { 0 };
args.my_exe = my_exe;
args.exe_size = exe_size;
args.is_run = false;
#ifdef NEW_THREAD
bool res = run_in_new_thread(args);
#else
bool res = run_in_curr_thread(args);
#endif
if (args.my_exe) {
peconv::free_file(args.my_exe);
args.my_exe = nullptr;
my_exe = nullptr;
}
std::cout << ">>> FINISHED.\n";
return 0;
}
|
015f0fdcc1f0aa587820fbbc7375d2eab7ce080a
|
c95937d631510bf5a18ad1c88ac59f2b68767e02
|
/src/gpu/sycl/sycl_gpu_engine.hpp
|
2543d42ad2191605336a68f8b7e2f8fb5a7d4c7f
|
[
"BSD-3-Clause",
"MIT",
"Intel",
"BSL-1.0",
"Apache-2.0",
"BSD-2-Clause"
] |
permissive
|
oneapi-src/oneDNN
|
5cdaa8d5b82fc23058ffbf650eb2f050b16a9d08
|
aef984b66360661b3116d9d1c1c9ca0cad66bf7f
|
refs/heads/master
| 2023-09-05T22:08:47.214983
| 2023-08-09T07:55:23
| 2023-09-05T13:13:34
| 58,414,589
| 1,544
| 480
|
Apache-2.0
| 2023-09-14T07:09:12
| 2016-05-09T23:26:42
|
C++
|
UTF-8
|
C++
| false
| false
| 2,745
|
hpp
|
sycl_gpu_engine.hpp
|
/*******************************************************************************
* Copyright 2019-2022 Intel Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*******************************************************************************/
#ifndef GPU_SYCL_SYCL_GPU_ENGINE_HPP
#define GPU_SYCL_SYCL_GPU_ENGINE_HPP
#include "common/c_types_map.hpp"
#include "common/engine.hpp"
#include "common/utils.hpp"
#include "sycl/sycl_engine_base.hpp"
#include "sycl/sycl_utils.hpp"
namespace dnnl {
namespace impl {
namespace gpu {
namespace sycl {
class sycl_gpu_engine_t : public impl::sycl::sycl_engine_base_t {
public:
using sycl_engine_base_t::context;
using sycl_engine_base_t::create_stream;
using sycl_engine_base_t::device;
sycl_gpu_engine_t(
const ::sycl::device &dev, const ::sycl::context &ctx, size_t index)
: sycl_engine_base_t(engine_kind::gpu, dev, ctx, index) {
assert(dev.is_gpu());
}
status_t create_memory_storage(memory_storage_t **storage, unsigned flags,
size_t size, void *handle) override {
return sycl_engine_base_t::create_memory_storage(
storage, flags, size, handle);
}
status_t create_stream(stream_t **stream, unsigned flags) override {
return sycl_engine_base_t::create_stream(stream, flags);
}
const impl_list_item_t *get_reorder_implementation_list(
const memory_desc_t *src_md,
const memory_desc_t *dst_md) const override {
return gpu::gpu_impl_list_t::get_reorder_implementation_list(
src_md, dst_md);
}
const impl_list_item_t *get_concat_implementation_list() const override {
return gpu::gpu_impl_list_t::get_concat_implementation_list();
}
const impl_list_item_t *get_sum_implementation_list() const override {
return gpu::gpu_impl_list_t::get_sum_implementation_list();
}
const impl_list_item_t *get_implementation_list(
const op_desc_t *desc) const override {
return gpu::gpu_impl_list_t::get_implementation_list(desc);
}
protected:
~sycl_gpu_engine_t() override = default;
};
} // namespace sycl
} // namespace gpu
} // namespace impl
} // namespace dnnl
#endif
|
b605168c2cbb2935e18a72a90e05748513a91530
|
0105094dc5ed9ca5bf344e887ae94b9bf25d353f
|
/firmware/master/common/assetloader.h
|
4a94d5cf7dcbdcf455e2aca4694ab6ba6af5b10c
|
[] |
no_license
|
Green92/thundercracker
|
eed1f59a4c3bfcea9c3cd9e49b23b38720e4dd27
|
75e85aa1bddb1fa07851a12718fa8150ab8428b1
|
refs/heads/master
| 2021-01-12T10:59:25.892200
| 2016-11-03T21:24:13
| 2016-11-03T21:24:13
| 72,781,762
| 0
| 1
| null | 2016-11-03T19:58:37
| 2016-11-03T19:58:37
| null |
UTF-8
|
C++
| false
| false
| 7,660
|
h
|
assetloader.h
|
/* -*- mode: C; c-basic-offset: 4; intent-tabs-mode: nil -*-
*
* Thundercracker firmware
*
* Copyright <c> 2012 Sifteo, Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#ifndef _ASSETLOADER_H
#define _ASSETLOADER_H
#include <sifteo/abi.h>
#include "macros.h"
#include "systime.h"
#include "flash_syslfs.h"
struct PacketBuffer;
struct AssetGroupInfo;
/**
* The AssetLoader is a global object which coordinates the installation of
* assets onto cubes. Our system-side AssetLoader is always available, but
* it lies dormant when no corresponding _SYSAssetLoader is available,
* as it requires this userspace-managed memory to operate.
*
* An AssetLoader can keep track of one AssetConfiguration per cube, also
* in userspace-managed memory. This configuration acts as a set of
* instructions for what to load on each cube.
*
* We communicate with the Cube's radio ISR via FIFO buffers in the
* userspace _SYSAssetLoader. We orchestrate the loading process and
* access flash memory from a Task which fills the FIFO with commands
* and data.
*/
class AssetLoader
{
public:
// Userspace-visible operations
static void start(_SYSAssetLoader *loader, const _SYSAssetConfiguration *cfg,
unsigned cfgSize, _SYSCubeIDVector cv);
static void cancel(_SYSCubeIDVector cv);
static void finish();
// State management entry points
static void init();
static void cubeConnect(_SYSCubeID id);
static void cubeDisconnect(_SYSCubeID id);
// Cube radio ISR entry points
static bool needFlashPacket(_SYSCubeID id);
static bool needFullACK(_SYSCubeID id);
static void produceFlashPacket(_SYSCubeID id, PacketBuffer &buf);
static void ackReset(_SYSCubeID id);
static void ackData(_SYSCubeID id, unsigned bytes);
static void queryResponse(_SYSCubeID id, const PacketBuffer &packet);
/// Tasks callbacks
static void task();
static void heartbeat();
/// Return the current _SYSAssetLoader, if any is attached, or NULL if we're unattached.
static ALWAYS_INLINE _SYSAssetLoader *getUserLoader() {
return userLoader;
}
/// Which cubes might be busy loading assets right now?
static ALWAYS_INLINE _SYSCubeIDVector getActiveCubes() {
return activeCubes;
}
/// Which cubes have we validated the cache on?
static ALWAYS_INLINE _SYSCubeIDVector getCacheCoherentCubes() {
return cacheCoherentCubes;
}
/**
* In simulation only: We can opt to bypass the actual asset loader, and
* instead decompress loadstream data directly into cube flash.
*/
#ifdef SIFTEO_SIMULATOR
static bool simBypass;
#endif
private:
AssetLoader(); // Do not implement
enum TaskState {
S_ERROR, // Internal consistency error; loading will stall.
S_COMPLETE, // Done loading, nothing to do.
S_BEGIN_RESET_STATES,
S_RESET1, // Send a state machine reset token, and begin loading preparations
S_RESET1_WAIT, // Wait for the cube's state machine to finish resetting
S_RESET2, // Second reset packet
S_RESET2_WAIT, // Waiting for second reset packet
S_END_RESET_STATES,
S_CRC_COMMAND, // Waiting to send a CRC query for one slot (substate = slot bitmap)
S_CRC_WAIT, // Waiting for a CRC query response
S_CONFIG_INIT, // Begin work on a Configuration step
S_CONFIG_ADDR, // Sending load address
S_CONFIG_DATA, // Sending AssetGroup data for the current Configuration
S_CONFIG_FINISH, // Wait for cube to finsh programming, then finalize SysLFS state
};
// State-specific data
union SubState {
uint32_t value;
struct {
uint16_t remaining; // CLZ16 map of remaining slots
uint16_t retryCount; // Number of total failures per cube
} crc;
struct {
uint32_t index : 8,
offset : 24;
} config;
};
// State machine (in assetloader_fsm.cpp)
static void fsmEnterState(_SYSCubeID id, TaskState s);
static void fsmTaskState(_SYSCubeID id, TaskState s);
// Synchronous preparations (Happens while we're waiting for reset)
static void prepareCubeForLoading(_SYSCubeID id);
// Simulation-only asset loader bypass hook
#ifdef SIFTEO_SIMULATOR
static bool loaderBypass(_SYSCubeID id, AssetGroupInfo &group);
#endif
// Copy activeCubes to read-only userspace 'busyCubes' value.
static ALWAYS_INLINE void updateActiveCubes()
{
_SYSAssetLoader *localUserLoader = userLoader;
if (localUserLoader)
localUserLoader->busyCubes = activeCubes;
}
/*
* When we send data to the cube, update its watchdog timer.
* Not for use in ISR context.
*
* This is currently quite long, as it should happen quite rarely.
*/
static ALWAYS_INLINE void resetDeadline(_SYSCubeID id)
{
cubeDeadline[id] = SysTime::ticks() + SysTime::msTicks(2500);
}
// Pick the next valid query ID, and return it.
static ALWAYS_INLINE uint8_t nextQueryID(_SYSCubeID id)
{
uint8_t q = (cubeLastQuery[id] + 1) | 0x80;
cubeLastQuery[id] = q;
return q;
}
// Data from userspace
static _SYSAssetLoader *userLoader;
static const _SYSAssetConfiguration *userConfig[_SYS_NUM_CUBE_SLOTS];
static uint8_t userConfigSize[_SYS_NUM_CUBE_SLOTS];
// Aggregate cube state, set up by high-level entry points
static _SYSCubeIDVector activeCubes; // Cubes that are currently loading
static _SYSCubeIDVector startedCubes; // Started, and restartable on cubeConnect()
static _SYSCubeIDVector cacheCoherentCubes; // We're sure SysLFS state matches actual cube flash mem
// Task-owned cube state. Read-only from ISR.
static uint8_t cubeTaskState[_SYS_NUM_CUBE_SLOTS];
static SubState cubeTaskSubstate[_SYS_NUM_CUBE_SLOTS];
static SysTime::Ticks cubeDeadline[_SYS_NUM_CUBE_SLOTS];
static uint8_t cubeLastQuery[_SYS_NUM_CUBE_SLOTS];
// ISR-owned cube state. Read-only from tasks.
static uint8_t cubeBufferAvail[_SYS_NUM_CUBE_SLOTS];
// Atomic shared state
static _SYSCubeIDVector resetPendingCubes;
static _SYSCubeIDVector resetAckCubes;
static _SYSCubeIDVector queryPendingCubes;
static _SYSCubeIDVector queryErrorCubes;
DEBUG_ONLY(static SysTime::Ticks groupBeginTimestamp[_SYS_NUM_CUBE_SLOTS];)
};
#endif
|
42bfad593026d6cf5a6b69f70ab28ec88f1f2cb5
|
d112993968aa5f26d94e94b1d949f8d54ca2b435
|
/expand.cpp
|
407ed55332fafa210babd1059665792f2211936b
|
[] |
no_license
|
igel-kun/sudoku
|
6d4783af629c8675479db8bd9a5dbc0492fd5093
|
47e19f660e748b85ba6e877817733f67bb2b119f
|
refs/heads/master
| 2021-01-25T07:08:23.910757
| 2014-11-06T12:52:06
| 2014-11-06T12:52:06
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,733
|
cpp
|
expand.cpp
|
/********************************************
* expand the eppstein-ruleset
* by M.Weller
********************************************/
#include "sudoku.h"
#include "gen_rules.h"
#include <iostream>
#include <algorithm>
bool extend(const uint x, const uint y, gen_sudoku* s){
bool applicable = false;
uint num_digits = s->getnum_digits();
vtree_list* group;
vtree_list* group2;
vtree_list* isect;
insert_iterator<vtree_list>* iter;
// cannot apply to empty cell
if(!s->get_node(x,y)->get_content()) return false;
for(uint digit = 1; digit <= num_digits; digit++){
applicable = false;
// for each group, count all possibilities of the digit in
// intersecting groups which are not in the current group.
// if this number is one, we got a link
for(uint j = 0; j < 3; j++){
group = s->getvgroup(x,y,j);
for(uint i = 0; i < 3; i++) if(i != j)
for(uint n = 0; n < num_digits; n++){
isect = new vtree_list();
iter = new insert_iterator<vtree_list>(*isect, isect->begin());
group2 = s->getvgroup(x,y,i);
set_intersection(group->begin(), group->end(),
group2->begin(), group2->end(), *iter);
if(!isect->empty()){
delete iter;
iter = new insert_iterator<vtree_list>(*isect, isect->begin());
set_difference(group2->begin(), group2->end(),
group->begin(), group->end(), *iter);
}
delete iter;
delete isect;
}
delete group;
}
if(applicable) break;
}
return applicable;
}
int main(int argc, char** argv){
gen_rule extend_rule(extend);
bool applicable;
gen_sudoku s(9);
cin >> s;
applicable = s.applyrule(&extend_rule);
if(applicable) {
cout << s;
return 1;
} else return 0;
}
|
252988bb511e0835ed846ef26db346432b2ff497
|
e5f9e0a4d690899864bd14a74d418e78c3584de1
|
/demos/https/main.cpp
|
c58993f921ddeb306606fbbc0823442fef94f7a0
|
[
"MIT",
"CC-BY-SA-3.0",
"CC0-1.0",
"Apache-2.0"
] |
permissive
|
geysonsantana/mbed-simulator
|
4b135980d66e1511dddfa763bce8e63729735ad4
|
db47db30c52aa1356981a900ef4f60db374d2a3c
|
refs/heads/master
| 2023-05-01T05:53:54.380058
| 2021-05-09T23:18:23
| 2021-05-09T23:18:23
| 365,847,053
| 0
| 0
|
Apache-2.0
| 2021-05-09T21:21:48
| 2021-05-09T20:59:40
| null |
UTF-8
|
C++
| false
| false
| 3,944
|
cpp
|
main.cpp
|
/**
* This demo shows how to do an HTTPS request with mbed-http
* Note that it does not re-use sockets, so very wasteful.
* To do it the right way, see: https://os.mbed.com/teams/sandbox/code/http-example
*/
#include "mbed.h"
#include "mbed_trace.h"
#include "NetworkInterface.h"
#include "TCPSocket.h"
#include "https_request.h"
/* List of trusted root CA certificates
* currently one: Amazon, the CA for httpbin.org
*
* To add more root certificates, just concatenate them.
*/
const char SSL_CA_PEM[] = "-----BEGIN CERTIFICATE-----\n"
"MIIDQTCCAimgAwIBAgITBmyfz5m/jAo54vB4ikPmljZbyjANBgkqhkiG9w0BAQsF\n"
"ADA5MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6\n"
"b24gUm9vdCBDQSAxMB4XDTE1MDUyNjAwMDAwMFoXDTM4MDExNzAwMDAwMFowOTEL\n"
"MAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJv\n"
"b3QgQ0EgMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4gHHKeNXj\n"
"ca9HgFB0fW7Y14h29Jlo91ghYPl0hAEvrAIthtOgQ3pOsqTQNroBvo3bSMgHFzZM\n"
"9O6II8c+6zf1tRn4SWiw3te5djgdYZ6k/oI2peVKVuRF4fn9tBb6dNqcmzU5L/qw\n"
"IFAGbHrQgLKm+a/sRxmPUDgH3KKHOVj4utWp+UhnMJbulHheb4mjUcAwhmahRWa6\n"
"VOujw5H5SNz/0egwLX0tdHA114gk957EWW67c4cX8jJGKLhD+rcdqsq08p8kDi1L\n"
"93FcXmn/6pUCyziKrlA4b9v7LWIbxcceVOF34GfID5yHI9Y/QCB/IIDEgEw+OyQm\n"
"jgSubJrIqg0CAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC\n"
"AYYwHQYDVR0OBBYEFIQYzIU07LwMlJQuCFmcx7IQTgoIMA0GCSqGSIb3DQEBCwUA\n"
"A4IBAQCY8jdaQZChGsV2USggNiMOruYou6r4lK5IpDB/G/wkjUu0yKGX9rbxenDI\n"
"U5PMCCjjmCXPI6T53iHTfIUJrU6adTrCC2qJeHZERxhlbI1Bjjt/msv0tadQ1wUs\n"
"N+gDS63pYaACbvXy8MWy7Vu33PqUXHeeE6V/Uq2V8viTO96LXFvKWlJbYK8U90vv\n"
"o/ufQJVtMVT8QtPHRh8jrdkPSHCa2XV4cdFyQzR1bldZwgJcJmApzyMZFo6IQ6XU\n"
"5MsI+yMRQ+hDKXJioaldXgjUkK642M4UwtBV8ob2xJNDd2ZhwLnoQdeXeGADbkpy\n"
"rqXRfboQnoZsG4q5WTP468SQvvG5\n"
"-----END CERTIFICATE-----\n";
void dump_response(HttpResponse* res) {
mbedtls_printf("Status: %d - %s\n", res->get_status_code(), res->get_status_message().c_str());
mbedtls_printf("Headers:\n");
for (size_t ix = 0; ix < res->get_headers_length(); ix++) {
mbedtls_printf("\t%s: %s\n", res->get_headers_fields()[ix]->c_str(), res->get_headers_values()[ix]->c_str());
}
mbedtls_printf("\nBody (%d bytes):\n\n%s\n", res->get_body_length(), res->get_body_as_string().c_str());
}
int main() {
NetworkInterface *network = NetworkInterface::get_default_instance();
if (network->connect() != 0) {
printf("Could not connect to the network...\n");
return 1;
}
mbed_trace_init();
// note that this example sets up a new TLS socket for every request... that's wasteful!
// you can set up a socket manually and pass it in, see the TLS Socket example
// GET request to httpbin.org
{
printf("\n----- HTTPS GET request -----\n");
HttpsRequest* get_req = new HttpsRequest(network, SSL_CA_PEM, HTTP_GET, "https://httpbin.org/status/418");
HttpResponse* get_res = get_req->send();
if (!get_res) {
printf("HttpsRequest failed (error code %d)\n", get_req->get_error());
return 1;
}
printf("\n----- HTTPS GET response -----\n");
dump_response(get_res);
delete get_req;
}
// POST request to httpbin.org
{
printf("\n----- HTTPS POST request -----\n");
HttpsRequest* post_req = new HttpsRequest(network, SSL_CA_PEM, HTTP_POST, "https://httpbin.org/post");
post_req->set_header("Content-Type", "application/json");
const char body[] = "{\"hello\":\"world\"}";
HttpResponse* post_res = post_req->send(body, strlen(body));
if (!post_res) {
printf("HttpsRequest failed (error code %d)\n", post_req->get_error());
return 1;
}
printf("\n----- HTTPS POST response -----\n");
dump_response(post_res);
delete post_req;
}
wait(osWaitForever);
}
|
551face250d626318bf608d6efe7df25456a785c
|
66862c422fda8b0de8c4a6f9d24eced028805283
|
/cmake-3.17.5/Tests/QtAutogen/SameName/ccc/item.hpp
|
20d9dd978beb85eae93ec3fe23246f7e884e7b22
|
[
"BSD-3-Clause",
"MIT"
] |
permissive
|
zhh2005757/slambook2_in_Docker
|
57ed4af958b730e6f767cd202717e28144107cdb
|
f0e71327d196cdad3b3c10d96eacdf95240d528b
|
refs/heads/main
| 2023-09-01T03:26:37.542232
| 2021-10-27T11:45:47
| 2021-10-27T11:45:47
| 416,666,234
| 17
| 6
|
MIT
| 2021-10-13T09:51:00
| 2021-10-13T09:12:15
| null |
UTF-8
|
C++
| false
| false
| 223
|
hpp
|
item.hpp
|
#ifndef CCC_ITEM_HPP
#define CCC_ITEM_HPP
#include <QObject>
// Include ui_view.h in source and header
#include <ccc/ui_view.h>
namespace ccc {
class Item : public QObject
{
Q_OBJECT
Q_SLOT
void go();
};
}
#endif
|
92960bd4949418ca83fb2ad207d48d3c91d539ea
|
d10e3163b018d182bf15a45b94a49fea7fce1778
|
/AAFusion/AADataGenerator.h
|
90e8d23a75a3a383212ed35473aeda4d8159a32c
|
[
"MIT"
] |
permissive
|
DongZhaoYu/AARFS
|
732c9ee59ced9a661f773c23ee6c8c2f443be569
|
abb67f411e42eff3dd0015f89d9d3c29dee9cdc4
|
refs/heads/master
| 2020-05-30T04:15:58.266114
| 2017-09-16T03:49:54
| 2017-09-16T03:49:54
| 27,772,680
| 0
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 10,788
|
h
|
AADataGenerator.h
|
/*
* @file: AADataGenerator.h
* @brief: the data generator for ais and arpa radar, the RWP model is used
* @author: dongzhaoyu
* @date: 2008-5-5
*
* Copyright (C) CTEC Xi'an JiaoTong University
*/
#if _MSC_VER > 1200
#pragma once
#define _AADATAGENERATOR_H
#endif
#include <windows.h>
#include <math.h>
#include <tchar.h>
#include <assert.h>
#include <time.h>
#include <list>
#include "../AACommon/AAStdtype.h"
#include "../AACommon/AAPredefine.h"
//----------------------------------------------------------------------------------------------------
#define NAME_LEN 30
#define CALLSIGN_LEN 5
#define MMSI_LEN 9
#define STATUS_LEN 20
#define DEST_LEN 20
#define TYPE_LEN 20
#define DISTANCE(x1, y1, x2, y2) (sqrt(((x2) - (x1)) * ((x2) - (x1)) + ((y2) - (y1)) * ((y2) - (y1))))
//---------------------------------------------------------------------------------------------------------
/* in the data generation procedure, we need to transform the coordinate from x-y to latitude-longitude
and the opposite, here we use the gauss-kruger projection, the WGS84 standard is used
*/
void GKProjection(F64 central, F64 longitude, F64 latitude, F64 &x, F64 &y);
void GKProjectionInv(F64 central, F64 x, F64 y, F64 &longitude, F64 &latitude);
//generat a random number between a and b
inline S32 AARAND(S32 a, S32 b, S32 offset = 0);
//generat a random angle
inline F64 AAAngle(F64 angle, F64 maxanglechange);
//generat a random speed
inline F64 AASpeed(F64 speed, F64 mins, F64 maxs, F64 maxchange);
//-----------------------------------------------------------------------------------------------------------
//mark the ship's state in simulation
typedef enum _SIMULATIONSTATE
{
SIMULATION_FORWARD, //the ship is normal
SIMULATION_LEFT_ROTATE, //the ship stopped and rotating left
SIMULATION_RIGHT_ROTATE //the ship stopped and rotationg right
}SIMULATIONSTATE;
//the information for a specified ship
typedef struct _ShipInfo
{
U32 m_ShipID;
TCHAR m_Name[NAME_LEN + 2];
TCHAR m_CallSign[CALLSIGN_LEN + 3];
TCHAR m_MMSI[MMSI_LEN + 3]; //the MMSI number's length is 9
U32 m_Length; //the length of the ship 10 - 100
U32 m_Width; //the width of the ship 5 - 10
F64 m_Latitude; //the latitude of the ship's location, is equavalent to x coordinate
F64 m_Longitude; //the longitude of the ship's location, is equavalent to y coordinate
F64 m_MoveSpeed; //speed of the ship
F64 m_RotationSpeed; //rotation speed
F64 m_Head; //the angle the ship is heading for
S32 m_RemainTime; //the remaining time the ship to change state
TCHAR m_Status[STATUS_LEN + 2]; //ship's status, stop, running or etc.
TCHAR m_Dest[DEST_LEN + 2]; //the ship's destination
S64 m_ETA; //the estimated time to arrival
S64 m_UTC; //the universal time coordination
TCHAR m_Type[TYPE_LEN]; //the type of the ship
SIMULATIONSTATE m_SimState; //the ship's state in the simulation
F64 m_MaxSpeed; //the maximum speed of the ship
F64 m_MinSpeed; //the minimum speed of the ship
F64 m_MaxSpeedChange;
S32 m_MaxTimePeriod; //the maximum time period the ship move at a specified speed
S32 m_MinTimePeriod; //the minimum time period the ship move at a specified speed
F64 m_MaxAngleChange; //the maximum rotation speed change
F64 m_MaxRotationSpeed; //
F64 m_MinRotationSpeed; //
S64 m_LastRadarSampleTime;
S64 m_LastAISSampleTime;
S32 m_AISCycle; //the current cycle of AIS sampler in the ship
}ShipInfo;
//the data can receive from AIS
typedef struct _AISData
{
S32 m_ShipID;
TCHAR m_Name[NAME_LEN + 1]; //we assume the maximum length of name is 30
TCHAR m_CallSign[CALLSIGN_LEN + 1]; //the call-sign length is 5 or 4, add 1 for safe
TCHAR m_MMSI[MMSI_LEN + 1]; //the MMSI number's length is 9
U32 m_Length; //the length of the ship
U32 m_Width; //the width of the ship
F64 m_Latitude; //the latitude of the ship's location, is equavalent to x coordinate
F64 m_Longitude; //the longitude of the ship's location, is equavalent to y coordinate
F64 m_Head; //the angle the ship is heading for
F64 m_Speed; //speed of the ship
TCHAR m_Status[STATUS_LEN + 1]; //ship's status, stop, running or etc.
TCHAR m_Dest[DEST_LEN + 1]; //the ship's destination
S64 m_ETA; //the estimated time to arrival
S64 m_UTC; //the universal time coordination
F64 m_Distance; //the distance of the ship
TCHAR m_Type[TYPE_LEN]; //the type of the ship
}AISData;
//the data can receive from radar
typedef struct _RadarData
{
S32 m_ShipID;
F64 m_Distance; //the distance of the ship
F64 m_Angle; //the angle of the ship
S32 m_AISCycle;
F64 m_Speed;
S64 m_UTC; //the time the data was received
F64 m_Latitude;
F64 m_Longitude;
}RadarData;
//the scene info
typedef struct _SceneInfo
{
F64 m_LeftLongitude;
F64 m_RightLongitude;
F64 m_TopLatitude;
F64 m_BottomLatitude;
F64 m_CentralLongitude;
S32 m_ShipCount; //the total number of ships
}SceneInfo;
//-------------------------------------------------------------------------------------------------------------
//forwar reference
class RadarSampler;
class AADataGenerator;
class AISSmpler;
class AAReader;
//-------------------------------------------------------------------------------------------------------------
//a class for synchronization
class AALock
{
public:
inline AALock(CRITICAL_SECTION *cs) { if (cs) EnterCriticalSection(cs); m_pCS = cs; }
inline ~AALock() { if (m_pCS) LeaveCriticalSection(m_pCS); m_pCS = NULL;}
private:
CRITICAL_SECTION *m_pCS;
};
//------------------------------------------------------------------------------------------------------------
//the base class for scene visitor
class SceneVisitor
{
public:
virtual ~SceneVisitor() { DeleteCriticalSection(&m_CS); }
//virtual Bool NeedUpdate() { AALock(&(this->m_CS)); return m_NeedUpdate; }
virtual void VisitScene(AADataGenerator*) {};
//virtual void GetData(void *buffer, U32 &size);
virtual void AcceptReader(AAReader*) {};
SET_GET_ACCESSOR(U32, MaxSize)
protected:
SceneVisitor(F64 x = 0.0f, F64 y = 0.0f) { InitializeCriticalSection(&m_CS); m_MaxSize = 200; m_Posx = x; m_Posy = y; }
//Bool m_NeedUpdate;
CRITICAL_SECTION m_CS;
U32 m_MaxSize;
F64 m_Posx; //the ship's position in projection coordinate
F64 m_Posy;
};
//-------------------------------------------------------------------------------------------------------------
//the radar data sampler, a concrete visitor to scene
class RadarSampler : public SceneVisitor
{
public:
typedef std::list<RadarData> RadarBuffer;
RadarSampler();
RadarSampler(F64 x, F64 y, F64 radius, HWND notifywin = NULL);
~RadarSampler();
virtual void VisitScene(AADataGenerator*);
virtual void AcceptReader(AAReader*);
virtual const RadarBuffer* GetBuffer() const { return &m_Buffer; }
inline F64 GetLocationAngle(F64 x, F64 y); //calculate the location angle of the ship related to radar
SET_GET_ACCESSOR(U32, Cycle)
private:
RadarBuffer m_Buffer;
F64 m_Radius;
U32 m_Cycle;
HWND m_hNotifyWin; //a handle to a window to be notifid when the radar sampler read a data
};
//---------------------------------------------------------------------------------------------------------------------
//the AIS data sampler, a concrete visitor to scene
class AISSampler : public SceneVisitor
{
public:
typedef std::list<AISData> AISBuffer;
AISSampler(F64 = 0.0f, F64 = 0.0f);
~AISSampler();
virtual void VisitScene(AADataGenerator*);
virtual void AcceptReader(AAReader*);
virtual const AISBuffer* GetBuffer() const { return &m_Buffer; }
static S32 AISCycle(const ShipInfo &ship);
private:
AISBuffer m_Buffer;
};
//-------------------------------------------------------------------------------------------------------------------------
//read data from AIS and radar
class AAReader
{
public:
typedef std::list<RadarData> RadarDataElement;
typedef RadarDataElement::iterator RadarIterator;
typedef std::list<AISData> AISDataElement;
typedef AISDataElement::iterator AISIterator;
typedef CGrowableArray<RadarDataElement > RadarDataBuffer;
typedef CGrowableArray<AISDataElement > AISDataBuffer;
AAReader();
AAReader(S32 size);
virtual ~AAReader() {}
virtual void VisitRadar(RadarSampler*);
virtual void VisitAIS(AISSampler*);
protected:
template<typename ArrayType, typename ContainerType>
void DataCopy(ArrayType &dest, const ContainerType *source)
{
ContainerType::const_iterator it;
S32 id;
for (it = source->begin(); it != source->end(); it++)
{
id = it->m_ShipID;
dest[id].push_back(*it);
}
}
S32 m_Size;
RadarDataBuffer m_Radar;
AISDataBuffer m_AIS;
};
//-----------------------------------------------------------------------------------------------------------------------
//procedure for the thread to update the scene
DWORD WINAPI UpdateScene(LPVOID lppara);
//data generation model, maintain a scene for ship simulation
class AADataGenerator
{
public:
typedef DWORD (WINAPI *UpdateProc)(LPVOID lppara);
AADataGenerator();
AADataGenerator(SceneInfo&, /*HANDLE = NULL,*/ SceneVisitor* = NULL, SceneVisitor* = NULL, UpdateProc = UpdateScene);
~AADataGenerator(); //this class is not used as a parent class
void Accept(SceneVisitor*);
ShipInfo* GetShip(S32 index) { assert(m_pShip); return m_pShip + index; }
S32 GetShipCount() const { return m_SceneInfo.m_ShipCount; }
void AddTime(U32 slap) { m_Time += slap; }
void Update();
void InitShip();
GET_SET_ACCESSOR(SceneVisitor*, pRadar)
GET_SET_ACCESSOR(SceneVisitor*, pAIS)
GET_ACCESSOR(__time64_t, Time)
F64 GetCentral() { return m_SceneInfo.m_CentralLongitude; }
private:
volatile Bool m_Work; //main thread set m_work to notify the work thread to terminate
SceneInfo m_SceneInfo;
F64 m_LeftCoordinate;
F64 m_BottomCoordinate;
F64 m_SceneLength;
F64 m_SceneWidth;
ShipInfo *m_pShip;
__time64_t m_Time;
U32 m_TimeStep;
UpdateProc m_UpdateProc;
HANDLE m_WorkThread; //the thread to simulate the scene
//HANDLE m_Event; //the event to resume the thread, it is created by the main thread
U32 m_VisitorCycle;
S64 m_LastVisitorTime;
SceneVisitor *m_pRadar; //the radar sampler, created by the main thread
SceneVisitor *m_pAIS; //the AIS sampler, created by the main thread
};
//------------------------------------------------------------------------------------------------------------------------
|
dada7f73f3475bad61794a06e2878667814cffcf
|
30ee1522dcfb05ac7b7d9c55f8eb02dd062c3228
|
/src/frovedis/dataframe/dfcolumn.hpp
|
90a0bd6880ab00375807ae78b1dffd4be8a1fa06
|
[
"BSD-2-Clause"
] |
permissive
|
qsourav/frovedis
|
8f55968330804b3f6cfd3c28fd1ab6985aa12201
|
b85912921a00aa11ff1020c4adc9fb8989a7c1ec
|
refs/heads/master
| 2023-03-15T22:21:47.630880
| 2021-03-05T03:01:06
| 2021-03-05T03:01:06
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 75,279
|
hpp
|
dfcolumn.hpp
|
#ifndef DFCOLUMN_HPP
#define DFCOLUMN_HPP
#include <string>
#include <memory>
#include <tuple>
#include "../core/dvector.hpp"
#include "../core/dunordered_map.hpp"
#include "../core/vector_operations.hpp"
#include "hashtable.hpp"
#include "join.hpp"
#include "../text/dict.hpp"
#include "../text/parsedatetime.hpp"
#include "dfscalar.hpp"
#define DFNODESHIFT 48 // used to concatenate node id and local index
namespace frovedis {
class dfcolumn {
public:
virtual ~dfcolumn(){}
virtual size_t size() = 0;
virtual std::vector<size_t> sizes() = 0;
virtual void debug_print() = 0;
virtual dvector<std::string> as_string() = 0;
virtual node_local<words> as_words(size_t precision = 6,
const std::string& datetime_fmt = "%Y-%m-%d",
bool quote_escape = false,
const std::string& nullstr = "NULL") = 0;
virtual node_local<std::vector<size_t>>
filter_eq(std::shared_ptr<dfcolumn>& right) = 0;
virtual node_local<std::vector<size_t>>
filter_eq_immed(std::shared_ptr<dfscalar>& right) = 0;
virtual node_local<std::vector<size_t>>
filter_neq(std::shared_ptr<dfcolumn>& right) = 0;
virtual node_local<std::vector<size_t>>
filter_neq_immed(std::shared_ptr<dfscalar>& right) = 0;
virtual node_local<std::vector<size_t>>
filter_lt(std::shared_ptr<dfcolumn>& right) {
throw std::runtime_error("filter_lt is not supported for this type");
}
virtual node_local<std::vector<size_t>>
filter_lt_immed(std::shared_ptr<dfscalar>& right) {
throw std::runtime_error("filter_lt_immed is not supported for this type");
}
virtual node_local<std::vector<size_t>>
filter_le(std::shared_ptr<dfcolumn>& right) {
throw std::runtime_error("filter_le is not supported for this type");
}
virtual node_local<std::vector<size_t>>
filter_le_immed(std::shared_ptr<dfscalar>& right) {
throw std::runtime_error("filter_le_immed is not supported for this type");
}
virtual node_local<std::vector<size_t>>
filter_gt(std::shared_ptr<dfcolumn>& right) {
throw std::runtime_error("filter_gt is not supported for this type");
}
virtual node_local<std::vector<size_t>>
filter_gt_immed(std::shared_ptr<dfscalar>& right) {
throw std::runtime_error("filter_gt_immed is not supported for this type");
}
virtual node_local<std::vector<size_t>>
filter_ge(std::shared_ptr<dfcolumn>& right) {
throw std::runtime_error("filter_ge is not supported for this type");
}
virtual node_local<std::vector<size_t>>
filter_ge_immed(std::shared_ptr<dfscalar>& right) {
throw std::runtime_error("filter_ge_immed is not supported for this type");
}
virtual node_local<std::vector<size_t>>
filter_is_null() = 0;
virtual node_local<std::vector<size_t>>
filter_is_not_null() = 0;
virtual std::shared_ptr<dfcolumn>
extract(node_local<std::vector<size_t>>& idx) = 0;
virtual std::shared_ptr<dfcolumn>
global_extract(node_local<std::vector<size_t>>&,
node_local<std::vector<size_t>>&,
node_local<std::vector<std::vector<size_t>>>&) = 0;
virtual std::shared_ptr<dfcolumn>
sort(node_local<std::vector<size_t>>&) = 0;
virtual std::shared_ptr<dfcolumn>
sort_desc(node_local<std::vector<size_t>>&) = 0;
virtual std::shared_ptr<dfcolumn>
sort_with_idx(node_local<std::vector<size_t>>&,
node_local<std::vector<size_t>>&) = 0;
virtual std::shared_ptr<dfcolumn>
sort_with_idx_desc(node_local<std::vector<size_t>>&,
node_local<std::vector<size_t>>&) = 0;
virtual std::pair<node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>>
hash_join_eq(std::shared_ptr<dfcolumn>& right,
node_local<std::vector<size_t>>& left_full_local_idx,
node_local<std::vector<size_t>>& right_full_local_idx) = 0;
virtual std::tuple<node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>>
outer_hash_join_eq(std::shared_ptr<dfcolumn>& right,
node_local<std::vector<size_t>>& left_full_local_idx,
node_local<std::vector<size_t>>& right_full_local_idx)
= 0;
virtual std::pair<node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>>
bcast_join_eq(std::shared_ptr<dfcolumn>& right,
node_local<std::vector<size_t>>& left_full_local_idx,
node_local<std::vector<size_t>>& right_full_local_idx) = 0;
virtual std::pair<node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>>
bcast_join_lt(std::shared_ptr<dfcolumn>& right,
node_local<std::vector<size_t>>& left_full_local_idx,
node_local<std::vector<size_t>>& right_full_local_idx) = 0;
virtual std::pair<node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>>
bcast_join_le(std::shared_ptr<dfcolumn>& right,
node_local<std::vector<size_t>>& left_full_local_idx,
node_local<std::vector<size_t>>& right_full_local_idx) = 0;
virtual std::pair<node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>>
bcast_join_gt(std::shared_ptr<dfcolumn>& right,
node_local<std::vector<size_t>>& left_full_local_idx,
node_local<std::vector<size_t>>& right_full_local_idx) = 0;
virtual std::pair<node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>>
bcast_join_ge(std::shared_ptr<dfcolumn>& right,
node_local<std::vector<size_t>>& left_full_local_idx,
node_local<std::vector<size_t>>& right_full_local_idx) = 0;
virtual std::tuple<node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>>
outer_bcast_join_eq(std::shared_ptr<dfcolumn>& right,
node_local<std::vector<size_t>>& left_full_local_idx,
node_local<std::vector<size_t>>& right_full_local_idx)
= 0;
virtual std::pair<node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>>
star_join_eq(std::shared_ptr<dfcolumn>& right,
node_local<std::vector<size_t>>& left_full_local_idx,
node_local<std::vector<size_t>>& right_full_local_idx) = 0;
virtual node_local<std::vector<size_t>> get_local_index() = 0;
// append nulls created by outer join
virtual void append_nulls(node_local<std::vector<size_t>>& to_append) = 0;
virtual std::shared_ptr<dfcolumn> group_by
(node_local<std::vector<size_t>>& local_idx,
node_local<std::vector<size_t>>& split_idx,
node_local<std::vector<std::vector<size_t>>>& hash_divide,
node_local<std::vector<std::vector<size_t>>>& merge_map) = 0;
// for group by of multiple columns
virtual void
multi_group_by_sort(node_local<std::vector<size_t>>& local_idx) = 0;
virtual node_local<std::vector<size_t>>
multi_group_by_sort_split(node_local<std::vector<size_t>>& local_idx) = 0;
virtual node_local<std::vector<size_t>>
multi_group_by_split(node_local<std::vector<size_t>>& local_idx) = 0;
virtual std::shared_ptr<dfcolumn> multi_group_by_extract
(node_local<std::vector<size_t>>& local_idx,
node_local<std::vector<size_t>>& split_idx,
bool check_nulls) = 0;
virtual node_local<std::vector<size_t>>
calc_hash_base() = 0;
virtual void
calc_hash_base(node_local<std::vector<size_t>>& hash, int shift) = 0;
virtual std::shared_ptr<dfcolumn>
multi_group_by_exchange(node_local<std::vector<std::vector<size_t>>>&
hash_divide) = 0;
virtual node_local<std::vector<size_t>>
calc_hash_base_multi_join(std::shared_ptr<dfcolumn>& left) = 0;
virtual void
calc_hash_base_multi_join(node_local<std::vector<size_t>>& hash, int shift,
std::shared_ptr<dfcolumn>& left) = 0;
// for grouped_dftable
virtual std::shared_ptr<dfcolumn>
sum(node_local<std::vector<size_t>>& local_grouped_idx,
node_local<std::vector<size_t>>& local_idx_split,
node_local<std::vector<std::vector<size_t>>>& hash_divide,
node_local<std::vector<std::vector<size_t>>>& merge_map,
node_local<size_t>& row_sizes) = 0;
virtual std::shared_ptr<dfcolumn>
count(node_local<std::vector<size_t>>& local_grouped_idx,
node_local<std::vector<size_t>>& local_idx_split,
node_local<std::vector<std::vector<size_t>>>& hash_divide,
node_local<std::vector<std::vector<size_t>>>& merge_map,
node_local<size_t>& row_sizes) = 0;
virtual std::shared_ptr<dfcolumn>
avg(node_local<std::vector<size_t>>& local_grouped_idx,
node_local<std::vector<size_t>>& local_idx_split,
node_local<std::vector<std::vector<size_t>>>& hash_divide,
node_local<std::vector<std::vector<size_t>>>& merge_map,
node_local<size_t>& row_sizes) = 0;
virtual std::shared_ptr<dfcolumn>
max(node_local<std::vector<size_t>>& local_grouped_idx,
node_local<std::vector<size_t>>& local_idx_split,
node_local<std::vector<std::vector<size_t>>>& hash_divide,
node_local<std::vector<std::vector<size_t>>>& merge_map,
node_local<size_t>& row_sizes) = 0;
virtual std::shared_ptr<dfcolumn>
min(node_local<std::vector<size_t>>& local_grouped_idx,
node_local<std::vector<size_t>>& local_idx_split,
node_local<std::vector<std::vector<size_t>>>& hash_divide,
node_local<std::vector<std::vector<size_t>>>& merge_map,
node_local<size_t>& row_sizes) = 0;
// for whole column
virtual size_t count() = 0; // exclude null
template <class T> T sum();
virtual double avg() = 0;
template <class T> T max();
template <class T> T min();
template <class T> dvector<T> as_dvector();
// cast to float/double; throw exception when string
virtual dvector<float> as_dvector_float() = 0;
virtual dvector<double> as_dvector_double() = 0;
virtual std::shared_ptr<dfcolumn> type_cast(const std::string& to_type) {
throw std::runtime_error("type_cast is not supported for this type");
}
virtual std::shared_ptr<dfcolumn>
add(const std::shared_ptr<dfcolumn>& right) {
throw std::runtime_error("add is not supported for this type");
}
virtual std::shared_ptr<dfcolumn>
add_im(const std::shared_ptr<dfscalar>& right) {
throw std::runtime_error("add_im is not supported for this type");
}
virtual std::shared_ptr<dfcolumn>
sub(const std::shared_ptr<dfcolumn>& right) {
throw std::runtime_error("sub is not supported for this type");
}
virtual std::shared_ptr<dfcolumn>
sub_im(const std::shared_ptr<dfscalar>& right) {
throw std::runtime_error("sub_im is not supported for this type");
}
virtual std::shared_ptr<dfcolumn>
mul(const std::shared_ptr<dfcolumn>& right) {
throw std::runtime_error("mul is not supported for this type");
}
virtual std::shared_ptr<dfcolumn>
mul_im(const std::shared_ptr<dfscalar>& right) {
throw std::runtime_error("mul_im is not supported for this type");
}
virtual std::shared_ptr<dfcolumn>
fdiv(const std::shared_ptr<dfcolumn>& right) {
throw std::runtime_error("fdiv is not supported for this type");
}
virtual std::shared_ptr<dfcolumn>
fdiv_im(const std::shared_ptr<dfscalar>& right) {
throw std::runtime_error("fdiv_im is not supported for this type");
}
virtual std::shared_ptr<dfcolumn>
idiv(const std::shared_ptr<dfcolumn>& right) {
throw std::runtime_error("idiv is not supported for this type");
}
virtual std::shared_ptr<dfcolumn>
idiv_im(const std::shared_ptr<dfscalar>& right) {
throw std::runtime_error("idiv_im is not supported for this type");
}
virtual std::shared_ptr<dfcolumn>
mod(const std::shared_ptr<dfcolumn>& right) {
throw std::runtime_error("mod is not supported for this type");
}
virtual std::shared_ptr<dfcolumn>
mod_im(const std::shared_ptr<dfscalar>& right) {
throw std::runtime_error("mod_im is not supported for this type");
}
virtual std::shared_ptr<dfcolumn>
abs() {throw std::runtime_error("abs is not supported for this type");}
virtual std::shared_ptr<dfcolumn>
union_columns(const std::vector<std::shared_ptr<dfcolumn>>& cols) = 0;
virtual std::shared_ptr<dfcolumn> head(size_t limit) = 0;
virtual std::shared_ptr<dfcolumn> tail(size_t limit) = 0;
virtual bool is_string() {return false;}
virtual std::string dtype() const = 0;
virtual void save(const std::string& file) = 0;
virtual void contain_nulls_check() = 0;
virtual node_local<std::vector<size_t>> get_nulls() = 0;
};
template <class T>
class typed_dfcolumn : public dfcolumn {
public:
typed_dfcolumn() : contain_nulls(false) {}
typed_dfcolumn(const dvector<T>& dv) : contain_nulls(false) {
auto dv2 = dv;
val = dv2.moveto_node_local();
nulls = make_node_local_allocate<std::vector<size_t>>();
}
typed_dfcolumn(dvector<T>&& dv) : contain_nulls(false) {
val = dv.moveto_node_local();
nulls = make_node_local_allocate<std::vector<size_t>>();
}
typed_dfcolumn(node_local<std::vector<T>>&& val,
node_local<std::vector<size_t>>&& nulls) :
val(std::move(val)), nulls(std::move(nulls)) {
contain_nulls_check();
}
typed_dfcolumn(node_local<std::vector<T>>&& val,
node_local<std::vector<size_t>>& nulls) :
val(std::move(val)), nulls(nulls) {
contain_nulls_check();
}
typed_dfcolumn(node_local<std::vector<T>>& val,
node_local<std::vector<size_t>>& nulls) :
val(val), nulls(nulls) {
contain_nulls_check();
}
virtual size_t size();
virtual std::vector<size_t> sizes();
virtual dvector<std::string> as_string();
virtual node_local<words> as_words(size_t precision = 6,
const std::string& datetime_fmt = "%Y-%m-%d",
bool escape = true,
const std::string& nullstr = "NULL");
virtual node_local<std::vector<size_t>>
filter_eq(std::shared_ptr<dfcolumn>& right);
virtual node_local<std::vector<size_t>>
filter_eq_immed(std::shared_ptr<dfscalar>& right);
virtual node_local<std::vector<size_t>>
filter_neq(std::shared_ptr<dfcolumn>& right);
virtual node_local<std::vector<size_t>>
filter_neq_immed(std::shared_ptr<dfscalar>& right);
virtual node_local<std::vector<size_t>>
filter_lt(std::shared_ptr<dfcolumn>& right);
virtual node_local<std::vector<size_t>>
filter_lt_immed(std::shared_ptr<dfscalar>& right);
virtual node_local<std::vector<size_t>>
filter_le(std::shared_ptr<dfcolumn>& right);
virtual node_local<std::vector<size_t>>
filter_le_immed(std::shared_ptr<dfscalar>& right);
virtual node_local<std::vector<size_t>>
filter_gt(std::shared_ptr<dfcolumn>& right);
virtual node_local<std::vector<size_t>>
filter_gt_immed(std::shared_ptr<dfscalar>& right);
virtual node_local<std::vector<size_t>>
filter_ge(std::shared_ptr<dfcolumn>& right);
virtual node_local<std::vector<size_t>>
filter_ge_immed(std::shared_ptr<dfscalar>& right);
virtual node_local<std::vector<size_t>>
filter_is_null();
virtual node_local<std::vector<size_t>>
filter_is_not_null();
virtual std::shared_ptr<dfcolumn>
extract(node_local<std::vector<size_t>>& idx);
virtual std::shared_ptr<dfcolumn>
global_extract(node_local<std::vector<size_t>>& global_idx,
node_local<std::vector<size_t>>& to_store_idx,
node_local<std::vector<std::vector<size_t>>>& exchanged_idx);
std::shared_ptr<dfcolumn> sort(node_local<std::vector<size_t>>&);
std::shared_ptr<dfcolumn> sort_desc(node_local<std::vector<size_t>>&);
std::shared_ptr<dfcolumn>
sort_with_idx(node_local<std::vector<size_t>>&,
node_local<std::vector<size_t>>& );
std::shared_ptr<dfcolumn>
sort_with_idx_desc(node_local<std::vector<size_t>>&,
node_local<std::vector<size_t>>&);
virtual node_local<std::vector<size_t>> get_local_index();
virtual std::pair<node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>>
hash_join_eq(std::shared_ptr<dfcolumn>& right,
// might be filtered index
node_local<std::vector<size_t>>& left_full_local_idx,
node_local<std::vector<size_t>>& right_full_local_idx);
virtual std::tuple<node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>>
outer_hash_join_eq(std::shared_ptr<dfcolumn>& right,
// might be filtered index
node_local<std::vector<size_t>>& left_full_local_idx,
node_local<std::vector<size_t>>& right_full_local_idx);
virtual std::pair<node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>>
bcast_join_eq(std::shared_ptr<dfcolumn>& right,
// might be filtered index
node_local<std::vector<size_t>>& left_full_local_idx,
node_local<std::vector<size_t>>& right_full_local_idx);
virtual std::pair<node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>>
bcast_join_lt(std::shared_ptr<dfcolumn>& right,
node_local<std::vector<size_t>>& left_full_local_idx,
node_local<std::vector<size_t>>& right_full_local_idx);
virtual std::pair<node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>>
bcast_join_le(std::shared_ptr<dfcolumn>& right,
node_local<std::vector<size_t>>& left_full_local_idx,
node_local<std::vector<size_t>>& right_full_local_idx);
virtual std::pair<node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>>
bcast_join_gt(std::shared_ptr<dfcolumn>& right,
node_local<std::vector<size_t>>& left_full_local_idx,
node_local<std::vector<size_t>>& right_full_local_idx);
virtual std::pair<node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>>
bcast_join_ge(std::shared_ptr<dfcolumn>& right,
node_local<std::vector<size_t>>& left_full_local_idx,
node_local<std::vector<size_t>>& right_full_local_idx);
virtual std::tuple<node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>>
outer_bcast_join_eq(std::shared_ptr<dfcolumn>& right,
// might be filtered index
node_local<std::vector<size_t>>& left_full_local_idx,
node_local<std::vector<size_t>>& right_full_local_idx);
virtual std::pair<node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>>
star_join_eq(std::shared_ptr<dfcolumn>& right,
// might be filtered index
node_local<std::vector<size_t>>& left_full_local_idx,
node_local<std::vector<size_t>>& right_full_local_idx);
virtual void append_nulls(node_local<std::vector<size_t>>& to_append);
virtual std::shared_ptr<dfcolumn> group_by
(node_local<std::vector<size_t>>& local_idx,
node_local<std::vector<size_t>>& split_idx,
node_local<std::vector<std::vector<size_t>>>& hash_divide,
node_local<std::vector<std::vector<size_t>>>& merge_map);
virtual void
multi_group_by_sort(node_local<std::vector<size_t>>& local_idx);
virtual node_local<std::vector<size_t>>
multi_group_by_sort_split(node_local<std::vector<size_t>>& local_idx);
virtual node_local<std::vector<size_t>>
multi_group_by_split(node_local<std::vector<size_t>>& local_idx);
virtual std::shared_ptr<dfcolumn> multi_group_by_extract
(node_local<std::vector<size_t>>& local_idx,
node_local<std::vector<size_t>>& split_idx,
bool check_nulls);
virtual node_local<std::vector<size_t>>
calc_hash_base();
virtual void
calc_hash_base(node_local<std::vector<size_t>>& hash, int shift);
virtual node_local<std::vector<size_t>>
calc_hash_base_multi_join(std::shared_ptr<dfcolumn>& left);
virtual void
calc_hash_base_multi_join(node_local<std::vector<size_t>>& hash, int shift,
std::shared_ptr<dfcolumn>& left);
virtual std::shared_ptr<dfcolumn>
multi_group_by_exchange(node_local<std::vector<std::vector<size_t>>>&
hash_divide);
virtual std::shared_ptr<dfcolumn>
sum(node_local<std::vector<size_t>>& local_grouped_idx,
node_local<std::vector<size_t>>& local_idx_split,
node_local<std::vector<std::vector<size_t>>>& hash_divide,
node_local<std::vector<std::vector<size_t>>>& merge_map,
node_local<size_t>& row_sizes);
virtual std::shared_ptr<dfcolumn>
count(node_local<std::vector<size_t>>& local_grouped_idx,
node_local<std::vector<size_t>>& local_idx_split,
node_local<std::vector<std::vector<size_t>>>& hash_divide,
node_local<std::vector<std::vector<size_t>>>& merge_map,
node_local<size_t>& row_sizes);
virtual std::shared_ptr<dfcolumn>
avg(node_local<std::vector<size_t>>& local_grouped_idx,
node_local<std::vector<size_t>>& local_idx_split,
node_local<std::vector<std::vector<size_t>>>& hash_divide,
node_local<std::vector<std::vector<size_t>>>& merge_map,
node_local<size_t>& row_sizes);
virtual std::shared_ptr<dfcolumn>
max(node_local<std::vector<size_t>>& local_grouped_idx,
node_local<std::vector<size_t>>& local_idx_split,
node_local<std::vector<std::vector<size_t>>>& hash_divide,
node_local<std::vector<std::vector<size_t>>>& merge_map,
node_local<size_t>& row_sizes);
virtual std::shared_ptr<dfcolumn>
min(node_local<std::vector<size_t>>& local_grouped_idx,
node_local<std::vector<size_t>>& local_idx_split,
node_local<std::vector<std::vector<size_t>>>& hash_divide,
node_local<std::vector<std::vector<size_t>>>& merge_map,
node_local<size_t>& row_sizes);
virtual size_t count();
T sum();
virtual double avg();
T max();
T min();
virtual dvector<float> as_dvector_float();
virtual dvector<double> as_dvector_double();
virtual std::shared_ptr<dfcolumn> type_cast(const std::string& to_type);
virtual std::shared_ptr<dfcolumn> add(const std::shared_ptr<dfcolumn>& right);
template <class U>
std::shared_ptr<dfcolumn>
typed_add(const std::shared_ptr<typed_dfcolumn<U>>& right);
virtual std::shared_ptr<dfcolumn>
add_im(const std::shared_ptr<dfscalar>& right);
template <class U>
std::shared_ptr<dfcolumn>
typed_add_im(const std::shared_ptr<typed_dfscalar<U>>& right);
virtual std::shared_ptr<dfcolumn> sub(const std::shared_ptr<dfcolumn>& right);
template <class U>
std::shared_ptr<dfcolumn>
typed_sub(const std::shared_ptr<typed_dfcolumn<U>>& right);
virtual std::shared_ptr<dfcolumn>
sub_im(const std::shared_ptr<dfscalar>& right);
template <class U>
std::shared_ptr<dfcolumn>
typed_sub_im(const std::shared_ptr<typed_dfscalar<U>>& right);
virtual std::shared_ptr<dfcolumn> mul(const std::shared_ptr<dfcolumn>& right);
template <class U>
std::shared_ptr<dfcolumn>
typed_mul(const std::shared_ptr<typed_dfcolumn<U>>& right);
virtual std::shared_ptr<dfcolumn>
mul_im(const std::shared_ptr<dfscalar>& right);
template <class U>
std::shared_ptr<dfcolumn>
typed_mul_im(const std::shared_ptr<typed_dfscalar<U>>& right);
virtual std::shared_ptr<dfcolumn>
fdiv(const std::shared_ptr<dfcolumn>& right);
template <class U>
std::shared_ptr<dfcolumn>
typed_fdiv(const std::shared_ptr<typed_dfcolumn<U>>& right);
virtual std::shared_ptr<dfcolumn>
fdiv_im(const std::shared_ptr<dfscalar>& right);
template <class U>
std::shared_ptr<dfcolumn>
typed_fdiv_im(const std::shared_ptr<typed_dfscalar<U>>& right);
virtual std::shared_ptr<dfcolumn>
idiv(const std::shared_ptr<dfcolumn>& right);
template <class U>
std::shared_ptr<dfcolumn>
typed_idiv(const std::shared_ptr<typed_dfcolumn<U>>& right);
virtual std::shared_ptr<dfcolumn>
idiv_im(const std::shared_ptr<dfscalar>& right);
template <class U>
std::shared_ptr<dfcolumn>
typed_idiv_im(const std::shared_ptr<typed_dfscalar<U>>& right);
virtual std::shared_ptr<dfcolumn> mod(const std::shared_ptr<dfcolumn>& right);
template <class U>
std::shared_ptr<dfcolumn>
typed_mod(const std::shared_ptr<typed_dfcolumn<U>>& right);
virtual std::shared_ptr<dfcolumn>
mod_im(const std::shared_ptr<dfscalar>& right);
template <class U>
std::shared_ptr<dfcolumn>
typed_mod_im(const std::shared_ptr<typed_dfscalar<U>>& right);
virtual std::shared_ptr<dfcolumn> abs();
virtual void debug_print();
virtual std::string dtype() const;
virtual void save(const std::string& file);
virtual std::shared_ptr<dfcolumn> head(size_t limit);
virtual std::shared_ptr<dfcolumn> tail(size_t limit);
virtual std::shared_ptr<dfcolumn>
union_columns(const std::vector<std::shared_ptr<dfcolumn>>& cols);
virtual void contain_nulls_check();
node_local<std::vector<T>>& get_val(){return val;}
virtual node_local<std::vector<size_t>> get_nulls(){return nulls;}
node_local<std::vector<T>> val;
node_local<std::vector<size_t>> nulls;
bool contain_nulls;
};
template <class T>
void reset_null_val(const std::vector<T>& nulls,
std::vector<T>& val) {
auto valp = val.data();
auto nullp = nulls.data();
auto tmax = std::numeric_limits<T>::max();
#pragma _NEC ivdep
for(size_t i = 0; i < nulls.size(); ++i) valp[nullp[i]] = tmax;
}
template <>
class typed_dfcolumn<std::string> : public dfcolumn {
public:
typed_dfcolumn() : contain_nulls(false) {}
typed_dfcolumn(dvector<std::string>& dv) : contain_nulls(false)
{auto nl = dv.viewas_node_local(); init(nl);}
typed_dfcolumn(dvector<std::string>&& dv) : contain_nulls(false)
{auto nl = dv.moveto_node_local(); init(nl);}
typed_dfcolumn(node_local<std::vector<std::string>>& dv,
node_local<std::vector<size_t>>& nulls_) {
init(dv); nulls = nulls_; contain_nulls_check();
if(contain_nulls) nulls.mapv(reset_null_val<size_t>, val);
}
typed_dfcolumn(node_local<std::vector<std::string>>&& dv,
node_local<std::vector<size_t>>&& nulls_) {
init(dv); nulls = std::move(nulls_); contain_nulls_check();
if(contain_nulls) nulls.mapv(reset_null_val<size_t>, val);
}
typed_dfcolumn(node_local<std::vector<std::size_t>>&& val_,
node_local<std::vector<size_t>>&& nulls_,
std::shared_ptr<dunordered_map<std::string, size_t>>&& dic_,
std::shared_ptr<node_local<std::vector<std::string>>>&&
dic_idx_) {
val = std::move(val_); nulls = std::move(nulls_);
dic = std::move(dic_); dic_idx = std::move(dic_idx_);
contain_nulls_check();
if(contain_nulls) nulls.mapv(reset_null_val<size_t>, val);
}
typed_dfcolumn(node_local<std::vector<std::size_t>>& val_,
node_local<std::vector<size_t>>& nulls_,
std::shared_ptr<dunordered_map<std::string, size_t>>& dic_,
std::shared_ptr<node_local<std::vector<std::string>>>&
dic_idx_) {
val = val_; nulls = nulls_;
dic = dic_; dic_idx = dic_idx_;
contain_nulls_check();
if(contain_nulls) nulls.mapv(reset_null_val<size_t>, val);
}
virtual size_t size();
virtual std::vector<size_t> sizes();
virtual node_local<std::vector<size_t>>
filter_eq(std::shared_ptr<dfcolumn>& right);
virtual node_local<std::vector<size_t>>
filter_eq_immed(std::shared_ptr<dfscalar>& right);
virtual node_local<std::vector<size_t>>
filter_neq(std::shared_ptr<dfcolumn>& right);
virtual node_local<std::vector<size_t>>
filter_neq_immed(std::shared_ptr<dfscalar>& right);
virtual node_local<std::vector<size_t>>
filter_is_null();
virtual node_local<std::vector<size_t>>
filter_is_not_null();
node_local<std::vector<size_t>>
filter_regex(const std::string& pattern);
node_local<std::vector<size_t>>
filter_not_regex(const std::string& pattern);
virtual std::shared_ptr<dfcolumn>
extract(node_local<std::vector<size_t>>& idx);
virtual std::shared_ptr<dfcolumn>
global_extract(node_local<std::vector<size_t>>& global_idx,
node_local<std::vector<size_t>>& to_store_idx,
node_local<std::vector<std::vector<size_t>>>& exchanged_idx);
virtual std::shared_ptr<dfcolumn>
sort(node_local<std::vector<size_t>>& idx);
virtual std::shared_ptr<dfcolumn>
sort_desc(node_local<std::vector<size_t>>& idx);
virtual std::shared_ptr<dfcolumn>
sort_with_idx(node_local<std::vector<size_t>>& idx,
node_local<std::vector<size_t>>& ret_idx);
virtual std::shared_ptr<dfcolumn>
sort_with_idx_desc(node_local<std::vector<size_t>>& idx,
node_local<std::vector<size_t>>& ret_idx);
virtual void debug_print();
virtual node_local<std::vector<size_t>> get_nulls();
node_local<std::vector<std::string>> get_val();
virtual dvector<std::string> as_string();
virtual node_local<words> as_words(size_t precision = 6,
const std::string& datetime_fmt = "%Y-%m-%d",
bool quote_escape = false,
const std::string& nullstr = "NULL");
virtual node_local<std::vector<size_t>> get_local_index();
virtual std::pair<node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>>
hash_join_eq(std::shared_ptr<dfcolumn>& right,
node_local<std::vector<size_t>>& left_full_local_idx,
node_local<std::vector<size_t>>& right_full_local_idx);
virtual std::tuple<node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>>
outer_hash_join_eq(std::shared_ptr<dfcolumn>& right,
node_local<std::vector<size_t>>& left_full_local_idx,
node_local<std::vector<size_t>>& right_full_local_idx);
virtual std::pair<node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>>
bcast_join_eq(std::shared_ptr<dfcolumn>& right,
node_local<std::vector<size_t>>& left_full_local_idx,
node_local<std::vector<size_t>>& right_full_local_idx);
virtual std::pair<node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>>
bcast_join_lt(std::shared_ptr<dfcolumn>& right,
node_local<std::vector<size_t>>& left_full_local_idx,
node_local<std::vector<size_t>>& right_full_local_idx){
throw std::runtime_error("bcast_join with lt for string");
}
virtual std::pair<node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>>
bcast_join_le(std::shared_ptr<dfcolumn>& right,
node_local<std::vector<size_t>>& left_full_local_idx,
node_local<std::vector<size_t>>& right_full_local_idx){
throw std::runtime_error("bcast_join with le for string");
}
virtual std::pair<node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>>
bcast_join_gt(std::shared_ptr<dfcolumn>& right,
node_local<std::vector<size_t>>& left_full_local_idx,
node_local<std::vector<size_t>>& right_full_local_idx){
throw std::runtime_error("bcast_join with gt for string");
}
virtual std::pair<node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>>
bcast_join_ge(std::shared_ptr<dfcolumn>& right,
node_local<std::vector<size_t>>& left_full_local_idx,
node_local<std::vector<size_t>>& right_full_local_idx){
throw std::runtime_error("bcast_join with ge for string");
}
virtual std::tuple<node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>>
outer_bcast_join_eq(std::shared_ptr<dfcolumn>& right,
node_local<std::vector<size_t>>& left_full_local_idx,
node_local<std::vector<size_t>>& right_full_local_idx);
virtual std::pair<node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>>
star_join_eq(std::shared_ptr<dfcolumn>& right,
node_local<std::vector<size_t>>& left_full_local_idx,
node_local<std::vector<size_t>>& right_full_local_idx);
virtual void append_nulls(node_local<std::vector<size_t>>& to_append);
virtual std::shared_ptr<dfcolumn> group_by
(node_local<std::vector<size_t>>& local_idx,
node_local<std::vector<size_t>>& split_idx,
node_local<std::vector<std::vector<size_t>>>& hash_divide,
node_local<std::vector<std::vector<size_t>>>& merge_map);
virtual void
multi_group_by_sort(node_local<std::vector<size_t>>& local_idx);
virtual node_local<std::vector<size_t>>
multi_group_by_sort_split(node_local<std::vector<size_t>>& local_idx);
virtual node_local<std::vector<size_t>>
multi_group_by_split(node_local<std::vector<size_t>>& local_idx);
virtual std::shared_ptr<dfcolumn> multi_group_by_extract
(node_local<std::vector<size_t>>& local_idx,
node_local<std::vector<size_t>>& split_idx,
bool check_nulls);
virtual node_local<std::vector<size_t>>
calc_hash_base();
virtual void
calc_hash_base(node_local<std::vector<size_t>>& hash, int shift);
virtual node_local<std::vector<size_t>>
calc_hash_base_multi_join(std::shared_ptr<dfcolumn>& left);
virtual void
calc_hash_base_multi_join(node_local<std::vector<size_t>>& hash, int shift,
std::shared_ptr<dfcolumn>& left);
virtual std::shared_ptr<dfcolumn>
multi_group_by_exchange(node_local<std::vector<std::vector<size_t>>>&
hash_divide);
virtual std::shared_ptr<dfcolumn>
sum(node_local<std::vector<size_t>>& local_grouped_idx,
node_local<std::vector<size_t>>& local_idx_split,
node_local<std::vector<std::vector<size_t>>>& hash_divide,
node_local<std::vector<std::vector<size_t>>>& merge_map,
node_local<size_t>& row_sizes) {
throw std::runtime_error("sum of string is not defined");
}
virtual std::shared_ptr<dfcolumn>
count(node_local<std::vector<size_t>>& local_grouped_idx,
node_local<std::vector<size_t>>& local_idx_split,
node_local<std::vector<std::vector<size_t>>>& hash_divide,
node_local<std::vector<std::vector<size_t>>>& merge_map,
node_local<size_t>& row_sizes);
virtual std::shared_ptr<dfcolumn>
avg(node_local<std::vector<size_t>>& local_grouped_idx,
node_local<std::vector<size_t>>& local_idx_split,
node_local<std::vector<std::vector<size_t>>>& hash_divide,
node_local<std::vector<std::vector<size_t>>>& merge_map,
node_local<size_t>& row_sizes) {
throw std::runtime_error("avg of string is not defined");
}
virtual std::shared_ptr<dfcolumn>
max(node_local<std::vector<size_t>>& local_grouped_idx,
node_local<std::vector<size_t>>& local_idx_split,
node_local<std::vector<std::vector<size_t>>>& hash_divide,
node_local<std::vector<std::vector<size_t>>>& merge_map,
node_local<size_t>& row_sizes) {
throw std::runtime_error("max of string is not defined");
}
virtual std::shared_ptr<dfcolumn>
min(node_local<std::vector<size_t>>& local_grouped_idx,
node_local<std::vector<size_t>>& local_idx_split,
node_local<std::vector<std::vector<size_t>>>& hash_divide,
node_local<std::vector<std::vector<size_t>>>& merge_map,
node_local<size_t>& row_sizes) {
throw std::runtime_error("min of string is not defined");
}
virtual size_t count();
std::string sum() {
throw std::runtime_error("sum of string is not defined");
}
virtual double avg() {
throw std::runtime_error("avg of string is not defined");
}
std::string max() {
throw std::runtime_error("max of string is not defined");
}
std::string min() {
throw std::runtime_error("min of string is not defined");
}
virtual dvector<float> as_dvector_float() {
throw std::runtime_error("as_dvector_float of string is not defined");
}
virtual dvector<double> as_dvector_double() {
throw std::runtime_error("as_dvector_double of string is not defined");
}
virtual std::string dtype() const {return std::string("string");}
virtual void save(const std::string& file);
virtual bool is_string() {return true;}
void init(node_local<std::vector<std::string>>& nl);
typed_dfcolumn<size_t> sort_prepare();
node_local<std::vector<size_t>> equal_prepare
(std::shared_ptr<typed_dfcolumn<std::string>>&);
node_local<std::vector<size_t>>
equal_prepare_multi_join(typed_dfcolumn<std::string>& right);
virtual void contain_nulls_check();
virtual std::shared_ptr<dfcolumn> head(size_t limit);
virtual std::shared_ptr<dfcolumn> tail(size_t limit);
virtual std::shared_ptr<dfcolumn>
union_columns(const std::vector<std::shared_ptr<dfcolumn>>& cols);
// string -> idx; shared between columns
std::shared_ptr<dunordered_map<std::string, size_t>> dic;
// idx -> string; shared between columns
std::shared_ptr<node_local<std::vector<std::string>>> dic_idx;
node_local<std::vector<size_t>> val;
node_local<std::vector<size_t>> nulls;
bool contain_nulls;
};
struct dic_string {}; // for tag
template <>
class typed_dfcolumn<dic_string> : public dfcolumn {
public:
typed_dfcolumn() : contain_nulls(false) {}
typed_dfcolumn(node_local<words>& ws) : contain_nulls(false) {init(ws);}
typed_dfcolumn(node_local<words>&& ws) : contain_nulls(false) {init(ws);}
typed_dfcolumn(node_local<words>& ws,
node_local<std::vector<size_t>>& nulls) :
nulls(nulls) {init(ws, false); contain_nulls_check();}
typed_dfcolumn(node_local<words>&& ws,
node_local<std::vector<size_t>>&& nulls) :
nulls(std::move(nulls)) {init(ws, false); contain_nulls_check();}
typed_dfcolumn(node_local<compressed_words>& ws) : contain_nulls(false)
{init_compressed(ws);}
typed_dfcolumn(node_local<compressed_words>&& ws) : contain_nulls(false)
{init_compressed(ws);}
typed_dfcolumn(node_local<compressed_words>& ws,
node_local<std::vector<size_t>>& nulls) :
nulls(nulls) {init_compressed(ws, false); contain_nulls_check();}
typed_dfcolumn(node_local<compressed_words>&& ws,
node_local<std::vector<size_t>>&& nulls)
: nulls(std::move(nulls))
{init_compressed(ws, false); contain_nulls_check();}
typed_dfcolumn(std::shared_ptr<node_local<dict>>& dic,
node_local<std::vector<size_t>>& val,
node_local<std::vector<size_t>>& nulls)
: dic(dic), val(val), nulls(nulls) {contain_nulls_check();}
typed_dfcolumn(std::shared_ptr<node_local<dict>>&& dic,
node_local<std::vector<size_t>>&& val,
node_local<std::vector<size_t>>&& nulls)
: dic(std::move(dic)), val(std::move(val)), nulls(std::move(nulls))
{contain_nulls_check();}
virtual size_t size();
virtual std::vector<size_t> sizes();
virtual node_local<std::vector<size_t>>
filter_eq(std::shared_ptr<dfcolumn>& right);
virtual node_local<std::vector<size_t>>
filter_eq_immed(std::shared_ptr<dfscalar>& right);
virtual node_local<std::vector<size_t>>
filter_neq(std::shared_ptr<dfcolumn>& right);
virtual node_local<std::vector<size_t>>
filter_neq_immed(std::shared_ptr<dfscalar>& right);
virtual node_local<std::vector<size_t>>
filter_is_null();
virtual node_local<std::vector<size_t>>
filter_is_not_null();
node_local<std::vector<size_t>>
filter_like(const std::string& pattern, int wild_card = '%');
node_local<std::vector<size_t>>
filter_not_like(const std::string& pattern, int wild_card = '%');
virtual std::shared_ptr<dfcolumn>
extract(node_local<std::vector<size_t>>& idx);
virtual std::shared_ptr<dfcolumn>
global_extract(node_local<std::vector<size_t>>& global_idx,
node_local<std::vector<size_t>>& to_store_idx,
node_local<std::vector<std::vector<size_t>>>& exchanged_idx);
virtual std::shared_ptr<dfcolumn>
sort(node_local<std::vector<size_t>>& idx);
virtual std::shared_ptr<dfcolumn>
sort_desc(node_local<std::vector<size_t>>& idx);
virtual std::shared_ptr<dfcolumn>
sort_with_idx(node_local<std::vector<size_t>>& idx,
node_local<std::vector<size_t>>& ret_idx);
virtual std::shared_ptr<dfcolumn>
sort_with_idx_desc(node_local<std::vector<size_t>>& idx,
node_local<std::vector<size_t>>& ret_idx);
virtual void debug_print();
virtual node_local<std::vector<size_t>> get_nulls(){return nulls;}
node_local<std::vector<dic_string>> get_val() {
throw std::runtime_error("get_val is not defined for dic_string");
}
virtual dvector<std::string> as_string() {
throw std::runtime_error("as_string is obsolete");
}
virtual node_local<words> as_words(size_t precision = 6,
const std::string& datetime_fmt = "%Y-%m-%d",
bool quote_escape = false,
const std::string& nullstr = "NULL");
virtual node_local<std::vector<size_t>> get_local_index();
virtual std::pair<node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>>
hash_join_eq(std::shared_ptr<dfcolumn>& right,
node_local<std::vector<size_t>>& left_full_local_idx,
node_local<std::vector<size_t>>& right_full_local_idx);
virtual std::tuple<node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>>
outer_hash_join_eq(std::shared_ptr<dfcolumn>& right,
node_local<std::vector<size_t>>& left_full_local_idx,
node_local<std::vector<size_t>>& right_full_local_idx);
virtual std::pair<node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>>
bcast_join_eq(std::shared_ptr<dfcolumn>& right,
node_local<std::vector<size_t>>& left_full_local_idx,
node_local<std::vector<size_t>>& right_full_local_idx);
virtual std::pair<node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>>
bcast_join_lt(std::shared_ptr<dfcolumn>& right,
node_local<std::vector<size_t>>& left_full_local_idx,
node_local<std::vector<size_t>>& right_full_local_idx){
throw std::runtime_error("bcast_join with lt for dic_string");
}
virtual std::pair<node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>>
bcast_join_le(std::shared_ptr<dfcolumn>& right,
node_local<std::vector<size_t>>& left_full_local_idx,
node_local<std::vector<size_t>>& right_full_local_idx){
throw std::runtime_error("bcast_join with le for dic_string");
}
virtual std::pair<node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>>
bcast_join_gt(std::shared_ptr<dfcolumn>& right,
node_local<std::vector<size_t>>& left_full_local_idx,
node_local<std::vector<size_t>>& right_full_local_idx){
throw std::runtime_error("bcast_join with gt for dic_string");
}
virtual std::pair<node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>>
bcast_join_ge(std::shared_ptr<dfcolumn>& right,
node_local<std::vector<size_t>>& left_full_local_idx,
node_local<std::vector<size_t>>& right_full_local_idx){
throw std::runtime_error("bcast_join with ge for dic_string");
}
virtual std::tuple<node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>>
outer_bcast_join_eq(std::shared_ptr<dfcolumn>& right,
node_local<std::vector<size_t>>& left_full_local_idx,
node_local<std::vector<size_t>>& right_full_local_idx);
virtual std::pair<node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>>
star_join_eq(std::shared_ptr<dfcolumn>& right,
node_local<std::vector<size_t>>& left_full_local_idx,
node_local<std::vector<size_t>>& right_full_local_idx);
virtual void append_nulls(node_local<std::vector<size_t>>& to_append);
virtual std::shared_ptr<dfcolumn> group_by
(node_local<std::vector<size_t>>& local_idx,
node_local<std::vector<size_t>>& split_idx,
node_local<std::vector<std::vector<size_t>>>& hash_divide,
node_local<std::vector<std::vector<size_t>>>& merge_map);
virtual void
multi_group_by_sort(node_local<std::vector<size_t>>& local_idx);
virtual node_local<std::vector<size_t>>
multi_group_by_sort_split(node_local<std::vector<size_t>>& local_idx);
virtual node_local<std::vector<size_t>>
multi_group_by_split(node_local<std::vector<size_t>>& local_idx);
virtual std::shared_ptr<dfcolumn> multi_group_by_extract
(node_local<std::vector<size_t>>& local_idx,
node_local<std::vector<size_t>>& split_idx,
bool check_nulls);
virtual node_local<std::vector<size_t>>
calc_hash_base();
virtual void
calc_hash_base(node_local<std::vector<size_t>>& hash, int shift);
virtual node_local<std::vector<size_t>>
calc_hash_base_multi_join(std::shared_ptr<dfcolumn>& left);
virtual void
calc_hash_base_multi_join(node_local<std::vector<size_t>>& hash, int shift,
std::shared_ptr<dfcolumn>& left);
virtual std::shared_ptr<dfcolumn>
multi_group_by_exchange(node_local<std::vector<std::vector<size_t>>>&
hash_divide);
virtual std::shared_ptr<dfcolumn>
sum(node_local<std::vector<size_t>>& local_grouped_idx,
node_local<std::vector<size_t>>& local_idx_split,
node_local<std::vector<std::vector<size_t>>>& hash_divide,
node_local<std::vector<std::vector<size_t>>>& merge_map,
node_local<size_t>& row_sizes) {
throw std::runtime_error("sum of dic_string is not defined");
}
virtual std::shared_ptr<dfcolumn>
count(node_local<std::vector<size_t>>& local_grouped_idx,
node_local<std::vector<size_t>>& local_idx_split,
node_local<std::vector<std::vector<size_t>>>& hash_divide,
node_local<std::vector<std::vector<size_t>>>& merge_map,
node_local<size_t>& row_sizes);
virtual std::shared_ptr<dfcolumn>
avg(node_local<std::vector<size_t>>& local_grouped_idx,
node_local<std::vector<size_t>>& local_idx_split,
node_local<std::vector<std::vector<size_t>>>& hash_divide,
node_local<std::vector<std::vector<size_t>>>& merge_map,
node_local<size_t>& row_sizes) {
throw std::runtime_error("avg of dic_string is not defined");
}
virtual std::shared_ptr<dfcolumn>
max(node_local<std::vector<size_t>>& local_grouped_idx,
node_local<std::vector<size_t>>& local_idx_split,
node_local<std::vector<std::vector<size_t>>>& hash_divide,
node_local<std::vector<std::vector<size_t>>>& merge_map,
node_local<size_t>& row_sizes) {
throw std::runtime_error("max of dic_string is not defined");
}
virtual std::shared_ptr<dfcolumn>
min(node_local<std::vector<size_t>>& local_grouped_idx,
node_local<std::vector<size_t>>& local_idx_split,
node_local<std::vector<std::vector<size_t>>>& hash_divide,
node_local<std::vector<std::vector<size_t>>>& merge_map,
node_local<size_t>& row_sizes) {
throw std::runtime_error("min of dic_string is not defined");
}
virtual size_t count();
dic_string sum() {
throw std::runtime_error("sum of dic_string is not defined");
}
virtual double avg() {
throw std::runtime_error("avg of dic_string is not defined");
}
dic_string max() {
throw std::runtime_error("max of dic_string is not defined");
}
dic_string min() {
throw std::runtime_error("min of dic_string is not defined");
}
virtual dvector<float> as_dvector_float() {
throw std::runtime_error("as_dvector_float of dic_string is not defined");
}
virtual dvector<double> as_dvector_double() {
throw std::runtime_error("as_dvector_double of dic_string is not defined");
}
virtual std::string dtype() const {return std::string("dic_string");}
virtual void save(const std::string& file);
virtual bool is_string() {return true;} // to check cachable in sort
void init(node_local<words>& ws, bool allocate_nulls = true);
void init_compressed(node_local<compressed_words>& ws,
bool allocate_nulls = true);
typed_dfcolumn<size_t> sort_prepare();
node_local<std::vector<size_t>> equal_prepare
(std::shared_ptr<typed_dfcolumn<dic_string>>&);
node_local<std::vector<size_t>>
equal_prepare_multi_join(typed_dfcolumn<dic_string>& right);
virtual void contain_nulls_check();
virtual std::shared_ptr<dfcolumn> head(size_t limit);
virtual std::shared_ptr<dfcolumn> tail(size_t limit);
virtual std::shared_ptr<dfcolumn>
union_columns(const std::vector<std::shared_ptr<dfcolumn>>& cols);
// dictionary is shared between columns; all node have the same dic
std::shared_ptr<node_local<dict>> dic;
node_local<std::vector<size_t>> val;
node_local<std::vector<size_t>> nulls;
bool contain_nulls;
};
struct raw_string {}; // for tag
template <>
class typed_dfcolumn<raw_string> : public dfcolumn {
public:
typed_dfcolumn() : contain_nulls(false) {}
typed_dfcolumn(node_local<words>& ws) : contain_nulls(false) {init(ws);}
typed_dfcolumn(node_local<words>&& ws) : contain_nulls(false) {init(ws);}
typed_dfcolumn(node_local<words>& ws,
node_local<std::vector<size_t>>& nulls) :
nulls(nulls) {init(ws, false); contain_nulls_check();}
typed_dfcolumn(node_local<words>&& ws,
node_local<std::vector<size_t>>&& nulls) :
nulls(std::move(nulls)) {init(ws, false); contain_nulls_check();}
typed_dfcolumn(node_local<compressed_words>& ws) : contain_nulls(false)
{init_compressed(ws);}
typed_dfcolumn(node_local<compressed_words>&& ws) : contain_nulls(false)
{init_compressed(std::move(ws));}
typed_dfcolumn(node_local<compressed_words>& ws,
node_local<std::vector<size_t>>& nulls) :
nulls(nulls) {init_compressed(ws, false); contain_nulls_check();}
typed_dfcolumn(node_local<compressed_words>&& ws,
node_local<std::vector<size_t>>&& nulls)
: nulls(std::move(nulls))
{init_compressed(std::move(ws), false); contain_nulls_check();}
virtual size_t size();
virtual std::vector<size_t> sizes();
virtual node_local<std::vector<size_t>>
filter_eq(std::shared_ptr<dfcolumn>& right) {
throw std::runtime_error("filtering with eq for raw_string");
}
virtual node_local<std::vector<size_t>>
filter_eq_immed(std::shared_ptr<dfscalar>& right);
virtual node_local<std::vector<size_t>>
filter_neq(std::shared_ptr<dfcolumn>& right) {
throw std::runtime_error("filtering with neq for raw_string");
}
virtual node_local<std::vector<size_t>>
filter_neq_immed(std::shared_ptr<dfscalar>& right);
virtual node_local<std::vector<size_t>>
filter_is_null();
virtual node_local<std::vector<size_t>>
filter_is_not_null();
node_local<std::vector<size_t>>
filter_like(const std::string& pattern, int wild_card = '%');
node_local<std::vector<size_t>>
filter_not_like(const std::string& pattern, int wild_card = '%');
virtual std::shared_ptr<dfcolumn>
extract(node_local<std::vector<size_t>>& idx);
virtual std::shared_ptr<dfcolumn>
global_extract(node_local<std::vector<size_t>>& global_idx,
node_local<std::vector<size_t>>& to_store_idx,
node_local<std::vector<std::vector<size_t>>>& exchanged_idx);
virtual std::shared_ptr<dfcolumn>
sort(node_local<std::vector<size_t>>& idx) {
throw std::runtime_error("sort is not defined for raw_string");
}
virtual std::shared_ptr<dfcolumn>
sort_desc(node_local<std::vector<size_t>>& idx) {
throw std::runtime_error("sort_desc is not defined for raw_string");
}
virtual std::shared_ptr<dfcolumn>
sort_with_idx(node_local<std::vector<size_t>>& idx,
node_local<std::vector<size_t>>& ret_idx) {
throw std::runtime_error("sort_with_idx is not defined for raw_string");
}
virtual std::shared_ptr<dfcolumn>
sort_with_idx_desc(node_local<std::vector<size_t>>& idx,
node_local<std::vector<size_t>>& ret_idx) {
throw std::runtime_error("sort_with_idx_desc is not defined for raw_string");
}
virtual void debug_print();
virtual node_local<std::vector<size_t>> get_nulls(){return nulls;}
node_local<std::vector<raw_string>> get_val() {
throw std::runtime_error("get_val is not defined for raw_string");
}
virtual dvector<std::string> as_string() {
throw std::runtime_error("as_string is obsolete");
}
virtual node_local<words> as_words(size_t precision = 6,
const std::string& datetime_fmt = "%Y-%m-%d",
bool quote_escape = false,
const std::string& nullstr = "NULL");
virtual node_local<std::vector<size_t>> get_local_index();
virtual std::pair<node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>>
hash_join_eq(std::shared_ptr<dfcolumn>& right,
node_local<std::vector<size_t>>& left_full_local_idx,
node_local<std::vector<size_t>>& right_full_local_idx) {
throw std::runtime_error("join is not defined for raw_string");
}
virtual std::tuple<node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>>
outer_hash_join_eq(std::shared_ptr<dfcolumn>& right,
node_local<std::vector<size_t>>& left_full_local_idx,
node_local<std::vector<size_t>>& right_full_local_idx) {
throw std::runtime_error("join is not defined for raw_string");
}
virtual std::pair<node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>>
bcast_join_eq(std::shared_ptr<dfcolumn>& right,
node_local<std::vector<size_t>>& left_full_local_idx,
node_local<std::vector<size_t>>& right_full_local_idx) {
throw std::runtime_error("join is not defined for raw_string");
}
virtual std::tuple<node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>>
outer_bcast_join_eq(std::shared_ptr<dfcolumn>& right,
node_local<std::vector<size_t>>& left_full_local_idx,
node_local<std::vector<size_t>>& right_full_local_idx) {
throw std::runtime_error("join is not defined for raw_string");
}
virtual std::pair<node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>>
bcast_join_lt(std::shared_ptr<dfcolumn>& right,
node_local<std::vector<size_t>>& left_full_local_idx,
node_local<std::vector<size_t>>& right_full_local_idx){
throw std::runtime_error("join is not defined for raw_string");
}
virtual std::pair<node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>>
bcast_join_le(std::shared_ptr<dfcolumn>& right,
node_local<std::vector<size_t>>& left_full_local_idx,
node_local<std::vector<size_t>>& right_full_local_idx){
throw std::runtime_error("join is not defined for raw_string");
}
virtual std::pair<node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>>
bcast_join_gt(std::shared_ptr<dfcolumn>& right,
node_local<std::vector<size_t>>& left_full_local_idx,
node_local<std::vector<size_t>>& right_full_local_idx){
throw std::runtime_error("join is not defined for raw_string");
}
virtual std::pair<node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>>
bcast_join_ge(std::shared_ptr<dfcolumn>& right,
node_local<std::vector<size_t>>& left_full_local_idx,
node_local<std::vector<size_t>>& right_full_local_idx){
throw std::runtime_error("join is not defined for raw_string");
}
virtual std::pair<node_local<std::vector<size_t>>,
node_local<std::vector<size_t>>>
star_join_eq(std::shared_ptr<dfcolumn>& right,
node_local<std::vector<size_t>>& left_full_local_idx,
node_local<std::vector<size_t>>& right_full_local_idx) {
throw std::runtime_error("join is not defined for raw_string");
}
virtual void append_nulls(node_local<std::vector<size_t>>& to_append);
virtual std::shared_ptr<dfcolumn> group_by
(node_local<std::vector<size_t>>& local_idx,
node_local<std::vector<size_t>>& split_idx,
node_local<std::vector<std::vector<size_t>>>& hash_divide,
node_local<std::vector<std::vector<size_t>>>& merge_map) {
throw std::runtime_error("group_by is not defined for raw_string");
}
virtual void
multi_group_by_sort(node_local<std::vector<size_t>>& local_idx) {
throw std::runtime_error("group_by is not defined for raw_string");
}
virtual node_local<std::vector<size_t>>
multi_group_by_sort_split(node_local<std::vector<size_t>>& local_idx) {
throw std::runtime_error("group_by is not defined for raw_string");
}
virtual node_local<std::vector<size_t>>
multi_group_by_split(node_local<std::vector<size_t>>& local_idx) {
throw std::runtime_error("group_by is not defined for raw_string");
}
virtual std::shared_ptr<dfcolumn> multi_group_by_extract
(node_local<std::vector<size_t>>& local_idx,
node_local<std::vector<size_t>>& split_idx,
bool check_nulls) {
throw std::runtime_error("group_by is not defined for raw_string");
}
virtual node_local<std::vector<size_t>>
calc_hash_base() {
throw std::runtime_error("group_by is not defined for raw_string");
}
virtual void
calc_hash_base(node_local<std::vector<size_t>>& hash, int shift) {
throw std::runtime_error("group_by is not defined for raw_string");
}
virtual node_local<std::vector<size_t>>
calc_hash_base_multi_join(std::shared_ptr<dfcolumn>& left) {
throw std::runtime_error("join is not defined for raw_string");
}
virtual void
calc_hash_base_multi_join(node_local<std::vector<size_t>>& hash, int shift,
std::shared_ptr<dfcolumn>& left) {
throw std::runtime_error("join is not defined for raw_string");
}
virtual std::shared_ptr<dfcolumn>
multi_group_by_exchange(node_local<std::vector<std::vector<size_t>>>&
hash_divide) {
throw std::runtime_error("group_by is not defined for raw_string");
}
virtual std::shared_ptr<dfcolumn>
sum(node_local<std::vector<size_t>>& local_grouped_idx,
node_local<std::vector<size_t>>& local_idx_split,
node_local<std::vector<std::vector<size_t>>>& hash_divide,
node_local<std::vector<std::vector<size_t>>>& merge_map,
node_local<size_t>& row_sizes) {
throw std::runtime_error("sum of raw_string is not defined");
}
virtual std::shared_ptr<dfcolumn>
count(node_local<std::vector<size_t>>& local_grouped_idx,
node_local<std::vector<size_t>>& local_idx_split,
node_local<std::vector<std::vector<size_t>>>& hash_divide,
node_local<std::vector<std::vector<size_t>>>& merge_map,
node_local<size_t>& row_sizes) {
throw std::runtime_error("count of raw_string is not defined");
}
virtual std::shared_ptr<dfcolumn>
avg(node_local<std::vector<size_t>>& local_grouped_idx,
node_local<std::vector<size_t>>& local_idx_split,
node_local<std::vector<std::vector<size_t>>>& hash_divide,
node_local<std::vector<std::vector<size_t>>>& merge_map,
node_local<size_t>& row_sizes) {
throw std::runtime_error("avg of raw_string is not defined");
}
virtual std::shared_ptr<dfcolumn>
max(node_local<std::vector<size_t>>& local_grouped_idx,
node_local<std::vector<size_t>>& local_idx_split,
node_local<std::vector<std::vector<size_t>>>& hash_divide,
node_local<std::vector<std::vector<size_t>>>& merge_map,
node_local<size_t>& row_sizes) {
throw std::runtime_error("max of raw_string is not defined");
}
virtual std::shared_ptr<dfcolumn>
min(node_local<std::vector<size_t>>& local_grouped_idx,
node_local<std::vector<size_t>>& local_idx_split,
node_local<std::vector<std::vector<size_t>>>& hash_divide,
node_local<std::vector<std::vector<size_t>>>& merge_map,
node_local<size_t>& row_sizes) {
throw std::runtime_error("min of raw_string is not defined");
}
virtual size_t count();
raw_string sum() {
throw std::runtime_error("sum of raw_string is not defined");
}
virtual double avg() {
throw std::runtime_error("avg of raw_string is not defined");
}
raw_string max() {
throw std::runtime_error("max of raw_string is not defined");
}
raw_string min() {
throw std::runtime_error("min of raw_string is not defined");
}
virtual dvector<float> as_dvector_float() {
throw std::runtime_error("as_dvector_float of raw_string is not defined");
}
virtual dvector<double> as_dvector_double() {
throw std::runtime_error("as_dvector_double of raw_string is not defined");
}
virtual std::string dtype() const {return std::string("raw_string");}
virtual void save(const std::string& file);
virtual bool is_string() {return true;} // to check cachable in sort
void init(node_local<words>& ws, bool allocate_nulls = true);
void init_compressed(node_local<compressed_words>&& ws,
bool allocate_nulls = true);
void init_compressed(node_local<compressed_words>& ws,
bool allocate_nulls = true);
typed_dfcolumn<size_t> sort_prepare() {
throw std::runtime_error("sort is not defined for raw_string");
}
node_local<std::vector<size_t>> equal_prepare
(std::shared_ptr<typed_dfcolumn<raw_string>>&) {
throw std::runtime_error("eq is not defined for raw_string");
}
virtual void contain_nulls_check();
virtual std::shared_ptr<dfcolumn> head(size_t limit);
virtual std::shared_ptr<dfcolumn> tail(size_t limit);
virtual std::shared_ptr<dfcolumn>
union_columns(const std::vector<std::shared_ptr<dfcolumn>>& cols);
void align_as(const std::vector<size_t>&);
node_local<compressed_words> comp_words;
node_local<std::vector<size_t>> nulls;
bool contain_nulls;
};
struct datetime {}; // for tag
template <>
class typed_dfcolumn<datetime> : public typed_dfcolumn<datetime_t> {
public:
typed_dfcolumn() : typed_dfcolumn<datetime_t>() {}
typed_dfcolumn(const dvector<datetime_t>& dv) :
typed_dfcolumn<datetime_t>(dv) {}
typed_dfcolumn(dvector<datetime_t>&& dv) :
typed_dfcolumn<datetime_t>(std::move(dv)) {}
typed_dfcolumn(node_local<std::vector<datetime_t>>&& val,
node_local<std::vector<size_t>>&& nulls) :
typed_dfcolumn<datetime_t>(std::move(val), std::move(nulls)) {}
typed_dfcolumn(node_local<std::vector<datetime_t>>& val,
node_local<std::vector<size_t>>& nulls) :
typed_dfcolumn<datetime_t>(val, nulls) {}
virtual node_local<words> as_words(size_t precision = 6,
const std::string& datetime_fmt="%Y-%m-%d",
bool escape = true,
const std::string& nullstr = "NULL");
virtual node_local<std::vector<size_t>>
filter_eq(std::shared_ptr<dfcolumn>& right);
virtual node_local<std::vector<size_t>>
filter_eq_immed(std::shared_ptr<dfscalar>& right);
virtual node_local<std::vector<size_t>>
filter_neq(std::shared_ptr<dfcolumn>& right);
virtual node_local<std::vector<size_t>>
filter_neq_immed(std::shared_ptr<dfscalar>& right);
virtual node_local<std::vector<size_t>>
filter_lt(std::shared_ptr<dfcolumn>& right);
virtual node_local<std::vector<size_t>>
filter_lt_immed(std::shared_ptr<dfscalar>& right);
virtual node_local<std::vector<size_t>>
filter_le(std::shared_ptr<dfcolumn>& right);
virtual node_local<std::vector<size_t>>
filter_le_immed(std::shared_ptr<dfscalar>& right);
virtual node_local<std::vector<size_t>>
filter_gt(std::shared_ptr<dfcolumn>& right);
virtual node_local<std::vector<size_t>>
filter_gt_immed(std::shared_ptr<dfscalar>& right);
virtual node_local<std::vector<size_t>>
filter_ge(std::shared_ptr<dfcolumn>& right);
virtual node_local<std::vector<size_t>>
filter_ge_immed(std::shared_ptr<dfscalar>& right);
// need to define member functions that returns typed_dfcolumn<datetime>
virtual std::shared_ptr<dfcolumn>
extract(node_local<std::vector<size_t>>& idx);
virtual std::shared_ptr<dfcolumn>
global_extract(node_local<std::vector<size_t>>&,
node_local<std::vector<size_t>>&,
node_local<std::vector<std::vector<size_t>>>&);
virtual std::shared_ptr<dfcolumn>
sort(node_local<std::vector<size_t>>&);
virtual std::shared_ptr<dfcolumn>
sort_desc(node_local<std::vector<size_t>>&);
virtual std::shared_ptr<dfcolumn>
sort_with_idx(node_local<std::vector<size_t>>&,
node_local<std::vector<size_t>>&);
virtual std::shared_ptr<dfcolumn>
sort_with_idx_desc(node_local<std::vector<size_t>>&,
node_local<std::vector<size_t>>&);
virtual std::shared_ptr<dfcolumn> group_by
(node_local<std::vector<size_t>>& local_idx,
node_local<std::vector<size_t>>& split_idx,
node_local<std::vector<std::vector<size_t>>>& hash_divide,
node_local<std::vector<std::vector<size_t>>>& merge_map);
virtual std::shared_ptr<dfcolumn> multi_group_by_extract
(node_local<std::vector<size_t>>& local_idx,
node_local<std::vector<size_t>>& split_idx,
bool check_nulls);
virtual std::shared_ptr<dfcolumn>
multi_group_by_exchange(node_local<std::vector<std::vector<size_t>>>&
hash_divide);
virtual std::shared_ptr<dfcolumn>
sum(node_local<std::vector<size_t>>& local_grouped_idx,
node_local<std::vector<size_t>>& local_idx_split,
node_local<std::vector<std::vector<size_t>>>& hash_divide,
node_local<std::vector<std::vector<size_t>>>& merge_map,
node_local<size_t>& row_sizes) {
throw std::runtime_error("sum of datetime is not defined");
}
virtual std::shared_ptr<dfcolumn>
avg(node_local<std::vector<size_t>>& local_grouped_idx,
node_local<std::vector<size_t>>& local_idx_split,
node_local<std::vector<std::vector<size_t>>>& hash_divide,
node_local<std::vector<std::vector<size_t>>>& merge_map,
node_local<size_t>& row_sizes) {
throw std::runtime_error("avg of datetime is not defined");
}
virtual std::shared_ptr<dfcolumn>
max(node_local<std::vector<size_t>>& local_grouped_idx,
node_local<std::vector<size_t>>& local_idx_split,
node_local<std::vector<std::vector<size_t>>>& hash_divide,
node_local<std::vector<std::vector<size_t>>>& merge_map,
node_local<size_t>& row_sizes);
virtual std::shared_ptr<dfcolumn>
min(node_local<std::vector<size_t>>& local_grouped_idx,
node_local<std::vector<size_t>>& local_idx_split,
node_local<std::vector<std::vector<size_t>>>& hash_divide,
node_local<std::vector<std::vector<size_t>>>& merge_map,
node_local<size_t>& row_sizes);
virtual void debug_print();
virtual std::shared_ptr<dfcolumn> head(size_t limit);
virtual std::shared_ptr<dfcolumn> tail(size_t limit);
virtual std::shared_ptr<dfcolumn>
union_columns(const std::vector<std::shared_ptr<dfcolumn>>& cols);
virtual std::string dtype() const {return std::string("datetime");}
};
template <class T>
dvector<T> dfcolumn::as_dvector() {
try {
auto& typed_col = dynamic_cast<typed_dfcolumn<T>&>(*this);
return typed_col.get_val().template as_dvector<T>();
} catch (std::bad_cast& e) {
throw std::runtime_error("type mismatch of as_dvector<T>()");
}
}
// added special case for string handling (std::string, dic_string, raw_string)
template <>
dvector<std::string> dfcolumn::as_dvector();
std::vector<std::string>
words_to_string_vector(words& ws,
std::vector<size_t>& nulls,
const std::string& nullstr = "NULL");
template <class T>
T dfcolumn::sum() {
try {
return dynamic_cast<typed_dfcolumn<T>&>(*this).sum();
} catch (std::bad_cast& e) {
throw std::runtime_error("type mismatch of sum<T>()");
}
}
template <class T>
T dfcolumn::max() {
try {
return dynamic_cast<typed_dfcolumn<T>&>(*this).max();
} catch (std::bad_cast& e) {
throw std::runtime_error("type mismatch of max<T>()");
}
}
template <class T>
T dfcolumn::min() {
try {
return dynamic_cast<typed_dfcolumn<T>&>(*this).min();
} catch (std::bad_cast& e) {
throw std::runtime_error("type mismatch of min<T>()");
}
}
// These functions are also used in dftable
std::vector<size_t> get_unique_idx(std::vector<size_t>& idx);
node_local<std::vector<std::vector<size_t>>>
partition_global_index_bynode(node_local<std::vector<size_t>>& global_idx);
node_local<std::vector<std::vector<size_t>>>
exchange_partitioned_index(node_local<std::vector<std::vector<size_t>>>&
partitioned_idx);
node_local<std::vector<size_t>>
make_to_store_idx(node_local<std::vector<std::vector<size_t>>>&
partitioned_idx,
node_local<std::vector<size_t>>& global_idx);
node_local<std::vector<size_t>>
local_to_global_idx(node_local<std::vector<size_t>>& local_idx);
struct shift_local_index {
size_t operator()(size_t i, size_t shift) {return i+shift;}
SERIALIZE_NONE
};
std::vector<std::vector<size_t>> separate_to_bucket(std::vector<int>& key,
std::vector<size_t>& idx,
size_t num_bucket);
// separated to take size for using for local split to improve cache usage
template <class T>
void split_by_hash_with_size(std::vector<T>& val,
std::vector<std::vector<T>>& split_val,
std::vector<size_t>& global_idx,
std::vector<std::vector<size_t>>& split_idx,
size_t split_size) {
if(split_size == 0)
throw std::runtime_error("split_by_hash_with_size: split_size is zero");
else if(split_size == 1) { // skip hash
T* valp = &val[0];
size_t* global_idxp = &global_idx[0];
split_val.resize(1);
split_idx.resize(1);
size_t sepsize = val.size();
split_val[0].resize(sepsize);
split_idx[0].resize(sepsize);
T* split_valp = &split_val[0][0];
size_t* split_idxp = &split_idx[0][0];
for(size_t j = 0; j < sepsize; j++) {
split_valp[j] = valp[j];
split_idxp[j] = global_idxp[j];
}
} else {
size_t size = val.size();
std::vector<int> hash(size);
int* hashp = &hash[0];
T* valp = &val[0];
size_t* global_idxp = &global_idx[0];
for(size_t i = 0; i < size; i++) {
hashp[i] = static_cast<int>(myhash(valp[i], split_size));
}
std::vector<size_t> local_idx(size);
auto local_idxp = local_idx.data();
for(size_t i = 0; i < size; i++) local_idxp[i] = i;
auto sep = separate_to_bucket(hash, local_idx, split_size);
split_val.resize(split_size);
split_idx.resize(split_size);
for(size_t i = 0; i < split_size; i++) {
size_t sepsize = sep[i].size();
split_val[i].resize(sepsize);
split_idx[i].resize(sepsize);
T* split_valp = &split_val[i][0];
size_t* split_idxp = &split_idx[i][0];
size_t* sepp = &sep[i][0];
#pragma cdir nodep
#pragma _NEC ivdep
for(size_t j = 0; j < sepsize; j++) {
split_valp[j] = valp[sepp[j]];
split_idxp[j] = global_idxp[sepp[j]];
}
}
}
}
template <class T>
void split_by_hash(std::vector<T>& val,
std::vector<std::vector<T>>& split_val,
std::vector<size_t>& global_idx,
std::vector<std::vector<size_t>>& split_idx) {
split_by_hash_with_size<T>(val, split_val, global_idx, split_idx,
static_cast<size_t>(get_nodesize()));
}
template <class T>
void split_by_hash_no_outval_with_size
(std::vector<T>& val,
std::vector<size_t>& global_idx,
std::vector<std::vector<size_t>>& split_idx,
size_t split_size) {
if(split_size == 0)
throw std::runtime_error("split_by_hash_with_size: split_size is zero");
else if(split_size == 1) { // skip hash
size_t* global_idxp = &global_idx[0];
split_idx.resize(1);
size_t sepsize = val.size();
split_idx[0].resize(sepsize);
size_t* split_idxp = &split_idx[0][0];
for(size_t j = 0; j < sepsize; j++) {
split_idxp[j] = global_idxp[j];
}
} else {
size_t size = val.size();
std::vector<int> hash(size);
int* hashp = &hash[0];
T* valp = &val[0];
size_t* global_idxp = &global_idx[0];
for(size_t i = 0; i < size; i++) {
hashp[i] = static_cast<int>(myhash(valp[i], split_size));
}
std::vector<size_t> local_idx(size);
for(size_t i = 0; i < size; i++) local_idx[i] = i;
auto sep = separate_to_bucket(hash, local_idx, split_size);
split_idx.resize(split_size);
for(size_t i = 0; i < split_size; i++) {
size_t sepsize = sep[i].size();
split_idx[i].resize(sepsize);
size_t* split_idxp = &split_idx[i][0];
size_t* sepp = &sep[i][0];
#pragma cdir nodep
#pragma _NEC ivdep
for(size_t j = 0; j < sepsize; j++) {
split_idxp[j] = global_idxp[sepp[j]];
}
}
}
}
template <class T>
void split_by_hash_no_outval(std::vector<T>& val,
std::vector<size_t>& global_idx,
std::vector<std::vector<size_t>>& split_idx) {
split_by_hash_no_outval_with_size<T>(val, global_idx, split_idx,
static_cast<size_t>(get_nodesize()));
}
template <class T>
std::vector<T> flatten(const std::vector<std::vector<T>>& v) {
size_t total = 0;
size_t vsize = v.size();
for(size_t i = 0; i < vsize; i++) total += v[i].size();
std::vector<T> ret(total);
T* retp = &ret[0];
size_t current = 0;
for(size_t i = 0; i < vsize; i++) {
const T* vp = v[i].data();
size_t visize = v[i].size();
for(size_t j = 0; j < visize; j++) {
retp[current++] = vp[j];
}
}
return ret;
}
template <class T>
std::vector<size_t>
get_null_like_positions (std::vector<T>& col) {
return vector_find_tmax(col);
}
template <>
std::vector<size_t>
get_null_like_positions (std::vector<std::string>& col);
}
#endif
|
63989c65b67c2945821f5a894badc66238d6cbab
|
f91b2a8e494131319b696ef403554afe31bc2e61
|
/bridge.cpp
|
18a91697e5b0c2d925e0ade27398dc96538db328
|
[] |
no_license
|
IpankajI/design_patterns
|
c575a15b5fc6cec36fd4cb7cc9ae934fd4422c58
|
cdc3bf33fd088ba615fcc30fad2b543ca21462bc
|
refs/heads/master
| 2023-03-31T21:28:04.420663
| 2023-03-25T15:22:53
| 2023-03-25T15:22:53
| 235,364,598
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,039
|
cpp
|
bridge.cpp
|
#include<iostream>
using namespace std;
class CImplemention{
public:
virtual ~CImplemention()=0;
virtual void switchOff()=0;
};
CImplemention::~CImplemention(){}
class CRemote{
public:
CImplemention* implementation;
virtual ~CRemote()=0;
virtual void switchOff()=0;
};
CRemote::~CRemote(){}
class CTVImplementation:public CImplemention{
public:
void switchOff(){
cout<<"turning TV off"<<endl;
}
};
class CRemoteImplimentation:public CRemote{
public:
void switchOff(){
implementation->switchOff();
}
CRemoteImplimentation(CImplemention* implementation){
this->implementation=implementation;
}
~CRemoteImplimentation(){
if(implementation==NULL){
return;
}
cout<<"CRemoteImplimentation: deleting pointer implementation"<<endl;
delete implementation;
implementation=NULL;
}
};
int main(){
CRemote* remote=new CRemoteImplimentation(new CTVImplementation());
remote->switchOff();
delete remote;
}
|
9b47e019e7bc90df2858a2b90549d7116f4155ce
|
6bc93752fd8184c2d0eadacb5182e021cfcd7fdb
|
/src/domofon.ino
|
8368cee63acea2a90f71904436bcc9a50f6b5ceb
|
[] |
no_license
|
pauligbrest/smart-domofon
|
655ea964b5016b2e0dcf87143a830c31d8cb017c
|
fd6b07409b16778c5ee24d7c4e469e34327d2bde
|
refs/heads/master
| 2020-05-23T04:25:19.198244
| 2019-05-14T13:42:53
| 2019-05-14T13:42:53
| 186,630,776
| 0
| 0
| null | 2019-05-14T13:41:50
| 2019-05-14T13:41:50
| null |
UTF-8
|
C++
| false
| false
| 2,868
|
ino
|
domofon.ino
|
#include "inc/include.h"
EState state = IDLE;
EAction action = NO_ACTION;
Bounce debouncerBtnGreen = Bounce();
Bounce debouncerBtnRed = Bounce();
unsigned long lastCallDetectedTime = 0;
void callAnswer() {
DEBUG_LN("[HW] Call answer...");
digitalWrite(PIN_RELAY_DOOR_OPEN, RELAY_OFF);
digitalWrite(PIN_RELAY_ANSWER, RELAY_ON);
DEBUG_LN("[HW] Done");
}
void callHangUp() {
DEBUG_LN("[HW] Hang up...");
digitalWrite(PIN_RELAY_ANSWER, RELAY_OFF);
digitalWrite(PIN_RELAY_DOOR_OPEN, RELAY_OFF);
DEBUG_LN("[HW] Done");
}
void doorOpen() {
DEBUG_LN("[HW] Door open...");
digitalWrite(PIN_RELAY_DOOR_OPEN, RELAY_ON);
delay(RELAY_OPEN_ON_TIME);
digitalWrite(PIN_RELAY_DOOR_OPEN, RELAY_OFF);
DEBUG_LN("[HW] Done");
}
void answerAndOpen() {
callAnswer();
delay(RELAY_ANSWER_ON_TIME);
doorOpen();
callHangUp();
}
void answerAndReject() {
callAnswer();
delay(RELAY_ANSWER_ON_TIME);
callHangUp();
}
void handleIdle(EState oldState) {
if (oldState != IDLE) {
mqttSendCommand(MSG_OUT_HANGUP);
ledOff();
DEBUG_LN("[HW] Current state: IDLE");
}
if (action != NO_ACTION) {
mqttSendCommand(MSG_OUT_FAIL);
action = NO_ACTION;
}
if (debouncerBtnGreen.fell()) {
DEBUG_LN("[HW] Button click");
ledBlink(PIN_LED_GREEN, 2);
}
}
void handleCall(EState oldState) {
if (oldState != CALL) {
action = NO_ACTION;
mqttSendCommand(MSG_OUT_CALL);
ledOn(PIN_LED_RED);
DEBUG_LN("[HW] Current state: CALL");
}
if (action == NO_ACTION) {
if (debouncerBtnRed.fell()) {
action = REJECT_BY_BUTTON;
} else if (debouncerBtnGreen.fell()) {
action = OPEN_BY_BUTTON;
}
}
switch (action) {
case OPEN_BY_BUTTON:
answerAndOpen();
mqttSendCommand(MSG_OUT_OPENED_BY_BUTTON);
break;
case REJECT_BY_BUTTON:
answerAndReject();
mqttSendCommand(MSG_OUT_REJECTED_BY_BUTTON);
break;
case OPEN:
answerAndOpen();
mqttSendCommand(MSG_OUT_SUCCESS);
break;
case REJECT:
answerAndReject();
mqttSendCommand(MSG_OUT_SUCCESS);
break;
default:
break;
}
action = NO_ACTION;
}
void setStateIdle() {
state = IDLE;
}
void setStateCall() {
state = CALL;
}
void domofonSetup() {
debouncerBtnGreen.attach(PIN_BUTTON_GREEN);
debouncerBtnGreen.interval(25);
debouncerBtnRed.attach(PIN_BUTTON_RED);
debouncerBtnRed.interval(25);
}
void domofonLoop() {
debouncerBtnGreen.update();
debouncerBtnRed.update();
EState oldState = state;
if (digitalRead(PIN_CALL_DETECT) == HIGH) {
setStateCall();
lastCallDetectedTime = millis();
} else if (millis() - lastCallDetectedTime > CALL_HANGUP_DETECT_DELAY) {
setStateIdle();
}
switch (state) {
case IDLE:
handleIdle(oldState);
break;
case CALL:
handleCall(oldState);
break;
}
}
|
66b277551195aaec3777ef3fd4c35b52473d4846
|
163829e90c4ef643882e4b6ddec100e464964537
|
/Source_Code/Dynamic Programming/Medium/11027 Permutation Palindrome.cpp
|
a64286b3288f33e6b2f616f1b6473ea69dee739a
|
[] |
no_license
|
Rijul1204/Algorithm_ACM
|
31b0d88750fc90f13f0c7188a78ac58a059de599
|
0477861d5476504faa02d3dfddda0ea8acaf5c2e
|
refs/heads/master
| 2021-07-03T07:34:08.169513
| 2021-05-30T19:55:03
| 2021-05-30T19:55:03
| 10,447,817
| 5
| 7
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,066
|
cpp
|
11027 Permutation Palindrome.cpp
|
#include<stdio.h>
#include<string.h>
#include<math.h>
#include<algorithm>
using namespace std;
#define maxm (50)
#define ii long long int
char s[maxm];
int c1[30],len,req;
ii dp[30][maxm],dp1[50][50];
int print(int fst,ii num,int lst);
ii cal(int n,int k);
ii ncr(int n,int r);
int main(){
int i,j,k,l,test,t=1;
//freopen("in.txt","r",stdin);
scanf("%d",&test);
memset(dp1,-1,sizeof(dp1));
while(test--){
scanf("%s %d",s,&req);
len=strlen(s); memset(c1,0,sizeof(c1));
for(i=0;s[i];i++){
c1[s[i]-'a']++;
}
int mark=0,flag=0,fl=0;
for(i=0;i<26;i++){
if(len%2&&!fl&&c1[i]%2){
mark=i; fl=1; c1[i]/=2;
continue;
}
if(c1[i]%2==0){
c1[i]/=2;
continue;
}
flag=1; break;
}
l=len;
len/=2;
printf("Case %d: ",t++);
if(!flag){
memset(dp,-1,sizeof(dp));
ii maxx=cal(len,0);
if(maxx<req){
printf("XXX\n");
continue;
}
if(print(0,req,l-1)){
if(l%2){
s[l/2]=mark+'a';
}
printf("%s\n",s);
}
else printf("XXX\n");
}
else printf("XXX\n");
}
return 0;
}
int print(int fst,ii num,int lst){
if(fst>=lst) return 1;
int i,j,flag=0;
ii val,val1=0;
for(i=0;i<26;i++){
if(c1[i]<1) continue;
c1[i]--;
memset(dp,-1,sizeof(dp));
val=cal(len-1,0);
if(val1+val>=num){
s[fst]=i+'a'; s[lst]=i+'a';
len--;
print(fst+1,num-val1,lst-1);
flag=1; break;
}
val1+=val;
c1[i]++;
}
return flag;
}
ii cal(int n,int k){
if(n==0) return 1;
if(n<0||k>=26) return 0;
if(dp[n][k]!=-1) return dp[n][k];
return dp[n][k]=ncr(n,c1[k])*cal(n-c1[k],k+1);
}
ii ncr(int n,int r){
if(r>n) return 0;
if(r==0||n==r) return 1;
if(r==1) return n;
if(dp1[n][r]!=-1) return dp1[n][r];
return dp1[n][r]=(ncr(n-1,r)+ncr(n-1,r-1));
}
|
93708c2048a6b4d264ec1c93b4b81c0699fce9d0
|
346c17a1b3feba55e3c8a0513ae97a4282399c05
|
/applis/uti_image/relevt.cpp
|
7f3c9f576d0bbe5b134ed9f708fb49e51ece52ca
|
[
"LicenseRef-scancode-cecill-b-en"
] |
permissive
|
micmacIGN/micmac
|
af4ab545c3e1d9c04b4c83ac7e926a3ff7707df6
|
6e5721ddc65cb9b480e53b5914e2e2391d5ae722
|
refs/heads/master
| 2023-09-01T15:06:30.805394
| 2023-07-25T09:18:43
| 2023-08-30T11:35:30
| 74,707,998
| 603
| 156
|
NOASSERTION
| 2023-06-19T12:53:13
| 2016-11-24T22:09:54
|
C++
|
UTF-8
|
C++
| false
| false
| 5,687
|
cpp
|
relevt.cpp
|
/*Header-MicMac-eLiSe-25/06/2007
MicMac : Multi Image Correspondances par Methodes Automatiques de Correlation
eLiSe : ELements of an Image Software Environnement
www.micmac.ign.fr
Copyright : Institut Geographique National
Author : Marc Pierrot Deseilligny
Contributors : Gregoire Maillet, Didier Boldo.
[1] M. Pierrot-Deseilligny, N. Paparoditis.
"A multiresolution and optimization-based image matching approach:
An application to surface reconstruction from SPOT5-HRS stereo imagery."
In IAPRS vol XXXVI-1/W41 in ISPRS Workshop On Topographic Mapping From Space
(With Special Emphasis on Small Satellites), Ankara, Turquie, 02-2006.
[2] M. Pierrot-Deseilligny, "MicMac, un lociel de mise en correspondance
d'images, adapte au contexte geograhique" to appears in
Bulletin d'information de l'Institut Geographique National, 2007.
Francais :
MicMac est un logiciel de mise en correspondance d'image adapte
au contexte de recherche en information geographique. Il s'appuie sur
la bibliotheque de manipulation d'image eLiSe. Il est distibue sous la
licences Cecill-B. Voir en bas de fichier et http://www.cecill.info.
English :
MicMac is an open source software specialized in image matching
for research in geographic information. MicMac is built on the
eLiSe image library. MicMac is governed by the "Cecill-B licence".
See below and http://www.cecill.info.
Header-MicMac-eLiSe-25/06/2007*/
#include "general/all.h"
#include "private/all.h"
static list<Pt3dr> aLP3;
static list<Pt2dr> aLP2;
static CamStenopeIdeale * pCam;
void AddPt(Pt3dr aP,REAL anErr)
{
aLP3.push_back(aP);
aLP2.push_back(pCam->R3toF2(aP)+Pt2dr(NRrandC(),NRrandC())*anErr);
}
void AddPt(Pt3dr aP3,Pt2dr aP2)
{
aLP3.push_back(aP3);
aLP2.push_back(aP2);
}
int main(int argc,char ** argv)
{
// Partie simulation de donnees
Pt3dr aTR = Pt3dr(0.0,0.0,10.0);
REAL aTeta01 = 0.04;
REAL aTeta02 = -0.05;
REAL aTeta12 = 0.03;
ElRotation3D aRotM2C(aTR,aTeta01,aTeta02,aTeta12);
CamStenopeIdeale aCamSimul(1.0,Pt2dr(0,0));
aCamSimul.SetOrientation(aRotM2C);
pCam = &aCamSimul;
AddPt(Pt3dr(-18061.5,41158,27928.8),Pt2dr(1224,117));
AddPt(Pt3dr(-13100.3,40971.7,17641.5),Pt2dr(1429,498));
AddPt(Pt3dr(-8212.36,36677.2,3949.58),Pt2dr(1620,1098));
AddPt(Pt3dr(-7013.52,35142,-4484.05),Pt2dr( 1685,1596));
AddPt(Pt3dr(-19391.2,27868.5,-7424.43),Pt2dr(792,1819));
// 1 -18061.5 41158 27928.8
// 2 -13100.3 40971.7 17641.5
// 3 -8212.36 36677.2 3949.58
// 4 -7013.52 35142 -4484.05
// 5 -19391.2 27868.5 -7424.43
// 6 -20221.1 31052.1 -527.415
// 7 -20510.1 33945.8 6726.41
// 8 -11517.8 38550.3 6505.82
// 9 -21180.6 36844.8 17854.6
// 1 1224 117
// 2 1429 498
// 3 1620 1098
// 4 1685 1596
// 5 792 1819
// 6 875 1361
// 7 955 977
// 8 1476 986
// 9 1010 486
/*
AddPt(Pt3dr (5,4,1),0.0);
AddPt(Pt3dr (-4,5,2),0.0);
AddPt(Pt3dr (3,-6,1),0.0);
AddPt(Pt3dr (4,-7,2),0.01);
*/
// Partie utilisation du relevement dans l'espace
CamStenopeIdeale aCamInc(2128.51,Pt2dr(1298.47,972.67));
REAL aDist;
ElRotation3D aRot = aCamInc.CombinatoireOFPA(10,aLP3,aLP2,&aDist);
// Partie verification
{
ElRotation3D * anItR = &aRot;
cout << "----------------------------\n";
cout << anItR->teta01() << " " << anItR->teta02() << " " << anItR->teta12() << "\n";
ElRotation3D aRotC2M = anItR->inv();
ElMatrix<REAL> aMat = anItR->Mat();
Pt3dr aImI = aMat * Pt3dr(1,0,0);
cout << aImI.x << " " << aImI.y << " " << aImI.z << "\n";
cout << aMat * Pt3dr(0,1,0) << "\n";
cout << aMat * Pt3dr(0,0,1) << "\n";
cout << "DIST = " << aRotM2C.Mat().L2(aMat) << "\n";
cout << "DIST = " << euclid(aRotM2C.tr()- anItR->tr()) << "\n";
cout << "COPT = " << aRotC2M.tr() << "\n";
}
return 0;
}
/*Footer-MicMac-eLiSe-25/06/2007
Ce logiciel est un programme informatique servant à la mise en
correspondances d'images pour la reconstruction du relief.
Ce logiciel est régi par la licence CeCILL-B soumise au droit français et
respectant les principes de diffusion des logiciels libres. Vous pouvez
utiliser, modifier et/ou redistribuer ce programme sous les conditions
de la licence CeCILL-B telle que diffusée par le CEA, le CNRS et l'INRIA
sur le site "http://www.cecill.info".
En contrepartie de l'accessibilité au code source et des droits de copie,
de modification et de redistribution accordés par cette licence, il n'est
offert aux utilisateurs qu'une garantie limitée. Pour les mêmes raisons,
seule une responsabilité restreinte pèse sur l'auteur du programme, le
titulaire des droits patrimoniaux et les concédants successifs.
A cet égard l'attention de l'utilisateur est attirée sur les risques
associés au chargement, à l'utilisation, à la modification et/ou au
développement et à la reproduction du logiciel par l'utilisateur étant
donné sa spécificité de logiciel libre, qui peut le rendre complexe à
manipuler et qui le réserve donc à des développeurs et des professionnels
avertis possédant des connaissances informatiques approfondies. Les
utilisateurs sont donc invités à charger et tester l'adéquation du
logiciel à leurs besoins dans des conditions permettant d'assurer la
sécurité de leurs systèmes et ou de leurs données et, plus généralement,
à l'utiliser et l'exploiter dans les mêmes conditions de sécurité.
Le fait que vous puissiez accéder à cet en-tête signifie que vous avez
pris connaissance de la licence CeCILL-B, et que vous en avez accepté les
termes.
Footer-MicMac-eLiSe-25/06/2007*/
|
09957d684ac8e6a47e985e80a3b0d50d122b22a8
|
df28604f0692b69904f850f13a8cf84e8517cdfd
|
/src/GoCrypto/ConvertableCryptoInfoAdapter.h
|
b7a2f0fa2f1e9f1cf333aea0c025568ea330fef2
|
[
"MIT"
] |
permissive
|
VincentPT/jellyfish
|
78630e8e63dc121c35f31958483d88ae07ae4215
|
4cfe13ecef6df2ffcde67a3f8a0f42b2ac6c7865
|
refs/heads/master
| 2021-05-11T01:55:00.738463
| 2018-05-02T15:10:23
| 2018-05-02T15:10:23
| 118,342,947
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,769
|
h
|
ConvertableCryptoInfoAdapter.h
|
#pragma once
#include "UI/WxCryptoBoardInfo.h"
#include "Engine/PlatformEngine.h"
#include <map>
#include <list>
class ConvertableCryptoInfoAdapter : public CryptoBoardInfoDefaultAdapter {
std::string _currentCurrency;
PlatformEngine* _engine;
std::vector<CryptoBoardElmInfo*> _convertedItems;
std::map<std::string, int> _symbolIndexMap;
std::list<std::pair<NAPMarketEventHandler*, int>> _registerEvents;
private:
void onTradeEvent(NAPMarketEventHandler* sender, TradeItem* tradeItem, int, bool);
void updateElement(int elmIdx);
protected:
virtual void setItems(const std::vector<CryptoBoardElmInfo*>* fixedItems);
public:
ConvertableCryptoInfoAdapter(const std::vector<int>& rawElmInfoOffsets);
virtual~ConvertableCryptoInfoAdapter();
virtual bool comparePrice(int i1, int i2);
virtual bool compareVol(int i1, int i2);
virtual bool comparePricePeriod(int i1, int i2, int iOffset);
virtual bool compareVolPeriod(int i1, int i2, int iOffset);
virtual void updateCellBufferForPrice(char* buffer, size_t bufferSize, int i);
virtual void updateCellBufferForVol(char* buffer, size_t bufferSize, int i);
virtual void updateCellBufferForPricePeriod(char* buffer, size_t bufferSize, int i, int iOffset);
virtual void updateCellBufferForVolPeriod(char* buffer, size_t bufferSize, int i, int iOffset);
virtual bool checkValidPrice(int i);
virtual bool checkValidVol(int i);
virtual bool checkValidPricePeriod(int i, int iOffset);
virtual bool checkValidVolPeriod(int i, int iOffset);
void setCurrency(const std::string&);
const std::string& getCurrency() const;
bool convertPrice(const std::string& symbol, const double& price, double& convertedPrice);
void intialize(const std::vector<CryptoBoardElmInfo*>* fixedItems, PlatformEngine* engine);
};
|
d94d4c5580c9362b057ba66c18e35dab14c4e69f
|
f35e18c1d928aebd53eac68b8883d46710d4cca1
|
/fluid2d_solver/CODE/include/solver_profiling_data.h
|
6feabd23ab54f9494df8d9365c4839917a136302
|
[] |
no_license
|
raymonraymon/num4lcp
|
29569883f460ec0c959f5fae84301b68bd3f2b18
|
7c1928dec9597af39615b835fb9c8ca434cf57af
|
refs/heads/master
| 2022-12-05T11:41:18.572762
| 2022-12-02T06:51:59
| 2022-12-02T06:51:59
| 379,517,044
| 0
| 0
| null | 2021-06-23T07:28:36
| 2021-06-23T07:28:35
| null |
UTF-8
|
C++
| false
| false
| 1,335
|
h
|
solver_profiling_data.h
|
#ifndef SOLVER_PROFILING_DATA_H
#define SOLVER_PROFILING_DATA_H
#include <vector>
#include <cusp/array1d.h>
template<typename T>
inline std::vector<T> make_std_vector(cusp::array1d<T,cusp::host_memory> const & x)
{
std::vector<T> y;
y.resize(x.size() );
thrust::copy( x.begin(), x.end(), y.begin() );
return y;
}
class ProfilingData
{
public:
float m_host_initialization_time;
float m_host_to_device_time;
float m_device_to_host_time;
float m_computation_time;
float m_psor_time;
unsigned int m_newton_status;
unsigned int m_psor_status;
unsigned int m_eq_status;
unsigned int m_newton_iteration;
unsigned int m_psor_iteration;
unsigned int m_eq_iteration;
cusp::array1d<float, cusp::host_memory> m_newton_residuals;
cusp::array1d<float, cusp::host_memory> m_psor_residuals;
cusp::array1d<float, cusp::host_memory> m_eq_residuals;
public:
ProfilingData()
: m_host_initialization_time(0.0)
, m_host_to_device_time(0.0)
, m_device_to_host_time(0.0)
, m_computation_time(0.0)
, m_psor_time(0.0)
, m_newton_status(0u)
, m_psor_status(0u)
, m_eq_status(0u)
, m_newton_iteration(0u)
, m_psor_iteration(0u)
, m_eq_iteration(0u)
, m_newton_residuals()
, m_psor_residuals()
, m_eq_residuals()
{}
};
// SOLVER_PROFILING_DATA_H
#endif
|
6a755b2a799840048199870e6085f4dbc5dd4869
|
21db1743ab16216b462fe128b1c48af2d7b1e37f
|
/3 sem/lab5/lab5/pupil.h
|
b73460719e82567f2054482379ed71bc63de68f2
|
[] |
no_license
|
artkuv/3_sem_labs
|
fb6bf8e754b8ea28371b8d84af586340f6aadc07
|
4926c3b07bac3c0064bcc2fd4f3d478dbc15a2a1
|
refs/heads/master
| 2021-10-23T20:19:11.034359
| 2019-03-19T16:42:42
| 2019-03-19T16:42:42
| 145,195,254
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 536
|
h
|
pupil.h
|
#include "learner.h"
class Pupil : public Learner
{
protected:
int studing_class;
double sr_mark;
public:
Pupil(char *n = "Name", char* sn = "Surname", int y = 0,int cl = 0, double sr = 0) : Learner(n,sn,y)
{
this->studing_class = cl;
this->sr_mark = sr;
}
~Pupil()
{
}
void SetCl(int cl);
void SetSr(double sr);
int GetCl();
double GetSr();
void printPup();
friend ostream &operator << (ostream &stream, Pupil &obj);
friend istream &operator >> (istream &stream, Pupil &obj);
};
|
289fe39b20acf66541f862edd5902526f2dafd41
|
afd5ca0f56c432b137a440701adfa2cf4bf389d4
|
/dlls/tf_item_goal.cpp
|
890a944caf15344a70958f1ad3355cca149b308e
|
[] |
no_license
|
HLSources/Wizard-Wars-clone
|
ae254312ec7dd61e650c9bcdd2e8ae3a4e61036e
|
5798e1201695d31d06a7b4cfff34188f439d6975
|
refs/heads/master
| 2023-01-28T19:20:55.990407
| 2020-12-07T15:32:50
| 2020-12-07T15:32:50
| 319,330,180
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 20,903
|
cpp
|
tf_item_goal.cpp
|
#include "extdll.h"
#include "util.h"
#include "cbase.h"
#include "effects.h"
#include "saverestore.h"
#include "weapons.h"
#include "nodes.h"
#include "doors.h"
#include "game.h"
#include "gamerules.h"
#include "items.h"
#include "player.h"
#include "tf_globals.h"
#include "tf_globalinfo.h"
#include "tf_teamcheck.h"
#include "tf_ent.h"
#include "tf_info_goal.h"
#include "tf_item_goal.h"
#include "tf_info_timer.h"
#include "tf_info_teamspawn.h"
LINK_ENTITY_TO_TF( item_tfgoal, TFItemGoal, TFEntity );
LINK_ENTITY_TO_TF( item_wwgoal, TFItemGoal, TFEntity );
void TFItemGoal::DropItems( CBasePlayer * pPlayer, BOOL bForced )
{
if( !pPlayer )
return;
// cycle through all ents looking for goal ents
// for( int i = 1; i <= gpGlobals->maxEntities; i++ )
for( TFEntity * pTF = TFEntity::m_pHead; pTF != NULL; pTF = pTF->m_pNext )
{
// HACK HACK HACK
if( (int)pTF < 255 )
break;
if( pTF->m_pPrev == NULL && pTF != TFEntity::m_pHead )
continue;
if( pTF->Classify() != TF_ENT_ITEM_GOAL )
continue;
if( pTF->GetPlayer() == pPlayer )
{
if( !( pTF->m_iGoalActivation & TF_GOAL_ACTIVATION_IS_DROPPABLE ) && !bForced )
continue;
pTF->GoalDrop( pPlayer );
Vector vAngles = pPlayer->pev->angles;
vAngles.x = 0;
UTIL_MakeVectors( vAngles );
pTF->tfpev->velocity = pTF->tfpev->velocity + gpGlobals->v_forward * 256.0f;
}
}
}
TFItemGoal::TFItemGoal()
{
m_hPlayer = NULL;
m_hActivator = NULL;
m_flLastActivate = 0.0f;
m_flActivateTime = 0.0f;
m_flInActiveTime = 0.0f;
m_flReturnTime = 0.0f;
m_flDropReturnTime = 0.0f;
m_flNoTouch = 0.0f;
m_flNextTouch = 0.0f;
m_bMoved = false;
m_iHudItems = 0;
}
//------------------------------------------------------------------------------
// Spawn:
//
//------------------------------------------------------------------------------
void TFItemGoal::Spawn( void )
{
Precache();
m_iState = m_iInitialState;
m_vOrigin = pev->origin;
m_vAngles = pev->angles;
if( m_iModel != 0 )
SET_MODEL( ENT( pev ), STRING( m_iModel ) );
if( m_iGoalActivation & TF_GOAL_ACTIVATION_DROP_MODEL_ON_SPAWN )
{
pev->movetype = MOVETYPE_TOSS;
pev->solid = SOLID_BBOX;
SET_SIZE( edict(), Vector( 0, 0, 0 ), Vector( 0, 0, 0 ) );
SetThink(&TFItemGoal:: FallThink );
}
else
{
pev->movetype = MOVETYPE_NONE;
if( m_iGoalActivation & TF_GOAL_ACTIVATION_IS_SOLID )
pev->solid = SOLID_BBOX;
else
pev->solid = SOLID_TRIGGER;
SetThink(&TFItemGoal:: GoalThink );
}
pev->sequence = LookupSequence( "not_carried" );
ResetSequenceInfo();
pev->origin = m_vOrigin;
pev->angles = m_vAngles;
SET_ORIGIN( edict(), pev->origin );
m_hPlayer = NULL;
SetTouch(&TFItemGoal:: GoalTouch );
if( m_iState != TF_GOALSTATE_REMOVED )
pev->effects &= ~EF_NODRAW;
else
pev->effects |= EF_NODRAW;
if( m_iModel != 0 && m_iGoalActivation & TF_GOAL_ACTIVATION_GLOWS_WHEN_NOT_CARRIED )
{
pev->renderfx = kRenderFxGlowShell;
switch( m_iOwner )
{
default:
case TF_TEAM_NONE: pev->rendercolor = Vector( 200, 200, 200 ); break;
case TF_TEAM_BLUE: pev->rendercolor = Vector( 0, 0, 200 ); break;
case TF_TEAM_RED: pev->rendercolor = Vector( 200, 0, 0 ); break;
case TF_TEAM_YELLOW: pev->rendercolor = Vector( 200, 200, 0 ); break;
case TF_TEAM_GREEN: pev->rendercolor = Vector( 0, 200, 0 ); break;
}
pev->renderamt = 10;
}
else
{
pev->renderfx = kRenderFxNone;
pev->rendercolor = Vector( 200, 200, 200 );
pev->renderamt = 255;
}
m_flNextTouch = gpGlobals->time + 0.1f;
pev->nextthink = gpGlobals->time + 0.1f;
}
//------------------------------------------------------------------------------
// Precache:
//
//------------------------------------------------------------------------------
void TFItemGoal::Precache()
{
if( m_iModel != 0 )
PRECACHE_MODEL( (char *)STRING( m_iModel ) );
if( m_iMessages[ TF_MSG_SOUND ] != 0 )
PRECACHE_SOUND( (char *)STRING( m_iMessages[ TF_MSG_SOUND ] ) );
}
//------------------------------------------------------------------------------
// KeyValue:
// Parsing settings
//------------------------------------------------------------------------------
void TFItemGoal::KeyValue( KeyValueData * pkvd )
{
if( ParseSettings( pkvd->szKeyName, pkvd->szValue) )
pkvd->fHandled = TRUE;
else
{
ALERT( at_console, "TFItemGoal(%s)::KeyValue( \"%s\", \"%s\" ) not handled.\n",
STRING( pev->netname ), pkvd->szKeyName, pkvd->szValue );
CBaseEntity::KeyValue( pkvd );
}
};
//------------------------------------------------------------------------------
// ParseSettings:
// Parsing settings
//------------------------------------------------------------------------------
BOOL TFItemGoal::ParseSettings( const char * key, const char * value )
{
if( TFStrEq( 1, key, "items" ) )
{
m_iHudItems = atoi( value );
return TRUE;
}
return TFEntity::ParseSettings( key, value );
}
//------------------------------------------------------------------------------
// PlaceItem:
// Places item in its original location
//------------------------------------------------------------------------------
void TFItemGoal::PlaceItem( void )
{
if( m_iGoalActivation & TF_GOAL_ACTIVATION_DROP_MODEL_ON_SPAWN )
{
pev->movetype = MOVETYPE_TOSS;
pev->solid = SOLID_BBOX;
SET_SIZE( edict(), Vector( 0, 0, 0 ), Vector( 0, 0, 0 ) );
SetThink(&TFItemGoal:: FallThink );
}
else
{
pev->movetype = MOVETYPE_NONE;
if( m_iGoalActivation & TF_GOAL_ACTIVATION_IS_SOLID )
pev->solid = SOLID_BBOX;
else
pev->solid = SOLID_TRIGGER;
SetThink(&TFItemGoal:: GoalThink );
}
pev->effects &= ~EF_NODRAW;
m_bMoved = false;
pev->origin = m_vOrigin;
pev->angles = m_vAngles;
pev->aiment = NULL;
pev->owner = NULL;
SET_ORIGIN( edict(), pev->origin );
m_hPlayer = NULL;
m_iState = TF_GOALSTATE_INACTIVE;
if( m_iModel )
ResetSequenceInfo();
SetTouch(&TFItemGoal:: GoalTouch );
pev->nextthink = gpGlobals->time + 0.1f;
}
//------------------------------------------------------------------------------
// Use:
// Called when another entity triggers us
//------------------------------------------------------------------------------
void TFItemGoal::Use( CBaseEntity * pActivate, CBaseEntity * pCaller, USE_TYPE useType, float value )
{
Debug( "Item(%s) trying to be used.", GoalName() );
if( m_iMaster != 0 && !UTIL_IsMasterTriggered( m_iMaster, pActivate ) )
{
Debug( "Use failed. Master was not triggered." );
return;
}
GoalActivate( pActivate );
Debug( "Use sucessful." );
}
//------------------------------------------------------------------------------
// GoalThink:
// Does the thinking for the entity
//------------------------------------------------------------------------------
void TFItemGoal::GoalThink( void )
{
if( m_iModel )
StudioFrameAdvance();
if( m_hPlayer != NULL && m_iState == TF_GOALSTATE_ACTIVE )
{
if( !( m_iGoalActivation & TF_GOAL_ACTIVATION_KEEP_ITEM_WHEN_PLAYER_DIES ) )
{
CBasePlayer * pPlayer = GetPlayer();
// if our carrier is dead or an observer
if( !pPlayer->IsAlive() || pPlayer->IsObserver() )
{
if( m_iGoalActivation & TF_GOAL_ACTIVATION_DROP_ON_DEATH )
GoalDrop( pPlayer );
}
}
}
if( m_flActivateTime != 0.0f && gpGlobals->time >= m_flActivateTime )
{
ProcessGoals( m_hActivator );
m_flActivateTime = 0.0f;
// m_flInActiveTime = gpGlobals->time + m_flStayActive;
}
if( m_flInActiveTime != 0.0f && gpGlobals->time >= m_flInActiveTime )
{
GoalInActivate( NULL );
m_flInActiveTime = 0.0f;
}
if( m_flReturnTime != 0.0f && gpGlobals->time >= m_flReturnTime )
{
GoalReturn( NULL );
m_flReturnTime = 0.0f;
}
if( m_flDropReturnTime != 0.0f && gpGlobals->time >= m_flDropReturnTime )
{
if( m_iGoalActivation & TF_GOAL_ACTIVATION_REMOVE_AFTER_PAUSE )
{
GoalRemove( NULL );
if( m_iGoalActivation & TF_GOAL_ACTIVATION_RETURN_AFTER_PAUSE_REMOVE )
GoalReturn( NULL );
}
else
GoalReturn( NULL );
m_flDropReturnTime = 0.0f;
}
pev->nextthink = gpGlobals->time + 0.1f;
}
//------------------------------------------------------------------------------
// FallThink:
//
//------------------------------------------------------------------------------
void TFItemGoal::FallThink( void )
{
pev->movetype = MOVETYPE_TOSS;
pev->solid = SOLID_SLIDEBOX;
if ( pev->flags & FL_ONGROUND )
{
pev->angles.x = 0;
pev->movetype = MOVETYPE_NONE;
if( m_iGoalActivation & TF_GOAL_ACTIVATION_IS_SOLID )
pev->solid = SOLID_SLIDEBOX;
else
pev->solid = SOLID_TRIGGER;
SET_MODEL( edict(), STRING( pev->model ) );
SET_ORIGIN( edict(), pev->origin );// link into world.
SetThink(&TFItemGoal:: GoalThink );
}
pev->nextthink = gpGlobals->time + 0.1f;
}
//------------------------------------------------------------------------------
// GoalTouch:
// Process entity when touched
//------------------------------------------------------------------------------
void TFItemGoal::GoalTouch( CBaseEntity * pEntity )
{
Debug( "Item(%s) was touched by entity(%s).", GoalName(), STRING( pEntity->pev->netname ) );
if( m_iState != TF_GOALSTATE_INACTIVE )
{
Debug( "Touch failed. Goal is not inactive." );
return;
}
if( m_flNoTouch != 0.0f && gpGlobals->time <= m_flNoTouch )
{
Debug( "Touch failed. Can not touch goal yet." );
return;
}
if( !pEntity || !pEntity->IsPlayer() || !pEntity->IsAlive() || pEntity->IsObserver() )
{
Debug( "Touch failed. Not a valid player." );
return;
}
if( m_flNextTouch >= gpGlobals->time )
{
Debug( "Touch failed. Touched to soon." );
return;
}
GoalActivate( pEntity );
m_flNextTouch = gpGlobals->time + 0.1f;
Debug( "Touch sucessful." );
}
//------------------------------------------------------------------------------
// Attach:
// Attaches the item onto the player so they can carry it around
//------------------------------------------------------------------------------
void TFItemGoal::Attach( CBasePlayer * pPlayer )
{
if( !pPlayer )
return;
pev->origin = pPlayer->pev->origin;
pev->movetype = MOVETYPE_FOLLOW;
pev->aiment = pPlayer->edict();
pev->owner = pPlayer->edict();
m_bMoved = true;
pev->sequence = LookupSequence( "carried" );
ResetSequenceInfo();
SetThink(&TFItemGoal:: GoalThink );
SetTouch( NULL );
}
//------------------------------------------------------------------------------
// Detach:
// Detaches the item from the player
//------------------------------------------------------------------------------
void TFItemGoal::Detach( void )
{
pev->movetype = MOVETYPE_TOSS;
pev->aiment = NULL;
pev->owner = NULL;
pev->sequence = LookupSequence( "not_carried" );
ResetSequenceInfo();
pev->flags &= ~FL_ONGROUND;
SET_ORIGIN( edict(), pev->origin );
SET_SIZE( edict(), Vector( 0, 0, 0 ), Vector( 0, 0, 0 ) );
pev->velocity.x = RANDOM_FLOAT( -50, 50 );
pev->velocity.y = RANDOM_FLOAT( -50, 50 );
pev->velocity.z = RANDOM_FLOAT( 100, 200 );
if( m_hPlayer != NULL )
{
CBasePlayer * pPlayer = GetPlayer();
pPlayer->SetHudItems( m_iHudItems, FALSE );
if( !( m_iGoalActivation & TF_GOAL_ACTIVATION_PLAYER_KEEPS_EFFECTS ) )
{
if( m_flGodTime )
pPlayer->SetTimer( TIMER_INVULNERABILITY, 0.0f );
if( m_flQuadTime )
pPlayer->SetTimer( TIMER_SUPERDAMAGE, 0.0f );
if( m_flInvisTime )
pPlayer->SetTimer( TIMER_INVISIBILITY, 0.0f );
if( m_flRadTime )
pPlayer->SetTimer( TIMER_PROTECTION, 0.0f );
if( m_iGoalResults & TF_GOAL_RESULT_PREVENT_SPY_DISGUISE )
pPlayer->AllowSpy( TRUE );
if( m_iGoalActivation & TF_GOAL_ACTIVATION_PLAYER_GLOWS )
pPlayer->pev->effects &= ~EF_BRIGHTLIGHT;
if( m_iGoalActivation & TF_GOAL_ACTIVATION_REDUCE_SPEED )
pPlayer->SetSpeed( SPEED_HALFSPEED, false );
if( m_iGoalResults & TF_GOAL_RESULT_PREVENT_SPY_DISGUISE )
pPlayer->AllowSpy( TRUE );
}
m_hPlayer = NULL;
}
SetThink(&TFItemGoal:: FallThink );
SetTouch(&TFItemGoal:: GoalTouch );
}
//------------------------------------------------------------------------------
// Activate:
// Does the activation event
//------------------------------------------------------------------------------
void TFItemGoal::GoalActivate( CBaseEntity * pEntity )
{
Debug( "Item(%s) trying to activate.", GoalName() );
if( m_iState == TF_GOALSTATE_ACTIVE )
{
Debug( "Activate failed. Goal is already active." );
return;
}
// wait between activations
if( gpGlobals->time < m_flActiveTime - m_flLastActivate )
{
Debug( "Activation failed. Not enough time since last activation." );
return;
}
// if we still have an activation waiting
if( m_flActivateTime != 0.0f )
{
Debug( "Activation failed. Still have an activation pending." );
return;
}
if( !CheckActivation( pEntity ) )
{
Debug( "Activation failed. Failed standard activation check." );
if( m_iElseGoal != 0 )
{
TFEntity * pTF = UTIL_FindEntityByTFId( NULL, m_iElseGoal );
if( pTF != NULL )
pTF->GoalActivate( pEntity );
}
return;
}
m_iState = TF_GOALSTATE_ACTIVE;
m_hActivator = pEntity;
m_flLastActivate = gpGlobals->time;
if( m_flDelayTime != 0.0f )
m_flActivateTime = gpGlobals->time + m_flDelayTime;
else
ProcessGoals( m_hActivator );
Debug( "Activation sucessful." );
}
//------------------------------------------------------------------------------
// InActivate:
// Does the inactivation event
//------------------------------------------------------------------------------
void TFItemGoal::GoalInActivate( CBaseEntity * pEntity )
{
Debug( "Item(%s) trying to inactivate.", GoalName() );
if( m_iState != TF_GOALSTATE_INACTIVE )
{
Debug( "Inactivation failed. Goal is already inactive." );
return;
}
m_iState = TF_GOALSTATE_INACTIVE;
pev->effects &= ~EF_NODRAW;
if( pev->movetype == MOVETYPE_FOLLOW || m_hPlayer != NULL )
Detach();
Debug( "Inactivation sucessful." );
}
//------------------------------------------------------------------------------
// Remove:
// Does the remove event
//------------------------------------------------------------------------------
void TFItemGoal::GoalRemove( CBaseEntity * pEntity )
{
Debug( "Item(%s) trying to remove.", GoalName() );
if( m_iState == TF_GOALSTATE_REMOVED )
{
Debug( "Remove failed. Goal is already removed." );
return;
}
if( pev->movetype == MOVETYPE_FOLLOW || m_hPlayer != NULL )
Detach();
m_iState = TF_GOALSTATE_REMOVED;
pev->effects |= EF_NODRAW;
if( m_iGoalActivation & TF_GOAL_ACTIVATION_RETURN_IF_REMOVE_BY_GOAL )
m_flReturnTime = gpGlobals->time;
Debug( "Remove sucessful." );
}
//------------------------------------------------------------------------------
// Restore:
// Does the restore event
//------------------------------------------------------------------------------
void TFItemGoal::GoalRestore( CBaseEntity * pEntity )
{
Debug( "Item(%s) trying to restore.", GoalName() );
if( m_iState != TF_GOALSTATE_REMOVED )
{
Debug( "Restore failed. Goal is not removed." );
return;
}
if( pev->movetype == MOVETYPE_FOLLOW )
GoalDrop( NULL );
m_hPlayer = NULL;
m_iState = TF_GOALSTATE_INACTIVE;
pev->effects &= ~EF_NODRAW;
Debug( "Restore sucessful." );
}
//------------------------------------------------------------------------------
// Grab:
// Handles when a player grabs this goal
//------------------------------------------------------------------------------
void TFItemGoal::GoalGrab( CBaseEntity * pEntity )
{
if( !pEntity || !pEntity->IsPlayer() || !pEntity->IsAlive() )
return;
if( m_iState != TF_GOALSTATE_ACTIVE )
{
ProcessEffects( pEntity );
m_iState = TF_GOALSTATE_ACTIVE;
}
m_hPlayer = pEntity;
Attach( GetPlayer() );
m_flReturnTime = m_flDropReturnTime = 0.0f;
pev->effects &= ~EF_NODRAW;
if( m_iGoalActivation & TF_GOAL_ACTIVATION_PLAYER_GLOWS )
pEntity->pev->effects |= EF_BRIGHTLIGHT;
if( m_iGoalActivation & TF_GOAL_ACTIVATION_REDUCE_SPEED )
((CBasePlayer *)pEntity)->SetSpeed( SPEED_HALFSPEED, true );
// all items glow when carried
if( m_iModel != 0 )
{
pev->renderfx = kRenderFxGlowShell;
switch( m_iOwner )
{
default:
case TF_TEAM_NONE: pev->rendercolor = Vector( 200, 200, 200 ); break;
case TF_TEAM_BLUE: pev->rendercolor = Vector( 0, 0, 200 ); break;
case TF_TEAM_RED: pev->rendercolor = Vector( 200, 0, 0 ); break;
case TF_TEAM_YELLOW: pev->rendercolor = Vector( 200, 200, 0 ); break;
case TF_TEAM_GREEN: pev->rendercolor = Vector( 0, 200, 0 ); break;
}
pev->renderamt = 10;
}
}
//------------------------------------------------------------------------------
// Drop:
// Handles when the goal has been dropped
//------------------------------------------------------------------------------
void TFItemGoal::GoalDrop( CBaseEntity * pEntity )
{
if( pev->movetype != MOVETYPE_FOLLOW )
return;
if( m_iModel != 0 && m_iGoalActivation & TF_GOAL_ACTIVATION_GLOWS_WHEN_NOT_CARRIED )
{
pev->renderfx = kRenderFxGlowShell;
switch( m_iOwner )
{
default:
case TF_TEAM_NONE: pev->rendercolor = Vector( 200, 200, 200 ); break;
case TF_TEAM_BLUE: pev->rendercolor = Vector( 0, 0, 200 ); break;
case TF_TEAM_RED: pev->rendercolor = Vector( 200, 0, 0 ); break;
case TF_TEAM_YELLOW: pev->rendercolor = Vector( 200, 200, 0 ); break;
case TF_TEAM_GREEN: pev->rendercolor = Vector( 0, 200, 0 ); break;
}
pev->renderamt = 10;
}
else
{
pev->renderfx = kRenderFxNone;
pev->rendercolor = Vector( 200, 200, 200 );
pev->renderamt = 255;
}
Detach();
m_iState = TF_GOALSTATE_INACTIVE;
m_flDropReturnTime = gpGlobals->time + m_flPauseTime;
m_flNoTouch = gpGlobals->time + 1.5f;
// only show messages if dropped by a player
int i;
for( i = 1; i <= gpGlobals->maxClients; i++ )
{
CBaseEntity * pPlayer = NULL;
pPlayer = UTIL_PlayerByIndex( i );
if( !pPlayer || pPlayer->IsObserver() )
continue;
int iMsg = 0;
if( m_iMessages[ TF_MSG_DROP_AP ] != 0 && pPlayer == pEntity )
iMsg = m_iMessages[ TF_MSG_DROP_AP ];
else if( m_iMessages[ TF_MSG_DROP_AP_TEAM ] != 0 && pPlayer->pev->team == pEntity->pev->team )
iMsg = m_iMessages[ TF_MSG_DROP_AP_TEAM ];
else if( m_iMessages[ TF_MSG_DROP_OWNER ] != 0 && pPlayer->pev->team == m_iOwner )
iMsg = m_iMessages[ TF_MSG_DROP_OWNER ];
else if( m_iMessages[ TF_MSG_DROP_AP_NONTEAM ] != 0 && pPlayer->pev->team != pEntity->pev->team )
iMsg = m_iMessages[ TF_MSG_DROP_AP_NONTEAM ];
else if( m_iMessages[ TF_MSG_DROP_NONOWNER ] != 0 && pPlayer->pev->team != m_iOwner )
iMsg = m_iMessages[ TF_MSG_DROP_NONOWNER ];
if( iMsg != 0 )
{
MESSAGE_BEGIN( MSG_ONE, gmsgHudText, NULL, pPlayer->edict() );
WRITE_STRING( STRING( iMsg ) );
if( pEntity != NULL && pEntity->IsPlayer() )
WRITE_STRING( STRING( pEntity->pev->netname ) );
MESSAGE_END();
}
}
if( m_iGoalActivation & TF_GOAL_ACTIVATION_RETURN_ON_DEATH_DROP )
m_flDropReturnTime = gpGlobals->time;
}
//------------------------------------------------------------------------------
// Return:
// Handles when the goal has been dropped
//------------------------------------------------------------------------------
void TFItemGoal::GoalReturn( CBaseEntity * pEntity )
{
Debug( "Item(%s) trying to return.", GoalName() );
if( pev->movetype == MOVETYPE_FOLLOW || m_hPlayer != NULL )
Detach();
PlaceItem();
int i;
for( i = 1; i <= gpGlobals->maxClients; i++ )
{
CBaseEntity * pPlayer = NULL;
pPlayer = UTIL_PlayerByIndex( i );
if( !pPlayer || pPlayer->IsObserver() )
continue;
int iMsg = 0;
if( m_iMessages[ TF_MSG_RETURN_AP ] != 0 && pPlayer == pEntity )
iMsg = m_iMessages[ TF_MSG_RETURN_AP ];
else if( m_iMessages[ TF_MSG_RETURN_AP_TEAM ] != 0 && pPlayer->pev->team == m_iReqTeam )
iMsg = m_iMessages[ TF_MSG_RETURN_AP_TEAM ];
else if( m_iMessages[ TF_MSG_RETURN_OWNER ] != 0 && pPlayer->pev->team == m_iOwner )
iMsg = m_iMessages[ TF_MSG_RETURN_OWNER ];
else if( m_iMessages[ TF_MSG_RETURN_AP_NONTEAM ] != 0 && pPlayer->pev->team != m_iReqTeam )
iMsg = m_iMessages[ TF_MSG_RETURN_AP_NONTEAM ];
else if( m_iMessages[ TF_MSG_RETURN_NONOWNER ] != 0 && pPlayer->pev->team != m_iOwner )
iMsg = m_iMessages[ TF_MSG_RETURN_NONOWNER ];
if( iMsg != 0 )
{
MESSAGE_BEGIN( MSG_ONE, gmsgHudText, NULL, pPlayer->edict() );
WRITE_STRING( STRING( iMsg ) );
if( pEntity != NULL && pEntity->IsPlayer() )
WRITE_STRING( STRING( pEntity->pev->netname ) );
MESSAGE_END();
}
}
if( m_iGoalOnReturn )
{
// cycle through all ents looking for goal ents
// for( i = 1; i <= gpGlobals->maxEntities; i++ )
for( TFEntity * pTF = m_pHead; pTF != NULL; pTF = pTF->m_pNext )
{
if( pTF->m_iId == m_iGoalOnReturn )
{
if( pTF->m_iState == TF_GOALSTATE_REMOVED )
pTF->GoalRestore( pEntity );
pTF->GoalActivate( pEntity );
}
}
}
Debug( "Return sucessful." );
}
|
0848dbdde7bcad74382697027158f3119e759503
|
dd9b5bdca831aa90b6572a59d15a314230cd4e45
|
/hackerrank/Pattern_Problems/pat3.cpp
|
1cfb656e89991f31c0f3076558b41e7a1765df58
|
[] |
no_license
|
kishankr7979/CP
|
62fdea662b391a132cdb2b55dc2a845e44790d53
|
150e304eea519a964d34e4e9ffd49cac5dad5198
|
refs/heads/main
| 2023-06-18T06:47:52.908559
| 2021-07-17T14:26:25
| 2021-07-17T14:26:25
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 275
|
cpp
|
pat3.cpp
|
#include<iostream>
using namespace std;
int main()
{
int n;
cin>>n;
for(int i=n;i>=0;i--)
{
for(int j=0;j<(n-i);j++)
{
cout<<" ";
}
for(int k=0;k<=(2*i);k++)
{
if(k==0||k==(2*i)||i==n||i==0)
cout<<"* ";
else
cout<<" ";
}
cout<<endl;
}
}
|
4eef35310797297b2b7c7d6e5a39ee8eef2f5de4
|
80804a8ddd939998976121229edb5380b5472b3d
|
/include/mysql_orm/Delete.hpp
|
217bb9c655dd66c84c88cead3520a57097da6734
|
[
"MIT"
] |
permissive
|
Ethiraric/mysql_orm
|
1d18f3d152be6f1641ca764d586bfa9afeb5e6d4
|
ef5542272d917f7f3f6b3130fd2b5819d5487346
|
refs/heads/master
| 2022-12-25T00:07:25.678313
| 2022-12-13T09:32:39
| 2022-12-13T09:32:39
| 138,312,427
| 5
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,229
|
hpp
|
Delete.hpp
|
#ifndef MYSQL_ORM_DELETE_HPP_
#define MYSQL_ORM_DELETE_HPP_
#include <functional>
#include <sstream>
#include <mysql/mysql.h>
#include <mysql_orm/Limit.hpp>
#include <mysql_orm/QueryType.hpp>
#include <mysql_orm/Where.hpp>
namespace mysql_orm
{
template <typename Table>
class Delete
{
public:
using model_type = typename Table::model_type;
using table_type = Table;
static inline constexpr auto query_type{QueryType::Delete};
constexpr Delete(MYSQL& mysql, Table const& t) noexcept
: mysql_handle{&mysql}, table{&t}
{
}
constexpr Delete(Delete const& b) noexcept = default;
constexpr Delete(Delete&& b) noexcept = default;
~Delete() noexcept = default;
constexpr Delete& operator=(Delete const& rhs) noexcept = default;
constexpr Delete& operator=(Delete&& rhs) noexcept = default;
constexpr auto buildquery() const noexcept
{
return this->buildqueryCS();
}
constexpr auto buildqueryCS() const noexcept
{
return "DELETE FROM `" + this->table->getName() + "`";
}
constexpr Statement<Delete, model_type> build() const
{
return Statement<Delete, model_type>{*this->mysql_handle, *this};
}
template <typename Condition>
constexpr WhereQuery<Delete, Condition> operator()(Where<Condition> where)
{
return WhereQuery<Delete, Condition>{
*this->mysql_handle, *this, *this->table, std::move(where.condition)};
}
template <typename Limit>
constexpr LimitQuery<Delete, Limit> operator()(Limit limit)
{
return LimitQuery<Delete, Limit>{
*this->mysql_handle, *this, *this->table, std::move(limit)};
}
auto operator()()
{
return this->build().execute();
}
static constexpr size_t getNbInputSlots() noexcept
{
return 0;
}
static constexpr size_t getNbOutputSlots() noexcept
{
return 0;
}
template <std::size_t NBINDS>
constexpr void bindInTo(InputBindArray<NBINDS>&) const noexcept
{
}
template <std::size_t NBINDS>
constexpr void rebindStdTmReferences(InputBindArray<NBINDS>&) const noexcept
{
}
private:
// May not be nullptr. Can't use std::reference_wrapper since MYSQL is
// incomplete.
MYSQL* mysql_handle;
Table const* table;
};
}
#endif /* !MYSQL_ORM_DELETE_HPP_ */
|
d36e59dc19786d8b2fe635665739b5138d4ceac8
|
922d59671d8006f78a43c4b2e92aba807afdf8fc
|
/Exam_II/Exam_II/main.cpp
|
c9ca371ca4c903d82ec3d2ef51a69e350ddbe30b
|
[] |
no_license
|
franceschi/CECS2222
|
cc609f61ae96a1acd8658476bba94dc75c18adcf
|
0756ff989780586fb9cdc17609cea1d2c7b4bd7b
|
refs/heads/master
| 2020-04-06T06:54:20.768223
| 2016-05-26T09:46:47
| 2016-05-26T09:46:47
| 55,872,043
| 0
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 310
|
cpp
|
main.cpp
|
#include "StudentDate.h"
#include "StudentPhone.h"
#include "Student.h"
#include "TestScore.h"
#include "StudentList.h"
int main()
{
StudentDate date;
StudentPhone phone;
Student stud;
StudentTestScores test;
StudentList list;
cin >> list;
cin >> test;
cout << list;
cout << test;
return 0;
}
|
7827a58f949d967a92bb0df2865c3e0206dca053
|
47399959940129f40eca8c4a7d22c86203b40338
|
/BOJ/10809.cpp
|
077980e3d7dedb0b98a572353d37fe0cd848a56e
|
[] |
no_license
|
minsuu/Competitive-Programming
|
9451c9dba175bf065768a6c5281cf3018f23a72e
|
852deb7b54c149636cb3e9ed1bc3749f4d12f794
|
refs/heads/master
| 2020-04-06T07:03:03.478793
| 2016-10-31T12:04:21
| 2016-10-31T12:04:21
| 37,377,814
| 0
| 2
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 293
|
cpp
|
10809.cpp
|
#include <bits/stdc++.h>
using namespace std;
int c[26];
string S;
int main(){
memset(c, -1, sizeof c);
cin>>S;
for(int i=0; i<S.size(); i++){
int j=S[i]-'a';
if(c[j]==-1) c[j]=i;
}
for(int i=0;i<26;i++)
cout<<c[i]<<' ';
return 0;
}
|
1a07009aebd873c00e621ab172758040e27514d5
|
e1a032f518eb0d970125f6904d577f12fe0e1bfd
|
/main.cpp
|
536c06d0fff5e27991130512febc90f12648c915
|
[] |
no_license
|
avdolgushev/prao
|
40f715eabb0877560eb2fd48068c7bb3e8c06aac
|
159e76acfca3ed29dcbbb86042dec0bd5b0cdf05
|
refs/heads/master
| 2022-12-15T13:26:05.183350
| 2020-08-09T00:36:41
| 2020-08-09T00:36:41
| 185,025,359
| 0
| 0
| null | 2022-12-08T05:28:24
| 2019-05-05T11:59:01
|
C++
|
UTF-8
|
C++
| false
| false
| 1,294
|
cpp
|
main.cpp
|
//
// Created by sorrow on 30.01.19.
//
#include "Processing/Compresser.h"
#include "Config/Config.h"
using namespace std;
int main(int argc, char **argv) {
const char * path_config;
string default_config_path = "config.json";
std::vector<std::string> args;
if (argc == 2 && string(argv[1]) == "-h") {
cout << "To provide a configuration file use -c %path_to_config." << endl;
cout << "If configuration file was not passed, it will use the default path \"config.json\"." << endl;
cout << "To see help message use -h." << endl;
exit(0);
}
if (argc == 3 && string(argv[1]) == "-c")
path_config = argv[2];
else if (argc == 1)
path_config = default_config_path.c_str();
else {
std::cout << "Not valid arguments. Use -h to get help." << std::endl;
exit(-1);
}
if (Configuration.readFrom(path_config))
return 1;
OpenCLContext context = OpenCLContext();
context.initContext();
auto compresser = Compresser(context);
clock_t tStart = clock();
compresser.run();
std::cout << "elapsed time: " << (float) (clock() - tStart) / CLOCKS_PER_SEC << "s" << std::endl;
LOGGER("<< Full working time: %f", (float) (clock() - tStart) / CLOCKS_PER_SEC);
return 0;
}
|
376ce14022634b6c43ad41c78ca3eae38e046e18
|
e1ba67e6eeb50522316f346fe0aca49c00a72089
|
/traverse_tree/cxx/MorrisTraversal.cxx
|
96bf0012f2cce7b53e57753761071d9ba5bb20e7
|
[] |
no_license
|
davidxk/Algorithm-Implementations
|
620982ca19ef8368febe72219a49f7f45dd77861
|
cbd658ac052d4407e2567c9abc2a457dfe242bf8
|
refs/heads/master
| 2023-04-16T06:37:25.426960
| 2023-04-13T12:56:37
| 2023-04-13T12:56:37
| 104,098,062
| 37
| 3
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,422
|
cxx
|
MorrisTraversal.cxx
|
#include <vector>
#include "TraversalMethods.h"
#include "TreeNode.h"
class MorrisTraversal: public TraversalMethods
{
public:
std::vector<int> preorderTraversal(TreeNode* root);
std::vector<int> inorderTraversal(TreeNode* root);
std::vector<int> postorderTraversal(TreeNode* root);
private:
void traceBack(TreeNode* from, TreeNode* to, std::vector<int>& result);
};
std::vector<int> MorrisTraversal::preorderTraversal(TreeNode* root)
{
std::vector<int> result;
TreeNode *cur = root, *node = NULL;
while(cur)
{
if(cur->left == NULL)
{
result.push_back(cur->val);
cur = cur->right;
}
else
{
node = cur->left;
while(node->right != NULL && node->right != cur)
node = node->right;
if(node->right == NULL)
{
result.push_back(cur->val);
node->right = cur;
cur = cur->left;
}
else
{
node->right = NULL;
cur = cur->right;
}
}
}
return result;
}
std::vector<int> MorrisTraversal::inorderTraversal(TreeNode* root)
{
std::vector<int> result;
TreeNode *cur = root, *node = NULL;
while(cur)
{
if(cur->left == NULL)
{
result.push_back(cur->val);
cur = cur->right;
}
else
{
node = cur->left;
while(node->right != NULL && node->right != cur)
node = node->right;
if(node->right == NULL)
{
node->right = cur;
cur = cur->left;
}
else
{
node->right = NULL;
result.push_back(cur->val);
cur = cur->right;
}
}
}
return result;
}
std::vector<int> MorrisTraversal::postorderTraversal(TreeNode* root)
{
TreeNode* dummy = new TreeNode(0);
dummy->left = root;
std::vector<int> result;
TreeNode *cur = dummy, *node = NULL;
while(cur)
{
if(cur->left == NULL)
{
cur = cur->right;
}
else
{
node = cur->left;
while(node->right != NULL && node->right != cur)
node = node->right;
if(node->right == NULL)
{
node->right = cur;
cur = cur->left;
}
else
{
traceBack(cur->left, node, result);
node->right = NULL;
cur = cur->right;
}
}
}
delete dummy;
return result;
}
void MorrisTraversal::traceBack(TreeNode* from, TreeNode* to, std::vector<int>& result)
{
TreeNode* cur = from;
std::vector<int> reverse;
while(cur != to)
{
reverse.push_back(cur->val);
cur = cur->right;
}
reverse.push_back(to->val);
for(std::vector<int>::reverse_iterator it = reverse.rbegin();
it != reverse.rend(); it++)
result.push_back(*it);
}
|
48ec91f582a47a578c8351bc13a4da9f7c5b6da8
|
f879d1512a5124271a624fe7d13f8848d82528ec
|
/Source/Bee/Core/Serialization/JSONSerializer.cpp
|
2dda31f5c4dd229a3c365f07ff56abf016d91054
|
[] |
no_license
|
jacobmilligan/Bee
|
c07d88e54ed0e369dde58af568d58fd1f4d6255b
|
f7af4b1b43fe511f1df94aaa3e4abb9db60e4709
|
refs/heads/master
| 2023-04-15T04:42:15.534580
| 2021-04-26T16:52:48
| 2021-04-26T16:52:48
| 206,082,746
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 13,570
|
cpp
|
JSONSerializer.cpp
|
/*
* JSONSerializer.cpp
* Bee
*
* Copyright (c) 2019 Jacob Milligan. All rights reserved.
*/
#include "Bee/Core/Math/Math.hpp"
#include "Bee/Core/IO.hpp"
#include "Bee/Core/Base64.hpp"
#define BEE_RAPIDJSON_ERROR_H
#include "Bee/Core/Serialization/JSONSerializer.hpp"
namespace bee {
BEE_TRANSLATION_TABLE_FUNC(rapidjson_type_to_string, rapidjson::Type, const char*, rapidjson::Type::kNumberType + 1,
"null",
"false",
"true",
"object",
"array",
"string",
"number"
)
template <typename T>
BEE_FORCE_INLINE bool json_validate_type(const rapidjson::Value* value)
{
return BEE_CHECK_F(value->Is<T>(), "JSONSerializer: expected %s type but got %s", get_type<T>()->name, rapidjson_type_to_string(value->GetType()));
}
BEE_FORCE_INLINE bool json_validate_type(const rapidjson::Type type, const rapidjson::Value* value)
{
return BEE_CHECK_F(type == value->GetType(), "JSONSerializer: expected %s type but got %s", rapidjson_type_to_string(type), rapidjson_type_to_string(value->GetType()));
}
JSONSerializer::JSONSerializer(Allocator* allocator)
: Serializer(SerializerFormat::text),
parse_flags_(JSONSerializeFlags::none),
stack_(allocator),
base64_encode_buffer_(allocator)
{}
JSONSerializer::JSONSerializer(const char* src, const JSONSerializeFlags parse_flags, Allocator* allocator)
: Serializer(SerializerFormat::text),
parse_flags_(parse_flags),
stack_(allocator),
base64_encode_buffer_(allocator)
{
// Remove insitu flag if the src string is read-only
reset(src, parse_flags);
}
JSONSerializer::JSONSerializer(char* mutable_src, const JSONSerializeFlags parse_flags, Allocator* allocator)
: Serializer(SerializerFormat::text),
parse_flags_(parse_flags),
stack_(allocator),
base64_encode_buffer_(allocator)
{
reset(mutable_src, parse_flags);
}
void JSONSerializer::reset(const char* src, const JSONSerializeFlags parse_flags)
{
src_ = src;
parse_flags_ = static_cast<JSONSerializeFlags>(parse_flags & ~JSONSerializeFlags::parse_in_situ);
}
void JSONSerializer::reset(char* mutable_src, const JSONSerializeFlags parse_flags)
{
src_ = mutable_src;
parse_flags_ = parse_flags;
}
void JSONSerializer::next_element_if_array()
{
if (!stack_.empty() && stack_.back()->IsArray())
{
BEE_ASSERT(!element_iter_stack_.empty());
++element_iter_stack_.back();
}
}
void JSONSerializer::end_read_scope()
{
BEE_ASSERT(!stack_.empty());
if (!stack_.back()->IsArray())
{
stack_.pop_back();
}
if (!stack_.empty() && stack_.back()->IsArray())
{
BEE_ASSERT(!element_iter_stack_.empty());
++element_iter_stack_.back();
}
}
rapidjson::Value * JSONSerializer::current_value()
{
if (stack_.empty())
{
return nullptr;
}
if (stack_.back()->IsArray())
{
BEE_ASSERT(element_iter_stack_.back() < sign_cast<i32>(stack_.back()->GetArray().Size()));
return &stack_.back()->GetArray()[element_iter_stack_.back()];
}
return stack_.back();
}
/*
*****************************************
*
* Serializer interface implementation
*
*****************************************
*/
size_t JSONSerializer::offset()
{
return 0; // The read and write buffers are both dynamic
}
size_t JSONSerializer::capacity()
{
return limits::max<size_t>(); // The read and write buffers are both dynamic
}
bool JSONSerializer::begin()
{
if (mode == SerializerMode::reading)
{
stack_.clear();
if ((parse_flags_ & JSONSerializeFlags::parse_in_situ) != JSONSerializeFlags::none)
{
reader_doc_.ParseInsitu(const_cast<char*>(src_));
}
else
{
reader_doc_.Parse(src_);
}
if (reader_doc_.HasParseError())
{
log_error("JSONSerializer parse error: %s", rapidjson::GetParseError_En(reader_doc_.GetParseError()));
return false;
}
if (!reader_doc_.IsObject() && !reader_doc_.IsArray())
{
log_error("JSONSerializer: expected object or array as root element");
return false;
}
}
else
{
string_buffer_.Clear();
writer_.Reset(string_buffer_);
}
return true;
}
void JSONSerializer::end()
{
// no-op
}
void JSONSerializer::begin_record(const RecordType& /* type */)
{
begin_record();
}
void JSONSerializer::begin_record()
{
if (mode == SerializerMode::writing)
{
writer_.StartObject();
return;
}
if (stack_.empty())
{
stack_.push_back(&reader_doc_);
return;
}
if (stack_.back()->IsArray())
{
if (element_iter_stack_.empty())
{
log_error("JSON: expected object at but got array");
return;
}
auto* element = &stack_.back()->GetArray()[current_element()];
stack_.push_back(element);
}
json_validate_type(rapidjson::Type::kObjectType, stack_.back());
}
void JSONSerializer::end_record()
{
if (mode == SerializerMode::writing)
{
writer_.EndObject();
}
else
{
json_validate_type(rapidjson::kObjectType, stack_.back());
end_read_scope();
}
}
void JSONSerializer::begin_object(i32* member_count)
{
begin_record();
if (mode == SerializerMode::writing)
{
return;
}
*member_count = static_cast<i32>(stack_.back()->MemberCount());
member_iter_stack_.push_back(stack_.back()->MemberBegin());
}
void JSONSerializer::end_object()
{
end_record();
if (mode == SerializerMode::reading)
{
member_iter_stack_.pop_back();
}
}
void JSONSerializer::begin_array(i32* count)
{
if (mode == SerializerMode::writing)
{
writer_.StartArray();
return;
}
if (stack_.empty())
{
stack_.push_back(&reader_doc_);
}
json_validate_type(rapidjson::kArrayType, stack_.back());
*count = static_cast<i32>(stack_.back()->GetArray().Size());
element_iter_stack_.push_back(0);
}
void JSONSerializer::end_array()
{
if (mode == SerializerMode::writing)
{
writer_.EndArray();
return;
}
json_validate_type(rapidjson::kArrayType, stack_.back());
element_iter_stack_.pop_back();
stack_.pop_back();
}
bool JSONSerializer::serialize_field(const char* name)
{
if (mode == SerializerMode::writing)
{
writer_.Key(name);
return true;
}
// If current element is not an object then we can't serialize a field
if (!json_validate_type(rapidjson::kObjectType, stack_.back()))
{
return false;
}
const auto member = stack_.back()->FindMember(name);
if (member == stack_.back()->GetObject().MemberEnd())
{
return false;
}
stack_.push_back(&member->value);
return true;
}
void JSONSerializer::serialize_key(String* key)
{
if (mode == SerializerMode::writing)
{
writer_.Key(key->c_str(), key->size());
return;
}
// If current element is not an object then we can't serialize a key
if (!json_validate_type(rapidjson::kObjectType, stack_.back()))
{
return;
}
key->assign({ current_member_iter()->name.GetString(), static_cast<i32>(current_member_iter()->name.GetStringLength()) });
stack_.push_back(¤t_member_iter()->value);
++current_member_iter();
if (*key == "ImRect_Expand")
{
// BEE_DEBUG_BREAK();
}
}
void JSONSerializer::begin_text(i32* length)
{
if (mode == SerializerMode::writing)
{
// JSON doesn't need an explicit length value serialized
return;
}
if (stack_.back()->IsArray())
{
stack_.push_back(&stack_.back()->GetArray()[current_element()]);
}
json_validate_type(rapidjson::kStringType, stack_.back());
*length = static_cast<i32>(stack_.back()->GetStringLength());
}
void JSONSerializer::end_text(char* buffer, const i32 size, const i32 capacity)
{
if (mode == SerializerMode::writing)
{
writer_.String(buffer, size);
return;
}
json_validate_type(rapidjson::kStringType, stack_.back());
str::copy(buffer, capacity, stack_.back()->GetString(), static_cast<i32>(stack_.back()->GetStringLength()));
end_read_scope();
}
//void JSONSerializer::serialize_enum(const EnumType* type, u8* data)
//{
//
//}
void JSONSerializer::begin_bytes(i32* size)
{
if (mode == SerializerMode::reading)
{
if (stack_.back()->IsArray())
{
stack_.push_back(&stack_.back()->GetArray()[current_element()]);
}
json_validate_type(rapidjson::kStringType, stack_.back());
*size = base64_decode_size(StringView(stack_.back()->GetString(), stack_.back()->GetStringLength()));
}
}
void JSONSerializer::end_bytes(u8* buffer, const i32 size)
{
if (mode == SerializerMode::writing)
{
base64_encode(&base64_encode_buffer_, buffer, size);
writer_.String(base64_encode_buffer_.c_str());
}
else
{
json_validate_type(rapidjson::kStringType, stack_.back());
base64_decode(buffer, size, StringView(stack_.back()->GetString(), stack_.back()->GetStringLength()));
end_read_scope();
}
}
void JSONSerializer::serialize_fundamental(bool* data)
{
if (mode == SerializerMode::writing)
{
writer_.Bool(*data);
return;
}
if (json_validate_type<bool>(current_value()))
{
*data = current_value()->GetBool();
end_read_scope();
}
}
void JSONSerializer::serialize_fundamental(i8* data)
{
if (mode == SerializerMode::writing)
{
writer_.Int(*data);
return;
}
if (json_validate_type<int>(current_value()))
{
*data = sign_cast<i8>(current_value()->GetInt());
end_read_scope();
}
}
void JSONSerializer::serialize_fundamental(i16* data)
{
if (mode == SerializerMode::writing)
{
writer_.Int(*data);
return;
}
if (json_validate_type<int>(current_value()))
{
*data = sign_cast<i16>(current_value()->GetInt());
end_read_scope();
}
}
void JSONSerializer::serialize_fundamental(i32* data)
{
if (mode == SerializerMode::writing)
{
writer_.Int(*data);
return;
}
if (json_validate_type<int>(current_value()))
{
*data = current_value()->GetInt();
end_read_scope();
}
}
void JSONSerializer::serialize_fundamental(i64* data)
{
if (mode == SerializerMode::writing)
{
writer_.Int64(*data);
return;
}
if (json_validate_type<int64_t>(current_value()))
{
*data = current_value()->GetInt64();
end_read_scope();
}
}
void JSONSerializer::serialize_fundamental(u8* data)
{
if (mode == SerializerMode::writing)
{
writer_.Uint(*data);
return;
}
if (json_validate_type<unsigned>(current_value()))
{
*data = sign_cast<u8>(current_value()->GetUint());
end_read_scope();
}
}
void JSONSerializer::serialize_fundamental(u16* data)
{
if (mode == SerializerMode::writing)
{
writer_.Uint(*data);
return;
}
if (json_validate_type<unsigned>(current_value()))
{
*data = sign_cast<u16>(current_value()->GetUint());
end_read_scope();
}
}
void JSONSerializer::serialize_fundamental(u32* data)
{
if (mode == SerializerMode::writing)
{
writer_.Uint(*data);
return;
}
if (json_validate_type<uint32_t>(current_value()))
{
*data = current_value()->GetUint();
end_read_scope();
}
}
void JSONSerializer::serialize_fundamental(u64* data)
{
if (mode == SerializerMode::writing)
{
writer_.Uint64(*data);
return;
}
if (json_validate_type<uint64_t>(current_value()))
{
*data = current_value()->GetUint64();
end_read_scope();
}
}
void JSONSerializer::serialize_fundamental(char* data)
{
if (mode == SerializerMode::writing)
{
writer_.String(data, 1, true);
return;
}
if (json_validate_type(rapidjson::kStringType, current_value()))
{
memcpy(data, current_value()->GetString(), math::min(current_value()->GetStringLength(), 1u));
end_read_scope();
}
}
void JSONSerializer::serialize_fundamental(float* data)
{
if (mode == SerializerMode::writing)
{
writer_.Double(*data);
return;
}
if (json_validate_type<float>(current_value()))
{
*data = sign_cast<float>(current_value()->GetDouble());
end_read_scope();
}
}
void JSONSerializer::serialize_fundamental(double* data)
{
if (mode == SerializerMode::writing)
{
writer_.Double(*data);
return;
}
if (json_validate_type<double>(current_value()))
{
*data = current_value()->GetDouble();
}
}
void JSONSerializer::serialize_fundamental(u128* data)
{
static thread_local char buffer[33];
if (mode == SerializerMode::writing)
{
str::format_buffer(buffer, static_array_length(buffer), "%" BEE_PRIxu128, BEE_FMT_u128((*data)));
writer_.String(buffer, static_array_length(buffer) - 1);
return;
}
if (json_validate_type(rapidjson::kStringType, current_value()))
{
BEE_CHECK(str::to_u128(StringView(current_value()->GetString(), current_value()->GetStringLength()), data));
end_read_scope();
}
}
} // namespace bee
|
bd18a50f1c29e4a2824b059be2e397e65b209d90
|
45bebb1cf4e951d673755e5700a9e30b27b1c3ae
|
/vtkMAF/vtkMAFContourVolumeMapperAdv.cxx
|
5ab4f4ae6c26b48046ca365e0aa6c0a4810f94fd
|
[] |
no_license
|
besoft/MAF2
|
1a26bfbb4bedb036741941a43b135162448bbf33
|
b576955f4f6b954467021f12baedfebcaf79a382
|
refs/heads/master
| 2020-04-13T13:58:44.609511
| 2019-07-31T13:56:54
| 2019-07-31T13:56:54
| 31,658,947
| 1
| 3
| null | 2015-03-04T13:41:48
| 2015-03-04T13:41:48
| null |
UTF-8
|
C++
| false
| false
| 26,729
|
cxx
|
vtkMAFContourVolumeMapperAdv.cxx
|
/*=========================================================================
Program: MAF2
Module: vtkMAFContourVolumeMapperAdv
Authors: Alexander Savenko, Nigel McFarlane
Copyright (c) B3C
All rights reserved. See Copyright.txt or
http://www.scsitaly.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
// CONTENTS
// PrepareContours()
// PrepareContoursTemplate()
//
// Polyline2DAdv::Reallocate()
// Polyline2DAdv::Allocate()
// Polyline2DAdv::Polyline2DAdv()
// Polyline2DAdv::AddNextLine()
// Polyline2DAdv::Merge()
// Polyline2DAdv::Close()
// Polyline2DAdv::UpdateBoundingBox()
// Polyline2DAdv::FindClosestPolyline() - commented out
// Polyline2DAdv::FindSubPolyline() - " "
// Polyline2DAdv::SplitPolyline() - " "
// Polyline2DAdv::Move()
// Polyline2DAdv::IsInsideOf()
//
// ListOfPolyline2DAdv::Clear()
// ListOfPolyline2DAdv::IsInside()
// ListOfPolyline2DAdv::FindContour()
#include <assert.h>
#include "vtkObjectFactory.h"
#include "vtkMarchingSquaresCases.h"
#include "vtkTransform.h"
#include "vtkMAFContourVolumeMapperAdv.h"
static const vtkMarchingSquaresLineCases* marchingSquaresCases = vtkMarchingSquaresLineCases::GetCases();
vtkCxxRevisionMacro(vtkMAFContourVolumeMapperAdv, "$Revision: 1.1.2.1 $");
vtkStandardNewMacro(vtkMAFContourVolumeMapperAdv);
//------------------------------------------------------------------------------
// Constructor
vtkMAFContourVolumeMapperAdv::vtkMAFContourVolumeMapperAdv()
//------------------------------------------------------------------------------
{
Alpha=1.0;
this->AutoLODRender = true;
this->AutoLODCreate = true;
this->EnableContourAnalysis = false;
this->BlockMinMax = NULL;
this->VoxelCoordinates[0] = this->VoxelCoordinates[1] = this->VoxelCoordinates[2] = NULL;
this->TransformMatrix = vtkMatrix4x4::New();
this->VolumeMatrix = vtkMatrix4x4::New();
for (int lod = 0 ; lod < NumberOfLods ; lod++){
// set initial value of no. of triangles to undefined
this->NumberOfTriangles[lod] = -1 ;
// initialize times to draw to undefined
this->TimeToDrawDC[lod] = -1.0 ;
this->TimeToDrawRMC[lod] = -1.0 ;
// initialize caches to NULL
this->TriangleCache[lod] = NULL;
this->TriangleCacheSize[lod] = 0;
// sorting triangles
this->OrderedVertices[lod] = NULL ;
}
this->TimePerTriangle = -1.0 ;
}
//------------------------------------------------------------------------------
// Destructor
vtkMAFContourVolumeMapperAdv::~vtkMAFContourVolumeMapperAdv()
//------------------------------------------------------------------------------
{
// delete textures if any
ReleaseData();
this->TransformMatrix->Delete();
this->VolumeMatrix->Delete();
}
//------------------------------------------------------------------------------
void vtkMAFContourVolumeMapperAdv::PrepareContours(const int slice, const void *imageData, ListOfPolyline2DAdv& polylines) {
this->Polylines = &polylines;
switch (this->GetDataType()) {
case VTK_CHAR:
this->PrepareContoursTemplate(slice, (const char*)imageData);
break;
case VTK_UNSIGNED_CHAR:
this->PrepareContoursTemplate(slice, (const unsigned char*)imageData);
break;
case VTK_SHORT:
this->PrepareContoursTemplate(slice, (const short*)imageData);
break;
case VTK_UNSIGNED_SHORT:
this->PrepareContoursTemplate(slice, (const unsigned short*)imageData);
break;
}
}
//------------------------------------------------------------------------------
template<typename DataType> void vtkMAFContourVolumeMapperAdv::PrepareContoursTemplate(const int slice, const DataType *imageData) {
const DataType (* const BlockMinMax)[2] = (DataType (*)[2])((DataType *)this->BlockMinMax + 2 * (slice >> VoxelBlockSizeLog) * this->NumBlocks[0] * this->NumBlocks[1]);
const DataType ContourValue = (DataType)this->ContourValue;
const int lastXBlock = this->NumBlocks[0] - 1, lastYBlock = this->NumBlocks[1] - 1;
const int lastXBlockSize = this->DataDimensions[0] - 1 - (lastXBlock << VoxelBlockSizeLog), lastYBlockSize = this->DataDimensions[1] - 1 - (lastYBlock << VoxelBlockSizeLog);
ListOfPolyline2DAdv& polylines = *this->Polylines;
polylines.clear();
int statCounter = 0;
for (int byi = 0, yblock = 0; byi < this->NumBlocks[1]; byi++, yblock += this->NumBlocks[0]) {
const int yblockSize = (byi < lastYBlock) ? VoxelBlockSize : lastYBlockSize;
for (int bxi = 0, block = yblock; bxi < this->NumBlocks[0]; bxi++, block++) {
if (ContourValue > BlockMinMax[block][1] || ContourValue < BlockMinMax[block][0])
continue; // skip the block
const int xblockSize = (bxi < lastXBlock) ? VoxelBlockSize : lastXBlockSize;
const int xBlock = (bxi << VoxelBlockSizeLog);
const int yBlock = (byi << VoxelBlockSizeLog);
const DataType *imageBlock = imageData + yBlock * this->DataDimensions[0] + xBlock;
// build the contours
for (int yi = 0; yi < yblockSize; yi++, imageBlock += this->DataDimensions[0]) {
for (int xi = 0; xi < xblockSize; xi++) {
const DataType * const voxelPtr = imageBlock + xi;
const DataType voxelVals[4] = {voxelPtr[0], voxelPtr[1], voxelPtr[this->DataDimensions[0] + 1], voxelPtr[this->DataDimensions[0]]};
int caseIndex = voxelVals[0] > ContourValue;
caseIndex |= (voxelVals[1] > ContourValue) << 1;
caseIndex |= (voxelVals[2] > ContourValue) << 2;
caseIndex |= (voxelVals[3] > ContourValue) << 3;
const EDGE_LIST * edge = marchingSquaresCases[caseIndex].edges;
if (*edge < 0)
continue;
const int x = (xBlock + xi) << 1;
const int y = (yBlock + yi) << 1;
Polyline2DAdv::Point line[2];
while(*edge >= 0) {
static const int edgeToOffset[4][2] = {{1, 0}, {2, 1}, {1, 2}, {0, 1}};
// point 1
line[0].xy[0] = x + edgeToOffset[*edge][0];
line[0].xy[1] = y + edgeToOffset[*edge][1];
edge++;
// point 2
line[1].xy[0] = x + edgeToOffset[*edge][0];
line[1].xy[1] = y + edgeToOffset[*edge][1];
edge++;
// try to add line to polylines
const int numOfPolylines = polylines.size();
int pi;
for (pi = numOfPolylines - 1; pi >= 0; pi--) {
if (polylines[pi]->AddNextLine(line))
break;
}
// try to merge polylines
if (pi >= 0) {
for (int pj = numOfPolylines - 1; pj >= 0; pj--) {
if (pi != pj && polylines[pi]->Merge(*polylines[pj])) {
delete polylines[pj];
polylines[pj] = polylines[numOfPolylines - 1];
polylines.pop_back();
break;
}
}
continue;
}
polylines.push_back(new Polyline2DAdv(line));
} // edge loop
} // for (xi)
} // for (yi)
} // for (bxi)
} // for (byi)
for (int pi = polylines.size() - 1; pi >= 0 ; pi--) {
if (polylines[pi]->Length() < 30) {
delete polylines[pi];
polylines[pi] = polylines[polylines.size() - 1];
polylines.pop_back();
statCounter++;
}
else {
polylines[pi]->Close();
}
}
// eliminate inside polygons
#if 0
for (pi = 0; pi < polylines.size(); pi++) {
for (int pj = polylines.size() - 1; pj >= 0; pj--) {
if (pi != pj && polylines[pi]->IsInsideOf(polylines[pj])) {
delete polylines[pi];
polylines[pi] = polylines[polylines.size() - 1];
polylines.pop_back();
pi--;
break;
}
}
}
#endif
}
///////////////////////////////////////////////////////////////////////////////////
// class Polyline2DAdv
//---------------------------------------------------------------------------------
void Polyline2DAdv::Reallocate() {
const int newsize = 2 * (size + 1);
Point *buffer = new Point[newsize];
const int newstart = int(0.5f * size + 1);
const int newend = newstart + this->end - this->start;
memcpy(buffer + newstart, this->vertices + this->start, sizeof(Point) * (this->end - this->start + 1));
if (this->vertices != this->verticesBuffer)
delete [] vertices;
this->vertices = buffer;
this->start = newstart;
this->end = newend;
this->size = newsize;
assert(this->start > 1 && (this->end + 2) < newsize);
}
//---------------------------------------------------------------------------------
void Polyline2DAdv::Allocate(int newsize) {
if (this->vertices != NULL && (this->end - this->start) > newsize)
return;
if (this->vertices != this->verticesBuffer)
delete [] vertices;
this->vertices = new Point[newsize];
this->start = -1;
this->end = -1;
this->size = newsize;
this->closestPolyline[0] = this->closestPolyline[1] = -1;
this->minDistance[0] = this->minDistance[1] = 0;
}
//---------------------------------------------------------------------------------
Polyline2DAdv::Polyline2DAdv(const Point *line) {
assert(sizeof(Point) == (2 * sizeof(short)));
this->size = VERTICES_BUFFER_SIZE;
this->start = this->end = VERTICES_BUFFER_SIZE >> 1;
this->end++;
this->vertices = this->verticesBuffer;
this->vertices[this->start] = line[0];
this->vertices[this->end] = line[1];
this->closestPolyline[0] = this->closestPolyline[1] = -1;
this->minDistance[0] = this->minDistance[1] = 0;
this->updateBoundingBox = true;
}
//---------------------------------------------------------------------------------
bool Polyline2DAdv::AddNextLine(const Point *newLine) {
if (newLine[0] == this->vertices[this->start]) {
if (this->start == 0)
Reallocate();
this->vertices[--this->start] = newLine[1];
}
else if (newLine[0] == this->vertices[this->end]) {
if ((this->end + 1) == size)
Reallocate();
this->vertices[++this->end] = newLine[1];
}
else if (newLine[1] == this->vertices[this->start]) {
if (this->start == 0)
Reallocate();
this->vertices[--this->start] = newLine[0];
}
else if (newLine[1] == this->vertices[this->end]) {
if ((this->end + 1) == size)
Reallocate();
this->vertices[++this->end] = newLine[0];
}
else {
return false;
}
assert(this->end < this->size && this->start >= 0);
this->updateBoundingBox = true;
return true;
}
//---------------------------------------------------------------------------------
bool Polyline2DAdv::Merge(Polyline2DAdv &polyline) {
if (polyline.vertices[polyline.start] == this->vertices[start]) {
while (this->start <= (polyline.end - polyline.start))
Reallocate();
for (int i = polyline.start + 1; i <= polyline.end; i++)
this->vertices[--this->start] = polyline.vertices[i];
}
else if (polyline.vertices[polyline.start] == this->vertices[end]) {
while ((this->size - this->end) <= (polyline.end - polyline.start))
Reallocate();
memcpy(this->vertices + end + 1, polyline.vertices + polyline.start + 1, sizeof(Point) * (polyline.end - polyline.start));
this->end += polyline.end - polyline.start;
}
else if (polyline.vertices[polyline.end] == this->vertices[start]) {
while (this->start <= (polyline.end - polyline.start))
Reallocate();
memcpy(this->vertices + start - (polyline.end - polyline.start),
polyline.vertices + polyline.start, sizeof (Point) * (polyline.end - polyline.start));
this->start -= polyline.end - polyline.start;
}
else if (polyline.vertices[polyline.end] == this->vertices[end]) {
while ((this->size - this->end) <= (polyline.end - polyline.start))
Reallocate();
for (int i = polyline.end - 1; i >= polyline.start; i--)
this->vertices[++this->end] = polyline.vertices[i];
}
else {
return false;
}
this->updateBoundingBox = true;
assert(this->end < this->size && this->start >= 0);
return true;
}
//---------------------------------------------------------------------------------
void Polyline2DAdv::Close() {
if (this->vertices[this->start] == this->vertices[this->end]) {
if ((this->end + 1) == this->size)
this->Reallocate();
this->vertices[++this->end] = this->vertices[this->start];
}
}
//---------------------------------------------------------------------------------
void Polyline2DAdv::UpdateBoundingBox() const {
this->bbox[0] = this->bbox[2] = VTK_SHORT_MAX;
this->bbox[1] = this->bbox[3] = VTK_SHORT_MIN;
for (int i = this->start; i <= this->end; i++) {
const short * const xy = this->vertices[i].xy;
if (xy[0] > this->bbox[1])
this->bbox[1] = xy[0];
if (xy[0] < this->bbox[0])
this->bbox[0] = xy[0];
if (xy[1] > this->bbox[3])
this->bbox[3] = xy[1];
if (xy[1] < this->bbox[2])
this->bbox[2] = xy[1];
}
this->updateBoundingBox = false;
}
/*
//------------------------------------------------------------------------------------------------
void Polyline2DAdv::FindClosestPolyline(int index, int numOfPolylines, Polyline2DAdv* polylines) {
assert(index == 0 || index == 1);
this->minDistance[index] = VTK_FLOAT_MAX;
this->closestPolyline[index] = -1;
const int numPoints = (this->end - this->start + 1);
//const float distanceThreshold = 4.f * (this->dataSpacing[0] + this->dataSpacing[1]);
for (int pi = 0; pi < numOfPolylines; pi++) {
// compare two polylines
float distance = 0;
if (this->bbox[0] > polylines[pi].bbox[1] || this->bbox[1] < polylines[pi].bbox[0] ||
this->bbox[2] > polylines[pi].bbox[3] || this->bbox[3] < polylines[pi].bbox[2])
continue; // bounding boxes do not intersect
for (int i = this->start; i <= this->end; i++) {
float *iPoint = this->pointArray->GetPoint(this->vertices[i]);
// find the best match
float localMindistance = VTK_FLOAT_MAX;
for (int j = polylines[pi].start; j <= polylines[pi].end; j++) {
float *jPoint = polylines[pi].pointArray->GetPoint(polylines[pi].vertices[j]);
float locdistance = fabs(jPoint[0] - iPoint[0]) + fabs(jPoint[1] - iPoint[1]);
if (locdistance < localMindistance)
localMindistance = locdistance;
}
distance += localMindistance;
}
distance *= (fabs(numPoints - polylines[pi].end + polylines[pi].start - 1) / numPoints + 1) / numPoints;
if (distance < this->minDistance[index]) {
this->minDistance[index] = distance;
this->closestPolyline[index] = pi;
}
}
if (this->closestPolyline[index] == -1)
this->minDistance[index] = 0;
}
//----------------------------------------------------------------------------------------------------
int Polyline2DAdv::FindSubPolyline(int numOfPolylines, Polyline2DAdv* polylines, float &minDistance) {
const int numPoints = (this->end - this->start + 1);
minDistance = VTK_FLOAT_MAX;
int bestMatch = -1;
for (int pi = 0; pi < numOfPolylines; pi++) {
// compare two polylines
float distance = 0;
if (this->bbox[0] > polylines[pi].bbox[1] || this->bbox[1] < polylines[pi].bbox[0] ||
this->bbox[2] > polylines[pi].bbox[3] || this->bbox[3] < polylines[pi].bbox[2])
continue; // bounding boxes do not intersect
if ((polylines[pi].end - polylines[pi].start) > numPoints)
continue;
for (int j = polylines[pi].start; j <= polylines[pi].end; j++) {
float *jPoint = polylines[pi].pointArray->GetPoint(polylines[pi].vertices[j]);
// find the best match
float localMindistance = VTK_FLOAT_MAX;
for (int i = this->start; i <= this->end; i++) {
float *iPoint = this->pointArray->GetPoint(this->vertices[i]);
float locdistance = fabs(jPoint[0] - iPoint[0]) + fabs(jPoint[1] - iPoint[1]);
if (locdistance < localMindistance)
localMindistance = locdistance;
}
distance += localMindistance;
}
distance /= (polylines[pi].end - polylines[pi].start);
if (distance < minDistance) {
bestMatch = pi;
minDistance = distance;
}
}
return bestMatch;
}
//---------------------------------------------------------------------------------
bool Polyline2DAdv::SplitPolyline(Polyline2DAdv& subpoly, Polyline2DAdv& newpoly) {
const int polyLength = this->end - this->start + 1;
const int subpolyLength = subpoly.end - subpoly.start + 1;
float avgLineLength = 0;
for (int si = subpoly.start; si < subpoly.end; si++) {
float *iPoint = subpoly.pointArray->GetPoint(subpoly.vertices[si]);
float *jPoint = subpoly.pointArray->GetPoint(subpoly.vertices[si + 1]);
avgLineLength += fabs(jPoint[0] - iPoint[0]) + fabs(jPoint[1] - iPoint[1]);
}
avgLineLength /= (subpoly.end - subpoly.start);
const float pointDistanceThreshold = 30.f * avgLineLength;
// find the best match between two polylines
static char *hitBuffer = NULL;
static int hitBufferLength = 0;
if (hitBuffer == NULL || hitBufferLength <= (polyLength + 1)) {
delete [] hitBuffer;
hitBuffer = new char [polyLength + 1];
hitBufferLength = polyLength + 1;
}
memset(hitBuffer, 0, polyLength + 1);
bool anyHit = false;
for (si = subpoly.start; si < subpoly.end; si++) {
float *iPoint = subpoly.pointArray->GetPoint(subpoly.vertices[si + 1]);
// fin best match between points
float bestDistance = VTK_FLOAT_MAX;
int bestIndex;
for (int j = this->start; j <= this->end; j++) {
float *jPoint = this->pointArray->GetPoint(this->vertices[j]);
float distance = fabs(jPoint[0] - iPoint[0]) + fabs(jPoint[1] - iPoint[1]);
if (distance < bestDistance) {
bestDistance = distance;
bestIndex = j;
}
}
if (bestDistance < pointDistanceThreshold) {
hitBuffer[bestIndex - this->start] = 1;
anyHit = true;
}
} // for (i)
if (!anyHit)
return false;
// analyze the hits
int bestIndex = -1;
int bestLength = 0;
for (int i = 0; i < polyLength; i++) {
const int startI = i;
while (hitBuffer[i] == 0) {
i++;
if (i >= polyLength)
i = 0;
}
const int length = (i >= startI) ? (i - startI) : (i + polyLength - startI);
if (length > bestLength) {
bestLength = length;
bestIndex = startI;
}
if (i < startI)
break;
}
// avoid problems with border cases
if (bestIndex == 0)
bestIndex++;
if ((bestIndex + bestLength) == polyLength)
bestLength--;
if (bestLength < 40)
return false; // the subpolyline is too small
// identify borders of polylines
bool newPolyLineOverlap = ((bestIndex + bestLength) >= polyLength);
int newPolyStart = bestIndex;
int newPolyEnd = (bestIndex + bestLength) % polyLength;
// find the narrowest point
float bestDistance = VTK_FLOAT_MAX;
int bestS, bestE;
for (si = (newPolyStart > 15) ? (newPolyStart - 15) : 0; si < (polyLength - 1) && si < (newPolyStart + 15); si++) {
float *sPoint = this->pointArray->GetPoint(this->vertices[si + this->start]);
for (int ei = (newPolyEnd > 15) ? (newPolyEnd - 15) : 0; ei < (polyLength - 1) && ei < (newPolyEnd + 15); ei++) {
float *ePoint = this->pointArray->GetPoint(this->vertices[ei + this->start]);
float distance = fabs(sPoint[0] - ePoint[0]) + fabs(sPoint[1] - ePoint[1]);
if (distance < bestDistance) {
bestS = si;
bestE = ei;
bestDistance = distance;
}
}
}
newPolyStart = bestS;
newPolyEnd = bestE;
const int newPolyLength = (newPolyEnd >= newPolyStart) ? (newPolyEnd - newPolyStart) : (newPolyEnd + polyLength - newPolyStart);
// test if the polylines are OK
if (newPolyLength > 1.2 * (polyLength - subpolyLength) ||
newPolyLength < 0.8 * (polyLength - subpolyLength))
return false; // deviation is too big
// check the distance
const float *sPoint = this->pointArray->GetPoint(this->vertices[this->start + newPolyStart]);
const float *ePoint = this->pointArray->GetPoint(this->vertices[this->start + newPolyEnd]);
if ((fabs(sPoint[0] - ePoint[0]) + fabs(sPoint[1] - ePoint[1])) > pointDistanceThreshold)
return false;
// create new polyline
newpoly.Allocate(newPolyLength + 3);
if (newPolyLineOverlap) {
memcpy(newpoly.vertices, this->vertices + this->start + newPolyStart, sizeof (vtkIdType) * (polyLength - newPolyStart));
memcpy(newpoly.vertices + polyLength - newPolyStart, this->vertices + this->start, sizeof (vtkIdType) * (newPolyEnd + 1));
}
else {
memcpy(newpoly.vertices, this->vertices + this->start + newPolyStart, sizeof (vtkIdType) * (newPolyLength + 1));
}
newpoly.start = 1;
newpoly.end = newPolyLength;
newpoly.vertices[newpoly.end] = newpoly.vertices[newpoly.start];
newpoly.SetPointArray(this->pointArray);
newpoly.UpdateBoundingBox();
// modify the original
if (newPolyLineOverlap) {
this->end = this->start + newPolyStart - 1;
this->start += newPolyEnd + 1;
this->vertices[this->end] = this->vertices[this->start];
}
else {
memcpy(this->vertices + this->start + newPolyStart - 1, this->vertices + this->start + newPolyEnd, sizeof (vtkIdType) * (polyLength - newPolyEnd));
this->end -= (newPolyLength + 1);
}
this->UpdateBoundingBox();
return true;
}
*/
//------------------------------------------------------------------------------
void Polyline2DAdv::Move(Polyline2DAdv &polyline) {
if (this->vertices != this->verticesBuffer)
delete [] vertices;
*this = polyline; // copy all members
this->updateBoundingBox = true;
// reset the source
polyline.vertices = NULL;
}
//------------------------------------------------------------
// check if one polyline is inside another
bool Polyline2DAdv::IsInsideOf(const Polyline2DAdv *outerPolyline) const {
if (this->updateBoundingBox)
this->UpdateBoundingBox();
if (outerPolyline->updateBoundingBox)
outerPolyline->UpdateBoundingBox();
// check bounding boxes
if (outerPolyline->bbox[0] > this->bbox[1] ||
outerPolyline->bbox[2] > this->bbox[3] ||
outerPolyline->bbox[1] < this->bbox[0] ||
outerPolyline->bbox[3] < this->bbox[2] || outerPolyline->Length() < 16)
return false;
// get sample point
int intersection = 0;
const short sx = this->vertices[this->start].xy[0];
const short sy = this->vertices[this->start].xy[1];
for (int p = outerPolyline->start + 1; p < outerPolyline->end; p++) {
const short pointX = outerPolyline->vertices[p].xy[0];
const short pointY = outerPolyline->vertices[p].xy[1];
if (pointY != sy || pointX <= sx)
continue;
const short prevPointY = outerPolyline->vertices[p - 1].xy[1];
p++;
while ((p < outerPolyline->end) && (outerPolyline->vertices[p].xy[1] == pointY))
p++; // skip parallel lines
if (p < outerPolyline->end && outerPolyline->vertices[p].xy[1] != prevPointY)
intersection++;
}
// check
if ((intersection % 2) == 1 && this->Length() > 32) {
intersection = 0;
for (int p = outerPolyline->start + 1; p < outerPolyline->end; p++) {
const short pointX = outerPolyline->vertices[p].xy[0];
const short pointY = outerPolyline->vertices[p].xy[1];
if (pointY != sy || pointX >= sx)
continue;
const short prevPointY = outerPolyline->vertices[p - 1].xy[1];
p++;
while ((p < outerPolyline->end) && (outerPolyline->vertices[p].xy[1] == pointY))
p++; // skip parallel lines
if (p < outerPolyline->end && outerPolyline->vertices[p].xy[1] != prevPointY)
intersection++;
}
}
return ((intersection % 2) == 1);
}
//------------------------------------------------------------------------------
void ListOfPolyline2DAdv::clear() {
for (int pj = size() - 1; pj >= 0; pj--)
delete at(pj);
erase(begin(), end());
}
//------------------------------------------------------------------------------
bool ListOfPolyline2DAdv::IsInside(int x, int y, int polylineLengthThreshold) {
const short sx = x << 1;
const short sy = y << 1;
for (int pi = this->size() - 1; pi >= 0; pi--) {
const Polyline2DAdv * const polyline = at(pi);
if (polyline->Length() < polylineLengthThreshold)
continue;
if (polyline->updateBoundingBox)
polyline->UpdateBoundingBox();
// check bounding boxes
if (polyline->bbox[0] > sx || polyline->bbox[1] < sx ||
polyline->bbox[2] > sy || polyline->bbox[3] < sy)
continue;
int intersection = 0;
for (int p = polyline->start + 1; p < polyline->end; p++) {
const short pointX = polyline->vertices[p].xy[0];
const short pointY = polyline->vertices[p].xy[1];
if (pointY != sy || pointX <= sx)
continue;
const short prevPointY = polyline->vertices[p - 1].xy[1];
p++;
while ((p < polyline->end) && (polyline->vertices[p].xy[1] == pointY))
p++; // skip parallel lines
if (p < polyline->end && polyline->vertices[p].xy[1] != prevPointY)
intersection++;
}
// check
if ((intersection % 2) == 1) {
intersection = 0;
for (int p = polyline->start + 1; p < polyline->end; p++) {
const short pointX = polyline->vertices[p].xy[0];
const short pointY = polyline->vertices[p].xy[1];
if (pointY != sy || pointX >= sx)
continue;
const short prevPointY = polyline->vertices[p - 1].xy[1];
p++;
while ((p < polyline->end) && (polyline->vertices[p].xy[1] == pointY))
p++; // skip parallel lines
if (p < polyline->end && polyline->vertices[p].xy[1] != prevPointY)
intersection++;
}
}
if ((intersection % 2) == 1) {
// test that the point is inside, not on the contour
int p;
for (p = polyline->start + 1; p < polyline->end; p++) {
const short pointX = polyline->vertices[p].xy[0];
const short pointY = polyline->vertices[p].xy[1];
if (abs(pointX - sx) <= 4 && abs(pointY - sy) <= 4)
break;
}
if (p == polyline->end)
return true;
}
}
return false;
}
//------------------------------------------------------------------------------
Polyline2DAdv *ListOfPolyline2DAdv::FindContour(int x, int y, int polylineLengthThreshold, int distance) {
const short sx = x << 1;
const short sy = y << 1;
distance = distance << 1;
for (int pi = this->size() - 1; pi >= 0; pi--) {
Polyline2DAdv *polyline = at(pi);
if (polyline->Length() < polylineLengthThreshold)
continue;
if (polyline->updateBoundingBox)
polyline->UpdateBoundingBox();
// check bounding boxes
if (polyline->bbox[0] > (sx + distance) || polyline->bbox[1] < (sx - distance) ||
polyline->bbox[2] > (sy + distance) || polyline->bbox[3] < (sy - distance))
continue;
for (int p = polyline->start + 1; p < polyline->end; p++) {
const short pointX = polyline->vertices[p].xy[0];
const short pointY = polyline->vertices[p].xy[1];
if (abs(pointX - sx) <= distance && abs(pointY - sy) <= distance)
return polyline;
}
}
return NULL;
}
|
163d91e2ea61d01f466c9079bff21809072ed0e9
|
ed60c86a38c8e7b0269db80703ae401459616601
|
/class_process.h
|
0f11ba739f9b712a3171aea02ea60f7848d302eb
|
[] |
no_license
|
yanguango/spam_filter
|
79781a9805674a6ba93fa087ccdb4f8c5eb449b2
|
16e31bbf4f2c4305beee754c510ddea47336f222
|
refs/heads/master
| 2021-01-02T09:14:08.134365
| 2014-12-05T05:52:45
| 2014-12-05T05:52:45
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,736
|
h
|
class_process.h
|
#include <string>
#include <fstream>
#include <iostream>
#include <dirent.h>
#include <map>
#include <vector>
#include <util.h>
#include <sstream>
#include "single_process.h"
using namespace std;
const string SingleProcess::FEATURE_CHARS = ";([!$#";
class ClassProcess {
private:
string ham_path;
string spam_path;
map<string, float> class_word_map;
int num_rows;
vector<string> features;
public:
ClassProcess(string hp, string sp){
ham_path = hp;
spam_path = sp;
num_rows = 0;
}
vector<string> ListEmailInDir(string file_path) {
DIR* dir;
dirent* pdir;
vector<string> files;
dir = opendir(file_path.c_str());
while ((pdir = readdir(dir))) {
files.push_back(pdir->d_name);
}
return files;
}
vector<string> SplitTrainTest(vector<string> &train) {
std::size_t const half_size = train.size() / 2;
vector<string> test(train.begin(), train.begin() + half_size);
train.erase(train.begin() + half_size, train.end());
return test;
}
map<string, float> process() {
vector<string> ham = ListEmailInDir(ham_path);
vector<string> spam = ListEmailInDir(spam_path);
// std::random_shuffle (train.begin(), train.end());
// vector<string> test = SplitTrainTest(train);
for(int i = 0; i < ham.size(); i++) {
SingleProcess sp(ham_path + ham[i]);
map<string, double> map = sp.WordCount();
class_word_map.insert(map.begin(), map.end());
num_rows++;
}
for(int i = 0; i < spam.size(); i++) {
SingleProcess sp(spam_path + spam[i]);
map<string, double> map = sp.WordCount();
class_word_map.insert(map.begin(), map.end());
num_rows++;
}
vector<PAIR> wordvec = SortWordPair(class_word_map);
vector<PAIR> pair_features(wordvec.begin(), wordvec.begin() + 100);
ofstream myfile;
myfile.open("features.txt");
for (int i = 0; i != pair_features.size(); ++i) {
myfile << pair_features[i].first << " " << pair_features[i].second << endl;
features.push_back(pair_features[i].first);
}
myfile.close();
myfile.open("data.txt", std::ofstream::out | std::ofstream::app);
for(int i = 0; i < ham.size(); i++) {
SingleProcess sp(ham_path + ham[i]);
sp.WordCount();
string s = sp.output(features);
myfile << s << endl;
}
for(int i = 0; i < spam.size(); i++) {
SingleProcess sp(spam_path + spam[i]);
sp.WordCount();
string s = sp.output(features);
myfile << s << endl;
}
myfile.close();
return class_word_map;
}
};
|
a70e1a7d1e946405335e6819edc9227c73ebfefd
|
3d15e7a2a925bf2c736164cde79a700b513cc6a5
|
/RNA.cpp
|
652566d114cbf6e9531e71b61d74563a24e40a93
|
[] |
no_license
|
3olaa/DNA-RNA-Protein
|
f578298436c82d9a03426e612519bcf81c13df91
|
632c2ac8652f1538c28815e69288fab1dabd65f2
|
refs/heads/master
| 2020-04-11T09:27:56.968312
| 2018-12-13T18:24:26
| 2018-12-13T18:24:26
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 4,654
|
cpp
|
RNA.cpp
|
#include "RNA.h"
#include "Sequence.h"
RNA::RNA()
{
type = mRNA;
}
RNA::RNA(char * Seq, RNA_Type atype,int length):Sequence(length)
{
for (int i = 0 ; i<length ; i++)
{
seq[i]= Seq[i];
}
type = atype;
}
RNA::RNA(RNA& rhs)
{
seq_length = rhs.seq_length;
seq = new char [seq_length];
for (int i = 0 ; i<rhs.seq_length ; i++)
{
seq[i] = rhs.seq[i];
}
type = rhs.type;
}
RNA::~RNA()
{
delete [] seq;
}
void RNA::Print()
{
for (int i=0 ; i<seq_length ; i++)
{
cout<<seq[i]<<" ";
}
}
Protein RNA::ConvertToProtein()
{
char *ch = new char [4];
char *pSeq = new char [seq_length/3];
CodonsTable c;
if (seq_length % 3 == 0)
{
for (int i = 0 ; i<=seq_length; i+=3)
{
ch[i] = seq[i];
ch[i+1] = seq[i+1];
ch[i+2] = seq[i+2];
ch[i+3]= '\0';
}
for (int i = 0 ; i<seq_length/3 ; i++)
{
pSeq[i] = c.getAminoAcid(ch).AminoAcid;
}
cout << pSeq;
Protein convert(pSeq);
return convert;
}
else
{
cout<<"can't convert to protein";
}
}
DNA RNA::ConvertToDNA()
{
char* newDna = new char [seq_length];
for (int i = 0 ; i < seq_length ; i++)
{
if (seq[i]=='U')
{
newDna[i]='T';
}
else
{
newDna [i] = seq[i];
}
}
for (int i = 0 ; i<seq_length ; i++)
{
seq[i]= newDna[i];
}
DNA convert(seq,promoter,seq_length);
return convert;
}
istream&operator>>(istream& in, RNA &rna )
{
int choosen;
a:
cout<<"What type of RNA you want to choose??"<<endl<<"1-DO you want mRNA?"<<endl<<"2-Do you want pre_mRNA"<<endl<<"3-Do you want mRNA_exon"<<endl<<"4-Do you want mRNA_intron"<<endl;
try
{
cin>>choosen;
if (choosen>4)
throw 2;
}
catch(...)
{
cout<<"you have entered wrong number please choose again"<<endl;
goto a;
}
if(choosen == 1)
{
rna.type = mRNA;
}
else if(choosen == 2)
{
rna.type = pre_mRNA;
}
else if(choosen == 3)
{
rna.type = mRNA_exon;
}
else
{
rna.type = mRNA_intron;
}
cout << "Enter the length of the RNA sequence: ";
in >> rna.seq_length;
rna.seq = new char[rna.seq_length];
cout<<"write your sequence"<<endl;
b:
try
{
for (int i=0; i<rna.seq_length; i++)
{
in >> rna.seq[i];
if (rna.seq[i]!= 'A' && rna.seq[i]!= 'C' && rna.seq[i]!='G' && rna.seq[i]!='U')
{
throw 2;
}
}
}
catch(...)
{
cout<<"invalid Sequence"<<endl<<"RNA sequence must contain A C G U letters only please write your sequence again"<<endl;
goto b;
}
return in;
}
ostream& operator<<(ostream& out, RNA &rna)
{
string RNA_types[4]= {"mRNA","pre_mRNA","mRNA_exon","mRNA_intron"};
out << "RNA type: " << RNA_types[rna.type] << endl;
out << "RNA sequence: ";
for (int i=0; i<rna.seq_length; i++)
out<< rna.seq[i];
return out;
}
RNA& RNA::operator=(const RNA& rna)
{
type = rna.type;
seq_length = rna.seq_length;
seq= new char[seq_length];
for(int i=0; i<seq_length; i++)
seq[i] = rna.seq[i];
return *this;
}
bool RNA::operator== (RNA &rna)
{
int cnt=0;
if((type != rna.type) || (seq_length != rna.seq_length))
return false;
else
{
for(int i=0; i<seq_length; i++)
if(seq[i] == rna.seq[i])
cnt++;
if(cnt == seq_length)
return true;
else
return false;
}
}
bool RNA::operator!= (RNA &rna)
{
int cnt=0;
if((type != rna.type) || (seq_length != rna.seq_length))
return true;
else
{
for(int i=0; i<seq_length; i++)
if(seq[i] == rna.seq[i])
cnt++;
if(cnt == seq_length)
return false;
else
return true;
}
}
RNA RNA::operator+(RNA s)
{
int sumSize = (seq_length + s.seq_length );
char* Seq = new char[sumSize];
for (int i = 0; i < seq_length; i++)
{
Seq[i] = seq[i];
}
for (int i = seq_length ; i< s.seq_length ; i++)
{
Seq[i] = s.seq[i];
}
RNA Sum(Seq,type,sumSize);
return Sum;
}
|
3c04231dc8af55a229f2c124c75c0afe4bd00c77
|
9331ef4baa70500771f7e54fa4edbb24fe4ce099
|
/ast/Print.cpp
|
64d2e72f7e54df35c66dda257b0b94ff436cc2e7
|
[] |
no_license
|
alexbprr/CsmallCompiler
|
9ee8c34056fc4ffcd7fef60762cd357c46a8a0de
|
c41026cf0c161c664e09268fb67cef6a999fd863
|
refs/heads/master
| 2022-03-14T04:28:56.923746
| 2019-11-08T00:31:16
| 2019-11-08T00:31:16
| 179,382,230
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 814
|
cpp
|
Print.cpp
|
using namespace std;
#include "Print.h"
Print::Print(){}
Print::Print(string name)
{
this->name = name;
}
float Print::evaluate()
{
cout << this->children[0]->evaluate() << endl;
}
void Print::generateCode()
{
if (this->children.at(0) != NULL)
this->children.at(0)->generateRValueCode();
}
void Print::generatePythonCode(int level)
{
if (this->children.at(0) == NULL)
return;
(*Astnode::pythonfile) << pythonTab(level);
Id* idptr = dynamic_cast<Id*>(this->children.at(0));
if (idptr != NULL)
(*Astnode::pythonfile) << "print(\"Valor da variável " <<
idptr->tableEntryRef->getLexema() << ": \" + str(";
else
(*Astnode::pythonfile) << "print(str("; this->children.at(0)->generatePythonCode(level);
(*Astnode::pythonfile) << "))\n";
}
|
928ee66cf1effeee4ae744c493e5aee939a430d6
|
d2e1f13493ce7ebf29d4d7c1f2d89c43e44c68cf
|
/src/usbdevice/usbdevice.h
|
75a32cb55c69354d1a221ad1883a2a4705e3b541
|
[
"MIT"
] |
permissive
|
ablacknerd/particl-core
|
80eceaf4c716be79a16935a8e8ab0aeaed300cc1
|
8652163c6606c4784971c85042f2e0a80d5b23ec
|
refs/heads/master
| 2021-05-02T06:08:11.564057
| 2018-02-08T14:52:31
| 2018-02-08T16:18:21
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,070
|
h
|
usbdevice.h
|
// Copyright (c) 2018 The Particl Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef PARTICL_USBDEVICE_H
#define PARTICL_USBDEVICE_H
#include <string.h>
#include <assert.h>
#include <vector>
#include <string>
#include <key/extkey.h>
enum DeviceTypeID {
USBDEVICE_UNKNOWN = -1,
USBDEVICE_LEDGER_NANO_S = 0,
};
class UniValue;
struct hid_device_;
typedef struct hid_device_ hid_device;
class DeviceType
{
public:
DeviceType(
int nVendorId_, int nProductId_,
const char *cVendor_, const char *cProduct_,
DeviceTypeID type_)
: nVendorId(nVendorId_), nProductId(nProductId_),
cVendor(cVendor_), cProduct(cProduct_), type(type_)
{};
int nVendorId = 0;
int nProductId = 0;
const char *cVendor = nullptr;
const char *cProduct = nullptr;
DeviceTypeID type = USBDEVICE_UNKNOWN;
};
class CUSBDevice
{
public:
CUSBDevice(const DeviceType *pType_, const char *cPath_, const char *cSerialNo_, int nInterface_) : pType(pType_)
{
assert(strlen(cPath_) < sizeof(cPath));
assert(strlen(cSerialNo_) < sizeof(cSerialNo));
strcpy(cPath, cPath_);
strcpy(cSerialNo, cSerialNo_);
nInterface = nInterface_;
};
int Open();
int Close();
int GetFirmwareVersion(std::string &sFirmware, std::string &sError);
int GetInfo(UniValue &info, std::string &sError);
//int GetPubKey(const std::vector<uint32_t> &vPath, CPubKey &pk, std::string &sError);
int GetXPub(const std::vector<uint32_t> &vPath, CExtPubKey &ekp, std::string &sError);
int SignMessage(const std::vector<uint32_t> &vPath, const std::string &sMessage, std::vector<uint8_t> &vchSig, std::string &sError);
const DeviceType *pType = nullptr;
char cPath[128];
char cSerialNo[128];
int nInterface;
private:
hid_device *handle = nullptr;
};
void ListDevices(std::vector<CUSBDevice> &vDevices);
#endif // PARTICL_USBDEVICE_H
|
a755a6b98ede93e2ae3cd3bfa1c6da3ad69f0174
|
ad5efb65c4f1e76818edfe634d1139e2776f2496
|
/TurbulentArena/GetPathToEnemy.cpp
|
49a9d8d9c9fc501c8d50c3f9def0ac5b2ba776d6
|
[
"MIT"
] |
permissive
|
hornta/Turbulent-Arena
|
8f5eefa705634f15e4e14616979761bd002aeadf
|
9030f291693e670f7751e23538e649cc24dc929f
|
refs/heads/master
| 2021-05-28T16:48:38.848731
| 2015-03-29T21:46:06
| 2015-03-29T21:46:06
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 617
|
cpp
|
GetPathToEnemy.cpp
|
#include "stdafx.h"
#include "GetPathToEnemy.hpp"
#include "Agent.hpp"
#include "ClanMember.hpp"
namespace bjoernligan
{
namespace ai
{
GetPathToEnemy::GetPathToEnemy()
{
}
EBNodeStatus GetPathToEnemy::Process()
{
if (!m_xAgent)
return EBNodeStatus::Invalid;
std::vector<SenseAgentData*> visibleEnemies = m_xAgent->getSense()->getVisibleEnemies();
if (visibleEnemies.empty())
{
return EBNodeStatus::Fail;
}
m_xAgent->getOwner()->GetMovementStats().SetMaxVelocity(300.f);
m_xAgent->getPathToVisibleTarget(visibleEnemies.front());
return EBNodeStatus::Success;
}
}
}
|
46d81e70ec486cfb700932ed27845776baa55cb9
|
229f1f4383af3024a8627d957256985d3e3841e3
|
/src/gl/program.hpp
|
49176771b51ee263c5018c3c0b4d1fd794010ccf
|
[
"MIT"
] |
permissive
|
joshuarrrrr/gl-playground
|
aa12264738ff88b61e9e0e39fbfca623fb93eb85
|
4237793f9c501d89634423354f9975396c9d3fa7
|
refs/heads/main
| 2023-02-28T02:45:18.452756
| 2020-12-03T11:31:03
| 2020-12-03T11:31:03
| 318,125,469
| 0
| 1
|
MIT
| 2021-01-28T20:53:18
| 2020-12-03T08:29:52
|
C++
|
UTF-8
|
C++
| false
| false
| 3,368
|
hpp
|
program.hpp
|
#pragma once
#include <set>
#include <vector>
#include <glad/glad.h>
#include <glm/glm.hpp>
#include <glm/gtc/type_ptr.hpp>
#include <spdlog/spdlog.h>
namespace gl {
GLuint create_program(const std::set<GLuint>& shaders);
template <typename T>
void set_program_uniform(GLuint program, GLint location, const T& value);
template <typename T>
void set_program_uniform_vector(GLuint program, GLint location, const std::vector<T>& values);
// source: https://github.com/acdemiralp/gl/blob/master/include/gl/auxiliary/glm_uniforms.hpp
#define SPECIALIZE_SET_UNIFORM_VECTORS(TYPE, GL_POSTFIX) \
template <> \
inline void set_program_uniform(GLuint program, GLint location, const TYPE& value) { \
glProgramUniform##GL_POSTFIX##v(program, location, 1, glm::value_ptr(value)); \
} \
template <> \
inline void set_program_uniform_vector(GLuint program, GLint location, const std::vector<TYPE>& values) { \
glProgramUniform##GL_POSTFIX##v(program, location, (GLsizei)values.size(), glm::value_ptr(values[0])); \
}
SPECIALIZE_SET_UNIFORM_VECTORS(glm::ivec2, 2i)
SPECIALIZE_SET_UNIFORM_VECTORS(glm::ivec3, 3i)
SPECIALIZE_SET_UNIFORM_VECTORS(glm::ivec4, 4i)
SPECIALIZE_SET_UNIFORM_VECTORS(glm::uvec2, 2ui)
SPECIALIZE_SET_UNIFORM_VECTORS(glm::uvec3, 3ui)
SPECIALIZE_SET_UNIFORM_VECTORS(glm::uvec4, 4ui)
SPECIALIZE_SET_UNIFORM_VECTORS(glm::fvec2, 2f)
SPECIALIZE_SET_UNIFORM_VECTORS(glm::fvec3, 3f)
SPECIALIZE_SET_UNIFORM_VECTORS(glm::fvec4, 4f)
SPECIALIZE_SET_UNIFORM_VECTORS(glm::dvec2, 2d)
SPECIALIZE_SET_UNIFORM_VECTORS(glm::dvec3, 3d)
SPECIALIZE_SET_UNIFORM_VECTORS(glm::dvec4, 4d)
#undef SPECIALIZE_SET_UNIFORM_VECTORS
#define SPECIALIZE_SET_UNIFORM_MATRICES(TYPE, GL_POSTFIX) \
template <> \
inline void set_program_uniform(GLuint program, GLint location, const TYPE& value) { \
glProgramUniformMatrix##GL_POSTFIX##v(program, location, 1, GL_FALSE, glm::value_ptr(value)); \
} \
template <> \
inline void set_program_uniform_vector(GLuint program, GLint location, const std::vector<TYPE>& values) { \
glProgramUniformMatrix##GL_POSTFIX##v(program, location, (GLsizei)values.size(), GL_FALSE, \
glm::value_ptr(values[0])); \
}
SPECIALIZE_SET_UNIFORM_MATRICES(glm::fmat2, 2f)
SPECIALIZE_SET_UNIFORM_MATRICES(glm::fmat3, 3f)
SPECIALIZE_SET_UNIFORM_MATRICES(glm::fmat4, 4f)
SPECIALIZE_SET_UNIFORM_MATRICES(glm::dmat2, 2d)
SPECIALIZE_SET_UNIFORM_MATRICES(glm::dmat3, 3d)
SPECIALIZE_SET_UNIFORM_MATRICES(glm::dmat4, 4d)
#undef SPECIALIZE_SET_UNIFORM_MATRICES
} // namespace gl
|
45cd77af7c3724645a18b59669abf499fb209e58
|
724fbaf88af41d484f43a1aab7ba5dd0a8b808d1
|
/SLDR/rec_surface.h
|
515ebba2b7bcf84087ca9cecc4a752a4a1fb8d74
|
[] |
no_license
|
15831944/CurveReconstruction
|
9b8efccd8c80bf5241d62e50321f4a5876c284f7
|
6ff5a5e0da619fa20cf0f4d3034ff5e25597abfe
|
refs/heads/master
| 2023-03-17T00:58:46.511943
| 2017-03-17T08:09:47
| 2017-03-17T08:09:47
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 331
|
h
|
rec_surface.h
|
#pragma once
#include <vector>
class CP_Face;
class CP_Body;
class CP_GeneralPolygon2D;
namespace rec_surface {
void ReconstructNurbsSurf(CP_Face *pFace);
void ReconstructCoonsSurf(CP_Face *pFace);
void CreateMesh(CP_Face *pFace);
void InitGeneralPoly(CP_GeneralPolygon2D &poly, CP_Face *pFace, std::vector<double> &depth);
}
|
529ffe98355f5cfb66d6c975fdd1b66bd0a79a42
|
344e16f09b54902e65f8631aff8e61ad0e95378a
|
/GoogleKickStart/Round G 2019/book_reading.cpp
|
ba88f3032902c6309d4451295e54180a4be7a7d4
|
[] |
no_license
|
Edwinl777/contest-questions
|
90a4b5d82528bf2ae14de0a298a9e05283b8213b
|
fff6f370f987684ea6e65668d1b44232afbdc6e1
|
refs/heads/master
| 2023-02-28T11:23:54.297693
| 2021-02-10T00:41:28
| 2021-02-10T00:41:28
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,547
|
cpp
|
book_reading.cpp
|
#include <iostream>
#include <iomanip>
#include <cassert>
#include <cmath>
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <unordered_map>
#include <unordered_set>
#include <queue>
#include <stack>
#include <vector>
#include <algorithm>
using namespace std;
#define pb push_back
#define fast_cin() ios_base::sync_with_stdio(false); cin.tie(NULL)
typedef long long ll;
typedef long double ld;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
// CONSTANTS GO UNDER HERE
// LESSONS LEARNED:
// store every computation to a map
// True is a 1 and False is a 0 (supports addition)
int main()
{
fast_cin();
int t;
cin >> t;
return 0;
for (int i = 1; i <= t; i++)
{
int n, m, q;
unordered_set<int> torn_out_set;
unordered_map<int, int> duplicate_reader;
cin >> n >> m >> q;
for (int j = 0; j < m; j++)
{
int page;
cin >> page;
torn_out_set.insert(page - 1);
}
ll pages_read = 0;
for (int r = 0; r < q; r++)
{
int reader;
cin >> reader;
if (!duplicate_reader.count(reader))
{
duplicate_reader[reader] = 0;
for (int pr = reader - 1; pr < n; pr += reader)
{
duplicate_reader[reader] += !torn_out_set.count(pr);
}
}
pages_read += duplicate_reader[reader];
}
cout << "Case #" << i << ": " << pages_read << '\n';
}
}
|
b3e3e23d1ceed3fe580f7bc73656fa29c29286f0
|
7d5ab12afa98390e714faa9cfd8c6bfe0ab505f8
|
/include/CppUtil/RTX/OpTexture.h
|
f14b4a1dfb077e84f88ec809af9f99d5027753b4
|
[
"MIT"
] |
permissive
|
huangx916/RenderLab
|
6199b0a4bc44cbae5b28291f999484eedec7de87
|
a0059705d5694146bbe51442e0cabdcbcd750fe7
|
refs/heads/master
| 2020-07-21T21:46:31.215327
| 2019-09-07T09:47:02
| 2019-09-07T09:47:02
| 206,981,200
| 1
| 0
|
MIT
| 2019-09-07T14:40:54
| 2019-09-07T14:40:54
| null |
UTF-8
|
C++
| false
| false
| 854
|
h
|
OpTexture.h
|
#ifndef _RTX_RT_TEXTURE_OP_TEXTURE_H_
#define _RTX_RT_TEXTURE_OP_TEXTURE_H_
#include <CppUtil/RTX/Texture.h>
#include <functional>
namespace RTX {
class OpTexture : public Texture {
TEXTURE_SETUP(OpTexture)
public:
OpTexture(const std::function<glm::vec3(float u, float v, const glm::vec3 & p)> & op);
virtual glm::vec3 Value(float u = 0, float v = 0, const glm::vec3 & p = glm::vec3(0)) const;
static const Texture::CPtr ConstantTexture(const glm::vec3 & color);
static const Texture::CPtr CheckerTexture(const glm::vec3 & color0, const glm::vec3 & color1, float scale = 10.0f);
static const Texture::CPtr NoiseTexture(size_t mode = 0, const glm::vec3 & color = glm::vec3(1), float scale = 10.0f);
protected:
const std::function<glm::vec3(float u, float v, const glm::vec3 & p)> op;
};
}
#endif // !_RTX_RT_TEXTURE_OP_TEXTURE_H_
|
73a301831b9de3caec171c5abea92751782b7bcc
|
31c31345946b3526ffe3f1eafbc9dd7cdb48e03a
|
/Contests/2019 ICPC Malaysia National/E.cpp
|
5e04e2e517aefc1cd28b097db0b7b6fda95d9be0
|
[] |
no_license
|
felipefoschiera/Competitive-Programming
|
84967cb7c6b82df5990cccea5d5b6862b9e63f65
|
fe664046d0161fd6a15d4b8d8f983e77c6dc3dcb
|
refs/heads/master
| 2022-02-23T16:07:04.326089
| 2019-10-04T19:22:22
| 2019-10-04T19:22:22
| 198,893,046
| 0
| 0
| null | 2019-07-25T19:53:36
| 2019-07-25T19:53:36
| null |
UTF-8
|
C++
| false
| false
| 1,152
|
cpp
|
E.cpp
|
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int v[60];
int t, n;
int pd[60][500];
typedef long long ll;
int melhor, diff;
ll bitmaskres;
int solve(int idx, int time, ll bitmask){
if(melhor != -1 && bitmaskres == -1 && time == diff){
bitmaskres = bitmask;
}
if(idx == n) return 0;
if(pd[idx][time] != -1)
return pd[idx][time];
int res = 0;
if(time - v[idx] >= 0)
res = max(res, v[idx] + solve(idx+1, time - v[idx], bitmask | (1LL << idx)));
res = max(res, solve(idx+1, time, bitmask));
return pd[idx][time] = res;
}
int main(){
while(scanf("%d", &t), t != 0){
scanf("%d", &n);
for(int i = 0; i < n; i++)
scanf("%d", &v[i]);
melhor = -1;
memset(pd, -1, sizeof pd);
int soma = solve(0, t, 0LL);
melhor = soma;
bitmaskres = -1;
diff = abs(t - melhor);
memset(pd, -1, sizeof pd);
solve(0, t, 0LL);
for(int i = 0; i < n; i++){
if(bitmaskres & (1LL << i))
printf("%d ", v[i]);
}
printf("%d\n", soma);
}
return 0;
}
|
565d4bc9b3df82f16fbd3392dd63ad92a4a8d78c
|
48e9625fcc35e6bf790aa5d881151906280a3554
|
/Sources/Elastos/LibCore/src/org/apache/harmony/security/x509/CCertificatePolicies.cpp
|
8e08bd728c8e484647b284828d3313822f428609
|
[
"Apache-2.0"
] |
permissive
|
suchto/ElastosRT
|
f3d7e163d61fe25517846add777690891aa5da2f
|
8a542a1d70aebee3dbc31341b7e36d8526258849
|
refs/heads/master
| 2021-01-22T20:07:56.627811
| 2017-03-17T02:37:51
| 2017-03-17T02:37:51
| 85,281,630
| 4
| 2
| null | 2017-03-17T07:08:49
| 2017-03-17T07:08:49
| null |
UTF-8
|
C++
| false
| false
| 5,727
|
cpp
|
CCertificatePolicies.cpp
|
//=========================================================================
// Copyright (C) 2012 The Elastos Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//=========================================================================
#include "org/apache/harmony/security/x509/CCertificatePolicies.h"
#include "org/apache/harmony/security/x509/CPolicyInformation.h"
#include "org/apache/harmony/security/asn1/ASN1Type.h"
#include "Elastos.CoreLibrary.Utility.h"
#include <elastos/core/CoreUtils.h>
#include <elastos/core/StringBuilder.h>
#include "elastos/utility/CArrayList.h"
#include "core/CArrayOf.h"
#include "core/CByte.h"
using Org::Apache::Harmony::Security::Asn1::ASN1Type;
using Org::Apache::Harmony::Security::Asn1::IASN1Type;
using Elastos::Core::IArrayOf;
using Elastos::Core::CArrayOf;
using Elastos::Core::IByte;
using Elastos::Core::CByte;
using Elastos::Core::CoreUtils;
using Elastos::Core::StringBuilder;
using Elastos::Core::EIID_IStringBuilder;
using Elastos::Utility::CArrayList;
namespace Org {
namespace Apache {
namespace Harmony {
namespace Security {
namespace X509 {
ECode CCertificatePolicies::MyASN1SequenceOf::GetDecodedObject(
/* [in] */ IBerInputStream* bis,
/* [out] */ IInterface** object)
{
VALIDATE_NOT_NULL(object);
AutoPtr<IInterface> con;
bis->GetContent((IInterface**)&con);
AutoPtr<ArrayOf<Byte> > array;
bis->GetEncoded((ArrayOf<Byte>**)&array);
AutoPtr<ICertificatePolicies> policies;
CCertificatePolicies::New(IList::Probe(con), array, (ICertificatePolicies**)&policies);
*object = policies.Get();
REFCOUNT_ADD(*object );
return NOERROR;
}
ECode CCertificatePolicies::MyASN1SequenceOf::GetValues(
/* [in] */ IInterface* object,
/* [out] */ ICollection** coll)
{
CCertificatePolicies* cps = (CCertificatePolicies*)ICertificatePolicies::Probe(object);
*coll = ICollection::Probe(cps->mPolicyInformations);
REFCOUNT_ADD(*coll);
return NOERROR;
}
AutoPtr<IASN1Type> CCertificatePolicies::initASN1()
{
AutoPtr<ASN1SequenceOf> seq = new MyASN1SequenceOf();
seq->constructor(IASN1Type::Probe(CPolicyInformation::ASN1));
return IASN1Type::Probe(seq);
}
INIT_PROI_5 AutoPtr<IASN1Type> CCertificatePolicies::ASN1 = initASN1();
CAR_OBJECT_IMPL(CCertificatePolicies)
CAR_INTERFACE_IMPL(CCertificatePolicies, ExtensionValue, ICertificatePolicies)
ECode CCertificatePolicies::GetEncoded(
/* [out, callee] */ ArrayOf<Byte>** ppEncode)
{
VALIDATE_NOT_NULL(ppEncode)
if (mEncoding == NULL) {
ASN1->Encode(TO_IINTERFACE(this), (ArrayOf<Byte>**)&mEncoding);
}
*ppEncode = mEncoding;
REFCOUNT_ADD(*ppEncode);
return NOERROR;
}
ECode CCertificatePolicies::DumpValue(
/* [in] */ IStringBuilder* sb,
/* [in] */ const String& prefix)
{
sb->Append(prefix);
sb->Append(String("CertificatePolicies [\n"));
Int32 size;
mPolicyInformations->GetSize(&size);
for (Int32 i = 0; i < size; i++) {
AutoPtr<IInterface> obj;
mPolicyInformations->Get(i, (IInterface**)&obj);
AutoPtr<IPolicyInformation> policyInformation = IPolicyInformation::Probe(obj);
sb->Append(prefix);
sb->Append(String(" "));
policyInformation->DumpValue((IStringBuilder*)sb->Probe(EIID_IStringBuilder));
sb->Append('\n');
}
sb->Append(prefix);
sb->Append(String("]\n"));
return NOERROR;
}
ECode CCertificatePolicies::GetPolicyInformations(
/* [out] */ IList** ppInfomations)
{
VALIDATE_NOT_NULL(ppInfomations)
AutoPtr<IList> list;
CArrayList::New(ICollection::Probe(mPolicyInformations), (IList**)&list);
*ppInfomations = list;
REFCOUNT_ADD(*ppInfomations);
return NOERROR;
}
ECode CCertificatePolicies::AddPolicyInformation(
/* [in] */ IPolicyInformation* pPolicyInformation)
{
mEncoding = NULL;
if (mPolicyInformations == NULL) {
CArrayList::New((IList**)&mPolicyInformations);
}
mPolicyInformations->Add(TO_IINTERFACE(pPolicyInformation));
return NOERROR;
}
ECode CCertificatePolicies::constructor()
{
return NOERROR;
}
ECode CCertificatePolicies::constructor(
/* [in] */ IList* policyInformations,
/* [in] */ ArrayOf<Byte>* encoding)
{
mPolicyInformations = policyInformations;
mEncoding = encoding;
return NOERROR;
}
ECode CCertificatePolicies::Decode(
/* [in] */ ArrayOf<Byte>* encoding,
/* [out] */ ICertificatePolicies** ppPolicies)
{
VALIDATE_NOT_NULL(ppPolicies)
AutoPtr<IInterface> obj;
ASN1->Decode(encoding, (IInterface**)&obj);
CCertificatePolicies* cps = (CCertificatePolicies*)ICertificatePolicies::Probe(obj);
cps->mEncoding = encoding;
*ppPolicies = ICertificatePolicies::Probe(cps);
REFCOUNT_ADD(*ppPolicies);
return NOERROR;
}
ECode CCertificatePolicies::GetASN1(
/* [out] */ IASN1Type** ppAsn1)
{
VALIDATE_NOT_NULL(ppAsn1);
*ppAsn1 = ASN1;
REFCOUNT_ADD(*ppAsn1);
return NOERROR;
}
ECode CCertificatePolicies::SetASN1(
/* [in] */ IASN1Type* pAsn1)
{
ASN1 = pAsn1;
return NOERROR;
}
} // namespace X509
} // namespace Security
} // namespace Harmony
} // namespace Apache
} // namespace Org
|
406a1a4155faaffdf269b3e333602cb2bdb4e749
|
147b137610a44128488cf924c91f30a6f68e89be
|
/cpp/src/hub/solver/py_mcts.cc
|
228aa59c2a9f46b1e3ab7dd2d5d0ee82615ebffa
|
[
"MIT"
] |
permissive
|
LinHuanli/bug-free-invention
|
da89c49f3067aa7f9d7cc6583310b4800622be96
|
37bcea112da39d1390ff2b30951b36ee5dbc0e6d
|
refs/heads/master
| 2023-03-18T20:42:29.551536
| 2021-02-14T06:37:22
| 2021-02-14T06:37:22
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 47,416
|
cc
|
py_mcts.cc
|
/* Copyright (c) AIRBUS and its affiliates.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#include <pybind11/pybind11.h>
#include <pybind11/functional.h>
#include <pybind11/iostream.h>
#include "mcts.hh"
#include "core.hh"
#include "utils/python_gil_control.hh"
#include "utils/python_hash_eq.hh"
#include "utils/python_domain_adapter.hh"
namespace py = pybind11;
struct PyMCTSOptions {
enum class TransitionMode {
Step,
Sample,
Distribution
};
enum class TreePolicy {
Default
};
enum class Expander {
Full
};
enum class ActionSelector {
UCB1,
BestQValue
};
enum class RolloutPolicy {
Random,
Custom
};
enum class BackPropagator {
Graph
};
};
template <typename Texecution>
class PyMCTSDomain : public skdecide::PythonDomainAdapter<Texecution> {
public :
template <typename Tsolver, typename TtransitionMode,
std::enable_if_t<std::is_same<TtransitionMode, skdecide::StepTransitionMode<Tsolver>>::value, int> = 0>
PyMCTSDomain(const py::object& domain, [[maybe_unused]] Tsolver* dummy_solver, [[maybe_unused]] TtransitionMode* dummy_transition_mode)
: skdecide::PythonDomainAdapter<Texecution>(domain) {
if (!py::hasattr(domain, "get_applicable_actions")) {
throw std::invalid_argument("SKDECIDE exception: MCTS algorithm needs python domain for implementing get_applicable_actions()");
}
if (!py::hasattr(domain, "step")) {
throw std::invalid_argument("SKDECIDE exception: MCTS algorithm with step transition mode needs python domain for implementing step()");
}
}
template <typename Tsolver, typename TtransitionMode,
std::enable_if_t<std::is_same<TtransitionMode, skdecide::SampleTransitionMode<Tsolver>>::value, int> = 0>
PyMCTSDomain(const py::object& domain, [[maybe_unused]] Tsolver* dummy_solver, [[maybe_unused]] TtransitionMode* dummy_transition_mode)
: skdecide::PythonDomainAdapter<Texecution>(domain) {
if (!py::hasattr(domain, "get_applicable_actions")) {
throw std::invalid_argument("SKDECIDE exception: MCTS algorithm needs python domain for implementing get_applicable_actions()");
}
if (!py::hasattr(domain, "sample")) {
throw std::invalid_argument("SKDECIDE exception: MCTS algorithm with sample or distribution transition mode needs python domain for implementing sample()");
}
}
template <typename Tsolver, typename TtransitionMode,
std::enable_if_t<std::is_same<TtransitionMode, skdecide::DistributionTransitionMode<Tsolver>>::value, int> = 0>
PyMCTSDomain(const py::object& domain, [[maybe_unused]] Tsolver* dummy_solver, [[maybe_unused]] TtransitionMode* dummy_transition_mode)
: skdecide::PythonDomainAdapter<Texecution>(domain) {
if (!py::hasattr(domain, "get_applicable_actions")) {
throw std::invalid_argument("SKDECIDE exception: MCTS algorithm needs python domain for implementing get_applicable_actions()");
}
if (!py::hasattr(domain, "sample")) {
throw std::invalid_argument("SKDECIDE exception: MCTS algorithm with sample or distribution transition mode needs python domain for implementing sample()");
}
if (!py::hasattr(domain, "get_next_state_distribution")) {
throw std::invalid_argument("SKDECIDE exception: MCTS algorithm with distribution transition mode needs python domain for implementing get_next_state_distribution()");
}
if (!py::hasattr(domain, "get_transition_value")) {
throw std::invalid_argument("SKDECIDE exception: MCTS algorithm with distribution transition mode needs python domain for implementing get_transition_value()");
}
if (!py::hasattr(domain, "is_terminal")) {
throw std::invalid_argument("SKDECIDE exception: MCTS algorithm with distribution transition mode needs python domain for implementing is_terminal()");
}
}
};
class PyMCTSSolver {
public :
typedef std::function<py::object (py::object&, const py::object&, const py::object&)> CustomPolicyFunctor;
typedef std::function<py::object (py::object&, const py::object&, const py::object&)> HeuristicFunctor;
PyMCTSSolver(py::object& domain,
std::size_t time_budget = 3600000,
std::size_t rollout_budget = 100000,
std::size_t max_depth = 1000,
double discount = 1.0,
bool uct_mode = true,
double ucb_constant = 1.0 / std::sqrt(2.0),
bool online_node_garbage = false,
const CustomPolicyFunctor& custom_policy = nullptr,
const HeuristicFunctor& heuristic = nullptr,
PyMCTSOptions::TransitionMode transition_mode = PyMCTSOptions::TransitionMode::Distribution,
PyMCTSOptions::TreePolicy tree_policy = PyMCTSOptions::TreePolicy::Default,
PyMCTSOptions::Expander expander = PyMCTSOptions::Expander::Full,
PyMCTSOptions::ActionSelector action_selector_optimization = PyMCTSOptions::ActionSelector::UCB1,
PyMCTSOptions::ActionSelector action_selector_execution = PyMCTSOptions::ActionSelector::BestQValue,
PyMCTSOptions::RolloutPolicy rollout_policy = PyMCTSOptions::RolloutPolicy::Random,
PyMCTSOptions::BackPropagator back_propagator = PyMCTSOptions::BackPropagator::Graph,
bool parallel = false,
bool debug_logs = false) {
if (uct_mode) {
initialize_transition_mode(domain,
time_budget,
rollout_budget,
max_depth,
discount,
ucb_constant,
online_node_garbage,
custom_policy,
heuristic,
transition_mode,
PyMCTSOptions::TreePolicy::Default,
expander,
PyMCTSOptions::ActionSelector::UCB1,
action_selector_execution,
PyMCTSOptions::RolloutPolicy::Random,
PyMCTSOptions::BackPropagator::Graph,
parallel,
debug_logs);
} else {
initialize_transition_mode(domain,
time_budget,
rollout_budget,
max_depth,
discount,
ucb_constant,
online_node_garbage,
custom_policy,
heuristic,
transition_mode,
tree_policy,
expander,
action_selector_optimization,
action_selector_execution,
rollout_policy,
back_propagator,
parallel,
debug_logs);
}
}
void clear() {
_implementation->clear();
}
void solve(const py::object& s) {
_implementation->solve(s);
}
py::bool_ is_solution_defined_for(const py::object& s) {
return _implementation->is_solution_defined_for(s);
}
py::object get_next_action(const py::object& s) {
return _implementation->get_next_action(s);
}
py::float_ get_utility(const py::object& s) {
return _implementation->get_utility(s);
}
py::int_ get_nb_of_explored_states() {
return _implementation->get_nb_of_explored_states();
}
py::int_ get_nb_rollouts() {
return _implementation->get_nb_rollouts();
}
py::dict get_policy() {
return _implementation->get_policy();
}
py::list get_action_prefix() {
return _implementation->get_action_prefix();
}
private :
class BaseImplementation {
public :
virtual ~BaseImplementation() {}
virtual void clear() =0;
virtual void solve(const py::object& s) =0;
virtual py::bool_ is_solution_defined_for(const py::object& s) =0;
virtual py::object get_next_action(const py::object& s) =0;
virtual py::float_ get_utility(const py::object& s) =0;
virtual py::int_ get_nb_of_explored_states() =0;
virtual py::int_ get_nb_rollouts() =0;
virtual py::dict get_policy() =0;
virtual py::list get_action_prefix() =0;
};
template <typename Texecution,
template <typename Tsolver> class TtransitionMode,
template <typename Tsolver> class TtreePolicy,
template <typename Tsolver> class Texpander,
template <typename Tsolver> class TactionSelectorOptimization,
template <typename Tsolver> class TactionSelectorExecution,
template <typename Tsolver> class TrolloutPolicy,
template <typename Tsolver> class TbackPropagator>
class Implementation : public BaseImplementation {
public :
typedef skdecide::MCTSSolver<PyMCTSDomain<Texecution>, Texecution,
TtransitionMode, TtreePolicy, Texpander,
TactionSelectorOptimization, TactionSelectorExecution,
TrolloutPolicy, TbackPropagator> PyMCTSSolver;
Implementation(py::object& domain,
std::size_t time_budget,
std::size_t rollout_budget,
std::size_t max_depth,
double discount,
double ucb_constant,
bool online_node_garbage,
const CustomPolicyFunctor& custom_policy,
const HeuristicFunctor& heuristic,
bool debug_logs)
: _custom_policy(custom_policy),
_heuristic(heuristic) {
_domain = std::make_unique<PyMCTSDomain<Texecution>>(domain, (PyMCTSSolver*) nullptr, (TtransitionMode<PyMCTSSolver>*) nullptr);
_solver = std::make_unique<PyMCTSSolver>(
*_domain,
time_budget,
rollout_budget,
max_depth,
discount,
online_node_garbage,
debug_logs,
init_tree_policy(),
init_expander(_heuristic),
init_action_selector((TactionSelectorOptimization<PyMCTSSolver>*) nullptr, ucb_constant),
init_action_selector((TactionSelectorExecution<PyMCTSSolver>*) nullptr, ucb_constant),
init_rollout_policy(_custom_policy),
init_back_propagator());
_stdout_redirect = std::make_unique<py::scoped_ostream_redirect>(std::cout,
py::module::import("sys").attr("stdout"));
_stderr_redirect = std::make_unique<py::scoped_estream_redirect>(std::cerr,
py::module::import("sys").attr("stderr"));
}
virtual ~Implementation() {}
std::unique_ptr<TtreePolicy<PyMCTSSolver>> init_tree_policy() {
return std::make_unique<TtreePolicy<PyMCTSSolver>>();
}
std::unique_ptr<Texpander<PyMCTSSolver>> init_expander(const HeuristicFunctor& heuristic) {
if (!heuristic) { // initialize new nodes with 0 value and 0 visits count
return std::make_unique<Texpander<PyMCTSSolver>>();
} else {
return std::make_unique<Texpander<PyMCTSSolver>>([&heuristic](
PyMCTSDomain<Texecution>& d,
const typename PyMCTSDomain<Texecution>::State& s,
const std::size_t* thread_id) -> std::pair<double, std::size_t> {
try {
std::unique_ptr<py::object> r = d.call(thread_id, heuristic, s.pyobj());
typename skdecide::GilControl<Texecution>::Acquire acquire;
std::pair<double, std::size_t> rr = r->template cast<std::pair<double, std::size_t>>();
r.reset();
return rr;
} catch (const std::exception& e) {
spdlog::error(std::string("SKDECIDE exception when calling the custom heuristic: ") + e.what());
throw;
}
});
}
}
template <typename TactionSelector,
std::enable_if_t<std::is_same<TactionSelector, skdecide::UCB1ActionSelector<PyMCTSSolver>>::value, int> = 0>
std::unique_ptr<TactionSelector> init_action_selector(TactionSelector* dummy, double ucb_constant) {
return std::make_unique<skdecide::UCB1ActionSelector<PyMCTSSolver>>(ucb_constant);
}
template <typename TactionSelector,
std::enable_if_t<std::is_same<TactionSelector, skdecide::BestQValueActionSelector<PyMCTSSolver>>::value, int> = 0>
std::unique_ptr<TactionSelector> init_action_selector(TactionSelector* dummy, double ucb_constant) {
return std::make_unique<skdecide::BestQValueActionSelector<PyMCTSSolver>>();
}
std::unique_ptr<TrolloutPolicy<PyMCTSSolver>> init_rollout_policy(const CustomPolicyFunctor& custom_policy) {
if (!custom_policy) { // use random rollout policy
return std::make_unique<TrolloutPolicy<PyMCTSSolver>>();
} else {
return std::make_unique<TrolloutPolicy<PyMCTSSolver>>([&custom_policy](
PyMCTSDomain<Texecution>& d,
const typename PyMCTSDomain<Texecution>::State& s,
const std::size_t* thread_id) -> typename PyMCTSDomain<Texecution>::Action {
try {
return typename PyMCTSDomain<Texecution>::Action(d.call(thread_id, custom_policy, s.pyobj()));
} catch (const std::exception& e) {
spdlog::error(std::string("SKDECIDE exception when calling the custom rollout policy: ") + e.what());
throw;
}
});
}
}
std::unique_ptr<TbackPropagator<PyMCTSSolver>> init_back_propagator() {
return std::make_unique<TbackPropagator<PyMCTSSolver>>();
}
virtual void clear() {
_solver->clear();
}
virtual void solve(const py::object& s) {
typename skdecide::GilControl<Texecution>::Release release;
_solver->solve(s);
}
virtual py::bool_ is_solution_defined_for(const py::object& s) {
return _solver->is_solution_defined_for(s);
}
virtual py::object get_next_action(const py::object& s) {
return _solver->get_best_action(s).pyobj();
}
virtual py::float_ get_utility(const py::object& s) {
return _solver->get_best_value(s);
}
virtual py::int_ get_nb_of_explored_states() {
return _solver->nb_of_explored_states();
}
virtual py::int_ get_nb_rollouts() {
return _solver->nb_rollouts();
}
virtual py::dict get_policy() {
py::dict d;
auto&& p = _solver->policy();
for (auto& e : p) {
d[e.first.pyobj()] = py::make_tuple(e.second.first.pyobj(), e.second.second);
}
return d;
}
virtual py::list get_action_prefix() {
py::list l;
const auto& ll = _solver->action_prefix();
for (const auto& e : ll) {
l.append(e);
}
return l;
}
private :
std::unique_ptr<PyMCTSDomain<Texecution>> _domain;
std::unique_ptr<PyMCTSSolver> _solver;
CustomPolicyFunctor _custom_policy;
HeuristicFunctor _heuristic;
std::unique_ptr<py::scoped_ostream_redirect> _stdout_redirect;
std::unique_ptr<py::scoped_estream_redirect> _stderr_redirect;
};
std::unique_ptr<BaseImplementation> _implementation;
void initialize_transition_mode(
py::object& domain,
std::size_t time_budget,
std::size_t rollout_budget,
std::size_t max_depth,
double discount,
double ucb_constant,
bool online_node_garbage,
const CustomPolicyFunctor& custom_policy,
const HeuristicFunctor& heuristic,
PyMCTSOptions::TransitionMode transition_mode,
PyMCTSOptions::TreePolicy tree_policy,
PyMCTSOptions::Expander expander,
PyMCTSOptions::ActionSelector action_selector_optimization,
PyMCTSOptions::ActionSelector action_selector_execution,
PyMCTSOptions::RolloutPolicy rollout_policy,
PyMCTSOptions::BackPropagator back_propagator,
bool parallel,
bool debug_logs) {
switch (transition_mode) {
case PyMCTSOptions::TransitionMode::Step:
initialize_tree_policy<skdecide::StepTransitionMode>(
domain,
time_budget,
rollout_budget,
max_depth,
discount,
ucb_constant,
online_node_garbage,
custom_policy,
heuristic,
tree_policy,
expander,
action_selector_optimization,
action_selector_execution,
rollout_policy,
back_propagator,
parallel,
debug_logs);
break;
case PyMCTSOptions::TransitionMode::Sample:
initialize_tree_policy<skdecide::SampleTransitionMode>(
domain,
time_budget,
rollout_budget,
max_depth,
discount,
ucb_constant,
online_node_garbage,
custom_policy,
heuristic,
tree_policy,
expander,
action_selector_optimization,
action_selector_execution,
rollout_policy,
back_propagator,
parallel,
debug_logs);
break;
case PyMCTSOptions::TransitionMode::Distribution:
initialize_tree_policy<skdecide::DistributionTransitionMode>(
domain,
time_budget,
rollout_budget,
max_depth,
discount,
ucb_constant,
online_node_garbage,
custom_policy,
heuristic,
tree_policy,
expander,
action_selector_optimization,
action_selector_execution,
rollout_policy,
back_propagator,
parallel,
debug_logs);
break;
default:
spdlog::error("Available transition modes: TransitionMode.Step , TransitionMode.Sample , TransitionMode.Distribution");
throw std::runtime_error("Available transition modes: TransitionMode.Step , TransitionMode.Sample , TransitionMode.Distribution");
}
}
template <template <typename Tsolver> class TtransitionMode>
void initialize_tree_policy(
py::object& domain,
std::size_t time_budget,
std::size_t rollout_budget,
std::size_t max_depth,
double discount,
double ucb_constant,
bool online_node_garbage,
const CustomPolicyFunctor& custom_policy,
const HeuristicFunctor& heuristic,
PyMCTSOptions::TreePolicy tree_policy,
PyMCTSOptions::Expander expander,
PyMCTSOptions::ActionSelector action_selector_optimization,
PyMCTSOptions::ActionSelector action_selector_execution,
PyMCTSOptions::RolloutPolicy rollout_policy,
PyMCTSOptions::BackPropagator back_propagator,
bool parallel,
bool debug_logs) {
switch (tree_policy) {
case PyMCTSOptions::TreePolicy::Default:
initialize_expander<TtransitionMode,
skdecide::DefaultTreePolicy>(
domain,
time_budget,
rollout_budget,
max_depth,
discount,
ucb_constant,
online_node_garbage,
custom_policy,
heuristic,
expander,
action_selector_optimization,
action_selector_execution,
rollout_policy,
back_propagator,
parallel,
debug_logs);
break;
default:
spdlog::error("Available tree policies: TreePolicy.Default");
throw std::runtime_error("Available tree policies: TreePolicy.Default");
}
}
template <template <typename Tsolver> class TtransitionMode,
template <typename Tsolver> class TtreePolicy>
void initialize_expander(
py::object& domain,
std::size_t time_budget,
std::size_t rollout_budget,
std::size_t max_depth,
double discount,
double ucb_constant,
bool online_node_garbage,
const CustomPolicyFunctor& custom_policy,
const HeuristicFunctor& heuristic,
PyMCTSOptions::Expander expander,
PyMCTSOptions::ActionSelector action_selector_optimization,
PyMCTSOptions::ActionSelector action_selector_execution,
PyMCTSOptions::RolloutPolicy rollout_policy,
PyMCTSOptions::BackPropagator back_propagator,
bool parallel,
bool debug_logs) {
switch (expander) {
case PyMCTSOptions::Expander::Full:
initialize_action_selector_optimization<TtransitionMode,
TtreePolicy,
skdecide::FullExpand>(
domain,
time_budget,
rollout_budget,
max_depth,
discount,
ucb_constant,
online_node_garbage,
custom_policy,
heuristic,
action_selector_optimization,
action_selector_execution,
rollout_policy,
back_propagator,
parallel,
debug_logs);
break;
default:
spdlog::error("Available expanders: Expander.Full");
throw std::runtime_error("Available expanders: Expander.Full");
}
}
template <template <typename Tsolver> class TtransitionMode,
template <typename Tsolver> class TtreePolicy,
template <typename Tsolver> class Texpander>
void initialize_action_selector_optimization(
py::object& domain,
std::size_t time_budget,
std::size_t rollout_budget,
std::size_t max_depth,
double discount,
double ucb_constant,
bool online_node_garbage,
const CustomPolicyFunctor& custom_policy,
const HeuristicFunctor& heuristic,
PyMCTSOptions::ActionSelector action_selector_optimization,
PyMCTSOptions::ActionSelector action_selector_execution,
PyMCTSOptions::RolloutPolicy rollout_policy,
PyMCTSOptions::BackPropagator back_propagator,
bool parallel,
bool debug_logs) {
switch (action_selector_optimization) {
case PyMCTSOptions::ActionSelector::UCB1:
initialize_action_selector_execution<TtransitionMode,
TtreePolicy,
Texpander,
skdecide::UCB1ActionSelector>(
domain,
time_budget,
rollout_budget,
max_depth,
discount,
ucb_constant,
online_node_garbage,
custom_policy,
heuristic,
action_selector_execution,
rollout_policy,
back_propagator,
parallel,
debug_logs);
break;
case PyMCTSOptions::ActionSelector::BestQValue:
initialize_action_selector_execution<TtransitionMode,
TtreePolicy,
Texpander,
skdecide::BestQValueActionSelector>(
domain,
time_budget,
rollout_budget,
max_depth,
discount,
ucb_constant,
online_node_garbage,
custom_policy,
heuristic,
action_selector_execution,
rollout_policy,
back_propagator,
parallel,
debug_logs);
break;
default:
spdlog::error("Available action selector: ActionSelector.UCB1 , ActionSelector.BestQValue");
throw std::runtime_error("Available action selector: ActionSelector.UCB1 , ActionSelector.BestQValue");
}
}
template <template <typename Tsolver> class TtransitionMode,
template <typename Tsolver> class TtreePolicy,
template <typename Tsolver> class Texpander,
template <typename Tsolver> class TactionSelectorOptimization>
void initialize_action_selector_execution(
py::object& domain,
std::size_t time_budget,
std::size_t rollout_budget,
std::size_t max_depth,
double discount,
double ucb_constant,
bool online_node_garbage,
const CustomPolicyFunctor& custom_policy,
const HeuristicFunctor& heuristic,
PyMCTSOptions::ActionSelector action_selector_execution,
PyMCTSOptions::RolloutPolicy rollout_policy,
PyMCTSOptions::BackPropagator back_propagator,
bool parallel,
bool debug_logs) {
switch (action_selector_execution) {
case PyMCTSOptions::ActionSelector::UCB1:
initialize_rollout_policy<TtransitionMode,
TtreePolicy,
Texpander,
TactionSelectorOptimization,
skdecide::UCB1ActionSelector>(
domain,
time_budget,
rollout_budget,
max_depth,
discount,
ucb_constant,
online_node_garbage,
custom_policy,
heuristic,
rollout_policy,
back_propagator,
parallel,
debug_logs);
break;
case PyMCTSOptions::ActionSelector::BestQValue:
initialize_rollout_policy<TtransitionMode,
TtreePolicy,
Texpander,
TactionSelectorOptimization,
skdecide::BestQValueActionSelector>(
domain,
time_budget,
rollout_budget,
max_depth,
discount,
ucb_constant,
online_node_garbage,
custom_policy,
heuristic,
rollout_policy,
back_propagator,
parallel,
debug_logs);
break;
default:
spdlog::error("Available action selector: ActionSelector.UCB1 , ActionSelector.BestQValue");
throw std::runtime_error("Available action selector: ActionSelector.UCB1 , ActionSelector.BestQValue");
}
}
template <template <typename Tsolver> class TtransitionMode,
template <typename Tsolver> class TtreePolicy,
template <typename Tsolver> class Texpander,
template <typename Tsolver> class TactionSelectorOptimization,
template <typename Tsolver> class TactionSelectorExecution>
void initialize_rollout_policy(
py::object& domain,
std::size_t time_budget,
std::size_t rollout_budget,
std::size_t max_depth,
double discount,
double ucb_constant,
bool online_node_garbage,
const CustomPolicyFunctor& custom_policy,
const HeuristicFunctor& heuristic,
PyMCTSOptions::RolloutPolicy rollout_policy,
PyMCTSOptions::BackPropagator back_propagator,
bool parallel,
bool debug_logs) {
switch (rollout_policy) {
case PyMCTSOptions::RolloutPolicy::Random:
initialize_back_propagator<TtransitionMode,
TtreePolicy,
Texpander,
TactionSelectorOptimization,
TactionSelectorExecution,
skdecide::DefaultRolloutPolicy>(
domain,
time_budget,
rollout_budget,
max_depth,
discount,
ucb_constant,
online_node_garbage,
nullptr,
heuristic,
back_propagator,
parallel,
debug_logs);
break;
case PyMCTSOptions::RolloutPolicy::Custom:
initialize_back_propagator<TtransitionMode,
TtreePolicy,
Texpander,
TactionSelectorOptimization,
TactionSelectorExecution,
skdecide::DefaultRolloutPolicy>(
domain,
time_budget,
rollout_budget,
max_depth,
discount,
ucb_constant,
online_node_garbage,
custom_policy,
heuristic,
back_propagator,
parallel,
debug_logs);
break;
default:
spdlog::error("Available default policies: RolloutPolicy.Random");
throw std::runtime_error("Available default policies: RolloutPolicy.Random");
}
}
template <template <typename Tsolver> class TtransitionMode,
template <typename Tsolver> class TtreePolicy,
template <typename Tsolver> class Texpander,
template <typename Tsolver> class TactionSelectorOptimization,
template <typename Tsolver> class TactionSelectorExecution,
template <typename Tsolver> class TrolloutPolicy>
void initialize_back_propagator(
py::object& domain,
std::size_t time_budget,
std::size_t rollout_budget,
std::size_t max_depth,
double discount,
double ucb_constant,
bool online_node_garbage,
const CustomPolicyFunctor& custom_policy,
const HeuristicFunctor& heuristic,
PyMCTSOptions::BackPropagator back_propagator,
bool parallel,
bool debug_logs) {
switch (back_propagator) {
case PyMCTSOptions::BackPropagator::Graph:
initialize_execution<TtransitionMode,
TtreePolicy,
Texpander,
TactionSelectorOptimization,
TactionSelectorExecution,
TrolloutPolicy,
skdecide::GraphBackup>(
domain,
time_budget,
rollout_budget,
max_depth,
discount,
ucb_constant,
online_node_garbage,
custom_policy,
heuristic,
parallel,
debug_logs);
break;
default:
spdlog::error("Available back propagators: BackPropagator.Graph");
throw std::runtime_error("Available back propagators: BackPropagator.Graph");
}
}
template <template <typename Tsolver> class TtransitionMode,
template <typename Tsolver> class TtreePolicy,
template <typename Tsolver> class Texpander,
template <typename Tsolver> class TactionSelectorOptimization,
template <typename Tsolver> class TactionSelectorExecution,
template <typename Tsolver> class TrolloutPolicy,
template <typename Tsolver> class TbackPropagator>
void initialize_execution(
py::object& domain,
std::size_t time_budget ,
std::size_t rollout_budget,
std::size_t max_depth,
double discount,
double ucb_constant,
bool online_node_garbage,
const CustomPolicyFunctor& custom_policy,
const HeuristicFunctor& heuristic,
bool parallel ,
bool debug_logs) {
if (parallel) {
initialize<skdecide::ParallelExecution,
TtransitionMode,
TtreePolicy,
Texpander,
TactionSelectorOptimization,
TactionSelectorExecution,
TrolloutPolicy,
TbackPropagator>(domain,
time_budget,
rollout_budget,
max_depth,
discount,
ucb_constant,
online_node_garbage,
custom_policy,
heuristic,
debug_logs);
} else {
initialize<skdecide::SequentialExecution,
TtransitionMode,
TtreePolicy,
Texpander,
TactionSelectorOptimization,
TactionSelectorExecution,
TrolloutPolicy,
TbackPropagator>(domain,
time_budget,
rollout_budget,
max_depth,
discount,
ucb_constant,
online_node_garbage,
custom_policy,
heuristic,
debug_logs);
}
}
template <typename Texecution,
template <typename Tsolver> class TtransitionMode,
template <typename Tsolver> class TtreePolicy,
template <typename Tsolver> class Texpander,
template <typename Tsolver> class TactionSelectorOptimization,
template <typename Tsolver> class TactionSelectorExecution,
template <typename Tsolver> class TrolloutPolicy,
template <typename Tsolver> class TbackPropagator>
void initialize(
py::object& domain,
std::size_t time_budget,
std::size_t rollout_budget,
std::size_t max_depth,
double discount,
double ucb_constant,
bool online_node_garbage,
const CustomPolicyFunctor& custom_policy,
const HeuristicFunctor& heuristic,
bool debug_logs = false) {
_implementation = std::make_unique<Implementation<Texecution,
TtransitionMode,
TtreePolicy,
Texpander,
TactionSelectorOptimization,
TactionSelectorExecution,
TrolloutPolicy,
TbackPropagator>>(
domain,
time_budget,
rollout_budget,
max_depth,
discount,
ucb_constant,
online_node_garbage,
custom_policy,
heuristic,
debug_logs);
}
};
void init_pymcts(py::module& m) {
py::class_<PyMCTSOptions> py_mcts_options(m, "_MCTSOptions_");
py::enum_<PyMCTSOptions::TransitionMode>(py_mcts_options, "TransitionMode")
.value("Step", PyMCTSOptions::TransitionMode::Step)
.value("Sample", PyMCTSOptions::TransitionMode::Sample)
.value("Distribution", PyMCTSOptions::TransitionMode::Distribution);
py::enum_<PyMCTSOptions::TreePolicy>(py_mcts_options, "TreePolicy")
.value("Default", PyMCTSOptions::TreePolicy::Default);
py::enum_<PyMCTSOptions::Expander>(py_mcts_options, "Expander")
.value("Full", PyMCTSOptions::Expander::Full);
py::enum_<PyMCTSOptions::ActionSelector>(py_mcts_options, "ActionSelector")
.value("UCB1", PyMCTSOptions::ActionSelector::UCB1)
.value("BestQValue", PyMCTSOptions::ActionSelector::BestQValue);
py::enum_<PyMCTSOptions::RolloutPolicy>(py_mcts_options, "RolloutPolicy")
.value("Random", PyMCTSOptions::RolloutPolicy::Random)
.value("Custom", PyMCTSOptions::RolloutPolicy::Custom);
py::enum_<PyMCTSOptions::BackPropagator>(py_mcts_options, "BackPropagator")
.value("Graph", PyMCTSOptions::BackPropagator::Graph);
py::class_<PyMCTSSolver> py_mcts_solver(m, "_MCTSSolver_");
py_mcts_solver
.def(py::init<py::object&,
std::size_t,
std::size_t,
std::size_t,
double,
bool,
double,
bool,
const std::function<py::object (const py::object&, const py::object&, const py::object&)>&,
const std::function<py::object (const py::object&, const py::object&, const py::object&)>&,
PyMCTSOptions::TransitionMode,
PyMCTSOptions::TreePolicy,
PyMCTSOptions::Expander,
PyMCTSOptions::ActionSelector,
PyMCTSOptions::ActionSelector,
PyMCTSOptions::RolloutPolicy,
PyMCTSOptions::BackPropagator,
bool,
bool>(),
py::arg("domain"),
py::arg("time_budget")=3600000,
py::arg("rollout_budget")=100000,
py::arg("max_depth")=1000,
py::arg("discount")=1.0,
py::arg("uct_mode")=true,
py::arg("ucb_constant")=1.0/std::sqrt(2.0),
py::arg("online_node_garbage")=false,
py::arg("custom_policy")=nullptr,
py::arg("heuristic")=nullptr,
py::arg("transition_mode")=PyMCTSOptions::TransitionMode::Distribution,
py::arg("tree_policy")=PyMCTSOptions::TreePolicy::Default,
py::arg("expander")=PyMCTSOptions::Expander::Full,
py::arg("action_selector_optimization")=PyMCTSOptions::ActionSelector::UCB1,
py::arg("action_selector_execution")=PyMCTSOptions::ActionSelector::BestQValue,
py::arg("rollout_policy")=PyMCTSOptions::RolloutPolicy::Random,
py::arg("back_propagator")=PyMCTSOptions::BackPropagator::Graph,
py::arg("parallel")=false,
py::arg("debug_logs")=false)
.def("clear", &PyMCTSSolver::clear)
.def("solve", &PyMCTSSolver::solve, py::arg("state"))
.def("is_solution_defined_for", &PyMCTSSolver::is_solution_defined_for, py::arg("state"))
.def("get_next_action", &PyMCTSSolver::get_next_action, py::arg("state"))
.def("get_utility", &PyMCTSSolver::get_utility, py::arg("state"))
.def("get_nb_of_explored_states", &PyMCTSSolver::get_nb_of_explored_states)
.def("get_nb_rollouts", &PyMCTSSolver::get_nb_rollouts)
.def("get_policy", &PyMCTSSolver::get_policy)
.def("get_action_prefix", &PyMCTSSolver::get_action_prefix)
;
}
|
ae6ab4b7355a0db3814f1561de2a37074dc142ec
|
15a35df4de841aa5c504dc4f8778581c00397c87
|
/Server1/Engine/Ext/netbase/win/LNetService.cpp
|
a42163e47dc9ebff2072641f1768959717a3b1b9
|
[] |
no_license
|
binbin88115/server
|
b6197fef8f35276ff7bdf471a025091d65f96fa9
|
e3c178db3b6c6552c60b007cac8ffaa6d3c43c10
|
refs/heads/master
| 2021-01-15T13:49:38.647852
| 2014-05-05T12:47:20
| 2014-05-05T12:47:20
| null | 0
| 0
| null | null | null | null |
GB18030
|
C++
| false
| false
| 1,370
|
cpp
|
LNetService.cpp
|
/**
* \brief 实现网络服务器
*
*
*/
#include "LNetService.h"
#include "LIocp.h"
#include <iostream>
LNetService *LNetService::instance = NULL;
/**
* \brief 初始化服务器程序
*
* 实现<code>LService::init</code>的虚函数
*
* \param port 端口
* \return 是否成功
*/
bool LNetService::init(WORD port)
{
if (!LService::init())
return false;
//初始化服务器
tcpServer = new LTCPServer(serviceName);
if (NULL == tcpServer)
return false;
if (!tcpServer->bind(serviceName,port))
return false;
// [ranqd] 初始化监听线程
pAcceptThread = new LAcceptThread( this, serviceName );
if( pAcceptThread == NULL )
return false;
if(!pAcceptThread->start())
return false;
return true;
}
/**
* \brief 网络服务程序的主回调函数
*
* 实现虚函数<code>LService::serviceCallback</code>,主要用于监听服务端口,如果返回false将结束程序,返回true继续执行服务
*
* \return 回调是否成功
*/
bool LNetService::serviceCallback()
{
// [ranqd] 每秒更新一次网络流量监测
LRTime currentTime;
currentTime.now();
if( _one_sec_( currentTime ) )
{
LIocp::getInstance().UpdateNetLog();
}
Sleep(10);
return true;
}
/**
* \brief 结束网络服务器程序
*
* 实现纯虚函数<code>LService::final</code>,回收资源
*
*/
void LNetService::final()
{
SAFE_DELETE(tcpServer);
}
|
1810f543d646ba7d1cd521ebf9ee22312fb507dd
|
69144a1c80e05e2a1c705bc3df0b7685659edade
|
/src/callPath.cpp
|
a16b6f91e4253cd1c9f9b85443b5b62f7d261137
|
[
"MIT"
] |
permissive
|
MomoDeve/MSL
|
68e6a4405f5f7284e1d184941a1e43d793a95c0e
|
c7e6da7736a29056639b7d194366d37bda520bed
|
refs/heads/master
| 2021-08-06T18:47:07.482536
| 2020-07-05T09:30:57
| 2020-07-05T09:30:57
| 185,782,314
| 0
| 0
|
MIT
| 2019-06-24T21:38:34
| 2019-05-09T11:01:13
|
C++
|
UTF-8
|
C++
| false
| false
| 814
|
cpp
|
callPath.cpp
|
#include "callPath.h"
namespace MSL
{
namespace VM
{
const std::string* CallPath::GetNamespace() const
{
return path[0];
}
const std::string* CallPath::GetClass() const
{
return path[1];
}
const std::string* CallPath::GetMethod() const
{
return path[2];
}
void CallPath::SetNamespace(const std::string* ns)
{
path[0] = ns;
}
void CallPath::SetClass(const std::string* c)
{
path[1] = c;
}
void CallPath::SetMethod(const std::string* method)
{
path[2] = method;
}
Frame* CallPath::GetFrame()
{
return frame;
}
void CallPath::SetFrame(Frame* frame)
{
this->frame = frame;
}
size_t Frame::GetSize() const
{
return locals.size() * sizeof(std::pair<std::string, Local>);
}
}
}
|
8f84dfe33ff615d20eef9b9f4c7a7f845c037647
|
f678aa3605eb8349d6bebb7653e897881d2f481d
|
/Worksheets/Worksheet1/SolutionPrograms/RBM_WS_Q2.cpp
|
34f987dcc8ec10bc8a9244470ebf5dec9fbc8a64
|
[] |
no_license
|
mrityunjayshukla411/RM-CodingTaskPhase
|
c934a51e889ebfd35761783654311fe990c7f6d5
|
9e5b066abe23fbc0eb39fd6335db2b9dac51f096
|
refs/heads/main
| 2023-05-09T02:55:13.891336
| 2021-05-31T03:40:23
| 2021-05-31T03:40:23
| 318,527,952
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,009
|
cpp
|
RBM_WS_Q2.cpp
|
//20201204
// Updated 20201208
#include<bits/stdc++.h>
using namespace std;
// I tried writing a function for inputting the Matrix but int A[][] is not a valid paramater - Problem Faced 1
// void inputMatrix(int Arr[][],int row,int col){
// int i,j = 0;
// for ( i = 0; i < row; i++)
// {
// for (j = 0; j < col; j++)
// {
// cin>>Arr[i][j];
// }
// }
// }
int main(){
int i,j,k = 0;
int MatrixA[100][100];
int MatrixB[100][100];
int MatrixC[100][100];
int rA,cA,rB,cB;
cout<<"Enter the number of rows for Matrix A"<<endl;
cin>>rA;
cout<<"Enter the number of columns for Matrix A"<<endl;
cin>>cA;
cout<<"Enter the number of rows for Matrix B"<<endl;
cin>>rB;
cout<<"Enter the number of columns for Matrix B"<<endl;
cin>>cB;
if(cA == rB){
cout<<"Enter the values of Matrix A"<<endl;
for ( i = 0; i < rA; i++)
{
for (j = 0; j < cA; j++)
{
cin>>MatrixA[i][j];
}
}
cout<<"Enter the values of Matrix B"<<endl;
for ( i = 0; i < rB; i++)
{
for (j = 0; j < cB; j++)
{
cin>>MatrixB[i][j];
}
}
for (i = 0; i < rA; i++)
{
for ( j = 0; j < cB ; j++)
{
MatrixC[i][j] = 0;// This line was previously not in the code and because of this some test cases were failing
for ( k = 0; k < cA; k++)
{
MatrixC[i][j] += MatrixA[i][k]* MatrixB[k][j];
}
}
}
cout<<"The Product Matric is"<<endl;
for ( i = 0; i < rA; i++)
{
for (j = 0; j < cB; j++)
{
cout<< MatrixC[i][j] <<" ";
}
cout<<endl;
}
}
else
{
cout<<"These matrices cannot be multiplied"<<endl;
}
return 0;
}
|
dd104e2629f78d370901a9a56bfeeeb33ec4d4e1
|
7e8fd73c7a8fab84e42246b68a531dab8596fe91
|
/Threaded Binary Tree.cpp
|
9b9bb25635e5b1f6485a5b336320ce1ea5f8a9ff
|
[] |
no_license
|
roshan194/CPP
|
522de04eb37004f2547ac278e7d345d826f9f4ba
|
b8ae37dcaf58bd60b46ad8572a024186152e6d3b
|
refs/heads/master
| 2023-05-09T01:42:07.498110
| 2021-06-03T05:18:06
| 2021-06-03T05:18:06
| 298,996,629
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,336
|
cpp
|
Threaded Binary Tree.cpp
|
#include<bits/stdc++.h>
#include<iostream>
using namespace std;
class Node
{
public:
int data;
Node* left;
Node* right;
int leftthread;
int rightThread;
Node(int val)
{
this->data = val;
}
};
class DoubleThreadedBinaryTree
{
private:
Node* root;
public:
DoubleThreadedBinaryTree()
{
root = new Node(INT_MAX);
root->left = root->right = root;
root->leftthread = 0;
root->rightThread = 1;
}
void insert(int data)
{
Node* newnode = new Node(data);
if(root->left == root && root->right == root)
{
newnode->left = root;
root->left = newnode;
newnode->leftthread = 0;
newnode->rightThread = 0;
root->leftthread = 1;
newnode->right = root;
return;
}
else
{
Node* current = root->left;
while(true)
{
if(current->data > data)
{
if(current->leftthread == 0 )
{
newnode->left = current->left;
current->left = newnode;
newnode->leftthread = current->leftthread;
newnode->rightThread = 0;
current->leftthread = 1;
newnode->right = current;
break;
}
else
{
current = current->left;
}
}
else
{
if(current->rightThread == 0)
{
newnode->right = current->right;
current->right = newnode;
newnode->rightThread = current->rightThread;
newnode->leftthread = 0;
current->rightThread=1;
newnode->left = current;
break;
}
else
{
current = current->right;
}
}
}
}
}
Node* findnxtinorder(Node* current)
{
if(current->rightThread == 0)
{
return current->right;
}
current = current->right;
while (current->leftthread != 0)
{
current = current->left;
}
return current;
}
void inordertraversal()
{
Node* current = root->left;
while(current->leftthread == 1)
{
current = current->left;
}
while(current != root)
{
cout<<current->data<<" ";
current = findnxtinorder(current);
}
cout<<"\n";
}
void preordertraversal()
{
Node* current = root->left;
while(current != root)
{
cout<<current->data<<" ";
if(current->left != root && current->leftthread != 0)
{
current= current->left;
}
else if(current->rightThread == 1)
{
current = current->right;
}
else
{
while (current->right != root && current->rightThread == 0)
{
current = current->right;
}
if(current->right == root)
{
break;
}
else
{
current=current->right;
}
}
}
cout<<"\n";
}
};
int main()
{
DoubleThreadedBinaryTree x;
x.insert(31);
x.insert(14);
x.insert(3);
x.insert(9);
x.insert(45);
x.insert(29);
x.insert(38);
x.insert(85);
x.inordertraversal();
x.preordertraversal();
return 0;
}
|
3526e79c4796b2ee128a2574db7df1b04dab24be
|
c08c76c06d3e48f2ce2493e22fca4f1f82839cbd
|
/9.2.4_7_topologsort_no_recursion.cpp
|
a6e02a9f6e502328b42fb6a6d310b030b408511e
|
[] |
no_license
|
fredeom/shen_book_solutions
|
1d5ba1ce1d731849afaf7a08b679dfe76c6a0804
|
a8396b1ffaaaf2696fd980504e7ec18f4d096646
|
refs/heads/master
| 2022-11-09T19:11:49.794742
| 2020-07-03T16:36:55
| 2020-07-03T16:36:55
| 275,020,209
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 830
|
cpp
|
9.2.4_7_topologsort_no_recursion.cpp
|
#include <iostream>
#include <stack>
#include <vector>
int main() {
int n, m;
std::stack<int> zeroes;
std::vector<int> ans;
freopen("9.2.4.in", "r", stdin);
std::cin >> n >> m;
std::vector<std::vector<int> > e(n, std::vector<int>());
std::vector<int> cnt(n, 0);
for (int i = 0; i < m; ++i) {
int v1, v2;
std::cin >> v1 >> v2;
e[v1].push_back(v2);
cnt[v2]++;
}
for (int i = 0; i < n; ++i) if (cnt[i] == 0) zeroes.push(i);
for (int i = 0; i < n; ++i) {
if (zeroes.empty()) {
std::cout << "Found cycle" << std::endl;
exit(0);
}
int v = zeroes.top(); zeroes.pop();
ans.push_back(v);
for (int edge : e[v]) {
cnt[edge]--;
if (cnt[edge] == 0) zeroes.push(edge);
}
}
for (int a : ans) std::cout << a << " "; std::cout << std::endl;
return 0;
}
|
11bbe9c860ff2dab3a77377874f5587487516505
|
67920a5c0b361ed94a25d814b65ddd2ad9767c2d
|
/Tic-Tac-Toe/Tic-Tac-Toe/Source.cpp
|
5a041f12f0d0781f58938e0065640d3ce22e62e8
|
[] |
no_license
|
orhaimwerthaim/Tic-Tac-Toe
|
8e1d8bc231e1042ec4912e135c8ab11452cb1c63
|
ed854c32b244d4c4a8e94a8de865a7c2b34d3478
|
refs/heads/master
| 2022-02-25T07:25:57.065419
| 2019-05-31T14:23:00
| 2019-05-31T14:23:00
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 11,346
|
cpp
|
Source.cpp
|
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/opencv.hpp"
#include<stdint.h>
#include<iostream>
using namespace cv;
using namespace std;
// find the ratio of black and white pixels in cells
float cellRatio(Mat src){
float count_black = 0;
float count_white = 0;
for (int y = 0; y < src.rows; y++) {
for (int x = 0; x < src.cols; x++) {
if (src.at<uchar>(y, x) == 255) {
count_white++;
}
else if (src.at<uchar>(y, x) == 0){
count_black++;
}
}
}
return count_black / count_white;
}
// Splits the grid into 9 cells
Mat getCellImage(Mat grid, int x, int y){
int cellHeight = grid.rows / 3;
int cellWidth = grid.cols / 3;
cv::Rect cellRect(y*cellWidth, x*cellHeight, cellWidth, cellHeight);
cv::Mat cellImg = grid(cellRect);
return cellImg;
}
// Checks for each cell state whether it contains X, O or EMPTY
void getState(Mat img){
for (int i = 0; i < 3; i++){
for (int j = 0; j < 3; j++){
Mat cell = getCellImage(img, i, j);
Mat modified;
threshold(cell, cell, 0, 255, CV_THRESH_BINARY | CV_THRESH_OTSU);
medianBlur(cell, modified, 5);
threshold(modified, modified, 0, 255, CV_THRESH_BINARY | CV_THRESH_OTSU);
bitwise_not(modified, modified);
Mat kernel = (Mat_<uchar>(3, 3) << 0, 1, 0, 1, 1, 1, 0, 1, 0);
erode(modified, modified, kernel);
erode(modified, modified, kernel);
int lowThreshold = 10;
Canny(modified, modified, lowThreshold, lowThreshold * 3, 3);
vector<Vec3f> circles;
HoughCircles(modified, circles, CV_HOUGH_GRADIENT, 1, modified.rows / 16, 120, 55, 0, 0);
bool circleFound = false;
for (int k = 0; k<circles.size(); k++) {
if (circles[k][2] > 50) {
circleFound = true;
break;
}
}
if (circleFound)
printf("O ");
else{ // either X or EMPTY cell
if (cellRatio(cell) > 0.15)
printf("X ");
else{
printf("- ");
}
}
}
printf("\n");
}
}
void drawLine(Vec2f line, Mat &img, Scalar rgb = CV_RGB(0, 0, 255)){
if (line[1] != 0){
float m = -1 / tan(line[1]);
float c = line[0] / sin(line[1]);
cv::line(img, Point(0, c), Point(img.size().width, m*img.size().width + c), rgb, 3);
}
else{ // line is vertical (slope is infinity)
cv::line(img, Point(line[0], 0), Point(line[0], img.size().height), rgb, 3);
}
}
void mergeRelatedLines(vector<Vec2f> *lines, Mat &img){
vector<Vec2f>::iterator current;
for (current = lines->begin(); current != lines->end(); current++){
if ((*current)[0] == 0 && (*current)[1] == -100)
continue;
float p1 = (*current)[0];
float theta1 = (*current)[1];
Point pt1current, pt2current;
//find two points on the line
if (theta1 > CV_PI * 45 / 180 && theta1 < CV_PI * 135 / 180){
pt1current.x = 0;
pt1current.y = p1 / sin(theta1);
pt2current.x = img.size().width;
pt2current.y = -pt2current.x / tan(theta1) + p1 / sin(theta1);
}
else{
pt1current.y = 0;
pt1current.x = p1 / cos(theta1);
pt2current.y = img.size().height;
pt2current.x = -pt2current.y / tan(theta1) + p1 / cos(theta1);
}
vector<Vec2f>::iterator pos;
for (pos = lines->begin(); pos != lines->end(); pos++){
if (*current == *pos)
continue;
//check if the lines are within a certain distance of each other
if (fabs((*pos)[0] - (*current)[0]) < 20 && fabs((*pos)[1] - (*current)[1])<CV_PI * 10 / 180){
float p = (*pos)[0];
float theta = (*pos)[1];
Point pt1, pt2;
//find two points on the line pos
if ((*pos)[1]>CV_PI * 45 / 180 && (*pos)[1] < CV_PI * 135 / 180){
pt1.x = 0;
pt1.y = p / sin(theta);
pt2.x = img.size().width;
pt2.y = -pt2.x / tan(theta) + p / sin(theta);
}
else{
pt1.y = 0;
pt1.x = p / cos(theta);
pt2.y = img.size().height;
pt2.x = -pt2.y / tan(theta) + p / cos(theta);
}
//if endpoints of the line pos and the line current are close to each other, we merge them
if (((double)(pt1.x - pt1current.x)*(pt1.x - pt1current.x) + (pt1.y - pt1current.y)*(pt1.y - pt1current.y) < 64 * 64) &&
((double)(pt2.x - pt2current.x)*(pt2.x - pt2current.x) + (pt2.y - pt2current.y)*(pt2.y - pt2current.y) < 64 * 64))
{
// Merge the two lines
(*current)[0] = ((*current)[0] + (*pos)[0]) / 2;
(*current)[1] = ((*current)[1] + (*pos)[1]) / 2;
(*pos)[0] = 0;
(*pos)[1] = -100;
}
}
}
}
}
int main(int argc, char** argv){
cout << "Enter the image name: ";
string imgName;
getline(cin, imgName);
Mat board = imread(imgName, CV_LOAD_IMAGE_GRAYSCALE);
Mat grid = Mat(board.size(), CV_8UC1);
medianBlur(board, board, 3);
adaptiveThreshold(board, grid, 255, ADAPTIVE_THRESH_MEAN_C, THRESH_BINARY, 5, 2);
bitwise_not(grid, grid);
Mat kernel = (Mat_<uchar>(3, 3) << 0, 1, 0, 1, 1, 1, 0, 1, 0);
dilate(grid, grid, kernel);
// finding the biggest blob (which is the grid)
int max = -1;
Point maxPt;
for (int y = 0; y < grid.size().height; y++){
uchar *row = grid.ptr(y);
for (int x = 0; x<grid.size().width; x++){
// flood only the white parts
if (row[x] >= 128){
int area = floodFill(grid, Point(x, y), CV_RGB(0, 0, 64));
if (area>max){
maxPt = Point(x, y);
max = area;
}
}
}
}
// flood the blob with maximum area with white color (grid borders)
floodFill(grid, maxPt, CV_RGB(255, 255, 255));
// turn other blobs but the grid to black
for (int y = 0; y < grid.size().height; y++) {
uchar *row = grid.ptr(y);
for (int x = 0; x < grid.size().width; x++) {
if (row[x] == 64 && x != maxPt.x && y != maxPt.y){
int area = floodFill(grid, Point(x, y), CV_RGB(0, 0, 0));
}
}
}
erode(grid, grid, kernel);
dilate(grid, grid, kernel);
dilate(grid, grid, kernel);
namedWindow("Biggest Blob", WINDOW_NORMAL);
resizeWindow("Biggest Blob", 500, 500);
imshow("Biggest Blob", grid);
vector<Vec2f> lines;
HoughLines(grid, lines, 1, CV_PI / 180, 200);
mergeRelatedLines(&lines, board);
for (int i = 0; i < lines.size(); i++){
drawLine(lines[i], grid, CV_RGB(0, 0, 255));
}
// detect the lines on extremes (outer borders)
Vec2f topEdge = Vec2f(1000, 1000);
double topYIntercept = 100000, topXIntercept = 0;
Vec2f bottomEdge = Vec2f(-1000, -1000);
double bottomYIntercept = 0, bottomXIntercept = 0;
Vec2f leftEdge = Vec2f(1000, 1000);
double leftXIntercept = 100000, leftYIntercept = 0;
Vec2f rightEdge = Vec2f(-1000, -1000);
double rightXIntercept = 0, rightYIntercept = 0;
for (int i = 0; i < lines.size(); i++){
Vec2f current = lines[i];
float p = current[0];
float theta = current[1];
// skip a merged line
if (p == 0 && theta == -100)
continue;
double xIntercept, yIntercept;
xIntercept = p / cos(theta);
yIntercept = p / (cos(theta)*sin(theta));
// if the line is nearly vertical
if (theta > CV_PI * 80 / 180 && theta < CV_PI * 100 / 180){
if (p<topEdge[0])
topEdge = current;
if (p>bottomEdge[0])
bottomEdge = current;
}
// id the line is nearly horizontal
else if (theta < CV_PI * 10 / 180 || theta > CV_PI * 170 / 180){
if (xIntercept > rightXIntercept){
rightEdge = current;
rightXIntercept = xIntercept;
}
else if (xIntercept <= leftXIntercept){
leftEdge = current;
leftXIntercept = xIntercept;
}
}
}
drawLine(topEdge, board, CV_RGB(0, 0, 0));
drawLine(bottomEdge, board, CV_RGB(0, 0, 0));
drawLine(leftEdge, board, CV_RGB(0, 0, 0));
drawLine(rightEdge, board, CV_RGB(0, 0, 0));
// find 2 points on each line of the above 4 lines
Point left1, left2, right1, right2, bottom1, bottom2, top1, top2;
int height = grid.size().height;
int width = grid.size().width;
if (leftEdge[1] != 0){
left1.x = 0;
left1.y = leftEdge[0] / sin(leftEdge[1]);
left2.x = width;
left2.y = -left2.x / tan(leftEdge[1]) + left1.y;
}
else{
left1.y = 0;
left1.x = leftEdge[0] / cos(leftEdge[1]);
left2.y = height;
left2.x = left1.x - height*tan(leftEdge[1]);
}
if (rightEdge[1] != 0){
right1.x = 0;
right1.y = rightEdge[0] / sin(rightEdge[1]);
right2.x = width;
right2.y = -right2.x / tan(rightEdge[1]) + right1.y;
}
else{
right1.y = 0;
right1.x = rightEdge[0] / cos(rightEdge[1]);
right2.y = height;
right2.x = right1.x - height*tan(rightEdge[1]);
}
bottom1.x = 0;
bottom1.y = bottomEdge[0] / sin(bottomEdge[1]);
bottom2.x = width;
bottom2.y = -bottom2.x / tan(bottomEdge[1]) + bottom1.y;
top1.x = 0;
top1.y = topEdge[0] / sin(topEdge[1]);
top2.x = width;
top2.y = -top2.x / tan(topEdge[1]) + top1.y;
// find the intersection points of the above 4 lines
double leftA = left2.y - left1.y;
double leftB = left1.x - left2.x;
double leftC = leftA*left1.x + leftB*left1.y;
double rightA = right2.y - right1.y;
double rightB = right1.x - right2.x;
double rightC = rightA*right1.x + rightB*right1.y;
double topA = top2.y - top1.y;
double topB = top1.x - top2.x;
double topC = topA*top1.x + topB*top1.y;
double bottomA = bottom2.y - bottom1.y;
double bottomB = bottom1.x - bottom2.x;
double bottomC = bottomA*bottom1.x + bottomB*bottom1.y;
// Intersection of left and top
double detTopLeft = leftA*topB - leftB*topA;
CvPoint ptTopLeft = cvPoint((topB*leftC - leftB*topC) / detTopLeft, (leftA*topC - topA*leftC) / detTopLeft);
// Intersection of top and right
double detTopRight = rightA*topB - rightB*topA;
CvPoint ptTopRight = cvPoint((topB*rightC - rightB*topC) / detTopRight, (rightA*topC - topA*rightC) / detTopRight);
// Intersection of right and bottom
double detBottomRight = rightA*bottomB - rightB*bottomA;
CvPoint ptBottomRight = cvPoint((bottomB*rightC - rightB*bottomC) / detBottomRight, (rightA*bottomC - bottomA*rightC) / detBottomRight);// Intersection of bottom and left
// Intersection of left and bottom
double detBottomLeft = leftA*bottomB - leftB*bottomA;
CvPoint ptBottomLeft = cvPoint((bottomB*leftC - leftB*bottomC) / detBottomLeft, (leftA*bottomC - bottomA*leftC) / detBottomLeft);
// correct the skewed perspective of the image
int maxLength = (ptBottomLeft.x - ptBottomRight.x)*(ptBottomLeft.x - ptBottomRight.x) + (ptBottomLeft.y - ptBottomRight.y)*(ptBottomLeft.y - ptBottomRight.y);
int temp = (ptTopRight.x - ptBottomRight.x)*(ptTopRight.x - ptBottomRight.x) + (ptTopRight.y - ptBottomRight.y)*(ptTopRight.y - ptBottomRight.y);
if (temp > maxLength) maxLength = temp;
temp = (ptTopRight.x - ptTopLeft.x)*(ptTopRight.x - ptTopLeft.x) + (ptTopRight.y - ptTopLeft.y)*(ptTopRight.y - ptTopLeft.y);
if (temp > maxLength) maxLength = temp;
temp = (ptBottomLeft.x - ptTopLeft.x)*(ptBottomLeft.x - ptTopLeft.x) + (ptBottomLeft.y - ptTopLeft.y)*(ptBottomLeft.y - ptTopLeft.y);
if (temp > maxLength) maxLength = temp;
maxLength = sqrt((double)maxLength);
Point2f src[4], dst[4];
src[0] = ptTopLeft;
dst[0] = Point2f(0, 0);
src[1] = ptTopRight;
dst[1] = Point2f(maxLength - 1, 0);
src[2] = ptBottomRight;
dst[2] = Point2f(maxLength - 1, maxLength - 1);
src[3] = ptBottomLeft;
dst[3] = Point2f(0, maxLength - 1);
Mat undistorted = Mat(Size(maxLength, maxLength), CV_8UC1);
warpPerspective(board, undistorted, getPerspectiveTransform(src, dst), Size(maxLength, maxLength));
// Traverse each cell in the board and find its content
getState(undistorted);
namedWindow("Output", WINDOW_NORMAL);
resizeWindow("Output", 600, 700);
imshow("Output", undistorted);
waitKey();
return 0;
}
|
ae0e3908cbaa28936bba538fb9ac6b7540616af0
|
d6eb6c4f340d343ea368507b1c7e7671d45a5767
|
/src/mocha/roaster/ast/translator/processors/export_processor.cc
|
b4d40d68673485fa0f23de06f7d19267882d8ff8
|
[] |
no_license
|
brn/mocha
|
8242888c18081cb844a2c2bd0c222162cd46e4cf
|
9ff68d6e2c753acf6ce57cdb3188f162549d2045
|
refs/heads/master
| 2021-06-06T06:43:06.230281
| 2021-05-07T16:04:12
| 2021-05-07T16:04:12
| 2,707,603
| 19
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 4,853
|
cc
|
export_processor.cc
|
#include <mocha/roaster/ast/ast.h>
#include <mocha/roaster/ast/translator/processors/export_processor.h>
#include <mocha/roaster/ast/translator/processors/processor_info.h>
#include <mocha/roaster/ast/builder/ast_builder.h>
#include <mocha/roaster/ast/translator/translator_data/translator_data.h>
#include <mocha/roaster/nexc/tokens/js_token.h>
#include <mocha/roaster/nexc/tokens/symbol_list.h>
#include <mocha/roaster/nexc/tokens/token_info.h>
namespace mocha {
ExportProcessor::ExportProcessor(ExportStmt* stmt, ProcessorInfo* info) :
stmt_(stmt), info_(info){}
void ExportProcessor::ProcessNode() {
IVisitor *visitor = info_->visitor();
AstNode* node = stmt_->first_child();
node->Accept(visitor);
if (node->node_type() == AstNode::kFunction) {
ProcessFunction(node);
} else if (node->node_type() == AstNode::kVariableDeclarationList) {
ProcessNodeList(node);
}
}
void ExportProcessor::ProcessFunction(AstNode* node) {
TranslatorData* translator_data = info_->translator_data();
Function* fn = node->CastToExpression()->CastToFunction();
info_->translator_data()->set_function(fn);
Literal* name = fn->name()->CastToLiteral();
Literal* local = builder()->CreateNameNode(SymbolList::symbol(SymbolList::kLocalExport),
Token::JS_IDENTIFIER, stmt_->line_number(), Literal::kIdentifier);
Literal* property_name = name->Clone(pool())->CastToLiteral();
property_name->set_value_type(Literal::kProperty);
translator_data->modules()->back()->SetExports(name);
CallExp *export_prop = builder()->CreateDotAccessor(local, property_name, node->line_number());
AssignmentExp* assign = builder()->CreateAssignment('=', export_prop, name->Clone(pool()), node->line_number());
fn->MarkAsDeclaration();
ExpressionStmt* exp_stmt = builder()->CreateExpStmt(assign, node->line_number());
AstNode* parent = stmt_->parent_node();
parent->ReplaceChild(stmt_, fn);
parent->InsertAfter(exp_stmt, fn);
}
void ExportProcessor::ProcessNodeList(AstNode* node) {
AstNode* stmt = CreateAssignment(node);
stmt_->parent_node()->ReplaceChild(stmt_, stmt);
}
AstNode* ExportProcessor::CreateAssignment(AstNode* node) {
TranslatorData* translator_data = info_->translator_data();
NodeIterator iterator = node->ChildNodes();
VariableDeclarationList* list = node->CastToExpression()->CastToVariableDeclarationList();
bool is_const = list->IsDeclaredAsConst();
ModuleList* module_list = translator_data->modules();
while (iterator.HasNext()) {
AstNode *item = iterator.Next();
TokenInfo *name_info = item->CastToLiteral()->value();
Literal *name = builder()->CreateNameNode(name_info->token(), Token::JS_IDENTIFIER,
stmt_->line_number(), Literal::kProperty);
Literal *local = builder()->CreateNameNode(SymbolList::symbol(SymbolList::kLocalExport),
Token::JS_IDENTIFIER, stmt_->line_number(), Literal::kIdentifier);
CallExp *export_prop = builder()->CreateDotAccessor(local, name, node->line_number());
module_list->back()->SetExports(name);
if (is_const) {
if (!item->first_child()->IsEmpty()) {
CallExp* constant_prop = builder()->CreateConstantProp(local, name, item->first_child(), node->line_number());
return builder()->CreateExpStmt(constant_prop, node->line_number());
} else {
AstNode* target = name->Clone(pool());
if (target->CastToLiteral()) {
Literal* target_name = target->CastToLiteral();
target_name->set_value_type(Literal::kIdentifier);
}
CallExp* constant_prop = builder()->CreateConstantProp(local, name, target, node->line_number());
return builder()->CreateExpStmt(constant_prop, node->line_number());
}
} else {
AssignmentExp* assign;
if (!item->first_child()->IsEmpty()) {
assign = builder()->CreateAssignment('=', export_prop, item->first_child(), node->line_number());
item->RemoveAllChild();
item->AddChild(new (pool()) Empty());
Literal *val = builder()->CreateVarInitiliser(name->value(), assign, node->line_number());
VariableDeclarationList* list = builder()->CreateVarDeclList(node->line_number(), 1, val);
VariableStmt* var_stmt = builder()->CreateVarStmt(list, node->line_number());
return var_stmt;
} else {
AstNode* target = name->Clone(pool());
if (target->CastToLiteral()) {
Literal* target_name = target->CastToLiteral();
target_name->set_value_type(Literal::kIdentifier);
}
assign = builder()->CreateAssignment('=', export_prop, target, node->line_number());
return builder()->CreateExpStmt(assign, node->line_number());
}
}
}
return new(pool()) Empty;
}
}
|
2eba24f4e55370b0606e14de9272de6bd7f61b37
|
57b34492602f0bdb2594590954b4321053fb23e7
|
/src/mge/materials/LitMaterial.hpp
|
ebb8fb11e7ecf396b70ad0f2d2fba5e12032069d
|
[] |
no_license
|
Flippo13/Basic_3D_Engine
|
501f2611082c2e129a7ec6a602ce6bcc728e4524
|
d32bab0b89d135206e7b9c24ab1db15437f52f0e
|
refs/heads/master
| 2020-04-07T21:22:09.262029
| 2018-11-22T16:21:13
| 2018-11-22T16:21:13
| 158,724,091
| 2
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 905
|
hpp
|
LitMaterial.hpp
|
#include "mge/materials/AbstractMaterial.hpp"
#include "glm.hpp"
#include "GL/glew.h"
class ShaderProgram;
#pragma once
class LitMaterial : public AbstractMaterial
{
public:
LitMaterial(glm::vec3 pColor, glm::vec3 pAmbient);
~LitMaterial();
virtual void render(World* pWorld, Mesh* pMesh, const glm::mat4& pModelMatrix, const glm::mat4& pViewMatrix, const glm::mat4& pProjectionMatrix) override;
//in rgb values
void setDiffuseColor(glm::vec3 pDiffuseColor);
void setAmbientColor(glm::vec3 pAmbientColor);
private:
//all the static properties are shared between instances of ColorMaterial
//note that they are all PRIVATE, we do not expose this static info to the outside world
static ShaderProgram* _shader;
static void _lazyInitializeShader();
//this one is unique per instance of color material
glm::vec3 _diffuseColor;
glm::vec3 _ambientColor;
};
|
898d629ca6e52d4c323e650d0f9b827f6a85bf40
|
767dca636bb70cdf72cb5f3cfb5baa6911d725bc
|
/examples/containers/vector.cpp
|
d19cd6ba0187af14c6286c7ac1196acf5990dca1
|
[] |
no_license
|
strandfield/cpp-examples
|
5544a22c01bacc81c9b7c496f5751950c4a36e57
|
f36763dd51bb6a6f31e4366ee7bfa4d217692b63
|
refs/heads/master
| 2022-02-18T09:59:05.654844
| 2019-09-18T18:06:48
| 2019-09-18T21:15:54
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,304
|
cpp
|
vector.cpp
|
#include <vector>
#include <iostream>
void print(const std::vector<int>& vec)
{
for (int n : vec)
{
std::cout << n << " ";
}
std::cout << "\n";
}
int main()
{
std::vector<int> digits{ 0, 1, 3, 4, 5, 6, 7, 8 };
print(digits);
// Get the vector's size()
std::cout << "size: " << digits.size() << "\n";
// Insert element at the end, avg. O(1)
digits.push_back(9);
digits.push_back(9);
print(digits);
// Insert element in the middle, avg. O(n)
// insert() returns an iterator to the first inserted element
auto inserted_it = digits.insert(digits.begin() + 2, 2);
std::cout << "inserted: " << *inserted_it << "\n";
print(digits);
// Remove element at the end, O(1)
digits.pop_back();
print(digits);
// Access element randomly, O(1)
std::cout << digits.at(5) << "\n";
digits[0] = 10;
print(digits);
// Remove element, avg. O(n)
for (auto it = digits.begin(); it != digits.end(); )
{
if (*it % 2 == 1)
{
// erase() returns new iterator to the element that was just after
// the removed element
it = digits.erase(it);
}
else
{
++it;
}
}
print(digits);
// Clear the vector
digits.clear();
// Check if the vector is empty
std::cout << "empty ? " << digits.empty() << "\n";
}
|
8ef75ec85177ca8d8f151e6bfcdca50fa73ef746
|
af11f45f57f71e649832fb386259696254efaad6
|
/MiniProj/Scene.h
|
b4c22f7ec1bbe71815684e634a15b9983c058787
|
[] |
no_license
|
charvakcpatel007/Bomberman
|
75a10478c418000e6350d1b1e0bd57473fc943a8
|
2a7fd41085ad06cb7e7f9871d839ee5bff01e552
|
refs/heads/master
| 2021-01-10T13:36:00.356162
| 2016-05-07T04:21:36
| 2016-05-07T04:21:36
| 55,512,685
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 714
|
h
|
Scene.h
|
#pragma once
#include <SDL.h>
#include <SDL_image.h>
#include <utility>
#include "TextSprite.h"
class Scene
{
public:
Scene();
virtual void init(SDL_Window* w, SDL_Surface* s, SDL_Renderer* r, int tileSizeDest, std::pair<int,int> dm, TTF_Font* gF );
virtual void update() = 0;
virtual void render() = 0;
virtual void updateOffset() = 0;
TTF_Font* gFont;
SDL_Color fontColor;
std::pair<int, int> drawOffset;// x offset first, y offset second
int drawoffsetSpeed;
std::pair<int, int> dimension;
SDL_Renderer* renderer;
SDL_Window* window;
SDL_Surface* windowSurface;
int tileSizeDest;
void writeAndPutText(TextSprite &curText, const char* text, int x, int y, int w, int h);
virtual ~Scene();
};
|
8b6f4a0b507dc1548642fb48b49e7482498a294f
|
512840635ba7c60c21e18121fa944fca1ecbfc0d
|
/util/Util.hh
|
01f55c51cafef9180ba49d2b3a8b9b7ecd4d9199
|
[] |
no_license
|
lilinj2000/flash
|
a32f817e618323bdcbcf168e7e750d8b1776b690
|
7dd048820fdc6f1679f54cd6059a9ffefb6eab45
|
refs/heads/master
| 2020-04-18T14:21:56.817282
| 2015-11-10T07:09:07
| 2015-11-10T07:09:07
| 41,136,637
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 294
|
hh
|
Util.hh
|
#ifndef FLASH_UTIL_HH
#define FLASH_UTIL_HH
#include "air/MDataFile.hh"
#include "foal/FoalDef.hh"
namespace flash
{
class Util
{
public:
air::SpeedMData* toSpeedMData(const foal::DepthMarketData* data);
air::CffexMData* toCffexMData(const foal::DepthMarketData* data);
};
};
#endif
|
53ed0d24587f312357c6159005706e5fa53dccbe
|
292d1dbc7ba1c1f79683804aa1f6f73f856a3126
|
/Arrays/Largest Number.cpp
|
5dc29cd5c245b34286b5fe5a444ed4c1593bdcf4
|
[] |
no_license
|
Ashray11/InterviewBit
|
6c4487e5b4273522c6d30fd475870a845c082816
|
6ef0ace76dba901d2f59c562a820c6275f9b0e0f
|
refs/heads/master
| 2022-01-09T23:54:44.511940
| 2019-06-30T21:19:10
| 2019-06-30T21:19:10
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 473
|
cpp
|
Largest Number.cpp
|
bool cmp(int a,int b){
string p = to_string(a);
string q = to_string(b);
return (stoll(p+q) > stoll(q+p));
}
string Solution::largestNumber(const vector<int> &A) {
vector<int> res(A.size());
for(int i=0;i<A.size();i++){
res[i] = A[i];
}
sort(res.begin(),res.end(),cmp);
string temp = "";
for(int i=0;i<res.size();i++){
temp += to_string(res[i]);
}
if(temp[0] == '0'){
return "0";
}
return temp;
}
|
a3e3caee3e72df7da50a73f337d0c897a62f6c5a
|
876a382b3cab25c0fe001c1bd53b2c3818c60493
|
/Source/BYGRichTextEditor/Private/BYGRichTextEditorModule.cpp
|
b8c321cdaadad6d3a20516876037d47810bda76b
|
[
"BSD-3-Clause"
] |
permissive
|
ArtheonVR/UE4-BYGRichText
|
f431f248ff7f7e40554e7eb8e53416e42600797d
|
cd8a6e734769c886e22dac2067298042420106d4
|
refs/heads/main
| 2023-04-24T07:51:12.361531
| 2021-05-14T23:10:54
| 2021-05-14T23:10:54
| 389,387,240
| 1
| 0
|
BSD-3-Clause
| 2021-07-25T16:03:32
| 2021-07-25T16:03:31
| null |
UTF-8
|
C++
| false
| false
| 4,544
|
cpp
|
BYGRichTextEditorModule.cpp
|
// Copyright Brace Yourself Games. All Rights Reserved.
#include "BYGRichTextEditorModule.h"
#include "PropertyEditorModule.h"
#include "ISettingsModule.h"
#include "Framework/Docking/TabManager.h"
#include "Editor/WorkspaceMenuStructure/Public/WorkspaceMenuStructure.h"
#include "Editor/WorkspaceMenuStructure/Public/WorkspaceMenuStructureModule.h"
#include "BYGRichTextRuntimeSettings.h"
#include "Customization/BYGRichTextStyleCustomization.h"
#include "Customization/BYGRichTextStylesheetCustomization.h"
#include "BYGRichTextUIStyle.h"
#include "TestWindow/BYGRichTextTestWindow.h"
#include "Customization/BYGStyleDisplayTypeCustomization.h"
#include "Customization/BYGTextJustifyCustomization.h"
#include "KismetCompilerModule.h"
#include "BYGStylesheetCompiler.h"
#define LOCTEXT_NAMESPACE "BYGRichTextEditorModule"
namespace BYGRichTextModule
{
static const FName TestTabName = FName( TEXT( "Test" ) );
}
TSharedRef<SDockTab> SpawnTestTab( const FSpawnTabArgs& Args )
{
return SNew( SDockTab )
.Icon( FBYGRichTextUIStyle::GetBrush( "BYGRichText.TabIcon" ) )
.TabRole( ETabRole::NomadTab )
.Label( NSLOCTEXT( "BYGRichText", "TabTitle", "BYG Rich Text Test" ) )
[
SNew( SBYGRichTextTestWindow )
];
}
void FBYGRichTextEditor::StartupModule()
{
FDefaultGameModuleImpl::StartupModule();
FPropertyEditorModule& PropertyModule = FModuleManager::LoadModuleChecked< FPropertyEditorModule >( "PropertyEditor" );
PropertyModule.RegisterCustomClassLayout( "BYGRichTextStylesheet", FOnGetDetailCustomizationInstance::CreateStatic( &FBYGRichTextStylesheetCustomization::MakeInstance ) );
PropertyModule.RegisterCustomClassLayout( "BYGRichTextStyle", FOnGetDetailCustomizationInstance::CreateStatic( &FBYGRichTextStyleCustomization::MakeInstance ) );
PropertyModule.NotifyCustomizationModuleChanged();
// Register widget blueprint compiler we do this no matter what.
IKismetCompilerInterface& KismetCompilerModule = FModuleManager::LoadModuleChecked<IKismetCompilerInterface>( "KismetCompiler" );
KismetCompilerModule.GetCompilers().Add( &StylesheetCompiler );
FKismetCompilerContext::RegisterCompilerForBP( UBlueprint::StaticClass(), []( UBlueprint* InBlueprint, FCompilerResultsLog& InMessageLog, const FKismetCompilerOptions& InCompileOptions )
{
return MakeShared<FBYGStylesheetCompilerContext>( CastChecked<UBlueprint>( InBlueprint ), InMessageLog, InCompileOptions );
} );
FBYGRichTextUIStyle::Initialize();
FCoreDelegates::OnPostEngineInit.AddRaw( this, &FBYGRichTextEditor::OnPostEngineInit );
FGlobalTabmanager::Get()->RegisterNomadTabSpawner( BYGRichTextModule::TestTabName, FOnSpawnTab::CreateStatic( &SpawnTestTab ) )
.SetDisplayName( NSLOCTEXT( "BYGRichText", "TestTab", "BYG Rich Text Test" ) )
.SetTooltipText( NSLOCTEXT( "BYGRichText", "TestTooltipText", "Open the BYG Rich Text Test tab." ) )
.SetGroup( WorkspaceMenu::GetMenuStructure().GetDeveloperToolsMiscCategory() )
.SetIcon( FSlateIcon( FBYGRichTextUIStyle::GetStyleSetName(), "BYGRichText.TabIcon" ) );
}
void FBYGRichTextEditor::OnPostEngineInit()
{
if ( ISettingsModule* SettingsModule = FModuleManager::GetModulePtr<ISettingsModule>( "Settings" ) )
{
SettingsModule->RegisterSettings( "Project", "Plugins", "BYGRichText",
LOCTEXT( "RuntimeSettingsName", "BYG Rich Text" ),
LOCTEXT( "RuntimeSettingsDescription", "Configure the BYG Rich Text plugin" ),
GetMutableDefault<UBYGRichTextRuntimeSettings>() );
}
}
void FBYGRichTextEditor::ShutdownModule()
{
FDefaultGameModuleImpl::ShutdownModule();
if ( FSlateApplication::IsInitialized() )
{
FGlobalTabmanager::Get()->UnregisterNomadTabSpawner( BYGRichTextModule::TestTabName );
}
IKismetCompilerInterface& KismetCompilerModule = FModuleManager::LoadModuleChecked<IKismetCompilerInterface>( "KismetCompiler" );
KismetCompilerModule.GetCompilers().Remove( &StylesheetCompiler );
auto& PropertyModule = FModuleManager::LoadModuleChecked< FPropertyEditorModule >( "PropertyEditor" );
PropertyModule.UnregisterCustomClassLayout( "BYGRichTextStylesheet" );
PropertyModule.UnregisterCustomClassLayout( "BYGRichTextStyle" );
PropertyModule.UnregisterCustomClassLayout( "BYGRichTextBlock" );
FBYGRichTextUIStyle::Shutdown();
if ( UObjectInitialized() )
{
if ( ISettingsModule* SettingsModule = FModuleManager::GetModulePtr<ISettingsModule>( "Settings" ) )
{
SettingsModule->UnregisterSettings( "Project", "Plugins", "BYGRichText" );
}
}
}
#undef LOCTEXT_NAMESPACE
IMPLEMENT_GAME_MODULE( FBYGRichTextEditor, BYGRichTextEditor );
|
51146106d0581fc736faf2e59a02c2c146e973bc
|
13afaa3e0b5a214f9e8e0fc5bb79a55ff7edec49
|
/OrderParser.h
|
be85b4d79fa6e0006cd3f8720eea11859a380652
|
[] |
no_license
|
shaurya0/Orderbook
|
165d5bbcfccdd46464ff4133266ca5f7496d7437
|
769adfb38f04c3d8dbda2a7c50c639af9aecc9f6
|
refs/heads/master
| 2021-01-17T19:55:52.447850
| 2016-09-18T08:31:45
| 2016-09-18T08:31:45
| 68,408,997
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,935
|
h
|
OrderParser.h
|
#pragma once
#include <map>
#include <stdint.h>
#include <boost/lexical_cast.hpp>
#include <boost/tokenizer.hpp>
#include <boost/variant.hpp>
#include <string>
#include "PricerCommon.h"
namespace Pricer
{
enum class ADD_ORDER_TYPE{ BID, ASK };
enum class ORDER_TYPE{ ADD, REDUCE };
struct AddOrder
{
ADD_ORDER_TYPE order_type;
uint32_t limit_price;
};
struct ReduceOrder
{
uint32_t price;
};
struct Order
{
ORDER_TYPE type;
uint32_t milliseconds;
std::string id;
uint32_t size;
boost::variant<AddOrder, ReduceOrder> _order;
};
class OrderParser
{
public:
static std::map<char, ADD_ORDER_TYPE> char_to_add_order;
static std::map<char, ORDER_TYPE> char_to_order;
private:
using tokenizer = boost::tokenizer<boost::char_separator<char>>;
using token_iterator = tokenizer::iterator;
template<typename Target>
static bool try_parse_token( token_iterator &token, Target& result )
{
if (boost::conversion::try_lexical_convert(*token, result))
{
++token;
return true;
}
return false;
}
public:
static Pricer::ErrorCode parse_order(const std::string &order_str, Order &order)
{
if (order_str.empty())
return ErrorCode::PARSE_FAILED;
boost::char_separator<char> sep{ " " };
tokenizer tok{ order_str, sep };
auto it = tok.begin();
if (!try_parse_token(it, order.milliseconds))
return ErrorCode::PARSE_FAILED;
char order_type;
if (!try_parse_token(it, order_type))
return ErrorCode::PARSE_FAILED;
if( OrderParser::char_to_order.end() == OrderParser::char_to_order.find(order_type) )
return ErrorCode::PARSE_FAILED;
order.type = OrderParser::char_to_order.at(order_type);
if (!try_parse_token(it, order.id))
return ErrorCode::PARSE_FAILED;
switch (order.type)
{
case ORDER_TYPE::ADD:
{
AddOrder add_order;
char add_order_type_c;
if (!try_parse_token(it, add_order_type_c))
return ErrorCode::PARSE_FAILED;
if( OrderParser::char_to_add_order.end() == OrderParser::char_to_add_order.find(add_order_type_c) )
return ErrorCode::PARSE_FAILED;
add_order.order_type = OrderParser::char_to_add_order.at(add_order_type_c);
double limit_price;
if (!try_parse_token(it, limit_price))
return ErrorCode::PARSE_FAILED;
add_order.limit_price = Utils::convert_price(limit_price);
order._order = add_order;
if (!try_parse_token(it, order.size))
return ErrorCode::PARSE_FAILED;
break;
}
case ORDER_TYPE::REDUCE:
{
if (!try_parse_token(it, order.size))
return ErrorCode::PARSE_FAILED;
order._order = ReduceOrder{};
break;
}
}
return ErrorCode::NONE;
}
};
std::map<char, ADD_ORDER_TYPE> OrderParser::char_to_add_order = { { 'B', ADD_ORDER_TYPE::BID }, { 'S', ADD_ORDER_TYPE::ASK } };
std::map<char, ORDER_TYPE> OrderParser::char_to_order = { { 'A', ORDER_TYPE::ADD }, { 'R', ORDER_TYPE::REDUCE } };
}
|
1c1abc18d996d29b883a637737168bae11aa3c53
|
c920079b644668fcea120937ec7bec392d2029bd
|
/B4---C++-Programming/cpp_plazza/includes/Graphic.hh
|
c2edd3dc1f1304ac3d42048902eb7bdf12c006e7
|
[] |
no_license
|
Ankirama/Epitech
|
d23fc8912d19ef657b925496ce0ffcc58dc51d3b
|
3690ab3ec0c8325edee1802b6b0ce6952e3ae182
|
refs/heads/master
| 2021-01-19T08:11:27.374033
| 2018-01-03T10:06:20
| 2018-01-03T10:06:20
| 105,794,978
| 0
| 5
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,617
|
hh
|
Graphic.hh
|
//
// Graphic.hh for in /home/teyssa_r/rendu/cpp_plazza/includes
//
// Made by Raphael Teyssandier
// Login <teyssa_r@epitech.net>
//
// Started on Wed Apr 15 00:16:59 2015 Raphael Teyssandier
// Last update Sun Apr 26 18:07:38 2015 Raphael Teyssandier
//
#ifndef GRAPHIC_HH_
# define GRAPHIC_HH_
# define NB_STATUS_CMD 3
# define NB_STATUS_KIT 3
# define PNG_ZERO "./src/graphic/zen1.png"
# include <QConstString>
# include <QApplication>
# include <QPushButton>
# include <QTableWidget>
# include <QHeaderView>
# include <QGridLayout>
# include <QMenuBar>
# include <QMessageBox>
# include <QWidget>
# include <QLabel>
# include <QLineEdit>
# include <QComboBox>
# include <QVariant>
# include <QSpinBox>
# include <iostream>
# include <sstream>
# include "IIngredient.hh"
# include "IPizza.hh"
# include "Command.hh"
typedef enum e_status_kit {
WAIT_KIT,
ONWORK,
FINISH_KIT
} t_status_kit;
class myWindow : public QWidget {
Q_OBJECT
public:
myWindow(std::vector<IIngredient *> &);
~myWindow();
QTableWidget *getTableCommand() const;
QTableWidget *getTableKitchen() const;
QGridLayout *getGrid() const;
std::vector<Command *> getCommand() const;
void menuBar();
void addKitchen(const int,
const long,
const int,
const t_status_kit);
QTableWidgetItem *insertItem(const std::string &) const;
std::string getTall(const int) const;
void createActions();
QWidget *newWindow(const std::string &) const;
void refreshCommand();
QTableWidget *initTable(QTableWidget *, int, QStringList);
public slots:
void newPizza();
void newCommand();
void visPizza();
void visIngredient();
void credit();
void addCommand();
void addCommand(std::string const &, std::string const &, const int);
void addPizza();
void parseLineEdit();
private:
QWidget m_window;
QTableWidget *m_tableCommand;
QTableWidget *m_tableKitchen;
QGridLayout *m_grid;
QMenuBar *m_menuBar;
int m_nbCommand;
QAction *m_newPizza;
QAction *m_visPizza;
QAction *m_visIngredient;
QAction *m_aPropos;
QAction *m_aCommand;
QLineEdit *m_line;
QWidget *win_command;
QGridLayout *grid_command;
QLineEdit *edit_command;
QPushButton *but_command;
QComboBox *box_command;
QSpinBox *spin_command;
std::vector<Command *> m_command;
std::vector<IIngredient *> m_ingredient;
std::vector<IPizza *> m_pizza;
};
template <typename T>
std::string numberToString(T number)
{
std::stringstream ss;
ss << number;
return (ss.str());
}
#endif /* !GRAPHIC_HH_ */
|
e5f7cb7760f4fc00f114fbc994a758350fe5b14d
|
601a4d73420f629d338cf7568d188e5fb7714bb3
|
/nblapp/ops.hpp
|
4b59b9ba3ee11ebecc7f02862f018673f8b718ac
|
[] |
no_license
|
stevevista/nbla-go-zero
|
281921cb1e10a29dd10895b833c78d98ea0d675f
|
b5111cd81e4509ad48a2e40a1a405cad0a1cbdaf
|
refs/heads/master
| 2021-05-03T06:21:12.578440
| 2018-03-10T03:52:10
| 2018-03-10T03:52:10
| 120,592,960
| 0
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,650
|
hpp
|
ops.hpp
|
#pragma once
#include "variable.hpp"
namespace nblapp {
using std::string;
enum PAD_TYPE {
PAD_SAME,
PAD_VALID
};
namespace nn {
NPP_API Variable sink(const vector<Variable>& vars, bool one_input_grad);
NPP_API Variable identity(const Variable& x);
NPP_API Variable add(const Variable& x, double scalar);
NPP_API Variable add(const Variable& a, const Variable& b, bool inplace=true);
NPP_API Variable sub(double scalar, const Variable& x);
NPP_API Variable sub(const Variable& a, const Variable& b);
NPP_API Variable mul(const Variable& a, const Variable& b);
NPP_API Variable mul(const Variable& x, double scalar);
NPP_API Variable div(const Variable& a, const Variable& b);
NPP_API Variable div(const Variable& x, double scalar);
NPP_API Variable div(double scalar, const Variable& x);
NPP_API Variable log(const Variable& x);
NPP_API Variable relu(const Variable& x, const bool inplace=true);
NPP_API Variable tanh(const Variable& x);
NPP_API Variable sigmoid(const Variable& x);
NPP_API Variable softmax(const Variable& x, int axis=-1);
NPP_API Variable avgpool(const Variable& x, const std::vector<int>& kernel, const std::vector<int>& stride);
NPP_API Variable maxpool(const Variable& x, const std::vector<int>& kernel, const std::vector<int>& stride);
NPP_API Variable reduce_mean(const Variable& x, vector<int> axes={}, bool keep_dim=false);
NPP_API Variable cross_entropy(const Variable& x, const Variable& y, vector<int> axes={});
NPP_API Variable softmax_cross_entropy(const Variable& x, const Variable& y, int axis=-1);
NPP_API Variable sigmoid_cross_entropy(const Variable& x, const Variable& y);
NPP_API Variable squared_error(const Variable& x, const Variable& y);
NPP_API Variable fully_connected(const string& name, const Variable& x,
const int outputs,
bool has_bias = true, int axis = 1);
NPP_API Variable conv2d(const string& name, const Variable& x,
const int filters, const std::vector<int>& kernel, const std::vector<int>& stride, const PAD_TYPE pad_type = PAD_SAME,
bool has_bias = false,
int axis = 1);
NPP_API Variable batchnorm(const string& name, const Variable& x, bool batch_stat,
int axis=1,
float decay_rate=0.9, float eps=1e-05);
}
template <typename T>
inline Variable operator+(const Variable& a, T b) {
return nn::add(a, (float)b);
}
template <typename T>
inline Variable operator+(T b, const Variable& a) {
return nn::add(a, (float)b);
}
inline Variable operator+(const Variable& a, const Variable& b) {
return nn::add(a, b, false);
}
template <typename T>
inline Variable operator-(const Variable& a, T b) {
return nn::add(a, -((float)b));
}
template <typename T>
inline Variable operator-(T a, const Variable& b) {
return nn::sub((float)a, b);
}
inline Variable operator-(const Variable& a, const Variable& b) {
return nn::sub(a, b);
}
template <typename T>
inline Variable operator*(const Variable& a, T b) {
return nn::mul(a, (float)b);
}
template <typename T>
inline Variable operator*(T b, const Variable& a) {
return nn::mul(a, (float)b);
}
inline Variable operator*(const Variable& a, const Variable& b) {
return nn::mul(a, b);
}
template <typename T>
inline Variable operator/(const Variable& a, T b) {
return nn::mul(a, 1.0f/(float)b);
}
template <typename T>
inline Variable operator/(T a, const Variable& b) {
return nn::div((float)a, b);
}
inline Variable operator/(const Variable& a, const Variable& b) {
return nn::div(a, b);
}
}
|
53eb1d5ba8bd24c8af5028bb3498fb841dec339f
|
a7f6bcb06c1f65820ad0c98a1fb6f3d5ca73d0c8
|
/src/Core/Controller/Controller.h
|
3d94e36f5f6c34564b4395289b6a8b8f60bdca85
|
[
"Apache-2.0"
] |
permissive
|
luoxz-ai/cashew
|
b4a73a0b84040dc44f1ec83f7c174f8bc3595ab6
|
001e1d165051fd960425cfdf1d2b0895d9f040a8
|
refs/heads/master
| 2021-12-13T21:58:34.830472
| 2016-03-06T14:52:24
| 2016-03-06T14:52:24
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,313
|
h
|
Controller.h
|
/*
Shipeng Xu
billhsu.x@gmail.com
*/
#pragma once
#include <iostream>
#include <vector>
#include "Core/Math/Vectors.h"
#include "Core/Basic/Plane.h"
#include "Core/Basic/Ray.h"
#include "Core/Basic/LineSegment.h"
#include "Core/Math/Matrices.h"
class State;
class Camera;
class UI;
class lua_State;
class Texture;
class Controller {
public:
static Controller& getInstance() {
static Controller instance;
return instance;
}
void MouseButton(int button, int state, int x, int y);
void MouseLeftDrag(int x, int y, int dx, int dy);
void MouseRightDrag(int x, int y, int dx, int dy);
void PassiveMotion(int x, int y);
enum { KEY_UP, KEY_DOWN };
void Keyboard(unsigned char key, unsigned char status);
void update(float timeDelta);
void render();
void init();
void resize(int _width, int _heigth);
static void undoLastOperation();
static void redoLastOperation();
static Plane currPlane; // Plane to draw
static Vector3 currPoint;
static bool bCurrPoint;
static LineSegment currLine;
static bool bCurrLine;
static bool bMoveCenterMode;
static bool bPencilMode;
int status;
static int windowWidth, windowHeight;
static Matrix4 modelView;
static Matrix4 projection;
static int originWidth, originHeight;
static int mouseX, mouseY;
static int mouseButton, mouseState; // mouse status
static State* state_idle;
static State* state_select_plane;
static State* state_draw;
static State* state_delete;
static State* state_mirror;
enum {
MIRROR_MODE_X = 0x00000001,
MIRROR_MODE_Y = 0x00000002,
MIRROR_MODE_Z = 0x00000004,
MIRROR_MODE_NONE = 0x00000000
};
static int mirrorMode;
Camera* camera;
bool getCameraPoint(Vector3& p, const Plane& plane);
Ray getCameraRay();
static bool enableLight;
static Vector3 rotate;
static lua_State* luaState;
enum {
BTN_ID_DOC_NEW = 10,
BTN_ID_DOC_OPEN,
BTN_ID_DOC_SAVE,
BTN_ID_STANDARD_VIEW,
BTN_ID_MOVE_CENTER,
BTN_ID_UNDO,
BTN_ID_DELETE_LINE,
BTN_ID_MIRROR
};
private:
Controller();
~Controller();
Controller(Controller const&);
void operator=(Controller const&);
};
|
dc105bacd491be1ebcd1ff54208077dda7053b2b
|
e827593d2e724652bf8e62fb18b7ffaea747087a
|
/MMBlocks/xaeBlockScene.h
|
396d7a809c8b8f7237c09a2d57a02bf9355e3be1
|
[] |
no_license
|
cnsuhao/xaengine
|
68c95d10a00bee8e9178f0ea2c28e4a9c559bb96
|
85723ecdaabaffad5451c74c9848dc913b0f3b91
|
refs/heads/master
| 2021-05-27T01:02:49.663844
| 2013-10-16T07:45:58
| 2013-10-16T07:45:58
| null | 0
| 0
| null | null | null | null |
GB18030
|
C++
| false
| false
| 3,101
|
h
|
xaeBlockScene.h
|
#ifndef XAEBLOCKSCENE_H
#define XAEBLOCKSCENE_H
#pragma once
#include <hgesprite.h>
#include <xaeSceneObject.h>
#include "xaeBlockTreasure.h"
#include <hge/hgefont.h>
struct coor
{
float x, y;
coor() { x = y = 0.0f; }
coor(float _x, float _y) { x = _x, y = _y; }
};
enum XAE_BLOCK_PLAY_STATUS
{
XBPS_READY,
XBPS_PLAYING,
XBPS_WIN,
XBPS_LOSE,
XBPS_PAUSE
};
class xaeBlockScene : public xaeSceneObject
{
public:
xaeBlockScene(void);
virtual ~xaeBlockScene(void);
/** 载入关卡 */
bool loadLevel(string levelName);
/** 逻辑函数 */
virtual bool update(float fDT);
/** 渲染函数 */
virtual bool render();
private:
/** 判断纹理某个分块是否全透明 */
bool blockTransparent(HTEXTURE hTex, int x, int y, int w, int h);
/** 纹理的某个分块与当下小球位置的碰撞检测 */
coor collisionCheck(HTEXTURE hTex, int x, int y, int w, int h);
/** 小球与分块有碰撞,重新设置速度向量 */
void setRebound(coor c);
/** 载入资源 */
void __loadResource();
private:
string m_szLevelName; ///< 关卡名字
HTEXTURE m_hTexNake; ///< 裸体纹理
HTEXTURE m_hTexClothHot; ///< 衣服热点图片纹理
xaeSprite* m_pNake; ///< 裸体精灵
xaeSprite* m_pCloth; ///< 衣服精灵
DWORD m_dwFlapNum; ///< 挡板方块数量
float m_fFlapX; ///< 挡板x轴
float m_fFlapY; ///< 挡板y轴
xaeSprite* m_pFlap; ///< 挡板精灵
DWORD m_dwBlockLeft; ///< 剩余的砖块
bool m_bClothes[600][600]; ///< 各砖块的存活状态
float m_fBallSpeedX; ///< 球速度x矢量
float m_fBallSpeedY; ///< 球速度y矢量
float m_fBallX; ///< 小球x轴
float m_fBallY; ///< 小球y轴
xaeSprite* m_pBall; ///< 小球精灵
xaeSprite* m_pLoseBG; ///< 输了的黑屏精灵
XAE_BLOCK_PLAY_STATUS m_emStatus; ///< 游戏状态
xaeBlockTreasure m_Treasure; ///< 道具
xaeGUIObject* m_pGUI; ///< GUI
hgeFont* m_pScoreFont; ///< 分数字体
xaeFont* m_pLevelFont; ///< 关卡字体
};
#endif
|
ccb06b61098869ce4d100a8aed3c4fc552aa0af1
|
47035370d10409d30ce225fe4eb7598b85572b5d
|
/AS/AS/BJ_14502_연구소.cpp
|
1050c902200e4ea11c0761d0193d2e0fde4efd73
|
[] |
no_license
|
GOEON/Algorithm
|
7ed75a5f963236332ac72957bcfb77d280c1b747
|
1ca7f40cbae62a317db96ea9f77a4d65b99f72e1
|
refs/heads/master
| 2020-04-23T19:10:30.783144
| 2019-04-15T12:55:54
| 2019-04-15T12:55:54
| 171,393,570
| 0
| 0
| null | null | null | null |
UHC
|
C++
| false
| false
| 1,536
|
cpp
|
BJ_14502_연구소.cpp
|
// 190404
// https://www.acmicpc.net/problem/14502
#include <iostream>
#include <cstring>
#include <algorithm>
#include <vector>
#include <queue>
using namespace std;
int n, m;
int a[9][9];
int b[9][9];
int dr[] = { -1,1,0,0 };
int dc[] = { 0,0,-1,1 };
int total;
int ans;
vector < pair<int, int>> v;
queue<pair<int, int>> q;
int spread()
{
queue<pair<int, int>> q2 = q;
int ret = 0;
while (!q2.empty()) {
int cr = q2.front().first;
int cc = q2.front().second;
q2.pop();
for (int k = 0; k < 4; k++) {
int nr = cr + dr[k];
int nc = cc + dc[k];
if (nr < 1 || nc < 1 || nr > n || nc > m) continue;
if (b[nr][nc] == 1 || b[nr][nc] == 2) continue;
b[nr][nc] = 2; ret += 1;
q2.push({ nr,nc });
}
}
return ret;
}
void virus()
{
vector <int> v2(v.size());
v2[v2.size() - 1] = 1; v2[v2.size() - 2] = 1; v2[v2.size() - 3] = 1;
total -= 3;
ans = 0;
do {
memcpy(b, a, sizeof(a));
for (int i = 0; i < v2.size(); i++) {// 벽 세개 정하기
if (v2[i] == 1) {
b[v[i].first][v[i].second] = 1;
}
}
int temp = spread(); // 바이러스 퍼뜨리기
if (ans < total - temp) ans = total - temp;
} while (next_permutation(v2.begin(), v2.end()));
}
int main()
{
freopen("sample_input.txt", "r", stdin);
cin >> n >> m;
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= m; j++) {
cin >> a[i][j];
if (a[i][j] == 0) {
v.push_back({ i,j });
total += 1;
}
else if (a[i][j] == 2) {
q.push({ i,j });
}
}
}
virus();
cout << ans << '\n';
return 0;
}
|
20dd85279b41076e739c9be1862666ffd9abe5c1
|
1e1b7e37f60ca122f50a2783b50cec74ff54e0f4
|
/src/synth/soundGenerators/SinOsc.cpp
|
723cdb7d1cff77f7a2eec3baf762cd9e998e04fe
|
[] |
no_license
|
triss/earSight-iOS
|
0c5a11629963b3c19f6cd41515ac0b1296b3ba5c
|
e7bc8910d0d138a7e6f73364cdab65c0c79ca879
|
refs/heads/master
| 2021-01-01T06:39:05.098348
| 2014-03-11T20:22:44
| 2014-03-11T20:22:44
| 17,574,408
| 1
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 713
|
cpp
|
SinOsc.cpp
|
#include "SinOsc.h"
SinOsc::SinOsc(float freq, float volume) {
phase = 0.0f;
setFreq(freq);
setVolume(volume);
}
void SinOsc::setFreq(float f) {
phaseAdder = (f / (float) SAMPLE_RATE) * TWO_PI;
}
void SinOsc::addAudioOut(float * output, int bufferSize, int nChannels) {
// sin (n) seems to have trouble when n is very large, so we
// keep phase in the range of 0-TWO_PI like this:
while (phase > TWO_PI){
phase -= TWO_PI;
}
// populate sound buffer
for (int i = 0; i < bufferSize; i++){
// step along sine wave
phase += phaseAdder;
float sample = sin(phase);
// add values to output
output[i * nChannels ] += sample * volume;
output[i * nChannels + 1] += sample * volume;
}
}
|
25536f9cc54748991cb6289d776c64a667daab49
|
6f05f7d5a67b6bb87956a22b988067ec772ba966
|
/data/train/cpp/9981d57e58e2128ade22df81c30624db10bc0b39DataModel.cpp
|
9981d57e58e2128ade22df81c30624db10bc0b39
|
[
"MIT"
] |
permissive
|
harshp8l/deep-learning-lang-detection
|
93b6d24a38081597c610ecf9b1f3b92c7d669be5
|
2a54293181c1c2b1a2b840ddee4d4d80177efb33
|
refs/heads/master
| 2020-04-07T18:07:00.697994
| 2018-11-29T23:21:23
| 2018-11-29T23:21:23
| 158,597,498
| 0
| 0
|
MIT
| 2018-11-21T19:36:42
| 2018-11-21T19:36:41
| null |
UTF-8
|
C++
| false
| false
| 699
|
cpp
|
9981d57e58e2128ade22df81c30624db10bc0b39DataModel.cpp
|
#include "DataModel.h"
DataModel* DataModel::m_pInstance = nullptr;
int DataModel::maxUnlock;
bool DataModel::isMusic = true;
bool DataModel::isSound = true;
bool DataModel::isShowTeaching = true;
bool DataModel::isFirstGame = true;
bool DataModel::isActivatingGame = false;
Vector<WayPoint*> DataModel::m_wayPoints;
Vector<Wave*> DataModel::m_waves;
DataModel::DataModel()
{
_gameLayer = nullptr;
_gameHUDLayer = nullptr;
}
DataModel::~DataModel()
{
}
DataModel* DataModel::getInstance()
{
if (m_pInstance == nullptr)
{
m_pInstance = new DataModel();
m_pInstance->initDataModel();
return m_pInstance;
}
return m_pInstance;
}
void DataModel::initDataModel()
{
maxUnlock = 1;
}
|
42cb8a5124762adeb14b979e7cbc7d037d1b2123
|
2bcd0a94bf08bc01537559b76d78f43b5faa12b0
|
/autotests/signunsignedfieldtest.cpp
|
3931c8055961816208ff7610c9188ab84e4f4418
|
[] |
no_license
|
KDE/okular
|
ed140372e6482711adf43aa194ce396b611ed7d2
|
22f500fb6f9707a9e1a966b28bc284f831646dd1
|
refs/heads/master
| 2023-08-25T05:01:29.025425
| 2023-08-21T01:44:09
| 2023-08-21T01:44:09
| 42,731,366
| 671
| 164
| null | 2023-08-20T21:06:11
| 2015-09-18T15:43:52
|
C++
|
UTF-8
|
C++
| false
| false
| 3,704
|
cpp
|
signunsignedfieldtest.cpp
|
/*
SPDX-FileCopyrightText: 2022 Albert Astals Cid <aacid@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#include <QDialogButtonBox>
#include <QLineEdit>
#include <QMimeDatabase>
#include <QPushButton>
#include <QTemporaryFile>
#include <QTest>
#include <QTimer>
#include "../core/document.h"
#include "../core/form.h"
#include "../core/page.h"
#include "../settings_core.h"
class EnterPasswordDialogHelper : public QObject
{
Q_OBJECT
public:
EnterPasswordDialogHelper()
{
QTimer::singleShot(0, this, &EnterPasswordDialogHelper::enterPassword);
}
void enterPassword()
{
QWidget *dialog = qApp->activeModalWidget();
if (!dialog) {
QTimer::singleShot(0, this, &EnterPasswordDialogHelper::enterPassword);
return;
}
QLineEdit *lineEdit = dialog->findChild<QLineEdit *>();
lineEdit->setText(QStringLiteral("fakeokular"));
QDialogButtonBox *buttonBox = dialog->findChild<QDialogButtonBox *>();
buttonBox->button(QDialogButtonBox::Ok)->click();
}
};
class SignUnsignedFieldTest : public QObject
{
Q_OBJECT
private Q_SLOTS:
void initTestCase();
void init();
void cleanup();
void testSignUnsignedField();
private:
Okular::Document *m_document;
};
void SignUnsignedFieldTest::initTestCase()
{
QStandardPaths::setTestModeEnabled(true);
Okular::SettingsCore::instance(QStringLiteral("signunsignedfieldtest"));
KConfig cfg(QStringLiteral("okular-generator-popplerrc"));
KConfigGroup g = cfg.group(QStringLiteral("Signatures"));
g.writeEntry(QStringLiteral("UseDefaultCertDB"), false);
g.writeEntry(QStringLiteral("DBCertificatePath"), "file://" KDESRCDIR "data/fake_okular_certstore");
m_document = new Okular::Document(nullptr);
}
void SignUnsignedFieldTest::init()
{
const QString testFile = QStringLiteral(KDESRCDIR "data/hello_with_dummy_signature.pdf");
QMimeDatabase db;
const QMimeType mime = db.mimeTypeForFile(testFile);
QCOMPARE(m_document->openDocument(testFile, QUrl(), mime), Okular::Document::OpenSuccess);
}
void SignUnsignedFieldTest::cleanup()
{
m_document->closeDocument();
}
void SignUnsignedFieldTest::testSignUnsignedField()
{
const QList<Okular::FormField *> forms = m_document->page(0)->formFields();
QCOMPARE(forms.count(), 1);
Okular::FormFieldSignature *ffs = dynamic_cast<Okular::FormFieldSignature *>(forms.first());
QCOMPARE(ffs->signatureType(), Okular::FormFieldSignature::UnsignedSignature);
const Okular::CertificateStore *certStore = m_document->certificateStore();
bool userCancelled, nonDateValidCerts;
{
EnterPasswordDialogHelper helper;
const QList<Okular::CertificateInfo> &certs = certStore->signingCertificatesForNow(&userCancelled, &nonDateValidCerts);
QCOMPARE(certs.count(), 1);
}
Okular::NewSignatureData data;
data.setCertNickname(QStringLiteral("fake-okular"));
QTemporaryFile f;
f.open();
QVERIFY(ffs->sign(data, f.fileName()));
m_document->closeDocument();
QMimeDatabase db;
const QMimeType mime = db.mimeTypeForFile(f.fileName());
QCOMPARE(m_document->openDocument(f.fileName(), QUrl(), mime), Okular::Document::OpenSuccess);
const QList<Okular::FormField *> newForms = m_document->page(0)->formFields();
QCOMPARE(newForms.count(), 1);
ffs = dynamic_cast<Okular::FormFieldSignature *>(newForms.first());
QCOMPARE(ffs->signatureType(), Okular::FormFieldSignature::AdbePkcs7detached);
QCOMPARE(ffs->signatureInfo().signerName(), QStringLiteral("FakeOkular"));
}
QTEST_MAIN(SignUnsignedFieldTest)
#include "signunsignedfieldtest.moc"
|
5963e15e858effacfac7e42ba3a018864799c378
|
c41ea8faad0e136bd5f1a33b5f4d97d733a50a01
|
/Engine/src/Ridge/Math/Vector2.h
|
9b2ac1f6dd916dd5a27dd694239e19db75246b49
|
[] |
no_license
|
Dragon9815/Ridge
|
f8064452d8f8c9f2a18f73fb0f52135d06483fdb
|
d87e34f66105348409de628644fbc3291683d590
|
refs/heads/master
| 2020-05-04T18:02:42.935564
| 2019-04-03T17:19:08
| 2019-04-03T17:19:08
| 179,336,955
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 5,130
|
h
|
Vector2.h
|
#pragma once
#include <ostream>
#include <cmath>
#include <stdexcept>
namespace Ridge {
// Forward declarations ----------------------------
template<typename T> class Vector3;
template<typename T> class Vector4;
// -------------------------------------------------
template<typename T = float>
class Vector2 {
public:
// Implicit basic constructors
Vector2()
: Vector2<T>(0, 0) {}
Vector2(const Vector2<T>& v)
= default;
// Explicit basic constructors
explicit Vector2(T scalar)
: x(scalar)
, y(scalar)
{}
Vector2(T x, T y)
: x(x)
, y(y)
{}
// Conversion constructors
template<typename A, typename B>
Vector2(A x, B y)
: x(static_cast<T>(x))
, y(static_cast<T>(y))
{}
// Conversion Vector constructors
template<typename U>
Vector2(const Vector2<U>& v)
: x(static_cast<T>(v.x))
, y(static_cast<T>(v.y))
{}
template<typename U>
Vector2(const Vector3<U>& v)
: x(static_cast<T>(v.x))
, y(static_cast<T>(v.y))
{}
template<typename U>
Vector2(const Vector4<U>& v)
: x(static_cast<T>(v.x))
, y(static_cast<T>(v.y))
{}
// Default assignment operator
Vector2<T>& operator=(const Vector2& v)
= default;
// Unary operators
inline Vector2<T> operator+() const
{
return *this;
}
inline Vector2<T> operator-() const
{
return Vector2<T>(0) - *this;
}
// Component access operators
template<typename U>
inline T& operator[](int i)
{
switch (i) {
case 0:
return x;
case 1:
return y;
default:
throw std::runtime_error("index i out of bounds");
}
}
inline const T& operator[](int i) const
{
switch (i) {
case 0:
return x;
case 1:
return y;
default:
throw std::runtime_error("index i out of bounds");
}
}
// Vector functions
inline T Length() const
{
return static_cast<T>(std::sqrt(x*x + y*y));
}
inline Vector2<T> Normalize() const
{
return *this / Length();
}
inline T Dot(const Vector2<T>& b) const
{
return x * b.x + y * b.y;
}
public:
union {
struct { T x, y; };
struct { T r, g; };
};
};
// Arithmetic operators
// Add -----------------------------------------------------------------------------------
template<typename A, typename B>
inline Vector2<A> operator+(const Vector2<A>& a, const Vector2<B>& b)
{
return Vector2<A>(
a.x + static_cast<A>(b.x),
a.y + static_cast<A>(b.y));
}
template<typename A, typename B>
inline Vector2<A> operator+(const Vector2<A>& a, B scalar)
{
return Vector2<A>(
a.x + static_cast<A>(scalar),
a.y + static_cast<A>(scalar));
}
template<typename A, typename B>
inline Vector2<B> operator+(A scalar, const Vector2<B>& b)
{
return Vector2<B>(
static_cast<B>(scalar) + b.x,
static_cast<B>(scalar) + b.y);
}
// Subtract ------------------------------------------------------------------------------
template<typename A, typename B>
inline Vector2<A> operator-(const Vector2<A>& a, const Vector2<B>& b)
{
return Vector2<A>(
a.x - static_cast<A>(b.x),
a.y - static_cast<A>(b.y));
}
template<typename A, typename B>
inline Vector2<A> operator-(const Vector2<A>& a, B scalar)
{
return Vector2<A>(
a.x - static_cast<A>(scalar),
a.y - static_cast<A>(scalar));
}
template<typename A, typename B>
inline Vector2<B> operator-(A scalar, const Vector2<B>& b)
{
return Vector2<B>(
static_cast<B>(scalar) - b.x,
static_cast<B>(scalar) - b.y);
}
// Multiply ------------------------------------------------------------------------------
template<typename A, typename B>
inline Vector2<A> operator*(const Vector2<A>& a, B scalar)
{
return Vector2<A>(
a.x * static_cast<A>(scalar),
a.y * static_cast<A>(scalar));
}
template<typename A, typename B>
inline Vector2<B> operator*(A scalar, const Vector2<B>& b)
{
return Vector2<B>(
static_cast<B>(scalar) * b.x,
static_cast<B>(scalar) * b.y);
}
// Divide ------------------------------------------------------------------------------
template<typename A, typename B>
inline Vector2<A> operator/(const Vector2<A>& a, B scalar)
{
return Vector2<A>(
a.x / static_cast<A>(scalar),
a.y / static_cast<A>(scalar));
}
template<typename A, typename B>
inline Vector2<B> operator/(A scalar, const Vector2<A>& b)
{
return Vector2<B>(
static_cast<B>(scalar) / b.x,
static_cast<B>(scalar) / b.y);
}
// Comparison operators
template<typename T>
inline bool operator==(const Vector2<T>& a, const Vector2<T>& b)
{
return a.x == b.x && a.y == b.y;
}
template<typename T>
inline bool operator!=(const Vector2<T>& a, const Vector2<T>& b)
{
return a.x != b.x || a.y != b.y;
}
// Stream output operator
template<typename T>
inline std::ostream& operator<<(std::ostream& os, const Vector2<T>& v)
{
return os << "{x=" << v.x << ",y=" << v.y << "}";
}
// Typed definitions ------------------------------------
using Vector2f = Vector2<float>;
using Vector2d = Vector2<double>;
using Vector2i = Vector2<int>;
// ------------------------------------------------------
}
|
ab722b042b756c3806d51bc453dfe14188aea09a
|
a8ba578a4e60f2cd9005fa38213c0c71eaf7937c
|
/libraries/Motor/Motor.cpp
|
e53381612804972e64c6c45073b20af498715b29
|
[] |
no_license
|
twiddler/Loop-ingLouie
|
6da7ba45e07ce569b0099fc91b448ed500e485b4
|
f2eb663e5cd416e71df8af5bb731fdceb0f50ea8
|
refs/heads/master
| 2021-01-24T11:20:04.022430
| 2016-10-07T15:18:55
| 2016-10-07T15:18:55
| 70,245,895
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,443
|
cpp
|
Motor.cpp
|
/*
Kontrolliert einen Motor
*/
#include "Arduino.h"
#include "Motor.h"
// Gibt das Vorzeichen einer Variable (int, float, double, ...) zurück
// http://stackoverflow.com/a/4609795
template <typename T> int sgn(T val) {
return (T(0) < val) - (val < T(0));
}
// Zwingt den Wert n ins geschlossene Intervall [lower, upper]
// http://stackoverflow.com/a/9324086
template <typename T> T clip(const T& n, const T& lower, const T& upper) {
return max(lower, min(n, upper));
}
Motor::Motor(unsigned int pin_vorwaerts, unsigned int pin_rueckwaerts, int geschwindigkeit_max) {
pinMode(pin_vorwaerts, OUTPUT);
pinMode(pin_rueckwaerts, OUTPUT);
_pin_vorwaerts = pin_vorwaerts;
_pin_rueckwaerts = pin_rueckwaerts;
_geschwindigkeit_max = geschwindigkeit_max;
}
void Motor::geschwindigkeit_set(float geschwindigkeit) const {
boolean dreht_vorwaerts = sgn(geschwindigkeit) > 0;
int geschwindigkeit_umgerechnet_abs = clip(static_cast<int>(fabsf(geschwindigkeit) * _geschwindigkeit_max), 0, _geschwindigkeit_max); // http://stackoverflow.com/questions/2544394/c-floating-point-to-integer-type-conversions
analogWrite(_pin_rueckwaerts, !dreht_vorwaerts * geschwindigkeit_umgerechnet_abs); // für Rückwärtsdrehungen
analogWrite(_pin_vorwaerts, dreht_vorwaerts * geschwindigkeit_umgerechnet_abs); // für Vorwärtsdrehungen
Serial.println(dreht_vorwaerts ? " -->" : geschwindigkeit_umgerechnet_abs == 0.0f ? " o" : "<--");
}
|
294bb2ae872dedd229a8cb7cb8055ae9ba000b4a
|
f7f69af928ff8842b9d89ef1f0d36383fe8009b6
|
/Greedy/calculate-money-in-leetcode-bank.cpp
|
c3d33e93ba4c60977e23f0b36c4a077e9f3cfced
|
[
"MIT"
] |
permissive
|
PrakharPipersania/LeetCode-Solutions
|
f24820d2b4b911c61021e84d6b4caedc26433d4f
|
ea74534bbdcf1ca3ea4d88a1081582e0e15f50c7
|
refs/heads/master
| 2023-04-22T04:59:46.609642
| 2021-05-10T08:27:57
| 2021-05-10T08:27:57
| 277,162,852
| 4
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 240
|
cpp
|
calculate-money-in-leetcode-bank.cpp
|
class Solution {
public:
int totalMoney(int n)
{
int c=0;
for(int i=1;n;i++)
{
for(int j=i;n&&j<i+7;j++,n--)
{
c+=j;
}
}
return c;
}
};
|
72f50fe037c29c60bb2c508c08d71ce345683f55
|
dfed105fe0e5519b231a87480965548edfd398f3
|
/Client/src/hera/qtpieaction.cpp
|
c2656c8bc3b769e5d29e95559e25c5216293a775
|
[] |
no_license
|
maaooo/liangshi
|
36e38339652bb95fd95fae253efb55f73c2f1e5b
|
09711db820d2e0747e98f6542f521bd03d80fdb2
|
refs/heads/master
| 2020-03-25T19:31:58.612218
| 2017-08-19T11:27:10
| 2017-08-19T11:27:10
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 801
|
cpp
|
qtpieaction.cpp
|
#include "qtpiemenu.h"
#include "qtpieaction.h"
#if defined(_MSC_VER) && (_MSC_VER >= 1600)
#pragma execution_character_set("utf-8")
#endif
QtPieAction::QtPieAction(const QString &text, QVariant& data, QObject *receiver, const char *member):
QtPieItem(text),
_extraData(data)
{
SetType(Action);
connect(this, SIGNAL(activated()), receiver, member);
}
QtPieAction::QtPieAction(const QString &text, QObject *receiver, const char *member):
QtPieItem(text)
{
SetType(Action);
connect(this, SIGNAL(activated()), receiver, member);
}
QtPieAction::QtPieAction(const QIcon &icons, const QString &text, QObject *receiver, const char *member):
QtPieItem(icons, text)
{
SetType(Action);
connect(this, SIGNAL(activated()), receiver, member);
}
void QtPieAction::Activate()
{
Q_EMIT activated();
}
|
70187244f84cc97c829801badb115d3d57f95c37
|
f9bded2d9a311315e01c2bb1c64723c51b6d5e3e
|
/AIMEngine/ShaderManager.cpp
|
e33edb004523a68856e807425029f9be260e151b
|
[] |
no_license
|
Nekokino/D3DHybrid
|
b977c378cc3483ce757b773ab22df1a2e11976e7
|
925310114837dbb63baa5ade118304f0cca372d9
|
refs/heads/master
| 2020-04-14T13:20:37.752433
| 2019-05-31T00:55:49
| 2019-05-31T00:55:49
| 163,865,913
| 0
| 0
| null | null | null | null |
UHC
|
C++
| false
| false
| 14,389
|
cpp
|
ShaderManager.cpp
|
#include "ShaderManager.h"
#include "AIMShader.h"
#include "AIMDevice.h"
std::unordered_map<std::string, Ezptr<AIMShader>> ShaderManager::ShaderMap;
std::unordered_map<std::string, ID3D11InputLayout*> ShaderManager::InputLayoutMap;
std::unordered_map<std::string, Ezptr<ConstBuffer>> ShaderManager::ConstBufferMap;
std::vector<D3D11_INPUT_ELEMENT_DESC> ShaderManager::InputDescVec;
UINT ShaderManager::InputSize = 0;
bool ShaderManager::Init()
{
std::string Entry[ST_END] = {};
#pragma region StandardColorShader
Entry[ST_VTX] = "StandardColorVS";
Entry[ST_PIX] = "StandardColorPS";
if (false == LoadShader("StandardColorShader", TEXT("Standard.fx"), Entry, "Shader"))
{
return false;
}
// 입력 레이아웃 생성 과정
AddInputDesc("POSITION", 0, DXGI_FORMAT_R32G32B32_FLOAT, 12, 0, D3D11_INPUT_PER_VERTEX_DATA, 0);
AddInputDesc("COLOR", 0, DXGI_FORMAT_R32G32B32A32_FLOAT, 16, 0, D3D11_INPUT_PER_VERTEX_DATA, 0);
if (false == CreateInputLayout("StandardColorLayout", "StandardColorShader"))
{
return false;
}
#pragma endregion
#pragma region StandardColorNormalShader
Entry[ST_VTX] = "StandardColorNormalVS";
Entry[ST_PIX] = "StandardColorNormalPS";
if (false == LoadShader("StandardColorNormalShader", TEXT("Standard.fx"), Entry, "Shader"))
{
return false;
}
AddInputDesc("POSITION", 0, DXGI_FORMAT_R32G32B32_FLOAT, 12, 0, D3D11_INPUT_PER_VERTEX_DATA, 0);
AddInputDesc("NORMAL", 0, DXGI_FORMAT_R32G32B32_FLOAT, 12, 0, D3D11_INPUT_PER_VERTEX_DATA, 0);
AddInputDesc("COLOR", 0, DXGI_FORMAT_R32G32B32A32_FLOAT, 16, 0, D3D11_INPUT_PER_VERTEX_DATA, 0);
if (false == CreateInputLayout("StandardColorNormalLayout", "StandardColorNormalShader"))
{
return false;
}
#pragma endregion
#pragma region SkyShader
Entry[ST_VTX] = "SkyVS";
Entry[ST_PIX] = "SkyPS";
if (false == LoadShader("SkyShader", TEXT("Standard.fx"), Entry, "Shader"))
{
return false;
}
AddInputDesc("POSITION", 0, DXGI_FORMAT_R32G32B32_FLOAT, 12, 0, D3D11_INPUT_PER_VERTEX_DATA, 0);
if (false == CreateInputLayout("StandardPosLayout", "SkyShader"))
{
return false;
}
#pragma endregion
#pragma region StandardVertex3DShader
Entry[ST_VTX] = "StandardVertex3DVS";
Entry[ST_PIX] = "StandardVertex3DPS";
if (false == LoadShader("Vertex3DShader", TEXT("Standard.fx"), Entry, "Shader"))
{
return false;
}
AddInputDesc("POSITION", 0, DXGI_FORMAT_R32G32B32_FLOAT, 12, 0, D3D11_INPUT_PER_VERTEX_DATA, 0);
AddInputDesc("NORMAL", 0, DXGI_FORMAT_R32G32B32_FLOAT, 12, 0, D3D11_INPUT_PER_VERTEX_DATA, 0);
AddInputDesc("TEXCOORD", 0, DXGI_FORMAT_R32G32_FLOAT, 8, 0, D3D11_INPUT_PER_VERTEX_DATA, 0);
AddInputDesc("TANGENT", 0, DXGI_FORMAT_R32G32B32_FLOAT, 12, 0, D3D11_INPUT_PER_VERTEX_DATA, 0);
AddInputDesc("BINORMAL", 0, DXGI_FORMAT_R32G32B32_FLOAT, 12, 0, D3D11_INPUT_PER_VERTEX_DATA, 0);
AddInputDesc("BLENDWEIGHTS", 0, DXGI_FORMAT_R32G32B32A32_FLOAT, 16, 0, D3D11_INPUT_PER_VERTEX_DATA, 0);
AddInputDesc("BLENDINDICES", 0, DXGI_FORMAT_R32G32B32A32_FLOAT, 16, 0, D3D11_INPUT_PER_VERTEX_DATA, 0);
if (false == CreateInputLayout("StandardVertex3DLayout", "Vertex3DShader"))
{
return false;
}
#pragma endregion
#pragma region StandardTexNormalShader
Entry[ST_VTX] = "StandardTexNormalVS";
Entry[ST_PIX] = "Standard3DPS";
if (false == LoadShader("StandardTexNormalShader", TEXT("Standard.fx"), Entry, "Shader"))
{
return false;
}
#pragma endregion
#pragma region Standard3DShader
Entry[ST_VTX] = "Standard3DVS";
Entry[ST_PIX] = "Standard3DPS";
if (false == LoadShader("Standard3DShader", TEXT("Standard.fx"), Entry, "Shader"))
{
return false;
}
#pragma endregion
#pragma region StandardUVShader
Entry[ST_VTX] = "DebugVS";
Entry[ST_PIX] = "DebugPS";
if (false == LoadShader("DebugShader", TEXT("Debug.fx"), Entry, "Shader"))
{
return false;
}
AddInputDesc("POSITION", 0, DXGI_FORMAT_R32G32B32_FLOAT, 12, 0, D3D11_INPUT_PER_VERTEX_DATA, 0);
AddInputDesc("TEXCOORD", 0, DXGI_FORMAT_R32G32_FLOAT, 8, 0, D3D11_INPUT_PER_VERTEX_DATA, 0);
if (false == CreateInputLayout("StandardUVLayout", "DebugShader"))
{
return false;
}
#pragma endregion
#pragma region LightAccDirShader
Entry[ST_VTX] = "LightAccDirVS";
Entry[ST_PIX] = "LightAccPS";
if (false == LoadShader("LightAccDirShader", TEXT("Light.fx"), Entry, "Shader"))
{
return false;
}
#pragma endregion
#pragma region LightAccPointShader
Entry[ST_VTX] = "LightAccPointVS";
Entry[ST_PIX] = "LightAccPS";
if (false == LoadShader("LightAccPointShader", TEXT("Light.fx"), Entry, "Shader"))
{
return false;
}
#pragma endregion
#pragma region LightAccSpotShader
Entry[ST_VTX] = "LightAccSpotVS";
Entry[ST_PIX] = "LightAccPS";
if (false == LoadShader("LightAccSpotShader", TEXT("Light.fx"), Entry, "Shader"))
{
return false;
}
#pragma endregion
#pragma region LightBlendShader
Entry[ST_VTX] = "LightAccDirVS";
Entry[ST_PIX] = "LightBlendPS";
if (false == LoadShader("LightBlendShader", TEXT("Light.fx"), Entry, "Shader"))
{
return false;
}
#pragma endregion
#pragma region LightBlendRenderShader
Entry[ST_VTX] = "LightAccDirVS";
Entry[ST_PIX] = "LightBlendRenderPS";
if (false == LoadShader("LightBlendRenderShader", TEXT("Light.fx"), Entry, "Shader"))
{
return false;
}
#pragma endregion
#pragma region ColliderShader
Entry[ST_VTX] = "ColliderVS";
Entry[ST_PIX] = "ColliderPS";
if (false == LoadShader("ColliderShader", TEXT("Collider.fx"), Entry, "Shader"))
{
return false;
}
#pragma endregion
#pragma region ParticleShader
Entry[ST_VTX] = "ParticleVS";
Entry[ST_PIX] = "ParticlePS";
Entry[ST_GEO] = "ParticleGS";
if (false == LoadShader("ParticleShader", TEXT("Particle.fx"), Entry, "Shader"))
{
return false;
}
#pragma endregion
#pragma region LandScapeShader
Entry[ST_VTX] = "LandScapeVS";
Entry[ST_PIX] = "LandScapePS";
Entry[ST_GEO] = "";
if (false == LoadShader("LandScapeShader", TEXT("LandScape.fx"), Entry, "Shader"))
{
return false;
}
#pragma endregion
#pragma region UIButtonShader
Entry[ST_VTX] = "ButtonVS";
Entry[ST_PIX] = "ButtonPS";
Entry[ST_GEO] = "";
if (false == LoadShader("ButtonShader", TEXT("UI.fx"), Entry, "Shader"))
{
return false;
}
#pragma endregion
#pragma region Standard3DInstancingShader
Entry[ST_VTX] = "Standard3DInstancingVS";
Entry[ST_PIX] = "Standard3DInstancingPS";
Entry[ST_GEO] = "";
if (false == LoadShader("Standard3DInstancingShader", TEXT("Standard.fx"), Entry, "Shader"))
{
return false;
}
AddInputDesc("POSITION", 0, DXGI_FORMAT_R32G32B32_FLOAT, 12, 0, D3D11_INPUT_PER_VERTEX_DATA, 0);
AddInputDesc("NORMAL", 0, DXGI_FORMAT_R32G32B32_FLOAT, 12, 0, D3D11_INPUT_PER_VERTEX_DATA, 0);
AddInputDesc("TEXCOORD", 0, DXGI_FORMAT_R32G32_FLOAT, 8, 0, D3D11_INPUT_PER_VERTEX_DATA, 0);
AddInputDesc("TANGENT", 0, DXGI_FORMAT_R32G32B32_FLOAT, 12, 0, D3D11_INPUT_PER_VERTEX_DATA, 0);
AddInputDesc("BINORMAL", 0, DXGI_FORMAT_R32G32B32_FLOAT, 12, 0, D3D11_INPUT_PER_VERTEX_DATA, 0);
AddInputDesc("BLENDWEIGHTS", 0, DXGI_FORMAT_R32G32B32A32_FLOAT, 16, 0, D3D11_INPUT_PER_VERTEX_DATA, 0);
AddInputDesc("BLENDINDICES", 0, DXGI_FORMAT_R32G32B32A32_FLOAT, 16, 0, D3D11_INPUT_PER_VERTEX_DATA, 0);
InputSize = 0;
AddInputDesc("WORLD", 0, DXGI_FORMAT_R32G32B32A32_FLOAT, 16, 1, D3D11_INPUT_PER_INSTANCE_DATA, 1);
AddInputDesc("WORLD", 1, DXGI_FORMAT_R32G32B32A32_FLOAT, 16, 1, D3D11_INPUT_PER_INSTANCE_DATA, 1);
AddInputDesc("WORLD", 2, DXGI_FORMAT_R32G32B32A32_FLOAT, 16, 1, D3D11_INPUT_PER_INSTANCE_DATA, 1);
AddInputDesc("WORLD", 3, DXGI_FORMAT_R32G32B32A32_FLOAT, 16, 1, D3D11_INPUT_PER_INSTANCE_DATA, 1);
AddInputDesc("WORLDVIEW", 0, DXGI_FORMAT_R32G32B32A32_FLOAT, 16, 1, D3D11_INPUT_PER_INSTANCE_DATA, 1);
AddInputDesc("WORLDVIEW", 1, DXGI_FORMAT_R32G32B32A32_FLOAT, 16, 1, D3D11_INPUT_PER_INSTANCE_DATA, 1);
AddInputDesc("WORLDVIEW", 2, DXGI_FORMAT_R32G32B32A32_FLOAT, 16, 1, D3D11_INPUT_PER_INSTANCE_DATA, 1);
AddInputDesc("WORLDVIEW", 3, DXGI_FORMAT_R32G32B32A32_FLOAT, 16, 1, D3D11_INPUT_PER_INSTANCE_DATA, 1);
AddInputDesc("WORLDVIEWROT", 0, DXGI_FORMAT_R32G32B32A32_FLOAT, 16, 1, D3D11_INPUT_PER_INSTANCE_DATA, 1);
AddInputDesc("WORLDVIEWROT", 1, DXGI_FORMAT_R32G32B32A32_FLOAT, 16, 1, D3D11_INPUT_PER_INSTANCE_DATA, 1);
AddInputDesc("WORLDVIEWROT", 2, DXGI_FORMAT_R32G32B32A32_FLOAT, 16, 1, D3D11_INPUT_PER_INSTANCE_DATA, 1);
AddInputDesc("WORLDVIEWROT", 3, DXGI_FORMAT_R32G32B32A32_FLOAT, 16, 1, D3D11_INPUT_PER_INSTANCE_DATA, 1);
if (false == CreateInputLayout("Standard3DInstancingLayout", "Standard3DInstancingShader"))
{
return false;
}
#pragma endregion
#pragma region ConstBuffer
CreateConstBuffer("Transform", sizeof(TransformConstBuffer), 0, CS_VERTEX | CS_PIXEL | CS_GEOMETRY);
CreateConstBuffer("Material", sizeof(Material), 1, CS_VERTEX | CS_PIXEL);
CreateConstBuffer("Light", sizeof(LightInfo), 2, CS_VERTEX | CS_PIXEL);
CreateConstBuffer("Render", sizeof(RenderConstBuffer), 3, CS_VERTEX | CS_PIXEL);
CreateConstBuffer("Debug", sizeof(DebugConstBuffer), 9, CS_VERTEX | CS_PIXEL);
CreateConstBuffer("Collider", sizeof(Vec4), 10, CS_PIXEL);
CreateConstBuffer("Particle", sizeof(ParticleConstBuffer), 10, CS_GEOMETRY);
CreateConstBuffer("FrameAnimation", sizeof(FrameAnimationConstBuffer), 8, CS_VERTEX | CS_PIXEL | CS_GEOMETRY);
CreateConstBuffer("LandScape", sizeof(LandScapeConstBuffer), 10, CS_VERTEX | CS_PIXEL);
CreateConstBuffer("Button", sizeof(ButtonConstBuffer), 11, CS_VERTEX | CS_PIXEL);
#pragma endregion
return true;
}
void ShaderManager::Release()
{
ShaderMap.clear();
std::unordered_map<std::string, ID3D11InputLayout*>::iterator StartIter = InputLayoutMap.begin();
std::unordered_map<std::string, ID3D11InputLayout*>::iterator EndIter = InputLayoutMap.end();
for (; StartIter != EndIter; ++StartIter)
{
if (StartIter->second != nullptr)
{
StartIter->second->Release();
StartIter->second = nullptr;
}
}
InputLayoutMap.clear();
ConstBufferMap.clear();
}
bool ShaderManager::LoadShader(const std::string & _Name, const TCHAR * _FileName, std::string _Entry[ST_END], const std::string & _PathKey)
{
Ezptr<AIMShader> Shader = FindShader(_Name);
if (nullptr != Shader)
{
tassertmsg(true, "Overlapped Shader Name");
return false;
}
Shader = new AIMShader;
if (false == Shader->LoadShader(_Name, _FileName, _Entry, _PathKey))
{
tassertmsg(true, "Load Shader Failed");
return false;
}
ShaderMap.insert(std::unordered_map<std::string, Ezptr<AIMShader>>::value_type(_Name, Shader));
return true;
}
Ezptr<AIMShader> ShaderManager::FindShader(const std::string & _Name)
{
std::unordered_map<std::string, Ezptr<AIMShader>>::iterator FindIter = ShaderMap.find(_Name);
if (FindIter == ShaderMap.end())
{
return nullptr;
}
return FindIter->second;
}
void ShaderManager::AddInputDesc(const char * _Semantic, UINT _SemanticIdx, DXGI_FORMAT _Format, UINT _Size, UINT _InputSlot, D3D11_INPUT_CLASSIFICATION _Class, UINT _StepRate)
{
D3D11_INPUT_ELEMENT_DESC Desc = {};
Desc.SemanticName = _Semantic;
Desc.SemanticIndex = _SemanticIdx;
Desc.Format = _Format;
Desc.InputSlot = _InputSlot;
Desc.InputSlotClass = _Class;
Desc.InstanceDataStepRate = _StepRate;
Desc.AlignedByteOffset = InputSize;
// 총 인풋 사이즈와 다음 인풋 위치를 결정해주기 위해서 누적으로 계산해준다.
InputSize += _Size;
InputDescVec.push_back(Desc);
}
bool ShaderManager::CreateInputLayout(const std::string & _Name, const std::string & _ShaderKey)
{
ID3D11InputLayout* Layout = FindInputLayout(_Name);
if (Layout != nullptr)
{
tassertmsg(true, "Create Overlapped InputLayout");
return false;
}
Ezptr<AIMShader> Shader = FindShader(_ShaderKey);
if (nullptr == Shader)
{
tassertmsg(true, "Unexist Shader");
return false;
}
if (FAILED(GetAIMDevice->CreateInputLayout(&InputDescVec[0], (UINT)InputDescVec.size(), Shader->GetVSCode(), Shader->GetVsCodeSize(), &Layout)))
{
tassertmsg(true, "InputLayout Create Failed");
return false;
}
InputDescVec.clear();
InputSize = 0;
InputLayoutMap.insert(std::unordered_map<std::string, ID3D11InputLayout*>::value_type(_Name, Layout));
return true;
}
ID3D11InputLayout * ShaderManager::FindInputLayout(const std::string & _Name)
{
std::unordered_map<std::string, ID3D11InputLayout*>::iterator FindIter = InputLayoutMap.find(_Name);
if (FindIter == InputLayoutMap.end())
{
return nullptr;
}
return FindIter->second;
}
bool ShaderManager::CreateConstBuffer(const std::string & _Name, int _Size, int _Register, int _ConstantShader)
{
Ezptr<ConstBuffer> Buffer = FindConstBuffer(_Name);
if (Buffer != nullptr)
{
tassertmsg(true, "Overlapped ConstBuffer Name");
return false;
}
Buffer = new ConstBuffer;
Buffer->Size = _Size;
Buffer->Register = _Register;
Buffer->Constant = _ConstantShader;
Buffer->Name = _Name;
Buffer->Data = new char[_Size];
D3D11_BUFFER_DESC Desc = {};
Desc.ByteWidth = _Size;
Desc.BindFlags = D3D11_BIND_CONSTANT_BUFFER;
Desc.Usage = D3D11_USAGE_DYNAMIC;
Desc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE;
if (FAILED(GetAIMDevice->CreateBuffer(&Desc, nullptr, &Buffer->Buffer)))
{
delete Buffer->Data;
tassertmsg(true, "Create ConstBuffer Failed");
return false;
}
ConstBufferMap.insert(std::unordered_map<std::string, Ezptr<ConstBuffer>>::value_type(_Name, Buffer));
return true;
}
bool ShaderManager::UpdateConstBuffer(const std::string & _Name, void * _Data)
{
Ezptr<ConstBuffer> Buffer = FindConstBuffer(_Name);
if (Buffer == nullptr)
{
tassertmsg(true, "Invalid ConstBuffer");
return false;
}
D3D11_MAPPED_SUBRESOURCE Map = {};
GetAIMContext->Map(Buffer->Buffer, 0, D3D11_MAP_WRITE_DISCARD, 0, &Map);
memcpy(Map.pData, _Data, Buffer->Size);
GetAIMContext->Unmap(Buffer->Buffer, 0);
if (Buffer->Constant & CS_VERTEX)
{
GetAIMContext->VSSetConstantBuffers(Buffer->Register, 1, &Buffer->Buffer);
}
if (Buffer->Constant & CS_PIXEL)
{
GetAIMContext->PSSetConstantBuffers(Buffer->Register, 1, &Buffer->Buffer);
}
if (Buffer->Constant & CS_GEOMETRY)
{
GetAIMContext->GSSetConstantBuffers(Buffer->Register, 1, &Buffer->Buffer);
}
return true;
}
Ezptr<ConstBuffer> ShaderManager::FindConstBuffer(const std::string & _Name)
{
std::unordered_map<std::string, Ezptr<ConstBuffer>>::iterator FindIter = ConstBufferMap.find(_Name);
if (FindIter == ConstBufferMap.end())
{
return nullptr;
}
return FindIter->second;
}
|
4daa1250e645ec7a2aa5c7110d7db9bdc6fa666e
|
9497c1c9cfbdfd4f79328cf5e4757d79dd9fdd21
|
/tests/archive/example.hpp
|
73bd1ab3306b3dbd5102818e807b468e67ff2758
|
[
"MIT"
] |
permissive
|
NateChambers/duct-cpp
|
017233dce8deb7ffeef3b38ca64bb3a917a7aebe
|
0411a392956a8749ecb0908fda60d81a46bcdedb
|
refs/heads/master
| 2021-01-16T22:55:54.288681
| 2011-11-01T20:42:01
| 2011-11-01T20:42:01
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,210
|
hpp
|
example.hpp
|
#include <list>
#include <unicode/unistr.h>
#include <duct/archive.hpp>
#include <duct/filestream.hpp>
class MyEntry;
class MyArchive;
typedef std::list<MyEntry*> MyEntryList;
class MyArchive : public duct::Archive {
public:
MyArchive(const icu::UnicodeString& path);
~MyArchive();
const char* getIdentifier() const;
size_t getMetadataSize() const;
size_t getHeaderSize() const;
unsigned int getCount() const;
MyEntryList& getList();
void clear();
bool deserializeUserspace();
bool serializeUserspace();
bool readEntries();
bool writeEntries();
void add(MyEntry* e);
private:
MyEntryList _list;
};
// This'll handle its own data
class MyEntry : public duct::Entry {
public:
MyEntry();
MyEntry(const icu::UnicodeString& path);
~MyEntry();
void freeData();
char* getData();
icu::UnicodeString& getPath();
unsigned int getMetadataSize();
duct::Stream* open(duct::Stream* stream);
void close();
bool deserializeUserspace(duct::Stream* stream);
bool serializeUserspace(duct::Stream* stream);
bool read(duct::Stream* stream);
bool write(duct::Stream* stream);
void load(const icu::UnicodeString& path);
void save();
private:
icu::UnicodeString _path;
char* _data;
};
|
27b05dfcb8a23ec268a0bb7166a6fa2c30cb6641
|
7dba71d0ad5d3f00140d428e61aef445aa4112b7
|
/contact-sensors-over-mqtt/contact-sensors-over-mqtt.ino
|
40c76bbfe65327b43cb8b717a28508ad0b28a372
|
[] |
no_license
|
maskedpirate/contact-sensors-over-mqtt
|
0ff66e1ebb4c52d1d4ca6062ff7f6b76b884b553
|
d6c77e4d4234844e7fd4a3558cefb2bcd56dce5e
|
refs/heads/master
| 2020-04-20T17:33:38.292351
| 2019-02-03T19:08:55
| 2019-02-03T19:08:55
| 168,992,025
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 5,935
|
ino
|
contact-sensors-over-mqtt.ino
|
/*
* contact-sensors-over-mqtt
* Monitors configured GPIO sensors for high/low and sends a message
* to an MQTT topic.
*/
#include <ESP8266WiFi.h>
#include <PubSubClient.h>
#include "config.h"
// Mapping NodeMCU Ports to Arduino GPIO Pins
// Allows use of NodeMCU Port nomenclature in config.h
#define D0 16
#define D1 5
#define D2 4
#define D3 0
#define D4 2
#define D5 14
#define D6 12
#define D7 13
#define D8 15
const char* ssid = WIFI_SSID;
const char* password = WIFI_PASSWORD;
const boolean static_ip = STATIC_IP;
IPAddress ip(IP);
IPAddress gateway(GATEWAY);
IPAddress subnet(SUBNET);
const char* mqtt_broker = MQTT_BROKER;
const char* mqtt_clientId = MQTT_CLIENTID;
const char* mqtt_username = MQTT_USERNAME;
const char* mqtt_password = MQTT_PASSWORD;
const String baseTopic = BASE_TOPIC;
String sAvailabilityTopic = baseTopic + "/availability";
char* availabilityTopic;
//const char* availabilityTopic = "shop/dc/availability";
const char* birthMessage = "online";
const char* lwtMessage = "offline";
int debounceTime = 1000;
typedef struct {
String alias;
char* topic;
int pin;
char* logic;
int lastValue;
unsigned long lastChangeTime;
} Sensor;
const int sensorsCount = 2;
Sensor sensors[sensorsCount] = {
{
.alias = "Miter Saw",
.topic = "miter_saw",
.pin = D1,
.logic = "NO",
.lastValue = 2,
.lastChangeTime = 0,
},
{
.alias = "Table Saw",
.topic = "table_saw",
.pin = D2,
.logic = "NO",
.lastValue = 2,
.lastChangeTime = 0,
}
};
WiFiClient espClient;
PubSubClient client(espClient);
// Wifi setup function
void setup_wifi() {
delay(10);
Serial.println();
Serial.print("Connecting to ");
Serial.print(ssid);
WiFi.mode(WIFI_STA);
WiFi.begin(ssid, password);
if (static_ip) {
WiFi.config(ip, gateway, subnet);
}
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
}
Serial.print(" WiFi connected - IP address: ");
Serial.println(WiFi.localIP());
}
// Functions that check door status and publish an update when called
void publish_sensor_status(Sensor& sensor) {
String topic = baseTopic + "/" + sensor.topic;
char ctopic[topic.length() + 1];
topic.toCharArray(ctopic, topic.length() +1);
if (digitalRead(sensor.pin) == LOW) {
if (sensor.logic == "NO") {
Serial.print(sensor.alias);
Serial.print(" closed! Publishing to ");
Serial.print(ctopic);
Serial.println("...");
client.publish(ctopic, "closed", true);
}
else if (sensor.logic == "NC") {
Serial.print(sensor.alias);
Serial.print(" open! Publishing to ");
Serial.print(ctopic);
Serial.println("...");
client.publish(ctopic, "open", true);
}
else {
Serial.println("Error! Specify only either NO or NC for sensor.alias[" + sensor.alias + "]! Not publishing...");
}
}
else {
if (sensor.logic == "NO") {
Serial.print(sensor.alias);
Serial.print(" open! Publishing to ");
Serial.print(ctopic);
Serial.println("...");
client.publish(ctopic, "open", true);
}
else if (sensor.logic == "NC") {
Serial.print(sensor.alias);
Serial.print(" closed! Publishing to ");
Serial.print(ctopic);
Serial.println("...");
client.publish(ctopic, "closed", true);
}
else {
Serial.println("Error! Specify only either NO or NC for sensor.alias[" + sensor.alias + "]! Not publishing...");
}
}
}
void check_sensor_status(Sensor& sensor) {
int currentStatusValue = digitalRead(sensor.pin);
if (currentStatusValue != sensor.lastValue) {
unsigned int currentTime = millis();
if (currentTime - sensor.lastChangeTime >= debounceTime) {
publish_sensor_status(sensor);
sensor.lastValue = currentStatusValue;
sensor.lastChangeTime = currentTime;
}
}
}
// Function that publishes birthMessage
void publish_birth_message() {
// Publish the birthMessage
Serial.print("Publishing birth message \"");
Serial.print(birthMessage);
Serial.print("\" to ");
Serial.print(availabilityTopic);
Serial.println("...");
client.publish(availabilityTopic, birthMessage, true);
}
// Function that runs in loop() to connect/reconnect to the MQTT broker, and publish the current door statuses on connect
void reconnect() {
// Loop until we're reconnected
while (!client.connected()) {
Serial.print("Attempting MQTT connection...");
// Attempt to connect
if (client.connect(mqtt_clientId, mqtt_username, mqtt_password, availabilityTopic, 0, true, lwtMessage)) {
Serial.println("Connected!");
// Publish the birth message on connect/reconnect
publish_birth_message();
// Publish the current door status on connect/reconnect to ensure status is synced with whatever happened while disconnected
for(int i=0; i<sensorsCount; i++) {
publish_sensor_status(sensors[i]);
}
}
else {
Serial.print("failed, rc=");
Serial.print(client.state());
Serial.println(" try again in 5 seconds");
// Wait 5 seconds before retrying
delay(5000);
}
}
}
void setup() {
availabilityTopic = new char[sAvailabilityTopic.length() + 1];
sAvailabilityTopic.toCharArray(availabilityTopic, sAvailabilityTopic.length() +1);
for(int i=0; i<sensorsCount; i++) {
pinMode(sensors[i].pin, INPUT_PULLUP);
sensors[i].lastValue = digitalRead(sensors[i].pin);
}
// Setup serial output, connect to wifi, connect to MQTT broker, set MQTT message callback
Serial.begin(115200);
Serial.println("Starting Dust Collector Sensors...");
setup_wifi();
client.setServer(mqtt_broker, 1883);
}
void loop() {
// Connect/reconnect to the MQTT broker and listen for messages
if (!client.connected()) {
reconnect();
}
client.loop();
for(int i=0; i<sensorsCount; i++) {
check_sensor_status(sensors[i]);
}
}
|
b4c7a680d08c25290cdb0f2ec77f658ce2e47064
|
9a56c38d47e462bf06ed334455f4fd49f63b9864
|
/getResults.cpp
|
5a29c2e3ed0b7a06e7b1bb95f7aa367b12fc7cd7
|
[] |
no_license
|
garroud/COMP3323-Assignment-
|
a93b160e71a5a4528c42dddb1caa0926af8cdd3a
|
d10252bc8aa7cb3b37227a8b9717e2d7b1fe87e7
|
refs/heads/master
| 2021-05-16T11:15:51.019615
| 2016-10-06T07:02:08
| 2016-10-06T07:02:08
| 69,375,720
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 6,309
|
cpp
|
getResults.cpp
|
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <math.h>
#include <stdlib.h>
#include <time.h>
using namespace std;
// base(int n): check the size of bin, 11 if the last bin, 10 otherwise;
double base(int n){
if (n == 7) return 11.0;
return 10.0;
}
double estimate_eqWidth(int LEFT, int RIGHT, char * histogram_path)
{
// to get the estimated result using the equi-width histogram
if (LEFT > RIGHT){
cerr << "LEFT > RIGHT ! Invalid input!" << endl;
return 0;
}
ifstream input;
input.open(histogram_path);
if (!input.is_open()){
cerr << histogram_path << "is invalid!" << endl;
exit(1);
}
vector<int> histogram;
string line;
while(getline(input, line)){
histogram.push_back(atoi(line.c_str()));
}
input.close();
double total = 0;
//Consider a boundary case:age 80
if(LEFT == 80) return (histogram.back() * 1/11.0);
if(RIGHT == 80){
total += histogram.back() * 1/11.0;
RIGHT -= 1;
}
int left_index = LEFT / 10;
int right_index = RIGHT / 10;
//if LEFT and RIGHT fall into the same bin
if (left_index == right_index){
return (RIGHT - LEFT+1)/base(left_index) * histogram[left_index];
}
//Deal with the bin in which LEFT falls
total += ((left_index+1)*10 - LEFT)/base(left_index) * histogram[left_index];
//Deal with the internal bins
for (int i = left_index + 1; i < right_index ; ++i){
total += histogram[i];
}
// Deal with the bin in which RIGHT falls
total += (RIGHT - right_index * 10 + 1)/base(right_index) * histogram[right_index];
return total;
}
double estimate_eqDepth(int LEFT, int RIGHT, char * histogram_path)
{
// to get the estimated result using the equi-depth histogram
if (LEFT > RIGHT){
cerr << "LEFT > RIGHT ! Invalid input!" << endl;
return 0;
}
ifstream input;
input.open(histogram_path);
if (!input.is_open()){
cerr << histogram_path << "is invalid!" << endl;
exit(1);
}
vector<double> histogram;
string line;
getline(input,line);
int size = atoi(line.c_str());
//add age 0 to the histogram
histogram.push_back(0);
while(getline(input, line)){
histogram.push_back(atoi(line.c_str()));
}
//add age 80 to the histogram, and count it into the bin
histogram.push_back(80.5);
int index = 1;
int bin = size / 8;
double total_bin = 0;
//Determine the position of LEFT and RIGHT
for (; index < histogram.size(); ++index){
if(LEFT <= histogram[index]){
if(RIGHT < histogram[index]){
return (bin * (RIGHT - LEFT + 1)/double(floor(histogram[index]) - ceil(histogram[index-1])+1));
}
total_bin += bin * (floor(histogram[index])-LEFT + 1 )/double(floor(histogram[index])-ceil(histogram[index-1])+1);
break;
}
}
for(index += 1;index < histogram.size(); ++index){
if (RIGHT < histogram[index]){
total_bin += bin * (RIGHT - ceil(histogram[index-1]) + 1)/double(floor(histogram[index]) - ceil(histogram[index-1]) + 1);
break;
}
total_bin += bin;
}
input.close();
return total_bin;
}
int get_result(int LEFT, int RIGHT, char * dat_path)
{
// to get the real result, using the actual data
if (LEFT > RIGHT){
cerr << "LEFT > RIGHT ! Invalid input!" << endl;
return 0;
}
ifstream data_input;
data_input.open(dat_path);
if(!data_input.is_open()){
cerr << dat_path << "is invalid!" << endl;
exit(1);
}
vector<int> ages; //the vector which stores all the ages
string line;
while(getline(data_input,line)){
//parse the input line by line
for (int i = 0 ; i <= line.length(); ++i){
if (line[i] == ' '){
// record down the age in this line
string age;
int j = i + 1;
do{
age += line[j];
j++;
}while(line[j] != ' ');
ages.push_back(atoi(age.c_str()));
break;
}
}
}
data_input.close();
int count = 0;
for (int i= 0 ; i <= ages.size()-1; i++){
if(ages[i] <= RIGHT && LEFT <= ages[i]){
count += 1;
}
}
return count;
}
void report_test(char * path1, char * path2, char* path3){
ofstream test;
test.open("test.txt");
int left , right;
srand (time(NULL));
for(int i = 0 ; i<= 99 ; ++i){
left = rand() % 81;
right = rand() % 81;
if(left > right){
int temp = left;
left = right;
right = temp;
}
double wid = estimate_eqWidth(left,right, path1);
double dep = estimate_eqDepth(left,right, path2);
double real = get_result(left,right, path3);
double error_wid = (wid - real)/real;
double error_dep = (dep - real)/real;
int size = right - left + 1;
test << left << " " << right << " " << size << " " << wid <<
" " << dep << " " << real << " " << error_wid << " "
<< error_dep << endl;
}
test.close();
return;
}
void report_test_all(char * path1, char * path2, char* path3){
ofstream test;
int left , right;
srand (time(NULL));
for(left = 0 ; left< 80 ; left+=10){
test.open("test_all_" + to_string(left) + ".txt");
for(right= left ; right <= 80; ++right){
double wid = estimate_eqWidth(left,right, path1);
double dep = estimate_eqDepth(left,right, path2);
double real = get_result(left,right, path3);
double error_wid = (wid - real)/real;
double error_dep = (dep - real)/real;
int size = right - left + 1;
test << left << " " << right << " " << size << " " << wid <<
" " << dep << " " << real << " " << error_wid << " "
<< error_dep << endl;
}
test.close();
}
test.close();
return;
}
int main(int argc, char** argv)
{
srand (time(NULL));
if (argc != 6){
cerr << "Usage: " << argv[0] << " LEFT RIGHT WIDTH_HISTOGRAM_PATH DEPTH_HISTOGRAM_PATH DATA_PATH" << endl;
/*
LEFT(int): the lower bound of the interval
RIGHT(int): the upper bound of the interval
WIDTH_HISTOGRAM_PATH(char *): the file path of the equal-width histogram
DEPTH_HISTOGRAM_PATH(char *): the file path of the equal-depth histogram
DATA_PATH(char *): the file path of final_general.dat
*/
return -1;
}
cout << estimate_eqWidth(atoi(argv[1]), atoi(argv[2]), argv[3]) << endl;
cout << estimate_eqDepth(atoi(argv[1]), atoi(argv[2]), argv[4]) << endl;
cout << get_result(atoi(argv[1]), atoi(argv[2]), argv[5]) << endl;
report_test_all(argv[3],argv[4],argv[5]);
return 0;
}
|
f68625cfb6240907915285c62a8ce78ccceef09d
|
a802488c68d5c8607e8d4696b8244eaacc9c3ac2
|
/DK/DKFramework/Private/Vulkan/Image.h
|
767aa48efab8d743968d5dc459a59af535d53ece
|
[
"LGPL-2.0-or-later",
"BSD-3-Clause"
] |
permissive
|
Hongtae/DKGL
|
e311c6e528349c8b9e7e8392f1d01ac976e76be1
|
eb33d843622504cd6134accf08c8ec2c98794b55
|
refs/heads/develop
| 2023-04-28T22:02:44.866063
| 2023-01-14T02:11:30
| 2023-01-14T02:11:30
| 30,572,734
| 11
| 3
|
BSD-3-Clause
| 2023-01-18T03:02:10
| 2015-02-10T03:23:18
|
C
|
UTF-8
|
C++
| false
| false
| 2,724
|
h
|
Image.h
|
//
// File: Image.h
// Author: Hongtae Kim (tiff2766@gmail.com)
//
// Copyright (c) 2015-2019 Hongtae Kim. All rights reserved.
//
#pragma once
#include "../GraphicsAPI.h"
#if DKGL_ENABLE_VULKAN
#include <vulkan/vulkan.h>
#include "../../DKGraphicsDevice.h"
#include "../../DKTexture.h"
#include "Types.h"
#include "DeviceMemory.h"
namespace DKFramework::Private::Vulkan
{
class Image
{
public:
Image(DeviceMemory*, VkImage, const VkImageCreateInfo&);
Image(DKGraphicsDevice*, VkImage);
~Image();
uint32_t Width() const
{
return extent.width;
}
uint32_t Height() const
{
return extent.height;
}
uint32_t Depth() const
{
return extent.depth;
}
uint32_t MipmapCount() const
{
return mipLevels;
}
uint32_t ArrayLength() const
{
return arrayLayers;
}
DKTexture::Type TextureType() const
{
switch (imageType)
{
case VK_IMAGE_TYPE_1D:
return DKTexture::Type1D;
case VK_IMAGE_TYPE_2D:
return DKTexture::Type2D;
case VK_IMAGE_TYPE_3D:
return DKTexture::Type3D;
}
return DKTexture::TypeUnknown;
}
DKPixelFormat PixelFormat() const
{
return Vulkan::PixelFormat(format);
}
VkImageLayout SetLayout(VkImageLayout layout,
VkAccessFlags accessMask,
VkPipelineStageFlags stageBegin,
VkPipelineStageFlags stageEnd,
uint32_t queueFamilyIndex = VK_QUEUE_FAMILY_IGNORED,
VkCommandBuffer commandBuffer = VK_NULL_HANDLE) const;
VkImageLayout Layout() const;
static VkAccessFlags CommonLayoutAccessMask(VkImageLayout);
VkImage image;
VkImageType imageType;
VkFormat format;
VkExtent3D extent;
uint32_t mipLevels;
uint32_t arrayLayers;
VkImageUsageFlags usage;
DKObject<DeviceMemory> deviceMemory;
DKObject<DKGraphicsDevice> device;
private:
struct LayoutAccessInfo
{
VkImageLayout layout;
VkAccessFlags accessMask;
VkPipelineStageFlags stageMaskBegin;
VkPipelineStageFlags stageMaskEnd;
uint32_t queueFamilyIndex;
};
DKSpinLock layoutLock;
mutable LayoutAccessInfo layoutInfo;
};
}
#endif //#if DKGL_ENABLE_VULKAN
|
5c94447fdca93f238277397b5c88e5ec99ee162d
|
aac2f7b52c9104f683b98f88bfa40ec9e89ad360
|
/课程c++代码/大二上程序设计代码/week8/maze3.cpp
|
cb9ff5217da3024ffa69e74b2d14c4c648dc0389
|
[] |
no_license
|
sjyjytu/My-All-Code
|
988a21429782b9901a0ee3c4cd19e73e9521f685
|
0456bcc8b6fe7aabb58b747facfb92b578371912
|
refs/heads/master
| 2020-05-04T00:33:07.525129
| 2019-04-02T02:47:08
| 2019-04-02T02:47:08
| 178,886,944
| 1
| 0
| null | null | null | null |
GB18030
|
C++
| false
| false
| 7,413
|
cpp
|
maze3.cpp
|
#include <time.h>
#include <iostream>
#include <string>
#include <random>
#include <stack>
#include <windows.h>
#include <iomanip>
#include <queue>
#include <map>
#define DENSITY 40
// #define RED 4
// #define GREEN 2
// #define YELLOW 6
// #define WHITE 7
// #define PURPLE 13
#define RED 204
#define GREEN 170
#define YELLOW 238
#define WHITE 17
#define PURPLE 221
#define WHITE_END 7
using namespace std;
vector<vector<int> > generate(int width, int height)
{
mt19937 rng;
rng.seed(time(nullptr));
default_random_engine fixed;
uniform_int_distribution<int> distribution(0, 99);
vector<vector<int> > maze(height, vector<int>(width));
for (int i = 0; i < height; i++)
{
for (int j = 0; j < width; j++)
{
maze[i][j] = distribution(rng) < DENSITY ? 1 : 0;
}
}
return maze;
}
bool solve(vector<vector<int> > &maze, int start_X, int start_Y, int end_X, int end_Y, const vector<int>& direction)
{
struct SnapShotStruct
{
int sx;
int sy;
int stage;
int direct_x;
int direct_y;
int index;
};
bool returnVal = 0;
stack<SnapShotStruct> snapshotStack;
SnapShotStruct currentSnapShot;
currentSnapShot.sx = start_X;
currentSnapShot.sy = start_Y;
currentSnapShot.stage = 0;
snapshotStack.push(currentSnapShot);
while (!snapshotStack.empty())
{
currentSnapShot = snapshotStack.top();
snapshotStack.pop();
cout << currentSnapShot.sx << " " << currentSnapShot.sy << " " << currentSnapShot.stage << endl;
if (returnVal)
continue;
switch (currentSnapShot.stage)
{
case 0:
if (currentSnapShot.sx == end_X && currentSnapShot.sy == end_Y)
{
returnVal = 1;
continue;
}
if (currentSnapShot.sx < 0 || currentSnapShot.sx >= maze.size() || currentSnapShot.sy < 0 || currentSnapShot.sy >= maze[0].size() || maze[currentSnapShot.sx][currentSnapShot.sy] != 0 )
{
returnVal = 0;
continue;
}
else
{
int direc_x = end_X - currentSnapShot.sx;
int direc_y = end_Y - currentSnapShot.sx;
if (direc_x > 0)
direc_x = 1;
else if (direc_x < 0)
direc_x = -1;
if (direc_y > 0)
direc_y = 1;
else if (direc_y < 0)
{
direc_y = -1;
}
currentSnapShot.direct_x = direc_x;
currentSnapShot.direct_y = direc_y;
maze[currentSnapShot.sx][currentSnapShot.sx] = 5;
//遍历四周
currentSnapShot.stage = 1;
snapshotStack.push(currentSnapShot);
SnapShotStruct newSnapShot;
newSnapShot.stage = 0;
newSnapShot.sx = currentSnapShot.sx + direc_x;
newSnapShot.sy = currentSnapShot.sy + direc_y;
snapshotStack.push(newSnapShot);
continue;
}
break;
case 1:
if (returnVal)
{
returnVal = 1;
continue;
}
else
{
int convert_cur_direc = (currentSnapShot.direct_x + 1) * 10 + currentSnapShot.direct_y + 1;
int index = 0;
for (auto it = direction.begin(); it != direction.end(); it++)
{
if (*it == convert_cur_direc)
{
break;
}
index++;
}//找对应下标
currentSnapShot.index = index;
int cur = direction[(index + 7) % 8];//取左边一个
currentSnapShot.stage = 2;
snapshotStack.push(currentSnapShot);
SnapShotStruct newSnapShot;
newSnapShot.stage = 0;
newSnapShot.sx = currentSnapShot.sx + cur / 10 - 1;
newSnapShot.sy = currentSnapShot.sy + cur % 10 - 1;
snapshotStack.push(newSnapShot);
continue;
}
break;
case 2:
if (returnVal)
continue;
else
{
int cur = direction[(currentSnapShot.index + 1) % 8];//取右边一个
currentSnapShot.stage = 3;
snapshotStack.push(currentSnapShot);
SnapShotStruct newSnapShot;
newSnapShot.stage = 0;
newSnapShot.sx = currentSnapShot.sx + cur / 10 - 1;
newSnapShot.sy = currentSnapShot.sy + cur % 10 - 1;
snapshotStack.push(newSnapShot);
continue;
}
break;
case 3:
if (returnVal)
continue;
else
{
int cur = direction[(currentSnapShot.index + 2) % 8];//取右边第二个
currentSnapShot.stage = 4;
snapshotStack.push(currentSnapShot);
SnapShotStruct newSnapShot;
newSnapShot.stage = 0;
newSnapShot.sx = currentSnapShot.sx + cur / 10 - 1;
newSnapShot.sy = currentSnapShot.sy + cur % 10 - 1;
snapshotStack.push(newSnapShot);
continue;
}
break;
case 4:
if (returnVal)
continue;
else
{
int cur = direction[(currentSnapShot.index + 3) % 8];//取左边一个
currentSnapShot.stage = 5;
snapshotStack.push(currentSnapShot);
SnapShotStruct newSnapShot;
newSnapShot.stage = 0;
newSnapShot.sx = currentSnapShot.sx + cur / 10 - 1;
newSnapShot.sy = currentSnapShot.sy + cur % 10 - 1;
snapshotStack.push(newSnapShot);
continue;
}
break;
case 5:
if (returnVal)
continue;
else
{
int cur = direction[(currentSnapShot.index + 4) % 8];//取左边一个
currentSnapShot.stage = 6;
snapshotStack.push(currentSnapShot);
SnapShotStruct newSnapShot;
newSnapShot.stage = 0;
newSnapShot.sx = currentSnapShot.sx + cur / 10 - 1;
newSnapShot.sy = currentSnapShot.sy + cur % 10 - 1;
snapshotStack.push(newSnapShot);
continue;
}
break;
case 6:
if (returnVal)
continue;
else
{
int cur = direction[(currentSnapShot.index + 5) % 8];//取左边一个
currentSnapShot.stage = 7;
snapshotStack.push(currentSnapShot);
SnapShotStruct newSnapShot;
newSnapShot.stage = 0;
newSnapShot.sx = currentSnapShot.sx + cur / 10 - 1;
newSnapShot.sy = currentSnapShot.sy + cur % 10 - 1;
snapshotStack.push(newSnapShot);
continue;
}
break;
case 7:
if (returnVal)
continue;
else
{
int cur = direction[(currentSnapShot.index + 6) % 8];//取左边一个
currentSnapShot.stage = 8;
snapshotStack.push(currentSnapShot);
SnapShotStruct newSnapShot;
newSnapShot.stage = 0;
newSnapShot.sx = currentSnapShot.sx + cur / 10 - 1;
newSnapShot.sy = currentSnapShot.sy + cur % 10 - 1;
snapshotStack.push(newSnapShot);
continue;
}
break;
case 8:
maze[currentSnapShot.sx][currentSnapShot.sy] = 3;
returnVal = 0;
continue;
break;
}
}
return returnVal;
}
int main()
{
while (true) {
int width = 5;
int height = 5;
/*cout << "Please input the width:";
cin >> width;
cout << "Please input the height:";
cin >> height;*/
vector<vector<int> > maze = generate(width, height);
cout << "generate finished!" << endl;
/*for (int i = 0; i<5; i++)
{
for (int j = 0; j < 5; j++)
cout << maze[i][j] << " ";
cout << endl;
}*/
int start_x = 0, start_y = 0, end_x = height - 1, end_y = width - 1;
while (maze[start_x][start_y] != 0)
{
start_x++;
start_y++;
}
while (maze[end_x][end_y] != 0)
{
end_x--;
end_y--;
}
cout << "start:" << start_x << " " << start_y << endl;
cout << "end:" << end_x << " " << end_y << endl;
vector<int> direction(8);
direction[0] = 22;
direction[1] = 21;
direction[2] = 20;
direction[3] = 10;
direction[4] = 0;
direction[5] = 1;
direction[6] = 2;
direction[7] = 12;
clock_t go = clock();
cout << "start......" << endl;
int count = 0;
if (solve(maze, start_x, start_y, end_x, end_y, direction))
cout << "find!" << "\tfor" << count << "times" << endl;
clock_t stop = clock();
double comsume = stop - go;
cout << "comsume:" << comsume << "ms" << endl;
system("pause");
}
return 0;
}
|
d3f9f9d921c62bc2ac058de4a2625cc2ed297836
|
c4c7d6b36de28565e3fcf51827df64de3f71ee57
|
/src/command_rotate.cpp
|
50d6954f7e575c20c491c4abfcd95e23f0a64168
|
[] |
no_license
|
sinamoeini/xtal
|
8cb8c0e9d6fe47da0a9af002cb74aabd673bd231
|
7e03b54bc7b665706e33d6385d0228d1004923e9
|
refs/heads/master
| 2020-05-15T10:09:10.851750
| 2017-07-27T14:53:30
| 2017-07-27T14:53:30
| 30,819,632
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 4,977
|
cpp
|
command_rotate.cpp
|
#include <math.h>
#include "command_rotate.h"
#include "memory.h"
#include "error.h"
#include "box_collection.h"
#include "region_collection.h"
/*--------------------------------------------
constructor
--------------------------------------------*/
Command_rotate::Command_rotate(Xtal* xtal,
int narg,char** arg):InitPtrs(xtal)
{
int region_xst,iregion,ibox,iarg,natms,icomp;
type0 n_lngth,theta,cos_theta,sin_theta,tmp0,tmp1,tmp2;
type0* n;
type0* c;
type0* c_s;
type0* s_new;
type0* s;
type0** Q_0;
type0** Q;
type0** H;
type0** B;
if(narg!=5 && narg!=6)
{
error->warning("rotate command needs at least 4 arguments\n"
"SYNTAX: rotate box (c0,c1,c2) (n0,n1,n2) theta\n"
"or\n"
"SYNTAX: rotate box region (c0,c1,c2) (n0,n1,n2) theta\n");
return;
}
ibox=box_collection->find(arg[1]);
if(ibox<0)
{
error->warning("box %s not found",arg[1]);
return;
}
if(narg==6)
{
region_xst=1;
iregion=region_collection->find(arg[2]);
if(iregion<0)
{
error->warning("region %s not found",arg[2]);
return;
}
iarg=3;
}
else
{
iregion=-1;
region_xst=0;
iarg=2;
}
CREATE1D(c,3);
CREATE1D(n,3);
if(sscanf(arg[iarg],"(%lf,%lf,%lf)",&tmp0,&tmp1,&tmp2)==3)
{
c[0]=tmp0;
c[1]=tmp1;
c[2]=tmp2;
}
else
{
error->warning("c should be of the format: (c0,c1,c2)");
delete [] c;
delete [] n;
return;
}
iarg++;
if(sscanf(arg[iarg],"(%lf,%lf,%lf)",&tmp0,&tmp1,&tmp2)==3)
{
n[0]=tmp0;
n[1]=tmp1;
n[2]=tmp2;
}
else
{
error->warning("n should be of the format: (n0,n1,n2)");
delete [] c;
delete [] n;
return;
}
iarg++;
theta=atof(arg[iarg]);
theta*=M_PI/180.0;
cos_theta=cos(theta);
sin_theta=sin(theta);
/* normalize n */
n_lngth=sqrt(n[0]*n[0]+n[1]*n[1]+n[2]*n[2]);
if(n_lngth==0.0)
{
error->warning("n size cannot be 0.0");
delete [] c;
delete [] n;
return;
}
n[0]/=n_lngth;
n[1]/=n_lngth;
n[2]/=n_lngth;
/* calculate Q_0 */
CREATE2D(Q_0,3,3);
Q_0[0][0]=Q_0[1][1]=Q_0[2][2]=cos_theta;
Q_0[2][1]=n[0]*sin_theta;
Q_0[1][2]=-n[0]*sin_theta;
Q_0[0][2]=n[1]*sin_theta;
Q_0[2][0]=-n[1]*sin_theta;
Q_0[1][0]=n[2]*sin_theta;
Q_0[0][1]=-n[2]*sin_theta;
for(int i=0;i<3;i++)
for(int j=0;j<3;j++)
Q_0[i][j]+=n[i]*n[j]*(1.0-cos_theta);
/* allocate Q */
CREATE2D(Q,3,3);
/* calculate Q */
H=box_collection->boxes[ibox]->H;
B=box_collection->boxes[ibox]->B;
for(int i=0;i<3;i++)
for(int j=0;j<3;j++)
{
Q[i][j]=0.0;
for(int k=0;k<3;k++)
for(int l=0;l<3;l++)
Q[i][j]+=B[k][i]*H[j][l]*Q_0[k][l];
}
/* claculate c_s */
CREATE1D(c_s,3);
for(int i=0;i<3;i++)
{
c_s[i]=0.0;
for(int j=0;j<3;j++)
for(int k=0;k<3;k++)
{
c_s[i]-=B[j][i]*Q_0[j][k]*c[k];
if(j==k)
c_s[i]+=B[j][i]*c[k];
}
}
/* remove unneccassry pointers: Q_0, c & n */
for(int i=0;i<3;i++)
delete [] Q_0[i];
delete [] Q_0;
delete [] c;
delete [] n;
/* allocate s_new */
CREATE1D(s_new,3);
/* get s & natms*/
s=box_collection->boxes[ibox]->s;
natms=box_collection->boxes[ibox]->natms;
/* perform rotation*/
icomp=0;
if(region_xst)
{
Region* region=region_collection->regions[iregion];
for(int iatm=0;iatm<natms;iatm++)
{
if(region->belong(H,&s[icomp]))
{
M3mV3(Q,&s[icomp],s_new);
s[icomp]=s_new[0]+c_s[0];
s[icomp+1]=s_new[1]+c_s[1];
s[icomp+2]=s_new[2]+c_s[2];
}
icomp+=3;
}
}
else
{
for(int iatm=0;iatm<natms;iatm++)
{
M3mV3(Q,&s[icomp],s_new);
s[icomp]=s_new[0]+c_s[0];
s[icomp+1]=s_new[1]+c_s[1];
s[icomp+2]=s_new[2]+c_s[2];
icomp+=3;
}
}
for(int i=0;i<3*natms;i++)
{
while(s[i]<0.0)
s[i]++;
while(s[i]>=1.0)
s[i]--;
}
for(int i=0;i<3;i++)
delete [] Q[i];
delete [] Q;
delete [] c_s;
delete [] s_new;
}
/*--------------------------------------------
destructor
--------------------------------------------*/
Command_rotate::~Command_rotate()
{
}
|
ec5c1e95fa8c006d355c4236de3204f87e6ecae0
|
b9ac3f216183e3fc7f52845598c8b8e4eee2497d
|
/xls/passes/literal_uncommoning_pass.cc
|
23fd35bcd3db303f31759c23ba7306518170a69b
|
[
"Apache-2.0"
] |
permissive
|
google/xls
|
ba225b411161836889a41c6d0e3a2fc09edc25ef
|
c2f3c725a9b54802119173a82412dc7a0bdf5a2e
|
refs/heads/main
| 2023-09-02T06:56:27.410732
| 2023-09-01T22:27:04
| 2023-09-01T22:28:01
| 262,163,993
| 1,003
| 152
|
Apache-2.0
| 2023-08-31T14:47:44
| 2020-05-07T21:38:30
|
C++
|
UTF-8
|
C++
| false
| false
| 2,325
|
cc
|
literal_uncommoning_pass.cc
|
// Copyright 2020 The XLS Authors
//
// 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 "xls/passes/literal_uncommoning_pass.h"
#include <vector>
#include "absl/status/statusor.h"
#include "xls/common/status/status_macros.h"
#include "xls/ir/dfs_visitor.h"
#include "xls/ir/node_iterator.h"
#include "xls/passes/optimization_pass.h"
namespace xls {
absl::StatusOr<bool> LiteralUncommoningPass::RunOnFunctionBaseInternal(
FunctionBase* f, const OptimizationPassOptions& options,
PassResults* results) const {
// Construct separate list of the initial literals to avoid iterator
// invalidation problems because we will be adding additional nodes during
// the transformation.
std::vector<Literal*> literals;
for (const auto& node : f->nodes()) {
if (node->Is<Literal>() && node->GetType()->IsBits()) {
literals.push_back(node->As<Literal>());
}
}
bool changed = false;
for (Literal* literal : literals) {
bool is_first_use = true;
std::vector<Node*> uses(literal->users().begin(), literal->users().end());
for (Node* use : uses) {
// Iterate through the operands explicitly because we want a new literal
// for each operand slot.
for (int64_t operand_no = 0; operand_no < use->operand_count();
++operand_no) {
if (use->operand(operand_no) == literal) {
if (is_first_use) {
// Keep the first use, and clone the literal for the remaining uses.
is_first_use = false;
continue;
}
XLS_ASSIGN_OR_RETURN(Node * clone,
literal->Clone(/*new_operands=*/{}));
XLS_RETURN_IF_ERROR(use->ReplaceOperandNumber(operand_no, clone));
changed = true;
}
}
}
}
return changed;
}
} // namespace xls
|
334c4a47a1980ff1f8b7dde774d7aeaac37addbb
|
a6ef9674622f6e7c46ac31f4cfffbd568ff4f97e
|
/SteadyState_Rectangular_0_dt,25t3000/processor3/2000/p
|
0cab40d9549daddec7f082719e93691a341112ef
|
[] |
no_license
|
jhargun/FluidIP
|
4c3f6d9a87ed8ce24ed692a9bf939a9ca04222f6
|
d6e0f20c1f5e1f86c160497be9d632e6d17abbf7
|
refs/heads/master
| 2022-08-26T02:34:26.327956
| 2020-05-26T22:33:29
| 2020-05-26T22:33:29
| 266,886,503
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 576,261
|
p
|
/*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 7
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "2000";
object p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 2 -2 0 0 0 0];
internalField nonuniform List<scalar>
33730
(
-1.3793482e+183
-1.3329043e+183
-1.3442228e+183
-1.2723632e+183
-1.2807969e+183
-1.3512564e+183
-1.3525041e+183
-1.3394324e+183
-1.3408331e+183
-1.3193861e+183
-1.3133407e+183
-1.2988867e+183
-1.3042612e+183
-1.3246137e+183
-1.3091813e+183
-1.3136156e+183
-1.3293657e+183
-1.2014294e+183
-1.1690953e+183
-1.2341589e+183
-1.1957277e+183
-1.241168e+183
-1.1289737e+183
-1.2790332e+183
-1.2743821e+183
-1.2872278e+183
-1.2831372e+183
-1.3280033e+183
-1.3210177e+183
-1.3259766e+183
-1.3329544e+183
-1.3371325e+183
-1.332213e+183
-1.3360414e+183
-1.3311325e+183
-1.3163322e+183
-1.3093871e+183
-1.3155306e+183
-1.3225765e+183
-1.320519e+183
-1.3267371e+183
-1.3195618e+183
-1.3257625e+183
-1.3085704e+183
-1.2979906e+183
-1.3113337e+183
-1.3005927e+183
-1.3026598e+183
-1.3057349e+183
-1.2952923e+183
-1.2925707e+183
-1.3051762e+183
-1.3162586e+183
-1.3028636e+183
-1.3137555e+183
-1.3205047e+183
-1.3184517e+183
-1.3092857e+183
-1.3073203e+183
-1.221242e+183
-1.2028765e+183
-1.2132173e+183
-1.2048922e+183
-1.1875033e+183
-1.2184807e+183
-1.2002066e+183
-1.1651097e+183
-1.1692908e+183
-1.2522756e+183
-1.2339455e+183
-1.2302729e+183
-1.2563156e+183
-1.1605747e+183
-1.1229235e+183
-1.1260316e+183
-1.2122004e+183
-1.1943229e+183
-1.1974724e+183
-1.2156522e+183
-1.2369135e+183
-1.2398636e+183
-1.2597878e+183
-1.2633511e+183
-1.0897652e+183
-1.1515843e+183
-1.1307317e+183
-1.2824585e+183
-1.2849979e+183
-1.2800685e+183
-1.2776601e+183
-1.2908619e+183
-1.2928188e+183
-1.2889659e+183
-1.2869568e+183
-1.293194e+183
-1.3038979e+183
-1.307394e+183
-1.3001403e+183
-1.3049148e+183
-1.3120095e+183
-1.3217291e+183
-1.3251788e+183
-1.3238721e+183
-1.3273663e+183
-1.3194129e+183
-1.3168978e+183
-1.320347e+183
-1.3229027e+183
-1.3262322e+183
-1.3284065e+183
-1.3238194e+183
-1.3259561e+183
-1.321376e+183
-1.3239274e+183
-1.319003e+183
-1.3215536e+183
-1.2965218e+183
-1.2893043e+183
-1.2951368e+183
-1.3023379e+183
-1.3086222e+183
-1.3054291e+183
-1.3088129e+183
-1.3120623e+183
-1.3143573e+183
-1.3115954e+183
-1.3178067e+183
-1.3149957e+183
-1.3098464e+183
-1.3130591e+183
-1.3075998e+183
-1.3107736e+183
-1.3160188e+183
-1.3188118e+183
-1.3136958e+183
-1.3164917e+183
-1.2950912e+183
-1.3020573e+183
-1.3035435e+183
-1.2964875e+183
-1.3048753e+183
-1.3061099e+183
-1.2990541e+183
-1.2978212e+183
-1.2963172e+183
-1.297796e+183
-1.2896987e+183
-1.2909944e+183
-1.299237e+183
-1.3007096e+183
-1.2923637e+183
-1.293783e+183
-1.3095828e+183
-1.3107039e+183
-1.3022596e+183
-1.3033526e+183
-1.3072282e+183
-1.3084466e+183
-1.3000787e+183
-1.3011644e+183
-1.3137871e+183
-1.3063792e+183
-1.3072652e+183
-1.3147071e+183
-1.3116942e+183
-1.3128281e+183
-1.3043439e+183
-1.3053928e+183
-1.2205466e+183
-1.2193456e+183
-1.2298193e+183
-1.2285151e+183
-1.2206626e+183
-1.2249911e+183
-1.2122732e+183
-1.2111563e+183
-1.2030317e+183
-1.2040497e+183
-1.1856317e+183
-1.2123407e+183
-1.2165017e+183
-1.2128124e+183
-1.2169713e+183
-1.2083198e+183
-1.2087602e+183
-1.204263e+183
-1.1968739e+183
-1.2046244e+183
-1.1895579e+183
-1.1888548e+183
-1.2182494e+183
-1.2172435e+183
-1.2264111e+183
-1.2273927e+183
-1.2100837e+183
-1.201945e+183
-1.2008792e+183
-1.2090269e+183
-1.1830692e+183
-1.1652723e+183
-1.1674155e+183
-1.1738474e+183
-1.1742685e+183
-1.1813224e+183
-1.1819059e+183
-1.2640203e+183
-1.2525349e+183
-1.2504726e+183
-1.2661894e+183
-1.2434381e+183
-1.2346311e+183
-1.2329334e+183
-1.2452665e+183
-1.2394012e+183
-1.2310599e+183
-1.2289743e+183
-1.2414695e+183
-1.2545602e+183
-1.2565939e+183
-1.2707015e+183
-1.2683652e+183
-1.0878181e+183
-1.0858027e+183
-1.0427204e+183
-1.043932e+183
-1.1630045e+183
-1.1607479e+183
-1.1777674e+183
-1.1805498e+183
-1.144304e+183
-1.1250591e+183
-1.1262317e+183
-1.1462008e+183
-1.1481536e+183
-1.1277475e+183
-1.1296041e+183
-1.1499968e+183
-1.2109397e+183
-1.2199003e+183
-1.2219348e+183
-1.2128731e+183
-1.2028393e+183
-1.19631e+183
-1.1946523e+183
-1.2046483e+183
-1.1980075e+183
-1.2080068e+183
-1.20635e+183
-1.1997203e+183
-1.2146123e+183
-1.216175e+183
-1.2237192e+183
-1.2253457e+183
-1.2478319e+183
-1.2357349e+183
-1.2465379e+183
-1.2367713e+183
-1.2379598e+183
-1.2491237e+183
-1.2505611e+183
-1.2393113e+183
-1.2581257e+183
-1.2724501e+183
-1.2595935e+183
-1.2742032e+183
-1.2626735e+183
-1.2610818e+183
-1.2758971e+183
-1.2776993e+183
-1.1070675e+183
-1.0761611e+183
-1.166236e+183
-1.1582497e+183
-1.1585225e+183
-1.1665372e+183
-1.138612e+183
-1.1497082e+183
-1.1381314e+183
-1.1498375e+183
-1.2854843e+183
-1.2867966e+183
-1.2893531e+183
-1.2880669e+183
-1.2828518e+183
-1.2842584e+183
-1.2804553e+183
-1.2816136e+183
-1.2950769e+183
-1.2941297e+183
-1.2960231e+183
-1.2969321e+183
-1.2932208e+183
-1.2921478e+183
-1.2911994e+183
-1.2902761e+183
-1.2544199e+183
-1.2637288e+183
-1.2868898e+183
-1.3094695e+183
-1.3071333e+183
-1.2806573e+183
-1.2851174e+183
-1.2911395e+183
-1.3137726e+183
-1.3116468e+183
-1.3161515e+183
-1.3182633e+183
-1.3116315e+183
-1.3139679e+183
-1.3196347e+183
-1.3207593e+183
-1.3216979e+183
-1.3205669e+183
-1.3228133e+183
-1.3218126e+183
-1.3227241e+183
-1.3237432e+183
-1.3162089e+183
-1.31735e+183
-1.3194694e+183
-1.3206162e+183
-1.3216301e+183
-1.3183529e+183
-1.3226252e+183
-1.319297e+183
-1.314933e+183
-1.3161913e+183
-1.3171208e+183
-1.3158369e+183
-1.3174065e+183
-1.3185411e+183
-1.3183083e+183
-1.3194679e+183
-1.3115646e+183
-1.3128426e+183
-1.3147453e+183
-1.3160488e+183
-1.3140356e+183
-1.3151697e+183
-1.3172367e+183
-1.3183927e+183
-1.276892e+183
-1.2960605e+183
-1.2991917e+183
-1.2705571e+183
-1.276057e+183
-1.2823175e+183
-1.3020155e+183
-1.3047495e+183
-1.3004769e+183
-1.3035856e+183
-1.309192e+183
-1.3064662e+183
-1.303487e+183
-1.3050993e+183
-1.3060287e+183
-1.304407e+183
-1.306675e+183
-1.3081754e+183
-1.3075465e+183
-1.3090733e+183
-1.3033716e+183
-1.3003613e+183
-1.301947e+183
-1.3050035e+183
-1.3034472e+183
-1.3049283e+183
-1.3065039e+183
-1.3080168e+183
-1.3096096e+183
-1.3110747e+183
-1.3105017e+183
-1.3119803e+183
-1.3124467e+183
-1.3137157e+183
-1.3133116e+183
-1.3146129e+183
-1.3094287e+183
-1.306309e+183
-1.3078154e+183
-1.3109251e+183
-1.3091523e+183
-1.3104087e+183
-1.3122477e+183
-1.3135429e+183
-1.2975732e+183
-1.2968502e+183
-1.2931505e+183
-1.2938289e+183
-1.2989783e+183
-1.2982755e+183
-1.2945136e+183
-1.2952295e+183
-1.3003249e+183
-1.2996281e+183
-1.2958747e+183
-1.2965579e+183
-1.3014967e+183
-1.300934e+183
-1.2971886e+183
-1.2977437e+183
-1.2919675e+183
-1.2912899e+183
-1.2877544e+183
-1.2883637e+183
-1.2933476e+183
-1.292651e+183
-1.289008e+183
-1.2896951e+183
-1.2947731e+183
-1.2940293e+183
-1.2903615e+183
-1.2910825e+183
-1.2961983e+183
-1.2954888e+183
-1.2917953e+183
-1.2925115e+183
-1.3047525e+183
-1.3041815e+183
-1.3002818e+183
-1.300827e+183
-1.3057971e+183
-1.3052828e+183
-1.3013667e+183
-1.3018936e+183
-1.3025904e+183
-1.3020184e+183
-1.2982211e+183
-1.2987319e+183
-1.3036653e+183
-1.3031333e+183
-1.2992457e+183
-1.2997746e+183
-1.3087678e+183
-1.3082923e+183
-1.3043435e+183
-1.3047975e+183
-1.3096289e+183
-1.3092237e+183
-1.3052383e+183
-1.3056385e+183
-1.3067804e+183
-1.3062635e+183
-1.3023575e+183
-1.3028403e+183
-1.3078275e+183
-1.3073114e+183
-1.3033433e+183
-1.3038689e+183
-9.9114799e+182
-1.2195917e+183
-1.2201688e+183
-1.2238847e+183
-1.2244795e+183
-1.2185663e+183
-1.2228009e+183
-1.2190493e+183
-1.2233258e+183
-1.2283105e+183
-1.2331187e+183
-1.2289401e+183
-1.2337758e+183
-1.2271892e+183
-1.2319584e+183
-1.2277219e+183
-1.2325096e+183
-1.228718e+183
-1.2224692e+183
-1.2201526e+183
-1.2222135e+183
-1.2203993e+183
-1.2243053e+183
-1.2264976e+183
-1.2245513e+183
-1.220638e+183
-1.2227099e+183
-1.2113787e+183
-1.2154714e+183
-1.2118975e+183
-1.2160344e+183
-1.2104262e+183
-1.214486e+183
-1.2108957e+183
-1.2149548e+183
-1.2065221e+183
-1.206987e+183
-1.2026183e+183
-1.2030488e+183
-1.1951807e+183
-1.2074312e+183
-1.2079051e+183
-1.203874e+183
-1.2034541e+183
-1.1961876e+183
-1.1872844e+183
-1.1882979e+183
-1.2143239e+183
-1.2121114e+183
-1.2140666e+183
-1.2123529e+183
-1.2160676e+183
-1.218098e+183
-1.2183413e+183
-1.2163204e+183
-1.2148286e+183
-1.2126357e+183
-1.2145748e+183
-1.2128818e+183
-1.2165588e+183
-1.2185782e+183
-1.216812e+183
-1.2188296e+183
-1.207842e+183
-1.2080636e+183
-1.2101121e+183
-1.2103431e+183
-1.2106198e+183
-1.2108623e+183
-1.2083034e+183
-1.2085242e+183
-1.2047257e+183
-1.2006889e+183
-1.1973666e+183
-1.1970773e+183
-1.201012e+183
-1.205133e+183
-1.1910151e+183
-1.1905917e+183
-1.194162e+183
-1.1946119e+183
-1.1902681e+183
-1.1901071e+183
-1.1935704e+183
-1.1938136e+183
-1.2176311e+183
-1.218102e+183
-1.2218917e+183
-1.2223401e+183
-1.2169562e+183
-1.2211966e+183
-1.2172558e+183
-1.2215331e+183
-1.2255699e+183
-1.2302954e+183
-1.2258926e+183
-1.2306194e+183
-1.226261e+183
-1.231e+183
-1.2267206e+183
-1.231486e+183
-1.2094639e+183
-1.2135309e+183
-1.2099755e+183
-1.2140293e+183
-1.2055674e+183
-1.2060849e+183
-1.2021843e+183
-1.2016431e+183
-1.1940442e+183
-1.2048096e+183
-1.205149e+183
-1.2012038e+183
-1.2008028e+183
-1.1929231e+183
-1.2087426e+183
-1.2128514e+183
-1.2090343e+183
-1.2131334e+183
-1.1849398e+183
-1.1860812e+183
-1.1710163e+183
-1.1699087e+183
-1.1773994e+183
-1.1785551e+183
-1.1720871e+183
-1.1797045e+183
-1.1807857e+183
-1.1731548e+183
-1.1801306e+183
-1.177004e+183
-1.1770284e+183
-1.1801636e+183
-1.1774614e+183
-1.1771737e+183
-1.1803716e+183
-1.180707e+183
-1.1833583e+183
-1.1833072e+183
-1.1866671e+183
-1.1867631e+183
-1.1870517e+183
-1.1836149e+183
-1.1839776e+183
-1.187464e+183
-1.1582886e+183
-1.1751174e+183
-1.1229468e+183
-1.1419201e+183
-1.1931521e+183
-1.2011322e+183
-1.2090634e+183
-1.2632529e+183
-1.264303e+183
-1.2718316e+183
-1.2729069e+183
-1.2514976e+183
-1.2526814e+183
-1.2582521e+183
-1.2594397e+183
-1.2494535e+183
-1.2561432e+183
-1.2504585e+183
-1.2571946e+183
-1.2653885e+183
-1.2740619e+183
-1.2666319e+183
-1.2754077e+183
-1.2421926e+183
-1.2478822e+183
-1.2431912e+183
-1.2488872e+183
-1.2339809e+183
-1.2346126e+183
-1.2389476e+183
-1.2396232e+183
-1.2322895e+183
-1.237158e+183
-1.2332193e+183
-1.2381526e+183
-1.244028e+183
-1.2498005e+183
-1.2447751e+183
-1.2506604e+183
-1.2379755e+183
-1.2390103e+183
-1.2436592e+183
-1.244658e+183
-1.230158e+183
-1.2350223e+183
-1.2313041e+183
-1.2361486e+183
-1.2280498e+183
-1.23294e+183
-1.2291069e+183
-1.2340082e+183
-1.2400045e+183
-1.245675e+183
-1.2411543e+183
-1.2468658e+183
-1.2536793e+183
-1.2547196e+183
-1.2604675e+183
-1.2616042e+183
-1.2557106e+183
-1.2626611e+183
-1.2566439e+183
-1.2636703e+183
-1.2700441e+183
-1.2790264e+183
-1.2802475e+183
-1.2711481e+183
-1.2677233e+183
-1.2689069e+183
-1.2765579e+183
-1.2778156e+183
-1.1043649e+183
-1.1061831e+183
-1.0733883e+183
-1.075366e+183
-1.1029099e+183
-1.1032931e+183
-1.0727056e+183
-1.073224e+183
-1.0332263e+183
-1.033979e+183
-1.1688284e+183
-1.1674423e+183
-1.1748041e+183
-1.1763052e+183
-1.172019e+183
-1.1649608e+183
-1.173462e+183
-1.1662195e+183
-1.1805464e+183
-1.1790595e+183
-1.1867788e+183
-1.1883302e+183
-1.1837355e+183
-1.1820942e+183
-1.1899785e+183
-1.1917142e+183
-1.1514589e+183
-1.1506534e+183
-1.1577906e+183
-1.1588908e+183
-1.1430577e+183
-1.1329706e+183
-1.1331619e+183
-1.1436332e+183
-1.1345805e+183
-1.1336446e+183
-1.144294e+183
-1.1453312e+183
-1.1522495e+183
-1.1599373e+183
-1.1534299e+183
-1.1612631e+183
-1.1555779e+183
-1.1544816e+183
-1.1623135e+183
-1.1633883e+183
-1.1352243e+183
-1.1461879e+183
-1.1357055e+183
-1.1471247e+183
-1.138435e+183
-1.1370028e+183
-1.1481236e+183
-1.1492413e+183
-1.1574719e+183
-1.1563818e+183
-1.1643341e+183
-1.1654441e+183
-1.2104271e+183
-1.2145813e+183
-1.2114403e+183
-1.2156323e+183
-1.2188491e+183
-1.2234562e+183
-1.2198985e+183
-1.2245044e+183
-1.2221687e+183
-1.2209914e+183
-1.2255708e+183
-1.2267329e+183
-1.2136586e+183
-1.2125007e+183
-1.2167079e+183
-1.2178695e+183
-1.2023458e+183
-1.2064221e+183
-1.2032623e+183
-1.2073875e+183
-1.1969395e+183
-1.1958874e+183
-1.2000704e+183
-1.2011258e+183
-1.198333e+183
-1.1992087e+183
-1.19503e+183
-1.1942345e+183
-1.2041627e+183
-1.2083771e+183
-1.2052605e+183
-1.2095276e+183
-1.1988139e+183
-1.197879e+183
-1.2020466e+183
-1.2029816e+183
-1.2078784e+183
-1.2084672e+183
-1.2120095e+183
-1.2125447e+183
-1.2061723e+183
-1.210436e+183
-1.2070985e+183
-1.2113124e+183
-1.2037948e+183
-1.2044572e+183
-1.200359e+183
-1.1996365e+183
-1.2145712e+183
-1.2187907e+183
-1.2154156e+183
-1.2196464e+183
-1.2160464e+183
-1.2202779e+183
-1.2165674e+183
-1.2208038e+183
-1.2239586e+183
-1.2230976e+183
-1.2276896e+183
-1.2285938e+183
-1.2246329e+183
-1.2293143e+183
-1.2251872e+183
-1.2299184e+183
-1.2463066e+183
-1.2468869e+183
-1.2523684e+183
-1.2530243e+183
-1.2350213e+183
-1.2400814e+183
-1.2353705e+183
-1.2405104e+183
-1.2457826e+183
-1.2453072e+183
-1.2512559e+183
-1.2517993e+183
-1.235784e+183
-1.2409618e+183
-1.2362861e+183
-1.2414901e+183
-1.2367806e+183
-1.2420036e+183
-1.23735e+183
-1.2426199e+183
-1.247434e+183
-1.2536132e+183
-1.24806e+183
-1.2542773e+183
-1.248727e+183
-1.25497e+183
-1.2494157e+183
-1.2556987e+183
-1.2379743e+183
-1.2386317e+183
-1.2439166e+183
-1.2432566e+183
-1.2573223e+183
-1.2579285e+183
-1.2651271e+183
-1.2644119e+183
-1.271953e+183
-1.2810966e+183
-1.2727122e+183
-1.2819341e+183
-1.2585491e+183
-1.2658034e+183
-1.2592533e+183
-1.2665617e+183
-1.2734783e+183
-1.2827856e+183
-1.2743265e+183
-1.2837644e+183
-1.2613389e+183
-1.2688201e+183
-1.259906e+183
-1.2672628e+183
-1.260613e+183
-1.2680609e+183
-1.2845889e+183
-1.2750895e+183
-1.2759197e+183
-1.2854802e+183
-1.2863737e+183
-1.2767422e+183
-1.2872523e+183
-1.0733641e+183
-1.1228996e+183
-1.1237633e+183
-1.1019464e+183
-1.1033209e+183
-1.173815e+183
-1.1707307e+183
-1.1738294e+183
-1.1707353e+183
-1.1677051e+183
-1.1646283e+183
-1.1676548e+183
-1.1644942e+183
-1.1645767e+183
-1.1645039e+183
-1.1676631e+183
-1.1677858e+183
-1.1708923e+183
-1.1707233e+183
-1.1738853e+183
-1.174136e+183
-1.1471938e+183
-1.1533618e+183
-1.1529966e+183
-1.1463825e+183
-1.16116e+183
-1.1575794e+183
-1.1573046e+183
-1.1609368e+183
-1.1458829e+183
-1.1526583e+183
-1.1527494e+183
-1.1459841e+183
-1.1609285e+183
-1.1571546e+183
-1.157243e+183
-1.1610027e+183
-1.1574981e+183
-1.1528452e+183
-1.1460361e+183
-1.2872625e+183
-1.287913e+183
-1.2885573e+183
-1.2892858e+183
-1.2917779e+183
-1.2912035e+183
-1.290573e+183
-1.289911e+183
-1.2852305e+183
-1.2845377e+183
-1.2859076e+183
-1.2866409e+183
-1.2820941e+183
-1.2826515e+183
-1.2832365e+183
-1.2839153e+183
-1.2975198e+183
-1.2969845e+183
-1.2965356e+183
-1.296099e+183
-1.2979942e+183
-1.2984388e+183
-1.2988354e+183
-1.299242e+183
-1.2956325e+183
-1.2950857e+183
-1.2945814e+183
-1.2940882e+183
-1.2936325e+183
-1.2931201e+183
-1.2926713e+183
-1.2922188e+183
-1.2438518e+183
-1.2152118e+183
-1.2557892e+183
-1.2507198e+183
-1.223016e+183
-1.2640618e+183
-1.2600543e+183
-1.2671899e+183
-1.2991985e+183
-1.2970185e+183
-1.2862088e+183
-1.2882485e+183
-1.2710026e+183
-1.303322e+183
-1.3012582e+183
-1.2921902e+183
-1.2901965e+183
-1.3083239e+183
-1.30732e+183
-1.3096267e+183
-1.3106171e+183
-1.316267e+183
-1.3152033e+183
-1.3103978e+183
-1.3093139e+183
-1.317295e+183
-1.3116321e+183
-1.312683e+183
-1.3183198e+183
-1.3040947e+183
-1.3030464e+183
-1.306426e+183
-1.3053362e+183
-1.3118889e+183
-1.3107051e+183
-1.306291e+183
-1.3051617e+183
-1.307497e+183
-1.308584e+183
-1.3130273e+183
-1.314141e+183
-1.3181472e+183
-1.318578e+183
-1.3190931e+183
-1.3186288e+183
-1.3176051e+183
-1.3170004e+183
-1.3174571e+183
-1.3180378e+183
-1.3191216e+183
-1.3196974e+183
-1.3201284e+183
-1.3195828e+183
-1.3206245e+183
-1.320201e+183
-1.3211036e+183
-1.3206483e+183
-1.3100204e+183
-1.3141689e+183
-1.3147635e+183
-1.3105725e+183
-1.311126e+183
-1.3152981e+183
-1.3158156e+183
-1.311632e+183
-1.3176962e+183
-1.3171275e+183
-1.31682e+183
-1.3162387e+183
-1.3187662e+183
-1.3182461e+183
-1.3178838e+183
-1.3173542e+183
-1.3192592e+183
-1.3197883e+183
-1.318372e+183
-1.3189065e+183
-1.3120998e+183
-1.316296e+183
-1.3168424e+183
-1.3126057e+183
-1.3193733e+183
-1.3202817e+183
-1.3207603e+183
-1.319848e+183
-1.3177344e+183
-1.3172956e+183
-1.3130699e+183
-1.313494e+183
-1.3136652e+183
-1.3140817e+183
-1.3146711e+183
-1.3142191e+183
-1.3130514e+183
-1.3123874e+183
-1.3128232e+183
-1.3134682e+183
-1.3154216e+183
-1.3147891e+183
-1.3152382e+183
-1.3158434e+183
-1.3164799e+183
-1.3159805e+183
-1.3164e+183
-1.3169354e+183
-1.3056304e+183
-1.3096189e+183
-1.3102734e+183
-1.3062344e+183
-1.3068178e+183
-1.3108639e+183
-1.3114526e+183
-1.3073687e+183
-1.3131247e+183
-1.3124908e+183
-1.3122685e+183
-1.3116247e+183
-1.3143418e+183
-1.3137463e+183
-1.3134765e+183
-1.3128694e+183
-1.3079108e+183
-1.3120109e+183
-1.3126322e+183
-1.3084982e+183
-1.3090444e+183
-1.3131612e+183
-1.3136795e+183
-1.3095485e+183
-1.3155055e+183
-1.3149118e+183
-1.3146444e+183
-1.3140399e+183
-1.3166057e+183
-1.3160658e+183
-1.3157272e+183
-1.3151824e+183
-1.2578205e+183
-1.2647915e+183
-1.2706117e+183
-1.258052e+183
-1.2894119e+183
-1.2863268e+183
-1.275966e+183
-1.2789837e+183
-1.2630558e+183
-1.2947682e+183
-1.2921235e+183
-1.2815774e+183
-1.2840823e+183
-1.2934917e+183
-1.2919704e+183
-1.2957745e+183
-1.294207e+183
-1.2994229e+183
-1.3010171e+183
-1.2965561e+183
-1.2949964e+183
-1.2972815e+183
-1.2987921e+183
-1.3025416e+183
-1.3040466e+183
-1.3019253e+183
-1.3005933e+183
-1.3042056e+183
-1.3029068e+183
-1.3082391e+183
-1.309522e+183
-1.2992627e+183
-1.2979224e+183
-1.3001811e+183
-1.3015684e+183
-1.3054675e+183
-1.3068962e+183
-1.3026256e+183
-1.3030337e+183
-1.3033715e+183
-1.3038099e+183
-1.3018283e+183
-1.3009755e+183
-1.3014128e+183
-1.3022473e+183
-1.3049373e+183
-1.3041118e+183
-1.3045416e+183
-1.3053438e+183
-1.3060835e+183
-1.3056871e+183
-1.3063775e+183
-1.3068082e+183
-1.3011026e+183
-1.3019211e+183
-1.3011334e+183
-1.300311e+183
-1.2992412e+183
-1.2984265e+183
-1.2946755e+183
-1.2954074e+183
-1.3007458e+183
-1.2999822e+183
-1.2961308e+183
-1.296846e+183
-1.3034885e+183
-1.3027126e+183
-1.3026833e+183
-1.3018984e+183
-1.3022588e+183
-1.3014608e+183
-1.2975532e+183
-1.2983023e+183
-1.3036845e+183
-1.3029666e+183
-1.2990295e+183
-1.2997403e+183
-1.305009e+183
-1.3042227e+183
-1.3042015e+183
-1.3034069e+183
-1.3064746e+183
-1.3057487e+183
-1.3056483e+183
-1.3049161e+183
-1.3078501e+183
-1.3070683e+183
-1.3074969e+183
-1.3082605e+183
-1.3089744e+183
-1.3085701e+183
-1.3092317e+183
-1.3096663e+183
-1.3103123e+183
-1.3098824e+183
-1.3110099e+183
-1.3106045e+183
-1.3112394e+183
-1.3118029e+183
-1.3116373e+183
-1.3122384e+183
-1.307919e+183
-1.307166e+183
-1.3063296e+183
-1.3070981e+183
-1.3051331e+183
-1.3043525e+183
-1.3004022e+183
-1.3011371e+183
-1.301861e+183
-1.305839e+183
-1.3065457e+183
-1.3025602e+183
-1.3093353e+183
-1.3086408e+183
-1.30851e+183
-1.3078027e+183
-1.3032208e+183
-1.307185e+183
-1.3078834e+183
-1.3039004e+183
-1.3045086e+183
-1.3084768e+183
-1.3090666e+183
-1.3050809e+183
-1.3106677e+183
-1.3099851e+183
-1.3098362e+183
-1.3091478e+183
-1.3119055e+183
-1.3112966e+183
-1.3110548e+183
-1.3104413e+183
-9.8598059e+182
-1.2904198e+183
-1.2897395e+183
-1.2917792e+183
-1.2910922e+183
-1.2931144e+183
-1.2924432e+183
-1.2942746e+183
-1.2937319e+183
-1.2850319e+183
-1.2844322e+183
-1.2863225e+183
-1.2856694e+183
-1.2876864e+183
-1.2869848e+183
-1.2890641e+183
-1.2883734e+183
-1.2972059e+183
-1.2966945e+183
-1.2982081e+183
-1.2977041e+183
-1.2952488e+183
-1.2947489e+183
-1.2962109e+183
-1.2957263e+183
-1.3010878e+183
-1.3006321e+183
-1.301495e+183
-1.2991856e+183
-1.2987035e+183
-1.300147e+183
-1.2996489e+183
-1.2190781e+183
-1.2211123e+183
-1.2213874e+183
-1.219335e+183
-1.2198941e+183
-1.2196069e+183
-1.2216638e+183
-1.2219549e+183
-1.2256352e+183
-1.2231781e+183
-1.2253491e+183
-1.2234561e+183
-1.2240424e+183
-1.2262368e+183
-1.2237421e+183
-1.2259254e+183
-1.220376e+183
-1.2181359e+183
-1.2201554e+183
-1.2183479e+183
-1.2222021e+183
-1.2243478e+183
-1.2245516e+183
-1.2224121e+183
-1.2208561e+183
-1.2185686e+183
-1.2205991e+183
-1.2188187e+183
-1.2226524e+183
-1.2248003e+183
-1.2229176e+183
-1.2250812e+183
-1.2275427e+183
-1.2298338e+183
-1.2301359e+183
-1.2278336e+183
-1.2346371e+183
-1.2324682e+183
-1.2321675e+183
-1.2349422e+183
-1.2281342e+183
-1.2284486e+183
-1.2304444e+183
-1.2307586e+183
-1.235261e+183
-1.2331027e+183
-1.2355805e+183
-1.232784e+183
-1.2290147e+183
-1.226521e+183
-1.2287906e+183
-1.2267305e+183
-1.2335528e+183
-1.2311043e+183
-1.231327e+183
-1.2337789e+183
-1.2272679e+183
-1.2295564e+183
-1.2269831e+183
-1.2292694e+183
-1.2340454e+183
-1.2315886e+183
-1.2318845e+183
-1.2343516e+183
-1.2288951e+183
-1.22267e+183
-1.220376e+183
-1.2224112e+183
-1.2206364e+183
-1.224509e+183
-1.2266589e+183
-1.2247573e+183
-1.2208854e+183
-1.2229223e+183
-1.2250203e+183
-1.2111718e+183
-1.2113869e+183
-1.2130914e+183
-1.2133206e+183
-1.2152914e+183
-1.2170493e+183
-1.217298e+183
-1.2150537e+183
-1.2116423e+183
-1.2118913e+183
-1.213826e+183
-1.2135699e+183
-1.2155444e+183
-1.2158116e+183
-1.2175623e+183
-1.217845e+183
-1.2124034e+183
-1.2102808e+183
-1.2121842e+183
-1.2104849e+183
-1.2141348e+183
-1.216122e+183
-1.2163302e+183
-1.2143513e+183
-1.2128748e+183
-1.210727e+183
-1.2126275e+183
-1.2109662e+183
-1.2145682e+183
-1.2165485e+183
-1.2148156e+183
-1.2167947e+183
-1.2061499e+183
-1.2063543e+183
-1.2083408e+183
-1.208539e+183
-1.2087757e+183
-1.2090106e+183
-1.2065818e+183
-1.2067983e+183
-1.2031854e+183
-1.1991686e+183
-1.2035979e+183
-1.1995654e+183
-1.1956986e+183
-1.196074e+183
-1.207001e+183
-1.2071981e+183
-1.2092127e+183
-1.209418e+183
-1.2096588e+183
-1.2098998e+183
-1.2074021e+183
-1.2076181e+183
-1.2043113e+183
-1.2003476e+183
-1.2039588e+183
-1.1999349e+183
-1.1964129e+183
-1.1967814e+183
-1.1922766e+183
-1.1888443e+183
-1.1892828e+183
-1.1926677e+183
-1.1933342e+183
-1.1896462e+183
-1.1929929e+183
-1.1899553e+183
-1.2147212e+183
-1.2124791e+183
-1.2144527e+183
-1.2127398e+183
-1.216399e+183
-1.2183564e+183
-1.2186179e+183
-1.2166621e+183
-1.2130188e+183
-1.2149881e+183
-1.2132592e+183
-1.2169173e+183
-1.2188662e+183
-1.2079571e+183
-1.2082016e+183
-1.2103925e+183
-1.2106478e+183
-1.2109269e+183
-1.2111583e+183
-1.2084637e+183
-1.2086776e+183
-1.2056695e+183
-1.2040084e+183
-1.2014162e+183
-1.2042352e+183
-1.2059055e+183
-1.1984201e+183
-1.1981092e+183
-1.2017643e+183
-1.2046543e+183
-1.204458e+183
-1.2061481e+183
-1.2063537e+183
-1.2021462e+183
-1.1987758e+183
-1.1923804e+183
-1.1920159e+183
-1.1953468e+183
-1.1916994e+183
-1.191511e+183
-1.1947719e+183
-1.1950272e+183
-1.2195094e+183
-1.2173173e+183
-1.2193419e+183
-1.2174785e+183
-1.2179178e+183
-1.2176849e+183
-1.219711e+183
-1.2199397e+183
-1.2213919e+183
-1.2235403e+183
-1.221553e+183
-1.2236939e+183
-1.2219876e+183
-1.2239008e+183
-1.2241381e+183
-1.221757e+183
-1.2167873e+183
-1.2187993e+183
-1.2168908e+183
-1.2189137e+183
-1.2209463e+183
-1.2230902e+183
-1.2208389e+183
-1.2229834e+183
-1.2191891e+183
-1.2170107e+183
-1.2190426e+183
-1.2171551e+183
-1.2210906e+183
-1.2232349e+183
-1.2233987e+183
-1.2212432e+183
-1.2251414e+183
-1.2273898e+183
-1.2275149e+183
-1.2252537e+183
-1.2296705e+183
-1.2320764e+183
-1.2322021e+183
-1.2297928e+183
-1.2253967e+183
-1.2255539e+183
-1.2276533e+183
-1.2277995e+183
-1.2299367e+183
-1.2300898e+183
-1.2323494e+183
-1.2325153e+183
-1.2281384e+183
-1.225705e+183
-1.2279598e+183
-1.2258643e+183
-1.2326841e+183
-1.2302561e+183
-1.2304354e+183
-1.2328683e+183
-1.2285782e+183
-1.2260742e+183
-1.228347e+183
-1.2263088e+183
-1.2330923e+183
-1.2306535e+183
-1.2308903e+183
-1.2333373e+183
-1.2094167e+183
-1.2096114e+183
-1.2113276e+183
-1.2115188e+183
-1.2134689e+183
-1.2152924e+183
-1.2154576e+183
-1.213292e+183
-1.2098523e+183
-1.2100855e+183
-1.2119725e+183
-1.2117424e+183
-1.2136807e+183
-1.213912e+183
-1.2156671e+183
-1.2159042e+183
-1.2052787e+183
-1.2054861e+183
-1.2074773e+183
-1.2076709e+183
-1.2079109e+183
-1.2081471e+183
-1.2057257e+183
-1.2059518e+183
-1.2027824e+183
-1.1987105e+183
-1.2023169e+183
-1.1981542e+183
-1.1946125e+183
-1.1951921e+183
-1.2046594e+183
-1.2047611e+183
-1.2069409e+183
-1.2069999e+183
-1.2071395e+183
-1.2073065e+183
-1.2049255e+183
-1.2050948e+183
-1.2019263e+183
-1.1976709e+183
-1.2015633e+183
-1.1972469e+183
-1.193653e+183
-1.1940954e+183
-1.2108798e+183
-1.2089028e+183
-1.2108217e+183
-1.208947e+183
-1.2127881e+183
-1.2147831e+183
-1.2148664e+183
-1.2128594e+183
-1.2111466e+183
-1.2090736e+183
-1.2109881e+183
-1.2092351e+183
-1.212974e+183
-1.214984e+183
-1.2131266e+183
-1.2151314e+183
-1.1901453e+183
-1.1866407e+183
-1.1870851e+183
-1.1905915e+183
-1.1911015e+183
-1.1876066e+183
-1.1882765e+183
-1.191735e+183
-1.1749967e+183
-1.1742928e+183
-1.1775189e+183
-1.1782105e+183
-1.1737627e+183
-1.1733372e+183
-1.1765467e+183
-1.1769901e+183
-1.1831655e+183
-1.179764e+183
-1.1802025e+183
-1.1835979e+183
-1.18142e+183
-1.1807304e+183
-1.1841201e+183
-1.1848205e+183
-1.1760835e+183
-1.1755832e+183
-1.1788023e+183
-1.1793096e+183
-1.1854099e+183
-1.1820222e+183
-1.182535e+183
-1.1858873e+183
-1.186311e+183
-1.1829912e+183
-1.186594e+183
-1.1832469e+183
-1.1797392e+183
-1.1765274e+183
-1.1768774e+183
-1.1800481e+183
-1.1821376e+183
-1.1793125e+183
-1.1792804e+183
-1.1821262e+183
-1.1797068e+183
-1.1794938e+183
-1.1823842e+183
-1.1826403e+183
-1.1851723e+183
-1.1851144e+183
-1.1882483e+183
-1.1883724e+183
-1.1886761e+183
-1.1854545e+183
-1.1857452e+183
-1.1890014e+183
-1.1014886e+183
-1.0726111e+183
-1.0705247e+183
-1.0333648e+183
-1.1638377e+183
-1.1622821e+183
-1.1691253e+183
-1.1707124e+183
-1.160823e+183
-1.1836068e+183
-1.1760441e+183
-1.1854283e+183
-1.1777177e+183
-1.1463375e+183
-1.1537099e+183
-1.1285002e+183
-1.1385909e+183
-1.1318988e+183
-1.1299848e+183
-1.1399982e+183
-1.1417824e+183
-1.1551284e+183
-1.1476865e+183
-1.1567154e+183
-1.1493751e+183
-1.1956092e+183
-1.1916694e+183
-1.1965111e+183
-1.1975029e+183
-1.1934849e+183
-1.1925879e+183
-1.200338e+183
-1.2043115e+183
-1.2014123e+183
-1.2054651e+183
-1.2082783e+183
-1.212426e+183
-1.2094596e+183
-1.2136194e+183
-1.217898e+183
-1.2224985e+183
-1.2270461e+183
-1.2319299e+183
-1.2628236e+183
-1.2672375e+183
-1.2677789e+183
-1.2633375e+183
-1.2644383e+183
-1.2638539e+183
-1.2682851e+183
-1.2688681e+183
-1.2774539e+183
-1.2717119e+183
-1.2769382e+183
-1.2722271e+183
-1.2733752e+183
-1.2786715e+183
-1.2727571e+183
-1.278011e+183
-1.2506979e+183
-1.253999e+183
-1.2545857e+183
-1.2512675e+183
-1.2524554e+183
-1.2518442e+183
-1.2551531e+183
-1.25575e+183
-1.2617444e+183
-1.2573114e+183
-1.2611598e+183
-1.2578887e+183
-1.2590776e+183
-1.2629565e+183
-1.2584595e+183
-1.2623232e+183
-1.2524673e+183
-1.2486501e+183
-1.2519333e+183
-1.2491631e+183
-1.2552184e+183
-1.2590338e+183
-1.2595328e+183
-1.2557313e+183
-1.2534917e+183
-1.2496496e+183
-1.2529462e+183
-1.2501918e+183
-1.2562351e+183
-1.260052e+183
-1.2567935e+183
-1.2606287e+183
-1.2649727e+183
-1.2694182e+183
-1.2700428e+183
-1.2655628e+183
-1.2739509e+183
-1.2792657e+183
-1.2799301e+183
-1.2745867e+183
-1.2661583e+183
-1.2668046e+183
-1.2706614e+183
-1.2713176e+183
-1.2752333e+183
-1.2759299e+183
-1.2805976e+183
-1.2813287e+183
-1.2447264e+183
-1.2414573e+183
-1.2441968e+183
-1.2419755e+183
-1.2469463e+183
-1.2499862e+183
-1.2504814e+183
-1.2474524e+183
-1.2429514e+183
-1.2456946e+183
-1.2424594e+183
-1.2452003e+183
-1.2479368e+183
-1.2509786e+183
-1.2484477e+183
-1.2515115e+183
-1.2334481e+183
-1.2358435e+183
-1.2361653e+183
-1.2337454e+183
-1.2342626e+183
-1.2340198e+183
-1.2364478e+183
-1.2366998e+183
-1.2411376e+183
-1.238221e+183
-1.2407895e+183
-1.2385514e+183
-1.2391251e+183
-1.2417484e+183
-1.2388507e+183
-1.2414492e+183
-1.2345904e+183
-1.2317014e+183
-1.2340623e+183
-1.2322141e+183
-1.2364051e+183
-1.2389321e+183
-1.2394411e+183
-1.2369179e+183
-1.2354902e+183
-1.2326641e+183
-1.2350383e+183
-1.2331077e+183
-1.2373909e+183
-1.2399273e+183
-1.2378569e+183
-1.2404144e+183
-1.2433382e+183
-1.2461013e+183
-1.2464989e+183
-1.2437012e+183
-1.2519707e+183
-1.2493019e+183
-1.2488863e+183
-1.252414e+183
-1.2440356e+183
-1.244351e+183
-1.2468578e+183
-1.2471911e+183
-1.2528282e+183
-1.2500525e+183
-1.2532208e+183
-1.2496904e+183
-1.2371391e+183
-1.2376722e+183
-1.240418e+183
-1.2398785e+183
-1.2387375e+183
-1.2414514e+183
-1.2381906e+183
-1.2409213e+183
-1.2426295e+183
-1.2456777e+183
-1.2461869e+183
-1.2431503e+183
-1.2436446e+183
-1.2441793e+183
-1.2466765e+183
-1.2472148e+183
-1.2324128e+183
-1.2295009e+183
-1.2318561e+183
-1.2300627e+183
-1.2341891e+183
-1.2367115e+183
-1.2372535e+183
-1.2347352e+183
-1.230618e+183
-1.2311942e+183
-1.2329615e+183
-1.2335475e+183
-1.2352791e+183
-1.2358811e+183
-1.2377971e+183
-1.2384086e+183
-1.2278531e+183
-1.2273257e+183
-1.2297029e+183
-1.2302352e+183
-1.2325894e+183
-1.2320615e+183
-1.2346086e+183
-1.2351348e+183
-1.2313504e+183
-1.2283853e+183
-1.2307612e+183
-1.2289786e+183
-1.2356609e+183
-1.233121e+183
-1.2336945e+183
-1.236224e+183
-1.2424981e+183
-1.2392215e+183
-1.2419399e+183
-1.239763e+183
-1.2477226e+183
-1.2446845e+183
-1.2452433e+183
-1.2482866e+183
-1.2409295e+183
-1.2436733e+183
-1.2403158e+183
-1.243061e+183
-1.248866e+183
-1.2458153e+183
-1.2464331e+183
-1.2494843e+183
-1.2529568e+183
-1.2562604e+183
-1.2567907e+183
-1.2534583e+183
-1.2539655e+183
-1.2545141e+183
-1.2573117e+183
-1.257874e+183
-1.2640406e+183
-1.2595986e+183
-1.2634884e+183
-1.2601361e+183
-1.2612701e+183
-1.2652255e+183
-1.2606772e+183
-1.2646003e+183
-1.2549897e+183
-1.2583663e+183
-1.2588717e+183
-1.2554558e+183
-1.2662886e+183
-1.2617812e+183
-1.2657563e+183
-1.2622949e+183
-1.2597466e+183
-1.2558899e+183
-1.2593213e+183
-1.2563021e+183
-1.2627677e+183
-1.2667823e+183
-1.2672657e+183
-1.263221e+183
-1.2696937e+183
-1.2743001e+183
-1.2749005e+183
-1.2702468e+183
-1.2844796e+183
-1.2795986e+183
-1.2789899e+183
-1.285114e+183
-1.2857151e+183
-1.280168e+183
-1.2807235e+183
-1.2863049e+183
-1.2707615e+183
-1.2712618e+183
-1.2754337e+183
-1.2759454e+183
-1.2673546e+183
-1.2718825e+183
-1.2724886e+183
-1.267924e+183
-1.2685003e+183
-1.2730791e+183
-1.269142e+183
-1.2737314e+183
-1.281907e+183
-1.2825288e+183
-1.2764987e+183
-1.2771037e+183
-1.2784042e+183
-1.2777155e+183
-1.2831577e+183
-1.2838813e+183
-1.1204402e+183
-1.0997809e+183
-1.0997219e+183
-1.1207455e+183
-1.121945e+183
-1.1236049e+183
-1.1029062e+183
-1.1007507e+183
-1.0704624e+183
-1.0724898e+183
-1.1191385e+183
-1.1188114e+183
-1.0995198e+183
-1.0984671e+183
-1.1190206e+183
-1.1198595e+183
-1.0983626e+183
-1.0993154e+183
-1.069899e+183
-1.0705965e+183
-1.0295499e+183
-1.0302197e+183
-1.1728465e+183
-1.1721337e+183
-1.1760537e+183
-1.1753139e+183
-1.1714626e+183
-1.1707564e+183
-1.1738649e+183
-1.1746306e+183
-1.177777e+183
-1.1769831e+183
-1.1802405e+183
-1.1810909e+183
-1.1818626e+183
-1.1785092e+183
-1.1792603e+183
-1.1826553e+183
-1.1770279e+183
-1.1739198e+183
-1.1745628e+183
-1.1776937e+183
-1.1709359e+183
-1.167975e+183
-1.168494e+183
-1.1715267e+183
-1.1784646e+183
-1.1753164e+183
-1.1762074e+183
-1.1794057e+183
-1.1722351e+183
-1.1691648e+183
-1.1700422e+183
-1.1731353e+183
-1.1826544e+183
-1.1816678e+183
-1.1860508e+183
-1.1850211e+183
-1.1809026e+183
-1.1802179e+183
-1.1835508e+183
-1.1842491e+183
-1.1877277e+183
-1.18702e+183
-1.1906441e+183
-1.1913835e+183
-1.1922108e+183
-1.1885241e+183
-1.1895673e+183
-1.1932696e+183
-1.1860887e+183
-1.1852926e+183
-1.1887788e+183
-1.1895842e+183
-1.1844816e+183
-1.1835729e+183
-1.186997e+183
-1.1879557e+183
-1.1942086e+183
-1.1905195e+183
-1.1914788e+183
-1.1951553e+183
-1.1931102e+183
-1.1923157e+183
-1.1959861e+183
-1.1967598e+183
-1.1579191e+183
-1.1608649e+183
-1.1573795e+183
-1.1602094e+183
-1.1570018e+183
-1.1566399e+183
-1.1592763e+183
-1.1596993e+183
-1.1648993e+183
-1.1620086e+183
-1.1624483e+183
-1.1653624e+183
-1.1630274e+183
-1.1660036e+183
-1.1668471e+183
-1.1637745e+183
-1.1536485e+183
-1.1506499e+183
-1.1507511e+183
-1.1539376e+183
-1.1468077e+183
-1.1410891e+183
-1.1407599e+183
-1.1467702e+183
-1.1410434e+183
-1.1408223e+183
-1.1467864e+183
-1.1471077e+183
-1.1541428e+183
-1.1507171e+183
-1.1511494e+183
-1.1546191e+183
-1.14283e+183
-1.1420851e+183
-1.1490396e+183
-1.1483127e+183
-1.141446e+183
-1.1413808e+183
-1.1474107e+183
-1.1477839e+183
-1.1519279e+183
-1.1514175e+183
-1.1549908e+183
-1.1554842e+183
-1.1523916e+183
-1.1560204e+183
-1.1568259e+183
-1.1532297e+183
-1.1588743e+183
-1.1583596e+183
-1.1613929e+183
-1.1619591e+183
-1.1644045e+183
-1.1675344e+183
-1.1681905e+183
-1.1650161e+183
-1.1625644e+183
-1.1594608e+183
-1.1602205e+183
-1.1632749e+183
-1.1663407e+183
-1.1656523e+183
-1.1688429e+183
-1.1695575e+183
-1.1622486e+183
-1.1615735e+183
-1.1653879e+183
-1.1646951e+183
-1.1611272e+183
-1.1607259e+183
-1.1637852e+183
-1.1642074e+183
-1.1672363e+183
-1.1668286e+183
-1.1700274e+183
-1.1704318e+183
-1.1709496e+183
-1.1677404e+183
-1.1684439e+183
-1.171675e+183
-1.1429397e+183
-1.1431056e+183
-1.1493845e+183
-1.1495469e+183
-1.1536582e+183
-1.1572798e+183
-1.157639e+183
-1.1539353e+183
-1.1499263e+183
-1.1431952e+183
-1.1440021e+183
-1.1505555e+183
-1.1549623e+183
-1.1543552e+183
-1.1580573e+183
-1.1587343e+183
-1.1472722e+183
-1.1464738e+183
-1.1533417e+183
-1.1526773e+183
-1.14548e+183
-1.1447186e+183
-1.1512075e+183
-1.1519472e+183
-1.1562113e+183
-1.1555793e+183
-1.1592807e+183
-1.1598353e+183
-1.1603571e+183
-1.1567421e+183
-1.1574537e+183
-1.160968e+183
-1.1643637e+183
-1.163807e+183
-1.1669013e+183
-1.1674233e+183
-1.1632933e+183
-1.1627676e+183
-1.1659008e+183
-1.1664145e+183
-1.1722564e+183
-1.1690152e+183
-1.1695244e+183
-1.1727522e+183
-1.1704748e+183
-1.1700066e+183
-1.1732114e+183
-1.1736352e+183
-1.2101142e+183
-1.2120924e+183
-1.2106129e+183
-1.2126022e+183
-1.214597e+183
-1.2140873e+183
-1.2161847e+183
-1.2166908e+183
-1.2111318e+183
-1.2117152e+183
-1.2131266e+183
-1.2137199e+183
-1.2172275e+183
-1.215731e+183
-1.2178389e+183
-1.2151295e+183
-1.2182877e+183
-1.2188036e+183
-1.2210047e+183
-1.220479e+183
-1.2226973e+183
-1.2250365e+183
-1.2255575e+183
-1.2232196e+183
-1.2221392e+183
-1.2193396e+183
-1.2215372e+183
-1.2199466e+183
-1.2237527e+183
-1.2243497e+183
-1.2260907e+183
-1.2266871e+183
-1.2244393e+183
-1.2216785e+183
-1.2222645e+183
-1.2238635e+183
-1.2205024e+183
-1.2211005e+183
-1.2226858e+183
-1.2232903e+183
-1.2272136e+183
-1.2254752e+183
-1.2277861e+183
-1.2248858e+183
-1.2260424e+183
-1.2266131e+183
-1.2289136e+183
-1.2283445e+183
-1.2140076e+183
-1.2160176e+183
-1.2134196e+183
-1.2154249e+183
-1.2128473e+183
-1.2122583e+183
-1.2142689e+183
-1.2148612e+183
-1.2168725e+183
-1.216285e+183
-1.2183931e+183
-1.2189811e+183
-1.2195538e+183
-1.2201511e+183
-1.2174404e+183
-1.2180335e+183
-1.2023389e+183
-1.2042499e+183
-1.2028361e+183
-1.204737e+183
-1.2066596e+183
-1.2086287e+183
-1.2061794e+183
-1.2081448e+183
-1.2037965e+183
-1.2032911e+183
-1.2052198e+183
-1.2057421e+183
-1.2077071e+183
-1.2097112e+183
-1.2071604e+183
-1.209139e+183
-1.1977834e+183
-1.1967402e+183
-1.2022135e+183
-1.1997941e+183
-1.2002702e+183
-1.2027077e+183
-1.2032497e+183
-1.20383e+183
-1.2008023e+183
-1.2013728e+183
-1.2008255e+183
-1.1979984e+183
-1.2003502e+183
-1.1984293e+183
-1.198881e+183
-1.2012747e+183
-1.1993522e+183
-1.201761e+183
-1.1958227e+183
-1.1949647e+183
-1.204253e+183
-1.2047772e+183
-1.206779e+183
-1.2062171e+183
-1.2082237e+183
-1.2102461e+183
-1.2108308e+183
-1.2088005e+183
-1.2079112e+183
-1.2053201e+183
-1.2073321e+183
-1.2058946e+183
-1.2093665e+183
-1.2114032e+183
-1.2099474e+183
-1.2119907e+183
-1.1998042e+183
-1.1988289e+183
-1.2018624e+183
-1.2023264e+183
-1.2042969e+183
-1.2047605e+183
-1.2052507e+183
-1.2057466e+183
-1.2028207e+183
-1.2033114e+183
-1.2103816e+183
-1.2081472e+183
-1.210106e+183
-1.2084469e+183
-1.2087067e+183
-1.2088589e+183
-1.2105954e+183
-1.2107415e+183
-1.2120678e+183
-1.214052e+183
-1.2123167e+183
-1.2142695e+183
-1.2126672e+183
-1.2144756e+183
-1.2146505e+183
-1.2125111e+183
-1.2063595e+183
-1.2068387e+183
-1.2083771e+183
-1.2088553e+183
-1.2108826e+183
-1.2129183e+183
-1.2104111e+183
-1.2124585e+183
-1.2097738e+183
-1.2073128e+183
-1.2093156e+183
-1.2077896e+183
-1.2113338e+183
-1.2133575e+183
-1.2137744e+183
-1.2117677e+183
-1.2037159e+183
-1.2040535e+183
-1.2061167e+183
-1.2064244e+183
-1.206707e+183
-1.2068794e+183
-1.204346e+183
-1.2045308e+183
-1.2012192e+183
-1.2006246e+183
-1.2144773e+183
-1.2164905e+183
-1.2169564e+183
-1.2149373e+183
-1.2185148e+183
-1.2206294e+183
-1.2189761e+183
-1.2210859e+183
-1.2153676e+183
-1.2157682e+183
-1.2173761e+183
-1.2177631e+183
-1.2215062e+183
-1.2197838e+183
-1.2219049e+183
-1.2193961e+183
-1.2182525e+183
-1.2160352e+183
-1.2180305e+183
-1.2162485e+183
-1.2200578e+183
-1.2221831e+183
-1.222408e+183
-1.220279e+183
-1.2186496e+183
-1.2164565e+183
-1.2184587e+183
-1.2166394e+183
-1.2204923e+183
-1.2226283e+183
-1.2206892e+183
-1.2228357e+183
-1.2236227e+183
-1.2240237e+183
-1.2262262e+183
-1.2258184e+183
-1.2253883e+183
-1.2227355e+183
-1.2249042e+183
-1.2231988e+183
-1.2270959e+183
-1.2294159e+183
-1.2299185e+183
-1.2275887e+183
-1.2280324e+183
-1.2284537e+183
-1.2303697e+183
-1.2308068e+183
-1.2267933e+183
-1.2243149e+183
-1.2265289e+183
-1.2245539e+183
-1.2311336e+183
-1.2287708e+183
-1.2290431e+183
-1.2314169e+183
-1.2249894e+183
-1.2272362e+183
-1.2247816e+183
-1.2270276e+183
-1.2316811e+183
-1.2292934e+183
-1.2295138e+183
-1.2319177e+183
-1.2486957e+183
-1.2454933e+183
-1.2484193e+183
-1.2457384e+183
-1.2462617e+183
-1.2459902e+183
-1.2489514e+183
-1.2492257e+183
-1.2513537e+183
-1.2545909e+183
-1.2516165e+183
-1.2548522e+183
-1.252205e+183
-1.2551686e+183
-1.2554985e+183
-1.2519059e+183
-1.2345709e+183
-1.2344346e+183
-1.2368846e+183
-1.2370437e+183
-1.2394976e+183
-1.2393297e+183
-1.2419677e+183
-1.2421528e+183
-1.2373942e+183
-1.234727e+183
-1.2372103e+183
-1.2349006e+183
-1.2423547e+183
-1.2396849e+183
-1.2398885e+183
-1.2425832e+183
-1.2452572e+183
-1.2481701e+183
-1.245016e+183
-1.24792e+183
-1.2447979e+183
-1.2445932e+183
-1.2474514e+183
-1.2476892e+183
-1.2505787e+183
-1.2503329e+183
-1.2535176e+183
-1.2537808e+183
-1.254047e+183
-1.2543303e+183
-1.2508299e+183
-1.251096e+183
-1.2377926e+183
-1.2350802e+183
-1.2375825e+183
-1.2352719e+183
-1.2400902e+183
-1.2427981e+183
-1.2430224e+183
-1.2403016e+183
-1.2382718e+183
-1.2355009e+183
-1.2380232e+183
-1.2357482e+183
-1.2405423e+183
-1.243268e+183
-1.2408001e+183
-1.2435371e+183
-1.235971e+183
-1.2362049e+183
-1.2384994e+183
-1.2387513e+183
-1.2412856e+183
-1.2440335e+183
-1.2410344e+183
-1.2437761e+183
-1.2393369e+183
-1.2364763e+183
-1.2390258e+183
-1.2367856e+183
-1.2415712e+183
-1.2443256e+183
-1.2446615e+183
-1.2418933e+183
-1.2465111e+183
-1.2494869e+183
-1.2497792e+183
-1.246778e+183
-1.2524828e+183
-1.2557906e+183
-1.2560967e+183
-1.2527764e+183
-1.247077e+183
-1.2474132e+183
-1.2500825e+183
-1.2504175e+183
-1.2530927e+183
-1.253439e+183
-1.2564226e+183
-1.2567839e+183
-1.2510831e+183
-1.2477234e+183
-1.2507337e+183
-1.2480524e+183
-1.2571104e+183
-1.2537615e+183
-1.2540994e+183
-1.2574519e+183
-1.2483782e+183
-1.248705e+183
-1.251408e+183
-1.2517323e+183
-1.2578029e+183
-1.2547781e+183
-1.2581577e+183
-1.2544368e+183
-1.2399553e+183
-1.2370752e+183
-1.2396304e+183
-1.237385e+183
-1.2377034e+183
-1.2380188e+183
-1.2402695e+183
-1.2405789e+183
-1.243146e+183
-1.2459321e+183
-1.2428295e+183
-1.2456062e+183
-1.2421928e+183
-1.2425113e+183
-1.2449649e+183
-1.2452853e+183
-1.2566221e+183
-1.2600843e+183
-1.2604004e+183
-1.2569035e+183
-1.2571869e+183
-1.2574839e+183
-1.2606981e+183
-1.2610053e+183
-1.2645597e+183
-1.2686843e+183
-1.2642226e+183
-1.2683137e+183
-1.2635751e+183
-1.2638984e+183
-1.267633e+183
-1.2679709e+183
-1.2767429e+183
-1.2716501e+183
-1.2763489e+183
-1.2720071e+183
-1.2811304e+183
-1.2867165e+183
-1.2871277e+183
-1.281522e+183
-1.272368e+183
-1.2727573e+183
-1.2771184e+183
-1.2775217e+183
-1.282368e+183
-1.2880399e+183
-1.2819231e+183
-1.2875489e+183
-1.26161e+183
-1.2577575e+183
-1.2612941e+183
-1.2580364e+183
-1.2648658e+183
-1.2690086e+183
-1.2693464e+183
-1.2651865e+183
-1.2622951e+183
-1.2583625e+183
-1.2619409e+183
-1.2587095e+183
-1.2655358e+183
-1.2697124e+183
-1.265912e+183
-1.2701146e+183
-1.2783083e+183
-1.2731083e+183
-1.2778951e+183
-1.2734695e+183
-1.282762e+183
-1.288454e+183
-1.2831864e+183
-1.2889088e+183
-1.2742759e+183
-1.2738563e+183
-1.2787145e+183
-1.2791477e+183
-1.2841148e+183
-1.2893883e+183
-1.2836331e+183
-1.2899224e+183
-1.2644182e+183
-1.2603828e+183
-1.2640367e+183
-1.2607363e+183
-1.2677242e+183
-1.2720036e+183
-1.2680955e+183
-1.2723779e+183
-1.2590185e+183
-1.2626167e+183
-1.2593357e+183
-1.2629632e+183
-1.2665935e+183
-1.2708212e+183
-1.2662448e+183
-1.2704594e+183
-1.2636922e+183
-1.2596742e+183
-1.2633131e+183
-1.2600477e+183
-1.2669645e+183
-1.2712071e+183
-1.2716372e+183
-1.2673682e+183
-1.2903359e+183
-1.284508e+183
-1.2849227e+183
-1.2907665e+183
-1.2746406e+183
-1.2795295e+183
-1.2799452e+183
-1.2750178e+183
-1.2754175e+183
-1.280354e+183
-1.2758567e+183
-1.2807987e+183
-1.2858294e+183
-1.2911942e+183
-1.2853482e+183
-1.291719e+183
-1.2926231e+183
-1.2921603e+183
-1.2862482e+183
-1.286679e+183
-1.2816195e+183
-1.276238e+183
-1.2811949e+183
-1.2766247e+183
-1.2870756e+183
-1.2930065e+183
-1.0711658e+183
-1.0715345e+183
-1.1049385e+183
-1.1034393e+183
-1.12316e+183
-1.1366353e+183
-1.1367575e+183
-1.1234608e+183
-1.1372415e+183
-1.1255081e+183
-1.1383992e+183
-1.1238307e+183
-1.1765472e+183
-1.1739922e+183
-1.1765049e+183
-1.1739351e+183
-1.1715848e+183
-1.1693564e+183
-1.1715162e+183
-1.1692028e+183
-1.1690823e+183
-1.1691203e+183
-1.1714199e+183
-1.1714791e+183
-1.1740607e+183
-1.1739532e+183
-1.1766351e+183
-1.1768028e+183
-1.1548764e+183
-1.161212e+183
-1.1606504e+183
-1.1538548e+183
-1.1669446e+183
-1.1644661e+183
-1.1641088e+183
-1.1666751e+183
-1.1532364e+183
-1.1601802e+183
-1.1602196e+183
-1.1533295e+183
-1.1665818e+183
-1.1638792e+183
-1.1638393e+183
-1.1665074e+183
-1.1640454e+183
-1.1604176e+183
-1.1534765e+183
-1.2064542e+183
-1.2453013e+183
-1.2388335e+183
-1.1737944e+183
-1.2161316e+183
-1.2118318e+183
-1.2368034e+183
-1.2320604e+183
-1.1799909e+183
-1.2200317e+183
-1.2232712e+183
-1.2444878e+183
-1.2408294e+183
-1.2480542e+183
-1.2664144e+183
-1.276419e+183
-1.2783978e+183
-1.268271e+183
-1.2995403e+183
-1.3006076e+183
-1.2975524e+183
-1.2985664e+183
-1.2925363e+183
-1.2878863e+183
-1.2869515e+183
-1.2935256e+183
-1.2887797e+183
-1.2897628e+183
-1.2954453e+183
-1.2944492e+183
-1.2514484e+183
-1.269997e+183
-1.2802075e+183
-1.2821542e+183
-1.2718344e+183
-1.3035608e+183
-1.3046087e+183
-1.3026418e+183
-1.3015995e+183
-1.2935891e+183
-1.2926343e+183
-1.2983832e+183
-1.2993523e+183
-1.2907063e+183
-1.2964153e+183
-1.2974728e+183
-1.2917055e+183
-1.3039198e+183
-1.3112012e+183
-1.3049081e+183
-1.3122282e+183
-1.3159344e+183
-1.316433e+183
-1.3148429e+183
-1.3154134e+183
-1.316926e+183
-1.3132273e+183
-1.3174673e+183
-1.3058534e+183
-1.3068742e+183
-1.314265e+183
-1.3184465e+183
-1.3179681e+183
-1.300886e+183
-1.3080252e+183
-1.2998564e+183
-1.3068864e+183
-1.3115427e+183
-1.312111e+183
-1.3103371e+183
-1.3109615e+183
-1.3018732e+183
-1.3090878e+183
-1.3029034e+183
-1.3101763e+183
-1.3126654e+183
-1.3132678e+183
-1.3138075e+183
-1.3143265e+183
-1.3165067e+183
-1.3170156e+183
-1.3154281e+183
-1.3159816e+183
-1.3180351e+183
-1.3175121e+183
-1.3185312e+183
-1.3190183e+183
-1.3063542e+183
-1.3127298e+183
-1.313278e+183
-1.3068551e+183
-1.3074026e+183
-1.3138311e+183
-1.3143368e+183
-1.3079129e+183
-1.3164194e+183
-1.3158673e+183
-1.3162435e+183
-1.3156777e+183
-1.3174655e+183
-1.3169506e+183
-1.3173048e+183
-1.3167937e+183
-1.3179656e+183
-1.3184814e+183
-1.3178123e+183
-1.3183305e+183
-1.308377e+183
-1.3148406e+183
-1.3153438e+183
-1.3088466e+183
-1.3188082e+183
-1.3189766e+183
-1.3194593e+183
-1.3192596e+183
-1.3162406e+183
-1.3158126e+183
-1.3093267e+183
-1.3097414e+183
-1.3121021e+183
-1.3126786e+183
-1.3108974e+183
-1.3115102e+183
-1.3132455e+183
-1.313823e+183
-1.3143684e+183
-1.3148997e+183
-1.3021139e+183
-1.3082543e+183
-1.3088648e+183
-1.3026814e+183
-1.3032191e+183
-1.3094645e+183
-1.3100277e+183
-1.3037523e+183
-1.311926e+183
-1.311312e+183
-1.3117332e+183
-1.311104e+183
-1.3131086e+183
-1.3125234e+183
-1.3129272e+183
-1.3123449e+183
-1.304267e+183
-1.3106011e+183
-1.3111839e+183
-1.3048231e+183
-1.3053584e+183
-1.3117282e+183
-1.3122264e+183
-1.3058811e+183
-1.3142544e+183
-1.3136787e+183
-1.3141017e+183
-1.3135116e+183
-1.3153352e+183
-1.3148013e+183
-1.3151594e+183
-1.3146469e+183
-1.2450195e+183
-1.2520991e+183
-1.2727814e+183
-1.2690919e+183
-1.2830935e+183
-1.2903664e+183
-1.2884684e+183
-1.2907734e+183
-1.2926044e+183
-1.2395454e+183
-1.2571454e+183
-1.2666454e+183
-1.2696307e+183
-1.2600087e+183
-1.289663e+183
-1.2912008e+183
-1.2866432e+183
-1.2882054e+183
-1.2818234e+183
-1.2780209e+183
-1.2764418e+183
-1.283394e+183
-1.2794639e+183
-1.2809443e+183
-1.2863176e+183
-1.2848384e+183
-1.2441606e+183
-1.2645612e+183
-1.262355e+183
-1.2720868e+183
-1.2744481e+183
-1.2951722e+183
-1.2964764e+183
-1.2925382e+183
-1.2938862e+183
-1.2876428e+183
-1.283505e+183
-1.2822163e+183
-1.2889861e+183
-1.2847285e+183
-1.2859696e+183
-1.291486e+183
-1.2902408e+183
-1.2973482e+183
-1.2904644e+183
-1.2957389e+183
-1.2889008e+183
-1.2989894e+183
-1.2998176e+183
-1.3005988e+183
-1.3013666e+183
-1.2919469e+183
-1.2988259e+183
-1.2934352e+183
-1.3003358e+183
-1.3021078e+183
-1.3029035e+183
-1.3036426e+183
-1.3043643e+183
-1.2987559e+183
-1.3057612e+183
-1.2974905e+183
-1.304468e+183
-1.3085391e+183
-1.3078478e+183
-1.3091677e+183
-1.3097628e+183
-1.2948146e+183
-1.3017259e+183
-1.2961795e+183
-1.303156e+183
-1.30506e+183
-1.3058103e+183
-1.3065119e+183
-1.3071952e+183
-1.301139e+183
-1.3019113e+183
-1.299545e+183
-1.300358e+183
-1.3026611e+183
-1.3034388e+183
-1.3041776e+183
-1.3049052e+183
-1.2999623e+183
-1.3007687e+183
-1.3006094e+183
-1.2997968e+183
-1.297899e+183
-1.2971247e+183
-1.2913243e+183
-1.2920095e+183
-1.2993914e+183
-1.2986567e+183
-1.2927256e+183
-1.2934083e+183
-1.3023215e+183
-1.3015488e+183
-1.3021488e+183
-1.3013865e+183
-1.3008897e+183
-1.3001328e+183
-1.2941113e+183
-1.2948348e+183
-1.3023153e+183
-1.3016176e+183
-1.2955666e+183
-1.2962513e+183
-1.3038449e+183
-1.3030748e+183
-1.3036794e+183
-1.3029022e+183
-1.3053086e+183
-1.3045825e+183
-1.3051132e+183
-1.3044055e+183
-1.3056129e+183
-1.3063511e+183
-1.3070553e+183
-1.3077437e+183
-1.3084032e+183
-1.3090764e+183
-1.3097033e+183
-1.3103047e+183
-1.3067591e+183
-1.3060232e+183
-1.3058272e+183
-1.3065839e+183
-1.3037634e+183
-1.303022e+183
-1.2969382e+183
-1.2976464e+183
-1.2983593e+183
-1.30449e+183
-1.3051726e+183
-1.2990479e+183
-1.3081562e+183
-1.3074675e+183
-1.3079888e+183
-1.3073037e+183
-1.2997121e+183
-1.3058426e+183
-1.3065023e+183
-1.3003884e+183
-1.301003e+183
-1.3071159e+183
-1.3076796e+183
-1.30157e+183
-1.3094862e+183
-1.3088205e+183
-1.3093179e+183
-1.3086506e+183
-1.3107148e+183
-1.31011e+183
-1.3105116e+183
-1.30993e+183
-1.0325558e+183
-1.0316703e+183
-1.2906305e+183
-1.283779e+183
-1.2899496e+183
-1.2831386e+183
-1.2919801e+183
-1.2851116e+183
-1.2913085e+183
-1.2844293e+183
-1.2933166e+183
-1.2863831e+183
-1.2926547e+183
-1.2857498e+183
-1.2944623e+183
-1.28753e+183
-1.2939282e+183
-1.2869801e+183
-1.285234e+183
-1.2786237e+183
-1.2846222e+183
-1.2780865e+183
-1.2865279e+183
-1.2798524e+183
-1.2858843e+183
-1.2792211e+183
-1.2878939e+183
-1.2811399e+183
-1.2872025e+183
-1.2804823e+183
-1.2892596e+183
-1.2825029e+183
-1.2885817e+183
-1.2818117e+183
-1.2974106e+183
-1.2901918e+183
-1.2969073e+183
-1.2897342e+183
-1.2984021e+183
-1.291155e+183
-1.2979061e+183
-1.2906615e+183
-1.2954647e+183
-1.2884056e+183
-1.2949618e+183
-1.2879688e+183
-1.2964175e+183
-1.2892969e+183
-1.2959432e+183
-1.2888409e+183
-1.3012943e+183
-1.2939192e+183
-1.3008339e+183
-1.2934561e+183
-1.3017032e+183
-1.2942922e+183
-1.2993969e+183
-1.2920845e+183
-1.2989098e+183
-1.2916151e+183
-1.3003455e+183
-1.292988e+183
-1.2998619e+183
-1.2925036e+183
-1.2193033e+183
-1.2213046e+183
-1.2215749e+183
-1.2195598e+183
-1.2200976e+183
-1.2198256e+183
-1.2218516e+183
-1.2221315e+183
-1.2257928e+183
-1.2233746e+183
-1.2255052e+183
-1.2236503e+183
-1.2242275e+183
-1.2263785e+183
-1.2239388e+183
-1.226084e+183
-1.2205916e+183
-1.2183842e+183
-1.2203766e+183
-1.2185993e+183
-1.22243e+183
-1.2245334e+183
-1.2247337e+183
-1.2226348e+183
-1.2210482e+183
-1.2188143e+183
-1.220813e+183
-1.2190402e+183
-1.2228711e+183
-1.2249812e+183
-1.2231103e+183
-1.2252322e+183
-1.2277187e+183
-1.2299797e+183
-1.2302675e+183
-1.2280074e+183
-1.2347389e+183
-1.2326218e+183
-1.2323317e+183
-1.2350335e+183
-1.2283084e+183
-1.2286085e+183
-1.2305795e+183
-1.2308848e+183
-1.235351e+183
-1.2332442e+183
-1.2356559e+183
-1.232937e+183
-1.2291728e+183
-1.2267209e+183
-1.2289587e+183
-1.2269271e+183
-1.233672e+183
-1.2312873e+183
-1.2315067e+183
-1.2338972e+183
-1.2274386e+183
-1.2296965e+183
-1.2271782e+183
-1.2294279e+183
-1.2341633e+183
-1.2317668e+183
-1.2320434e+183
-1.2344475e+183
-1.2289071e+183
-1.222704e+183
-1.2204074e+183
-1.222441e+183
-1.2206672e+183
-1.2245294e+183
-1.2266779e+183
-1.224784e+183
-1.2209258e+183
-1.2229604e+183
-1.2250502e+183
-1.2115484e+183
-1.2117631e+183
-1.2134837e+183
-1.2137068e+183
-1.2156262e+183
-1.2173135e+183
-1.2175612e+183
-1.2153917e+183
-1.2119958e+183
-1.2122336e+183
-1.2141884e+183
-1.2139432e+183
-1.2158671e+183
-1.2161211e+183
-1.2178148e+183
-1.218079e+183
-1.2128215e+183
-1.2106902e+183
-1.2126029e+183
-1.2109015e+183
-1.2144967e+183
-1.2164082e+183
-1.216623e+183
-1.2147113e+183
-1.2132711e+183
-1.2111224e+183
-1.2130389e+183
-1.2113408e+183
-1.2149253e+183
-1.216834e+183
-1.215154e+183
-1.2170528e+183
-1.2063422e+183
-1.2065503e+183
-1.2086804e+183
-1.2088884e+183
-1.2091046e+183
-1.2093155e+183
-1.2067623e+183
-1.2069616e+183
-1.2000296e+183
-1.2027885e+183
-1.2025843e+183
-1.2041666e+183
-1.2043741e+183
-1.2004204e+183
-1.2031714e+183
-1.2029946e+183
-1.2045776e+183
-1.204762e+183
-1.1968807e+183
-1.1972532e+183
-1.2071483e+183
-1.2073405e+183
-1.2095122e+183
-1.209718e+183
-1.209934e+183
-1.21016e+183
-1.2075249e+183
-1.2077277e+183
-1.2010463e+183
-1.2038023e+183
-1.2036323e+183
-1.2052646e+183
-1.2054516e+183
-1.2007355e+183
-1.2034774e+183
-1.2033264e+183
-1.2049268e+183
-1.2050965e+183
-1.1975109e+183
-1.1977809e+183
-1.1936761e+183
-1.1905102e+183
-1.1909253e+183
-1.1940495e+183
-1.1945204e+183
-1.1911617e+183
-1.1942728e+183
-1.191363e+183
-1.2148601e+183
-1.2126946e+183
-1.2145863e+183
-1.212964e+183
-1.2164804e+183
-1.2184126e+183
-1.2186702e+183
-1.2167422e+183
-1.2132353e+183
-1.2151239e+183
-1.2134748e+183
-1.2170073e+183
-1.2189328e+183
-1.2075124e+183
-1.2077736e+183
-1.2107928e+183
-1.2110582e+183
-1.2113332e+183
-1.2115648e+183
-1.2080377e+183
-1.2082548e+183
-1.2055919e+183
-1.2040106e+183
-1.2024772e+183
-1.2008875e+183
-1.2010777e+183
-1.2026867e+183
-1.2042355e+183
-1.2058289e+183
-1.1981974e+183
-1.1980488e+183
-1.1997042e+183
-1.1998738e+183
-1.1993527e+183
-1.1977169e+183
-1.1978847e+183
-1.1995315e+183
-1.2028909e+183
-1.2012582e+183
-1.2014382e+183
-1.2030795e+183
-1.2046614e+183
-1.2044712e+183
-1.2060781e+183
-1.2062812e+183
-1.2032517e+183
-1.2016196e+183
-1.2017802e+183
-1.2034203e+183
-1.2000426e+183
-1.1983508e+183
-1.1985245e+183
-1.2002055e+183
-1.1923229e+183
-1.1921688e+183
-1.1938327e+183
-1.1940135e+183
-1.1920035e+183
-1.1918426e+183
-1.1934754e+183
-1.193648e+183
-1.1967304e+183
-1.1950446e+183
-1.1952252e+183
-1.1969083e+183
-1.1916918e+183
-1.1915705e+183
-1.193222e+183
-1.1933462e+183
-1.1930182e+183
-1.1914168e+183
-1.1914724e+183
-1.1931087e+183
-1.1961558e+183
-1.1945361e+183
-1.1946609e+183
-1.19631e+183
-1.1964604e+183
-1.1947922e+183
-1.194917e+183
-1.1965967e+183
-1.2197625e+183
-1.2176161e+183
-1.2196023e+183
-1.2177713e+183
-1.2181628e+183
-1.2179573e+183
-1.2199508e+183
-1.2201571e+183
-1.2216519e+183
-1.2237562e+183
-1.2218068e+183
-1.2239089e+183
-1.2222121e+183
-1.2241082e+183
-1.2243197e+183
-1.2220034e+183
-1.2171374e+183
-1.219113e+183
-1.2172433e+183
-1.2192203e+183
-1.2212557e+183
-1.2233552e+183
-1.2211535e+183
-1.2232472e+183
-1.2194637e+183
-1.2173492e+183
-1.2193422e+183
-1.2174672e+183
-1.2213898e+183
-1.2234898e+183
-1.2236208e+183
-1.2215117e+183
-1.2254158e+183
-1.2276278e+183
-1.2277495e+183
-1.2255302e+183
-1.229918e+183
-1.2322536e+183
-1.2323859e+183
-1.2300436e+183
-1.2256629e+183
-1.2257911e+183
-1.2278794e+183
-1.2280026e+183
-1.2301783e+183
-1.2303086e+183
-1.2325275e+183
-1.2326696e+183
-1.2283292e+183
-1.2259364e+183
-1.2281607e+183
-1.2260937e+183
-1.2328368e+183
-1.2304718e+183
-1.2306456e+183
-1.2330154e+183
-1.2287423e+183
-1.2262928e+183
-1.228529e+183
-1.2265058e+183
-1.2332286e+183
-1.2308516e+183
-1.2310669e+183
-1.2334487e+183
-1.2098832e+183
-1.2100702e+183
-1.2118043e+183
-1.2119828e+183
-1.2138786e+183
-1.2156353e+183
-1.2157941e+183
-1.213712e+183
-1.2102747e+183
-1.2104828e+183
-1.2123837e+183
-1.2121778e+183
-1.2140637e+183
-1.2142686e+183
-1.2159783e+183
-1.2161842e+183
-1.2055228e+183
-1.2057244e+183
-1.2078736e+183
-1.2080647e+183
-1.2082718e+183
-1.2084815e+183
-1.2059394e+183
-1.2061468e+183
-1.199619e+183
-1.2024005e+183
-1.2021931e+183
-1.2037727e+183
-1.2039779e+183
-1.1991318e+183
-1.2019666e+183
-1.2017467e+183
-1.2033477e+183
-1.2035582e+183
-1.1959198e+183
-1.1964396e+183
-1.2049791e+183
-1.2050666e+183
-1.2074124e+183
-1.2074714e+183
-1.2075753e+183
-1.2077124e+183
-1.2052022e+183
-1.2053513e+183
-1.1986867e+183
-1.2015673e+183
-1.2013842e+183
-1.2030069e+183
-1.2031728e+183
-1.1982604e+183
-1.2011998e+183
-1.2010512e+183
-1.2027283e+183
-1.2028497e+183
-1.1949765e+183
-1.1954382e+183
-1.2114224e+183
-1.2094464e+183
-1.2113654e+183
-1.2094937e+183
-1.2132654e+183
-1.215176e+183
-1.2152659e+183
-1.2133404e+183
-1.2116342e+183
-1.2095819e+183
-1.2115067e+183
-1.2097122e+183
-1.2134314e+183
-1.2153646e+183
-1.2135539e+183
-1.2154824e+183
-1.1916636e+183
-1.1884127e+183
-1.1888655e+183
-1.1921267e+183
-1.1926371e+183
-1.1893713e+183
-1.1899628e+183
-1.1931878e+183
-1.177684e+183
-1.1769994e+183
-1.1798608e+183
-1.1805411e+183
-1.1764729e+183
-1.1760638e+183
-1.1789675e+183
-1.1793854e+183
-1.185156e+183
-1.1820042e+183
-1.1824277e+183
-1.1855879e+183
-1.1835564e+183
-1.1829079e+183
-1.1860798e+183
-1.1867059e+183
-1.178898e+183
-1.1783427e+183
-1.1811599e+183
-1.181749e+183
-1.1873006e+183
-1.1841711e+183
-1.184719e+183
-1.1877804e+183
-1.1880693e+183
-1.1850676e+183
-1.1882292e+183
-1.185207e+183
-1.1821446e+183
-1.1792947e+183
-1.1794391e+183
-1.1822677e+183
-1.1839915e+183
-1.1826059e+183
-1.1824829e+183
-1.1838915e+183
-1.1812964e+183
-1.1799756e+183
-1.1798427e+183
-1.1811642e+183
-1.179842e+183
-1.179807e+183
-1.1811275e+183
-1.1811784e+183
-1.1838843e+183
-1.1824551e+183
-1.1825138e+183
-1.1839577e+183
-1.1802261e+183
-1.1801899e+183
-1.1815594e+183
-1.1816097e+183
-1.1801006e+183
-1.1799786e+183
-1.1813231e+183
-1.1814643e+183
-1.1841096e+183
-1.1826687e+183
-1.1828181e+183
-1.1842674e+183
-1.1843826e+183
-1.1829282e+183
-1.1829823e+183
-1.1844548e+183
-1.1854016e+183
-1.1853182e+183
-1.1868557e+183
-1.1869574e+183
-1.1868537e+183
-1.1853694e+183
-1.1852937e+183
-1.1868105e+183
-1.1898902e+183
-1.1883215e+183
-1.1883083e+183
-1.1899169e+183
-1.1899988e+183
-1.1883736e+183
-1.1884823e+183
-1.1901192e+183
-1.1902727e+183
-1.1886394e+183
-1.1887967e+183
-1.1904286e+183
-1.1871056e+183
-1.1855552e+183
-1.185714e+183
-1.1872668e+183
-1.1859252e+183
-1.1858404e+183
-1.1873953e+183
-1.1875016e+183
-1.190576e+183
-1.1889366e+183
-1.1890531e+183
-1.1907149e+183
-1.1148926e+183
-1.095316e+183
-1.1162818e+183
-1.1182864e+183
-1.0964223e+183
-1.098736e+183
-1.0700489e+183
-1.0681906e+183
-1.0298981e+183
-1.1674509e+183
-1.1667496e+183
-1.1695528e+183
-1.1703313e+183
-1.1660011e+183
-1.1652671e+183
-1.1680866e+183
-1.1688204e+183
-1.1739671e+183
-1.1709321e+183
-1.1716682e+183
-1.174722e+183
-1.1732283e+183
-1.1724042e+183
-1.1754905e+183
-1.1763465e+183
-1.166577e+183
-1.1636672e+183
-1.1645143e+183
-1.1673835e+183
-1.1872665e+183
-1.1837599e+183
-1.1846671e+183
-1.1881899e+183
-1.1803842e+183
-1.1771279e+183
-1.1779344e+183
-1.181261e+183
-1.1890986e+183
-1.1855337e+183
-1.1863757e+183
-1.1899621e+183
-1.1820901e+183
-1.1787326e+183
-1.1795711e+183
-1.1829259e+183
-1.1527853e+183
-1.1519672e+183
-1.1548593e+183
-1.1556763e+183
-1.1514603e+183
-1.158537e+183
-1.1576969e+183
-1.160624e+183
-1.1614931e+183
-1.1349876e+183
-1.1408768e+183
-1.1482127e+183
-1.1448383e+183
-1.1414705e+183
-1.1354623e+183
-1.1364184e+183
-1.1422292e+183
-1.1461591e+183
-1.1454102e+183
-1.1487177e+183
-1.1495481e+183
-1.1405973e+183
-1.1393324e+183
-1.1449775e+183
-1.1461716e+183
-1.1381113e+183
-1.1373371e+183
-1.1430026e+183
-1.1439404e+183
-1.1502715e+183
-1.1468373e+183
-1.1478059e+183
-1.1511247e+183
-1.1499335e+183
-1.1487073e+183
-1.1520001e+183
-1.1530595e+183
-1.1622854e+183
-1.1593219e+183
-1.1600895e+183
-1.1630193e+183
-1.1564031e+183
-1.1534976e+183
-1.1543061e+183
-1.157195e+183
-1.1637793e+183
-1.1608529e+183
-1.1615711e+183
-1.1644657e+183
-1.1579944e+183
-1.1551465e+183
-1.1560812e+183
-1.1588028e+183
-1.1956566e+183
-1.1951569e+183
-1.192309e+183
-1.1987998e+183
-1.1960967e+183
-1.1983058e+183
-1.1965712e+183
-1.1998742e+183
-1.1970622e+183
-1.199322e+183
-1.1975434e+183
-1.194117e+183
-1.1932227e+183
-1.2002081e+183
-1.2007186e+183
-1.202055e+183
-1.2025905e+183
-1.2045201e+183
-1.2064699e+183
-1.2039585e+183
-1.2058882e+183
-1.2012562e+183
-1.2031525e+183
-1.2037366e+183
-1.2018324e+183
-1.2076541e+183
-1.2050971e+183
-1.2070569e+183
-1.2056879e+183
-1.208432e+183
-1.2104135e+183
-1.2124157e+183
-1.2145129e+183
-1.2090249e+183
-1.2110066e+183
-1.2116015e+183
-1.2096221e+183
-1.2157049e+183
-1.2130109e+183
-1.2151092e+183
-1.2136039e+183
-1.2188138e+183
-1.2166191e+183
-1.217217e+183
-1.2194088e+183
-1.2178065e+183
-1.2199928e+183
-1.2233518e+183
-1.2210195e+183
-1.2222094e+183
-1.2216162e+183
-1.2239454e+183
-1.2245446e+183
-1.2268192e+183
-1.226216e+183
-1.2285821e+183
-1.2291888e+183
-1.2315463e+183
-1.2309269e+183
-1.2334654e+183
-1.2340949e+183
-1.2635097e+183
-1.2679485e+183
-1.2684883e+183
-1.2640344e+183
-1.2651287e+183
-1.2645684e+183
-1.2690162e+183
-1.2695887e+183
-1.2727488e+183
-1.2732729e+183
-1.2744308e+183
-1.2738309e+183
-1.2510542e+183
-1.2543073e+183
-1.2548731e+183
-1.2516105e+183
-1.2527794e+183
-1.2521903e+183
-1.2554421e+183
-1.2560266e+183
-1.2621557e+183
-1.2577987e+183
-1.2615831e+183
-1.2583587e+183
-1.2595335e+183
-1.2633487e+183
-1.2589349e+183
-1.2627394e+183
-1.2527598e+183
-1.2489821e+183
-1.2522238e+183
-1.2495075e+183
-1.2556906e+183
-1.2594373e+183
-1.2599436e+183
-1.2562086e+183
-1.253781e+183
-1.2500057e+183
-1.2532517e+183
-1.2505226e+183
-1.2567264e+183
-1.2604826e+183
-1.2572562e+183
-1.2610279e+183
-1.2656909e+183
-1.2701702e+183
-1.2707661e+183
-1.2662694e+183
-1.2750406e+183
-1.2756598e+183
-1.2668707e+183
-1.2674934e+183
-1.2713976e+183
-1.2720403e+183
-1.2763139e+183
-1.2769873e+183
-1.244964e+183
-1.2417434e+183
-1.2444469e+183
-1.2422579e+183
-1.2472701e+183
-1.2502152e+183
-1.2507057e+183
-1.2477691e+183
-1.2432135e+183
-1.2459207e+183
-1.2427514e+183
-1.2454492e+183
-1.2482662e+183
-1.2512192e+183
-1.2487509e+183
-1.2517233e+183
-1.2337192e+183
-1.2360734e+183
-1.2363788e+183
-1.2340043e+183
-1.2344722e+183
-1.2342582e+183
-1.2366434e+183
-1.2368748e+183
-1.2413217e+183
-1.2384878e+183
-1.2409827e+183
-1.238805e+183
-1.2393434e+183
-1.2418932e+183
-1.2390925e+183
-1.2416228e+183
-1.2348365e+183
-1.2319806e+183
-1.2343101e+183
-1.2325034e+183
-1.2366911e+183
-1.2391452e+183
-1.2396497e+183
-1.2371996e+183
-1.2357201e+183
-1.2329627e+183
-1.2352948e+183
-1.2333764e+183
-1.237683e+183
-1.2401484e+183
-1.2381156e+183
-1.2405979e+183
-1.2436118e+183
-1.2463423e+183
-1.2467152e+183
-1.2439647e+183
-1.2521957e+183
-1.2496003e+183
-1.2492027e+183
-1.2526198e+183
-1.2442901e+183
-1.2445804e+183
-1.2470704e+183
-1.247384e+183
-1.2530266e+183
-1.2503199e+183
-1.2533911e+183
-1.2499815e+183
-1.237385e+183
-1.2379293e+183
-1.2406309e+183
-1.2400883e+183
-1.2389825e+183
-1.2416573e+183
-1.2384626e+183
-1.2411468e+183
-1.2429153e+183
-1.2458699e+183
-1.2463927e+183
-1.2434453e+183
-1.2439511e+183
-1.2444615e+183
-1.2468957e+183
-1.2474081e+183
-1.2326358e+183
-1.2297802e+183
-1.2320913e+183
-1.2303358e+183
-1.2344596e+183
-1.236911e+183
-1.2374498e+183
-1.2349957e+183
-1.2308903e+183
-1.2314298e+183
-1.2331932e+183
-1.2337504e+183
-1.2355501e+183
-1.2361265e+183
-1.2380019e+183
-1.2385842e+183
-1.2280935e+183
-1.2275553e+183
-1.2299029e+183
-1.2304324e+183
-1.2328371e+183
-1.2323039e+183
-1.2347785e+183
-1.2353161e+183
-1.2315581e+183
-1.2286481e+183
-1.2309837e+183
-1.2292221e+183
-1.2358601e+183
-1.2333881e+183
-1.2339354e+183
-1.2363915e+183
-1.2427176e+183
-1.239498e+183
-1.2421807e+183
-1.2400319e+183
-1.2479405e+183
-1.2449959e+183
-1.2455374e+183
-1.2484883e+183
-1.2411792e+183
-1.2438846e+183
-1.2405916e+183
-1.2432928e+183
-1.2490738e+183
-1.2461175e+183
-1.2467117e+183
-1.2496682e+183
-1.253324e+183
-1.2565819e+183
-1.2571021e+183
-1.2538227e+183
-1.2543458e+183
-1.2548692e+183
-1.2576427e+183
-1.2581856e+183
-1.2644856e+183
-1.2601028e+183
-1.2639275e+183
-1.2606409e+183
-1.2617641e+183
-1.2656502e+183
-1.2611979e+183
-1.2650597e+183
-1.2553614e+183
-1.2586961e+183
-1.2591777e+183
-1.2558134e+183
-1.2667276e+183
-1.262297e+183
-1.266204e+183
-1.2627992e+183
-1.2600314e+183
-1.2562404e+183
-1.2596247e+183
-1.2566273e+183
-1.2632682e+183
-1.2672181e+183
-1.2676697e+183
-1.2636954e+183
-1.2704477e+183
-1.2750902e+183
-1.275667e+183
-1.2709912e+183
-1.2807276e+183
-1.2801297e+183
-1.2812924e+183
-1.2818204e+183
-1.2715035e+183
-1.2719717e+183
-1.2761997e+183
-1.2766904e+183
-1.2680903e+183
-1.2726495e+183
-1.2732467e+183
-1.2686646e+183
-1.2692571e+183
-1.2738581e+183
-1.2698686e+183
-1.2744909e+183
-1.2776057e+183
-1.2782161e+183
-1.2795089e+183
-1.278847e+183
-1.1205717e+183
-1.1214534e+183
-1.1343423e+183
-1.133917e+183
-1.1011311e+183
-1.1011167e+183
-1.1206163e+183
-1.1340771e+183
-1.1349631e+183
-1.1216951e+183
-1.1226395e+183
-1.122379e+183
-1.1356981e+183
-1.1363032e+183
-1.1373497e+183
-1.1236834e+183
-1.1255171e+183
-1.1385189e+183
-1.1045097e+183
-1.1022337e+183
-1.0685249e+183
-1.0706328e+183
-1.1195535e+183
-1.1207739e+183
-1.1329113e+183
-1.1322709e+183
-1.1321381e+183
-1.1191588e+183
-1.1195809e+183
-1.13237e+183
-1.1011007e+183
-1.0999235e+183
-1.1326154e+183
-1.1196505e+183
-1.1192049e+183
-1.1324991e+183
-1.1330831e+183
-1.1196784e+183
-1.1211251e+183
-1.1340547e+183
-1.0997369e+183
-1.1006452e+183
-1.067969e+183
-1.0687298e+183
-1.0681046e+183
-1.0674079e+183
-1.0680374e+183
-1.0702361e+183
-1.1755957e+183
-1.1749675e+183
-1.1784762e+183
-1.1777943e+183
-1.1742699e+183
-1.1734847e+183
-1.1762353e+183
-1.1770268e+183
-1.179978e+183
-1.1791261e+183
-1.1821337e+183
-1.1830582e+183
-1.1838965e+183
-1.1807817e+183
-1.1814881e+183
-1.1846215e+183
-1.1786195e+183
-1.1757526e+183
-1.176483e+183
-1.1793505e+183
-1.1729962e+183
-1.1703818e+183
-1.1709522e+183
-1.1736641e+183
-1.1801632e+183
-1.1772683e+183
-1.1781805e+183
-1.1811169e+183
-1.1744519e+183
-1.1717053e+183
-1.1726054e+183
-1.1753169e+183
-1.1842312e+183
-1.1832117e+183
-1.187469e+183
-1.1864219e+183
-1.1824076e+183
-1.1816662e+183
-1.1848547e+183
-1.1855932e+183
-1.188951e+183
-1.1881964e+183
-1.1915668e+183
-1.1923659e+183
-1.1932651e+183
-1.1898135e+183
-1.190864e+183
-1.1943107e+183
-1.1878637e+183
-1.187125e+183
-1.1904122e+183
-1.1911415e+183
-1.1862794e+183
-1.1853026e+183
-1.1885589e+183
-1.1895611e+183
-1.195373e+183
-1.191947e+183
-1.1929467e+183
-1.1963584e+183
-1.194492e+183
-1.1937946e+183
-1.1971928e+183
-1.1978464e+183
-1.1625679e+183
-1.1647956e+183
-1.1619736e+183
-1.1640256e+183
-1.1614936e+183
-1.1610601e+183
-1.1630047e+183
-1.1634536e+183
-1.1677491e+183
-1.1652867e+183
-1.1657362e+183
-1.1682359e+183
-1.1663911e+183
-1.168949e+183
-1.169848e+183
-1.1672412e+183
-1.1591092e+183
-1.1571623e+183
-1.1572737e+183
-1.1594098e+183
-1.1542346e+183
-1.1484167e+183
-1.1479941e+183
-1.1541099e+183
-1.1482249e+183
-1.1479693e+183
-1.1540965e+183
-1.1544853e+183
-1.1597195e+183
-1.1573168e+183
-1.157719e+183
-1.1601806e+183
-1.1502714e+183
-1.1493699e+183
-1.1566724e+183
-1.155878e+183
-1.1486878e+183
-1.14853e+183
-1.1548285e+183
-1.1552603e+183
-1.1586483e+183
-1.158113e+183
-1.1606638e+183
-1.1612198e+183
-1.1592486e+183
-1.1618455e+183
-1.1625447e+183
-1.1600051e+183
-1.1637397e+183
-1.1631474e+183
-1.165505e+183
-1.1661511e+183
-1.168039e+183
-1.1706947e+183
-1.171441e+183
-1.1687374e+183
-1.1667889e+183
-1.1643717e+183
-1.1650006e+183
-1.1673785e+183
-1.1699667e+183
-1.1693829e+183
-1.1721048e+183
-1.1727069e+183
-1.1670089e+183
-1.1663556e+183
-1.1694283e+183
-1.1687423e+183
-1.1658858e+183
-1.1655035e+183
-1.1678436e+183
-1.1681896e+183
-1.1707752e+183
-1.1704091e+183
-1.1731489e+183
-1.17354e+183
-1.1740991e+183
-1.1713379e+183
-1.1720401e+183
-1.174796e+183
-1.1503588e+183
-1.1505499e+183
-1.157042e+183
-1.1571418e+183
-1.1604498e+183
-1.1630191e+183
-1.1633665e+183
-1.1607204e+183
-1.1575421e+183
-1.1506442e+183
-1.1514696e+183
-1.1582195e+183
-1.161767e+183
-1.1611236e+183
-1.1637665e+183
-1.1644262e+183
-1.1550848e+183
-1.1541349e+183
-1.1612565e+183
-1.1605691e+183
-1.1530473e+183
-1.1522585e+183
-1.158946e+183
-1.1597422e+183
-1.1631748e+183
-1.1624502e+183
-1.1650911e+183
-1.1657564e+183
-1.166372e+183
-1.163833e+183
-1.1644242e+183
-1.1668464e+183
-1.1692379e+183
-1.1688174e+183
-1.1711672e+183
-1.171527e+183
-1.1682786e+183
-1.1676607e+183
-1.1700977e+183
-1.1706889e+183
-1.1754709e+183
-1.1727188e+183
-1.1732888e+183
-1.1760249e+183
-1.1740049e+183
-1.1737319e+183
-1.1764392e+183
-1.1766407e+183
-1.2104834e+183
-1.2124273e+183
-1.2110042e+183
-1.2129538e+183
-1.2149565e+183
-1.2144263e+183
-1.2164725e+183
-1.217004e+183
-1.2115477e+183
-1.212115e+183
-1.2135044e+183
-1.2140813e+183
-1.2175645e+183
-1.2160973e+183
-1.2181521e+183
-1.2155134e+183
-1.218584e+183
-1.2191211e+183
-1.2212743e+183
-1.2207355e+183
-1.2229611e+183
-1.2252299e+183
-1.2257679e+183
-1.2234992e+183
-1.2224161e+183
-1.2196788e+183
-1.2218321e+183
-1.2202652e+183
-1.2240562e+183
-1.2246354e+183
-1.2263253e+183
-1.2269017e+183
-1.2247204e+183
-1.2220284e+183
-1.2225876e+183
-1.2241701e+183
-1.2208539e+183
-1.2214475e+183
-1.2229996e+183
-1.2235958e+183
-1.2274706e+183
-1.2257974e+183
-1.2280411e+183
-1.2252134e+183
-1.2263623e+183
-1.2268981e+183
-1.2291222e+183
-1.2285968e+183
-1.2144207e+183
-1.2163908e+183
-1.2138561e+183
-1.215821e+183
-1.2132756e+183
-1.2126898e+183
-1.2146662e+183
-1.2152419e+183
-1.2172626e+183
-1.2166841e+183
-1.2187385e+183
-1.2193218e+183
-1.2199027e+183
-1.2204716e+183
-1.2178408e+183
-1.2184102e+183
-1.2028822e+183
-1.204799e+183
-1.203392e+183
-1.2053034e+183
-1.2071746e+183
-1.2090627e+183
-1.2066744e+183
-1.2085545e+183
-1.2043828e+183
-1.2038837e+183
-1.2058108e+183
-1.2063284e+183
-1.2082407e+183
-1.2101559e+183
-1.2077031e+183
-1.2096004e+183
-1.1976992e+183
-1.1971043e+183
-1.1988833e+183
-1.1994584e+183
-1.2012374e+183
-1.2017939e+183
-1.1965917e+183
-1.1960842e+183
-1.200174e+183
-1.1978374e+183
-1.1983565e+183
-1.2006715e+183
-1.2027604e+183
-1.2032752e+183
-1.2038344e+183
-1.2043927e+183
-1.2013293e+183
-1.1983376e+183
-1.2008305e+183
-1.1988031e+183
-1.1992736e+183
-1.2018133e+183
-1.1997279e+183
-1.2022916e+183
-1.1956516e+183
-1.1951842e+183
-1.1969545e+183
-1.1974096e+183
-1.1947641e+183
-1.1943134e+183
-1.196049e+183
-1.1965198e+183
-1.2048694e+183
-1.2054038e+183
-1.2073964e+183
-1.2068414e+183
-1.2087835e+183
-1.2107193e+183
-1.2113033e+183
-1.2093558e+183
-1.2085201e+183
-1.2059574e+183
-1.2079603e+183
-1.2065167e+183
-1.2099297e+183
-1.2118833e+183
-1.2104901e+183
-1.2124457e+183
-1.1997317e+183
-1.1992364e+183
-1.2010037e+183
-1.2014927e+183
-1.2033282e+183
-1.2038036e+183
-1.1987508e+183
-1.1982106e+183
-1.1999651e+183
-1.2005063e+183
-1.2023035e+183
-1.2028005e+183
-1.2048925e+183
-1.2053903e+183
-1.2058983e+183
-1.2063633e+183
-1.2110111e+183
-1.2088056e+183
-1.2107556e+183
-1.209087e+183
-1.2092827e+183
-1.2093962e+183
-1.2111828e+183
-1.2112951e+183
-1.2126597e+183
-1.2145519e+183
-1.2128817e+183
-1.2147538e+183
-1.2131608e+183
-1.2149234e+183
-1.2150566e+183
-1.2130395e+183
-1.2070235e+183
-1.2075204e+183
-1.2090305e+183
-1.2095223e+183
-1.2114874e+183
-1.2134385e+183
-1.2110002e+183
-1.2129566e+183
-1.2104202e+183
-1.2080033e+183
-1.2099919e+183
-1.208452e+183
-1.2119452e+183
-1.2138851e+183
-1.2142692e+183
-1.2123501e+183
-1.2042044e+183
-1.2045254e+183
-1.2067273e+183
-1.2070261e+183
-1.2072419e+183
-1.2073644e+183
-1.2047711e+183
-1.204904e+183
-1.2009276e+183
-1.2007424e+183
-1.2024748e+183
-1.2026284e+183
-1.2004778e+183
-1.2001252e+183
-1.2018865e+183
-1.2022255e+183
-1.2149357e+183
-1.2169114e+183
-1.2173911e+183
-1.2154151e+183
-1.2189343e+183
-1.2209921e+183
-1.2194116e+183
-1.2214673e+183
-1.2158519e+183
-1.2162143e+183
-1.2178201e+183
-1.2181735e+183
-1.2218933e+183
-1.2201893e+183
-1.2222521e+183
-1.2198368e+183
-1.2186496e+183
-1.2164864e+183
-1.2184434e+183
-1.2166868e+183
-1.2204632e+183
-1.2225309e+183
-1.2227481e+183
-1.2206738e+183
-1.2189816e+183
-1.2168613e+183
-1.2188249e+183
-1.217007e+183
-1.2208578e+183
-1.2229424e+183
-1.2210189e+183
-1.2231097e+183
-1.2240093e+183
-1.2243761e+183
-1.2265382e+183
-1.22616e+183
-1.2257182e+183
-1.223101e+183
-1.2252277e+183
-1.2235788e+183
-1.2274212e+183
-1.2296668e+183
-1.2301822e+183
-1.2279243e+183
-1.2283791e+183
-1.2287709e+183
-1.2306451e+183
-1.231049e+183
-1.2270867e+183
-1.2246664e+183
-1.2268413e+183
-1.2248936e+183
-1.2313774e+183
-1.2290882e+183
-1.2293438e+183
-1.2316446e+183
-1.225272e+183
-1.2274787e+183
-1.2250993e+183
-1.2272993e+183
-1.2318881e+183
-1.2295718e+183
-1.2297612e+183
-1.2320905e+183
-1.2488786e+183
-1.2457219e+183
-1.2486155e+183
-1.2459669e+183
-1.2464504e+183
-1.246204e+183
-1.2491212e+183
-1.2493762e+183
-1.2516297e+183
-1.2547699e+183
-1.2518775e+183
-1.2550118e+183
-1.2524333e+183
-1.2553232e+183
-1.2556284e+183
-1.2521566e+183
-1.2347889e+183
-1.2346474e+183
-1.2370668e+183
-1.2372246e+183
-1.2397304e+183
-1.2395559e+183
-1.2421236e+183
-1.2423171e+183
-1.2375594e+183
-1.2349432e+183
-1.2373915e+183
-1.2350968e+183
-1.2425173e+183
-1.2399143e+183
-1.2400982e+183
-1.2427203e+183
-1.2454845e+183
-1.2483628e+183
-1.2452645e+183
-1.2481271e+183
-1.2450462e+183
-1.2448329e+183
-1.2476572e+183
-1.2478922e+183
-1.2508686e+183
-1.2506162e+183
-1.2537059e+183
-1.2539765e+183
-1.254246e+183
-1.2545093e+183
-1.2511217e+183
-1.25137e+183
-1.2379435e+183
-1.2352729e+183
-1.2377457e+183
-1.2354598e+183
-1.2402988e+183
-1.2429366e+183
-1.2431591e+183
-1.2405059e+183
-1.238397e+183
-1.2356778e+183
-1.2381664e+183
-1.2359028e+183
-1.2407368e+183
-1.2433949e+183
-1.2409727e+183
-1.2436372e+183
-1.2361324e+183
-1.2363668e+183
-1.2386322e+183
-1.2388772e+183
-1.2414682e+183
-1.244147e+183
-1.2412159e+183
-1.2438866e+183
-1.2394479e+183
-1.2366374e+183
-1.2391532e+183
-1.2369268e+183
-1.2417518e+183
-1.244438e+183
-1.2447471e+183
-1.2420529e+183
-1.2467091e+183
-1.2496481e+183
-1.2499318e+183
-1.246979e+183
-1.2527251e+183
-1.2559354e+183
-1.256244e+183
-1.2530204e+183
-1.2472785e+183
-1.2475902e+183
-1.2502399e+183
-1.2505581e+183
-1.2533398e+183
-1.2536669e+183
-1.2565749e+183
-1.2569154e+183
-1.251218e+183
-1.2479101e+183
-1.250885e+183
-1.2482344e+183
-1.2572532e+183
-1.2540004e+183
-1.2543254e+183
-1.2575811e+183
-1.2485578e+183
-1.2488678e+183
-1.2515409e+183
-1.2518548e+183
-1.257929e+183
-1.2549835e+183
-1.2582665e+183
-1.2546582e+183
-1.2400585e+183
-1.2372234e+183
-1.2397493e+183
-1.2375249e+183
-1.2378409e+183
-1.2381425e+183
-1.2403732e+183
-1.2406729e+183
-1.2432907e+183
-1.2460022e+183
-1.2429887e+183
-1.2456951e+183
-1.2423605e+183
-1.2426721e+183
-1.245059e+183
-1.2453746e+183
-1.2569632e+183
-1.2603851e+183
-1.2606971e+183
-1.2572531e+183
-1.2575393e+183
-1.2578174e+183
-1.2610006e+183
-1.2612945e+183
-1.2650383e+183
-1.2690911e+183
-1.2647242e+183
-1.2687507e+183
-1.2640693e+183
-1.2643988e+183
-1.2680591e+183
-1.2684058e+183
-1.2775064e+183
-1.2723843e+183
-1.2771173e+183
-1.2727522e+183
-1.2822528e+183
-1.2826556e+183
-1.2731187e+183
-1.2734809e+183
-1.2778931e+183
-1.2782816e+183
-1.2834892e+183
-1.2830662e+183
-1.2618752e+183
-1.2580899e+183
-1.2615833e+183
-1.2583539e+183
-1.265348e+183
-1.2694208e+183
-1.2697518e+183
-1.2656587e+183
-1.2625421e+183
-1.2586727e+183
-1.2622015e+183
-1.2589992e+183
-1.2660009e+183
-1.2701121e+183
-1.2663557e+183
-1.2704874e+183
-1.2790568e+183
-1.2738384e+183
-1.2786645e+183
-1.2741928e+183
-1.2838979e+183
-1.2843155e+183
-1.2749699e+183
-1.2745752e+183
-1.2794602e+183
-1.2798792e+183
-1.2852127e+183
-1.2847544e+183
-1.2646615e+183
-1.2606901e+183
-1.2643004e+183
-1.2610341e+183
-1.2681887e+183
-1.2723944e+183
-1.2685529e+183
-1.2727645e+183
-1.2593226e+183
-1.2628786e+183
-1.2596425e+183
-1.2632157e+183
-1.2670598e+183
-1.2712207e+183
-1.2667082e+183
-1.2708538e+183
-1.2639422e+183
-1.2599874e+183
-1.2635748e+183
-1.2603426e+183
-1.2674348e+183
-1.2716111e+183
-1.2720117e+183
-1.2678168e+183
-1.2856392e+183
-1.28607e+183
-1.2753569e+183
-1.2802844e+183
-1.280693e+183
-1.2757423e+183
-1.2761489e+183
-1.2811129e+183
-1.2765588e+183
-1.2815411e+183
-1.2869543e+183
-1.2864983e+183
-1.2873953e+183
-1.2878236e+183
-1.2823613e+183
-1.2769577e+183
-1.2819557e+183
-1.2773424e+183
-1.2882067e+183
-1.1016968e+183
-1.1028496e+183
-1.1027712e+183
-1.1014333e+183
-1.1022622e+183
-1.1008229e+183
-1.104195e+183
-1.1026548e+183
-1.1271814e+183
-1.1289713e+183
-1.1266557e+183
-1.1264273e+183
-1.1423463e+183
-1.1420876e+183
-1.1422122e+183
-1.1428103e+183
-1.1442506e+183
-1.1787155e+183
-1.1774859e+183
-1.1773677e+183
-1.1785862e+183
-1.1763265e+183
-1.1752145e+183
-1.1751234e+183
-1.1762135e+183
-1.1785361e+183
-1.1773196e+183
-1.1773212e+183
-1.1785626e+183
-1.1750403e+183
-1.1750855e+183
-1.1761597e+183
-1.1761493e+183
-1.174165e+183
-1.1731938e+183
-1.1731167e+183
-1.1740757e+183
-1.1722674e+183
-1.1713886e+183
-1.171278e+183
-1.1721668e+183
-1.1740351e+183
-1.1730723e+183
-1.1729787e+183
-1.1739746e+183
-1.1710497e+183
-1.1711693e+183
-1.1720912e+183
-1.1720007e+183
-1.1709025e+183
-1.1709746e+183
-1.1719295e+183
-1.1718802e+183
-1.1710027e+183
-1.1710235e+183
-1.1719459e+183
-1.1719276e+183
-1.1739366e+183
-1.172921e+183
-1.1729046e+183
-1.1739383e+183
-1.1739851e+183
-1.1729374e+183
-1.1729098e+183
-1.1739919e+183
-1.1751441e+183
-1.1751267e+183
-1.1763203e+183
-1.1763496e+183
-1.1762035e+183
-1.1750515e+183
-1.1750731e+183
-1.1762612e+183
-1.1786796e+183
-1.1774142e+183
-1.1774952e+183
-1.1787878e+183
-1.1788643e+183
-1.1775665e+183
-1.177593e+183
-1.1788997e+183
-1.1592452e+183
-1.16299e+183
-1.1625298e+183
-1.1583176e+183
-1.16703e+183
-1.1656761e+183
-1.1653764e+183
-1.1667109e+183
-1.1645462e+183
-1.1664862e+183
-1.1650361e+183
-1.1661923e+183
-1.1575206e+183
-1.161913e+183
-1.157074e+183
-1.1614223e+183
-1.1694758e+183
-1.1696543e+183
-1.1704827e+183
-1.1703399e+183
-1.168788e+183
-1.1679693e+183
-1.1677024e+183
-1.1685631e+183
-1.1672496e+183
-1.1674667e+183
-1.16833e+183
-1.1681954e+183
-1.1691425e+183
-1.1692861e+183
-1.1701818e+183
-1.170066e+183
-1.1563164e+183
-1.1607822e+183
-1.1566499e+183
-1.161008e+183
-1.1659645e+183
-1.1641479e+183
-1.1639527e+183
-1.1658409e+183
-1.1640319e+183
-1.1658378e+183
-1.164233e+183
-1.1659187e+183
-1.1564513e+183
-1.1569727e+183
-1.161191e+183
-1.160886e+183
-1.1690939e+183
-1.1691291e+183
-1.1700421e+183
-1.1700277e+183
-1.1681522e+183
-1.1671647e+183
-1.1670856e+183
-1.1681124e+183
-1.1670499e+183
-1.1670308e+183
-1.168046e+183
-1.1680326e+183
-1.1689918e+183
-1.1690326e+183
-1.169975e+183
-1.1699138e+183
-1.1689959e+183
-1.168069e+183
-1.1671286e+183
-1.1672161e+183
-1.1681762e+183
-1.1643923e+183
-1.164315e+183
-1.165956e+183
-1.166049e+183
-1.1613017e+183
-1.1570422e+183
-1.1612532e+183
-1.1568087e+183
-1.1668772e+183
-1.2074039e+183
-1.2024534e+183
-1.2213524e+183
-1.2271546e+183
-1.1299206e+183
-1.1734395e+183
-1.1702597e+183
-1.1921124e+183
-1.1960036e+183
-1.2250062e+183
-1.2207915e+183
-1.1342649e+183
-1.2027977e+183
-1.1995419e+183
-1.1765395e+183
-1.1797407e+183
-1.2287815e+183
-1.2320017e+183
-1.2478196e+183
-1.2572984e+183
-1.2590943e+183
-1.2495094e+183
-1.2663726e+183
-1.2672177e+183
-1.2721934e+183
-1.2713163e+183
-1.2771664e+183
-1.2762806e+183
-1.2817898e+183
-1.2826884e+183
-1.2789983e+183
-1.2780233e+183
-1.2835614e+183
-1.284538e+183
-1.2680434e+183
-1.2730105e+183
-1.2739543e+183
-1.2689387e+183
-1.2951169e+183
-1.2912013e+183
-1.2881429e+183
-1.2886023e+183
-1.2916455e+183
-1.2872509e+183
-1.2902517e+183
-1.2907408e+183
-1.2876985e+183
-1.2960774e+183
-1.2890101e+183
-1.2920708e+183
-1.2925459e+183
-1.2894518e+183
-1.2904018e+183
-1.2934939e+183
-1.2930184e+183
-1.2899107e+183
-1.2979803e+183
-1.2970053e+183
-1.2510567e+183
-1.2606937e+183
-1.2624752e+183
-1.2527233e+183
-1.2697747e+183
-1.2706674e+183
-1.2757005e+183
-1.2747932e+183
-1.2807583e+183
-1.279846e+183
-1.2854343e+183
-1.2863954e+183
-1.2873245e+183
-1.2816541e+183
-1.2826305e+183
-1.2882803e+183
-1.2715081e+183
-1.2774994e+183
-1.2765482e+183
-1.2724106e+183
-1.2936871e+183
-1.2968343e+183
-1.2941772e+183
-1.2973106e+183
-1.2959073e+183
-1.2963739e+183
-1.293238e+183
-1.292801e+183
-1.3008837e+183
-1.301856e+183
-1.2913693e+183
-1.2908721e+183
-1.2939698e+183
-1.2944892e+183
-1.2989763e+183
-1.2999932e+183
-1.2918621e+183
-1.2950007e+183
-1.2954884e+183
-1.2923747e+183
-1.2589626e+183
-1.2542689e+183
-1.2635191e+183
-1.268478e+183
-1.3045379e+183
-1.3040194e+183
-1.3067543e+183
-1.3072847e+183
-1.3078464e+183
-1.3083663e+183
-1.3112044e+183
-1.3106789e+183
-1.3127892e+183
-1.3133403e+183
-1.3050073e+183
-1.3054647e+183
-1.3082272e+183
-1.3077571e+183
-1.3088392e+183
-1.3093187e+183
-1.3138525e+183
-1.3116995e+183
-1.3121884e+183
-1.3143385e+183
-1.314838e+183
-1.3087069e+183
-1.3092331e+183
-1.3103111e+183
-1.3098027e+183
-1.3131916e+183
-1.3126808e+183
-1.3153634e+183
-1.3059181e+183
-1.30642e+183
-1.3097446e+183
-1.3069259e+183
-1.3102396e+183
-1.3074414e+183
-1.3158673e+183
-1.3108179e+183
-1.3113224e+183
-1.3136942e+183
-1.3141903e+183
-1.3163439e+183
-1.3015065e+183
-1.3036763e+183
-1.3010048e+183
-1.3041876e+183
-1.3047407e+183
-1.3052698e+183
-1.3080412e+183
-1.3074963e+183
-1.3095473e+183
-1.3100999e+183
-1.2999602e+183
-1.3025911e+183
-1.3031505e+183
-1.3004993e+183
-1.303663e+183
-1.304213e+183
-1.3069486e+183
-1.3063787e+183
-1.3083854e+183
-1.3089839e+183
-1.3024954e+183
-1.3019874e+183
-1.3046872e+183
-1.3052204e+183
-1.305782e+183
-1.3063012e+183
-1.3085733e+183
-1.3112327e+183
-1.3106478e+183
-1.3091165e+183
-1.3035133e+183
-1.3029916e+183
-1.3062489e+183
-1.3057279e+183
-1.3073364e+183
-1.3068071e+183
-1.3117632e+183
-1.3096387e+183
-1.3101616e+183
-1.3122727e+183
-1.3147602e+183
-1.3152572e+183
-1.3137051e+183
-1.3142439e+183
-1.3162687e+183
-1.3157588e+183
-1.3167672e+183
-1.3172539e+183
-1.3055241e+183
-1.3123813e+183
-1.3129203e+183
-1.3060148e+183
-1.306532e+183
-1.3134693e+183
-1.3139777e+183
-1.3070462e+183
-1.3154578e+183
-1.3161981e+183
-1.3149198e+183
-1.3156509e+183
-1.3159632e+183
-1.3154021e+183
-1.3164895e+183
-1.3172479e+183
-1.3159802e+183
-1.3167353e+183
-1.3170264e+183
-1.3165168e+183
-1.3169937e+183
-1.3177558e+183
-1.3174998e+183
-1.3182665e+183
-1.3175369e+183
-1.3180515e+183
-1.3075176e+183
-1.3144792e+183
-1.3149768e+183
-1.3079821e+183
-1.3185302e+183
-1.3187624e+183
-1.3179977e+183
-1.3184845e+183
-1.3192309e+183
-1.3189771e+183
-1.3158779e+183
-1.31545e+183
-1.3084727e+183
-1.3088691e+183
-1.3104316e+183
-1.310994e+183
-1.3092676e+183
-1.3098591e+183
-1.3115544e+183
-1.31212e+183
-1.3126542e+183
-1.3131758e+183
-1.3013078e+183
-1.3079229e+183
-1.3085243e+183
-1.3018759e+183
-1.3023814e+183
-1.3091187e+183
-1.3096822e+183
-1.302916e+183
-1.3110184e+183
-1.3117096e+183
-1.3104215e+183
-1.3111004e+183
-1.3114684e+183
-1.3108426e+183
-1.3121792e+183
-1.3128932e+183
-1.3116032e+183
-1.3123109e+183
-1.31266e+183
-1.3120814e+183
-1.3034205e+183
-1.3102527e+183
-1.3108285e+183
-1.3039734e+183
-1.3044894e+183
-1.3113729e+183
-1.3118765e+183
-1.3050322e+183
-1.313309e+183
-1.3140431e+183
-1.3127476e+183
-1.3134712e+183
-1.3138336e+183
-1.313246e+183
-1.3143837e+183
-1.3151177e+183
-1.3138514e+183
-1.3145911e+183
-1.3148866e+183
-1.31438e+183
-1.2277088e+183
-1.2469554e+183
-1.2427879e+183
-1.2562156e+183
-1.2341181e+183
-1.2505834e+183
-1.2541706e+183
-1.2635493e+183
-1.2598995e+183
-1.2748858e+183
-1.273011e+183
-1.2783862e+183
-1.2802285e+183
-1.2691781e+183
-1.2745325e+183
-1.2765656e+183
-1.2711869e+183
-1.2831623e+183
-1.285053e+183
-1.2854369e+183
-1.2923278e+183
-1.2872723e+183
-1.2941338e+183
-1.2395608e+183
-1.2485359e+183
-1.2513218e+183
-1.2421556e+183
-1.2615556e+183
-1.2584382e+183
-1.2568937e+183
-1.2631432e+183
-1.2678388e+183
-1.2662413e+183
-1.2715041e+183
-1.273092e+183
-1.270672e+183
-1.2692552e+183
-1.2759833e+183
-1.2745273e+183
-1.2597914e+183
-1.2611238e+183
-1.2658663e+183
-1.2645107e+183
-1.2843396e+183
-1.2810486e+183
-1.278137e+183
-1.27894e+183
-1.2818207e+183
-1.2802782e+183
-1.2794853e+183
-1.2765819e+183
-1.2773617e+183
-1.2858754e+183
-1.2796283e+183
-1.2825277e+183
-1.2832786e+183
-1.2803715e+183
-1.2817994e+183
-1.2847037e+183
-1.283997e+183
-1.2810798e+183
-1.28881e+183
-1.2873506e+183
-1.2462109e+183
-1.2442869e+183
-1.2535232e+183
-1.2555927e+183
-1.265524e+183
-1.2644826e+183
-1.2693724e+183
-1.270443e+183
-1.2622659e+183
-1.2670462e+183
-1.2682916e+183
-1.2634218e+183
-1.2730935e+183
-1.2718699e+183
-1.2784521e+183
-1.2772073e+183
-1.2742268e+183
-1.2753721e+183
-1.2808574e+183
-1.2796409e+183
-1.2902005e+183
-1.2837118e+183
-1.2866727e+183
-1.287313e+183
-1.2843634e+183
-1.2824386e+183
-1.2853674e+183
-1.2860448e+183
-1.2830964e+183
-1.2915155e+183
-1.2879309e+183
-1.2849668e+183
-1.2856156e+183
-1.2885895e+183
-1.2867873e+183
-1.2862176e+183
-1.2891981e+183
-1.2897557e+183
-1.294029e+183
-1.2928029e+183
-1.2986988e+183
-1.2930269e+183
-1.2940721e+183
-1.2948519e+183
-1.2937991e+183
-1.2967274e+183
-1.2974954e+183
-1.2994559e+183
-1.2912405e+183
-1.2904509e+183
-1.2970999e+183
-1.2914248e+183
-1.2922448e+183
-1.2932998e+183
-1.292482e+183
-1.2959499e+183
-1.295141e+183
-1.2979121e+183
-1.2888705e+183
-1.2896838e+183
-1.2945231e+183
-1.2919644e+183
-1.2927135e+183
-1.2952872e+183
-1.2955836e+183
-1.296334e+183
-1.3002091e+183
-1.2982432e+183
-1.2990034e+183
-1.3009859e+183
-1.2941704e+183
-1.2934282e+183
-1.2960177e+183
-1.2967396e+183
-1.2977909e+183
-1.2970582e+183
-1.3017253e+183
-1.2997339e+183
-1.3004604e+183
-1.3024402e+183
-1.3014678e+183
-1.2988304e+183
-1.3020534e+183
-1.2994293e+183
-1.3072241e+183
-1.3025156e+183
-1.303112e+183
-1.3078164e+183
-1.3058096e+183
-1.3052111e+183
-1.2975422e+183
-1.3001482e+183
-1.3008378e+183
-1.2982147e+183
-1.3059191e+183
-1.3018928e+183
-1.3012235e+183
-1.3045865e+183
-1.3039241e+183
-1.3065946e+183
-1.2948445e+183
-1.2981388e+183
-1.2974191e+183
-1.2955467e+183
-1.2984845e+183
-1.2991957e+183
-1.303149e+183
-1.3011682e+183
-1.3018862e+183
-1.3038805e+183
-1.2969036e+183
-1.299501e+183
-1.2988294e+183
-1.2962218e+183
-1.2998839e+183
-1.3005661e+183
-1.3045821e+183
-1.3025793e+183
-1.3032623e+183
-1.3052558e+183
-1.299547e+183
-1.3003129e+183
-1.2979641e+183
-1.2987625e+183
-1.301075e+183
-1.3018378e+183
-1.3025751e+183
-1.3032988e+183
-1.2990946e+183
-1.2997727e+183
-1.2998902e+183
-1.3005712e+183
-1.3003568e+183
-1.2995453e+183
-1.2975725e+183
-1.2968075e+183
-1.290551e+183
-1.2912259e+183
-1.2990667e+183
-1.2983327e+183
-1.2919389e+183
-1.292616e+183
-1.3014424e+183
-1.3021202e+183
-1.3006708e+183
-1.3013526e+183
-1.3018944e+183
-1.3011338e+183
-1.3005606e+183
-1.2998097e+183
-1.2933183e+183
-1.2940379e+183
-1.3019883e+183
-1.3012906e+183
-1.2947604e+183
-1.2954414e+183
-1.3029642e+183
-1.3036428e+183
-1.3022056e+183
-1.3028807e+183
-1.3034246e+183
-1.3026493e+183
-1.3044289e+183
-1.3050994e+183
-1.3037014e+183
-1.3043791e+183
-1.3048569e+183
-1.3041513e+183
-1.3040198e+183
-1.3047426e+183
-1.3054431e+183
-1.3061234e+183
-1.3067927e+183
-1.3074527e+183
-1.3080799e+183
-1.3086796e+183
-1.3058775e+183
-1.3065548e+183
-1.3051531e+183
-1.3058219e+183
-1.3055731e+183
-1.3063291e+183
-1.3034291e+183
-1.3026955e+183
-1.296133e+183
-1.2968389e+183
-1.2975368e+183
-1.3041562e+183
-1.3048399e+183
-1.2982279e+183
-1.307267e+183
-1.3079545e+183
-1.306581e+183
-1.3072683e+183
-1.3077346e+183
-1.3070511e+183
-1.2988899e+183
-1.3055118e+183
-1.306168e+183
-1.2995765e+183
-1.3001938e+183
-1.306783e+183
-1.3073493e+183
-1.3007773e+183
-1.3085924e+183
-1.3092804e+183
-1.3079378e+183
-1.3086242e+183
-1.3090618e+183
-1.3083984e+183
-1.3098225e+183
-1.3104999e+183
-1.3092175e+183
-1.3099028e+183
-1.3102504e+183
-1.3096748e+183
-1.0729973e+183
-1.0752139e+183
-1.0730449e+183
-1.0707961e+183
-1.1092579e+183
-1.0318227e+183
-1.0724047e+183
-1.072097e+183
-1.0700292e+183
-1.0705365e+183
-1.2900244e+183
-1.2839531e+183
-1.2833053e+183
-1.2893438e+183
-1.2913639e+183
-1.2852705e+183
-1.2846053e+183
-1.2906954e+183
-1.2926986e+183
-1.2865502e+183
-1.2859203e+183
-1.2920389e+183
-1.2938436e+183
-1.2876774e+183
-1.2871414e+183
-1.2933096e+183
-1.2846498e+183
-1.278792e+183
-1.2782391e+183
-1.284039e+183
-1.2859361e+183
-1.2800164e+183
-1.2793954e+183
-1.2852952e+183
-1.2872954e+183
-1.2813076e+183
-1.2806553e+183
-1.2866085e+183
-1.2886527e+183
-1.2826517e+183
-1.2819752e+183
-1.2879757e+183
-1.2967613e+183
-1.2903505e+183
-1.2898942e+183
-1.2962623e+183
-1.2977426e+183
-1.2912928e+183
-1.2908126e+183
-1.2972468e+183
-1.294836e+183
-1.2885701e+183
-1.2881256e+183
-1.2943362e+183
-1.2957755e+183
-1.2894503e+183
-1.2890064e+183
-1.2953053e+183
-1.3006366e+183
-1.2940779e+183
-1.293614e+183
-1.3001739e+183
-1.2944494e+183
-1.301037e+183
-1.2987478e+183
-1.292247e+183
-1.2917679e+183
-1.29826e+183
-1.2996776e+183
-1.2931347e+183
-1.2926635e+183
-1.2991965e+183
-1.2193385e+183
-1.2213362e+183
-1.2216032e+183
-1.2195919e+183
-1.220125e+183
-1.219856e+183
-1.2218785e+183
-1.2221556e+183
-1.2258129e+183
-1.2233986e+183
-1.225528e+183
-1.223671e+183
-1.2242427e+183
-1.2263911e+183
-1.2239573e+183
-1.2261014e+183
-1.2206312e+183
-1.2184272e+183
-1.2204174e+183
-1.2186364e+183
-1.2224612e+183
-1.224563e+183
-1.2247643e+183
-1.2226672e+183
-1.2210824e+183
-1.2188552e+183
-1.2208512e+183
-1.2190776e+183
-1.222901e+183
-1.22501e+183
-1.2231359e+183
-1.2252548e+183
-1.2277337e+183
-1.2299989e+183
-1.2302829e+183
-1.2280198e+183
-1.2347468e+183
-1.2326292e+183
-1.2323424e+183
-1.2350379e+183
-1.2283178e+183
-1.2286136e+183
-1.2305923e+183
-1.2308944e+183
-1.2353523e+183
-1.2332457e+183
-1.2356534e+183
-1.2329413e+183
-1.2291987e+183
-1.2267426e+183
-1.2289845e+183
-1.22695e+183
-1.233686e+183
-1.2313045e+183
-1.2315249e+183
-1.2339122e+183
-1.2274535e+183
-1.2297149e+183
-1.2271989e+183
-1.2294519e+183
-1.2341764e+183
-1.2317826e+183
-1.2320533e+183
-1.2344537e+183
-1.2289068e+183
-1.2227061e+183
-1.2204069e+183
-1.2224401e+183
-1.220667e+183
-1.2245277e+183
-1.2266775e+183
-1.2247863e+183
-1.2209284e+183
-1.2229628e+183
-1.2250523e+183
-1.2117628e+183
-1.2119801e+183
-1.213619e+183
-1.2138402e+183
-1.2157071e+183
-1.2173765e+183
-1.2176185e+183
-1.2154773e+183
-1.2122077e+183
-1.212443e+183
-1.2143155e+183
-1.2140732e+183
-1.2159488e+183
-1.2162003e+183
-1.2178713e+183
-1.2181319e+183
-1.2129681e+183
-1.2109149e+183
-1.2127481e+183
-1.2111297e+183
-1.2145906e+183
-1.2164764e+183
-1.2166823e+183
-1.2147992e+183
-1.2134013e+183
-1.2113422e+183
-1.2131798e+183
-1.2115533e+183
-1.2150173e+183
-1.216901e+183
-1.2152355e+183
-1.2171152e+183
-1.2059524e+183
-1.2061672e+183
-1.2090838e+183
-1.2092943e+183
-1.2095046e+183
-1.2097102e+183
-1.2063654e+183
-1.2065627e+183
-1.201123e+183
-1.1996072e+183
-1.1998038e+183
-1.2013223e+183
-1.2028065e+183
-1.2026046e+183
-1.2041076e+183
-1.2043168e+183
-1.2015285e+183
-1.2000079e+183
-1.2001753e+183
-1.2016994e+183
-1.2031849e+183
-1.2030155e+183
-1.2045205e+183
-1.2046996e+183
-1.1981426e+183
-1.19659e+183
-1.1967912e+183
-1.1983378e+183
-1.1971323e+183
-1.1969897e+183
-1.1985383e+183
-1.1986997e+183
-1.2067313e+183
-1.2069187e+183
-1.2099083e+183
-1.2101159e+183
-1.2103315e+183
-1.2105577e+183
-1.2070898e+183
-1.2072945e+183
-1.202108e+183
-1.2005246e+183
-1.2006845e+183
-1.2022727e+183
-1.2038009e+183
-1.2036383e+183
-1.2051922e+183
-1.2053734e+183
-1.2018476e+183
-1.2003152e+183
-1.2004127e+183
-1.2019747e+183
-1.2034833e+183
-1.2033341e+183
-1.2048555e+183
-1.2050249e+183
-1.1988224e+183
-1.1972273e+183
-1.1973025e+183
-1.1989056e+183
-1.1975403e+183
-1.1974089e+183
-1.1990076e+183
-1.1991558e+183
-1.1950977e+183
-1.1935339e+183
-1.1937543e+183
-1.1953046e+183
-1.1920466e+183
-1.1904802e+183
-1.1907233e+183
-1.1922741e+183
-1.1910776e+183
-1.1909308e+183
-1.1924715e+183
-1.1926042e+183
-1.1954991e+183
-1.1939448e+183
-1.1940695e+183
-1.1956313e+183
-1.1958723e+183
-1.1942885e+183
-1.1943967e+183
-1.195996e+183
-1.1912081e+183
-1.1911458e+183
-1.1926622e+183
-1.1927252e+183
-1.1957043e+183
-1.1941293e+183
-1.1941947e+183
-1.1957741e+183
-1.1913433e+183
-1.1912885e+183
-1.1928084e+183
-1.1928986e+183
-1.2149141e+183
-1.2128221e+183
-1.2146389e+183
-1.2130939e+183
-1.2165019e+183
-1.2184207e+183
-1.2186774e+183
-1.2167623e+183
-1.2154274e+183
-1.213365e+183
-1.2151784e+183
-1.2136042e+183
-1.2170308e+183
-1.2189441e+183
-1.2073253e+183
-1.2090486e+183
-1.2093247e+183
-1.207587e+183
-1.21107e+183
-1.2113371e+183
-1.2096073e+183
-1.2116114e+183
-1.2118432e+183
-1.2098246e+183
-1.2078587e+183
-1.2080712e+183
-1.2055752e+183
-1.202463e+183
-1.2039966e+183
-1.2009502e+183
-1.2011399e+183
-1.20267e+183
-1.2042226e+183
-1.2058135e+183
-1.1982999e+183
-1.1981546e+183
-1.199744e+183
-1.1999106e+183
-1.1993898e+183
-1.1978159e+183
-1.1979853e+183
-1.1995672e+183
-1.2028885e+183
-1.2013302e+183
-1.201507e+183
-1.2030709e+183
-1.2046499e+183
-1.20446e+183
-1.2060635e+183
-1.2062666e+183
-1.2032413e+183
-1.2016878e+183
-1.2018386e+183
-1.2034016e+183
-1.2000833e+183
-1.1984548e+183
-1.1986181e+183
-1.2002361e+183
-1.192449e+183
-1.1922974e+183
-1.1939077e+183
-1.1940834e+183
-1.192132e+183
-1.1919797e+183
-1.193557e+183
-1.1937223e+183
-1.1968034e+183
-1.1951711e+183
-1.1953439e+183
-1.1969715e+183
-1.1918411e+183
-1.1917276e+183
-1.1933172e+183
-1.1934372e+183
-1.1931131e+183
-1.1915681e+183
-1.1916325e+183
-1.1932089e+183
-1.1962237e+183
-1.1946619e+183
-1.1947948e+183
-1.1963826e+183
-1.1965364e+183
-1.1949259e+183
-1.1950475e+183
-1.1966669e+183
-1.2198146e+183
-1.2176788e+183
-1.2196587e+183
-1.2178279e+183
-1.2182063e+183
-1.218008e+183
-1.2199977e+183
-1.2201972e+183
-1.2216992e+183
-1.2238003e+183
-1.2218499e+183
-1.22395e+183
-1.2222432e+183
-1.2241442e+183
-1.2243479e+183
-1.2220412e+183
-1.2172195e+183
-1.2191882e+183
-1.217324e+183
-1.2192928e+183
-1.2213193e+183
-1.2234139e+183
-1.2212168e+183
-1.2233044e+183
-1.2195275e+183
-1.2174312e+183
-1.219415e+183
-1.2175387e+183
-1.22145e+183
-1.223545e+183
-1.2236678e+183
-1.2215643e+183
-1.2254629e+183
-1.2276765e+183
-1.2277997e+183
-1.2255793e+183
-1.2299562e+183
-1.2322854e+183
-1.2324214e+183
-1.2300848e+183
-1.2257083e+183
-1.2258294e+183
-1.2279264e+183
-1.228043e+183
-1.2302159e+183
-1.2303402e+183
-1.2325603e+183
-1.2326961e+183
-1.2283649e+183
-1.2259717e+183
-1.228199e+183
-1.2261268e+183
-1.232862e+183
-1.2305011e+183
-1.2306728e+183
-1.2330384e+183
-1.2287664e+183
-1.2263207e+183
-1.2285597e+183
-1.2265263e+183
-1.2332468e+183
-1.2308736e+183
-1.2310825e+183
-1.2334598e+183
-1.2101279e+183
-1.2103094e+183
-1.2119722e+183
-1.2121403e+183
-1.2139848e+183
-1.2157277e+183
-1.2158762e+183
-1.2138298e+183
-1.2105029e+183
-1.2107038e+183
-1.2125263e+183
-1.2123274e+183
-1.214166e+183
-1.2143644e+183
-1.2160553e+183
-1.2162535e+183
-1.205152e+183
-1.2053587e+183
-1.2082945e+183
-1.208481e+183
-1.2086782e+183
-1.2088817e+183
-1.2055558e+183
-1.2057651e+183
-1.2007303e+183
-1.1992066e+183
-1.1994278e+183
-1.2009408e+183
-1.2024183e+183
-1.2022192e+183
-1.2037203e+183
-1.2039211e+183
-1.2002698e+183
-1.1987334e+183
-1.1989642e+183
-1.2004941e+183
-1.2019907e+183
-1.2017764e+183
-1.2032957e+183
-1.2035065e+183
-1.197251e+183
-1.1956679e+183
-1.1959149e+183
-1.1974853e+183
-1.1964043e+183
-1.1961657e+183
-1.1977306e+183
-1.1979619e+183
-1.2046143e+183
-1.2047081e+183
-1.2078585e+183
-1.2079169e+183
-1.2080091e+183
-1.2081367e+183
-1.2048314e+183
-1.2049867e+183
-1.1998807e+183
-1.1983095e+183
-1.1985342e+183
-1.2000797e+183
-1.2015959e+183
-1.2014194e+183
-1.2029613e+183
-1.2031249e+183
-1.1995069e+183
-1.1978977e+183
-1.1980838e+183
-1.1996718e+183
-1.2012357e+183
-1.2010887e+183
-1.2026819e+183
-1.2028077e+183
-1.1963581e+183
-1.194726e+183
-1.1949404e+183
-1.1965557e+183
-1.1954413e+183
-1.1951887e+183
-1.1967952e+183
-1.1970384e+183
-1.2116228e+183
-1.2097129e+183
-1.2115603e+183
-1.2097653e+183
-1.2134068e+183
-1.2152877e+183
-1.2153796e+183
-1.2134835e+183
-1.2118193e+183
-1.2098468e+183
-1.2117062e+183
-1.2099662e+183
-1.2135754e+183
-1.2154781e+183
-1.2136817e+183
-1.2155831e+183
-1.1931764e+183
-1.191557e+183
-1.1917856e+183
-1.193397e+183
-1.1900315e+183
-1.1884339e+183
-1.1886577e+183
-1.1902566e+183
-1.1891119e+183
-1.1888766e+183
-1.1904899e+183
-1.1907386e+183
-1.1936463e+183
-1.1920243e+183
-1.1922771e+183
-1.1939021e+183
-1.194137e+183
-1.1925217e+183
-1.1927924e+183
-1.1943923e+183
-1.1896299e+183
-1.1893496e+183
-1.1909779e+183
-1.1912572e+183
-1.1902223e+183
-1.1899138e+183
-1.1915271e+183
-1.1918123e+183
-1.1946494e+183
-1.1930528e+183
-1.1933185e+183
-1.1949008e+183
-1.1786819e+183
-1.1782879e+183
-1.1796237e+183
-1.1800113e+183
-1.1779436e+183
-1.1776177e+183
-1.1789604e+183
-1.1792766e+183
-1.1817088e+183
-1.1802831e+183
-1.1805917e+183
-1.182008e+183
-1.1823509e+183
-1.180942e+183
-1.1813139e+183
-1.1827154e+183
-1.1773762e+183
-1.1771572e+183
-1.1785402e+183
-1.1787493e+183
-1.1781781e+183
-1.1768022e+183
-1.1769854e+183
-1.1783674e+183
-1.180931e+183
-1.1795116e+183
-1.1797152e+183
-1.1811439e+183
-1.1813289e+183
-1.1798961e+183
-1.1800894e+183
-1.1815206e+183
-1.1869142e+183
-1.1853308e+183
-1.1855505e+183
-1.1871329e+183
-1.1838483e+183
-1.1823391e+183
-1.1825569e+183
-1.1840694e+183
-1.1829396e+183
-1.1827459e+183
-1.1842598e+183
-1.1844633e+183
-1.1873397e+183
-1.1857474e+183
-1.1859575e+183
-1.1875648e+183
-1.1841162e+183
-1.1837609e+183
-1.1852758e+183
-1.1856242e+183
-1.1846688e+183
-1.1831393e+183
-1.1834328e+183
-1.1849618e+183
-1.1877911e+183
-1.1861766e+183
-1.1864656e+183
-1.188077e+183
-1.1883706e+183
-1.1867714e+183
-1.187109e+183
-1.1886974e+183
-1.1799029e+183
-1.1796321e+183
-1.1809534e+183
-1.1812372e+183
-1.1793474e+183
-1.179008e+183
-1.1803163e+183
-1.1806549e+183
-1.1829998e+183
-1.1816024e+183
-1.1819464e+183
-1.1833358e+183
-1.183647e+183
-1.1822625e+183
-1.1825431e+183
-1.183921e+183
-1.1889729e+183
-1.1873954e+183
-1.1876829e+183
-1.1892327e+183
-1.1859108e+183
-1.1844055e+183
-1.1847316e+183
-1.1862213e+183
-1.1852766e+183
-1.1850238e+183
-1.1864881e+183
-1.186714e+183
-1.189455e+183
-1.1879273e+183
-1.1881232e+183
-1.1896239e+183
-1.1897016e+183
-1.1882218e+183
-1.1882985e+183
-1.1897686e+183
-1.1868317e+183
-1.1854227e+183
-1.1855193e+183
-1.1869137e+183
-1.1898388e+183
-1.1883643e+183
-1.1883491e+183
-1.1898637e+183
-1.1854848e+183
-1.1855643e+183
-1.1869712e+183
-1.1869312e+183
-1.1840856e+183
-1.1827273e+183
-1.1828376e+183
-1.1841885e+183
-1.1802128e+183
-1.1800895e+183
-1.1814219e+183
-1.1815384e+183
-1.1801334e+183
-1.1802409e+183
-1.1815593e+183
-1.1814542e+183
-1.1842212e+183
-1.1828591e+183
-1.1827513e+183
-1.1841255e+183
-1.1841795e+183
-1.182838e+183
-1.1827262e+183
-1.1840886e+183
-1.1815195e+183
-1.1802415e+183
-1.1801126e+183
-1.1813923e+183
-1.1800847e+183
-1.1800543e+183
-1.1813357e+183
-1.1813774e+183
-1.184069e+183
-1.182679e+183
-1.1827311e+183
-1.1841316e+183
-1.1804348e+183
-1.180397e+183
-1.1817224e+183
-1.1817763e+183
-1.1803166e+183
-1.180201e+183
-1.1815022e+183
-1.1816347e+183
-1.1842673e+183
-1.1828638e+183
-1.1830041e+183
-1.1844115e+183
-1.1845251e+183
-1.1831078e+183
-1.1831676e+183
-1.1845987e+183
-1.1855975e+183
-1.1855221e+183
-1.1870108e+183
-1.1871009e+183
-1.1870089e+183
-1.1855722e+183
-1.1855117e+183
-1.1869775e+183
-1.1900167e+183
-1.1884991e+183
-1.1885001e+183
-1.1900517e+183
-1.1901283e+183
-1.1885571e+183
-1.1886561e+183
-1.190237e+183
-1.1903822e+183
-1.1888018e+183
-1.1889468e+183
-1.1905264e+183
-1.1872391e+183
-1.1857355e+183
-1.1858813e+183
-1.1873862e+183
-1.1860918e+183
-1.1860038e+183
-1.1875132e+183
-1.1876183e+183
-1.1906744e+183
-1.1890839e+183
-1.1891999e+183
-1.190808e+183
-1.1146051e+183
-1.1268278e+183
-1.1158837e+183
-1.1147489e+183
-1.1271751e+183
-1.1281794e+183
-1.0967165e+183
-1.0966629e+183
-1.1290915e+183
-1.1166373e+183
-1.1169797e+183
-1.1297177e+183
-1.1309739e+183
-1.118166e+183
-1.120259e+183
-1.1324862e+183
-1.0978053e+183
-1.100225e+183
-1.0682311e+183
-1.0664193e+183
-1.0675774e+183
-1.0656518e+183
-1.1698685e+183
-1.1691879e+183
-1.1716389e+183
-1.1723733e+183
-1.1684869e+183
-1.1676784e+183
-1.1701623e+183
-1.1709267e+183
-1.1756405e+183
-1.1728294e+183
-1.173591e+183
-1.176432e+183
-1.1750867e+183
-1.1743274e+183
-1.1772103e+183
-1.1779717e+183
-1.1721414e+183
-1.1662188e+183
-1.1669845e+183
-1.1695065e+183
-1.1881013e+183
-1.1848892e+183
-1.1858398e+183
-1.1890711e+183
-1.1816868e+183
-1.1786089e+183
-1.1794672e+183
-1.1825986e+183
-1.1899805e+183
-1.1867292e+183
-1.1875111e+183
-1.1908106e+183
-1.1834533e+183
-1.1802829e+183
-1.181039e+183
-1.1842157e+183
-1.1574113e+183
-1.156636e+183
-1.1588256e+183
-1.1596193e+183
-1.1560833e+183
-1.1619787e+183
-1.1611598e+183
-1.163621e+183
-1.1644258e+183
-1.1420375e+183
-1.1480513e+183
-1.1537426e+183
-1.1512971e+183
-1.1486022e+183
-1.1424749e+183
-1.1434237e+183
-1.149389e+183
-1.1525939e+183
-1.1518231e+183
-1.1542555e+183
-1.1550436e+183
-1.1480575e+183
-1.1466527e+183
-1.1524411e+183
-1.1536944e+183
-1.1452952e+183
-1.144388e+183
-1.150261e+183
-1.1512852e+183
-1.1558879e+183
-1.1534218e+183
-1.1544324e+183
-1.1568105e+183
-1.1565569e+183
-1.1554573e+183
-1.1577558e+183
-1.1586487e+183
-1.1651853e+183
-1.1628007e+183
-1.1636618e+183
-1.1660188e+183
-1.1604584e+183
-1.1582271e+183
-1.1591262e+183
-1.1613317e+183
-1.1667406e+183
-1.1644319e+183
-1.1649886e+183
-1.1673508e+183
-1.1621453e+183
-1.1599948e+183
-1.1607183e+183
-1.1627454e+183
-1.195893e+183
-1.1954057e+183
-1.192093e+183
-1.1915736e+183
-1.1932023e+183
-1.1937079e+183
-1.1992094e+183
-1.1963387e+183
-1.198704e+183
-1.1968218e+183
-1.2002924e+183
-1.1973327e+183
-1.1997486e+183
-1.1978291e+183
-1.1938865e+183
-1.1934196e+183
-1.1955794e+183
-1.1950837e+183
-1.1929701e+183
-1.1925072e+183
-1.1946111e+183
-1.1941332e+183
-1.2006937e+183
-1.2012108e+183
-1.2025497e+183
-1.2030916e+183
-1.2049643e+183
-1.2068429e+183
-1.204396e+183
-1.2062546e+183
-1.2017701e+183
-1.2036706e+183
-1.2042419e+183
-1.2023281e+183
-1.2080178e+183
-1.2055564e+183
-1.2074424e+183
-1.2061316e+183
-1.2087721e+183
-1.2107166e+183
-1.2127225e+183
-1.2147698e+183
-1.2093753e+183
-1.2113219e+183
-1.2118933e+183
-1.2099469e+183
-1.2159425e+183
-1.2133281e+183
-1.2153755e+183
-1.2138947e+183
-1.2190318e+183
-1.216884e+183
-1.2174893e+183
-1.2196363e+183
-1.2180517e+183
-1.2201982e+183
-1.2235146e+183
-1.2212509e+183
-1.2224212e+183
-1.221854e+183
-1.2241136e+183
-1.2246867e+183
-1.2270036e+183
-1.2264235e+183
-1.2287539e+183
-1.2293422e+183
-1.2317389e+183
-1.2311393e+183
-1.2336042e+183
-1.2342109e+183
-1.2636106e+183
-1.2680951e+183
-1.2686464e+183
-1.2641485e+183
-1.265238e+183
-1.2646856e+183
-1.2691791e+183
-1.269745e+183
-1.2729075e+183
-1.2734462e+183
-1.274602e+183
-1.2740074e+183
-1.2511065e+183
-1.2543593e+183
-1.2549199e+183
-1.2516588e+183
-1.2528181e+183
-1.252238e+183
-1.2554871e+183
-1.2560629e+183
-1.262233e+183
-1.2578876e+183
-1.2616631e+183
-1.2584452e+183
-1.2596067e+183
-1.2634104e+183
-1.2590176e+183
-1.2628131e+183
-1.25281e+183
-1.2490229e+183
-1.2522643e+183
-1.2495581e+183
-1.2557679e+183
-1.2595046e+183
-1.2600234e+183
-1.2562974e+183
-1.2538262e+183
-1.2500592e+183
-1.253304e+183
-1.2505673e+183
-1.2568166e+183
-1.2605654e+183
-1.2573406e+183
-1.2611019e+183
-1.2658067e+183
-1.2703335e+183
-1.2709245e+183
-1.2663832e+183
-1.2752178e+183
-1.2758315e+183
-1.2669807e+183
-1.2675921e+183
-1.2715526e+183
-1.2721845e+183
-1.2764827e+183
-1.2771472e+183
-1.2450114e+183
-1.2417675e+183
-1.2444933e+183
-1.2422834e+183
-1.2473123e+183
-1.2502505e+183
-1.2507442e+183
-1.2478139e+183
-1.2432303e+183
-1.2459598e+183
-1.242778e+183
-1.2454978e+183
-1.2483118e+183
-1.2512587e+183
-1.2487868e+183
-1.2517514e+183
-1.2337626e+183
-1.2361183e+183
-1.2364187e+183
-1.2340428e+183
-1.2344932e+183
-1.2342891e+183
-1.2366761e+183
-1.2368987e+183
-1.2413312e+183
-1.2385203e+183
-1.2409962e+183
-1.2388337e+183
-1.2393558e+183
-1.2418872e+183
-1.239114e+183
-1.2416267e+183
-1.2348874e+183
-1.232027e+183
-1.2343592e+183
-1.2325536e+183
-1.2367285e+183
-1.2391649e+183
-1.2396706e+183
-1.2372387e+183
-1.2357642e+183
-1.2330154e+183
-1.2353482e+183
-1.2334191e+183
-1.2377233e+183
-1.2401702e+183
-1.2381478e+183
-1.2406097e+183
-1.2436301e+183
-1.2463828e+183
-1.2467499e+183
-1.2439789e+183
-1.2522261e+183
-1.2496319e+183
-1.2492396e+183
-1.2526441e+183
-1.244299e+183
-1.2445802e+183
-1.2471002e+183
-1.2474055e+183
-1.2530458e+183
-1.2503372e+183
-1.2533992e+183
-1.2500076e+183
-1.2373956e+183
-1.2379477e+183
-1.2406705e+183
-1.2401211e+183
-1.2389998e+183
-1.2416954e+183
-1.2384863e+183
-1.2411904e+183
-1.2429438e+183
-1.2458918e+183
-1.2464241e+183
-1.2434817e+183
-1.2439917e+183
-1.2444952e+183
-1.2469305e+183
-1.2474337e+183
-1.2326869e+183
-1.2298322e+183
-1.2321439e+183
-1.2303858e+183
-1.2344991e+183
-1.2369324e+183
-1.2374699e+183
-1.235034e+183
-1.2309381e+183
-1.2314668e+183
-1.2332426e+183
-1.2337901e+183
-1.235588e+183
-1.2361549e+183
-1.2380221e+183
-1.2385944e+183
-1.2281324e+183
-1.2275864e+183
-1.2299378e+183
-1.2304735e+183
-1.2328675e+183
-1.2323273e+183
-1.2347848e+183
-1.2353306e+183
-1.2316003e+183
-1.2286933e+183
-1.2310304e+183
-1.2292626e+183
-1.2358794e+183
-1.233424e+183
-1.2339665e+183
-1.2364041e+183
-1.2427601e+183
-1.2395233e+183
-1.2422263e+183
-1.2400551e+183
-1.2479729e+183
-1.2450361e+183
-1.2455743e+183
-1.2485169e+183
-1.2411938e+183
-1.2439192e+183
-1.2406154e+183
-1.2433354e+183
-1.2491018e+183
-1.2461546e+183
-1.2467404e+183
-1.2496868e+183
-1.2533772e+183
-1.2566318e+183
-1.2571561e+183
-1.25388e+183
-1.2544045e+183
-1.2549173e+183
-1.2576986e+183
-1.2582315e+183
-1.2645704e+183
-1.2601905e+183
-1.2640055e+183
-1.2607342e+183
-1.2618478e+183
-1.2657225e+183
-1.261293e+183
-1.2651462e+183
-1.2554122e+183
-1.2587456e+183
-1.2592209e+183
-1.2558586e+183
-1.2668018e+183
-1.262385e+183
-1.2662823e+183
-1.2628822e+183
-1.2600602e+183
-1.256281e+183
-1.2596633e+183
-1.2566573e+183
-1.2633465e+183
-1.2672876e+183
-1.2677258e+183
-1.2637635e+183
-1.2705631e+183
-1.275254e+183
-1.2758263e+183
-1.2711037e+183
-1.2809009e+183
-1.2803065e+183
-1.2814604e+183
-1.2819792e+183
-1.2716109e+183
-1.2720673e+183
-1.2763537e+183
-1.2768325e+183
-1.2682038e+183
-1.2728093e+183
-1.2734124e+183
-1.2687855e+183
-1.2693798e+183
-1.2740259e+183
-1.269978e+183
-1.2746463e+183
-1.2777776e+183
-1.2783949e+183
-1.2796781e+183
-1.279028e+183
-1.1237268e+183
-1.1246297e+183
-1.1399014e+183
-1.1393626e+183
-1.1002482e+183
-1.1002534e+183
-1.1237775e+183
-1.1248422e+183
-1.1395247e+183
-1.1404663e+183
-1.1259145e+183
-1.1255801e+183
-1.1413042e+183
-1.1419058e+183
-1.1430824e+183
-1.1270427e+183
-1.1289531e+183
-1.144471e+183
-1.10375e+183
-1.1014087e+183
-1.0982782e+183
-1.0983213e+183
-1.0994563e+183
-1.1017946e+183
-1.1227541e+183
-1.1240593e+183
-1.138537e+183
-1.1377096e+183
-1.137487e+183
-1.1222961e+183
-1.1226275e+183
-1.1377109e+183
-1.100232e+183
-1.0989968e+183
-1.1379246e+183
-1.1227037e+183
-1.1222726e+183
-1.1378044e+183
-1.1384516e+183
-1.1227832e+183
-1.1242615e+183
-1.1395995e+183
-1.0987976e+183
-1.0997326e+183
-1.0977505e+183
-1.0967938e+183
-1.0981495e+183
-1.0969586e+183
-1.0971047e+183
-1.0980334e+183
-1.0983076e+183
-1.0972131e+183
-1.0970567e+183
-1.0971039e+183
-1.0980402e+183
-1.0980644e+183
-1.0987865e+183
-1.0986238e+183
-1.0986228e+183
-1.0987215e+183
-1.0999486e+183
-1.1022254e+183
-1.0998574e+183
-1.1021978e+183
-1.1766024e+183
-1.1763391e+183
-1.1776859e+183
-1.1779667e+183
-1.1760506e+183
-1.1757007e+183
-1.1770038e+183
-1.1773808e+183
-1.1804138e+183
-1.1790086e+183
-1.1792964e+183
-1.1807111e+183
-1.179666e+183
-1.1782894e+183
-1.1786851e+183
-1.1800794e+183
-1.1753664e+183
-1.1749805e+183
-1.1762522e+183
-1.1766455e+183
-1.1745963e+183
-1.1741215e+183
-1.1753896e+183
-1.1758743e+183
-1.1779733e+183
-1.1766448e+183
-1.1771259e+183
-1.1784626e+183
-1.1788386e+183
-1.177493e+183
-1.1779043e+183
-1.1792654e+183
-1.1806445e+183
-1.1802045e+183
-1.1816706e+183
-1.1821314e+183
-1.1807193e+183
-1.1793012e+183
-1.1798029e+183
-1.1812451e+183
-1.1836553e+183
-1.1821296e+183
-1.1826715e+183
-1.1842155e+183
-1.184686e+183
-1.1831234e+183
-1.1835988e+183
-1.1851774e+183
-1.1855883e+183
-1.1840129e+183
-1.1844281e+183
-1.1859945e+183
-1.1825393e+183
-1.1810497e+183
-1.1814691e+183
-1.1829616e+183
-1.1821107e+183
-1.1818075e+183
-1.1833004e+183
-1.1836116e+183
-1.1863416e+183
-1.1847702e+183
-1.1850844e+183
-1.1866629e+183
-1.1789322e+183
-1.1785861e+183
-1.1800561e+183
-1.1803967e+183
-1.1762166e+183
-1.1758747e+183
-1.1772338e+183
-1.1775807e+183
-1.1770318e+183
-1.1765967e+183
-1.1779646e+183
-1.1784038e+183
-1.1807775e+183
-1.1793101e+183
-1.1797456e+183
-1.1812082e+183
-1.1736606e+183
-1.1733631e+183
-1.1746149e+183
-1.1749376e+183
-1.1712197e+183
-1.170996e+183
-1.172189e+183
-1.1724492e+183
-1.1718382e+183
-1.171483e+183
-1.172746e+183
-1.1731363e+183
-1.1753006e+183
-1.1739928e+183
-1.1743978e+183
-1.1757294e+183
-1.1815748e+183
-1.1801178e+183
-1.1805681e+183
-1.1820345e+183
-1.178771e+183
-1.1774053e+183
-1.1778402e+183
-1.17921e+183
-1.1788061e+183
-1.1782791e+183
-1.1796664e+183
-1.1802116e+183
-1.1825307e+183
-1.1810429e+183
-1.1816044e+183
-1.1831166e+183
-1.1761117e+183
-1.1747942e+183
-1.1752493e+183
-1.1765474e+183
-1.1727139e+183
-1.1722222e+183
-1.1735225e+183
-1.1739995e+183
-1.1736673e+183
-1.1731664e+183
-1.1744289e+183
-1.1749223e+183
-1.1769612e+183
-1.1756557e+183
-1.1761582e+183
-1.1774791e+183
-1.1846044e+183
-1.1840027e+183
-1.185593e+183
-1.1862064e+183
-1.1834861e+183
-1.1830108e+183
-1.1845789e+183
-1.1850691e+183
-1.1888161e+183
-1.1871439e+183
-1.1877589e+183
-1.1894268e+183
-1.1877881e+183
-1.1861208e+183
-1.1866185e+183
-1.188294e+183
-1.182649e+183
-1.1822255e+183
-1.1837974e+183
-1.1842147e+183
-1.1818447e+183
-1.1815041e+183
-1.1830794e+183
-1.1834218e+183
-1.1849555e+183
-1.184609e+183
-1.186254e+183
-1.1866098e+183
-1.186978e+183
-1.1853246e+183
-1.1857394e+183
-1.1873947e+183
-1.1889916e+183
-1.188569e+183
-1.1902668e+183
-1.1907006e+183
-1.1881991e+183
-1.1878317e+183
-1.1895021e+183
-1.1898881e+183
-1.1914803e+183
-1.1910764e+183
-1.1927289e+183
-1.1931577e+183
-1.193564e+183
-1.1918708e+183
-1.1923184e+183
-1.194028e+183
-1.1944644e+183
-1.1927488e+183
-1.193258e+183
-1.1949638e+183
-1.1911174e+183
-1.1893997e+183
-1.1899106e+183
-1.1916322e+183
-1.1910352e+183
-1.1904294e+183
-1.1921454e+183
-1.1927451e+183
-1.1954746e+183
-1.1937696e+183
-1.1943682e+183
-1.1960742e+183
-1.1881866e+183
-1.1878653e+183
-1.1894844e+183
-1.1897993e+183
-1.1875112e+183
-1.1871003e+183
-1.1887127e+183
-1.1891307e+183
-1.1919458e+183
-1.1902749e+183
-1.1906897e+183
-1.1923536e+183
-1.1926888e+183
-1.191037e+183
-1.191339e+183
-1.1929737e+183
-1.1867005e+183
-1.186208e+183
-1.1878292e+183
-1.1883201e+183
-1.1867584e+183
-1.1851525e+183
-1.1857238e+183
-1.1873381e+183
-1.1899753e+183
-1.1883108e+183
-1.1888925e+183
-1.1905561e+183
-1.1910515e+183
-1.1893875e+183
-1.1898778e+183
-1.1915448e+183
-1.1965991e+183
-1.1949008e+183
-1.1954583e+183
-1.1971387e+183
-1.1932827e+183
-1.1915785e+183
-1.1921561e+183
-1.1938525e+183
-1.1931422e+183
-1.1926491e+183
-1.1943419e+183
-1.1948353e+183
-1.1976231e+183
-1.1959434e+183
-1.1964367e+183
-1.198118e+183
-1.1945361e+183
-1.1942681e+183
-1.1959349e+183
-1.1961834e+183
-1.195235e+183
-1.1935443e+183
-1.1939451e+183
-1.1956263e+183
-1.1985132e+183
-1.1968329e+183
-1.197212e+183
-1.1988776e+183
-1.1991562e+183
-1.1975073e+183
-1.1977381e+183
-1.1993641e+183
-1.164475e+183
-1.1648246e+183
-1.1657531e+183
-1.1653585e+183
-1.1662872e+183
-1.1672745e+183
-1.1677487e+183
-1.1667258e+183
-1.1641425e+183
-1.1637945e+183
-1.1649737e+183
-1.164584e+183
-1.1654396e+183
-1.1663689e+183
-1.166815e+183
-1.165856e+183
-1.1635094e+183
-1.1632617e+183
-1.1642797e+183
-1.1639906e+183
-1.1630631e+183
-1.1629813e+183
-1.1637893e+183
-1.1637349e+183
-1.1645745e+183
-1.1654956e+183
-1.1655541e+183
-1.1646468e+183
-1.1648493e+183
-1.1657437e+183
-1.1660438e+183
-1.1651293e+183
-1.1688223e+183
-1.1686765e+183
-1.1698362e+183
-1.1700143e+183
-1.16659e+183
-1.1665035e+183
-1.1675762e+183
-1.1676785e+183
-1.1670784e+183
-1.1667849e+183
-1.1678709e+183
-1.1681881e+183
-1.1702438e+183
-1.169035e+183
-1.1693537e+183
-1.1705888e+183
-1.1678834e+183
-1.167422e+183
-1.1685445e+183
-1.1690228e+183
-1.1709634e+183
-1.1697219e+183
-1.1702069e+183
-1.1714551e+183
-1.1719174e+183
-1.1706812e+183
-1.1711971e+183
-1.1724319e+183
-1.1688457e+183
-1.1683517e+183
-1.1694953e+183
-1.1700051e+183
-1.1616858e+183
-1.1616046e+183
-1.1622388e+183
-1.1622964e+183
-1.1603632e+183
-1.1603263e+183
-1.1609487e+183
-1.1609881e+183
-1.1604266e+183
-1.1604301e+183
-1.1611028e+183
-1.1611954e+183
-1.1619716e+183
-1.1618301e+183
-1.1624648e+183
-1.1626956e+183
-1.1583323e+183
-1.1595308e+183
-1.1594628e+183
-1.1582386e+183
-1.1523334e+183
-1.1558526e+183
-1.1556018e+183
-1.1517616e+183
-1.1513663e+183
-1.155289e+183
-1.1552392e+183
-1.1513241e+183
-1.1580193e+183
-1.1593996e+183
-1.159425e+183
-1.1579392e+183
-1.1514771e+183
-1.1557156e+183
-1.1560609e+183
-1.151939e+183
-1.1514818e+183
-1.1552795e+183
-1.1554967e+183
-1.1514608e+183
-1.1578988e+183
-1.1594852e+183
-1.1596463e+183
-1.1581103e+183
-1.1585031e+183
-1.1599544e+183
-1.1601922e+183
-1.1587813e+183
-1.1624303e+183
-1.1621743e+183
-1.1629618e+183
-1.1632724e+183
-1.1606299e+183
-1.1604826e+183
-1.1613375e+183
-1.1615399e+183
-1.1611402e+183
-1.1608919e+183
-1.1617936e+183
-1.1620554e+183
-1.162979e+183
-1.162693e+183
-1.1635638e+183
-1.1638761e+183
-1.1584697e+183
-1.1535471e+183
-1.1578435e+183
-1.1543945e+183
-1.1529246e+183
-1.152552e+183
-1.1568571e+183
-1.157307e+183
-1.1622731e+183
-1.160731e+183
-1.162558e+183
-1.1611705e+183
-1.1602532e+183
-1.1597882e+183
-1.1614406e+183
-1.1618723e+183
-1.1518286e+183
-1.1563121e+183
-1.1566086e+183
-1.1522286e+183
-1.1520087e+183
-1.1561133e+183
-1.1562212e+183
-1.1518e+183
-1.15891e+183
-1.1604224e+183
-1.1606066e+183
-1.1590784e+183
-1.1592881e+183
-1.1608871e+183
-1.1610896e+183
-1.1595085e+183
-1.1621505e+183
-1.1618891e+183
-1.1628332e+183
-1.1631292e+183
-1.1615983e+183
-1.1613946e+183
-1.1623042e+183
-1.1625435e+183
-1.1634981e+183
-1.1632346e+183
-1.164143e+183
-1.1644335e+183
-1.1641008e+183
-1.1637871e+183
-1.164725e+183
-1.1650511e+183
-1.1628958e+183
-1.1624973e+183
-1.1634612e+183
-1.163835e+183
-1.1647841e+183
-1.1644199e+183
-1.165364e+183
-1.1657107e+183
-1.1653813e+183
-1.1650979e+183
-1.1660043e+183
-1.166277e+183
-1.1635318e+183
-1.1632534e+183
-1.164168e+183
-1.164458e+183
-1.1660632e+183
-1.1657286e+183
-1.1667271e+183
-1.1670727e+183
-1.1664149e+183
-1.165116e+183
-1.1654279e+183
-1.1660731e+183
-1.1670842e+183
-1.168133e+183
-1.1685266e+183
-1.1674516e+183
-1.1681298e+183
-1.1677782e+183
-1.168865e+183
-1.169226e+183
-1.1696665e+183
-1.1692548e+183
-1.1704241e+183
-1.1708568e+183
-1.1728722e+183
-1.1716294e+183
-1.172074e+183
-1.1733354e+183
-1.1737108e+183
-1.1724445e+183
-1.1728241e+183
-1.1740981e+183
-1.1703836e+183
-1.1700169e+183
-1.1712153e+183
-1.1715916e+183
-1.169527e+183
-1.1684351e+183
-1.1687501e+183
-1.1698446e+183
-1.1667017e+183
-1.1663696e+183
-1.1673794e+183
-1.1677e+183
-1.1672313e+183
-1.1669718e+183
-1.1679566e+183
-1.1682059e+183
-1.1700978e+183
-1.1690004e+183
-1.1692362e+183
-1.170334e+183
-1.1714905e+183
-1.1712562e+183
-1.1724755e+183
-1.1727165e+183
-1.1718968e+183
-1.1706804e+183
-1.1709969e+183
-1.1722113e+183
-1.1744154e+183
-1.1731339e+183
-1.173455e+183
-1.1747535e+183
-1.1750306e+183
-1.1737246e+183
-1.173967e+183
-1.1752857e+183
-1.1692366e+183
-1.1688445e+183
-1.1698534e+183
-1.1702497e+183
-1.1685253e+183
-1.1682142e+183
-1.1691907e+183
-1.1695265e+183
-1.1720036e+183
-1.170907e+183
-1.171303e+183
-1.1724094e+183
-1.1712912e+183
-1.1702156e+183
-1.1705695e+183
-1.1716594e+183
-1.1679981e+183
-1.1678121e+183
-1.1687343e+183
-1.1689378e+183
-1.1684123e+183
-1.1674561e+183
-1.1676515e+183
-1.1685983e+183
-1.1705111e+183
-1.1694259e+183
-1.1696025e+183
-1.1706687e+183
-1.1707837e+183
-1.1697271e+183
-1.1699338e+183
-1.1709994e+183
-1.1721748e+183
-1.1719573e+183
-1.173188e+183
-1.173415e+183
-1.1728873e+183
-1.171666e+183
-1.1718248e+183
-1.1730485e+183
-1.175471e+183
-1.1741455e+183
-1.174315e+183
-1.1756464e+183
-1.1758088e+183
-1.1744717e+183
-1.1746976e+183
-1.1760384e+183
-1.1762973e+183
-1.1749722e+183
-1.1753242e+183
-1.1766345e+183
-1.1736944e+183
-1.1724605e+183
-1.1728294e+183
-1.1740587e+183
-1.173579e+183
-1.1731755e+183
-1.1744056e+183
-1.1748123e+183
-1.1769788e+183
-1.1756693e+183
-1.1760699e+183
-1.1773827e+183
-1.1537341e+183
-1.158149e+183
-1.1582498e+183
-1.153818e+183
-1.154431e+183
-1.1585145e+183
-1.158361e+183
-1.1540084e+183
-1.1613199e+183
-1.1627769e+183
-1.1628022e+183
-1.1612398e+183
-1.1611745e+183
-1.1628745e+183
-1.162952e+183
-1.1612664e+183
-1.1646824e+183
-1.163767e+183
-1.1638694e+183
-1.1648302e+183
-1.1657759e+183
-1.165611e+183
-1.1664954e+183
-1.1666838e+183
-1.1660712e+183
-1.1659286e+183
-1.1668409e+183
-1.1670101e+183
-1.1640844e+183
-1.1639997e+183
-1.1649708e+183
-1.1650899e+183
-1.1614485e+183
-1.1631492e+183
-1.1633983e+183
-1.1617875e+183
-1.1539019e+183
-1.1583217e+183
-1.1586369e+183
-1.1540579e+183
-1.1546087e+183
-1.1590753e+183
-1.1597162e+183
-1.1554344e+183
-1.1621476e+183
-1.1637832e+183
-1.1642489e+183
-1.1626873e+183
-1.1652846e+183
-1.1648812e+183
-1.1658569e+183
-1.1662539e+183
-1.1645153e+183
-1.164272e+183
-1.1652572e+183
-1.1655086e+183
-1.1665136e+183
-1.1662391e+183
-1.1671955e+183
-1.1674865e+183
-1.1672428e+183
-1.1668447e+183
-1.1678112e+183
-1.1682121e+183
-1.1587506e+183
-1.1594423e+183
-1.1628124e+183
-1.1631527e+183
-1.1623874e+183
-1.1575902e+183
-1.1618451e+183
-1.1581041e+183
-1.1657519e+183
-1.165521e+183
-1.1669518e+183
-1.1671344e+183
-1.1647515e+183
-1.1662403e+183
-1.1666171e+183
-1.1651856e+183
-1.1562619e+183
-1.1569669e+183
-1.160695e+183
-1.1612833e+183
-1.155872e+183
-1.1600665e+183
-1.1603162e+183
-1.1558672e+183
-1.163393e+183
-1.1629992e+183
-1.1645881e+183
-1.1650188e+183
-1.1653608e+183
-1.1637382e+183
-1.1643065e+183
-1.1658868e+183
-1.1668642e+183
-1.166406e+183
-1.1673515e+183
-1.1677691e+183
-1.1660631e+183
-1.1656355e+183
-1.1666131e+183
-1.1670209e+183
-1.1679927e+183
-1.1675929e+183
-1.1685556e+183
-1.1689391e+183
-1.1687066e+183
-1.1683136e+183
-1.1692496e+183
-1.1696119e+183
-1.1693153e+183
-1.1690137e+183
-1.1698897e+183
-1.1701784e+183
-1.1680804e+183
-1.1671883e+183
-1.1675393e+183
-1.1684048e+183
-1.1680276e+183
-1.1678454e+183
-1.1686802e+183
-1.1688445e+183
-1.1696835e+183
-1.1695455e+183
-1.1703923e+183
-1.1705108e+183
-1.1714104e+183
-1.171314e+183
-1.1722383e+183
-1.1723116e+183
-1.1711162e+183
-1.1708455e+183
-1.1718127e+183
-1.1720586e+183
-1.1739247e+183
-1.1728411e+183
-1.1730683e+183
-1.1741282e+183
-1.174255e+183
-1.1732213e+183
-1.1732577e+183
-1.1742604e+183
-1.170591e+183
-1.1702551e+183
-1.1712589e+183
-1.1715751e+183
-1.1705912e+183
-1.1695736e+183
-1.1699516e+183
-1.1709646e+183
-1.1727603e+183
-1.171651e+183
-1.1720248e+183
-1.1731322e+183
-1.1734179e+183
-1.1723179e+183
-1.172617e+183
-1.1737098e+183
-1.1777192e+183
-1.1764157e+183
-1.1767675e+183
-1.1780592e+183
-1.175161e+183
-1.1739302e+183
-1.1742985e+183
-1.1755202e+183
-1.174864e+183
-1.1745846e+183
-1.1757984e+183
-1.1760751e+183
-1.1783355e+183
-1.177046e+183
-1.1773132e+183
-1.1786086e+183
-1.1753275e+183
-1.1753561e+183
-1.1765158e+183
-1.1764622e+183
-1.1762724e+183
-1.1750688e+183
-1.1752551e+183
-1.1764391e+183
-1.1787964e+183
-1.1775034e+183
-1.1776541e+183
-1.1789306e+183
-1.1789689e+183
-1.1777117e+183
-1.1776319e+183
-1.1788741e+183
-1.2105684e+183
-1.2125073e+183
-1.2110964e+183
-1.2130404e+183
-1.2150328e+183
-1.2144943e+183
-1.2165365e+183
-1.217077e+183
-1.2116461e+183
-1.212207e+183
-1.213597e+183
-1.2141686e+183
-1.2176435e+183
-1.2161746e+183
-1.2182252e+183
-1.2155958e+183
-1.2186384e+183
-1.2191841e+183
-1.2213384e+183
-1.2207915e+183
-1.2230078e+183
-1.2252707e+183
-1.2258173e+183
-1.2235543e+183
-1.2224835e+183
-1.2197487e+183
-1.2219036e+183
-1.2203303e+183
-1.2241193e+183
-1.2246942e+183
-1.2263814e+183
-1.2269529e+183
-1.2247874e+183
-1.2221019e+183
-1.2226527e+183
-1.2242447e+183
-1.2209299e+183
-1.2215211e+183
-1.2230794e+183
-1.2236728e+183
-1.2275345e+183
-1.2258657e+183
-1.2281034e+183
-1.2252839e+183
-1.2264284e+183
-1.2269549e+183
-1.22917e+183
-1.2286561e+183
-1.214516e+183
-1.2164788e+183
-1.2139621e+183
-1.2159176e+183
-1.2133805e+183
-1.2127951e+183
-1.2147658e+183
-1.2153372e+183
-1.2173466e+183
-1.2167724e+183
-1.2188227e+183
-1.2194032e+183
-1.2199846e+183
-1.2205446e+183
-1.2179262e+183
-1.218488e+183
-1.2031537e+183
-1.2049829e+183
-1.2036691e+183
-1.205492e+183
-1.2073183e+183
-1.2091814e+183
-1.2068094e+183
-1.2086652e+183
-1.2046662e+183
-1.2041709e+183
-1.20601e+183
-1.206523e+183
-1.2083822e+183
-1.2102716e+183
-1.2078518e+183
-1.2097236e+183
-1.1977438e+183
-1.1971735e+183
-1.1988559e+183
-1.2008857e+183
-1.1994205e+183
-1.2014598e+183
-1.1966258e+183
-1.1961368e+183
-1.199802e+183
-1.1977973e+183
-1.1983103e+183
-1.2003367e+183
-1.2032404e+183
-1.2037638e+183
-1.2043177e+183
-1.2048671e+183
-1.20181e+183
-1.197989e+183
-1.2012973e+183
-1.1984811e+183
-1.1989288e+183
-1.2022958e+183
-1.1993884e+183
-1.2027722e+183
-1.1956924e+183
-1.195249e+183
-1.1969268e+183
-1.1973677e+183
-1.1948125e+183
-1.1943771e+183
-1.1960273e+183
-1.196488e+183
-1.2051603e+183
-1.2056958e+183
-1.2076118e+183
-1.207056e+183
-1.2089441e+183
-1.2108512e+183
-1.2114359e+183
-1.2095177e+183
-1.2087263e+183
-1.2062523e+183
-1.2081778e+183
-1.2067991e+183
-1.2100927e+183
-1.2120164e+183
-1.2106393e+183
-1.2125661e+183
-1.1997914e+183
-1.1993155e+183
-1.2009886e+183
-1.203009e+183
-1.2014701e+183
-1.203502e+183
-1.1987967e+183
-1.1982754e+183
-1.1999366e+183
-1.2019485e+183
-1.2004727e+183
-1.2024944e+183
-1.2053754e+183
-1.2058863e+183
-1.2063896e+183
-1.2068453e+183
-1.2112064e+183
-1.2090966e+183
-1.210961e+183
-1.2093699e+183
-1.2095459e+183
-1.2096519e+183
-1.2113637e+183
-1.2114718e+183
-1.2128117e+183
-1.2146783e+183
-1.2130186e+183
-1.2148659e+183
-1.2132957e+183
-1.2150353e+183
-1.2151641e+183
-1.2131781e+183
-1.2073166e+183
-1.2078219e+183
-1.2092513e+183
-1.2097494e+183
-1.2116624e+183
-1.2135849e+183
-1.2111677e+183
-1.2130946e+183
-1.210634e+183
-1.2083094e+183
-1.2102217e+183
-1.2087442e+183
-1.2121221e+183
-1.2140327e+183
-1.2143997e+183
-1.212508e+183
-1.2038842e+183
-1.2042166e+183
-1.2072116e+183
-1.2075036e+183
-1.2076999e+183
-1.2078107e+183
-1.2044358e+183
-1.2045603e+183
-1.2009694e+183
-1.2007996e+183
-1.2024442e+183
-1.2025908e+183
-1.2005336e+183
-1.2002005e+183
-1.2018701e+183
-1.202201e+183
-1.2150469e+183
-1.2170157e+183
-1.2175022e+183
-1.2155338e+183
-1.2190271e+183
-1.221079e+183
-1.219511e+183
-1.2215605e+183
-1.2159714e+183
-1.2163168e+183
-1.2179319e+183
-1.2182698e+183
-1.2219872e+183
-1.2202762e+183
-1.2223328e+183
-1.2199371e+183
-1.2187383e+183
-1.2165879e+183
-1.2185401e+183
-1.2167782e+183
-1.2205494e+183
-1.2226118e+183
-1.2228249e+183
-1.2207543e+183
-1.2190573e+183
-1.2169482e+183
-1.2189087e+183
-1.217089e+183
-1.2209318e+183
-1.2230115e+183
-1.2210836e+183
-1.2231675e+183
-1.2240934e+183
-1.2244484e+183
-1.2266113e+183
-1.2262436e+183
-1.2258e+183
-1.2231781e+183
-1.2253051e+183
-1.2236616e+183
-1.2274871e+183
-1.2297241e+183
-1.2302439e+183
-1.2279946e+183
-1.2284515e+183
-1.2288334e+183
-1.2307089e+183
-1.2311024e+183
-1.2271545e+183
-1.2247382e+183
-1.2269145e+183
-1.224961e+183
-1.2314317e+183
-1.2291505e+183
-1.2294009e+183
-1.2316936e+183
-1.2253204e+183
-1.2275279e+183
-1.2251586e+183
-1.227359e+183
-1.2319292e+183
-1.2296205e+183
-1.2297998e+183
-1.2321206e+183
-1.2489023e+183
-1.2457221e+183
-1.2486404e+183
-1.2459668e+183
-1.2464371e+183
-1.2461984e+183
-1.249139e+183
-1.2493866e+183
-1.2516511e+183
-1.2547848e+183
-1.2518978e+183
-1.2550238e+183
-1.2524387e+183
-1.2553299e+183
-1.2556253e+183
-1.2521701e+183
-1.234815e+183
-1.2346692e+183
-1.2370921e+183
-1.2372535e+183
-1.239749e+183
-1.2395698e+183
-1.2421204e+183
-1.242319e+183
-1.2375817e+183
-1.2349668e+183
-1.2374189e+183
-1.2351149e+183
-1.2425181e+183
-1.2399309e+183
-1.2401098e+183
-1.2427146e+183
-1.2454853e+183
-1.2483869e+183
-1.2452711e+183
-1.2481562e+183
-1.2450536e+183
-1.2448351e+183
-1.2476821e+183
-1.2479211e+183
-1.2508949e+183
-1.2506374e+183
-1.2537204e+183
-1.2539965e+183
-1.2542664e+183
-1.2545224e+183
-1.2511477e+183
-1.2513909e+183
-1.237962e+183
-1.2352894e+183
-1.2377669e+183
-1.2354743e+183
-1.240309e+183
-1.2429305e+183
-1.2431519e+183
-1.2405145e+183
-1.2384051e+183
-1.2356875e+183
-1.2381806e+183
-1.2359058e+183
-1.2407407e+183
-1.2433832e+183
-1.2409704e+183
-1.2436177e+183
-1.2361379e+183
-1.2363735e+183
-1.2386428e+183
-1.2388885e+183
-1.2414698e+183
-1.2441329e+183
-1.2412159e+183
-1.2438706e+183
-1.2394517e+183
-1.2366423e+183
-1.239163e+183
-1.2369252e+183
-1.2417516e+183
-1.2444224e+183
-1.244724e+183
-1.2420463e+183
-1.2466985e+183
-1.2496613e+183
-1.2499457e+183
-1.2469701e+183
-1.2527342e+183
-1.2559384e+183
-1.2562497e+183
-1.2530315e+183
-1.2472686e+183
-1.2475741e+183
-1.2502531e+183
-1.2505657e+183
-1.2533503e+183
-1.2536713e+183
-1.2565803e+183
-1.2569127e+183
-1.2512246e+183
-1.2478948e+183
-1.2508946e+183
-1.2482161e+183
-1.2572542e+183
-1.2540065e+183
-1.2543311e+183
-1.2575806e+183
-1.2485371e+183
-1.2515446e+183
-1.2579237e+183
-1.2546584e+183
-1.24006e+183
-1.2372233e+183
-1.2397547e+183
-1.2375213e+183
-1.2378346e+183
-1.2381326e+183
-1.240372e+183
-1.2406683e+183
-1.2432758e+183
-1.2459703e+183
-1.2429776e+183
-1.2456682e+183
-1.2423551e+183
-1.2426638e+183
-1.2450373e+183
-1.2453502e+183
-1.2569984e+183
-1.2604193e+183
-1.2607361e+183
-1.2572943e+183
-1.2575807e+183
-1.257852e+183
-1.26104e+183
-1.2613278e+183
-1.2651099e+183
-1.2691512e+183
-1.2648027e+183
-1.2688211e+183
-1.2641426e+183
-1.2644779e+183
-1.2681227e+183
-1.2684761e+183
-1.2776602e+183
-1.272485e+183
-1.2772658e+183
-1.2728597e+183
-1.282415e+183
-1.2828241e+183
-1.2732262e+183
-1.2735792e+183
-1.2780475e+183
-1.2784278e+183
-1.2836508e+183
-1.2832345e+183
-1.2619058e+183
-1.2581256e+183
-1.2616177e+183
-1.2583868e+183
-1.2654203e+183
-1.2694831e+183
-1.2698126e+183
-1.2657291e+183
-1.2625602e+183
-1.258701e+183
-1.2622278e+183
-1.2590182e+183
-1.2660664e+183
-1.2701685e+183
-1.2664132e+183
-1.2705329e+183
-1.2792041e+183
-1.273938e+183
-1.2788138e+183
-1.2742923e+183
-1.2840614e+183
-1.2844782e+183
-1.2750537e+183
-1.2746692e+183
-1.279602e+183
-1.2800111e+183
-1.2853613e+183
-1.2849102e+183
-1.264684e+183
-1.2607152e+183
-1.2643257e+183
-1.2610573e+183
-1.2682533e+183
-1.272449e+183
-1.2686169e+183
-1.2728189e+183
-1.259347e+183
-1.2629025e+183
-1.2596712e+183
-1.2632427e+183
-1.2671273e+183
-1.2712796e+183
-1.2667716e+183
-1.2709077e+183
-1.2639616e+183
-1.2600147e+183
-1.2636009e+183
-1.2603624e+183
-1.2675011e+183
-1.2716694e+183
-1.2720596e+183
-1.2678758e+183
-1.2857961e+183
-1.2862333e+183
-1.2754481e+183
-1.2804256e+183
-1.2808389e+183
-1.2758392e+183
-1.2762456e+183
-1.2812588e+183
-1.2766474e+183
-1.2816794e+183
-1.2871092e+183
-1.28666e+183
-1.2875586e+183
-1.2879867e+183
-1.2825059e+183
-1.2770511e+183
-1.2821011e+183
-1.2774363e+183
-1.2883695e+183
-1.1228932e+183
-1.123426e+183
-1.1263955e+183
-1.1255842e+183
-1.1222917e+183
-1.123833e+183
-1.1231803e+183
-1.1248601e+183
-1.1219243e+183
-1.1216611e+183
-1.1224763e+183
-1.1226987e+183
-1.1241267e+183
-1.1258666e+183
-1.1286778e+183
-1.1267996e+183
-1.1235842e+183
-1.1233697e+183
-1.1260246e+183
-1.1262727e+183
-1.1263478e+183
-1.1415986e+183
-1.1407617e+183
-1.1506379e+183
-1.1501691e+183
-1.1411291e+183
-1.1502546e+183
-1.1404544e+183
-1.1498098e+183
-1.1405629e+183
-1.1499393e+183
-1.1505917e+183
-1.1414938e+183
-1.1506282e+183
-1.1417142e+183
-1.1414891e+183
-1.1510232e+183
-1.1518903e+183
-1.1442844e+183
-1.1531399e+183
-1.1426064e+183
-1.1789861e+183
-1.1777962e+183
-1.1776759e+183
-1.1788558e+183
-1.1766422e+183
-1.1755555e+183
-1.1754537e+183
-1.1765239e+183
-1.1787876e+183
-1.1776009e+183
-1.1776021e+183
-1.1788052e+183
-1.1753455e+183
-1.1753854e+183
-1.1764475e+183
-1.1764338e+183
-1.1745134e+183
-1.173549e+183
-1.1734495e+183
-1.1744108e+183
-1.1726252e+183
-1.1717633e+183
-1.1716224e+183
-1.1725005e+183
-1.174339e+183
-1.173371e+183
-1.1732901e+183
-1.1742777e+183
-1.1713952e+183
-1.1714935e+183
-1.1724061e+183
-1.1723218e+183
-1.171288e+183
-1.1713614e+183
-1.1722814e+183
-1.1722298e+183
-1.1713714e+183
-1.1713702e+183
-1.1722778e+183
-1.172269e+183
-1.1742636e+183
-1.1732513e+183
-1.1732433e+183
-1.174267e+183
-1.1742982e+183
-1.1732663e+183
-1.1732381e+183
-1.1742967e+183
-1.1754329e+183
-1.1754183e+183
-1.1765838e+183
-1.1766061e+183
-1.1764856e+183
-1.1753583e+183
-1.1753813e+183
-1.1765365e+183
-1.1789102e+183
-1.1776821e+183
-1.1777598e+183
-1.1790086e+183
-1.1790783e+183
-1.1778196e+183
-1.1778438e+183
-1.1791091e+183
-1.1630662e+183
-1.1663373e+183
-1.165845e+183
-1.1620914e+183
-1.1680721e+183
-1.1679263e+183
-1.1677292e+183
-1.167726e+183
-1.1667742e+183
-1.1674451e+183
-1.1674703e+183
-1.1672201e+183
-1.1611464e+183
-1.1651511e+183
-1.1607184e+183
-1.1646195e+183
-1.1699452e+183
-1.1701595e+183
-1.1709141e+183
-1.1707474e+183
-1.1694356e+183
-1.1687409e+183
-1.1684096e+183
-1.1691599e+183
-1.1679749e+183
-1.1681009e+183
-1.1688979e+183
-1.1687875e+183
-1.1696181e+183
-1.1697355e+183
-1.1705789e+183
-1.1704749e+183
-1.1599164e+183
-1.1638016e+183
-1.1602646e+183
-1.1640985e+183
-1.1670647e+183
-1.1661933e+183
-1.1659181e+183
-1.1669577e+183
-1.1659713e+183
-1.1669522e+183
-1.1662486e+183
-1.1669866e+183
-1.1600781e+183
-1.1606476e+183
-1.1643145e+183
-1.1639066e+183
-1.1696076e+183
-1.1696128e+183
-1.1704511e+183
-1.1704648e+183
-1.1687863e+183
-1.1679565e+183
-1.1679099e+183
-1.1687607e+183
-1.1678505e+183
-1.1678768e+183
-1.1687176e+183
-1.1686729e+183
-1.1695087e+183
-1.1695705e+183
-1.1704411e+183
-1.170369e+183
-1.1694756e+183
-1.1686748e+183
-1.1678864e+183
-1.1679807e+183
-1.1687688e+183
-1.1664518e+183
-1.1663904e+183
-1.1670197e+183
-1.1670964e+183
-1.1644013e+183
-1.1607773e+183
-1.1644439e+183
-1.1604973e+183
-1.0846301e+183
-1.0871448e+183
-1.1251887e+183
-1.1837768e+183
-1.1629211e+183
-1.1668137e+183
-1.1882058e+183
-1.2159819e+183
-1.2103953e+183
-1.1266529e+183
-1.1250243e+183
-1.15123e+183
-1.1486696e+183
-1.1831508e+183
-1.1799985e+183
-1.2010089e+183
-1.2047866e+183
-1.2261444e+183
-1.227857e+183
-1.2373202e+183
-1.2354874e+183
-1.2242622e+183
-1.2220774e+183
-1.2310545e+183
-1.2334972e+183
-1.128697e+183
-1.1566303e+183
-1.1537691e+183
-1.1311564e+183
-1.2116169e+183
-1.2083823e+183
-1.186338e+183
-1.1894864e+183
-1.2310985e+183
-1.2293839e+183
-1.2388569e+183
-1.2405172e+183
-1.2325322e+183
-1.2340626e+183
-1.2419937e+183
-1.2436024e+183
-1.1951066e+183
-1.2451367e+183
-1.2497722e+183
-1.2479797e+183
-1.2487167e+183
-1.2533099e+183
-1.252526e+183
-1.2569547e+183
-1.2577694e+183
-1.2626133e+183
-1.2617779e+183
-1.2634495e+183
-1.2586019e+183
-1.2594587e+183
-1.2643146e+183
-1.2495184e+183
-1.2504033e+183
-1.254956e+183
-1.2541147e+183
-1.2683945e+183
-1.2688316e+183
-1.2663485e+183
-1.2659302e+183
-1.2671742e+183
-1.2667508e+183
-1.2692248e+183
-1.2696197e+183
-1.2723228e+183
-1.2719195e+183
-1.2749092e+183
-1.2753301e+183
-1.2710899e+183
-1.2740777e+183
-1.274487e+183
-1.2715054e+183
-1.2800078e+183
-1.277383e+183
-1.2778133e+183
-1.2804252e+183
-1.2765406e+183
-1.2791379e+183
-1.2795824e+183
-1.2769602e+183
-1.2817771e+183
-1.2822155e+183
-1.2850232e+183
-1.2845898e+183
-1.2826412e+183
-1.2859056e+183
-1.2854562e+183
-1.2830778e+183
-1.2791075e+183
-1.2817336e+183
-1.2821843e+183
-1.2795788e+183
-1.2782023e+183
-1.2808203e+183
-1.2812837e+183
-1.2786432e+183
-1.283471e+183
-1.2839147e+183
-1.2867334e+183
-1.2862998e+183
-1.284358e+183
-1.2848263e+183
-1.2876626e+183
-1.2871839e+183
-1.2679239e+183
-1.2675332e+183
-1.270395e+183
-1.2699668e+183
-1.2726708e+183
-1.2731069e+183
-1.2761291e+183
-1.2756938e+183
-1.273582e+183
-1.2765999e+183
-1.2770831e+183
-1.2740633e+183
-1.2683494e+183
-1.27084e+183
-1.2713095e+183
-1.2688152e+183
-1.2920927e+183
-1.2916143e+183
-1.2951885e+183
-1.2946854e+183
-1.2973523e+183
-1.2978719e+183
-1.2925563e+183
-1.2892632e+183
-1.2897082e+183
-1.2929972e+183
-1.2883631e+183
-1.2888135e+183
-1.2983684e+183
-1.2956592e+183
-1.2961129e+183
-1.2988409e+183
-1.2901224e+183
-1.2934334e+183
-1.2938832e+183
-1.2905476e+183
-1.291469e+183
-1.2948282e+183
-1.2943469e+183
-1.2909946e+183
-1.3002911e+183
-1.2975096e+183
-1.2979955e+183
-1.3007878e+183
-1.2970394e+183
-1.2965709e+183
-1.2993097e+183
-1.2997987e+183
-1.251099e+183
-1.2518396e+183
-1.2565023e+183
-1.2556905e+183
-1.2602099e+183
-1.2651025e+183
-1.2659794e+183
-1.2610412e+183
-1.2668408e+183
-1.261892e+183
-1.2627835e+183
-1.2677107e+183
-1.2526336e+183
-1.25352e+183
-1.2581921e+183
-1.2573138e+183
-1.2692368e+183
-1.2717378e+183
-1.2722106e+183
-1.2696877e+183
-1.2705711e+183
-1.2701229e+183
-1.2726198e+183
-1.2730241e+183
-1.2757377e+183
-1.2753339e+183
-1.2787914e+183
-1.2783552e+183
-1.2744793e+183
-1.274921e+183
-1.2779249e+183
-1.2774988e+183
-1.2813297e+183
-1.2808744e+183
-1.2835478e+183
-1.284005e+183
-1.2826187e+183
-1.2799989e+183
-1.2804377e+183
-1.2830985e+183
-1.2857709e+183
-1.2852822e+183
-1.2881356e+183
-1.2886305e+183
-1.2862356e+183
-1.2891103e+183
-1.2896184e+183
-1.286725e+183
-1.2900556e+183
-1.2876138e+183
-1.2871666e+183
-1.2904809e+183
-1.2844364e+183
-1.2817509e+183
-1.2822143e+183
-1.2849111e+183
-1.2858134e+183
-1.2853752e+183
-1.2826867e+183
-1.2831484e+183
-1.2880558e+183
-1.2885134e+183
-1.2909166e+183
-1.2913965e+183
-1.2709261e+183
-1.2733937e+183
-1.2738484e+183
-1.2713444e+183
-1.2775575e+183
-1.2770804e+183
-1.2801377e+183
-1.2806081e+183
-1.2761334e+183
-1.2765914e+183
-1.279653e+183
-1.2791949e+183
-1.2717883e+183
-1.2743047e+183
-1.2747645e+183
-1.2722468e+183
-1.2947466e+183
-1.298145e+183
-1.2952326e+183
-1.2986417e+183
-1.297237e+183
-1.2976838e+183
-1.2943029e+183
-1.2938735e+183
-1.3008498e+183
-1.300395e+183
-1.3031723e+183
-1.3036531e+183
-1.3018379e+183
-1.3013259e+183
-1.3041528e+183
-1.3046674e+183
-1.2924596e+183
-1.2919609e+183
-1.2953212e+183
-1.295831e+183
-1.3012992e+183
-1.2984995e+183
-1.2990163e+183
-1.3018139e+183
-1.2963507e+183
-1.2968274e+183
-1.302301e+183
-1.2995185e+183
-1.2999693e+183
-1.302735e+183
-1.292965e+183
-1.2934614e+183
-1.2587664e+183
-1.2583878e+183
-1.2607953e+183
-1.2611528e+183
-1.253844e+183
-1.2561284e+183
-1.2565179e+183
-1.2542147e+183
-1.2653797e+183
-1.2630204e+183
-1.263378e+183
-1.2657683e+183
-1.2681604e+183
-1.2677609e+183
-1.2707305e+183
-1.2703146e+183
-1.3055609e+183
-1.3050493e+183
-1.3088333e+183
-1.3093592e+183
-1.3113339e+183
-1.3108179e+183
-1.3060269e+183
-1.3064919e+183
-1.30983e+183
-1.3103178e+183
-1.3118321e+183
-1.3123177e+183
-1.307448e+183
-1.3113068e+183
-1.3069568e+183
-1.3107935e+183
-1.3133131e+183
-1.3128129e+183
-1.3079557e+183
-1.3084699e+183
-1.3118013e+183
-1.3123114e+183
-1.3138158e+183
-1.3143122e+183
-1.3025277e+183
-1.3020166e+183
-1.3057012e+183
-1.3062472e+183
-1.3081724e+183
-1.3076297e+183
-1.3009769e+183
-1.3015079e+183
-1.304615e+183
-1.3051768e+183
-1.307078e+183
-1.3065159e+183
-1.3035211e+183
-1.3030233e+183
-1.3067586e+183
-1.30729e+183
-1.3087127e+183
-1.3092448e+183
-1.3045387e+183
-1.3040152e+183
-1.3083248e+183
-1.3077907e+183
-1.309769e+183
-1.3102906e+183
-1.3134871e+183
-1.3149403e+183
-1.3139792e+183
-1.3154431e+183
-1.3124528e+183
-1.3138935e+183
-1.3129791e+183
-1.3144259e+183
-1.3149811e+183
-1.3164496e+183
-1.3144801e+183
-1.3159443e+183
-1.3154828e+183
-1.316945e+183
-1.3159746e+183
-1.3174374e+183
-1.3055222e+183
-1.3122709e+183
-1.3127988e+183
-1.3059976e+183
-1.3064983e+183
-1.3133462e+183
-1.3138556e+183
-1.3070022e+183
-1.3152751e+183
-1.3160078e+183
-1.3147425e+183
-1.3154667e+183
-1.3157984e+183
-1.3152504e+183
-1.3163053e+183
-1.3170563e+183
-1.3157967e+183
-1.3165446e+183
-1.3168574e+183
-1.3163461e+183
-1.3168113e+183
-1.3175674e+183
-1.3173135e+183
-1.3180747e+183
-1.3173702e+183
-1.3178779e+183
-1.307498e+183
-1.3143571e+183
-1.3148471e+183
-1.3079481e+183
-1.3183628e+183
-1.318575e+183
-1.3178142e+183
-1.3183016e+183
-1.3190412e+183
-1.3188155e+183
-1.3157582e+183
-1.3153314e+183
-1.3084361e+183
-1.3088234e+183
-1.3092183e+183
-1.3106108e+183
-1.3097724e+183
-1.3111771e+183
-1.30808e+183
-1.3094496e+183
-1.3086568e+183
-1.3100372e+183
-1.3103233e+183
-1.3117395e+183
-1.3108714e+183
-1.3122946e+183
-1.3114018e+183
-1.3128296e+183
-1.3119236e+183
-1.313359e+183
-1.3013115e+183
-1.3078232e+183
-1.3084135e+183
-1.3018699e+183
-1.3023686e+183
-1.3090061e+183
-1.3095703e+183
-1.3028942e+183
-1.3108464e+183
-1.3115297e+183
-1.3102554e+183
-1.3109269e+183
-1.3113121e+183
-1.3107007e+183
-1.3120041e+183
-1.3127098e+183
-1.3114299e+183
-1.3121299e+183
-1.3125013e+183
-1.3119209e+183
-1.3034071e+183
-1.3101405e+183
-1.3107064e+183
-1.3039465e+183
-1.3044583e+183
-1.3112536e+183
-1.3117611e+183
-1.3049973e+183
-1.3131287e+183
-1.3138557e+183
-1.3125732e+183
-1.3132892e+183
-1.3136619e+183
-1.3130865e+183
-1.3142049e+183
-1.3149307e+183
-1.3136721e+183
-1.314405e+183
-1.3147248e+183
-1.3142112e+183
-1.2260566e+183
-1.2345e+183
-1.238657e+183
-1.2300422e+183
-1.246039e+183
-1.2505945e+183
-1.252663e+183
-1.2481127e+183
-1.2417947e+183
-1.2463346e+183
-1.2485774e+183
-1.2439828e+183
-1.2602939e+183
-1.2551504e+183
-1.2572532e+183
-1.2624366e+183
-1.2531555e+183
-1.2335163e+183
-1.2421881e+183
-1.2457215e+183
-1.2368382e+183
-1.2519254e+183
-1.2499302e+183
-1.2544911e+183
-1.2564946e+183
-1.2536819e+183
-1.2554129e+183
-1.2600018e+183
-1.2582545e+183
-1.2646908e+183
-1.2628742e+183
-1.2680921e+183
-1.2699607e+183
-1.2610994e+183
-1.2590968e+183
-1.2642907e+183
-1.2662826e+183
-1.2749229e+183
-1.2778275e+183
-1.2787164e+183
-1.2758396e+183
-1.2759435e+183
-1.2768945e+183
-1.2739949e+183
-1.2730481e+183
-1.280868e+183
-1.2826953e+183
-1.2691263e+183
-1.2701439e+183
-1.2730464e+183
-1.2720184e+183
-1.276996e+183
-1.2790171e+183
-1.2711398e+183
-1.2740625e+183
-1.2750649e+183
-1.2721734e+183
-1.2879066e+183
-1.2853394e+183
-1.288863e+183
-1.2862909e+183
-1.2916699e+183
-1.2889601e+183
-1.2899021e+183
-1.2925959e+183
-1.294607e+183
-1.2936793e+183
-1.2871882e+183
-1.2880756e+183
-1.2906271e+183
-1.2897595e+183
-1.2907908e+183
-1.291671e+183
-1.2954757e+183
-1.2934737e+183
-1.294328e+183
-1.2962972e+183
-1.2971575e+183
-1.2396476e+183
-1.2409532e+183
-1.2439274e+183
-1.2453077e+183
-1.2495183e+183
-1.2480863e+183
-1.2526022e+183
-1.2540978e+183
-1.2521773e+183
-1.2508529e+183
-1.2567627e+183
-1.2554407e+183
-1.2421928e+183
-1.2465872e+183
-1.247908e+183
-1.2434875e+183
-1.2611638e+183
-1.2639912e+183
-1.2647975e+183
-1.2620002e+183
-1.2578876e+183
-1.2602279e+183
-1.2609901e+183
-1.2586614e+183
-1.2562953e+183
-1.259453e+183
-1.2586025e+183
-1.2571175e+183
-1.2627654e+183
-1.265575e+183
-1.2663669e+183
-1.2635254e+183
-1.2679008e+183
-1.2703932e+183
-1.2711975e+183
-1.2687113e+183
-1.2687973e+183
-1.2663174e+183
-1.2695968e+183
-1.2671073e+183
-1.2721177e+183
-1.2713249e+183
-1.2748023e+183
-1.2740248e+183
-1.2729002e+183
-1.2737155e+183
-1.2763932e+183
-1.2755854e+183
-1.2732806e+183
-1.2707607e+183
-1.271446e+183
-1.2739527e+183
-1.2725959e+183
-1.2718864e+183
-1.2693913e+183
-1.270081e+183
-1.2785039e+183
-1.2757943e+183
-1.2764965e+183
-1.2792189e+183
-1.2743912e+183
-1.2770634e+183
-1.2778027e+183
-1.2751112e+183
-1.2592879e+183
-1.2616196e+183
-1.2623054e+183
-1.2599531e+183
-1.2605717e+183
-1.2629325e+183
-1.2635761e+183
-1.2612183e+183
-1.2655083e+183
-1.2661609e+183
-1.2690482e+183
-1.2683769e+183
-1.2670296e+183
-1.2641746e+183
-1.2648531e+183
-1.2677021e+183
-1.2808106e+183
-1.2815972e+183
-1.2845784e+183
-1.2837831e+183
-1.2863517e+183
-1.2871522e+183
-1.2823698e+183
-1.2792365e+183
-1.2800148e+183
-1.2831406e+183
-1.2776768e+183
-1.2784562e+183
-1.2861022e+183
-1.2853416e+183
-1.2886965e+183
-1.2879209e+183
-1.2807237e+183
-1.283861e+183
-1.284577e+183
-1.2814435e+183
-1.2828542e+183
-1.2860116e+183
-1.2852815e+183
-1.2821406e+183
-1.2889972e+183
-1.2882614e+183
-1.2908722e+183
-1.291611e+183
-1.2875557e+183
-1.2868362e+183
-1.2901601e+183
-1.2894293e+183
-1.2464199e+183
-1.2508915e+183
-1.2518117e+183
-1.2473005e+183
-1.2445054e+183
-1.2489181e+183
-1.2499678e+183
-1.2455139e+183
-1.2542464e+183
-1.253201e+183
-1.2578401e+183
-1.2589334e+183
-1.2552267e+183
-1.2561797e+183
-1.2609684e+183
-1.2599607e+183
-1.2655163e+183
-1.2679705e+183
-1.2674924e+183
-1.2650372e+183
-1.2640219e+183
-1.2670061e+183
-1.2664465e+183
-1.264558e+183
-1.2696506e+183
-1.2691016e+183
-1.2720228e+183
-1.2725824e+183
-1.2701666e+183
-1.2731285e+183
-1.2736546e+183
-1.2706665e+183
-1.2617764e+183
-1.2623652e+183
-1.2647701e+183
-1.2641452e+183
-1.2667526e+183
-1.2696551e+183
-1.2702931e+183
-1.2673904e+183
-1.2708947e+183
-1.2679943e+183
-1.2685869e+183
-1.2714847e+183
-1.2629231e+183
-1.265347e+183
-1.2659285e+183
-1.2635069e+183
-1.2757996e+183
-1.2732648e+183
-1.273859e+183
-1.2763935e+183
-1.2720511e+183
-1.2745659e+183
-1.2752198e+183
-1.2726856e+183
-1.2810951e+183
-1.2783563e+183
-1.2789836e+183
-1.2817446e+183
-1.2771211e+183
-1.2798493e+183
-1.2804947e+183
-1.2777693e+183
-1.2744267e+183
-1.2769717e+183
-1.2776014e+183
-1.2750132e+183
-1.2781734e+183
-1.2755727e+183
-1.276107e+183
-1.2786955e+183
-1.2835764e+183
-1.2807853e+183
-1.284143e+183
-1.2813348e+183
-1.2795675e+183
-1.2823392e+183
-1.282979e+183
-1.2802021e+183
-1.2867138e+183
-1.2873709e+183
-1.2903675e+183
-1.2897043e+183
-1.2922993e+183
-1.292977e+183
-1.2848256e+183
-1.2880014e+183
-1.2886639e+183
-1.2854672e+183
-1.2835405e+183
-1.2842014e+183
-1.2916974e+183
-1.2910193e+183
-1.29365e+183
-1.2943263e+183
-1.2893013e+183
-1.2860989e+183
-1.2867293e+183
-1.289923e+183
-1.2878759e+183
-1.2873193e+183
-1.2905205e+183
-1.2910893e+183
-1.2941373e+183
-1.2935499e+183
-1.2962249e+183
-1.2968166e+183
-1.2929506e+183
-1.2923361e+183
-1.2949648e+183
-1.2956137e+183
-1.2914515e+183
-1.2950021e+183
-1.2922327e+183
-1.2957904e+183
-1.2968554e+183
-1.297622e+183
-1.2942526e+183
-1.2906794e+183
-1.2898719e+183
-1.2934193e+183
-1.2960738e+183
-1.2952821e+183
-1.2929697e+183
-1.2937045e+183
-1.2965193e+183
-1.2972852e+183
-1.2983832e+183
-1.2991309e+183
-1.2951569e+183
-1.2944214e+183
-1.2987367e+183
-1.2979945e+183
-1.2998633e+183
-1.300587e+183
-1.2998373e+183
-1.3004343e+183
-1.3034544e+183
-1.3040608e+183
-1.305935e+183
-1.3053379e+183
-1.2985615e+183
-1.2992178e+183
-1.3028458e+183
-1.3021753e+183
-1.3047127e+183
-1.3040622e+183
-1.2958497e+183
-1.2965472e+183
-1.299429e+183
-1.3001518e+183
-1.3013082e+183
-1.3020175e+183
-1.2979098e+183
-1.2972302e+183
-1.300828e+183
-1.3015248e+183
-1.3027135e+183
-1.303392e+183
-1.2983853e+183
-1.2997176e+183
-1.2991518e+183
-1.3004898e+183
-1.2968088e+183
-1.2981427e+183
-1.2975932e+183
-1.2989363e+183
-1.2999167e+183
-1.3012532e+183
-1.3006696e+183
-1.3020108e+183
-1.3014054e+183
-1.3027438e+183
-1.3021278e+183
-1.3034735e+183
-1.2989327e+183
-1.2996037e+183
-1.2997236e+183
-1.3003963e+183
-1.3002126e+183
-1.2994174e+183
-1.2974735e+183
-1.2967205e+183
-1.2905651e+183
-1.2912314e+183
-1.2989716e+183
-1.2982359e+183
-1.2919464e+183
-1.2926215e+183
-1.3012771e+183
-1.3019451e+183
-1.3005057e+183
-1.3011791e+183
-1.3017521e+183
-1.3009904e+183
-1.3004583e+183
-1.2997177e+183
-1.2933268e+183
-1.2940374e+183
-1.3018941e+183
-1.3011919e+183
-1.2947538e+183
-1.2954367e+183
-1.3027967e+183
-1.3034666e+183
-1.3020433e+183
-1.3027102e+183
-1.3032725e+183
-1.3025111e+183
-1.3042632e+183
-1.3049244e+183
-1.3035353e+183
-1.3042046e+183
-1.3047161e+183
-1.3040042e+183
-1.3028515e+183
-1.3041985e+183
-1.3035671e+183
-1.3049189e+183
-1.3042659e+183
-1.3056167e+183
-1.3049445e+183
-1.3063016e+183
-1.305616e+183
-1.3069714e+183
-1.3062682e+183
-1.3076261e+183
-1.3068957e+183
-1.3082489e+183
-1.3074956e+183
-1.3088535e+183
-1.3057099e+183
-1.3063796e+183
-1.3049903e+183
-1.3056517e+183
-1.3054367e+183
-1.3061761e+183
-1.3033248e+183
-1.3026033e+183
-1.2961335e+183
-1.2968309e+183
-1.2975314e+183
-1.3040518e+183
-1.3047371e+183
-1.2982133e+183
-1.3070995e+183
-1.3077789e+183
-1.3064141e+183
-1.3070937e+183
-1.3075819e+183
-1.3068975e+183
-1.2988854e+183
-1.3054126e+183
-1.3060602e+183
-1.2995595e+183
-1.300196e+183
-1.3066789e+183
-1.3072484e+183
-1.3007818e+183
-1.3084229e+183
-1.3091035e+183
-1.3077729e+183
-1.3084528e+183
-1.3089041e+183
-1.3082523e+183
-1.3096553e+183
-1.3103239e+183
-1.3090498e+183
-1.3097278e+183
-1.3101058e+183
-1.309523e+183
-1.1036152e+183
-1.1058327e+183
-1.1078314e+183
-1.1055315e+183
-1.0694804e+183
-1.0716099e+183
-1.0677853e+183
-1.069876e+183
-1.1013787e+183
-1.1021494e+183
-1.1041073e+183
-1.1035659e+183
-1.2895285e+183
-1.2837745e+183
-1.2831248e+183
-1.28885e+183
-1.2908596e+183
-1.2850851e+183
-1.2844247e+183
-1.2901944e+183
-1.2921909e+183
-1.2863652e+183
-1.2857372e+183
-1.2915341e+183
-1.2933285e+183
-1.2874841e+183
-1.2869515e+183
-1.2927956e+183
-1.2841761e+183
-1.2786225e+183
-1.2780628e+183
-1.2835664e+183
-1.2854521e+183
-1.279841e+183
-1.2792233e+183
-1.2848153e+183
-1.2868067e+183
-1.281131e+183
-1.2804815e+183
-1.2861238e+183
-1.2881569e+183
-1.2824665e+183
-1.2817947e+183
-1.2874817e+183
-1.2962245e+183
-1.2901524e+183
-1.2896976e+183
-1.2957291e+183
-1.2971954e+183
-1.291085e+183
-1.2906095e+183
-1.2967032e+183
-1.2943144e+183
-1.2883778e+183
-1.2879334e+183
-1.2938189e+183
-1.2952441e+183
-1.2892528e+183
-1.2888125e+183
-1.2947788e+183
-1.3000918e+183
-1.2938749e+183
-1.2934082e+183
-1.2996209e+183
-1.294242e+183
-1.3004835e+183
-1.2982093e+183
-1.292047e+183
-1.2915634e+183
-1.2977134e+183
-1.2991241e+183
-1.2929266e+183
-1.2924588e+183
-1.298646e+183
-1.2193397e+183
-1.221338e+183
-1.2216023e+183
-1.2195914e+183
-1.220124e+183
-1.2198552e+183
-1.2218767e+183
-1.2221534e+183
-1.2258146e+183
-1.2234e+183
-1.2255304e+183
-1.2236716e+183
-1.2242395e+183
-1.2263888e+183
-1.223955e+183
-1.2261005e+183
-1.2206355e+183
-1.218431e+183
-1.2204205e+183
-1.2186388e+183
-1.2224634e+183
-1.2245663e+183
-1.2247693e+183
-1.2226716e+183
-1.2210843e+183
-1.2188584e+183
-1.2208537e+183
-1.2190801e+183
-1.2229031e+183
-1.2250133e+183
-1.2231384e+183
-1.2252578e+183
-1.2277355e+183
-1.2300025e+183
-1.2302857e+183
-1.2280211e+183
-1.2347485e+183
-1.2326312e+183
-1.2323446e+183
-1.235039e+183
-1.2283167e+183
-1.2286112e+183
-1.2305932e+183
-1.2308943e+183
-1.2353516e+183
-1.2332447e+183
-1.2356517e+183
-1.2329411e+183
-1.229205e+183
-1.2267456e+183
-1.2289897e+183
-1.2269548e+183
-1.2336896e+183
-1.2313085e+183
-1.2315303e+183
-1.2339168e+183
-1.2274559e+183
-1.2297188e+183
-1.227202e+183
-1.2294569e+183
-1.2341797e+183
-1.2317864e+183
-1.2320557e+183
-1.2344552e+183
-1.2289045e+183
-1.2227056e+183
-1.2204017e+183
-1.2224363e+183
-1.2206641e+183
-1.2245235e+183
-1.226674e+183
-1.2247856e+183
-1.220925e+183
-1.2229608e+183
-1.2250499e+183
-1.2118889e+183
-1.2121072e+183
-1.2136722e+183
-1.213893e+183
-1.215728e+183
-1.217387e+183
-1.2176267e+183
-1.2155002e+183
-1.2123355e+183
-1.2125698e+183
-1.2143685e+183
-1.2141267e+183
-1.2159703e+183
-1.2162216e+183
-1.2178795e+183
-1.2181397e+183
-1.2130249e+183
-1.2110435e+183
-1.2128045e+183
-1.2112595e+183
-1.2146165e+183
-1.216489e+183
-1.2166924e+183
-1.2148226e+183
-1.2134552e+183
-1.2114716e+183
-1.2132367e+183
-1.2116804e+183
-1.2150423e+183
-1.2169131e+183
-1.2152571e+183
-1.2171261e+183
-1.2057929e+183
-1.2074359e+183
-1.2076497e+183
-1.2060069e+183
-1.2093555e+183
-1.209566e+183
-1.2078543e+183
-1.2097759e+183
-1.2099797e+183
-1.2080514e+183
-1.2062033e+183
-1.2063939e+183
-1.2011317e+183
-1.1996876e+183
-1.1998811e+183
-1.2013273e+183
-1.2027996e+183
-1.2025963e+183
-1.2040958e+183
-1.2043065e+183
-1.2015361e+183
-1.2000858e+183
-1.2002466e+183
-1.2016983e+183
-1.2031759e+183
-1.2030078e+183
-1.2045095e+183
-1.2046876e+183
-1.198203e+183
-1.196711e+183
-1.196908e+183
-1.1983941e+183
-1.1972418e+183
-1.1971038e+183
-1.1985906e+183
-1.198748e+183
-1.2065561e+183
-1.2082349e+183
-1.2084302e+183
-1.206739e+183
-1.2101795e+183
-1.2103878e+183
-1.2086178e+183
-1.2106058e+183
-1.2108321e+183
-1.2088247e+183
-1.2069114e+183
-1.2071098e+183
-1.2020992e+183
-1.2005888e+183
-1.200746e+183
-1.2022572e+183
-1.2037882e+183
-1.2036265e+183
-1.2051775e+183
-1.2053578e+183
-1.2018432e+183
-1.2003878e+183
-1.2004819e+183
-1.2019661e+183
-1.2034724e+183
-1.2033219e+183
-1.2048402e+183
-1.2050108e+183
-1.1988744e+183
-1.1973399e+183
-1.1974137e+183
-1.1989538e+183
-1.1976411e+183
-1.1975143e+183
-1.1990512e+183
-1.199194e+183
-1.1951946e+183
-1.1936857e+183
-1.1939017e+183
-1.1953974e+183
-1.1921615e+183
-1.1906497e+183
-1.190884e+183
-1.1923839e+183
-1.1912347e+183
-1.191094e+183
-1.1925797e+183
-1.1927096e+183
-1.1955905e+183
-1.1940882e+183
-1.1942094e+183
-1.1957164e+183
-1.1959509e+183
-1.1944202e+183
-1.1945271e+183
-1.1960687e+183
-1.191367e+183
-1.1913019e+183
-1.192766e+183
-1.1928326e+183
-1.1957916e+183
-1.1942687e+183
-1.1943367e+183
-1.1958603e+183
-1.1914954e+183
-1.1914375e+183
-1.1929085e+183
-1.1929966e+183
-1.2149363e+183
-1.2128865e+183
-1.2146603e+183
-1.2131594e+183
-1.2165055e+183
-1.2184182e+183
-1.2186763e+183
-1.2167693e+183
-1.2154502e+183
-1.2134308e+183
-1.2152008e+183
-1.2136698e+183
-1.2170353e+183
-1.2189431e+183
-1.2073897e+183
-1.2094479e+183
-1.2097254e+183
-1.2076531e+183
-1.2112375e+183
-1.2115049e+183
-1.2100107e+183
-1.2117795e+183
-1.212011e+183
-1.2102286e+183
-1.2079265e+183
-1.2081395e+183
-1.2055608e+183
-1.202461e+183
-1.203983e+183
-1.2009553e+183
-1.2011468e+183
-1.2026697e+183
-1.2042097e+183
-1.2057998e+183
-1.1983211e+183
-1.1981761e+183
-1.1997611e+183
-1.199928e+183
-1.1994053e+183
-1.1978346e+183
-1.1980063e+183
-1.1995843e+183
-1.2028899e+183
-1.2013382e+183
-1.2015152e+183
-1.2030718e+183
-1.2046378e+183
-1.2044479e+183
-1.2060503e+183
-1.2062533e+183
-1.2032408e+183
-1.2016943e+183
-1.201844e+183
-1.2034006e+183
-1.2001006e+183
-1.1984758e+183
-1.1986368e+183
-1.2002517e+183
-1.1924765e+183
-1.1923247e+183
-1.1939344e+183
-1.1941099e+183
-1.192161e+183
-1.1920105e+183
-1.1935872e+183
-1.1937514e+183
-1.1968316e+183
-1.1951986e+183
-1.1953698e+183
-1.1969973e+183
-1.1918776e+183
-1.1917674e+183
-1.1933521e+183
-1.1934708e+183
-1.1931462e+183
-1.1916039e+183
-1.1916738e+183
-1.1932464e+183
-1.1962489e+183
-1.1946889e+183
-1.1948266e+183
-1.1964114e+183
-1.1965651e+183
-1.1949561e+183
-1.1950772e+183
-1.1966945e+183
-1.2198217e+183
-1.2176895e+183
-1.2196689e+183
-1.2178356e+183
-1.2182108e+183
-1.2180142e+183
-1.2200028e+183
-1.2202005e+183
-1.2217084e+183
-1.22381e+183
-1.2218579e+183
-1.2239586e+183
-1.2222454e+183
-1.2241497e+183
-1.2243509e+183
-1.2220456e+183
-1.2172371e+183
-1.2192032e+183
-1.2173411e+183
-1.2193086e+183
-1.2213336e+183
-1.2234279e+183
-1.2212297e+183
-1.2233171e+183
-1.2195394e+183
-1.2174491e+183
-1.2194297e+183
-1.2175529e+183
-1.2214625e+183
-1.2235574e+183
-1.2236789e+183
-1.2215757e+183
-1.2254744e+183
-1.2276893e+183
-1.2278135e+183
-1.2255921e+183
-1.2299671e+183
-1.2322948e+183
-1.2324321e+183
-1.2300969e+183
-1.2257196e+183
-1.2258396e+183
-1.227939e+183
-1.2280542e+183
-1.2302267e+183
-1.2303497e+183
-1.2325701e+183
-1.2327042e+183
-1.2283743e+183
-1.2259804e+183
-1.2282092e+183
-1.2261348e+183
-1.2328696e+183
-1.2305096e+183
-1.2306807e+183
-1.2330453e+183
-1.2287713e+183
-1.2263264e+183
-1.2285671e+183
-1.2265291e+183
-1.2332519e+183
-1.2308795e+183
-1.2310862e+183
-1.2334626e+183
-1.2102626e+183
-1.2104421e+183
-1.212036e+183
-1.2122005e+183
-1.2140137e+183
-1.2157483e+183
-1.2158926e+183
-1.2138634e+183
-1.2106344e+183
-1.2108331e+183
-1.2125842e+183
-1.2123871e+183
-1.2141946e+183
-1.2143914e+183
-1.2160707e+183
-1.2162671e+183
-1.2049976e+183
-1.2066489e+183
-1.2068446e+183
-1.2052032e+183
-1.2085709e+183
-1.2087545e+183
-1.2070367e+183
-1.2089503e+183
-1.2091515e+183
-1.2072394e+183
-1.2054015e+183
-1.2056056e+183
-1.2007429e+183
-1.1992909e+183
-1.1995015e+183
-1.200943e+183
-1.2024105e+183
-1.2022128e+183
-1.2037108e+183
-1.2039106e+183
-1.2002872e+183
-1.1988251e+183
-1.1990487e+183
-1.2005046e+183
-1.2019853e+183
-1.2017709e+183
-1.2032862e+183
-1.203498e+183
-1.1973251e+183
-1.1958025e+183
-1.1960406e+183
-1.1975504e+183
-1.1965192e+183
-1.1962911e+183
-1.1977908e+183
-1.1980141e+183
-1.2044558e+183
-1.206174e+183
-1.2062469e+183
-1.2045566e+183
-1.2081449e+183
-1.2082018e+183
-1.2063505e+183
-1.2082904e+183
-1.2084141e+183
-1.2064888e+183
-1.204678e+183
-1.2048327e+183
-1.1999008e+183
-1.1984036e+183
-1.1986188e+183
-1.2000919e+183
-1.2015915e+183
-1.201416e+183
-1.2029543e+183
-1.2031175e+183
-1.1995299e+183
-1.1979978e+183
-1.1981787e+183
-1.199692e+183
-1.2012338e+183
-1.2010851e+183
-1.2026747e+183
-1.2028027e+183
-1.1964331e+183
-1.1948648e+183
-1.1950726e+183
-1.1966258e+183
-1.1955656e+183
-1.1953214e+183
-1.196861e+183
-1.1970993e+183
-1.211701e+183
-1.2098547e+183
-1.2116362e+183
-1.2099082e+183
-1.2134503e+183
-1.2153158e+183
-1.2154074e+183
-1.2135265e+183
-1.2118938e+183
-1.2099896e+183
-1.2117847e+183
-1.2101054e+183
-1.2136207e+183
-1.2155074e+183
-1.2137214e+183
-1.2156077e+183
-1.1932852e+183
-1.1917221e+183
-1.1919451e+183
-1.1935005e+183
-1.1901554e+183
-1.1886119e+183
-1.1888278e+183
-1.1903746e+183
-1.1892856e+183
-1.1890542e+183
-1.1906119e+183
-1.1908571e+183
-1.1937529e+183
-1.1921861e+183
-1.1924331e+183
-1.1939995e+183
-1.1942424e+183
-1.192684e+183
-1.1929459e+183
-1.1944887e+183
-1.1898052e+183
-1.1895325e+183
-1.1911037e+183
-1.1913775e+183
-1.1903914e+183
-1.1900972e+183
-1.1916516e+183
-1.1919268e+183
-1.1947529e+183
-1.1932124e+183
-1.1934677e+183
-1.1949928e+183
-1.1789473e+183
-1.1785644e+183
-1.1798496e+183
-1.1802293e+183
-1.1782028e+183
-1.1778862e+183
-1.1791846e+183
-1.1794929e+183
-1.1819167e+183
-1.1805303e+183
-1.1808296e+183
-1.182205e+183
-1.1825509e+183
-1.1811819e+183
-1.1815472e+183
-1.1829062e+183
-1.1776504e+183
-1.17744e+183
-1.1787716e+183
-1.1789753e+183
-1.178421e+183
-1.1770932e+183
-1.1772667e+183
-1.1786026e+183
-1.1811391e+183
-1.1797647e+183
-1.1799634e+183
-1.1813455e+183
-1.1815292e+183
-1.1801406e+183
-1.1803296e+183
-1.1817151e+183
-1.1870628e+183
-1.1855338e+183
-1.1857435e+183
-1.1872731e+183
-1.1840253e+183
-1.1825651e+183
-1.1827755e+183
-1.1842362e+183
-1.1831526e+183
-1.1829633e+183
-1.1844274e+183
-1.1846248e+183
-1.187487e+183
-1.1859442e+183
-1.1861501e+183
-1.1877058e+183
-1.1843273e+183
-1.1839809e+183
-1.1854497e+183
-1.1857865e+183
-1.184843e+183
-1.1833627e+183
-1.1836469e+183
-1.1851273e+183
-1.1879446e+183
-1.1863792e+183
-1.186662e+183
-1.1882219e+183
-1.1885264e+183
-1.1869766e+183
-1.1873011e+183
-1.1888385e+183
-1.180186e+183
-1.1799178e+183
-1.1811918e+183
-1.1814718e+183
-1.1796128e+183
-1.1792806e+183
-1.1805449e+183
-1.1808785e+183
-1.1832197e+183
-1.1818586e+183
-1.1821946e+183
-1.1835446e+183
-1.1838558e+183
-1.1825124e+183
-1.1827879e+183
-1.1841205e+183
-1.1891188e+183
-1.1875985e+183
-1.1878716e+183
-1.1893681e+183
-1.1860923e+183
-1.184639e+183
-1.1849523e+183
-1.186389e+183
-1.1854893e+183
-1.1852446e+183
-1.1866575e+183
-1.1868767e+183
-1.189595e+183
-1.1881182e+183
-1.1883067e+183
-1.1897566e+183
-1.189836e+183
-1.1884091e+183
-1.1884846e+183
-1.1899038e+183
-1.1870036e+183
-1.1856435e+183
-1.1857361e+183
-1.1870811e+183
-1.1899632e+183
-1.1885353e+183
-1.1885269e+183
-1.1899882e+183
-1.1856927e+183
-1.1857632e+183
-1.1871179e+183
-1.1870872e+183
-1.1842898e+183
-1.1829748e+183
-1.1830793e+183
-1.184387e+183
-1.1804935e+183
-1.1803769e+183
-1.1816584e+183
-1.1817721e+183
-1.1804125e+183
-1.1805101e+183
-1.1817787e+183
-1.1816898e+183
-1.1844114e+183
-1.183089e+183
-1.1829934e+183
-1.1843242e+183
-1.1842387e+183
-1.1828996e+183
-1.1827941e+183
-1.1841541e+183
-1.1815881e+183
-1.1803136e+183
-1.1801894e+183
-1.1814661e+183
-1.1801529e+183
-1.1801258e+183
-1.1814042e+183
-1.1814421e+183
-1.1841311e+183
-1.1827415e+183
-1.1827898e+183
-1.1841886e+183
-1.1804872e+183
-1.1804491e+183
-1.1817707e+183
-1.1818258e+183
-1.1803732e+183
-1.1802597e+183
-1.1815563e+183
-1.1816866e+183
-1.1843159e+183
-1.1829121e+183
-1.1830497e+183
-1.1844558e+183
-1.1845674e+183
-1.1831496e+183
-1.1832118e+183
-1.1846421e+183
-1.1856493e+183
-1.1855781e+183
-1.1870639e+183
-1.1871491e+183
-1.187059e+183
-1.1856248e+183
-1.1855719e+183
-1.1870341e+183
-1.1900593e+183
-1.1885432e+183
-1.1885515e+183
-1.1900997e+183
-1.1901746e+183
-1.1886052e+183
-1.1887e+183
-1.1902788e+183
-1.1904188e+183
-1.1888395e+183
-1.1889808e+183
-1.1905602e+183
-1.1872815e+183
-1.1857794e+183
-1.1859209e+183
-1.1874238e+183
-1.1861305e+183
-1.1860408e+183
-1.1875492e+183
-1.1876548e+183
-1.1907068e+183
-1.1891156e+183
-1.1892325e+183
-1.19084e+183
-1.1805136e+183
-1.1176539e+183
-1.1320604e+183
-1.118801e+183
-1.1177347e+183
-1.1323369e+183
-1.1333432e+183
-1.095978e+183
-1.0958275e+183
-1.1343099e+183
-1.1196174e+183
-1.120032e+183
-1.1349983e+183
-1.1364305e+183
-1.1213223e+183
-1.1234856e+183
-1.1381378e+183
-1.0969599e+183
-1.0994068e+183
-1.0949338e+183
-1.0973611e+183
-1.0939739e+183
-1.0938318e+183
-1.0948058e+183
-1.0971522e+183
-1.0974547e+183
-1.0950373e+183
-1.093567e+183
-1.0936619e+183
-1.0939185e+183
-1.093945e+183
-1.1707893e+183
-1.170502e+183
-1.1716236e+183
-1.1719431e+183
-1.1701566e+183
-1.1698034e+183
-1.1708998e+183
-1.1712628e+183
-1.1732398e+183
-1.1720215e+183
-1.172394e+183
-1.1736211e+183
-1.1739849e+183
-1.1727574e+183
-1.1730934e+183
-1.1743282e+183
-1.1695004e+183
-1.1690607e+183
-1.1701742e+183
-1.1705948e+183
-1.1686251e+183
-1.1682343e+183
-1.1693809e+183
-1.1697583e+183
-1.1717588e+183
-1.1705278e+183
-1.1709e+183
-1.1721284e+183
-1.1725113e+183
-1.1712976e+183
-1.1717075e+183
-1.1729133e+183
-1.1770467e+183
-1.1756429e+183
-1.1760555e+183
-1.1774864e+183
-1.1743255e+183
-1.1730018e+183
-1.1733791e+183
-1.1747216e+183
-1.1741597e+183
-1.1737558e+183
-1.1750973e+183
-1.1755064e+183
-1.1778893e+183
-1.1764422e+183
-1.1768616e+183
-1.1783238e+183
-1.1755871e+183
-1.1752423e+183
-1.1766003e+183
-1.1769426e+183
-1.1758552e+183
-1.1744978e+183
-1.1748834e+183
-1.1762472e+183
-1.1786962e+183
-1.1772215e+183
-1.1776147e+183
-1.1790955e+183
-1.1794428e+183
-1.1779654e+183
-1.178302e+183
-1.1797741e+183
-1.1726955e+183
-1.1723324e+183
-1.1735906e+183
-1.1739828e+183
-1.1672427e+183
-1.1668369e+183
-1.1680347e+183
-1.1684295e+183
-1.1679563e+183
-1.167599e+183
-1.1687746e+183
-1.1691112e+183
-1.1711311e+183
-1.1699284e+183
-1.1702594e+183
-1.1714751e+183
-1.1890648e+183
-1.1875012e+183
-1.1880112e+183
-1.1895668e+183
-1.1860062e+183
-1.1844267e+183
-1.1849364e+183
-1.1865148e+183
-1.185932e+183
-1.1854191e+183
-1.1870052e+183
-1.1875277e+183
-1.1900695e+183
-1.1885053e+183
-1.1890291e+183
-1.190593e+183
-1.1829232e+183
-1.1813587e+183
-1.181867e+183
-1.1834295e+183
-1.1799011e+183
-1.1784202e+183
-1.1788911e+183
-1.1803998e+183
-1.1797685e+183
-1.179318e+183
-1.1808436e+183
-1.18131e+183
-1.1839012e+183
-1.1823252e+183
-1.1828061e+183
-1.1844001e+183
-1.1910093e+183
-1.1894495e+183
-1.1898898e+183
-1.1914582e+183
-1.1879558e+183
-1.1863566e+183
-1.1867749e+183
-1.1883774e+183
-1.1875018e+183
-1.1871396e+183
-1.1887564e+183
-1.1891446e+183
-1.1918836e+183
-1.1902886e+183
-1.1907009e+183
-1.1923249e+183
-1.1848151e+183
-1.183211e+183
-1.1836286e+183
-1.1852356e+183
-1.1805547e+183
-1.1801511e+183
-1.181704e+183
-1.1821173e+183
-1.181229e+183
-1.1809021e+183
-1.1824644e+183
-1.1827931e+183
-1.1855908e+183
-1.1839795e+183
-1.1843138e+183
-1.1859384e+183
-1.1597455e+183
-1.1592906e+183
-1.1602037e+183
-1.1606507e+183
-1.1589054e+183
-1.1585405e+183
-1.1594338e+183
-1.1598161e+183
-1.1613027e+183
-1.1603535e+183
-1.1607554e+183
-1.1617246e+183
-1.1621224e+183
-1.1611473e+183
-1.1616e+183
-1.1625732e+183
-1.1582751e+183
-1.1580563e+183
-1.1591316e+183
-1.163597e+183
-1.1631512e+183
-1.16422e+183
-1.164642e+183
-1.1633911e+183
-1.1623201e+183
-1.1627556e+183
-1.1638271e+183
-1.1656637e+183
-1.1645012e+183
-1.1649314e+183
-1.1660807e+183
-1.1664517e+183
-1.1653147e+183
-1.1657173e+183
-1.1668276e+183
-1.1491973e+183
-1.1452167e+183
-1.1453047e+183
-1.1492423e+183
-1.1520059e+183
-1.1518963e+183
-1.1534674e+183
-1.1536627e+183
-1.1564958e+183
-1.156297e+183
-1.1571587e+183
-1.157366e+183
-1.1547011e+183
-1.1545021e+183
-1.1554013e+183
-1.1555959e+183
-1.1539262e+183
-1.152291e+183
-1.1526816e+183
-1.1542396e+183
-1.1498664e+183
-1.1454966e+183
-1.1494764e+183
-1.1457395e+183
-1.1463268e+183
-1.1503556e+183
-1.1510055e+183
-1.1471495e+183
-1.1530823e+183
-1.1546564e+183
-1.1551081e+183
-1.1536208e+183
-1.1565651e+183
-1.1556698e+183
-1.1561217e+183
-1.1570191e+183
-1.1558049e+183
-1.1549139e+183
-1.1552418e+183
-1.1561463e+183
-1.1570628e+183
-1.156713e+183
-1.1576052e+183
-1.1579584e+183
-1.1579282e+183
-1.1574697e+183
-1.1583552e+183
-1.1588118e+183
-1.1513201e+183
-1.1551479e+183
-1.1558308e+183
-1.1522442e+183
-1.1497964e+183
-1.1536753e+183
-1.1544112e+183
-1.1506189e+183
-1.1562656e+183
-1.1577445e+183
-1.1583391e+183
-1.156862e+183
-1.1576362e+183
-1.158982e+183
-1.1593913e+183
-1.1582075e+183
-1.1482162e+183
-1.1522872e+183
-1.1530219e+183
-1.1490286e+183
-1.1475796e+183
-1.1514124e+183
-1.1518262e+183
-1.147739e+183
-1.1540413e+183
-1.1555727e+183
-1.1560522e+183
-1.1545046e+183
-1.1550009e+183
-1.156581e+183
-1.1571455e+183
-1.1556617e+183
-1.1588531e+183
-1.1583616e+183
-1.1592405e+183
-1.1597193e+183
-1.1570608e+183
-1.1565718e+183
-1.1574601e+183
-1.1579471e+183
-1.1581233e+183
-1.1575808e+183
-1.1584471e+183
-1.1589804e+183
-1.1598534e+183
-1.1593247e+183
-1.1601822e+183
-1.1607029e+183
-1.1601383e+183
-1.1597691e+183
-1.1605053e+183
-1.1608142e+183
-1.1592226e+183
-1.1586665e+183
-1.1594971e+183
-1.1600253e+183
-1.1608375e+183
-1.1603365e+183
-1.1611709e+183
-1.1616367e+183
-1.1615069e+183
-1.161246e+183
-1.1619987e+183
-1.1622002e+183
-1.1671232e+183
-1.1660383e+183
-1.1664652e+183
-1.1675237e+183
-1.1649941e+183
-1.1639796e+183
-1.1644357e+183
-1.1654305e+183
-1.1653897e+183
-1.164892e+183
-1.1658883e+183
-1.1663758e+183
-1.1679739e+183
-1.1669205e+183
-1.1673898e+183
-1.1684273e+183
-1.162977e+183
-1.1620115e+183
-1.1624925e+183
-1.1634386e+183
-1.1610611e+183
-1.1601573e+183
-1.1606401e+183
-1.1615415e+183
-1.1616167e+183
-1.1611018e+183
-1.1620022e+183
-1.1625088e+183
-1.1638946e+183
-1.1629466e+183
-1.1634481e+183
-1.1643938e+183
-1.1687378e+183
-1.1677193e+183
-1.1680578e+183
-1.1690807e+183
-1.1667367e+183
-1.1657694e+183
-1.1661143e+183
-1.1670649e+183
-1.166471e+183
-1.1663531e+183
-1.1673291e+183
-1.167494e+183
-1.1694083e+183
-1.1683499e+183
-1.1685509e+183
-1.1696602e+183
-1.1647911e+183
-1.1638583e+183
-1.1642414e+183
-1.1651552e+183
-1.1624927e+183
-1.1620578e+183
-1.1629392e+183
-1.1633437e+183
-1.1629635e+183
-1.1628039e+183
-1.1636231e+183
-1.1637432e+183
-1.1653949e+183
-1.1644898e+183
-1.1645886e+183
-1.1654943e+183
-1.1955303e+183
-1.1950238e+183
-1.1921018e+183
-1.1916026e+183
-1.1931473e+183
-1.1936432e+183
-1.199644e+183
-1.1959571e+183
-1.1991292e+183
-1.1964584e+183
-1.2007454e+183
-1.1969531e+183
-1.2001877e+183
-1.1974824e+183
-1.1939159e+183
-1.1934587e+183
-1.195532e+183
-1.1950397e+183
-1.1929881e+183
-1.1925388e+183
-1.1945543e+183
-1.1940824e+183
-1.2009447e+183
-1.2014703e+183
-1.2027329e+183
-1.2032826e+183
-1.2051038e+183
-1.2069555e+183
-1.2045304e+183
-1.2020345e+183
-1.2038626e+183
-1.2044286e+183
-1.2025944e+183
-1.2081187e+183
-1.2056954e+183
-1.2075542e+183
-1.2062597e+183
-1.2088551e+183
-1.2107916e+183
-1.2127828e+183
-1.214823e+183
-1.2094592e+183
-1.2113977e+183
-1.2119603e+183
-1.2100192e+183
-1.2159907e+183
-1.2133905e+183
-1.2154306e+183
-1.2139489e+183
-1.2190753e+183
-1.2169259e+183
-1.2175342e+183
-1.2196815e+183
-1.2180908e+183
-1.2202384e+183
-1.2235448e+183
-1.2212854e+183
-1.2224521e+183
-1.2218899e+183
-1.224145e+183
-1.2247118e+183
-1.2270204e+183
-1.2264476e+183
-1.2287808e+183
-1.2293622e+183
-1.2317467e+183
-1.2311541e+183
-1.2336002e+183
-1.2341997e+183
-1.2636028e+183
-1.26807e+183
-1.2686272e+183
-1.2641464e+183
-1.2652341e+183
-1.2646831e+183
-1.2691592e+183
-1.2697239e+183
-1.2728406e+183
-1.2733877e+183
-1.2745385e+183
-1.2739462e+183
-1.2511232e+183
-1.2543685e+183
-1.2549266e+183
-1.2516745e+183
-1.2528305e+183
-1.2522528e+183
-1.2554937e+183
-1.2560657e+183
-1.262234e+183
-1.2579084e+183
-1.2616649e+183
-1.2584652e+183
-1.259621e+183
-1.2634051e+183
-1.2590356e+183
-1.2628119e+183
-1.2528186e+183
-1.2490351e+183
-1.2522683e+183
-1.2495739e+183
-1.2557833e+183
-1.259501e+183
-1.2600253e+183
-1.2563184e+183
-1.2538323e+183
-1.2500761e+183
-1.2533122e+183
-1.2505821e+183
-1.2568364e+183
-1.2605671e+183
-1.2573601e+183
-1.2611021e+183
-1.2658046e+183
-1.2703136e+183
-1.2709031e+183
-1.2663808e+183
-1.2751557e+183
-1.275768e+183
-1.2669754e+183
-1.2675832e+183
-1.2715283e+183
-1.2721568e+183
-1.2764158e+183
-1.277076e+183
-1.2450327e+183
-1.2417783e+183
-1.2445134e+183
-1.2422951e+183
-1.2473288e+183
-1.2502613e+183
-1.2507566e+183
-1.2478319e+183
-1.24324e+183
-1.2459783e+183
-1.2427897e+183
-1.2455188e+183
-1.2483294e+183
-1.251271e+183
-1.2488017e+183
-1.2517607e+183
-1.2337757e+183
-1.2361326e+183
-1.236431e+183
-1.2340549e+183
-1.2344994e+183
-1.2342984e+183
-1.2366865e+183
-1.2369053e+183
-1.241333e+183
-1.2385302e+183
-1.2409992e+183
-1.2388426e+183
-1.2393584e+183
-1.2418832e+183
-1.2391202e+183
-1.2416263e+183
-1.2349036e+183
-1.232041e+183
-1.2343735e+183
-1.2325695e+183
-1.2367388e+183
-1.2391688e+183
-1.2396755e+183
-1.2372505e+183
-1.2357775e+183
-1.2330315e+183
-1.2353641e+183
-1.2334323e+183
-1.2377348e+183
-1.2401749e+183
-1.2381579e+183
-1.2406124e+183
-1.2436397e+183
-1.2464013e+183
-1.2467667e+183
-1.2439872e+183
-1.2522356e+183
-1.2496454e+183
-1.2492545e+183
-1.252652e+183
-1.2443052e+183
-1.2445833e+183
-1.2471151e+183
-1.2474175e+183
-1.2530514e+183
-1.2503455e+183
-1.2534018e+183
-1.2500188e+183
-1.2374021e+183
-1.2379576e+183
-1.240689e+183
-1.2401369e+183
-1.2390102e+183
-1.2417141e+183
-1.2384977e+183
-1.2412108e+183
-1.242956e+183
-1.2458984e+183
-1.2464342e+183
-1.2434968e+183
-1.2440086e+183
-1.24451e+183
-1.2469421e+183
-1.2474429e+183
-1.2327032e+183
-1.2298489e+183
-1.2321611e+183
-1.2304019e+183
-1.2345118e+183
-1.2369384e+183
-1.2374755e+183
-1.2350466e+183
-1.2309533e+183
-1.2314792e+183
-1.2332578e+183
-1.2338026e+183
-1.2355991e+183
-1.2361633e+183
-1.2380268e+183
-1.2385963e+183
-1.2281446e+183
-1.2275954e+183
-1.2299476e+183
-1.2304869e+183
-1.2328772e+183
-1.2323333e+183
-1.2347846e+183
-1.2353342e+183
-1.2316142e+183
-1.2287074e+183
-1.2310447e+183
-1.2292759e+183
-1.235884e+183
-1.2334347e+183
-1.2339771e+183
-1.2364078e+183
-1.2427799e+183
-1.2395355e+183
-1.2422469e+183
-1.2400669e+183
-1.2479839e+183
-1.2450526e+183
-1.2455902e+183
-1.248527e+183
-1.2412023e+183
-1.2439361e+183
-1.2406265e+183
-1.2433546e+183
-1.249111e+183
-1.2461696e+183
-1.2467533e+183
-1.2496936e+183
-1.2533932e+183
-1.2566386e+183
-1.2571645e+183
-1.2538981e+183
-1.2544224e+183
-1.2549325e+183
-1.2577071e+183
-1.2582369e+183
-1.2645723e+183
-1.2602087e+183
-1.2640046e+183
-1.260755e+183
-1.2618649e+183
-1.26572e+183
-1.2613134e+183
-1.2651479e+183
-1.2554277e+183
-1.2587519e+183
-1.2592252e+183
-1.2558725e+183
-1.2667991e+183
-1.2624031e+183
-1.2662812e+183
-1.2628987e+183
-1.2600594e+183
-1.2562929e+183
-1.2596656e+183
-1.2566661e+183
-1.2633608e+183
-1.2672826e+183
-1.267717e+183
-1.2637746e+183
-1.270558e+183
-1.2752301e+183
-1.275801e+183
-1.2710978e+183
-1.2808332e+183
-1.2802394e+183
-1.2813886e+183
-1.2819032e+183
-1.2716019e+183
-1.2720557e+183
-1.2763251e+183
-1.276801e+183
-1.2681988e+183
-1.2727857e+183
-1.2733914e+183
-1.2687837e+183
-1.2693773e+183
-1.2740044e+183
-1.2699715e+183
-1.2746206e+183
-1.277711e+183
-1.2783314e+183
-1.2796088e+183
-1.2789632e+183
-1.1232659e+183
-1.1242071e+183
-1.1394294e+183
-1.1482759e+183
-1.1476034e+183
-1.1383293e+183
-1.1379346e+183
-1.1472801e+183
-1.1474016e+183
-1.1382066e+183
-1.1205545e+183
-1.1213824e+183
-1.1217108e+183
-1.1206302e+183
-1.1233302e+183
-1.1244268e+183
-1.1380959e+183
-1.138303e+183
-1.1475181e+183
-1.1475418e+183
-1.1481048e+183
-1.1386268e+183
-1.1399595e+183
-1.14911e+183
-1.1255283e+183
-1.1252e+183
-1.1495635e+183
-1.1404334e+183
-1.1399248e+183
-1.1493907e+183
-1.1505255e+183
-1.1401648e+183
-1.149722e+183
-1.1411342e+183
-1.1420839e+183
-1.1418037e+183
-1.1511834e+183
-1.1516353e+183
-1.1267005e+183
-1.1286888e+183
-1.153391e+183
-1.1429534e+183
-1.1524117e+183
-1.1444341e+183
-1.1239711e+183
-1.1258607e+183
-1.122458e+183
-1.1228447e+183
-1.1185882e+183
-1.1193341e+183
-1.1203594e+183
-1.1195481e+183
-1.1197716e+183
-1.1187076e+183
-1.1196352e+183
-1.1207094e+183
-1.1207756e+183
-1.1204628e+183
-1.1217818e+183
-1.1214348e+183
-1.1218556e+183
-1.1237231e+183
-1.122873e+183
-1.1247798e+183
-1.1222856e+183
-1.1236954e+183
-1.1383772e+183
-1.1466858e+183
-1.1370766e+183
-1.1458214e+183
-1.145362e+183
-1.1365037e+183
-1.1365646e+183
-1.1453224e+183
-1.145362e+183
-1.1450922e+183
-1.1364591e+183
-1.1359094e+183
-1.1217769e+183
-1.1221109e+183
-1.1360437e+183
-1.1451915e+183
-1.1458002e+183
-1.1369686e+183
-1.1195252e+183
-1.1208348e+183
-1.1193228e+183
-1.1190133e+183
-1.136279e+183
-1.1371175e+183
-1.1459143e+183
-1.1454612e+183
-1.1221975e+183
-1.1217482e+183
-1.1454182e+183
-1.1458705e+183
-1.1361273e+183
-1.1367114e+183
-1.1370777e+183
-1.1462455e+183
-1.1371435e+183
-1.1465119e+183
-1.1222865e+183
-1.1238274e+183
-1.1378396e+183
-1.1471865e+183
-1.1482063e+183
-1.1392485e+183
-1.1193675e+183
-1.1189951e+183
-1.1210117e+183
-1.1195212e+183
-1.1174795e+183
-1.1189364e+183
-1.1184689e+183
-1.1199607e+183
-1.1169827e+183
-1.1173621e+183
-1.1183553e+183
-1.1179619e+183
-1.1173859e+183
-1.1185734e+183
-1.1184763e+183
-1.119761e+183
-1.1173024e+183
-1.1169448e+183
-1.1179909e+183
-1.1183062e+183
-1.1171553e+183
-1.1173624e+183
-1.120689e+183
-1.1202534e+183
-1.1174468e+183
-1.1204681e+183
-1.1183505e+183
-1.1214023e+183
-1.1197987e+183
-1.1191681e+183
-1.1222231e+183
-1.1227361e+183
-1.1210891e+183
-1.1228781e+183
-1.1240865e+183
-1.1259876e+183
-1.1768999e+183
-1.1766463e+183
-1.1779386e+183
-1.1782154e+183
-1.1763478e+183
-1.1760021e+183
-1.1772554e+183
-1.1776263e+183
-1.1806363e+183
-1.1792735e+183
-1.1795555e+183
-1.1809243e+183
-1.1798904e+183
-1.1785529e+183
-1.1789406e+183
-1.1802893e+183
-1.1756518e+183
-1.1752749e+183
-1.1764995e+183
-1.1768827e+183
-1.1748781e+183
-1.1744193e+183
-1.1756352e+183
-1.1761048e+183
-1.1781836e+183
-1.1768964e+183
-1.1773619e+183
-1.1786546e+183
-1.1790645e+183
-1.1777558e+183
-1.1781605e+183
-1.1794812e+183
-1.180875e+183
-1.1804442e+183
-1.1818655e+183
-1.1823126e+183
-1.1808983e+183
-1.1795235e+183
-1.18001e+183
-1.1814068e+183
-1.1838175e+183
-1.1823352e+183
-1.1828625e+183
-1.1843585e+183
-1.1848626e+183
-1.1833478e+183
-1.1838093e+183
-1.1853367e+183
-1.1857591e+183
-1.1842361e+183
-1.1846357e+183
-1.1861507e+183
-1.1827356e+183
-1.1812923e+183
-1.1816969e+183
-1.1831415e+183
-1.1823394e+183
-1.182047e+183
-1.1834916e+183
-1.1837891e+183
-1.1865121e+183
-1.18499e+183
-1.1852886e+183
-1.1868156e+183
-1.1791109e+183
-1.1787763e+183
-1.1801995e+183
-1.180532e+183
-1.1764097e+183
-1.1760839e+183
-1.1773945e+183
-1.1777283e+183
-1.1772246e+183
-1.1767968e+183
-1.1781196e+183
-1.1785524e+183
-1.1809277e+183
-1.1795018e+183
-1.1799271e+183
-1.1813424e+183
-1.1738827e+183
-1.1736039e+183
-1.1748109e+183
-1.1751171e+183
-1.1714737e+183
-1.1712688e+183
-1.172415e+183
-1.1726593e+183
-1.1720831e+183
-1.1717323e+183
-1.1729541e+183
-1.173338e+183
-1.1754855e+183
-1.1742133e+183
-1.1746147e+183
-1.1759035e+183
-1.1817272e+183
-1.1803184e+183
-1.1807578e+183
-1.1821744e+183
-1.1789492e+183
-1.1776247e+183
-1.1780501e+183
-1.1793755e+183
-1.1790138e+183
-1.1785068e+183
-1.179843e+183
-1.1803692e+183
-1.1826932e+183
-1.1812486e+183
-1.1817913e+183
-1.183256e+183
-1.1763124e+183
-1.1750361e+183
-1.1754818e+183
-1.1767379e+183
-1.1729851e+183
-1.1724996e+183
-1.1737498e+183
-1.1742246e+183
-1.1739444e+183
-1.17346e+183
-1.174678e+183
-1.1751542e+183
-1.1771849e+183
-1.1759161e+183
-1.1764039e+183
-1.1776822e+183
-1.1847762e+183
-1.1841968e+183
-1.1857375e+183
-1.1863268e+183
-1.1836587e+183
-1.1831938e+183
-1.1847137e+183
-1.1851912e+183
-1.1889442e+183
-1.1873287e+183
-1.1879192e+183
-1.1895298e+183
-1.1879089e+183
-1.1862963e+183
-1.186779e+183
-1.1883961e+183
-1.1828147e+183
-1.1824103e+183
-1.1839317e+183
-1.1843285e+183
-1.1820202e+183
-1.181688e+183
-1.1832175e+183
-1.1835504e+183
-1.1851251e+183
-1.1847889e+183
-1.1863777e+183
-1.1867216e+183
-1.1870977e+183
-1.1855013e+183
-1.1858945e+183
-1.1874925e+183
-1.189126e+183
-1.1887243e+183
-1.1903582e+183
-1.1907695e+183
-1.1883448e+183
-1.1879892e+183
-1.1895959e+183
-1.1899681e+183
-1.1915895e+183
-1.1911985e+183
-1.192773e+183
-1.193186e+183
-1.1936093e+183
-1.1919946e+183
-1.1924208e+183
-1.1940497e+183
-1.1945035e+183
-1.1928708e+183
-1.1933574e+183
-1.1949806e+183
-1.1912093e+183
-1.1895561e+183
-1.1900475e+183
-1.1917028e+183
-1.1911725e+183
-1.1905918e+183
-1.1922442e+183
-1.1928185e+183
-1.1955253e+183
-1.1938987e+183
-1.1944724e+183
-1.1961001e+183
-1.1883696e+183
-1.1880667e+183
-1.1896319e+183
-1.189929e+183
-1.1876997e+183
-1.1872996e+183
-1.1888581e+183
-1.1892654e+183
-1.1920773e+183
-1.1904613e+183
-1.1908621e+183
-1.1924683e+183
-1.1928134e+183
-1.1912209e+183
-1.1915048e+183
-1.1930825e+183
-1.186891e+183
-1.1864166e+183
-1.187986e+183
-1.188456e+183
-1.1869041e+183
-1.1853463e+183
-1.1858999e+183
-1.1874642e+183
-1.1901045e+183
-1.1884951e+183
-1.1890575e+183
-1.1906649e+183
-1.1911897e+183
-1.1895829e+183
-1.190052e+183
-1.191661e+183
-1.1966483e+183
-1.1950303e+183
-1.1955646e+183
-1.1971665e+183
-1.1933829e+183
-1.1917404e+183
-1.1922971e+183
-1.1939313e+183
-1.1932919e+183
-1.1928195e+183
-1.1944495e+183
-1.1949212e+183
-1.1976838e+183
-1.19608e+183
-1.1965526e+183
-1.1981574e+183
-1.1946744e+183
-1.1944226e+183
-1.1960248e+183
-1.196259e+183
-1.1953378e+183
-1.1937106e+183
-1.1940928e+183
-1.1957105e+183
-1.1985689e+183
-1.1969629e+183
-1.1973235e+183
-1.1989138e+183
-1.1991965e+183
-1.1976238e+183
-1.1978396e+183
-1.1993897e+183
-1.1649433e+183
-1.1652772e+183
-1.1661735e+183
-1.1657964e+183
-1.1667105e+183
-1.1676843e+183
-1.1681354e+183
-1.1671301e+183
-1.1645829e+183
-1.1642174e+183
-1.1653778e+183
-1.1649754e+183
-1.1658252e+183
-1.1667481e+183
-1.1672021e+183
-1.166255e+183
-1.1638569e+183
-1.1636015e+183
-1.1646111e+183
-1.1643377e+183
-1.1634637e+183
-1.1634558e+183
-1.1641883e+183
-1.164183e+183
-1.1650092e+183
-1.1659079e+183
-1.1659291e+183
-1.165027e+183
-1.1651791e+183
-1.1660791e+183
-1.1663609e+183
-1.1654515e+183
-1.1691297e+183
-1.1690103e+183
-1.1701191e+183
-1.1702778e+183
-1.1669391e+183
-1.1668923e+183
-1.1679236e+183
-1.1679996e+183
-1.1673818e+183
-1.1671e+183
-1.1681705e+183
-1.1684691e+183
-1.1705027e+183
-1.1693257e+183
-1.1696349e+183
-1.1708332e+183
-1.1682488e+183
-1.1677815e+183
-1.1688762e+183
-1.1693555e+183
-1.1712479e+183
-1.1700458e+183
-1.1705306e+183
-1.1717344e+183
-1.1722264e+183
-1.1710349e+183
-1.1715294e+183
-1.1727205e+183
-1.1692164e+183
-1.1687461e+183
-1.1698593e+183
-1.1703462e+183
-1.1621621e+183
-1.1621668e+183
-1.1627635e+183
-1.1627565e+183
-1.1610751e+183
-1.1611201e+183
-1.1616082e+183
-1.1615805e+183
-1.1611859e+183
-1.1611089e+183
-1.1616521e+183
-1.1617965e+183
-1.1624454e+183
-1.1622568e+183
-1.1628765e+183
-1.1631139e+183
-1.1603603e+183
-1.1605805e+183
-1.1604772e+183
-1.1602998e+183
-1.1559254e+183
-1.1589356e+183
-1.1586506e+183
-1.1553244e+183
-1.1548474e+183
-1.158279e+183
-1.1582406e+183
-1.1548084e+183
-1.1600077e+183
-1.1604289e+183
-1.1604863e+183
-1.1600054e+183
-1.1550078e+183
-1.1590328e+183
-1.159321e+183
-1.1555741e+183
-1.1549707e+183
-1.1583721e+183
-1.1587437e+183
-1.1550024e+183
-1.1600435e+183
-1.1606336e+183
-1.1607422e+183
-1.1604102e+183
-1.1609473e+183
-1.1609587e+183
-1.1612162e+183
-1.1611298e+183
-1.1630145e+183
-1.1627472e+183
-1.1634584e+183
-1.1637814e+183
-1.1614824e+183
-1.1613645e+183
-1.1620508e+183
-1.162249e+183
-1.1619242e+183
-1.1616653e+183
-1.1624744e+183
-1.1627336e+183
-1.1635537e+183
-1.1632802e+183
-1.1640937e+183
-1.164391e+183
-1.1618314e+183
-1.1573265e+183
-1.1612333e+183
-1.1582095e+183
-1.156656e+183
-1.1562399e+183
-1.1600378e+183
-1.1606349e+183
-1.1632885e+183
-1.1631231e+183
-1.163595e+183
-1.163501e+183
-1.1625887e+183
-1.1619837e+183
-1.1626048e+183
-1.1629419e+183
-1.155402e+183
-1.159616e+183
-1.1597573e+183
-1.1558937e+183
-1.1556421e+183
-1.1592973e+183
-1.1593047e+183
-1.1554323e+183
-1.1611427e+183
-1.1615173e+183
-1.1617372e+183
-1.1612397e+183
-1.1617099e+183
-1.1619459e+183
-1.1622201e+183
-1.1617107e+183
-1.1630289e+183
-1.1627037e+183
-1.1635371e+183
-1.1638607e+183
-1.162496e+183
-1.1622532e+183
-1.1630271e+183
-1.1632879e+183
-1.1641163e+183
-1.1638347e+183
-1.1646788e+183
-1.1649792e+183
-1.1647185e+183
-1.1643918e+183
-1.1652741e+183
-1.1656066e+183
-1.1636974e+183
-1.1634073e+183
-1.1642216e+183
-1.1645254e+183
-1.1653691e+183
-1.1650625e+183
-1.1659403e+183
-1.1662379e+183
-1.1659219e+183
-1.1656568e+183
-1.1664997e+183
-1.1667488e+183
-1.1643335e+183
-1.1640195e+183
-1.164834e+183
-1.1651221e+183
-1.1665568e+183
-1.1662193e+183
-1.167186e+183
-1.1675293e+183
-1.1668559e+183
-1.1655868e+183
-1.1659057e+183
-1.166515e+183
-1.1675042e+183
-1.1685367e+183
-1.1689169e+183
-1.1678657e+183
-1.1685598e+183
-1.1682119e+183
-1.1692772e+183
-1.1696304e+183
-1.1700366e+183
-1.1696429e+183
-1.1707852e+183
-1.171198e+183
-1.173185e+183
-1.1719823e+183
-1.1724093e+183
-1.1736285e+183
-1.1740243e+183
-1.172802e+183
-1.1731709e+183
-1.1743989e+183
-1.1707712e+183
-1.1704122e+183
-1.1715813e+183
-1.1719469e+183
-1.1699457e+183
-1.1688818e+183
-1.1691707e+183
-1.1702429e+183
-1.1671735e+183
-1.1668827e+183
-1.1678532e+183
-1.1681413e+183
-1.1676562e+183
-1.1674215e+183
-1.168383e+183
-1.1686074e+183
-1.1704927e+183
-1.1694128e+183
-1.1696272e+183
-1.170708e+183
-1.1718604e+183
-1.1716424e+183
-1.1728344e+183
-1.1730576e+183
-1.1722645e+183
-1.171076e+183
-1.1713828e+183
-1.1725674e+183
-1.1747305e+183
-1.1734923e+183
-1.1738059e+183
-1.1750596e+183
-1.1753455e+183
-1.1740813e+183
-1.1743087e+183
-1.1755851e+183
-1.1696487e+183
-1.1692701e+183
-1.1702467e+183
-1.1706295e+183
-1.1689372e+183
-1.1686406e+183
-1.1695869e+183
-1.1699049e+183
-1.1723652e+183
-1.1712835e+183
-1.1716702e+183
-1.1727585e+183
-1.17166e+183
-1.1705972e+183
-1.1709312e+183
-1.1720053e+183
-1.1684084e+183
-1.1682333e+183
-1.1691291e+183
-1.1693199e+183
-1.1688023e+183
-1.1678744e+183
-1.1680672e+183
-1.168984e+183
-1.1708718e+183
-1.1697973e+183
-1.1699718e+183
-1.1710262e+183
-1.1711678e+183
-1.1701181e+183
-1.170316e+183
-1.1713737e+183
-1.1725324e+183
-1.1723213e+183
-1.173525e+183
-1.173742e+183
-1.1732183e+183
-1.1720217e+183
-1.1721738e+183
-1.1733718e+183
-1.1757636e+183
-1.1744768e+183
-1.1746374e+183
-1.1759287e+183
-1.1760991e+183
-1.1748026e+183
-1.1750202e+183
-1.1763169e+183
-1.1765731e+183
-1.1752926e+183
-1.1756288e+183
-1.1768979e+183
-1.1740222e+183
-1.1728145e+183
-1.1731637e+183
-1.1743669e+183
-1.1739212e+183
-1.1735252e+183
-1.1747308e+183
-1.1751255e+183
-1.1772634e+183
-1.1759929e+183
-1.1763834e+183
-1.1776528e+183
-1.1574371e+183
-1.1613133e+183
-1.1614215e+183
-1.1575277e+183
-1.1581709e+183
-1.1619946e+183
-1.1616271e+183
-1.1577731e+183
-1.1637518e+183
-1.1638086e+183
-1.1639313e+183
-1.1635108e+183
-1.163335e+183
-1.1640282e+183
-1.1640795e+183
-1.1634499e+183
-1.1653529e+183
-1.1645669e+183
-1.164728e+183
-1.1655239e+183
-1.1663324e+183
-1.1661464e+183
-1.1669724e+183
-1.1671677e+183
-1.1666248e+183
-1.1664951e+183
-1.1673334e+183
-1.167489e+183
-1.1649345e+183
-1.1648701e+183
-1.1656754e+183
-1.1657763e+183
-1.163541e+183
-1.1642538e+183
-1.1644913e+183
-1.1639158e+183
-1.1575974e+183
-1.1614523e+183
-1.1617341e+183
-1.1577458e+183
-1.1583565e+183
-1.1623181e+183
-1.1631258e+183
-1.159166e+183
-1.1643653e+183
-1.1648675e+183
-1.1652681e+183
-1.1651273e+183
-1.1660295e+183
-1.1656855e+183
-1.1665232e+183
-1.1668911e+183
-1.1653468e+183
-1.1651109e+183
-1.1659431e+183
-1.1661858e+183
-1.1670631e+183
-1.1668028e+183
-1.1676931e+183
-1.1679707e+183
-1.1677766e+183
-1.1673967e+183
-1.1683025e+183
-1.1686843e+183
-1.1625803e+183
-1.163264e+183
-1.1660653e+183
-1.1664521e+183
-1.1657486e+183
-1.1614196e+183
-1.1652433e+183
-1.1619364e+183
-1.1679816e+183
-1.1676991e+183
-1.168065e+183
-1.1682233e+183
-1.1671947e+183
-1.1673046e+183
-1.1677139e+183
-1.1675659e+183
-1.160035e+183
-1.1606963e+183
-1.1639702e+183
-1.1646425e+183
-1.1596694e+183
-1.1634096e+183
-1.1635933e+183
-1.1596267e+183
-1.1658437e+183
-1.1653289e+183
-1.1656458e+183
-1.1660684e+183
-1.1664496e+183
-1.166043e+183
-1.1668628e+183
-1.166913e+183
-1.1675879e+183
-1.167216e+183
-1.1680332e+183
-1.1683974e+183
-1.1668137e+183
-1.1664338e+183
-1.1672934e+183
-1.1676638e+183
-1.1685276e+183
-1.1681633e+183
-1.1690589e+183
-1.1694135e+183
-1.1692252e+183
-1.1688754e+183
-1.1697454e+183
-1.170074e+183
-1.1698769e+183
-1.1695532e+183
-1.1703594e+183
-1.1706696e+183
-1.1687585e+183
-1.1679809e+183
-1.1683645e+183
-1.1691008e+183
-1.1688724e+183
-1.1687268e+183
-1.1694154e+183
-1.1695439e+183
-1.1702561e+183
-1.1701519e+183
-1.1709277e+183
-1.1710154e+183
-1.1718467e+183
-1.1717757e+183
-1.1726616e+183
-1.1727163e+183
-1.1715475e+183
-1.1712661e+183
-1.1722153e+183
-1.1724662e+183
-1.1743001e+183
-1.1732321e+183
-1.1734561e+183
-1.1744985e+183
-1.1746257e+183
-1.1736156e+183
-1.1736401e+183
-1.1746274e+183
-1.1709978e+183
-1.1706913e+183
-1.1716691e+183
-1.1719612e+183
-1.1710034e+183
-1.1700169e+183
-1.1703705e+183
-1.1713579e+183
-1.1731351e+183
-1.1720457e+183
-1.1724033e+183
-1.1734926e+183
-1.1737945e+183
-1.1727105e+183
-1.1729907e+183
-1.1740693e+183
-1.1779998e+183
-1.1767448e+183
-1.1770841e+183
-1.1783318e+183
-1.1754946e+183
-1.1742914e+183
-1.1746484e+183
-1.1758417e+183
-1.1752177e+183
-1.1749497e+183
-1.1761376e+183
-1.1764026e+183
-1.1786302e+183
-1.1773799e+183
-1.1776399e+183
-1.1788945e+183
-1.1756817e+183
-1.1757105e+183
-1.1768398e+183
-1.1767911e+183
-1.1766111e+183
-1.1754366e+183
-1.1756138e+183
-1.1767692e+183
-1.179089e+183
-1.1778363e+183
-1.177979e+183
-1.1792148e+183
-1.179245e+183
-1.178028e+183
-1.1779543e+183
-1.1791588e+183
-1.2105856e+183
-1.2125234e+183
-1.2111161e+183
-1.2130591e+183
-1.2150503e+183
-1.2145088e+183
-1.2165512e+183
-1.2170949e+183
-1.211667e+183
-1.2122264e+183
-1.213617e+183
-1.2141873e+183
-1.2176627e+183
-1.2161921e+183
-1.2182432e+183
-1.2156145e+183
-1.218652e+183
-1.219201e+183
-1.2213565e+183
-1.2208065e+183
-1.223021e+183
-1.2252825e+183
-1.2258325e+183
-1.2235709e+183
-1.222503e+183
-1.2197677e+183
-1.221924e+183
-1.220348e+183
-1.2241382e+183
-1.2247124e+183
-1.2263987e+183
-1.2269693e+183
-1.2248079e+183
-1.222122e+183
-1.2226706e+183
-1.2242672e+183
-1.2209504e+183
-1.2215418e+183
-1.2231021e+183
-1.2236954e+183
-1.2275542e+183
-1.2258868e+183
-1.2281231e+183
-1.2253052e+183
-1.2264491e+183
-1.2269733e+183
-1.2291857e+183
-1.228675e+183
-1.2145366e+183
-1.2164974e+183
-1.213986e+183
-1.2159387e+183
-1.2134049e+183
-1.2128192e+183
-1.2147879e+183
-1.2153599e+183
-1.2173673e+183
-1.2167927e+183
-1.2188435e+183
-1.2194245e+183
-1.2200046e+183
-1.2205623e+183
-1.2179457e+183
-1.2185052e+183
-1.2032961e+183
-1.2050517e+183
-1.2038161e+183
-1.2055643e+183
-1.2073593e+183
-1.2092098e+183
-1.2068477e+183
-1.2086911e+183
-1.2048115e+183
-1.2043168e+183
-1.2060817e+183
-1.2065938e+183
-1.2084211e+183
-1.2102983e+183
-1.2078933e+183
-1.2097525e+183
-1.1977434e+183
-1.1971779e+183
-1.1988554e+183
-1.2007324e+183
-1.2025527e+183
-1.2012894e+183
-1.1994164e+183
-1.2031153e+183
-1.1966225e+183
-1.1961356e+183
-1.1996422e+183
-1.2014674e+183
-1.1977926e+183
-1.2001716e+183
-1.1983044e+183
-1.2020016e+183
-1.2035425e+183
-1.2040679e+183
-1.2046199e+183
-1.2051657e+183
-1.2021073e+183
-1.200109e+183
-1.1978463e+183
-1.1996027e+183
-1.2015919e+183
-1.198324e+183
-1.1987758e+183
-1.200573e+183
-1.2025943e+183
-1.2010363e+183
-1.1992155e+183
-1.2030701e+183
-1.1956907e+183
-1.1952523e+183
-1.1969264e+183
-1.1973629e+183
-1.1948144e+183
-1.1943813e+183
-1.1960292e+183
-1.1964873e+183
-1.2053085e+183
-1.2058451e+183
-1.2076945e+183
-1.2071367e+183
-1.2089922e+183
-1.2108847e+183
-1.2114708e+183
-1.2095679e+183
-1.208806e+183
-1.2064012e+183
-1.2082605e+183
-1.2069446e+183
-1.2101427e+183
-1.2120505e+183
-1.2106835e+183
-1.2125955e+183
-1.1997947e+183
-1.1993222e+183
-1.2009908e+183
-1.2028678e+183
-1.204659e+183
-1.2033474e+183
-1.20147e+183
-1.2051384e+183
-1.1987962e+183
-1.1982773e+183
-1.1999352e+183
-1.2017976e+183
-1.2036132e+183
-1.2023413e+183
-1.20047e+183
-1.2041478e+183
-1.2056788e+183
-1.2061916e+183
-1.2066919e+183
-1.2071428e+183
-1.2112764e+183
-1.2092432e+183
-1.2110346e+183
-1.2095136e+183
-1.2096876e+183
-1.2097921e+183
-1.211433e+183
-1.2115405e+183
-1.2128541e+183
-1.2147078e+183
-1.2130559e+183
-1.2148915e+183
-1.2133346e+183
-1.215061e+183
-1.2151896e+183
-1.2132169e+183
-1.2074665e+183
-1.207974e+183
-1.2093355e+183
-1.2098362e+183
-1.2117167e+183
-1.2136236e+183
-1.2112187e+183
-1.2131299e+183
-1.2107153e+183
-1.208461e+183
-1.2103078e+183
-1.2088914e+183
-1.212176e+183
-1.2140711e+183
-1.2144318e+183
-1.2125541e+183
-1.2037377e+183
-1.2055145e+183
-1.2058293e+183
-1.2040618e+183
-1.2075087e+183
-1.2077958e+183
-1.2060282e+183
-1.2079869e+183
-1.2080943e+183
-1.2061324e+183
-1.2042838e+183
-1.2044005e+183
-1.2009667e+183
-1.2008005e+183
-1.2024414e+183
-1.2025857e+183
-1.200535e+183
-1.2002057e+183
-1.2018716e+183
-1.2021998e+183
-1.2150721e+183
-1.2170386e+183
-1.2175281e+183
-1.2155622e+183
-1.2190483e+183
-1.2211e+183
-1.2195348e+183
-1.2215841e+183
-1.2159995e+183
-1.2163397e+183
-1.2179576e+183
-1.218291e+183
-1.2220107e+183
-1.2202962e+183
-1.2223527e+183
-1.2199608e+183
-1.2187561e+183
-1.2166089e+183
-1.2185599e+183
-1.2167966e+183
-1.2205682e+183
-1.2226309e+183
-1.2228428e+183
-1.2207715e+183
-1.219072e+183
-1.2169653e+183
-1.2189252e+183
-1.2171055e+183
-1.2209472e+183
-1.2230272e+183
-1.2210965e+183
-1.2231801e+183
-1.224116e+183
-1.2244678e+183
-1.2266319e+183
-1.2262672e+183
-1.2258232e+183
-1.2231984e+183
-1.2253266e+183
-1.223684e+183
-1.2275063e+183
-1.2297412e+183
-1.2302628e+183
-1.2280157e+183
-1.228473e+183
-1.228852e+183
-1.2307283e+183
-1.2311187e+183
-1.2271738e+183
-1.2247568e+183
-1.2269346e+183
-1.2249792e+183
-1.231448e+183
-1.2291687e+183
-1.2294185e+183
-1.2317089e+183
-1.2253322e+183
-1.2275408e+183
-1.2251735e+183
-1.2273752e+183
-1.2319415e+183
-1.2296348e+183
-1.2298107e+183
-1.2321296e+183
-1.2489163e+183
-1.2457258e+183
-1.248654e+183
-1.2459706e+183
-1.2464365e+183
-1.2462e+183
-1.2491503e+183
-1.2493958e+183
-1.2516614e+183
-1.2547899e+183
-1.2519083e+183
-1.2550283e+183
-1.2524441e+183
-1.2553322e+183
-1.2556251e+183
-1.2521777e+183
-1.2348232e+183
-1.2346756e+183
-1.237099e+183
-1.237262e+183
-1.2397538e+183
-1.2395727e+183
-1.2421171e+183
-1.2423175e+183
-1.2375879e+183
-1.2349739e+183
-1.2374266e+183
-1.2351205e+183
-1.2425162e+183
-1.2399349e+183
-1.2401123e+183
-1.242711e+183
-1.2454891e+183
-1.2484002e+183
-1.2452764e+183
-1.2481707e+183
-1.2450591e+183
-1.2448388e+183
-1.2476951e+183
-1.2479356e+183
-1.2509062e+183
-1.2506469e+183
-1.2537245e+183
-1.2540024e+183
-1.2542725e+183
-1.2545269e+183
-1.2511589e+183
-1.2514008e+183
-1.237967e+183
-1.2352944e+183
-1.2377727e+183
-1.2354785e+183
-1.2403112e+183
-1.2429267e+183
-1.2431476e+183
-1.2405162e+183
-1.2384065e+183
-1.2356901e+183
-1.2381841e+183
-1.2359063e+183
-1.2407407e+183
-1.2433773e+183
-1.2409685e+183
-1.2436097e+183
-1.2361391e+183
-1.2363754e+183
-1.2386449e+183
-1.2388912e+183
-1.2414691e+183
-1.2441263e+183
-1.2412146e+183
-1.2438634e+183
-1.2394519e+183
-1.2366433e+183
-1.239165e+183
-1.2369244e+183
-1.2417502e+183
-1.2444153e+183
-1.2447148e+183
-1.2420431e+183
-1.2466985e+183
-1.249671e+183
-1.2499557e+183
-1.2469708e+183
-1.2527402e+183
-1.2559393e+183
-1.2562515e+183
-1.2530382e+183
-1.2472688e+183
-1.2475732e+183
-1.2502629e+183
-1.2505743e+183
-1.2533568e+183
-1.2536764e+183
-1.2565818e+183
-1.2569125e+183
-1.2512326e+183
-1.2478935e+183
-1.2509035e+183
-1.2482139e+183
-1.2572552e+183
-1.2540122e+183
-1.2543378e+183
-1.2575821e+183
-1.2485338e+183
-1.2515517e+183
-1.2579229e+183
-1.2546623e+183
-1.2400596e+183
-1.2372227e+183
-1.2397553e+183
-1.23752e+183
-1.2378317e+183
-1.2381288e+183
-1.2403702e+183
-1.2406658e+183
-1.2429725e+183
-1.2456573e+183
-1.2423521e+183
-1.2426601e+183
-1.2450285e+183
-1.2453406e+183
-1.2570084e+183
-1.2604202e+183
-1.2607384e+183
-1.2573062e+183
-1.257593e+183
-1.2578628e+183
-1.2610428e+183
-1.2613288e+183
-1.2651225e+183
-1.2691435e+183
-1.2648172e+183
-1.2688162e+183
-1.2641554e+183
-1.2644924e+183
-1.268116e+183
-1.2684711e+183
-1.2776305e+183
-1.2724739e+183
-1.2772351e+183
-1.2728502e+183
-1.2823403e+183
-1.2827508e+183
-1.2732166e+183
-1.2735672e+183
-1.278018e+183
-1.2783957e+183
-1.2835737e+183
-1.2831604e+183
-1.2619062e+183
-1.2581366e+183
-1.2616192e+183
-1.2583972e+183
-1.2654333e+183
-1.2694762e+183
-1.269805e+183
-1.2657415e+183
-1.2625564e+183
-1.2587098e+183
-1.2622266e+183
-1.2590241e+183
-1.266077e+183
-1.2701591e+183
-1.2664214e+183
-1.2705204e+183
-1.2791719e+183
-1.2739264e+183
-1.2787823e+183
-1.2742808e+183
-1.2839853e+183
-1.2844023e+183
-1.2750364e+183
-1.2746548e+183
-1.2795667e+183
-1.2799731e+183
-1.2852771e+183
-1.2848297e+183
-1.2646817e+183
-1.2607233e+183
-1.2643243e+183
-1.2610649e+183
-1.2682639e+183
-1.2724393e+183
-1.2686273e+183
-1.2728089e+183
-1.2593539e+183
-1.2629003e+183
-1.2596802e+183
-1.2632418e+183
-1.2671384e+183
-1.2712708e+183
-1.2667814e+183
-1.2708974e+183
-1.2639581e+183
-1.2600226e+183
-1.2635992e+183
-1.2603686e+183
-1.2675114e+183
-1.2716601e+183
-1.2720476e+183
-1.2678843e+183
-1.2857148e+183
-1.2861532e+183
-1.2754328e+183
-1.2803897e+183
-1.2808041e+183
-1.2758253e+183
-1.2762313e+183
-1.2812237e+183
-1.2766319e+183
-1.2816428e+183
-1.2870261e+183
-1.2865791e+183
-1.2874777e+183
-1.2879054e+183
-1.2824704e+183
-1.2770367e+183
-1.2820663e+183
-1.2774216e+183
-1.2882879e+183
-1.139309e+183
-1.1368753e+183
-1.1357854e+183
-1.1449832e+183
-1.135259e+183
-1.135317e+183
-1.1386675e+183
-1.1399821e+183
-1.1380073e+183
-1.1380736e+183
-1.1383341e+183
-1.13785e+183
-1.1376918e+183
-1.1381425e+183
-1.1408405e+183
-1.1401648e+183
-1.138651e+183
-1.1391957e+183
-1.1433827e+183
-1.1416594e+183
-1.1405271e+183
-1.1407536e+183
-1.1371875e+183
-1.1367484e+183
-1.1376016e+183
-1.1380986e+183
-1.1377718e+183
-1.1373415e+183
-1.1366635e+183
-1.1370743e+183
-1.1401805e+183
-1.1394964e+183
-1.1405632e+183
-1.1396166e+183
-1.1406407e+183
-1.1397838e+183
-1.152171e+183
-1.1516369e+183
-1.1517854e+183
-1.1513011e+183
-1.151466e+183
-1.1522044e+183
-1.1520665e+183
-1.1524307e+183
-1.1533528e+183
-1.1547298e+183
-1.1790668e+183
-1.177882e+183
-1.1777643e+183
-1.1789404e+183
-1.176736e+183
-1.175651e+183
-1.1755496e+183
-1.1766201e+183
-1.1788692e+183
-1.1776827e+183
-1.1776823e+183
-1.1788824e+183
-1.1754327e+183
-1.1754743e+183
-1.1765381e+183
-1.1765222e+183
-1.1746149e+183
-1.1736467e+183
-1.1735432e+183
-1.1745119e+183
-1.1727261e+183
-1.1718648e+183
-1.1717159e+183
-1.1725958e+183
-1.1744326e+183
-1.1734541e+183
-1.1733745e+183
-1.1743683e+183
-1.1714868e+183
-1.17158e+183
-1.172493e+183
-1.172408e+183
-1.1713935e+183
-1.1714633e+183
-1.1723758e+183
-1.1723258e+183
-1.1714713e+183
-1.1714627e+183
-1.1723717e+183
-1.1723665e+183
-1.1743591e+183
-1.173342e+183
-1.173337e+183
-1.1743633e+183
-1.174386e+183
-1.173353e+183
-1.1733263e+183
-1.1743828e+183
-1.1755106e+183
-1.1754972e+183
-1.1766598e+183
-1.1766795e+183
-1.1765701e+183
-1.1754451e+183
-1.1754683e+183
-1.1766192e+183
-1.1789791e+183
-1.1777557e+183
-1.1778323e+183
-1.1790748e+183
-1.1791403e+183
-1.1778859e+183
-1.1779091e+183
-1.1791693e+183
-1.165799e+183
-1.1674517e+183
-1.1669552e+183
-1.1648926e+183
-1.1682925e+183
-1.1683548e+183
-1.1689557e+183
-1.1680757e+183
-1.1687426e+183
-1.1679781e+183
-1.1673525e+183
-1.1677884e+183
-1.1679171e+183
-1.1676388e+183
-1.1687951e+183
-1.1674961e+183
-1.1638279e+183
-1.1662869e+183
-1.1635151e+183
-1.165745e+183
-1.1700797e+183
-1.1703054e+183
-1.171031e+183
-1.1708577e+183
-1.1696248e+183
-1.168965e+183
-1.1686025e+183
-1.1693341e+183
-1.1681822e+183
-1.1682491e+183
-1.1690571e+183
-1.1689646e+183
-1.1697546e+183
-1.1698616e+183
-1.1706852e+183
-1.1705848e+183
-1.1629501e+183
-1.1650585e+183
-1.1631525e+183
-1.1652706e+183
-1.1668657e+183
-1.167398e+183
-1.1671621e+183
-1.1666664e+183
-1.1669525e+183
-1.1673032e+183
-1.167007e+183
-1.166678e+183
-1.1672855e+183
-1.166856e+183
-1.167218e+183
-1.1672999e+183
-1.163101e+183
-1.1635293e+183
-1.1654756e+183
-1.1651692e+183
-1.169749e+183
-1.1697483e+183
-1.17056e+183
-1.1705824e+183
-1.1689679e+183
-1.1681861e+183
-1.1681465e+183
-1.1689433e+183
-1.1680803e+183
-1.1681119e+183
-1.1689032e+183
-1.1688569e+183
-1.1696548e+183
-1.1697156e+183
-1.1705642e+183
-1.1704937e+183
-1.1696155e+183
-1.1688503e+183
-1.1681027e+183
-1.1682009e+183
-1.1689372e+183
-1.1669606e+183
-1.1674013e+183
-1.1673158e+183
-1.1669452e+183
-1.1673375e+183
-1.1674092e+183
-1.1656107e+183
-1.1636376e+183
-1.1655826e+183
-1.163508e+183
-1.1791891e+183
-1.1779266e+183
-1.1766919e+183
-1.175523e+183
-1.174381e+183
-1.0821358e+183
-1.1198827e+183
-1.1226786e+183
-1.1458231e+183
-1.1424331e+183
-1.1919899e+183
-1.1721263e+183
-1.1763388e+183
-1.196782e+183
-1.216766e+183
-1.2197714e+183
-1.2285091e+183
-1.2253526e+183
-1.2136569e+183
-1.2220404e+183
-1.1329319e+183
-1.1313587e+183
-1.1591811e+183
-1.1567417e+183
-1.1866375e+183
-1.1974141e+183
-1.1991895e+183
-1.1882146e+183
-1.1836927e+183
-1.1852402e+183
-1.1958326e+183
-1.1942178e+183
-1.2053832e+183
-1.2036363e+183
-1.2131725e+183
-1.2151691e+183
-1.2088047e+183
-1.2070895e+183
-1.2169386e+183
-1.2186234e+183
-1.2281576e+183
-1.2324432e+183
-1.2315818e+183
-1.2273477e+183
-1.2288843e+183
-1.2296216e+183
-1.2339903e+183
-1.2332195e+183
-1.2383201e+183
-1.2375143e+183
-1.2429229e+183
-1.242068e+183
-1.2357405e+183
-1.2366789e+183
-1.2411876e+183
-1.2402141e+183
-1.2306645e+183
-1.2294897e+183
-1.2264425e+183
-1.2252986e+183
-1.2284185e+183
-1.2272955e+183
-1.2242821e+183
-1.223291e+183
-1.2324405e+183
-1.2312601e+183
-1.2367684e+183
-1.2355214e+183
-1.2335773e+183
-1.23479e+183
-1.2379626e+183
-1.2392303e+183
-1.1350139e+183
-1.1647079e+183
-1.1618346e+183
-1.137587e+183
-1.213646e+183
-1.2150013e+183
-1.2247891e+183
-1.223318e+183
-1.2121913e+183
-1.2104526e+183
-1.2201773e+183
-1.2219049e+183
-1.2007609e+183
-1.1896878e+183
-1.1912428e+183
-1.2023802e+183
-1.2051851e+183
-1.2038123e+183
-1.1926755e+183
-1.194083e+183
-1.2326949e+183
-1.2317928e+183
-1.236156e+183
-1.2370395e+183
-1.2309516e+183
-1.230234e+183
-1.2345926e+183
-1.235334e+183
-1.2396687e+183
-1.2389404e+183
-1.2435633e+183
-1.2442752e+183
-1.2404742e+183
-1.2450714e+183
-1.2459708e+183
-1.2413585e+183
-1.2340246e+183
-1.2333664e+183
-1.2383677e+183
-1.2377063e+183
-1.2347714e+183
-1.2356714e+183
-1.2400218e+183
-1.2391131e+183
-1.2420405e+183
-1.2427076e+183
-1.2466542e+183
-1.2473489e+183
-1.2434694e+183
-1.2443794e+183
-1.2490298e+183
-1.248129e+183
-1.1684932e+183
-1.1828975e+183
-1.1541077e+183
-1.2230963e+183
-1.2186048e+183
-1.227341e+183
-1.204561e+183
-1.1996423e+183
-1.1999835e+183
-1.2049656e+183
-1.2090388e+183
-1.2137427e+183
-1.2408689e+183
-1.2429562e+183
-1.2387986e+183
-1.236463e+183
-1.2449678e+183
-1.2470957e+183
-1.2474732e+183
-1.2453451e+183
-1.2492979e+183
-1.2516388e+183
-1.2519987e+183
-1.2496563e+183
-1.2476651e+183
-1.2498913e+183
-1.2502306e+183
-1.247985e+183
-1.2483518e+183
-1.2506017e+183
-1.2510239e+183
-1.2487784e+183
-1.253213e+183
-1.2527954e+183
-1.2551548e+183
-1.2555721e+183
-1.2520755e+183
-1.2524151e+183
-1.2547671e+183
-1.2544084e+183
-1.2565667e+183
-1.2592734e+183
-1.2588619e+183
-1.2569477e+183
-1.257769e+183
-1.2573427e+183
-1.2596739e+183
-1.2600985e+183
-1.2624351e+183
-1.2619959e+183
-1.2644939e+183
-1.2649295e+183
-1.261178e+183
-1.2636744e+183
-1.2640845e+183
-1.2615884e+183
-1.2653035e+183
-1.2631998e+183
-1.2628251e+183
-1.2656748e+183
-1.260493e+183
-1.2581706e+183
-1.2585669e+183
-1.2608865e+183
-1.2589543e+183
-1.2612797e+183
-1.2616994e+183
-1.2593745e+183
-1.2635934e+183
-1.2640231e+183
-1.26653e+183
-1.2660818e+183
-1.2491661e+183
-1.2514096e+183
-1.2518501e+183
-1.2496036e+183
-1.2500265e+183
-1.2522371e+183
-1.252626e+183
-1.2504327e+183
-1.2543939e+183
-1.2547942e+183
-1.2571605e+183
-1.2567518e+183
-1.2536109e+183
-1.2559765e+183
-1.256371e+183
-1.2540234e+183
-1.2683699e+183
-1.2687892e+183
-1.2665131e+183
-1.266099e+183
-1.2673275e+183
-1.266925e+183
-1.269193e+183
-1.2695749e+183
-1.273731e+183
-1.2733351e+183
-1.275748e+183
-1.2761592e+183
-1.2725138e+183
-1.2749181e+183
-1.2753176e+183
-1.2728956e+183
-1.2807029e+183
-1.2781708e+183
-1.2785891e+183
-1.2811224e+183
-1.2773284e+183
-1.2798478e+183
-1.2802693e+183
-1.2777397e+183
-1.2825034e+183
-1.2829298e+183
-1.2857179e+183
-1.2852862e+183
-1.2833634e+183
-1.2865924e+183
-1.2861572e+183
-1.2837893e+183
-1.2798594e+183
-1.2823911e+183
-1.2828548e+183
-1.2803259e+183
-1.2789848e+183
-1.2815222e+183
-1.2819465e+183
-1.2794048e+183
-1.2841936e+183
-1.2846062e+183
-1.2874074e+183
-1.2869981e+183
-1.2850467e+183
-1.285505e+183
-1.288311e+183
-1.2878504e+183
-1.2680645e+183
-1.2676942e+183
-1.2703275e+183
-1.2699245e+183
-1.2740859e+183
-1.2745031e+183
-1.2769493e+183
-1.2765333e+183
-1.2749697e+183
-1.2774076e+183
-1.2778814e+183
-1.2754422e+183
-1.2684915e+183
-1.2707751e+183
-1.2712326e+183
-1.2689365e+183
-1.2927879e+183
-1.2922897e+183
-1.2953807e+183
-1.2948799e+183
-1.2986668e+183
-1.2991842e+183
-1.293241e+183
-1.2906097e+183
-1.2910302e+183
-1.2936759e+183
-1.2896809e+183
-1.2901566e+183
-1.2996887e+183
-1.2958569e+183
-1.2963077e+183
-1.300172e+183
-1.291461e+183
-1.2941196e+183
-1.2945803e+183
-1.2918957e+183
-1.2927974e+183
-1.2955095e+183
-1.2950312e+183
-1.2923393e+183
-1.301626e+183
-1.2977022e+183
-1.2981825e+183
-1.302128e+183
-1.2972325e+183
-1.2967728e+183
-1.3006551e+183
-1.3011369e+183
-1.2507563e+183
-1.2533465e+183
-1.2529743e+183
-1.2510912e+183
-1.251446e+183
-1.2537215e+183
-1.2541363e+183
-1.2518505e+183
-1.2563677e+183
-1.2559477e+183
-1.2587635e+183
-1.2583456e+183
-1.2551729e+183
-1.2579545e+183
-1.2575526e+183
-1.2555574e+183
-1.2597608e+183
-1.2601669e+183
-1.2625114e+183
-1.2620875e+183
-1.2644252e+183
-1.2673887e+183
-1.2669461e+183
-1.2648581e+183
-1.2652901e+183
-1.267825e+183
-1.2682867e+183
-1.2657527e+183
-1.260568e+183
-1.2610002e+183
-1.2633722e+183
-1.2629315e+183
-1.2661601e+183
-1.2665757e+183
-1.2690735e+183
-1.2686658e+183
-1.2642122e+183
-1.263776e+183
-1.2614034e+183
-1.2618274e+183
-1.2622555e+183
-1.262689e+183
-1.265038e+183
-1.2646263e+183
-1.2669738e+183
-1.2674e+183
-1.2699365e+183
-1.2694923e+183
-1.252224e+183
-1.2545033e+183
-1.2549342e+183
-1.252646e+183
-1.253497e+183
-1.253062e+183
-1.2553432e+183
-1.2557729e+183
-1.2580256e+183
-1.257584e+183
-1.2600061e+183
-1.2604474e+183
-1.2567486e+183
-1.2571637e+183
-1.2595721e+183
-1.2591603e+183
-1.2693905e+183
-1.2716971e+183
-1.2721523e+183
-1.2698361e+183
-1.270714e+183
-1.2702852e+183
-1.2725708e+183
-1.2729615e+183
-1.2771304e+183
-1.2767382e+183
-1.2796023e+183
-1.279178e+183
-1.2758956e+183
-1.2763009e+183
-1.2787397e+183
-1.2783279e+183
-1.2820862e+183
-1.281642e+183
-1.2842182e+183
-1.2846778e+183
-1.2833064e+183
-1.2807682e+183
-1.2811954e+183
-1.283757e+183
-1.2864554e+183
-1.2859817e+183
-1.2888021e+183
-1.2892915e+183
-1.2869341e+183
-1.2897857e+183
-1.2902769e+183
-1.2874128e+183
-1.2907169e+183
-1.28828e+183
-1.2878661e+183
-1.2911229e+183
-1.2851195e+183
-1.2825181e+183
-1.2829562e+183
-1.2855513e+183
-1.2864663e+183
-1.2860077e+183
-1.2834222e+183
-1.2838876e+183
-1.2887158e+183
-1.2891723e+183
-1.291555e+183
-1.2920263e+183
-1.2710806e+183
-1.2733464e+183
-1.2737701e+183
-1.2714785e+183
-1.2789385e+183
-1.278463e+183
-1.28093e+183
-1.2814019e+183
-1.2775442e+183
-1.2779766e+183
-1.2804548e+183
-1.2800188e+183
-1.271928e+183
-1.2742316e+183
-1.2746845e+183
-1.2723711e+183
-1.2960855e+183
-1.2988098e+183
-1.2965627e+183
-1.2993147e+183
-1.2978956e+183
-1.2983533e+183
-1.2956342e+183
-1.2951862e+183
-1.3010295e+183
-1.3005801e+183
-1.3045213e+183
-1.3049967e+183
-1.3020162e+183
-1.3015113e+183
-1.3055e+183
-1.3060132e+183
-1.2938175e+183
-1.2933022e+183
-1.2960037e+183
-1.2965307e+183
-1.3026476e+183
-1.2986974e+183
-1.2992096e+183
-1.3031566e+183
-1.2970338e+183
-1.2974929e+183
-1.3036326e+183
-1.2997059e+183
-1.3001493e+183
-1.3040717e+183
-1.294325e+183
-1.2947856e+183
-1.2589722e+183
-1.2585987e+183
-1.2609792e+183
-1.2613304e+183
-1.254031e+183
-1.2562644e+183
-1.2566474e+183
-1.2544049e+183
-1.2655376e+183
-1.2632456e+183
-1.2635948e+183
-1.2659075e+183
-1.2683565e+183
-1.2679665e+183
-1.270878e+183
-1.2704727e+183
-1.3058573e+183
-1.3053517e+183
-1.3092741e+183
-1.3074489e+183
-1.3097835e+183
-1.3079558e+183
-1.3112281e+183
-1.310714e+183
-1.3063264e+183
-1.3067866e+183
-1.3102712e+183
-1.3084292e+183
-1.310744e+183
-1.3088962e+183
-1.3117246e+183
-1.3122098e+183
-1.3077389e+183
-1.3117298e+183
-1.3098669e+183
-1.3072529e+183
-1.3112337e+183
-1.3093747e+183
-1.3132014e+183
-1.3127034e+183
-1.3082467e+183
-1.3087595e+183
-1.3122362e+183
-1.3103779e+183
-1.3127321e+183
-1.3108835e+183
-1.3137034e+183
-1.3142019e+183
-1.3028249e+183
-1.3023131e+183
-1.3061318e+183
-1.3043536e+183
-1.3066632e+183
-1.3048795e+183
-1.3080717e+183
-1.3075288e+183
-1.3012753e+183
-1.3018007e+183
-1.3050407e+183
-1.3032903e+183
-1.305589e+183
-1.3038266e+183
-1.3069784e+183
-1.306418e+183
-1.3038178e+183
-1.3033261e+183
-1.3071944e+183
-1.3053942e+183
-1.30771e+183
-1.3058958e+183
-1.3086113e+183
-1.3091397e+183
-1.3048318e+183
-1.3043123e+183
-1.3087437e+183
-1.3069252e+183
-1.3082258e+183
-1.3064018e+183
-1.3096624e+183
-1.3101853e+183
-1.3132427e+183
-1.3147683e+183
-1.3137352e+183
-1.31527e+183
-1.3122158e+183
-1.3137261e+183
-1.3127369e+183
-1.3142548e+183
-1.3147323e+183
-1.3162743e+183
-1.3142348e+183
-1.3157723e+183
-1.3152345e+183
-1.316771e+183
-1.3157302e+183
-1.3172643e+183
-1.3152093e+183
-1.3159116e+183
-1.3146809e+183
-1.315376e+183
-1.316239e+183
-1.3169589e+183
-1.3157305e+183
-1.3164473e+183
-1.316746e+183
-1.3174723e+183
-1.3172457e+183
-1.3179764e+183
-1.3184799e+183
-1.3177492e+183
-1.3182383e+183
-1.3189479e+183
-1.3089873e+183
-1.3104483e+183
-1.3095404e+183
-1.3110128e+183
-1.3078557e+183
-1.309292e+183
-1.3084272e+183
-1.3098758e+183
-1.3100902e+183
-1.3115749e+183
-1.3106301e+183
-1.3121249e+183
-1.3111609e+183
-1.3126602e+183
-1.3116854e+183
-1.3131897e+183
-1.310785e+183
-1.3114393e+183
-1.3101986e+183
-1.3108426e+183
-1.3119416e+183
-1.3126176e+183
-1.3113679e+183
-1.3120384e+183
-1.3130622e+183
-1.3137584e+183
-1.3125108e+183
-1.3131977e+183
-1.3141409e+183
-1.3148368e+183
-1.3136069e+183
-1.3143097e+183
-1.2273318e+183
-1.2314008e+183
-1.2293158e+183
-1.2376224e+183
-1.2332508e+183
-1.2353976e+183
-1.2397874e+183
-1.2374661e+183
-1.2418502e+183
-1.2439559e+183
-1.2395952e+183
-1.2292964e+183
-1.2334129e+183
-1.2355471e+183
-1.2313918e+183
-1.2452033e+183
-1.2462866e+183
-1.2485238e+183
-1.2474603e+183
-1.2509882e+183
-1.2499201e+183
-1.2526527e+183
-1.2537433e+183
-1.2530078e+183
-1.2519902e+183
-1.2547503e+183
-1.2557525e+183
-1.2472515e+183
-1.2504967e+183
-1.2494933e+183
-1.2482366e+183
-1.2409162e+183
-1.241963e+183
-1.2442198e+183
-1.2431431e+183
-1.2455982e+183
-1.2483522e+183
-1.2494829e+183
-1.2466964e+183
-1.250584e+183
-1.2478101e+183
-1.2489556e+183
-1.2516783e+183
-1.2430251e+183
-1.2453032e+183
-1.2464703e+183
-1.2441986e+183
-1.2624888e+183
-1.2609279e+183
-1.2598255e+183
-1.2635607e+183
-1.2573441e+183
-1.2549192e+183
-1.2560165e+183
-1.2584559e+183
-1.2570235e+183
-1.259472e+183
-1.2604848e+183
-1.2580346e+183
-1.2619508e+183
-1.2646064e+183
-1.2656767e+183
-1.2629996e+183
-1.2528454e+183
-1.2552546e+183
-1.2563498e+183
-1.2539256e+183
-1.2331507e+183
-1.2349854e+183
-1.2372828e+183
-1.239172e+183
-1.2413216e+183
-1.2457241e+183
-1.2477084e+183
-1.2432579e+183
-1.2450133e+183
-1.2494637e+183
-1.2511993e+183
-1.2467466e+183
-1.2366279e+183
-1.2408692e+183
-1.2425964e+183
-1.2383202e+183
-1.2511881e+183
-1.254417e+183
-1.2534412e+183
-1.2521817e+183
-1.252489e+183
-1.2514253e+183
-1.2491491e+183
-1.2502061e+183
-1.2549349e+183
-1.2539131e+183
-1.256665e+183
-1.2576778e+183
-1.2559022e+183
-1.2586638e+183
-1.2596731e+183
-1.2568857e+183
-1.2530144e+183
-1.2552619e+183
-1.2561951e+183
-1.2539273e+183
-1.2555482e+183
-1.254737e+183
-1.2570094e+183
-1.2578299e+183
-1.2603695e+183
-1.2595098e+183
-1.26232e+183
-1.263208e+183
-1.2577523e+183
-1.2586751e+183
-1.2614566e+183
-1.2605397e+183
-1.2646553e+183
-1.2671538e+183
-1.2680371e+183
-1.2655504e+183
-1.2652957e+183
-1.2628419e+183
-1.2637736e+183
-1.2662556e+183
-1.2704918e+183
-1.268769e+183
-1.2678012e+183
-1.2714503e+183
-1.2696756e+183
-1.2723716e+183
-1.2732856e+183
-1.2705818e+183
-1.260967e+183
-1.2634325e+183
-1.2644265e+183
-1.261978e+183
-1.2614097e+183
-1.258959e+183
-1.2599809e+183
-1.2624479e+183
-1.2649417e+183
-1.2639091e+183
-1.2665858e+183
-1.2676032e+183
-1.2659173e+183
-1.2685871e+183
-1.2696132e+183
-1.2669311e+183
-1.2759944e+183
-1.2791264e+183
-1.2800204e+183
-1.2768975e+183
-1.277264e+183
-1.2781967e+183
-1.2750663e+183
-1.2741421e+183
-1.2811657e+183
-1.280237e+183
-1.2828109e+183
-1.2837526e+183
-1.2829648e+183
-1.2820734e+183
-1.2846594e+183
-1.2855396e+183
-1.2701842e+183
-1.2712055e+183
-1.2743516e+183
-1.2733133e+183
-1.2773664e+183
-1.2763009e+183
-1.2789385e+183
-1.2800027e+183
-1.2753834e+183
-1.2763754e+183
-1.2793312e+183
-1.2783756e+183
-1.2809776e+183
-1.2819156e+183
-1.2722245e+183
-1.2732359e+183
-1.2863333e+183
-1.2872713e+183
-1.2918243e+183
-1.289905e+183
-1.2908558e+183
-1.2927371e+183
-1.28817e+183
-1.2890553e+183
-1.291726e+183
-1.2926131e+183
-1.2936147e+183
-1.2944568e+183
-1.2959936e+183
-1.2973319e+183
-1.2392539e+183
-1.2398905e+183
-1.2420071e+183
-1.2413422e+183
-1.2411814e+183
-1.240509e+183
-1.2433119e+183
-1.2426351e+183
-1.2433966e+183
-1.244072e+183
-1.2462941e+183
-1.2456045e+183
-1.2447166e+183
-1.2469629e+183
-1.2476788e+183
-1.2454111e+183
-1.2519654e+183
-1.2512273e+183
-1.2490303e+183
-1.2497595e+183
-1.2505127e+183
-1.2497498e+183
-1.247621e+183
-1.2483393e+183
-1.2526756e+183
-1.2518921e+183
-1.2542015e+183
-1.2550071e+183
-1.2534086e+183
-1.2557614e+183
-1.2565298e+183
-1.2541612e+183
-1.2516847e+183
-1.2538725e+183
-1.2544744e+183
-1.2522873e+183
-1.2503875e+183
-1.2525837e+183
-1.2532619e+183
-1.2510635e+183
-1.2560453e+183
-1.2584171e+183
-1.2590561e+183
-1.2566687e+183
-1.2547781e+183
-1.2571484e+183
-1.2578081e+183
-1.2554405e+183
-1.2424038e+183
-1.2417685e+183
-1.2439034e+183
-1.2445622e+183
-1.2466844e+183
-1.2489726e+183
-1.2482988e+183
-1.2460135e+183
-1.2479562e+183
-1.2473229e+183
-1.2496017e+183
-1.2502171e+183
-1.2430203e+183
-1.24519e+183
-1.245821e+183
-1.2436521e+183
-1.2625207e+183
-1.2647976e+183
-1.2655945e+183
-1.2633354e+183
-1.2580749e+183
-1.2602203e+183
-1.2609501e+183
-1.2588143e+183
-1.2564698e+183
-1.2594181e+183
-1.2585915e+183
-1.2572768e+183
-1.2641246e+183
-1.2663968e+183
-1.2671629e+183
-1.2648555e+183
-1.2686818e+183
-1.2710881e+183
-1.2718742e+183
-1.2694639e+183
-1.2695022e+183
-1.2670934e+183
-1.2702832e+183
-1.2678768e+183
-1.2728272e+183
-1.2720472e+183
-1.2754933e+183
-1.2747171e+183
-1.2736224e+183
-1.2744048e+183
-1.277059e+183
-1.2762842e+183
-1.2739364e+183
-1.2715133e+183
-1.2721872e+183
-1.2746159e+183
-1.2732535e+183
-1.2725827e+183
-1.2701711e+183
-1.2708336e+183
-1.2791613e+183
-1.2764729e+183
-1.2771692e+183
-1.2798663e+183
-1.2751038e+183
-1.277755e+183
-1.2784655e+183
-1.2757905e+183
-1.2594763e+183
-1.2616196e+183
-1.262267e+183
-1.2601148e+183
-1.2607382e+183
-1.2629031e+183
-1.2635194e+183
-1.2613541e+183
-1.2668581e+183
-1.2674903e+183
-1.2698429e+183
-1.2691828e+183
-1.2678566e+183
-1.2655522e+183
-1.2661886e+183
-1.2685052e+183
-1.2814732e+183
-1.2822809e+183
-1.2847734e+183
-1.2839817e+183
-1.2876321e+183
-1.2884313e+183
-1.2830387e+183
-1.2805385e+183
-1.2812875e+183
-1.2838038e+183
-1.2789619e+183
-1.2797576e+183
-1.2862952e+183
-1.2855446e+183
-1.28998e+183
-1.2892068e+183
-1.2820054e+183
-1.2845188e+183
-1.2852379e+183
-1.2827084e+183
-1.2841181e+183
-1.2866683e+183
-1.2859265e+183
-1.2834031e+183
-1.2891791e+183
-1.2884544e+183
-1.2921564e+183
-1.2928891e+183
-1.2877455e+183
-1.2870364e+183
-1.2914461e+183
-1.2907236e+183
-1.2461335e+183
-1.2465656e+183
-1.2487565e+183
-1.2483086e+183
-1.2504443e+183
-1.2527296e+183
-1.2532047e+183
-1.2508963e+183
-1.2513327e+183
-1.2517489e+183
-1.2540423e+183
-1.2536347e+183
-1.2469651e+183
-1.2491742e+183
-1.2495798e+183
-1.247355e+183
-1.2441556e+183
-1.2446673e+183
-1.2468403e+183
-1.2463228e+183
-1.2484446e+183
-1.2507194e+183
-1.2512432e+183
-1.2489605e+183
-1.2494768e+183
-1.2500071e+183
-1.2522601e+183
-1.251744e+183
-1.2451686e+183
-1.2473482e+183
-1.2478827e+183
-1.2457033e+183
-1.2538277e+183
-1.2560587e+183
-1.2565881e+183
-1.254346e+183
-1.253336e+183
-1.2528074e+183
-1.2550051e+183
-1.2555581e+183
-1.2577818e+183
-1.2572165e+183
-1.2596124e+183
-1.2601856e+183
-1.2607239e+183
-1.2583002e+183
-1.258853e+183
-1.261294e+183
-1.25484e+183
-1.2575951e+183
-1.2570838e+183
-1.2553283e+183
-1.2557571e+183
-1.2580336e+183
-1.2584608e+183
-1.2561723e+183
-1.2607768e+183
-1.2603233e+183
-1.2627995e+183
-1.2632682e+183
-1.259354e+183
-1.2618035e+183
-1.2623292e+183
-1.2598679e+183
-1.2656541e+183
-1.2679134e+183
-1.2674524e+183
-1.2652e+183
-1.2642078e+183
-1.2669635e+183
-1.2664391e+183
-1.2647216e+183
-1.2710235e+183
-1.2705127e+183
-1.2728656e+183
-1.2734031e+183
-1.2715604e+183
-1.2739549e+183
-1.2744809e+183
-1.2720641e+183
-1.2619489e+183
-1.262528e+183
-1.2647348e+183
-1.2641287e+183
-1.2681464e+183
-1.2704914e+183
-1.2711244e+183
-1.2687798e+183
-1.2717202e+183
-1.2693883e+183
-1.2699613e+183
-1.2722945e+183
-1.2631033e+183
-1.2653221e+183
-1.2658872e+183
-1.2636618e+183
-1.2765049e+183
-1.2740529e+183
-1.2746406e+183
-1.277105e+183
-1.272836e+183
-1.2752746e+183
-1.2759061e+183
-1.2734631e+183
-1.281812e+183
-1.2790918e+183
-1.2797076e+183
-1.282444e+183
-1.2778449e+183
-1.2805442e+183
-1.2811903e+183
-1.2784827e+183
-1.2752282e+183
-1.2777019e+183
-1.2782918e+183
-1.2757928e+183
-1.2788625e+183
-1.2763531e+183
-1.2768803e+183
-1.2793874e+183
-1.2842655e+183
-1.2814985e+183
-1.2848122e+183
-1.2820339e+183
-1.2803168e+183
-1.2830629e+183
-1.2836783e+183
-1.2809204e+183
-1.2873754e+183
-1.288042e+183
-1.290563e+183
-1.2898977e+183
-1.2935891e+183
-1.2942708e+183
-1.2861289e+183
-1.2886656e+183
-1.2893477e+183
-1.2867738e+183
-1.284834e+183
-1.2854998e+183
-1.291891e+183
-1.291225e+183
-1.2949553e+183
-1.2956283e+183
-1.2899811e+183
-1.2874212e+183
-1.2880366e+183
-1.2905937e+183
-1.2891584e+183
-1.2886169e+183
-1.2911722e+183
-1.2917494e+183
-1.2943243e+183
-1.293747e+183
-1.2975326e+183
-1.2981221e+183
-1.2931469e+183
-1.2925379e+183
-1.2962772e+183
-1.2969188e+183
-1.2917475e+183
-1.2954167e+183
-1.2937127e+183
-1.2925214e+183
-1.296182e+183
-1.294487e+183
-1.2967572e+183
-1.2975265e+183
-1.2946494e+183
-1.2929526e+183
-1.2909764e+183
-1.2901697e+183
-1.2938452e+183
-1.2921356e+183
-1.2959778e+183
-1.2951885e+183
-1.2932677e+183
-1.293995e+183
-1.2969432e+183
-1.2952365e+183
-1.2976826e+183
-1.29597e+183
-1.2982892e+183
-1.2990341e+183
-1.2954417e+183
-1.2947118e+183
-1.2991319e+183
-1.2974201e+183
-1.2984115e+183
-1.296693e+183
-1.2997649e+183
-1.3004899e+183
-1.3001298e+183
-1.3007234e+183
-1.3038737e+183
-1.3021391e+183
-1.3044633e+183
-1.3027307e+183
-1.3058366e+183
-1.3052385e+183
-1.2988624e+183
-1.2995094e+183
-1.3032493e+183
-1.3015152e+183
-1.3026013e+183
-1.3008633e+183
-1.3046145e+183
-1.3039657e+183
-1.2961474e+183
-1.2968411e+183
-1.299854e+183
-1.2981275e+183
-1.3005573e+183
-1.2988286e+183
-1.3012125e+183
-1.3019211e+183
-1.2982047e+183
-1.2975281e+183
-1.3012537e+183
-1.2995223e+183
-1.3019278e+183
-1.300198e+183
-1.3026163e+183
-1.303295e+183
-1.2981613e+183
-1.2995618e+183
-1.2989303e+183
-1.3003334e+183
-1.2965894e+183
-1.2979896e+183
-1.2973693e+183
-1.2987791e+183
-1.2996965e+183
-1.3010997e+183
-1.3004448e+183
-1.3018528e+183
-1.3011807e+183
-1.3025865e+183
-1.3019048e+183
-1.3033153e+183
-1.2988787e+183
-1.2995219e+183
-1.2996654e+183
-1.3003084e+183
-1.3012191e+183
-1.301858e+183
-1.3004477e+183
-1.3010921e+183
-1.3027364e+183
-1.3033769e+183
-1.3019875e+183
-1.3026262e+183
-1.3042055e+183
-1.3048385e+183
-1.3034764e+183
-1.3041172e+183
-1.3026292e+183
-1.3040435e+183
-1.3033417e+183
-1.3047608e+183
-1.3040404e+183
-1.3054592e+183
-1.3047199e+183
-1.3061427e+183
-1.3053919e+183
-1.3068148e+183
-1.3060409e+183
-1.3074659e+183
-1.3066686e+183
-1.3080896e+183
-1.3072698e+183
-1.3086941e+183
-1.3056499e+183
-1.3062908e+183
-1.3049349e+183
-1.3055688e+183
-1.3070399e+183
-1.3076902e+183
-1.3063545e+183
-1.3070051e+183
-1.3083618e+183
-1.3090134e+183
-1.3077154e+183
-1.3083676e+183
-1.3095974e+183
-1.3102381e+183
-1.3089907e+183
-1.3096406e+183
-1.0972838e+183
-1.0995993e+183
-1.0993201e+183
-1.10172e+183
-1.283668e+183
-1.2830176e+183
-1.2849737e+183
-1.2843167e+183
-1.2862531e+183
-1.2856266e+183
-1.2873661e+183
-1.2868358e+183
-1.2785242e+183
-1.2779604e+183
-1.279737e+183
-1.279122e+183
-1.2810265e+183
-1.2803785e+183
-1.2823564e+183
-1.2816879e+183
-1.290031e+183
-1.2895772e+183
-1.2909566e+183
-1.290485e+183
-1.2882602e+183
-1.2878163e+183
-1.2891318e+183
-1.2886943e+183
-1.2937465e+183
-1.2932795e+183
-1.2941127e+183
-1.2919209e+183
-1.2914362e+183
-1.2927976e+183
-1.2923323e+183
-1.2193365e+183
-1.2213381e+183
-1.2215984e+183
-1.219586e+183
-1.2201184e+183
-1.2198495e+183
-1.2218722e+183
-1.2221488e+183
-1.2258132e+183
-1.2233989e+183
-1.2255292e+183
-1.2236706e+183
-1.2242344e+183
-1.2263844e+183
-1.2239504e+183
-1.2260967e+183
-1.220636e+183
-1.2184278e+183
-1.2204185e+183
-1.2186371e+183
-1.2224609e+183
-1.2245645e+183
-1.2247691e+183
-1.2226717e+183
-1.2210823e+183
-1.218855e+183
-1.2208514e+183
-1.2190774e+183
-1.2229007e+183
-1.2250115e+183
-1.2231385e+183
-1.2252573e+183
-1.2277347e+183
-1.2300025e+183
-1.2302854e+183
-1.2280202e+183
-1.2347476e+183
-1.2326307e+183
-1.2323439e+183
-1.2350381e+183
-1.228314e+183
-1.2286079e+183
-1.2305917e+183
-1.2308924e+183
-1.2353495e+183
-1.2332424e+183
-1.2356493e+183
-1.2329391e+183
-1.2292061e+183
-1.2267448e+183
-1.22899e+183
-1.2269553e+183
-1.2336896e+183
-1.2313084e+183
-1.2315312e+183
-1.2339173e+183
-1.2274556e+183
-1.2297191e+183
-1.2272011e+183
-1.2294572e+183
-1.2341794e+183
-1.2317862e+183
-1.2320551e+183
-1.2344544e+183
-1.2119525e+183
-1.2121714e+183
-1.2136939e+183
-1.2139142e+183
-1.2157305e+183
-1.2173858e+183
-1.2176237e+183
-1.2155046e+183
-1.2123999e+183
-1.2126338e+183
-1.21439e+183
-1.2141483e+183
-1.2159733e+183
-1.2162247e+183
-1.2178766e+183
-1.2181369e+183
-1.2130482e+183
-1.2111083e+183
-1.2128275e+183
-1.2113247e+183
-1.2146221e+183
-1.2164885e+183
-1.2166926e+183
-1.2148309e+183
-1.2134776e+183
-1.2115367e+183
-1.2132597e+183
-1.2117445e+183
-1.2150472e+183
-1.2169122e+183
-1.215265e+183
-1.2171267e+183
-1.2058568e+183
-1.2078241e+183
-1.2080376e+183
-1.2060719e+183
-1.2095188e+183
-1.209729e+183
-1.2082442e+183
-1.2099389e+183
-1.2101417e+183
-1.2084394e+183
-1.2062675e+183
-1.2064577e+183
-1.2011361e+183
-1.1996988e+183
-1.1998938e+183
-1.2013334e+183
-1.2027901e+183
-1.202586e+183
-1.204084e+183
-1.2042957e+183
-1.2015409e+183
-1.2000961e+183
-1.200256e+183
-1.2017014e+183
-1.2031656e+183
-1.2029979e+183
-1.2044982e+183
-1.2046761e+183
-1.1982251e+183
-1.1967368e+183
-1.1969347e+183
-1.1984173e+183
-1.197265e+183
-1.1971277e+183
-1.1986101e+183
-1.1987676e+183
-1.2066187e+183
-1.2086249e+183
-1.2088216e+183
-1.2068029e+183
-1.2103428e+183
-1.2105515e+183
-1.2090129e+183
-1.2107709e+183
-1.210997e+183
-1.2092202e+183
-1.2069756e+183
-1.2071748e+183
-1.2021001e+183
-1.2005956e+183
-1.2007531e+183
-1.2022573e+183
-1.2037759e+183
-1.2036148e+183
-1.2051643e+183
-1.2053443e+183
-1.2018436e+183
-1.2003963e+183
-1.2004915e+183
-1.2019679e+183
-1.2034611e+183
-1.2033099e+183
-1.204827e+183
-1.2049984e+183
-1.1988944e+183
-1.1973639e+183
-1.1974385e+183
-1.1989744e+183
-1.1976626e+183
-1.1975366e+183
-1.1990694e+183
-1.1992121e+183
-1.1952283e+183
-1.1937206e+183
-1.1939372e+183
-1.1954321e+183
-1.1922002e+183
-1.1906899e+183
-1.1909244e+183
-1.1924234e+183
-1.191273e+183
-1.1911335e+183
-1.1926159e+183
-1.1927459e+183
-1.1956221e+183
-1.1941204e+183
-1.1942417e+183
-1.1957469e+183
-1.1959813e+183
-1.1944505e+183
-1.1945579e+183
-1.1960978e+183
-1.191408e+183
-1.1913405e+183
-1.1928024e+183
-1.1928721e+183
-1.1958235e+183
-1.194301e+183
-1.1943715e+183
-1.1958931e+183
-1.1915327e+183
-1.1914741e+183
-1.192944e+183
-1.1930325e+183
-1.2074369e+183
-1.2096694e+183
-1.2099463e+183
-1.2077015e+183
-1.2102323e+183
-1.2104503e+183
-1.2079757e+183
-1.2081889e+183
-1.2024542e+183
-1.2009536e+183
-1.201146e+183
-1.202664e+183
-1.1983282e+183
-1.1981834e+183
-1.1997661e+183
-1.1999329e+183
-1.1994095e+183
-1.1978405e+183
-1.1980135e+183
-1.1995892e+183
-1.2028847e+183
-1.201338e+183
-1.201515e+183
-1.2030664e+183
-1.2032349e+183
-1.2016932e+183
-1.2018427e+183
-1.2033945e+183
-1.2001056e+183
-1.198483e+183
-1.1986427e+183
-1.2002557e+183
-1.1924873e+183
-1.1923352e+183
-1.1939449e+183
-1.1941203e+183
-1.192172e+183
-1.1920228e+183
-1.1935997e+183
-1.1937626e+183
-1.1968427e+183
-1.19521e+183
-1.1953798e+183
-1.1970069e+183
-1.1918928e+183
-1.1917844e+183
-1.1933671e+183
-1.1934847e+183
-1.1931599e+183
-1.1916187e+183
-1.1916913e+183
-1.1932622e+183
-1.1962588e+183
-1.1946999e+183
-1.19484e+183
-1.1964229e+183
-1.1965766e+183
-1.1949688e+183
-1.1950892e+183
-1.1967053e+183
-1.2198214e+183
-1.2176904e+183
-1.2196727e+183
-1.2178338e+183
-1.2182078e+183
-1.2180117e+183
-1.2200013e+183
-1.2201984e+183
-1.2217109e+183
-1.223812e+183
-1.2218602e+183
-1.2239603e+183
-1.2222428e+183
-1.2241488e+183
-1.2243489e+183
-1.2220439e+183
-1.2172396e+183
-1.2192059e+183
-1.2173458e+183
-1.2193144e+183
-1.2213378e+183
-1.2234316e+183
-1.2212317e+183
-1.2233193e+183
-1.219542e+183
-1.2174521e+183
-1.2194326e+183
-1.2175544e+183
-1.2214645e+183
-1.2235596e+183
-1.223682e+183
-1.2215797e+183
-1.2254773e+183
-1.2276931e+183
-1.2278178e+183
-1.2255959e+183
-1.2299701e+183
-1.2322973e+183
-1.2324352e+183
-1.2301005e+183
-1.2257225e+183
-1.225843e+183
-1.2279427e+183
-1.2280579e+183
-1.2302298e+183
-1.2303524e+183
-1.2325728e+183
-1.2327064e+183
-1.2283769e+183
-1.2259827e+183
-1.2282122e+183
-1.2261369e+183
-1.2328714e+183
-1.2305118e+183
-1.2306826e+183
-1.2330467e+183
-1.2287715e+183
-1.2263272e+183
-1.2285687e+183
-1.2265281e+183
-1.2332525e+183
-1.2308804e+183
-1.2310862e+183
-1.2334623e+183
-1.2103301e+183
-1.2105083e+183
-1.212062e+183
-1.2122247e+183
-1.2140197e+183
-1.2157513e+183
-1.2158931e+183
-1.2138721e+183
-1.2107001e+183
-1.210898e+183
-1.2126077e+183
-1.2124112e+183
-1.2142005e+183
-1.214397e+183
-1.2160709e+183
-1.2162668e+183
-1.2050639e+183
-1.2070432e+183
-1.207235e+183
-1.2052695e+183
-1.2087363e+183
-1.2089181e+183
-1.2074259e+183
-1.2091132e+183
-1.2093133e+183
-1.2076257e+183
-1.2054663e+183
-1.2056699e+183
-1.2007488e+183
-1.1993029e+183
-1.1995118e+183
-1.2009472e+183
-1.2024008e+183
-1.2022037e+183
-1.2037001e+183
-1.2038998e+183
-1.2002945e+183
-1.1988393e+183
-1.1990629e+183
-1.2005118e+183
-1.2019767e+183
-1.2017618e+183
-1.2032755e+183
-1.2034881e+183
-1.197351e+183
-1.195832e+183
-1.1960694e+183
-1.1975758e+183
-1.196544e+183
-1.1963183e+183
-1.1978125e+183
-1.1980349e+183
-1.2045277e+183
-1.2065847e+183
-1.2066538e+183
-1.2046291e+183
-1.2083163e+183
-1.2083717e+183
-1.2067523e+183
-1.2084583e+183
-1.2085796e+183
-1.2068846e+183
-1.2047473e+183
-1.2049011e+183
-1.1999099e+183
-1.1984183e+183
-1.1986324e+183
-1.2000997e+183
-1.201583e+183
-1.2014078e+183
-1.2029446e+183
-1.2031079e+183
-1.1995391e+183
-1.1980143e+183
-1.1981962e+183
-1.199703e+183
-1.2012261e+183
-1.2010766e+183
-1.2026647e+183
-1.2027939e+183
-1.1964599e+183
-1.1948954e+183
-1.1951036e+183
-1.1966535e+183
-1.1955932e+183
-1.1953501e+183
-1.1968846e+183
-1.1971228e+183
-1.211731e+183
-1.2099253e+183
-1.2116653e+183
-1.2099785e+183
-1.2134623e+183
-1.2153215e+183
-1.2154131e+183
-1.2135392e+183
-1.2119227e+183
-1.2100596e+183
-1.2118145e+183
-1.2101738e+183
-1.2136336e+183
-1.2155138e+183
-1.2137332e+183
-1.2156122e+183
-1.1933227e+183
-1.1917603e+183
-1.1919836e+183
-1.1935386e+183
-1.1901962e+183
-1.1886536e+183
-1.1888694e+183
-1.190416e+183
-1.1893281e+183
-1.1890962e+183
-1.1906512e+183
-1.1908977e+183
-1.1937885e+183
-1.1922224e+183
-1.1924698e+183
-1.194034e+183
-1.1942793e+183
-1.192721e+183
-1.1929829e+183
-1.1945246e+183
-1.1898493e+183
-1.1895768e+183
-1.1911446e+183
-1.1914193e+183
-1.1904331e+183
-1.1901424e+183
-1.1916928e+183
-1.1919664e+183
-1.194788e+183
-1.1932491e+183
-1.1935028e+183
-1.1950255e+183
-1.1790176e+183
-1.1786364e+183
-1.1799146e+183
-1.1802947e+183
-1.1782725e+183
-1.1779567e+183
-1.1792516e+183
-1.1795602e+183
-1.1819791e+183
-1.1805928e+183
-1.1808914e+183
-1.1822661e+183
-1.1826099e+183
-1.181241e+183
-1.181607e+183
-1.1829644e+183
-1.1777251e+183
-1.1775171e+183
-1.1788413e+183
-1.1790439e+183
-1.1784927e+183
-1.1771707e+183
-1.1773437e+183
-1.1786746e+183
-1.1812005e+183
-1.179829e+183
-1.1800286e+183
-1.1814072e+183
-1.1815889e+183
-1.1802028e+183
-1.1803917e+183
-1.1817739e+183
-1.1871095e+183
-1.1855826e+183
-1.185791e+183
-1.1873193e+183
-1.1840782e+183
-1.1826209e+183
-1.182831e+183
-1.1842877e+183
-1.1832061e+183
-1.1830171e+183
-1.1844778e+183
-1.184675e+183
-1.1875334e+183
-1.1859913e+183
-1.1861974e+183
-1.1877521e+183
-1.1843812e+183
-1.1840362e+183
-1.1855031e+183
-1.1858378e+183
-1.1848972e+183
-1.1834193e+183
-1.1837028e+183
-1.1851808e+183
-1.1879942e+183
-1.186429e+183
-1.1867121e+183
-1.188271e+183
-1.1885768e+183
-1.1870273e+183
-1.1873493e+183
-1.1888855e+183
-1.1802624e+183
-1.1799946e+183
-1.181262e+183
-1.181542e+183
-1.1796855e+183
-1.1793508e+183
-1.1806122e+183
-1.1809495e+183
-1.1832854e+183
-1.1819235e+183
-1.1822611e+183
-1.18361e+183
-1.1839176e+183
-1.1825759e+183
-1.1828512e+183
-1.1841803e+183
-1.1891654e+183
-1.1876486e+183
-1.1879195e+183
-1.189414e+183
-1.1861484e+183
-1.1846984e+183
-1.1850105e+183
-1.1864427e+183
-1.1855427e+183
-1.1852998e+183
-1.1867086e+183
-1.1869261e+183
-1.1896401e+183
-1.1881645e+183
-1.1883514e+183
-1.1897999e+183
-1.1898809e+183
-1.1884552e+183
-1.188532e+183
-1.1899506e+183
-1.1870563e+183
-1.1856995e+183
-1.1857923e+183
-1.1871341e+183
-1.1900054e+183
-1.1885758e+183
-1.1885701e+183
-1.1900307e+183
-1.1857447e+183
-1.1858133e+183
-1.187163e+183
-1.1871355e+183
-1.1843525e+183
-1.1830376e+183
-1.1831424e+183
-1.1844491e+183
-1.1805683e+183
-1.1804526e+183
-1.181727e+183
-1.1818415e+183
-1.1804852e+183
-1.1805816e+183
-1.1818434e+183
-1.1817572e+183
-1.1844681e+183
-1.1831472e+183
-1.183055e+183
-1.1843823e+183
-1.1842635e+183
-1.1829256e+183
-1.1828227e+183
-1.1841816e+183
-1.1816167e+183
-1.1803438e+183
-1.1802213e+183
-1.181497e+183
-1.1801817e+183
-1.1801565e+183
-1.1814337e+183
-1.1814695e+183
-1.184158e+183
-1.1827686e+183
-1.1828147e+183
-1.1842127e+183
-1.1805073e+183
-1.18047e+183
-1.1817902e+183
-1.181845e+183
-1.1803958e+183
-1.1802846e+183
-1.1815793e+183
-1.1817073e+183
-1.1843362e+183
-1.1829324e+183
-1.1830676e+183
-1.1844731e+183
-1.1845838e+183
-1.183166e+183
-1.1832288e+183
-1.1846589e+183
-1.1856711e+183
-1.1856023e+183
-1.1870861e+183
-1.1871685e+183
-1.1870789e+183
-1.1856469e+183
-1.1855972e+183
-1.1870571e+183
-1.1900768e+183
-1.1885613e+183
-1.1885729e+183
-1.1901198e+183
-1.1901944e+183
-1.1886257e+183
-1.1887182e+183
-1.1902963e+183
-1.1904335e+183
-1.1888547e+183
-1.1889936e+183
-1.190573e+183
-1.1872981e+183
-1.1857974e+183
-1.185936e+183
-1.1874375e+183
-1.1861453e+183
-1.186055e+183
-1.1875622e+183
-1.1876682e+183
-1.190719e+183
-1.1891275e+183
-1.1892449e+183
-1.1908524e+183
-1.1805366e+183
-1.1173026e+183
-1.1183262e+183
-1.1322855e+183
-1.1396483e+183
-1.1311888e+183
-1.1307957e+183
-1.1394043e+183
-1.1395225e+183
-1.1310466e+183
-1.1183993e+183
-1.1173488e+183
-1.1311866e+183
-1.1397137e+183
-1.1310143e+183
-1.1397856e+183
-1.1403914e+183
-1.1413631e+183
-1.1315542e+183
-1.1328471e+183
-1.1155971e+183
-1.1146543e+183
-1.1146759e+183
-1.1156936e+183
-1.1333802e+183
-1.1418493e+183
-1.1329598e+183
-1.1417859e+183
-1.1192297e+183
-1.1196435e+183
-1.1422056e+183
-1.1430795e+183
-1.1332373e+183
-1.1342621e+183
-1.1350637e+183
-1.1438971e+183
-1.1445678e+183
-1.1355043e+183
-1.1209684e+183
-1.1231921e+183
-1.1465995e+183
-1.1365025e+183
-1.1381517e+183
-1.1454554e+183
-1.1164745e+183
-1.1169553e+183
-1.1203651e+183
-1.1182248e+183
-1.1148086e+183
-1.1143965e+183
-1.1154592e+183
-1.1159036e+183
-1.1180654e+183
-1.1160001e+183
-1.1171272e+183
-1.1192525e+183
-1.113439e+183
-1.1125941e+183
-1.1136698e+183
-1.1145965e+183
-1.1126557e+183
-1.1136634e+183
-1.1146969e+183
-1.1136941e+183
-1.1143043e+183
-1.1163124e+183
-1.1196557e+183
-1.1175025e+183
-1.1122685e+183
-1.112887e+183
-1.1160268e+183
-1.1155676e+183
-1.1710569e+183
-1.1707765e+183
-1.1718508e+183
-1.1721662e+183
-1.1704355e+183
-1.1700855e+183
-1.1711422e+183
-1.171498e+183
-1.1734567e+183
-1.172272e+183
-1.1726346e+183
-1.1738242e+183
-1.1741868e+183
-1.1729943e+183
-1.173323e+183
-1.1745188e+183
-1.1697584e+183
-1.1693296e+183
-1.1703992e+183
-1.1708129e+183
-1.1688914e+183
-1.1685084e+183
-1.169615e+183
-1.1699856e+183
-1.171969e+183
-1.1707731e+183
-1.1711367e+183
-1.1723283e+183
-1.1727161e+183
-1.171535e+183
-1.1719342e+183
-1.1731064e+183
-1.1771889e+183
-1.175834e+183
-1.1762362e+183
-1.1776157e+183
-1.174501e+183
-1.173221e+183
-1.1735884e+183
-1.1748844e+183
-1.1743623e+183
-1.173971e+183
-1.1752705e+183
-1.1756663e+183
-1.1780393e+183
-1.1766376e+183
-1.177043e+183
-1.1784585e+183
-1.1757828e+183
-1.1754517e+183
-1.1767646e+183
-1.1770926e+183
-1.1760355e+183
-1.1747224e+183
-1.1750943e+183
-1.1764118e+183
-1.1788484e+183
-1.1774197e+183
-1.1777995e+183
-1.1792313e+183
-1.1795843e+183
-1.1781523e+183
-1.1784737e+183
-1.1799019e+183
-1.1728882e+183
-1.1725337e+183
-1.1737473e+183
-1.1741314e+183
-1.1675128e+183
-1.1671208e+183
-1.1682692e+183
-1.168655e+183
-1.1682197e+183
-1.1678791e+183
-1.1690032e+183
-1.1693318e+183
-1.1713282e+183
-1.1701616e+183
-1.1704842e+183
-1.1716615e+183
-1.1890734e+183
-1.1875825e+183
-1.1880767e+183
-1.1895585e+183
-1.1860622e+183
-1.1845439e+183
-1.1850387e+183
-1.186557e+183
-1.1860474e+183
-1.1855503e+183
-1.1870718e+183
-1.1875777e+183
-1.1900849e+183
-1.1885937e+183
-1.1890992e+183
-1.1905882e+183
-1.183012e+183
-1.181502e+183
-1.1819977e+183
-1.1835045e+183
-1.1800127e+183
-1.1785817e+183
-1.1790437e+183
-1.1805e+183
-1.1799285e+183
-1.1794928e+183
-1.18097e+183
-1.1814204e+183
-1.1840072e+183
-1.1824844e+183
-1.1829499e+183
-1.1844891e+183
-1.1910267e+183
-1.1895407e+183
-1.1899678e+183
-1.1914608e+183
-1.1880265e+183
-1.1864913e+183
-1.1868927e+183
-1.1884323e+183
-1.1876311e+183
-1.1872747e+183
-1.1888276e+183
-1.1892118e+183
-1.191908e+183
-1.1903845e+183
-1.190793e+183
-1.1923393e+183
-1.184924e+183
-1.183375e+183
-1.1837762e+183
-1.1853271e+183
-1.1807176e+183
-1.1803279e+183
-1.1818323e+183
-1.1822292e+183
-1.181388e+183
-1.1810729e+183
-1.1825875e+183
-1.1829071e+183
-1.1856981e+183
-1.1841399e+183
-1.184466e+183
-1.1860381e+183
-1.1602686e+183
-1.1598217e+183
-1.1606908e+183
-1.1611319e+183
-1.1594171e+183
-1.1590604e+183
-1.1599107e+183
-1.1602841e+183
-1.161731e+183
-1.1608035e+183
-1.1611946e+183
-1.1621385e+183
-1.162556e+183
-1.1616069e+183
-1.1620467e+183
-1.1629913e+183
-1.1587804e+183
-1.1585682e+183
-1.1595938e+183
-1.1639829e+183
-1.1635561e+183
-1.1645876e+183
-1.1649907e+183
-1.1637595e+183
-1.1627228e+183
-1.1631428e+183
-1.1641786e+183
-1.1659659e+183
-1.1648482e+183
-1.1652633e+183
-1.1663675e+183
-1.1667522e+183
-1.1656624e+183
-1.1660433e+183
-1.1671094e+183
-1.1520451e+183
-1.1486582e+183
-1.148758e+183
-1.1521097e+183
-1.1539131e+183
-1.1538235e+183
-1.1546762e+183
-1.1548609e+183
-1.1571517e+183
-1.1569637e+183
-1.1577495e+183
-1.1579479e+183
-1.1556528e+183
-1.1554705e+183
-1.156198e+183
-1.1563799e+183
-1.1551008e+183
-1.1541779e+183
-1.154614e+183
-1.1553953e+183
-1.1527172e+183
-1.148961e+183
-1.1523328e+183
-1.149222e+183
-1.1498215e+183
-1.1532542e+183
-1.1539276e+183
-1.1506513e+183
-1.1550223e+183
-1.1558604e+183
-1.1563162e+183
-1.1555984e+183
-1.1573603e+183
-1.156635e+183
-1.1570846e+183
-1.1578129e+183
-1.1565938e+183
-1.1558628e+183
-1.1561866e+183
-1.1569268e+183
-1.1577189e+183
-1.1573747e+183
-1.1582013e+183
-1.1585475e+183
-1.1585933e+183
-1.1581343e+183
-1.158957e+183
-1.1594089e+183
-1.1549597e+183
-1.1581673e+183
-1.1588615e+183
-1.1558848e+183
-1.1533896e+183
-1.1566958e+183
-1.1575198e+183
-1.1542077e+183
-1.1582965e+183
-1.1589778e+183
-1.1595483e+183
-1.1590012e+183
-1.1597114e+183
-1.1601495e+183
-1.160494e+183
-1.1602729e+183
-1.1517339e+183
-1.155203e+183
-1.1559505e+183
-1.1525621e+183
-1.1510901e+183
-1.1543398e+183
-1.1547022e+183
-1.1512535e+183
-1.1559961e+183
-1.1567975e+183
-1.1572787e+183
-1.1564653e+183
-1.1569662e+183
-1.1578192e+183
-1.1583679e+183
-1.1576555e+183
-1.1595375e+183
-1.1590616e+183
-1.1598651e+183
-1.1603313e+183
-1.158047e+183
-1.1575667e+183
-1.15829e+183
-1.1587659e+183
-1.1591017e+183
-1.1585779e+183
-1.1592777e+183
-1.1597928e+183
-1.1605422e+183
-1.1600316e+183
-1.160823e+183
-1.1613288e+183
-1.1610359e+183
-1.1607424e+183
-1.1613228e+183
-1.1615657e+183
-1.1602171e+183
-1.1596795e+183
-1.1603496e+183
-1.1608644e+183
-1.1615549e+183
-1.1610704e+183
-1.1618377e+183
-1.1622893e+183
-1.1621457e+183
-1.161948e+183
-1.1626317e+183
-1.1627828e+183
-1.1674136e+183
-1.1663724e+183
-1.1667906e+183
-1.1678072e+183
-1.1653463e+183
-1.1643712e+183
-1.1648188e+183
-1.1657763e+183
-1.1657884e+183
-1.1652988e+183
-1.1662478e+183
-1.166732e+183
-1.1682671e+183
-1.1672546e+183
-1.1677165e+183
-1.1687107e+183
-1.1634032e+183
-1.1624787e+183
-1.1629466e+183
-1.1638588e+183
-1.1615769e+183
-1.1607148e+183
-1.1611813e+183
-1.1620427e+183
-1.1621681e+183
-1.1616671e+183
-1.1625258e+183
-1.1630202e+183
-1.1643452e+183
-1.1634278e+183
-1.163918e+183
-1.1648335e+183
-1.1690455e+183
-1.1680695e+183
-1.1684055e+183
-1.1693845e+183
-1.1671137e+183
-1.1661902e+183
-1.1665304e+183
-1.1674354e+183
-1.1668698e+183
-1.1667634e+183
-1.1676892e+183
-1.1678503e+183
-1.1697073e+183
-1.1686878e+183
-1.1688855e+183
-1.1699491e+183
-1.1652634e+183
-1.1643675e+183
-1.1647369e+183
-1.1656178e+183
-1.1630728e+183
-1.1626529e+183
-1.1634895e+183
-1.1638812e+183
-1.1634819e+183
-1.1633671e+183
-1.1641425e+183
-1.1642279e+183
-1.1658458e+183
-1.1649716e+183
-1.1650435e+183
-1.165924e+183
-1.1970104e+183
-1.1953554e+183
-1.1948631e+183
-1.1910675e+183
-1.1920903e+183
-1.1915946e+183
-1.1931362e+183
-1.193629e+183
-1.1999262e+183
-1.1979747e+183
-1.1957991e+183
-1.1974633e+183
-1.1994077e+183
-1.1962903e+183
-1.2010364e+183
-1.1990512e+183
-1.1968013e+183
-1.198497e+183
-1.2004742e+183
-1.1973217e+183
-1.1939124e+183
-1.1934548e+183
-1.1955258e+183
-1.1950334e+183
-1.1929812e+183
-1.1925323e+183
-1.1945448e+183
-1.1940732e+183
-1.2010789e+183
-1.2016095e+183
-1.2028041e+183
-1.2033579e+183
-1.2051476e+183
-1.2069845e+183
-1.2045715e+183
-1.2021751e+183
-1.2039381e+183
-1.2045044e+183
-1.2027375e+183
-1.2081433e+183
-1.2057385e+183
-1.2075823e+183
-1.2062993e+183
-1.2088732e+183
-1.2108067e+183
-1.2127949e+183
-1.2148349e+183
-1.2094769e+183
-1.2114126e+183
-1.2119732e+183
-1.2100335e+183
-1.216002e+183
-1.2134033e+183
-1.2154429e+183
-1.2139607e+183
-1.2190869e+183
-1.2169365e+183
-1.2175452e+183
-1.2196931e+183
-1.2181014e+183
-1.2202496e+183
-1.2235538e+183
-1.2212954e+183
-1.2224615e+183
-1.2218998e+183
-1.2241539e+183
-1.2247197e+183
-1.2270257e+183
-1.2264545e+183
-1.2287882e+183
-1.2293679e+183
-1.2317483e+183
-1.2311574e+183
-1.2335967e+183
-1.2341946e+183
-1.2636058e+183
-1.2680642e+183
-1.268625e+183
-1.2641526e+183
-1.265239e+183
-1.2646886e+183
-1.2691558e+183
-1.2697202e+183
-1.2727979e+183
-1.2733513e+183
-1.2744966e+183
-1.2739062e+183
-1.2511416e+183
-1.2543761e+183
-1.2549325e+183
-1.2516926e+183
-1.2528471e+183
-1.2522706e+183
-1.2555001e+183
-1.2560697e+183
-1.2622396e+183
-1.2579336e+183
-1.2616704e+183
-1.2584906e+183
-1.2596429e+183
-1.2634072e+183
-1.2590598e+183
-1.2628162e+183
-1.252826e+183
-1.2490514e+183
-1.2522728e+183
-1.2495921e+183
-1.2558057e+183
-1.259504e+183
-1.2600314e+183
-1.2563443e+183
-1.2538379e+183
-1.2500948e+183
-1.2533188e+183
-1.2505998e+183
-1.2568608e+183
-1.2605725e+183
-1.2573851e+183
-1.2611073e+183
-1.2658101e+183
-1.2703099e+183
-1.2708992e+183
-1.266387e+183
-1.2751144e+183
-1.2757265e+183
-1.2669796e+183
-1.2675852e+183
-1.2715225e+183
-1.272149e+183
-1.2763719e+183
-1.2770287e+183
-1.2450435e+183
-1.2417754e+183
-1.2445233e+183
-1.2422926e+183
-1.2473386e+183
-1.2502674e+183
-1.2507636e+183
-1.2478425e+183
-1.2432372e+183
-1.2459878e+183
-1.2427873e+183
-1.2455292e+183
-1.2483398e+183
-1.2512778e+183
-1.2488111e+183
-1.2517665e+183
-1.2337802e+183
-1.2361383e+183
-1.2364353e+183
-1.2340592e+183
-1.234501e+183
-1.2343013e+183
-1.2366905e+183
-1.236907e+183
-1.2413211e+183
-1.2385303e+183
-1.2409877e+183
-1.2388424e+183
-1.2393549e+183
-1.2418684e+183
-1.2391187e+183
-1.2416133e+183
-1.2349099e+183
-1.2320459e+183
-1.2343784e+183
-1.2325756e+183
-1.2367385e+183
-1.2391575e+183
-1.2396645e+183
-1.2372509e+183
-1.2357822e+183
-1.2330373e+183
-1.2353697e+183
-1.2334369e+183
-1.2377351e+183
-1.2401639e+183
-1.2381584e+183
-1.2406011e+183
-1.2436365e+183
-1.2464106e+183
-1.246775e+183
-1.2439832e+183
-1.2522411e+183
-1.2496541e+183
-1.2492637e+183
-1.2526571e+183
-1.2443005e+183
-1.2445772e+183
-1.2471227e+183
-1.2474237e+183
-1.2530553e+183
-1.2503517e+183
-1.2534044e+183
-1.2500263e+183
-1.2373976e+183
-1.2379551e+183
-1.2406985e+183
-1.2401451e+183
-1.2390083e+183
-1.2417238e+183
-1.2384958e+183
-1.2412216e+183
-1.242964e+183
-1.2459027e+183
-1.2464401e+183
-1.2435062e+183
-1.2440191e+183
-1.2445194e+183
-1.246949e+183
-1.2474488e+183
-1.2327094e+183
-1.2298554e+183
-1.2321682e+183
-1.230408e+183
-1.2345132e+183
-1.2369286e+183
-1.2374657e+183
-1.2350482e+183
-1.2309591e+183
-1.2314839e+183
-1.2332634e+183
-1.2338072e+183
-1.2355995e+183
-1.2361627e+183
-1.2380161e+183
-1.2385846e+183
-1.2281489e+183
-1.2275981e+183
-1.2299505e+183
-1.2304924e+183
-1.2328774e+183
-1.2323312e+183
-1.2347718e+183
-1.2353237e+183
-1.2316195e+183
-1.2287125e+183
-1.2310498e+183
-1.2292808e+183
-1.2358736e+183
-1.233435e+183
-1.2339781e+183
-1.2363976e+183
-1.2427898e+183
-1.2395339e+183
-1.2422572e+183
-1.2400648e+183
-1.2479903e+183
-1.2450626e+183
-1.2456001e+183
-1.2485333e+183
-1.2411989e+183
-1.2439448e+183
-1.2406241e+183
-1.2433642e+183
-1.2491167e+183
-1.246179e+183
-1.2467619e+183
-1.2496984e+183
-1.2534114e+183
-1.2566443e+183
-1.2571712e+183
-1.2539175e+183
-1.2544416e+183
-1.2549504e+183
-1.2577135e+183
-1.2582419e+183
-1.2645779e+183
-1.2602325e+183
-1.2640087e+183
-1.2607803e+183
-1.261888e+183
-1.2657231e+183
-1.2613382e+183
-1.265153e+183
-1.2554455e+183
-1.2587572e+183
-1.2592295e+183
-1.2558897e+183
-1.2668018e+183
-1.2624265e+183
-1.2662846e+183
-1.2629214e+183
-1.2600612e+183
-1.2563091e+183
-1.2596689e+183
-1.2566809e+183
-1.2633823e+183
-1.2672842e+183
-1.2677167e+183
-1.2637947e+183
-1.2705612e+183
-1.2752232e+183
-1.2757933e+183
-1.271101e+183
-1.2807875e+183
-1.2801936e+183
-1.2813395e+183
-1.2818511e+183
-1.2716032e+183
-1.2720558e+183
-1.2763154e+183
-1.2767899e+183
-1.2682028e+183
-1.2727799e+183
-1.2733869e+183
-1.2687896e+183
-1.2693823e+183
-1.2739992e+183
-1.2699744e+183
-1.2746132e+183
-1.277667e+183
-1.2782893e+183
-1.2795621e+183
-1.2789197e+183
-1.1372906e+183
-1.137008e+183
-1.1384892e+183
-1.1374006e+183
-1.1498379e+183
-1.1492059e+183
-1.1489033e+183
-1.1490324e+183
-1.1345688e+183
-1.1340671e+183
-1.134416e+183
-1.134895e+183
-1.1359802e+183
-1.1353658e+183
-1.1343925e+183
-1.1349314e+183
-1.135296e+183
-1.1348073e+183
-1.1360821e+183
-1.1366256e+183
-1.1342993e+183
-1.1345081e+183
-1.1349768e+183
-1.1347689e+183
-1.1373944e+183
-1.1371881e+183
-1.1377167e+183
-1.1390623e+183
-1.149229e+183
-1.1492094e+183
-1.1497834e+183
-1.1507519e+183
-1.1392514e+183
-1.140238e+183
-1.1395459e+183
-1.1390358e+183
-1.1512991e+183
-1.1510595e+183
-1.1521504e+183
-1.151367e+183
-1.1412138e+183
-1.1409085e+183
-1.1528553e+183
-1.1532924e+183
-1.1435793e+183
-1.1420882e+183
-1.1551853e+183
-1.1541501e+183
-1.1381562e+183
-1.1379001e+183
-1.1384694e+183
-1.1387593e+183
-1.1389604e+183
-1.1403161e+183
-1.1396029e+183
-1.1410305e+183
-1.1370614e+183
-1.1365025e+183
-1.1360782e+183
-1.1365955e+183
-1.1373085e+183
-1.1363243e+183
-1.1368279e+183
-1.1378404e+183
-1.1320489e+183
-1.1323531e+183
-1.1354718e+183
-1.135043e+183
-1.1331779e+183
-1.1323049e+183
-1.1352645e+183
-1.1361896e+183
-1.1345433e+183
-1.1339374e+183
-1.1376026e+183
-1.1370062e+183
-1.1355786e+183
-1.1368887e+183
-1.1387344e+183
-1.1401255e+183
-1.1356086e+183
-1.1356304e+183
-1.1375336e+183
-1.1361789e+183
-1.1483769e+183
-1.1473063e+183
-1.1469806e+183
-1.1468443e+183
-1.146912e+183
-1.1465803e+183
-1.1354803e+183
-1.13491e+183
-1.1360071e+183
-1.1350655e+183
-1.1466543e+183
-1.1473706e+183
-1.1332518e+183
-1.1327012e+183
-1.1327593e+183
-1.1332924e+183
-1.1350873e+183
-1.1344404e+183
-1.1338166e+183
-1.1332492e+183
-1.1326726e+183
-1.1321425e+183
-1.1330075e+183
-1.1335786e+183
-1.1330865e+183
-1.132571e+183
-1.1319968e+183
-1.1325088e+183
-1.1352912e+183
-1.1361471e+183
-1.1475752e+183
-1.1470941e+183
-1.1351435e+183
-1.1357554e+183
-1.1469281e+183
-1.1475413e+183
-1.1361224e+183
-1.1479456e+183
-1.1361949e+183
-1.1481302e+183
-1.1383318e+183
-1.1369065e+183
-1.1488411e+183
-1.1499168e+183
-1.1323247e+183
-1.1330994e+183
-1.1328344e+183
-1.1336633e+183
-1.1322246e+183
-1.132847e+183
-1.1333473e+183
-1.1327193e+183
-1.1344589e+183
-1.133887e+183
-1.1352002e+183
-1.1358355e+183
-1.1336891e+183
-1.1331716e+183
-1.1332159e+183
-1.133757e+183
-1.130872e+183
-1.1319543e+183
-1.1339332e+183
-1.1351046e+183
-1.1302935e+183
-1.1303285e+183
-1.1333702e+183
-1.1332937e+183
-1.1302222e+183
-1.1309145e+183
-1.1333667e+183
-1.1342307e+183
-1.1301547e+183
-1.1299695e+183
-1.133016e+183
-1.1332155e+183
-1.1323303e+183
-1.1320455e+183
-1.1380961e+183
-1.1382295e+183
-1.1328934e+183
-1.1387215e+183
-1.1338635e+183
-1.1397364e+183
-1.1357686e+183
-1.1348184e+183
-1.1406646e+183
-1.141566e+183
-1.137124e+183
-1.1387017e+183
-1.1430034e+183
-1.1446252e+183
-1.17698e+183
-1.1767295e+183
-1.1780126e+183
-1.1782896e+183
-1.1764291e+183
-1.1760823e+183
-1.177328e+183
-1.177701e+183
-1.1807018e+183
-1.1793405e+183
-1.1796227e+183
-1.1809882e+183
-1.1799565e+183
-1.1786191e+183
-1.1790077e+183
-1.1803536e+183
-1.1757299e+183
-1.1753532e+183
-1.1765721e+183
-1.1769564e+183
-1.1749545e+183
-1.1744991e+183
-1.1757057e+183
-1.1761734e+183
-1.1782444e+183
-1.1769591e+183
-1.1774228e+183
-1.1787126e+183
-1.1791315e+183
-1.1778225e+183
-1.178229e+183
-1.1795489e+183
-1.1809374e+183
-1.1805061e+183
-1.1819253e+183
-1.1823717e+183
-1.1809516e+183
-1.179579e+183
-1.1800632e+183
-1.1814579e+183
-1.1838678e+183
-1.182385e+183
-1.1829108e+183
-1.1844066e+183
-1.1849187e+183
-1.1834044e+183
-1.1838647e+183
-1.1853908e+183
-1.1858132e+183
-1.1842922e+183
-1.1846891e+183
-1.186203e+183
-1.1827955e+183
-1.1813546e+183
-1.1817567e+183
-1.1831984e+183
-1.1823976e+183
-1.1821078e+183
-1.1835495e+183
-1.1838437e+183
-1.1865664e+183
-1.1850447e+183
-1.1853395e+183
-1.1868652e+183
-1.1791601e+183
-1.1788251e+183
-1.1802503e+183
-1.1805828e+183
-1.1764609e+183
-1.176137e+183
-1.1774451e+183
-1.1777786e+183
-1.1772758e+183
-1.1768481e+183
-1.1781687e+183
-1.1786015e+183
-1.1809774e+183
-1.1795503e+183
-1.1799737e+183
-1.1813882e+183
-1.173941e+183
-1.1736664e+183
-1.1748704e+183
-1.1751737e+183
-1.1715429e+183
-1.1713421e+183
-1.1724835e+183
-1.1727245e+183
-1.1721507e+183
-1.1717981e+183
-1.1730156e+183
-1.1734018e+183
-1.1755413e+183
-1.1742693e+183
-1.174673e+183
-1.1759592e+183
-1.1817769e+183
-1.1803686e+183
-1.1808087e+183
-1.1822247e+183
-1.1790041e+183
-1.1776815e+183
-1.1781076e+183
-1.1794311e+183
-1.1790702e+183
-1.1785675e+183
-1.1798979e+183
-1.1804219e+183
-1.1827457e+183
-1.1813002e+183
-1.1818403e+183
-1.1833047e+183
-1.1763751e+183
-1.1750986e+183
-1.1755464e+183
-1.1768009e+183
-1.1730621e+183
-1.1725758e+183
-1.1738178e+183
-1.1742963e+183
-1.174022e+183
-1.1735405e+183
-1.1747533e+183
-1.1752279e+183
-1.177253e+183
-1.1759849e+183
-1.1764707e+183
-1.1777466e+183
-1.1848209e+183
-1.1842457e+183
-1.1857853e+183
-1.1863704e+183
-1.1837046e+183
-1.1832392e+183
-1.1847583e+183
-1.1852361e+183
-1.1889877e+183
-1.1873736e+183
-1.1879591e+183
-1.1895682e+183
-1.1879501e+183
-1.1863383e+183
-1.18682e+183
-1.1884352e+183
-1.1828569e+183
-1.1824572e+183
-1.1839775e+183
-1.1843691e+183
-1.1820688e+183
-1.1817374e+183
-1.1832671e+183
-1.1835989e+183
-1.1851705e+183
-1.1848356e+183
-1.1864228e+183
-1.186765e+183
-1.1871396e+183
-1.1855447e+183
-1.1859326e+183
-1.1875291e+183
-1.189157e+183
-1.1887602e+183
-1.1903903e+183
-1.1907967e+183
-1.1883816e+183
-1.1880278e+183
-1.1896302e+183
-1.1900005e+183
-1.1916119e+183
-1.1912229e+183
-1.1927893e+183
-1.1932001e+183
-1.1936248e+183
-1.1920176e+183
-1.192439e+183
-1.1940601e+183
-1.1945157e+183
-1.1928922e+183
-1.1933753e+183
-1.1949901e+183
-1.1912406e+183
-1.1895911e+183
-1.1900798e+183
-1.1917309e+183
-1.1912047e+183
-1.1906289e+183
-1.1922777e+183
-1.1928473e+183
-1.195542e+183
-1.1939231e+183
-1.1944916e+183
-1.1961117e+183
-1.1884147e+183
-1.1881165e+183
-1.1896797e+183
-1.1899722e+183
-1.1877477e+183
-1.1873481e+183
-1.1889047e+183
-1.1893114e+183
-1.192121e+183
-1.1905056e+183
-1.1909046e+183
-1.1925088e+183
-1.1928553e+183
-1.191265e+183
-1.1915442e+183
-1.1931201e+183
-1.1869403e+183
-1.1864686e+183
-1.1880366e+183
-1.1885031e+183
-1.1869505e+183
-1.185393e+183
-1.1859444e+183
-1.187508e+183
-1.1901466e+183
-1.188538e+183
-1.1890981e+183
-1.1907042e+183
-1.1912354e+183
-1.1896303e+183
-1.1900956e+183
-1.1917028e+183
-1.1966626e+183
-1.1950533e+183
-1.195584e+183
-1.1971783e+183
-1.1934156e+183
-1.1917759e+183
-1.1923297e+183
-1.1939607e+183
-1.1933274e+183
-1.1928586e+183
-1.1944848e+183
-1.1949528e+183
-1.1977029e+183
-1.1961061e+183
-1.1965748e+183
-1.1981726e+183
-1.1947052e+183
-1.1944575e+183
-1.1960554e+183
-1.1962857e+183
-1.1953719e+183
-1.1937484e+183
-1.1941269e+183
-1.1957406e+183
-1.1985862e+183
-1.1969868e+183
-1.1973438e+183
-1.1989272e+183
-1.1992101e+183
-1.1976446e+183
-1.1978565e+183
-1.1993991e+183
-1.1650797e+183
-1.1654114e+183
-1.166299e+183
-1.165923e+183
-1.1668311e+183
-1.1678047e+183
-1.1682526e+183
-1.1672486e+183
-1.1647161e+183
-1.1643356e+183
-1.1655007e+183
-1.1650865e+183
-1.1659323e+183
-1.1668579e+183
-1.1673212e+183
-1.1663729e+183
-1.1639591e+183
-1.1636979e+183
-1.1647095e+183
-1.1644375e+183
-1.1635845e+183
-1.1635945e+183
-1.1643094e+183
-1.1643149e+183
-1.1651352e+183
-1.1660309e+183
-1.1660438e+183
-1.1651401e+183
-1.1652728e+183
-1.1661776e+183
-1.1664577e+183
-1.1655457e+183
-1.1692169e+183
-1.1691029e+183
-1.1702018e+183
-1.1703573e+183
-1.1670425e+183
-1.1670047e+183
-1.1680267e+183
-1.1680977e+183
-1.1674715e+183
-1.1671893e+183
-1.1682596e+183
-1.1685566e+183
-1.1705789e+183
-1.1694054e+183
-1.1697153e+183
-1.1709088e+183
-1.1683578e+183
-1.1678833e+183
-1.1689747e+183
-1.1694589e+183
-1.1713326e+183
-1.170136e+183
-1.1706246e+183
-1.1718211e+183
-1.172319e+183
-1.1711332e+183
-1.1716243e+183
-1.1728088e+183
-1.1693249e+183
-1.1688582e+183
-1.169967e+183
-1.1704499e+183
-1.1623079e+183
-1.1623316e+183
-1.162916e+183
-1.1628941e+183
-1.1612917e+183
-1.1613527e+183
-1.1618003e+183
-1.1617625e+183
-1.161419e+183
-1.1613095e+183
-1.1618118e+183
-1.1619839e+183
-1.1625893e+183
-1.1623794e+183
-1.16299e+183
-1.1632355e+183
-1.1614265e+183
-1.1607322e+183
-1.1608843e+183
-1.1607839e+183
-1.1605975e+183
-1.1612393e+183
-1.1586596e+183
-1.1601747e+183
-1.1598132e+183
-1.1581096e+183
-1.1576281e+183
-1.1594271e+183
-1.1594562e+183
-1.1576314e+183
-1.1609564e+183
-1.1604186e+183
-1.1607521e+183
-1.1608057e+183
-1.1604986e+183
-1.1610488e+183
-1.1578005e+183
-1.1605451e+183
-1.1606564e+183
-1.1584327e+183
-1.1577668e+183
-1.159658e+183
-1.1600133e+183
-1.1578381e+183
-1.1612035e+183
-1.1606079e+183
-1.1609747e+183
-1.1610607e+183
-1.1608141e+183
-1.1615799e+183
-1.1622506e+183
-1.161339e+183
-1.1611816e+183
-1.1614572e+183
-1.1615391e+183
-1.1621937e+183
-1.1631973e+183
-1.1629138e+183
-1.1635956e+183
-1.1639352e+183
-1.161753e+183
-1.1616292e+183
-1.1622615e+183
-1.1624741e+183
-1.1621546e+183
-1.1618814e+183
-1.1626826e+183
-1.1629481e+183
-1.1637321e+183
-1.1634587e+183
-1.1642491e+183
-1.1645446e+183
-1.1631533e+183
-1.1603137e+183
-1.1627654e+183
-1.1610976e+183
-1.1597091e+183
-1.1593035e+183
-1.1614739e+183
-1.1621714e+183
-1.1635733e+183
-1.1635167e+183
-1.1642774e+183
-1.1638686e+183
-1.1637918e+183
-1.1645621e+183
-1.1631582e+183
-1.1637404e+183
-1.1632079e+183
-1.162575e+183
-1.1629449e+183
-1.1632122e+183
-1.1583587e+183
-1.1612311e+183
-1.1611444e+183
-1.1589628e+183
-1.1585324e+183
-1.1606303e+183
-1.1607876e+183
-1.1585528e+183
-1.1622716e+183
-1.1616205e+183
-1.1618238e+183
-1.1620368e+183
-1.1617348e+183
-1.1624645e+183
-1.1630723e+183
-1.1621884e+183
-1.1621913e+183
-1.1625405e+183
-1.1622012e+183
-1.1628426e+183
-1.1632973e+183
-1.1629297e+183
-1.1637517e+183
-1.1640898e+183
-1.1627556e+183
-1.1625202e+183
-1.1632541e+183
-1.1635067e+183
-1.1642943e+183
-1.1640175e+183
-1.1648347e+183
-1.1651325e+183
-1.1649089e+183
-1.1645757e+183
-1.1654361e+183
-1.1657733e+183
-1.1639346e+183
-1.1636836e+183
-1.1644539e+183
-1.1647436e+183
-1.165551e+183
-1.1652559e+183
-1.1661093e+183
-1.1663953e+183
-1.1660891e+183
-1.1658248e+183
-1.1666436e+183
-1.1668864e+183
-1.164582e+183
-1.1642334e+183
-1.1650372e+183
-1.1653355e+183
-1.1667031e+183
-1.1663615e+183
-1.1673178e+183
-1.167664e+183
-1.1669803e+183
-1.1657222e+183
-1.1660397e+183
-1.1666415e+183
-1.1676224e+183
-1.1686537e+183
-1.1690308e+183
-1.1679815e+183
-1.168684e+183
-1.1683336e+183
-1.1693964e+183
-1.169751e+183
-1.170141e+183
-1.1697516e+183
-1.1708906e+183
-1.1712988e+183
-1.1732756e+183
-1.1720791e+183
-1.1725025e+183
-1.1737152e+183
-1.1741151e+183
-1.1728995e+183
-1.1732682e+183
-1.1744886e+183
-1.1708824e+183
-1.1705223e+183
-1.1716877e+183
-1.1720534e+183
-1.1700692e+183
-1.1690084e+183
-1.1692908e+183
-1.1703609e+183
-1.1673119e+183
-1.1670314e+183
-1.1679898e+183
-1.1682696e+183
-1.1677765e+183
-1.1675496e+183
-1.168504e+183
-1.1687201e+183
-1.1706072e+183
-1.1695279e+183
-1.1697354e+183
-1.1708157e+183
-1.1719631e+183
-1.1717508e+183
-1.1729398e+183
-1.1731572e+183
-1.172372e+183
-1.1711882e+183
-1.1714929e+183
-1.1726738e+183
-1.1748217e+183
-1.1735907e+183
-1.1739043e+183
-1.1751508e+183
-1.1754379e+183
-1.1741795e+183
-1.1744023e+183
-1.1756731e+183
-1.1697653e+183
-1.1693865e+183
-1.1703542e+183
-1.1707369e+183
-1.1690533e+183
-1.1687579e+183
-1.1696963e+183
-1.1700122e+183
-1.1724664e+183
-1.1713839e+183
-1.171771e+183
-1.1728589e+183
-1.1717651e+183
-1.1707006e+183
-1.1710312e+183
-1.1721054e+183
-1.1685272e+183
-1.1683527e+183
-1.1692446e+183
-1.1694334e+183
-1.1689112e+183
-1.1679909e+183
-1.1681877e+183
-1.1690948e+183
-1.1709752e+183
-1.1699e+183
-1.170076e+183
-1.1711314e+183
-1.1712818e+183
-1.1702286e+183
-1.1704257e+183
-1.1714862e+183
-1.1726362e+183
-1.1724258e+183
-1.1736267e+183
-1.1738419e+183
-1.1733148e+183
-1.1721201e+183
-1.172273e+183
-1.1734689e+183
-1.1758491e+183
-1.1745668e+183
-1.1747275e+183
-1.1760138e+183
-1.1761865e+183
-1.1748951e+183
-1.1751112e+183
-1.1764012e+183
-1.1766538e+183
-1.1753795e+183
-1.1757123e+183
-1.1769766e+183
-1.1741178e+183
-1.1729122e+183
-1.1732568e+183
-1.174458e+183
-1.1740155e+183
-1.1736197e+183
-1.1748236e+183
-1.1752169e+183
-1.1773446e+183
-1.1760788e+183
-1.1764681e+183
-1.1777315e+183
-1.1604957e+183
-1.1626808e+183
-1.1627086e+183
-1.1605196e+183
-1.1609663e+183
-1.1635115e+183
-1.1629698e+183
-1.1607736e+183
-1.1649849e+183
-1.1640216e+183
-1.1640764e+183
-1.1642579e+183
-1.1639661e+183
-1.1646259e+183
-1.1644606e+183
-1.1639363e+183
-1.1643717e+183
-1.1644071e+183
-1.1640075e+183
-1.1644681e+183
-1.1655642e+183
-1.164808e+183
-1.1650006e+183
-1.1657491e+183
-1.1665069e+183
-1.1663073e+183
-1.1671079e+183
-1.1673111e+183
-1.1667941e+183
-1.1666628e+183
-1.1674735e+183
-1.1676289e+183
-1.1651999e+183
-1.1651335e+183
-1.1658896e+183
-1.1659937e+183
-1.1645447e+183
-1.1641381e+183
-1.1645798e+183
-1.1648296e+183
-1.1643974e+183
-1.1648529e+183
-1.1605799e+183
-1.1627016e+183
-1.1629715e+183
-1.1607719e+183
-1.1613381e+183
-1.1635874e+183
-1.1645163e+183
-1.1619457e+183
-1.1654427e+183
-1.1648683e+183
-1.1651726e+183
-1.1654997e+183
-1.1655446e+183
-1.166328e+183
-1.166236e+183
-1.1659241e+183
-1.166723e+183
-1.1670849e+183
-1.1656036e+183
-1.1653641e+183
-1.1661522e+183
-1.1663924e+183
-1.1672249e+183
-1.1669675e+183
-1.1678323e+183
-1.1681088e+183
-1.1679368e+183
-1.1675566e+183
-1.1684394e+183
-1.1688205e+183
-1.1656684e+183
-1.1661096e+183
-1.1675186e+183
-1.1677287e+183
-1.1671429e+183
-1.1643712e+183
-1.1665883e+183
-1.1649354e+183
-1.1683952e+183
-1.1691527e+183
-1.1689506e+183
-1.1681628e+183
-1.1683565e+183
-1.1685152e+183
-1.16837e+183
-1.1676473e+183
-1.1675712e+183
-1.1679873e+183
-1.1680065e+183
-1.1686397e+183
-1.163151e+183
-1.1635677e+183
-1.1654117e+183
-1.1660063e+183
-1.162603e+183
-1.1647155e+183
-1.1649379e+183
-1.1626223e+183
-1.1664313e+183
-1.1671306e+183
-1.1664841e+183
-1.1658025e+183
-1.165922e+183
-1.1663079e+183
-1.1665558e+183
-1.1667427e+183
-1.16733e+183
-1.1674298e+183
-1.1683245e+183
-1.1671201e+183
-1.1677684e+183
-1.1674467e+183
-1.1682331e+183
-1.1685812e+183
-1.1670203e+183
-1.1666684e+183
-1.1675005e+183
-1.1678651e+183
-1.1686924e+183
-1.1683308e+183
-1.1691999e+183
-1.1695533e+183
-1.1693783e+183
-1.1690351e+183
-1.1698816e+183
-1.1702047e+183
-1.1700461e+183
-1.1697122e+183
-1.1704899e+183
-1.1708114e+183
-1.1689647e+183
-1.1682111e+183
-1.1686009e+183
-1.1693113e+183
-1.1691108e+183
-1.1689704e+183
-1.1696212e+183
-1.1697429e+183
-1.1704201e+183
-1.1703209e+183
-1.1710723e+183
-1.171154e+183
-1.1719667e+183
-1.1719004e+183
-1.1727754e+183
-1.1728251e+183
-1.1716703e+183
-1.1713803e+183
-1.1723245e+183
-1.1725807e+183
-1.174405e+183
-1.1733369e+183
-1.1735632e+183
-1.1746039e+183
-1.1747288e+183
-1.173721e+183
-1.1737427e+183
-1.1747281e+183
-1.1711118e+183
-1.1708101e+183
-1.1717818e+183
-1.172069e+183
-1.1711157e+183
-1.1701386e+183
-1.170491e+183
-1.1714706e+183
-1.1732399e+183
-1.1721506e+183
-1.1725089e+183
-1.1735975e+183
-1.1739015e+183
-1.1728167e+183
-1.1730938e+183
-1.1741725e+183
-1.1780792e+183
-1.1768313e+183
-1.1771714e+183
-1.178413e+183
-1.1755886e+183
-1.1743875e+183
-1.1747461e+183
-1.1759366e+183
-1.1753161e+183
-1.1750498e+183
-1.176236e+183
-1.1764985e+183
-1.1787162e+183
-1.1774705e+183
-1.1777296e+183
-1.1789787e+183
-1.1757772e+183
-1.1758064e+183
-1.176932e+183
-1.1768823e+183
-1.1767081e+183
-1.1755364e+183
-1.1757125e+183
-1.1768644e+183
-1.179173e+183
-1.1779256e+183
-1.178067e+183
-1.1792973e+183
-1.1793249e+183
-1.1781129e+183
-1.1780397e+183
-1.1792381e+183
-1.2105883e+183
-1.2125269e+183
-1.2111195e+183
-1.2130635e+183
-1.2150543e+183
-1.2145115e+183
-1.2165543e+183
-1.2170993e+183
-1.2116709e+183
-1.2122292e+183
-1.2136218e+183
-1.2141914e+183
-1.2176676e+183
-1.2161959e+183
-1.2182477e+183
-1.2156188e+183
-1.2186559e+183
-1.2192062e+183
-1.2213625e+183
-1.2208112e+183
-1.223025e+183
-1.2252861e+183
-1.2258375e+183
-1.2235764e+183
-1.2225098e+183
-1.2197743e+183
-1.2219314e+183
-1.2203537e+183
-1.2241449e+183
-1.2247189e+183
-1.2264047e+183
-1.2269752e+183
-1.2248164e+183
-1.2221291e+183
-1.222677e+183
-1.2242762e+183
-1.2209569e+183
-1.2215492e+183
-1.2231103e+183
-1.2237038e+183
-1.2275613e+183
-1.2258946e+183
-1.2281303e+183
-1.2253127e+183
-1.2264571e+183
-1.2269802e+183
-1.2291915e+183
-1.2286822e+183
-1.2145401e+183
-1.2165024e+183
-1.2139906e+183
-1.2159437e+183
-1.2134102e+183
-1.2128238e+183
-1.2147929e+183
-1.215369e+183
-1.2173743e+183
-1.2167974e+183
-1.2188489e+183
-1.2194314e+183
-1.2200097e+183
-1.2205669e+183
-1.2179502e+183
-1.2185094e+183
-1.203367e+183
-1.2050793e+183
-1.2038888e+183
-1.205593e+183
-1.2073696e+183
-1.2092156e+183
-1.2068577e+183
-1.2086961e+183
-1.2048825e+183
-1.2043888e+183
-1.2061098e+183
-1.2066212e+183
-1.2084304e+183
-1.210303e+183
-1.2079043e+183
-1.2097586e+183
-1.1977367e+183
-1.1971729e+183
-1.1988482e+183
-1.2008148e+183
-1.2029966e+183
-1.2013682e+183
-1.199408e+183
-1.2035535e+183
-1.1966144e+183
-1.1961274e+183
-1.1997227e+183
-1.2019108e+183
-1.1977834e+183
-1.2002523e+183
-1.1982954e+183
-1.2024448e+183
-1.203722e+183
-1.2042479e+183
-1.2047998e+183
-1.205343e+183
-1.2022835e+183
-1.2005445e+183
-1.1979288e+183
-1.2000345e+183
-1.2017672e+183
-1.198406e+183
-1.1988583e+183
-1.2010107e+183
-1.202772e+183
-1.2014722e+183
-1.1992948e+183
-1.2032465e+183
-1.1956828e+183
-1.1952463e+183
-1.196919e+183
-1.1973542e+183
-1.1948083e+183
-1.1943761e+183
-1.1960233e+183
-1.1964804e+183
-1.2053807e+183
-1.2059183e+183
-1.2077264e+183
-1.2071671e+183
-1.2090056e+183
-1.210892e+183
-1.2114786e+183
-1.2095824e+183
-1.2088366e+183
-1.2064748e+183
-1.2082924e+183
-1.2070167e+183
-1.2101569e+183
-1.2120578e+183
-1.2106961e+183
-1.2126014e+183
-1.1997893e+183
-1.1993181e+183
-1.2009845e+183
-1.2029507e+183
-1.2050999e+183
-1.2034279e+183
-1.201463e+183
-1.2055732e+183
-1.1987892e+183
-1.1982705e+183
-1.1999271e+183
-1.2018793e+183
-1.2040593e+183
-1.2024229e+183
-1.2004621e+183
-1.2045921e+183
-1.2058594e+183
-1.2063723e+183
-1.2068719e+183
-1.2073198e+183
-1.2113048e+183
-1.2093167e+183
-1.2110643e+183
-1.2095854e+183
-1.209758e+183
-1.2098617e+183
-1.2114608e+183
-1.2115683e+183
-1.2128659e+183
-1.2147139e+183
-1.2130694e+183
-1.2148977e+183
-1.2133448e+183
-1.2150655e+183
-1.2151942e+183
-1.2132269e+183
-1.2075411e+183
-1.2080491e+183
-1.2093677e+183
-1.2098695e+183
-1.2117324e+183
-1.2136327e+183
-1.2112328e+183
-1.2131375e+183
-1.2107469e+183
-1.208536e+183
-1.2103412e+183
-1.2089647e+183
-1.2121918e+183
-1.2140802e+183
-1.2144392e+183
-1.2125677e+183
-1.2038185e+183
-1.2059484e+183
-1.2062555e+183
-1.2041402e+183
-1.2076858e+183
-1.2079698e+183
-1.2064469e+183
-1.2081583e+183
-1.2082636e+183
-1.2065444e+183
-1.2043604e+183
-1.2044741e+183
-1.2009585e+183
-1.2007938e+183
-1.2024333e+183
-1.2025764e+183
-1.2005285e+183
-1.2002008e+183
-1.2018649e+183
-1.2021924e+183
-1.215077e+183
-1.2170438e+183
-1.2175345e+183
-1.2155684e+183
-1.2190532e+183
-1.2211054e+183
-1.2195409e+183
-1.2215907e+183
-1.2160058e+183
-1.2163467e+183
-1.217964e+183
-1.218297e+183
-1.2220172e+183
-1.2203017e+183
-1.2223582e+183
-1.2199669e+183
-1.2187598e+183
-1.2166126e+183
-1.218564e+183
-1.2168e+183
-1.2205722e+183
-1.2226355e+183
-1.2228472e+183
-1.2207753e+183
-1.2190741e+183
-1.2169683e+183
-1.2189283e+183
-1.2171075e+183
-1.2209501e+183
-1.2230305e+183
-1.2210985e+183
-1.2231823e+183
-1.2241234e+183
-1.2244742e+183
-1.2266391e+183
-1.2262754e+183
-1.2258312e+183
-1.2232049e+183
-1.225334e+183
-1.2236914e+183
-1.2275128e+183
-1.2297471e+183
-1.2302695e+183
-1.2280231e+183
-1.2284805e+183
-1.2288584e+183
-1.2307351e+183
-1.2311245e+183
-1.2271808e+183
-1.2247625e+183
-1.2269413e+183
-1.2249857e+183
-1.2314535e+183
-1.2291747e+183
-1.2294249e+183
-1.2317144e+183
-1.2253351e+183
-1.2275446e+183
-1.2251778e+183
-1.2273804e+183
-1.2319453e+183
-1.2296391e+183
-1.2298137e+183
-1.232132e+183
-1.2489237e+183
-1.2457197e+183
-1.2486609e+183
-1.2459648e+183
-1.2464285e+183
-1.246193e+183
-1.2491562e+183
-1.2494009e+183
-1.2516683e+183
-1.2547935e+183
-1.2519155e+183
-1.2550317e+183
-1.2524492e+183
-1.2553346e+183
-1.2556265e+183
-1.2521835e+183
-1.234826e+183
-1.2346772e+183
-1.2371006e+183
-1.2372645e+183
-1.2397511e+183
-1.2395691e+183
-1.2421025e+183
-1.2423037e+183
-1.2375893e+183
-1.2349758e+183
-1.2374286e+183
-1.2351218e+183
-1.2425022e+183
-1.2399318e+183
-1.2401087e+183
-1.2426963e+183
-1.2454831e+183
-1.2484069e+183
-1.245271e+183
-1.248178e+183
-1.2450539e+183
-1.2448328e+183
-1.2477016e+183
-1.2479428e+183
-1.2509135e+183
-1.2506534e+183
-1.2537274e+183
-1.2540063e+183
-1.2542763e+183
-1.2545303e+183
-1.2511663e+183
-1.2514077e+183
-1.2379677e+183
-1.2352954e+183
-1.2377738e+183
-1.2354791e+183
-1.2403072e+183
-1.2429118e+183
-1.2431324e+183
-1.240512e+183
-1.2384058e+183
-1.2356901e+183
-1.2381842e+183
-1.2359053e+183
-1.2407358e+183
-1.2433614e+183
-1.2409629e+183
-1.243593e+183
-1.2361383e+183
-1.2363751e+183
-1.2386444e+183
-1.238891e+183
-1.2414638e+183
-1.2441101e+183
-1.241209e+183
-1.2438469e+183
-1.2394506e+183
-1.2366424e+183
-1.2391644e+183
-1.2369228e+183
-1.2417445e+183
-1.2443987e+183
-1.2446974e+183
-1.2420368e+183
-1.2466907e+183
-1.249676e+183
-1.2499608e+183
-1.2469632e+183
-1.2527452e+183
-1.2559408e+183
-1.2562535e+183
-1.2530436e+183
-1.2472611e+183
-1.2475653e+183
-1.2502679e+183
-1.2505792e+183
-1.253362e+183
-1.2536813e+183
-1.2565837e+183
-1.2569138e+183
-1.2512371e+183
-1.247885e+183
-1.2509082e+183
-1.248205e+183
-1.2572569e+183
-1.2540172e+183
-1.254344e+183
-1.2575845e+183
-1.2485245e+183
-1.2515557e+183
-1.2579238e+183
-1.2546667e+183
-1.240058e+183
-1.2372212e+183
-1.2397541e+183
-1.2375182e+183
-1.2378291e+183
-1.2381258e+183
-1.2403679e+183
-1.2406631e+183
-1.2429652e+183
-1.245639e+183
-1.2423458e+183
-1.2426536e+183
-1.2450111e+183
-1.245323e+183
-1.2570236e+183
-1.2604228e+183
-1.2607417e+183
-1.2573224e+183
-1.2576094e+183
-1.2578785e+183
-1.2610464e+183
-1.2613315e+183
-1.2651432e+183
-1.2691437e+183
-1.2648388e+183
-1.2688177e+183
-1.2641761e+183
-1.264514e+183
-1.2681165e+183
-1.2684725e+183
-1.27762e+183
-1.2724739e+183
-1.2772241e+183
-1.2728509e+183
-1.2822895e+183
-1.2827008e+183
-1.2732173e+183
-1.2735666e+183
-1.2780075e+183
-1.2783837e+183
-1.2835208e+183
-1.2831098e+183
-1.2619085e+183
-1.2581525e+183
-1.261622e+183
-1.2584128e+183
-1.2654542e+183
-1.2694766e+183
-1.2698051e+183
-1.2657621e+183
-1.2625568e+183
-1.2587248e+183
-1.2622283e+183
-1.2590377e+183
-1.2660969e+183
-1.2701583e+183
-1.2664401e+183
-1.2705182e+183
-1.27916e+183
-1.2739259e+183
-1.2787706e+183
-1.2742807e+183
-1.283933e+183
-1.2843507e+183
-1.2750331e+183
-1.274653e+183
-1.2795531e+183
-1.2799579e+183
-1.285219e+183
-1.2847749e+183
-1.2646826e+183
-1.2607379e+183
-1.2643256e+183
-1.2610793e+183
-1.2614288e+183
-1.2682836e+183
-1.2724381e+183
-1.268647e+183
-1.2728076e+183
-1.259368e+183
-1.2629014e+183
-1.2596955e+183
-1.2632438e+183
-1.2671587e+183
-1.2712703e+183
-1.2668009e+183
-1.2708961e+183
-1.2639587e+183
-1.2600371e+183
-1.2636005e+183
-1.2603824e+183
-1.2675312e+183
-1.2716592e+183
-1.2720456e+183
-1.2679032e+183
-1.2856586e+183
-1.2860979e+183
-1.2754304e+183
-1.2803756e+183
-1.2807904e+183
-1.2758236e+183
-1.2762294e+183
-1.2812098e+183
-1.2766297e+183
-1.2816283e+183
-1.2869687e+183
-1.2865234e+183
-1.2874207e+183
-1.2878488e+183
-1.2824559e+183
-1.2770345e+183
-1.2820522e+183
-1.2774192e+183
-1.2828325e+183
-1.2882312e+183
-1.1466762e+183
-1.14585e+183
-1.1606268e+183
-1.1564282e+183
-1.1559214e+183
-1.1454331e+183
-1.1555865e+183
-1.1470707e+183
-1.1467483e+183
-1.1501453e+183
-1.1490153e+183
-1.1477854e+183
-1.1512193e+183
-1.1464261e+183
-1.1459746e+183
-1.149563e+183
-1.1460588e+183
-1.1466335e+183
-1.1475873e+183
-1.1473479e+183
-1.1500399e+183
-1.1484629e+183
-1.1465811e+183
-1.147406e+183
-1.1470302e+183
-1.1464262e+183
-1.1570667e+183
-1.1566163e+183
-1.1564842e+183
-1.1561072e+183
-1.1562809e+183
-1.1569234e+183
-1.1569338e+183
-1.1572965e+183
-1.1583332e+183
-1.1596131e+183
-1.1790996e+183
-1.1779183e+183
-1.1778008e+183
-1.1789748e+183
-1.1767749e+183
-1.1756904e+183
-1.1755878e+183
-1.1766594e+183
-1.1789034e+183
-1.1777178e+183
-1.1777161e+183
-1.1789142e+183
-1.1754673e+183
-1.1755114e+183
-1.1765761e+183
-1.1765585e+183
-1.1746557e+183
-1.173684e+183
-1.1735768e+183
-1.1745511e+183
-1.1727624e+183
-1.1718991e+183
-1.1717421e+183
-1.1726279e+183
-1.1744697e+183
-1.1734832e+183
-1.173402e+183
-1.1744024e+183
-1.1715089e+183
-1.1716007e+183
-1.1725197e+183
-1.1724332e+183
-1.171424e+183
-1.1714914e+183
-1.1724052e+183
-1.1723564e+183
-1.1714985e+183
-1.1714914e+183
-1.1724041e+183
-1.1723984e+183
-1.1743956e+183
-1.1733741e+183
-1.1733691e+183
-1.1743989e+183
-1.1744176e+183
-1.1733814e+183
-1.1733554e+183
-1.1744135e+183
-1.1755391e+183
-1.1755274e+183
-1.1766897e+183
-1.1767075e+183
-1.1766049e+183
-1.1754797e+183
-1.1755018e+183
-1.1766521e+183
-1.1790074e+183
-1.1777869e+183
-1.1778616e+183
-1.1791008e+183
-1.1791642e+183
-1.1779124e+183
-1.1779343e+183
-1.1791918e+183
-1.1665392e+183
-1.1676157e+183
-1.1671646e+183
-1.1656998e+183
-1.1686442e+183
-1.1683766e+183
-1.1690272e+183
-1.168433e+183
-1.1688195e+183
-1.1679444e+183
-1.1677484e+183
-1.1679002e+183
-1.1682658e+183
-1.167561e+183
-1.1690199e+183
-1.1674965e+183
-1.1646142e+183
-1.1665022e+183
-1.1643418e+183
-1.1659506e+183
-1.1701037e+183
-1.1703429e+183
-1.171068e+183
-1.1708837e+183
-1.1696647e+183
-1.1689907e+183
-1.1685934e+183
-1.1693556e+183
-1.1681816e+183
-1.1681904e+183
-1.1690573e+183
-1.1689845e+183
-1.1697754e+183
-1.1698743e+183
-1.1707043e+183
-1.1706066e+183
-1.1638191e+183
-1.1652508e+183
-1.164004e+183
-1.1654776e+183
-1.1672882e+183
-1.167449e+183
-1.167255e+183
-1.167075e+183
-1.1670421e+183
-1.167383e+183
-1.1670842e+183
-1.1670645e+183
-1.1673625e+183
-1.1672169e+183
-1.1672901e+183
-1.1673497e+183
-1.1639611e+183
-1.1643515e+183
-1.165652e+183
-1.1653543e+183
-1.1697744e+183
-1.1697764e+183
-1.170591e+183
-1.1706098e+183
-1.1689978e+183
-1.1682085e+183
-1.168178e+183
-1.1689711e+183
-1.1681084e+183
-1.1681493e+183
-1.1689373e+183
-1.1688887e+183
-1.1696859e+183
-1.1697455e+183
-1.1705944e+183
-1.170526e+183
-1.1696496e+183
-1.168879e+183
-1.168118e+183
-1.1682283e+183
-1.1689657e+183
-1.1672853e+183
-1.1674438e+183
-1.1673874e+183
-1.167326e+183
-1.1673754e+183
-1.1674658e+183
-1.165787e+183
-1.1644546e+183
-1.1657751e+183
-1.1643646e+183
-1.1792145e+183
-1.1779539e+183
-1.1767219e+183
-1.1755534e+183
-1.1744151e+183
-1.12596e+183
-1.1289519e+183
-1.1537076e+183
-1.150115e+183
-1.1967098e+183
-1.1938739e+183
-1.2054502e+183
-1.1754075e+183
-1.185178e+183
-1.1878901e+183
-1.1778309e+183
-1.1820227e+183
-1.1799492e+183
-1.1901075e+183
-1.1924126e+183
-1.1991621e+183
-1.2082436e+183
-1.2110636e+183
-1.2016771e+183
-1.2231038e+183
-1.221279e+183
-1.2192663e+183
-1.2174613e+183
-1.2222272e+183
-1.2261144e+183
-1.2246314e+183
-1.2207979e+183
-1.2300113e+183
-1.2284321e+183
-1.2325628e+183
-1.2342208e+183
-1.2268888e+183
-1.2250871e+183
-1.2309794e+183
-1.2291783e+183
-1.2138682e+183
-1.2195718e+183
-1.2176018e+183
-1.2157752e+183
-1.2233662e+183
-1.2213667e+183
-1.2253725e+183
-1.2274287e+183
-1.1472591e+183
-1.148321e+183
-1.1457151e+183
-1.1464838e+183
-1.1621991e+183
-1.1610101e+183
-1.1749075e+183
-1.176304e+183
-1.1589497e+183
-1.17234e+183
-1.1737433e+183
-1.1600255e+183
-1.1919299e+183
-1.1966223e+183
-1.1958665e+183
-1.191228e+183
-1.2008779e+183
-1.2000378e+183
-1.2045594e+183
-1.2054623e+183
-1.2062922e+183
-1.2017513e+183
-1.2026359e+183
-1.2070372e+183
-1.1927214e+183
-1.1974487e+183
-1.1983961e+183
-1.1936409e+183
-1.1936649e+183
-1.1930313e+183
-1.1885517e+183
-1.1891628e+183
-1.1897844e+183
-1.1943083e+183
-1.1951044e+183
-1.1905174e+183
-1.2029209e+183
-1.1984308e+183
-1.1992376e+183
-1.2037481e+183
-1.1971505e+183
-1.2015177e+183
-1.2022236e+183
-1.1977964e+183
-1.2085318e+183
-1.2131282e+183
-1.2121537e+183
-1.2076497e+183
-1.2113356e+183
-1.2105565e+183
-1.206158e+183
-1.2068863e+183
-1.2155427e+183
-1.2147351e+183
-1.2199232e+183
-1.2190286e+183
-1.2164356e+183
-1.2174978e+183
-1.2208812e+183
-1.221999e+183
-1.2116278e+183
-1.210913e+183
-1.2153979e+183
-1.2161111e+183
-1.2139844e+183
-1.2093626e+183
-1.2102277e+183
-1.21477e+183
-1.2191315e+183
-1.2183674e+183
-1.2228812e+183
-1.2236594e+183
-1.2197795e+183
-1.2204859e+183
-1.2250756e+183
-1.2243517e+183
-1.2282945e+183
-1.2305901e+183
-1.2309974e+183
-1.2286942e+183
-1.2330308e+183
-1.2326081e+183
-1.2350962e+183
-1.2346344e+183
-1.2321847e+183
-1.231748e+183
-1.2341829e+183
-1.2337408e+183
-1.2274802e+183
-1.2297448e+183
-1.2301833e+183
-1.2278921e+183
-1.229333e+183
-1.2290216e+183
-1.2313419e+183
-1.2316834e+183
-1.2320189e+183
-1.2296601e+183
-1.2299792e+183
-1.2323385e+183
-1.2362079e+183
-1.2340979e+183
-1.2344329e+183
-1.2365505e+183
-1.233406e+183
-1.2337592e+183
-1.235855e+183
-1.235489e+183
-1.2382376e+183
-1.238584e+183
-1.2407145e+183
-1.2403637e+183
-1.2374925e+183
-1.2395911e+183
-1.2399953e+183
-1.2378758e+183
-1.2425342e+183
-1.2448301e+183
-1.2452087e+183
-1.2428997e+183
-1.2417435e+183
-1.244017e+183
-1.2444373e+183
-1.2421543e+183
-1.2356482e+183
-1.2376797e+183
-1.2381768e+183
-1.2361136e+183
-1.2365986e+183
-1.2386746e+183
-1.2391807e+183
-1.237088e+183
-1.2407997e+183
-1.2430587e+183
-1.2435884e+183
-1.2413207e+183
-1.2397993e+183
-1.2420534e+183
-1.2425562e+183
-1.2403007e+183
-1.2312987e+183
-1.2307276e+183
-1.2327013e+183
-1.2332797e+183
-1.2301556e+183
-1.22959e+183
-1.2315547e+183
-1.2321229e+183
-1.2264541e+183
-1.2287324e+183
-1.2293032e+183
-1.2270299e+183
-1.2253547e+183
-1.2276079e+183
-1.2281714e+183
-1.2258889e+183
-1.2290792e+183
-1.2285211e+183
-1.2304389e+183
-1.2310243e+183
-1.227481e+183
-1.229358e+183
-1.2298949e+183
-1.2280017e+183
-1.2243853e+183
-1.2265914e+183
-1.2271233e+183
-1.2248756e+183
-1.223472e+183
-1.2256018e+183
-1.2261118e+183
-1.2239329e+183
-1.232875e+183
-1.2322714e+183
-1.2342361e+183
-1.234858e+183
-1.2317143e+183
-1.2311635e+183
-1.2330837e+183
-1.2336609e+183
-1.2384633e+183
-1.2362772e+183
-1.2369214e+183
-1.2391247e+183
-1.2350934e+183
-1.2356875e+183
-1.2378562e+183
-1.2372419e+183
-1.2354145e+183
-1.2334236e+183
-1.2340057e+183
-1.2360205e+183
-1.2351724e+183
-1.2345903e+183
-1.2366077e+183
-1.2371976e+183
-1.2397018e+183
-1.2381065e+183
-1.2374899e+183
-1.2403281e+183
-1.2387016e+183
-1.23931e+183
-1.2415595e+183
-1.2409357e+183
-1.1493924e+183
-1.150614e+183
-1.1662052e+183
-1.1805371e+183
-1.1819881e+183
-1.1676223e+183
-1.1647933e+183
-1.1634138e+183
-1.1776339e+183
-1.1791337e+183
-1.1519742e+183
-1.1533894e+183
-1.2164312e+183
-1.2157142e+183
-1.2200953e+183
-1.2207521e+183
-1.2179418e+183
-1.2171208e+183
-1.2214583e+183
-1.2223576e+183
-1.2302256e+183
-1.2257028e+183
-1.226622e+183
-1.2311258e+183
-1.2243427e+183
-1.2288308e+183
-1.2294784e+183
-1.2249743e+183
-1.2150382e+183
-1.2141001e+183
-1.219435e+183
-1.2185305e+183
-1.2131746e+183
-1.2123501e+183
-1.2176035e+183
-1.216786e+183
-1.2218795e+183
-1.2263994e+183
-1.2256786e+183
-1.2211047e+183
-1.2227772e+183
-1.2272686e+183
-1.2236826e+183
-1.2281764e+183
-1.2033556e+183
-1.2040965e+183
-1.2085346e+183
-1.2077418e+183
-1.199767e+183
-1.1990972e+183
-1.1943308e+183
-1.1949514e+183
-1.2013502e+183
-1.2004954e+183
-1.1956635e+183
-1.1965187e+183
-1.2048325e+183
-1.2093541e+183
-1.2102625e+183
-1.2056675e+183
-1.2123938e+183
-1.2077313e+183
-1.2084288e+183
-1.2131194e+183
-1.2063551e+183
-1.2109729e+183
-1.2117274e+183
-1.2070658e+183
-1.1978174e+183
-1.1971817e+183
-1.2019922e+183
-1.2026485e+183
-1.1984811e+183
-1.199145e+183
-1.204013e+183
-1.2033099e+183
-1.2349929e+183
-1.2326365e+183
-1.23308e+183
-1.2354226e+183
-1.2341137e+183
-1.2317453e+183
-1.232191e+183
-1.2345578e+183
-1.2383218e+183
-1.2366432e+183
-1.2362052e+183
-1.2387447e+183
-1.2370647e+183
-1.2375e+183
-1.2395994e+183
-1.2391637e+183
-1.2332665e+183
-1.2308889e+183
-1.2313272e+183
-1.2337026e+183
-1.2326045e+183
-1.2302466e+183
-1.2305278e+183
-1.2328973e+183
-1.2368054e+183
-1.2349805e+183
-1.2346869e+183
-1.2370941e+183
-1.2353517e+183
-1.2358031e+183
-1.2379218e+183
-1.2374661e+183
-1.2395141e+183
-1.2416689e+183
-1.2420977e+183
-1.2399614e+183
-1.2413056e+183
-1.2409956e+183
-1.2388545e+183
-1.2391482e+183
-1.2431897e+183
-1.2434982e+183
-1.2458158e+183
-1.2455054e+183
-1.2438581e+183
-1.2466031e+183
-1.2461782e+183
-1.2442844e+183
-1.2403582e+183
-1.24078e+183
-1.2429228e+183
-1.2424886e+183
-1.2446747e+183
-1.2474272e+183
-1.2469936e+183
-1.245107e+183
-1.2482832e+183
-1.2478576e+183
-1.2455339e+183
-1.2459614e+183
-1.2411989e+183
-1.2433453e+183
-1.2437675e+183
-1.2416305e+183
-1.2340329e+183
-1.236368e+183
-1.2367287e+183
-1.2343985e+183
-1.2357563e+183
-1.2334215e+183
-1.2337196e+183
-1.2360636e+183
-1.2405283e+183
-1.2384328e+183
-1.2387871e+183
-1.2408862e+183
-1.2378222e+183
-1.2381311e+183
-1.2402232e+183
-1.2399175e+183
-1.2347666e+183
-1.2375217e+183
-1.2370866e+183
-1.235191e+183
-1.2361069e+183
-1.2356475e+183
-1.2379733e+183
-1.2384271e+183
-1.2405012e+183
-1.2400394e+183
-1.2421327e+183
-1.2425984e+183
-1.2391546e+183
-1.2412541e+183
-1.2416712e+183
-1.2395775e+183
-1.2419542e+183
-1.242263e+183
-1.2444086e+183
-1.2440929e+183
-1.2429352e+183
-1.2425734e+183
-1.2450905e+183
-1.244724e+183
-1.2462845e+183
-1.2465964e+183
-1.2489146e+183
-1.2485975e+183
-1.246922e+183
-1.2492544e+183
-1.2496484e+183
-1.2473031e+183
-1.2454546e+183
-1.2433021e+183
-1.2458824e+183
-1.2437243e+183
-1.244628e+183
-1.2441722e+183
-1.246323e+183
-1.2467611e+183
-1.2489639e+183
-1.2485245e+183
-1.2508657e+183
-1.251303e+183
-1.247673e+183
-1.2500191e+183
-1.2504391e+183
-1.2480934e+183
-1.1718816e+183
-1.1719187e+183
-1.1810072e+183
-1.1808737e+183
-1.1879844e+183
-1.1877946e+183
-1.1939686e+183
-1.1942654e+183
-1.2245787e+183
-1.224263e+183
-1.2261237e+183
-1.2264524e+183
-1.2223517e+183
-1.2203514e+183
-1.2206444e+183
-1.2226702e+183
-1.2299493e+183
-1.2280183e+183
-1.2283688e+183
-1.2303106e+183
-1.2319637e+183
-1.2340747e+183
-1.2089738e+183
-1.205089e+183
-1.2054151e+183
-1.2093712e+183
-1.2126394e+183
-1.2152688e+183
-1.2155023e+183
-1.2182096e+183
-1.2179468e+183
-1.2417255e+183
-1.2413372e+183
-1.24363e+183
-1.2432502e+183
-1.2393941e+183
-1.2363647e+183
-1.2367506e+183
-1.2397832e+183
-1.2452268e+183
-1.2472845e+183
-1.2476565e+183
-1.245605e+183
-1.2495224e+183
-1.2517985e+183
-1.2521622e+183
-1.2498832e+183
-1.2478388e+183
-1.2500148e+183
-1.2503546e+183
-1.2481691e+183
-1.2485505e+183
-1.2507423e+183
-1.2511444e+183
-1.2489513e+183
-1.2534042e+183
-1.2530152e+183
-1.2553485e+183
-1.2557358e+183
-1.2522776e+183
-1.2526185e+183
-1.2549464e+183
-1.2545885e+183
-1.2567826e+183
-1.2594132e+183
-1.2590126e+183
-1.2571627e+183
-1.2579701e+183
-1.257571e+183
-1.2598269e+183
-1.2602336e+183
-1.2626259e+183
-1.2622086e+183
-1.264663e+183
-1.2650801e+183
-1.2613817e+183
-1.2638338e+183
-1.2642406e+183
-1.2617875e+183
-1.2654707e+183
-1.2633823e+183
-1.263034e+183
-1.2658164e+183
-1.2606445e+183
-1.2583907e+183
-1.2587686e+183
-1.2610071e+183
-1.2591556e+183
-1.2614028e+183
-1.2618072e+183
-1.2595515e+183
-1.2637763e+183
-1.2641806e+183
-1.2666447e+183
-1.2662213e+183
-1.2493626e+183
-1.2515539e+183
-1.2519789e+183
-1.2497924e+183
-1.2502172e+183
-1.2523657e+183
-1.2527289e+183
-1.250591e+183
-1.2545963e+183
-1.2549691e+183
-1.2573071e+183
-1.2569249e+183
-1.2538288e+183
-1.2561642e+183
-1.2565428e+183
-1.2542273e+183
-1.2681534e+183
-1.2708978e+183
-1.2685788e+183
-1.2712776e+183
-1.2664481e+183
-1.2660272e+183
-1.2672559e+183
-1.2668594e+183
-1.2689809e+183
-1.2717143e+183
-1.2693594e+183
-1.2720978e+183
-1.2745436e+183
-1.2741631e+183
-1.276256e+183
-1.2766537e+183
-1.2733241e+183
-1.2754119e+183
-1.2758228e+183
-1.27372e+183
-1.2810038e+183
-1.2785447e+183
-1.2789507e+183
-1.2814127e+183
-1.2776919e+183
-1.2801407e+183
-1.2805714e+183
-1.2781134e+183
-1.2827946e+183
-1.2832304e+183
-1.2857902e+183
-1.2853479e+183
-1.2836636e+183
-1.2866498e+183
-1.2862289e+183
-1.2840787e+183
-1.2802204e+183
-1.2826823e+183
-1.2831412e+183
-1.2806785e+183
-1.279351e+183
-1.281819e+183
-1.2822395e+183
-1.2797712e+183
-1.2844874e+183
-1.2848934e+183
-1.2874661e+183
-1.2870618e+183
-1.2853354e+183
-1.2857847e+183
-1.2883528e+183
-1.2879072e+183
-1.267994e+183
-1.2676263e+183
-1.2701082e+183
-1.2728415e+183
-1.2697096e+183
-1.2724226e+183
-1.2749093e+183
-1.2753328e+183
-1.2774556e+183
-1.2770366e+183
-1.2733078e+183
-1.2757896e+183
-1.2779083e+183
-1.2783671e+183
-1.2737765e+183
-1.2762411e+183
-1.2684159e+183
-1.2705511e+183
-1.2710038e+183
-1.2688541e+183
-1.2932021e+183
-1.2927088e+183
-1.2952902e+183
-1.297634e+183
-1.2947898e+183
-1.2971277e+183
-1.2992502e+183
-1.2997678e+183
-1.2936668e+183
-1.2888345e+183
-1.2913418e+183
-1.2892533e+183
-1.2917516e+183
-1.2940939e+183
-1.2879298e+183
-1.2903992e+183
-1.2883865e+183
-1.2908862e+183
-1.2981269e+183
-1.3002712e+183
-1.2957659e+183
-1.2962191e+183
-1.2985931e+183
-1.3007632e+183
-1.2896752e+183
-1.2921963e+183
-1.294551e+183
-1.2949982e+183
-1.2900872e+183
-1.2926345e+183
-1.2909778e+183
-1.2935271e+183
-1.2959216e+183
-1.2954556e+183
-1.2905299e+183
-1.2930786e+183
-1.3000213e+183
-1.3022158e+183
-1.297605e+183
-1.2980868e+183
-1.3005084e+183
-1.3027209e+183
-1.2971376e+183
-1.2995405e+183
-1.2966826e+183
-1.2990685e+183
-1.3012538e+183
-1.3017329e+183
-1.2509377e+183
-1.2534714e+183
-1.253104e+183
-1.251278e+183
-1.2516445e+183
-1.2538615e+183
-1.2542568e+183
-1.2520249e+183
-1.2565626e+183
-1.2561692e+183
-1.2589281e+183
-1.2585405e+183
-1.2553795e+183
-1.2581369e+183
-1.2577336e+183
-1.2557622e+183
-1.2599735e+183
-1.2603796e+183
-1.2626426e+183
-1.2622304e+183
-1.2646184e+183
-1.2675318e+183
-1.2670939e+183
-1.2650469e+183
-1.2654969e+183
-1.2679851e+183
-1.268429e+183
-1.2659375e+183
-1.260796e+183
-1.261201e+183
-1.2635027e+183
-1.2630809e+183
-1.2663672e+183
-1.2667588e+183
-1.2692135e+183
-1.2688292e+183
-1.2643342e+183
-1.2639269e+183
-1.2616243e+183
-1.2620267e+183
-1.2624592e+183
-1.262875e+183
-1.2651566e+183
-1.264751e+183
-1.2671597e+183
-1.2675717e+183
-1.2700642e+183
-1.2696348e+183
-1.2524169e+183
-1.2546424e+183
-1.2550496e+183
-1.2528226e+183
-1.2536473e+183
-1.253239e+183
-1.2554597e+183
-1.2558721e+183
-1.2582017e+183
-1.2577825e+183
-1.2601779e+183
-1.2605995e+183
-1.2569628e+183
-1.2573564e+183
-1.2597364e+183
-1.2593469e+183
-1.2693141e+183
-1.2714746e+183
-1.2742467e+183
-1.2719342e+183
-1.2746719e+183
-1.2697653e+183
-1.270641e+183
-1.2702155e+183
-1.2723533e+183
-1.2751028e+183
-1.2727447e+183
-1.2754636e+183
-1.2779448e+183
-1.2775677e+183
-1.2800962e+183
-1.279686e+183
-1.2767128e+183
-1.2771278e+183
-1.2792462e+183
-1.278825e+183
-1.2824435e+183
-1.2820122e+183
-1.2845138e+183
-1.2849611e+183
-1.2835969e+183
-1.2811296e+183
-1.2815654e+183
-1.2840532e+183
-1.2867472e+183
-1.2862691e+183
-1.2888557e+183
-1.289352e+183
-1.2872256e+183
-1.2898445e+183
-1.2903159e+183
-1.2876904e+183
-1.2907502e+183
-1.2885567e+183
-1.2881448e+183
-1.2911622e+183
-1.2854079e+183
-1.2828795e+183
-1.283317e+183
-1.2858371e+183
-1.2867431e+183
-1.2862876e+183
-1.2837783e+183
-1.2842397e+183
-1.2889879e+183
-1.2894406e+183
-1.2915917e+183
-1.2920546e+183
-1.2710101e+183
-1.2731294e+183
-1.2758799e+183
-1.2735477e+183
-1.2763031e+183
-1.2714057e+183
-1.2772636e+183
-1.2797417e+183
-1.2767881e+183
-1.2792835e+183
-1.2814287e+183
-1.2818918e+183
-1.278366e+183
-1.2788015e+183
-1.2809568e+183
-1.2805205e+183
-1.2718508e+183
-1.2740044e+183
-1.2744537e+183
-1.272289e+183
-1.2942429e+183
-1.2968163e+183
-1.2992305e+183
-1.2947145e+183
-1.29729e+183
-1.2997224e+183
-1.2983119e+183
-1.2987596e+183
-1.2937991e+183
-1.2963583e+183
-1.2933592e+183
-1.2959018e+183
-1.3009277e+183
-1.3033639e+183
-1.30048e+183
-1.3029023e+183
-1.30512e+183
-1.3055964e+183
-1.3019146e+183
-1.3043696e+183
-1.3014099e+183
-1.3038566e+183
-1.3061007e+183
-1.3066105e+183
-1.2919994e+183
-1.2945641e+183
-1.2914912e+183
-1.2940419e+183
-1.2964362e+183
-1.2969524e+183
-1.3010295e+183
-1.3032453e+183
-1.2986033e+183
-1.2991143e+183
-1.3015402e+183
-1.303756e+183
-1.2974558e+183
-1.2978959e+183
-1.3020307e+183
-1.3042261e+183
-1.2996067e+183
-1.3000507e+183
-1.3024624e+183
-1.3046664e+183
-1.2925036e+183
-1.2950678e+183
-1.292965e+183
-1.2955028e+183
-1.2590033e+183
-1.2586241e+183
-1.2610318e+183
-1.261389e+183
-1.2540452e+183
-1.2562836e+183
-1.2566716e+183
-1.2544253e+183
-1.2655481e+183
-1.2632592e+183
-1.2636136e+183
-1.2659208e+183
-1.2683641e+183
-1.2679708e+183
-1.2708989e+183
-1.27049e+183
-1.3057913e+183
-1.3052888e+183
-1.3092176e+183
-1.3072335e+183
-1.3097256e+183
-1.307736e+183
-1.3111715e+183
-1.3106593e+183
-1.3062615e+183
-1.3067183e+183
-1.3102134e+183
-1.3082102e+183
-1.3106849e+183
-1.3086745e+183
-1.3116678e+183
-1.3121519e+183
-1.3076665e+183
-1.3116679e+183
-1.3096387e+183
-1.3071842e+183
-1.3111739e+183
-1.3091517e+183
-1.3131412e+183
-1.3126454e+183
-1.3081764e+183
-1.3086889e+183
-1.3121745e+183
-1.3101525e+183
-1.3126712e+183
-1.3106596e+183
-1.3136446e+183
-1.3141439e+183
-1.3027631e+183
-1.3022515e+183
-1.3060773e+183
-1.3041428e+183
-1.306608e+183
-1.3046675e+183
-1.3080179e+183
-1.3074754e+183
-1.3012164e+183
-1.3017377e+183
-1.3049873e+183
-1.3030848e+183
-1.3055346e+183
-1.3036157e+183
-1.3069249e+183
-1.3063666e+183
-1.3037515e+183
-1.3032657e+183
-1.3071394e+183
-1.3051825e+183
-1.3076523e+183
-1.3056768e+183
-1.3085576e+183
-1.3090828e+183
-1.3047642e+183
-1.3042461e+183
-1.3086854e+183
-1.3067065e+183
-1.3081677e+183
-1.3061834e+183
-1.3096059e+183
-1.3101289e+183
-1.313124e+183
-1.3146712e+183
-1.3136159e+183
-1.315172e+183
-1.3121011e+183
-1.3136318e+183
-1.3126189e+183
-1.3141578e+183
-1.3146109e+183
-1.3161748e+183
-1.3141151e+183
-1.315675e+183
-1.3151143e+183
-1.3166735e+183
-1.3156116e+183
-1.3171675e+183
-1.3088748e+183
-1.3103564e+183
-1.3094269e+183
-1.3109198e+183
-1.3077471e+183
-1.3092035e+183
-1.3083149e+183
-1.3097843e+183
-1.3099764e+183
-1.3114816e+183
-1.310512e+183
-1.3120283e+183
-1.3110431e+183
-1.3125643e+183
-1.3115686e+183
-1.3130939e+183
-1.2265839e+183
-1.2276479e+183
-1.2296191e+183
-1.2285639e+183
-1.2305004e+183
-1.2325871e+183
-1.2337169e+183
-1.2315865e+183
-1.2305722e+183
-1.228499e+183
-1.2295256e+183
-1.2315807e+183
-1.2366418e+183
-1.2376786e+183
-1.2399184e+183
-1.2388964e+183
-1.235575e+183
-1.2345368e+183
-1.2324814e+183
-1.2334891e+183
-1.2377742e+183
-1.2366251e+183
-1.2345358e+183
-1.2356825e+183
-1.2387181e+183
-1.2398722e+183
-1.2421374e+183
-1.2409668e+183
-1.2366892e+183
-1.2378354e+183
-1.239925e+183
-1.2387823e+183
-1.2442511e+183
-1.2431422e+183
-1.2408729e+183
-1.2420021e+183
-1.2429797e+183
-1.2439479e+183
-1.2461881e+183
-1.2452227e+183
-1.2388487e+183
-1.2409121e+183
-1.2418608e+183
-1.2398009e+183
-1.2285835e+183
-1.2296371e+183
-1.2316492e+183
-1.2305588e+183
-1.2325507e+183
-1.2336561e+183
-1.2358349e+183
-1.2347075e+183
-1.2378494e+183
-1.2368611e+183
-1.2346787e+183
-1.2357046e+183
-1.230621e+183
-1.2326522e+183
-1.2336878e+183
-1.2316545e+183
-1.2453702e+183
-1.2464085e+183
-1.2484473e+183
-1.2474388e+183
-1.2522487e+183
-1.2512141e+183
-1.2534017e+183
-1.2544514e+183
-1.2542462e+183
-1.2532497e+183
-1.2554628e+183
-1.2564614e+183
-1.2473835e+183
-1.2504044e+183
-1.2494313e+183
-1.2483261e+183
-1.2410644e+183
-1.2420739e+183
-1.2441449e+183
-1.2431095e+183
-1.2468676e+183
-1.2490781e+183
-1.2501812e+183
-1.2479547e+183
-1.2512886e+183
-1.2490871e+183
-1.2501915e+183
-1.2523666e+183
-1.2431617e+183
-1.2452576e+183
-1.2463842e+183
-1.2442906e+183
-1.2631205e+183
-1.2615442e+183
-1.2604931e+183
-1.2641553e+183
-1.2579854e+183
-1.2556295e+183
-1.2566879e+183
-1.2590451e+183
-1.257706e+183
-1.2600753e+183
-1.2610924e+183
-1.2587123e+183
-1.2625817e+183
-1.2652129e+183
-1.2662619e+183
-1.2636126e+183
-1.2524316e+183
-1.2535083e+183
-1.2558515e+183
-1.2569385e+183
-1.2545823e+183
-1.2325171e+183
-1.233473e+183
-1.2355135e+183
-1.2345445e+183
-1.2353248e+183
-1.2343707e+183
-1.2373603e+183
-1.2364099e+183
-1.2365398e+183
-1.2375121e+183
-1.2396586e+183
-1.2386842e+183
-1.2384174e+183
-1.2415726e+183
-1.2405854e+183
-1.2393845e+183
-1.2406482e+183
-1.2416441e+183
-1.2437546e+183
-1.2427241e+183
-1.244821e+183
-1.2470855e+183
-1.2481431e+183
-1.2458664e+183
-1.246846e+183
-1.2478615e+183
-1.2501314e+183
-1.2491335e+183
-1.2425907e+183
-1.2447215e+183
-1.245731e+183
-1.243591e+183
-1.2444343e+183
-1.2453702e+183
-1.2474861e+183
-1.24656e+183
-1.2486772e+183
-1.2495942e+183
-1.251866e+183
-1.2509505e+183
-1.251193e+183
-1.2503995e+183
-1.2526737e+183
-1.2534707e+183
-1.2462013e+183
-1.2490655e+183
-1.2482972e+183
-1.2469643e+183
-1.2369773e+183
-1.2361148e+183
-1.2381598e+183
-1.2390496e+183
-1.2411075e+183
-1.2433331e+183
-1.2424087e+183
-1.2402e+183
-1.2449665e+183
-1.244176e+183
-1.2419499e+183
-1.2427694e+183
-1.2377959e+183
-1.2398801e+183
-1.2407012e+183
-1.2386186e+183
-1.2513558e+183
-1.2543575e+183
-1.2534151e+183
-1.2523055e+183
-1.2524353e+183
-1.2514109e+183
-1.2493105e+183
-1.2503397e+183
-1.2562017e+183
-1.2552206e+183
-1.257434e+183
-1.2584243e+183
-1.2572058e+183
-1.2594335e+183
-1.2604239e+183
-1.2581743e+183
-1.2531929e+183
-1.2552603e+183
-1.2561502e+183
-1.2540724e+183
-1.2556661e+183
-1.2548914e+183
-1.2569726e+183
-1.2577649e+183
-1.2616827e+183
-1.2608254e+183
-1.263107e+183
-1.2639837e+183
-1.2590934e+183
-1.2599862e+183
-1.2622316e+183
-1.2613343e+183
-1.2654011e+183
-1.2678139e+183
-1.268699e+183
-1.2662844e+183
-1.2659838e+183
-1.2635987e+183
-1.2645085e+183
-1.2669061e+183
-1.2711785e+183
-1.2694453e+183
-1.2685128e+183
-1.2721098e+183
-1.2703592e+183
-1.2730329e+183
-1.2739259e+183
-1.2712476e+183
-1.2616945e+183
-1.2640799e+183
-1.265065e+183
-1.2626834e+183
-1.2620686e+183
-1.2596874e+183
-1.2606878e+183
-1.2630736e+183
-1.2656004e+183
-1.2645917e+183
-1.2672405e+183
-1.2682497e+183
-1.2666044e+183
-1.2692588e+183
-1.2702555e+183
-1.2675916e+183
-1.2772753e+183
-1.2797708e+183
-1.2806673e+183
-1.2781506e+183
-1.2779199e+183
-1.2788664e+183
-1.2763481e+183
-1.2754207e+183
-1.2813548e+183
-1.2804415e+183
-1.2840927e+183
-1.2850222e+183
-1.2831481e+183
-1.2822678e+183
-1.2859279e+183
-1.2868079e+183
-1.2714542e+183
-1.2724966e+183
-1.2750383e+183
-1.2739625e+183
-1.277571e+183
-1.2765091e+183
-1.2760495e+183
-1.2770269e+183
-1.2795297e+183
-1.2785861e+183
-1.273525e+183
-1.2745008e+183
-1.2866235e+183
-1.2875566e+183
-1.2903416e+183
-1.2917294e+183
-1.2885999e+183
-1.2912603e+183
-1.2895318e+183
-1.2926415e+183
-1.2884603e+183
-1.2893402e+183
-1.2921524e+183
-1.290434e+183
-1.293006e+183
-1.291303e+183
-1.2935188e+183
-1.2943614e+183
-1.2957725e+183
-1.2971747e+183
-1.2394355e+183
-1.240064e+183
-1.242127e+183
-1.241478e+183
-1.2413292e+183
-1.2406954e+183
-1.2434086e+183
-1.242763e+183
-1.2436096e+183
-1.2442729e+183
-1.2464736e+183
-1.2457971e+183
-1.244928e+183
-1.2471536e+183
-1.2478281e+183
-1.245583e+183
-1.2520926e+183
-1.2513883e+183
-1.2492592e+183
-1.2499481e+183
-1.2506523e+183
-1.2499131e+183
-1.247847e+183
-1.2485522e+183
-1.2528675e+183
-1.2521017e+183
-1.2543687e+183
-1.2551575e+183
-1.2536275e+183
-1.2559398e+183
-1.2566716e+183
-1.25434e+183
-1.2518941e+183
-1.2540129e+183
-1.2545928e+183
-1.2524661e+183
-1.2506085e+183
-1.2527377e+183
-1.2533874e+183
-1.251261e+183
-1.2562436e+183
-1.2585768e+183
-1.2591843e+183
-1.2568352e+183
-1.2549916e+183
-1.257327e+183
-1.25796e+183
-1.2556244e+183
-1.242565e+183
-1.2419492e+183
-1.2440315e+183
-1.2446638e+183
-1.2468674e+183
-1.2491339e+183
-1.2484811e+183
-1.2462162e+183
-1.2481247e+183
-1.2475212e+183
-1.2497748e+183
-1.2503641e+183
-1.2431913e+183
-1.2453054e+183
-1.2459079e+183
-1.2437872e+183
-1.2609831e+183
-1.2633011e+183
-1.265281e+183
-1.2660889e+183
-1.2618093e+183
-1.2641216e+183
-1.2580173e+183
-1.2600238e+183
-1.2626078e+183
-1.2607483e+183
-1.2633193e+183
-1.2587475e+183
-1.256406e+183
-1.2592187e+183
-1.2583907e+183
-1.2572159e+183
-1.2649189e+183
-1.2668885e+183
-1.2676323e+183
-1.2656304e+183
-1.2690515e+183
-1.2713899e+183
-1.2721527e+183
-1.2698101e+183
-1.2697987e+183
-1.2674545e+183
-1.2705926e+183
-1.2682521e+183
-1.2731354e+183
-1.2723456e+183
-1.2755826e+183
-1.2747943e+183
-1.2739251e+183
-1.2746837e+183
-1.2771181e+183
-1.276369e+183
-1.2742179e+183
-1.2718665e+183
-1.2725274e+183
-1.2748888e+183
-1.2735403e+183
-1.2728734e+183
-1.2705276e+183
-1.271192e+183
-1.2792122e+183
-1.2767485e+183
-1.2774401e+183
-1.2799119e+183
-1.275389e+183
-1.2778181e+183
-1.2785195e+183
-1.2760683e+183
-1.2594167e+183
-1.2614237e+183
-1.2640221e+183
-1.2620675e+183
-1.2646477e+183
-1.260054e+183
-1.2606746e+183
-1.2626998e+183
-1.2653056e+183
-1.2633097e+183
-1.265917e+183
-1.2612821e+183
-1.2676549e+183
-1.268268e+183
-1.2703115e+183
-1.2696675e+183
-1.2683413e+183
-1.2663438e+183
-1.2669849e+183
-1.2689948e+183
-1.2818913e+183
-1.282686e+183
-1.284691e+183
-1.2869432e+183
-1.2838982e+183
-1.2861483e+183
-1.2882018e+183
-1.2890039e+183
-1.283462e+183
-1.2788595e+183
-1.2812502e+183
-1.2796007e+183
-1.2819803e+183
-1.2842024e+183
-1.2772792e+183
-1.2796642e+183
-1.2780713e+183
-1.2804693e+183
-1.2862136e+183
-1.2884753e+183
-1.2854632e+183
-1.2877167e+183
-1.2905483e+183
-1.289779e+183
-1.2803071e+183
-1.2826999e+183
-1.2849345e+183
-1.285631e+183
-1.2810009e+183
-1.2833921e+183
-1.2824111e+183
-1.2848057e+183
-1.2870584e+183
-1.2863351e+183
-1.2816964e+183
-1.2840883e+183
-1.2890912e+183
-1.2913731e+183
-1.2883662e+183
-1.2906446e+183
-1.2927245e+183
-1.2934523e+183
-1.2876581e+183
-1.2899374e+183
-1.286953e+183
-1.2892235e+183
-1.292017e+183
-1.2912983e+183
-1.2463321e+183
-1.246751e+183
-1.2488809e+183
-1.2484566e+183
-1.2506649e+183
-1.2529268e+183
-1.253384e+183
-1.2510985e+183
-1.251538e+183
-1.251929e+183
-1.2541956e+183
-1.2538146e+183
-1.2471468e+183
-1.2493005e+183
-1.2496838e+183
-1.2475076e+183
-1.244336e+183
-1.244849e+183
-1.2469638e+183
-1.2464554e+183
-1.2486547e+183
-1.2509073e+183
-1.2514257e+183
-1.249164e+183
-1.2497001e+183
-1.2502001e+183
-1.252426e+183
-1.2519412e+183
-1.2453707e+183
-1.2474947e+183
-1.2480047e+183
-1.2458758e+183
-1.2540631e+183
-1.2562237e+183
-1.2567295e+183
-1.2545502e+183
-1.2535519e+183
-1.2530288e+183
-1.2551639e+183
-1.2557006e+183
-1.2579799e+183
-1.2574242e+183
-1.2597774e+183
-1.2603419e+183
-1.2609014e+183
-1.2585213e+183
-1.2590449e+183
-1.2614438e+183
-1.2550717e+183
-1.2577342e+183
-1.2572509e+183
-1.2555423e+183
-1.2559766e+183
-1.2581811e+183
-1.2585892e+183
-1.2563649e+183
-1.2609524e+183
-1.2605244e+183
-1.2629551e+183
-1.2633986e+183
-1.2595729e+183
-1.2619815e+183
-1.2624831e+183
-1.2600624e+183
-1.265577e+183
-1.2676925e+183
-1.2704326e+183
-1.2672381e+183
-1.2699513e+183
-1.2651313e+183
-1.2641445e+183
-1.2667557e+183
-1.2694294e+183
-1.2662335e+183
-1.2689278e+183
-1.2646574e+183
-1.2718369e+183
-1.2713222e+183
-1.273366e+183
-1.2739039e+183
-1.2723719e+183
-1.2744493e+183
-1.2749592e+183
-1.2728623e+183
-1.261882e+183
-1.2624655e+183
-1.2645295e+183
-1.2671949e+183
-1.2639219e+183
-1.2665688e+183
-1.2689483e+183
-1.2709812e+183
-1.2716238e+183
-1.2695965e+183
-1.2722221e+183
-1.2678005e+183
-1.270199e+183
-1.2683709e+183
-1.2707514e+183
-1.2727868e+183
-1.2630425e+183
-1.2651133e+183
-1.2656754e+183
-1.2635941e+183
-1.2768143e+183
-1.2744301e+183
-1.2750111e+183
-1.2774077e+183
-1.2731955e+183
-1.2755667e+183
-1.2762076e+183
-1.273832e+183
-1.2818971e+183
-1.2794012e+183
-1.2800082e+183
-1.2825179e+183
-1.2781365e+183
-1.2806127e+183
-1.2812683e+183
-1.2787843e+183
-1.2756017e+183
-1.2780092e+183
-1.2785927e+183
-1.2761643e+183
-1.2791556e+183
-1.2767185e+183
-1.27723e+183
-1.2796675e+183
-1.2843273e+183
-1.2817901e+183
-1.2848578e+183
-1.2823122e+183
-1.2806238e+183
-1.2831441e+183
-1.2837499e+183
-1.2812192e+183
-1.2877871e+183
-1.2884465e+183
-1.2904785e+183
-1.2927566e+183
-1.2898107e+183
-1.2920882e+183
-1.2941634e+183
-1.2948496e+183
-1.2844197e+183
-1.2868377e+183
-1.2890921e+183
-1.2897545e+183
-1.2850556e+183
-1.2874874e+183
-1.2831271e+183
-1.2855378e+183
-1.2837854e+183
-1.286201e+183
-1.2918054e+183
-1.2941104e+183
-1.2911416e+183
-1.2934356e+183
-1.2955367e+183
-1.2962047e+183
-1.2904067e+183
-1.2857001e+183
-1.2881399e+183
-1.2863085e+183
-1.2887391e+183
-1.2910026e+183
-1.2874181e+183
-1.2898517e+183
-1.2868862e+183
-1.2893133e+183
-1.2915889e+183
-1.2921501e+183
-1.2942353e+183
-1.2965736e+183
-1.2936593e+183
-1.2959889e+183
-1.2981137e+183
-1.2986988e+183
-1.2930619e+183
-1.2953778e+183
-1.2924535e+183
-1.2947569e+183
-1.2968583e+183
-1.2974996e+183
-1.2916916e+183
-1.2953643e+183
-1.2935122e+183
-1.292463e+183
-1.2961299e+183
-1.2942838e+183
-1.2967055e+183
-1.2974755e+183
-1.2945955e+183
-1.2927445e+183
-1.2909178e+183
-1.2901151e+183
-1.2937959e+183
-1.2919368e+183
-1.2959252e+183
-1.29514e+183
-1.2932142e+183
-1.2939352e+183
-1.296894e+183
-1.2950386e+183
-1.2976299e+183
-1.295764e+183
-1.2982402e+183
-1.2989818e+183
-1.2953807e+183
-1.2946524e+183
-1.2990784e+183
-1.2972156e+183
-1.2983587e+183
-1.2964895e+183
-1.2997134e+183
-1.3004381e+183
-1.3000709e+183
-1.3006624e+183
-1.3038202e+183
-1.3019339e+183
-1.3044095e+183
-1.3025249e+183
-1.3057849e+183
-1.3051869e+183
-1.2988057e+183
-1.2994486e+183
-1.3031957e+183
-1.3013069e+183
-1.3025493e+183
-1.3006597e+183
-1.3045619e+183
-1.3039151e+183
-1.2960915e+183
-1.2967817e+183
-1.2998028e+183
-1.2979262e+183
-1.3005055e+183
-1.2986226e+183
-1.3011623e+183
-1.3018691e+183
-1.2981455e+183
-1.2974719e+183
-1.3012026e+183
-1.2993198e+183
-1.301875e+183
-1.2999928e+183
-1.3025653e+183
-1.3032431e+183
-1.2980524e+183
-1.299474e+183
-1.2988218e+183
-1.3002449e+183
-1.2964839e+183
-1.297904e+183
-1.2972655e+183
-1.2986916e+183
-1.2995896e+183
-1.3010133e+183
-1.3003344e+183
-1.301763e+183
-1.3010707e+183
-1.302498e+183
-1.3017956e+183
-1.3032262e+183
-1.3025218e+183
-1.3039565e+183
-1.3032314e+183
-1.3046709e+183
-1.3039303e+183
-1.3053702e+183
-1.3046097e+183
-1.3060527e+183
-1.3052833e+183
-1.3067266e+183
-1.3059299e+183
-1.3073751e+183
-1.3065582e+183
-1.3080002e+183
-1.3071598e+183
-1.3086049e+183
-1.2059035e+183
-1.2080376e+183
-1.2082502e+183
-1.2061189e+183
-1.208458e+183
-1.208652e+183
-1.2063143e+183
-1.2065044e+183
-1.2011327e+183
-1.1997003e+183
-1.1998962e+183
-1.2013309e+183
-1.2015377e+183
-1.2000972e+183
-1.2002566e+183
-1.2016978e+183
-1.198232e+183
-1.1967456e+183
-1.1969442e+183
-1.198425e+183
-1.1972725e+183
-1.1971359e+183
-1.1986161e+183
-1.1987731e+183
-1.2066654e+183
-1.2088396e+183
-1.2090369e+183
-1.2068502e+183
-1.2092312e+183
-1.2094388e+183
-1.207023e+183
-1.2072225e+183
-1.2020952e+183
-1.2005951e+183
-1.2007526e+183
-1.2022519e+183
-1.2018385e+183
-1.2003964e+183
-1.2004922e+183
-1.2019636e+183
-1.1989008e+183
-1.1973722e+183
-1.1974469e+183
-1.1989805e+183
-1.1976699e+183
-1.1975441e+183
-1.1990743e+183
-1.1992173e+183
-1.1952412e+183
-1.1937343e+183
-1.1939513e+183
-1.1954456e+183
-1.1922154e+183
-1.1907057e+183
-1.1909408e+183
-1.1924391e+183
-1.1912879e+183
-1.1911492e+183
-1.1926304e+183
-1.1927601e+183
-1.1956343e+183
-1.1941331e+183
-1.1942543e+183
-1.1957584e+183
-1.1959931e+183
-1.1944626e+183
-1.1945705e+183
-1.1961091e+183
-1.1914244e+183
-1.1913561e+183
-1.192817e+183
-1.1928879e+183
-1.1958359e+183
-1.194314e+183
-1.1943855e+183
-1.1959058e+183
-1.1915479e+183
-1.1914889e+183
-1.192958e+183
-1.1930471e+183
-1.2051119e+183
-1.2072591e+183
-1.207448e+183
-1.2053172e+183
-1.2076394e+183
-1.2078374e+183
-1.205513e+183
-1.2057164e+183
-1.2007464e+183
-1.1993049e+183
-1.1995131e+183
-1.2009441e+183
-1.2002924e+183
-1.1988421e+183
-1.1990659e+183
-1.2005102e+183
-1.1973595e+183
-1.1958427e+183
-1.1960797e+183
-1.1975844e+183
-1.1965527e+183
-1.1963278e+183
-1.1978195e+183
-1.1980414e+183
-1.2045792e+183
-1.2068086e+183
-1.2068752e+183
-1.2046802e+183
-1.2069715e+183
-1.2071003e+183
-1.2047967e+183
-1.2049499e+183
-1.1999084e+183
-1.1984214e+183
-1.1986352e+183
-1.200098e+183
-1.1995375e+183
-1.1980178e+183
-1.1982006e+183
-1.1997024e+183
-1.1964687e+183
-1.1949061e+183
-1.195115e+183
-1.1966633e+183
-1.1956033e+183
-1.1953606e+183
-1.1968926e+183
-1.1971307e+183
-1.1933372e+183
-1.1917753e+183
-1.1919989e+183
-1.1935537e+183
-1.1902122e+183
-1.1886696e+183
-1.1888858e+183
-1.1904324e+183
-1.1893448e+183
-1.1891128e+183
-1.1906667e+183
-1.1909135e+183
-1.1938026e+183
-1.1922367e+183
-1.1924843e+183
-1.1940475e+183
-1.1942938e+183
-1.1927356e+183
-1.1929978e+183
-1.1945387e+183
-1.189867e+183
-1.1895947e+183
-1.1911609e+183
-1.1914362e+183
-1.1904498e+183
-1.1901606e+183
-1.1917098e+183
-1.1919824e+183
-1.1948016e+183
-1.1932638e+183
-1.1935168e+183
-1.1950383e+183
-1.1790451e+183
-1.1786643e+183
-1.1799398e+183
-1.1803204e+183
-1.1782996e+183
-1.1779846e+183
-1.1792779e+183
-1.1795864e+183
-1.1820035e+183
-1.180617e+183
-1.1809153e+183
-1.1822902e+183
-1.1826333e+183
-1.1812637e+183
-1.1816304e+183
-1.1829878e+183
-1.1777555e+183
-1.1775492e+183
-1.1788703e+183
-1.1790718e+183
-1.1785215e+183
-1.1772018e+183
-1.1773747e+183
-1.1787037e+183
-1.1812251e+183
-1.1798544e+183
-1.1800547e+183
-1.1814316e+183
-1.181613e+183
-1.180228e+183
-1.1804164e+183
-1.1817971e+183
-1.187128e+183
-1.1856016e+183
-1.1858092e+183
-1.1873372e+183
-1.1840983e+183
-1.182643e+183
-1.1828526e+183
-1.1843069e+183
-1.183227e+183
-1.1830383e+183
-1.1844969e+183
-1.1846941e+183
-1.1875514e+183
-1.1860095e+183
-1.1862159e+183
-1.1877702e+183
-1.1844026e+183
-1.1840579e+183
-1.1855234e+183
-1.1858577e+183
-1.1849182e+183
-1.1834415e+183
-1.1837251e+183
-1.1852015e+183
-1.188014e+183
-1.1864487e+183
-1.186732e+183
-1.1882907e+183
-1.1885968e+183
-1.1870472e+183
-1.1873683e+183
-1.1889042e+183
-1.1802931e+183
-1.1800259e+183
-1.1812907e+183
-1.1815701e+183
-1.1797152e+183
-1.179378e+183
-1.1806386e+183
-1.1809786e+183
-1.1833112e+183
-1.1819489e+183
-1.1822879e+183
-1.1836364e+183
-1.1839422e+183
-1.1826012e+183
-1.1828762e+183
-1.1842038e+183
-1.1891842e+183
-1.1876685e+183
-1.1879386e+183
-1.1894325e+183
-1.1861701e+183
-1.1847218e+183
-1.1850338e+183
-1.1864635e+183
-1.1855635e+183
-1.1853214e+183
-1.1867278e+183
-1.1869447e+183
-1.1896579e+183
-1.1881824e+183
-1.1883688e+183
-1.189817e+183
-1.189899e+183
-1.1884734e+183
-1.1885506e+183
-1.1899693e+183
-1.1870761e+183
-1.1857215e+183
-1.1858143e+183
-1.1871542e+183
-1.1900223e+183
-1.1885918e+183
-1.1885869e+183
-1.1900478e+183
-1.1857657e+183
-1.1858332e+183
-1.1871801e+183
-1.1871537e+183
-1.1843774e+183
-1.1830625e+183
-1.1831676e+183
-1.1844738e+183
-1.1805981e+183
-1.1804829e+183
-1.1817545e+183
-1.1818692e+183
-1.1805141e+183
-1.1806099e+183
-1.1818696e+183
-1.1817839e+183
-1.1844909e+183
-1.1831706e+183
-1.1830798e+183
-1.1844056e+183
-1.13031e+183
-1.1300768e+183
-1.1304821e+183
-1.1316206e+183
-1.1415226e+183
-1.1412364e+183
-1.141362e+183
-1.1307768e+183
-1.1320657e+183
-1.1304279e+183
-1.1302459e+183
-1.1415743e+183
-1.1416238e+183
-1.14223e+183
-1.1432346e+183
-1.1277861e+183
-1.1288105e+183
-1.1292478e+183
-1.1281646e+183
-1.1274169e+183
-1.1277674e+183
-1.1280206e+183
-1.1276914e+183
-1.12757e+183
-1.1277669e+183
-1.1279097e+183
-1.1280891e+183
-1.1280546e+183
-1.1292673e+183
-1.1296817e+183
-1.1284243e+183
-1.1325648e+183
-1.1437303e+183
-1.1321389e+183
-1.1436293e+183
-1.1324217e+183
-1.1334652e+183
-1.1440485e+183
-1.1449546e+183
-1.1342546e+183
-1.1458211e+183
-1.1464655e+183
-1.1347148e+183
-1.1373765e+183
-1.1357318e+183
-1.1486337e+183
-1.1474358e+183
-1.1297077e+183
-1.1293595e+183
-1.1297471e+183
-1.1301237e+183
-1.1300469e+183
-1.1296702e+183
-1.1307146e+183
-1.1311151e+183
-1.1333341e+183
-1.1327932e+183
-1.1343075e+183
-1.1349226e+183
-1.1318602e+183
-1.1314202e+183
-1.1318306e+183
-1.1323228e+183
-1.1276923e+183
-1.1269731e+183
-1.1301094e+183
-1.1308282e+183
-1.1304948e+183
-1.1289256e+183
-1.1321854e+183
-1.1338678e+183
-1.1254742e+183
-1.1250657e+183
-1.1281837e+183
-1.1287266e+183
-1.1253167e+183
-1.1261468e+183
-1.1292415e+183
-1.1283735e+183
-1.1290202e+183
-1.1309294e+183
-1.1370781e+183
-1.1350513e+183
-1.126387e+183
-1.1274571e+183
-1.1334024e+183
-1.1324219e+183
-1.1711286e+183
-1.1708499e+183
-1.1719166e+183
-1.1722328e+183
-1.1705148e+183
-1.1701624e+183
-1.1712146e+183
-1.1715724e+183
-1.1735226e+183
-1.1723385e+183
-1.1727018e+183
-1.1738892e+183
-1.1742464e+183
-1.1730545e+183
-1.1733828e+183
-1.1745759e+183
-1.16983e+183
-1.1694019e+183
-1.1704653e+183
-1.1708803e+183
-1.1689663e+183
-1.1685827e+183
-1.1696851e+183
-1.1700573e+183
-1.1720325e+183
-1.1708378e+183
-1.171202e+183
-1.1723917e+183
-1.1727769e+183
-1.1715962e+183
-1.1719955e+183
-1.1731665e+183
-1.1772329e+183
-1.1758811e+183
-1.1762831e+183
-1.1776603e+183
-1.1745544e+183
-1.1732781e+183
-1.173645e+183
-1.174937e+183
-1.1744161e+183
-1.1740261e+183
-1.175323e+183
-1.1757175e+183
-1.1780868e+183
-1.1766859e+183
-1.1770895e+183
-1.1785041e+183
-1.1758328e+183
-1.1755052e+183
-1.1768153e+183
-1.1771396e+183
-1.1760915e+183
-1.1747816e+183
-1.1751522e+183
-1.1764656e+183
-1.178897e+183
-1.1774693e+183
-1.1778479e+183
-1.179278e+183
-1.179631e+183
-1.178199e+183
-1.178517e+183
-1.1799461e+183
-1.1729387e+183
-1.172584e+183
-1.1737937e+183
-1.1741794e+183
-1.1675863e+183
-1.167196e+183
-1.1683358e+183
-1.1687228e+183
-1.1682917e+183
-1.1679535e+183
-1.1690688e+183
-1.1693986e+183
-1.1713848e+183
-1.1702202e+183
-1.170544e+183
-1.1717187e+183
-1.1890763e+183
-1.187592e+183
-1.1880853e+183
-1.1895606e+183
-1.1860813e+183
-1.1845665e+183
-1.1850607e+183
-1.1865763e+183
-1.1860728e+183
-1.1855775e+183
-1.1870936e+183
-1.1875978e+183
-1.1900891e+183
-1.188605e+183
-1.1891081e+183
-1.1905893e+183
-1.1830415e+183
-1.181533e+183
-1.1820286e+183
-1.1835339e+183
-1.1800477e+183
-1.1786193e+183
-1.1790822e+183
-1.180536e+183
-1.1799687e+183
-1.1795349e+183
-1.1810106e+183
-1.1814592e+183
-1.1840421e+183
-1.1825207e+183
-1.1829844e+183
-1.184522e+183
-1.1910325e+183
-1.1895537e+183
-1.1899802e+183
-1.1914665e+183
-1.1880508e+183
-1.18652e+183
-1.1869191e+183
-1.1884558e+183
-1.1876624e+183
-1.1873049e+183
-1.1888527e+183
-1.1892396e+183
-1.1919165e+183
-1.1903992e+183
-1.1908101e+183
-1.1923488e+183
-1.1849603e+183
-1.1834129e+183
-1.1838119e+183
-1.1853611e+183
-1.180759e+183
-1.1803706e+183
-1.1818738e+183
-1.1822689e+183
-1.1814292e+183
-1.1811149e+183
-1.1826291e+183
-1.1829489e+183
-1.1857356e+183
-1.184178e+183
-1.1845048e+183
-1.1860764e+183
-1.1604181e+183
-1.1599679e+183
-1.1608242e+183
-1.1612697e+183
-1.1595621e+183
-1.1592051e+183
-1.1600419e+183
-1.1604168e+183
-1.1618527e+183
-1.1609273e+183
-1.1613184e+183
-1.1622592e+183
-1.1626784e+183
-1.1617325e+183
-1.1621735e+183
-1.1631137e+183
-1.158924e+183
-1.1587107e+183
-1.1597275e+183
-1.1605879e+183
-1.1614881e+183
-1.1624667e+183
-1.1634946e+183
-1.1645815e+183
-1.1640933e+183
-1.1636687e+183
-1.1646927e+183
-1.1650938e+183
-1.1638661e+183
-1.162836e+183
-1.1632535e+183
-1.1642827e+183
-1.1660525e+183
-1.1649433e+183
-1.1653563e+183
-1.1664521e+183
-1.1668379e+183
-1.165757e+183
-1.1661346e+183
-1.1671923e+183
-1.1534651e+183
-1.1516429e+183
-1.1517587e+183
-1.1535584e+183
-1.1546005e+183
-1.1551061e+183
-1.1549806e+183
-1.1544249e+183
-1.1550467e+183
-1.1552308e+183
-1.1573416e+183
-1.1571539e+183
-1.1579128e+183
-1.1581122e+183
-1.1559383e+183
-1.1557582e+183
-1.1564284e+183
-1.1566092e+183
-1.1548383e+183
-1.1554605e+183
-1.155347e+183
-1.1551716e+183
-1.1557388e+183
-1.1557566e+183
-1.1541779e+183
-1.1519571e+183
-1.1537814e+183
-1.1522756e+183
-1.1528453e+183
-1.1546939e+183
-1.1553295e+183
-1.1536169e+183
-1.1562038e+183
-1.1556421e+183
-1.1562271e+183
-1.1566824e+183
-1.1561533e+183
-1.1567568e+183
-1.1575892e+183
-1.1569222e+183
-1.1573748e+183
-1.1580475e+183
-1.1568236e+183
-1.1561501e+183
-1.1564707e+183
-1.1571558e+183
-1.157909e+183
-1.1575644e+183
-1.1583664e+183
-1.1587139e+183
-1.1587877e+183
-1.1583208e+183
-1.1591214e+183
-1.1595791e+183
-1.1580245e+183
-1.1596629e+183
-1.160231e+183
-1.1587567e+183
-1.1564289e+183
-1.1581639e+183
-1.1589853e+183
-1.1572317e+183
-1.1595601e+183
-1.1588684e+183
-1.1593435e+183
-1.1599069e+183
-1.1594695e+183
-1.1602875e+183
-1.1609995e+183
-1.1601925e+183
-1.1604813e+183
-1.1607981e+183
-1.1606148e+183
-1.161447e+183
-1.1548008e+183
-1.1566696e+183
-1.1573932e+183
-1.1556083e+183
-1.1540541e+183
-1.1557636e+183
-1.1561598e+183
-1.1543085e+183
-1.1572051e+183
-1.1566039e+183
-1.1571704e+183
-1.1576538e+183
-1.1570707e+183
-1.157656e+183
-1.1581776e+183
-1.1575979e+183
-1.1581974e+183
-1.1587338e+183
-1.1582091e+183
-1.1588401e+183
-1.1597388e+183
-1.1592632e+183
-1.1600395e+183
-1.1605078e+183
-1.1583453e+183
-1.1578646e+183
-1.1585311e+183
-1.1590084e+183
-1.1593935e+183
-1.1588748e+183
-1.1595179e+183
-1.1600311e+183
-1.1607429e+183
-1.1602336e+183
-1.1610011e+183
-1.1615074e+183
-1.1612991e+183
-1.1610339e+183
-1.1615632e+183
-1.1617822e+183
-1.1605221e+183
-1.1599822e+183
-1.1605989e+183
-1.1611157e+183
-1.1617685e+183
-1.1612837e+183
-1.1620261e+183
-1.1624777e+183
-1.1623306e+183
-1.1621537e+183
-1.1628111e+183
-1.1629449e+183
-1.1674984e+183
-1.1664643e+183
-1.1668832e+183
-1.1678937e+183
-1.1654489e+183
-1.1644806e+183
-1.1649291e+183
-1.1658811e+183
-1.1659036e+183
-1.1654124e+183
-1.1663496e+183
-1.1668382e+183
-1.1683499e+183
-1.1673444e+183
-1.167809e+183
-1.1687944e+183
-1.1635254e+183
-1.1626092e+183
-1.1630763e+183
-1.1639832e+183
-1.1617201e+183
-1.1608706e+183
-1.1613363e+183
-1.1621856e+183
-1.1623259e+183
-1.1618243e+183
-1.1626703e+183
-1.163166e+183
-1.1644725e+183
-1.1635605e+183
-1.164052e+183
-1.1649622e+183
-1.1691349e+183
-1.1681666e+183
-1.1685054e+183
-1.169477e+183
-1.1672243e+183
-1.1663101e+183
-1.1666515e+183
-1.167548e+183
-1.1669824e+183
-1.1668801e+183
-1.1677919e+183
-1.167953e+183
-1.1697915e+183
-1.1687792e+183
-1.1689774e+183
-1.1700316e+183
-1.1653999e+183
-1.1645104e+183
-1.1648792e+183
-1.1657538e+183
-1.163241e+183
-1.1628216e+183
-1.1636438e+183
-1.1640351e+183
-1.1636287e+183
-1.1635284e+183
-1.1642888e+183
-1.1643623e+183
-1.1659753e+183
-1.1651078e+183
-1.1651712e+183
-1.1660467e+183
-1.1973976e+183
-1.1954182e+183
-1.1949279e+183
-1.1910566e+183
-1.1920787e+183
-1.1915842e+183
-1.1931252e+183
-1.1936169e+183
-1.2000932e+183
-1.1983763e+183
-1.1958671e+183
-1.1978611e+183
-1.1995729e+183
-1.1963591e+183
-1.2012084e+183
-1.1994687e+183
-1.196874e+183
-1.1989071e+183
-1.2006447e+183
-1.1973966e+183
-1.1939044e+183
-1.1934461e+183
-1.195517e+183
-1.195024e+183
-1.1929714e+183
-1.1925223e+183
-1.1945346e+183
-1.1940626e+183
-1.2011443e+183
-1.2016767e+183
-1.2028304e+183
-1.2033859e+183
-1.2051591e+183
-1.2069897e+183
-1.2045821e+183
-1.202244e+183
-1.2039664e+183
-1.2045333e+183
-1.2028068e+183
-1.2081476e+183
-1.2057496e+183
-1.2075871e+183
-1.2063103e+183
-1.2088752e+183
-1.2108088e+183
-1.2127967e+183
-1.2148369e+183
-1.2094791e+183
-1.2114151e+183
-1.2119765e+183
-1.2100375e+183
-1.2160048e+183
-1.2134053e+183
-1.215445e+183
-1.213964e+183
-1.2190903e+183
-1.2169392e+183
-1.2175479e+183
-1.2196964e+183
-1.2181051e+183
-1.2202536e+183
-1.2235564e+183
-1.2212981e+183
-1.2224645e+183
-1.2219024e+183
-1.2241564e+183
-1.2247221e+183
-1.2270272e+183
-1.2264564e+183
-1.2287902e+183
-1.2293693e+183
-1.2317445e+183
-1.2311541e+183
-1.2335822e+183
-1.2341797e+183
-1.1545206e+183
-1.1539668e+183
-1.1536941e+183
-1.1538006e+183
-1.1440374e+183
-1.1433779e+183
-1.1435988e+183
-1.144329e+183
-1.1452814e+183
-1.1442663e+183
-1.1436255e+183
-1.1443843e+183
-1.1449e+183
-1.1442681e+183
-1.1452632e+183
-1.1461448e+183
-1.1437539e+183
-1.1437392e+183
-1.1444222e+183
-1.1443246e+183
-1.1539622e+183
-1.154016e+183
-1.1545654e+183
-1.155452e+183
-1.1560101e+183
-1.1558556e+183
-1.1568995e+183
-1.1562423e+183
-1.1576263e+183
-1.1581501e+183
-1.1598266e+183
-1.1589776e+183
-1.1476859e+183
-1.147242e+183
-1.1481e+183
-1.1484674e+183
-1.1483958e+183
-1.1493279e+183
-1.1493354e+183
-1.1505546e+183
-1.1465373e+183
-1.1456421e+183
-1.1455236e+183
-1.1462064e+183
-1.146666e+183
-1.1458463e+183
-1.1464782e+183
-1.1474591e+183
-1.1420721e+183
-1.1421175e+183
-1.1467529e+183
-1.1465999e+183
-1.143237e+183
-1.1424311e+183
-1.1469223e+183
-1.1477992e+183
-1.1447518e+183
-1.1439989e+183
-1.149382e+183
-1.1485941e+183
-1.1457124e+183
-1.1467264e+183
-1.1504729e+183
-1.1515263e+183
-1.1528171e+183
-1.1520162e+183
-1.1514647e+183
-1.1513581e+183
-1.1514025e+183
-1.1511742e+183
-1.1512216e+183
-1.1519423e+183
-1.1424553e+183
-1.1416711e+183
-1.1415613e+183
-1.142455e+183
-1.144117e+183
-1.1430117e+183
-1.1428997e+183
-1.1420954e+183
-1.1420579e+183
-1.1412813e+183
-1.1418636e+183
-1.1428755e+183
-1.1422785e+183
-1.1414569e+183
-1.1411041e+183
-1.1418328e+183
-1.1521449e+183
-1.1518424e+183
-1.1516374e+183
-1.1522971e+183
-1.1526746e+183
-1.1528968e+183
-1.1535747e+183
-1.1545754e+183
-1.1415039e+183
-1.1419598e+183
-1.1422226e+183
-1.142926e+183
-1.1414969e+183
-1.1419832e+183
-1.1427695e+183
-1.1421747e+183
-1.1440707e+183
-1.1432269e+183
-1.1441735e+183
-1.1453035e+183
-1.1431489e+183
-1.1423362e+183
-1.1425796e+183
-1.1433194e+183
-1.1408106e+183
-1.1417179e+183
-1.1454563e+183
-1.1464558e+183
-1.140196e+183
-1.1400264e+183
-1.1445677e+183
-1.1447506e+183
-1.1397583e+183
-1.1401568e+183
-1.144399e+183
-1.144975e+183
-1.1397998e+183
-1.1396484e+183
-1.1441701e+183
-1.1443785e+183
-1.1527714e+183
-1.1493022e+183
-1.1493588e+183
-1.1533116e+183
-1.1492884e+183
-1.1494869e+183
-1.1540203e+183
-1.1497418e+183
-1.1501144e+183
-1.1550968e+183
-1.1506952e+183
-1.1514705e+183
-1.1561524e+183
-1.152105e+183
-1.151873e+183
-1.1572948e+183
-1.1532712e+183
-1.1525109e+183
-1.1587544e+183
-1.1539966e+183
-1.1548567e+183
-1.1601751e+183
-1.1556922e+183
-1.1564553e+183
-1.1770116e+183
-1.1767621e+183
-1.1780418e+183
-1.178319e+183
-1.1764606e+183
-1.1761136e+183
-1.1773562e+183
-1.1777301e+183
-1.1807279e+183
-1.1793666e+183
-1.1796493e+183
-1.1810137e+183
-1.1799825e+183
-1.1786447e+183
-1.1790339e+183
-1.180379e+183
-1.17576e+183
-1.1753835e+183
-1.1765997e+183
-1.1769853e+183
-1.174984e+183
-1.1745305e+183
-1.1757334e+183
-1.1761999e+183
-1.1782683e+183
-1.1769832e+183
-1.1774463e+183
-1.1787353e+183
-1.1791577e+183
-1.177848e+183
-1.178256e+183
-1.179576e+183
-1.1809624e+183
-1.1805303e+183
-1.1819481e+183
-1.1823949e+183
-1.1809715e+183
-1.1796006e+183
-1.180084e+183
-1.1814772e+183
-1.1838876e+183
-1.1824043e+183
-1.1829297e+183
-1.1844257e+183
-1.184941e+183
-1.1834266e+183
-1.183887e+183
-1.1854129e+183
-1.185835e+183
-1.1843145e+183
-1.1847102e+183
-1.186224e+183
-1.1828185e+183
-1.1813791e+183
-1.1817804e+183
-1.1832204e+183
-1.1824207e+183
-1.1821317e+183
-1.1835717e+183
-1.1838647e+183
-1.186588e+183
-1.185066e+183
-1.1853595e+183
-1.1868851e+183
-1.1791812e+183
-1.1788457e+183
-1.1802721e+183
-1.1806046e+183
-1.1764818e+183
-1.1761572e+183
-1.1774647e+183
-1.1777994e+183
-1.1772967e+183
-1.1768695e+183
-1.1781886e+183
-1.1786205e+183
-1.1809978e+183
-1.17957e+183
-1.1799921e+183
-1.1814065e+183
-1.173964e+183
-1.173691e+183
-1.1748934e+183
-1.1751964e+183
-1.1715707e+183
-1.1713713e+183
-1.1725107e+183
-1.1727504e+183
-1.1721783e+183
-1.1718253e+183
-1.1730408e+183
-1.1734283e+183
-1.1755645e+183
-1.174292e+183
-1.174697e+183
-1.1759821e+183
-1.1817969e+183
-1.1803884e+183
-1.1808293e+183
-1.1822454e+183
-1.1790252e+183
-1.1777043e+183
-1.1781309e+183
-1.1794529e+183
-1.1790933e+183
-1.1785916e+183
-1.1799193e+183
-1.1804428e+183
-1.182767e+183
-1.1813206e+183
-1.1818603e+183
-1.1833248e+183
-1.1764005e+183
-1.1751241e+183
-1.175573e+183
-1.1768266e+183
-1.1730936e+183
-1.1726069e+183
-1.1738461e+183
-1.1743262e+183
-1.1740526e+183
-1.1735721e+183
-1.1747826e+183
-1.175257e+183
-1.1772801e+183
-1.1760119e+183
-1.1764971e+183
-1.1777725e+183
-1.1848394e+183
-1.1842653e+183
-1.1858047e+183
-1.1863887e+183
-1.1837235e+183
-1.1832572e+183
-1.1847763e+183
-1.1852548e+183
-1.1890049e+183
-1.1873918e+183
-1.1879757e+183
-1.1895838e+183
-1.1879666e+183
-1.1863554e+183
-1.1868372e+183
-1.1884512e+183
-1.1828739e+183
-1.1824763e+183
-1.1839962e+183
-1.1843856e+183
-1.1820896e+183
-1.1817583e+183
-1.1832882e+183
-1.1836197e+183
-1.18519e+183
-1.1848556e+183
-1.1864416e+183
-1.1867834e+183
-1.1871565e+183
-1.1855625e+183
-1.1859481e+183
-1.1875437e+183
-1.1891682e+183
-1.1887735e+183
-1.1904015e+183
-1.1908058e+183
-1.1883961e+183
-1.1880428e+183
-1.1896429e+183
-1.1900125e+183
-1.1916184e+183
-1.1912301e+183
-1.192791e+183
-1.193201e+183
-1.1936255e+183
-1.1920237e+183
-1.1924431e+183
-1.1940587e+183
-1.1945148e+183
-1.1928974e+183
-1.1933794e+183
-1.1949888e+183
-1.1912512e+183
-1.1896038e+183
-1.1900918e+183
-1.1917405e+183
-1.1912165e+183
-1.1906422e+183
-1.1922892e+183
-1.1928574e+183
-1.1955436e+183
-1.1939298e+183
-1.1944967e+183
-1.1961116e+183
-1.1884328e+183
-1.1881361e+183
-1.1896989e+183
-1.1899897e+183
-1.1877669e+183
-1.187367e+183
-1.1889232e+183
-1.18933e+183
-1.1921381e+183
-1.1905232e+183
-1.1909217e+183
-1.1925247e+183
-1.1928717e+183
-1.1912825e+183
-1.1915603e+183
-1.193135e+183
-1.1869605e+183
-1.1864893e+183
-1.188057e+183
-1.1885227e+183
-1.1869689e+183
-1.1854113e+183
-1.1859623e+183
-1.1875258e+183
-1.1901629e+183
-1.1885549e+183
-1.1891145e+183
-1.1907199e+183
-1.1912535e+183
-1.1896494e+183
-1.1901135e+183
-1.1917197e+183
-1.196663e+183
-1.1950594e+183
-1.1955891e+183
-1.197178e+183
-1.1934265e+183
-1.1917885e+183
-1.1923413e+183
-1.1939706e+183
-1.1933404e+183
-1.1928728e+183
-1.1944969e+183
-1.1949636e+183
-1.1977052e+183
-1.1961133e+183
-1.1965808e+183
-1.1981736e+183
-1.1947161e+183
-1.1944699e+183
-1.1960655e+183
-1.1962946e+183
-1.1953834e+183
-1.1937618e+183
-1.1941391e+183
-1.1957506e+183
-1.1985878e+183
-1.1969931e+183
-1.1973484e+183
-1.1989271e+183
-1.1992102e+183
-1.1976495e+183
-1.19786e+183
-1.1993977e+183
-1.1651205e+183
-1.1654508e+183
-1.1663404e+183
-1.1659652e+183
-1.1668728e+183
-1.1678495e+183
-1.1682961e+183
-1.1672896e+183
-1.1647611e+183
-1.1643767e+183
-1.1655452e+183
-1.1651271e+183
-1.1659715e+183
-1.1669002e+183
-1.167367e+183
-1.1664159e+183
-1.1639906e+183
-1.1637287e+183
-1.164743e+183
-1.1644727e+183
-1.1636272e+183
-1.1636471e+183
-1.1643542e+183
-1.1643661e+183
-1.1651841e+183
-1.1660803e+183
-1.1660891e+183
-1.1651828e+183
-1.1653074e+183
-1.1662162e+183
-1.1664943e+183
-1.165579e+183
-1.1692529e+183
-1.1691408e+183
-1.1702344e+183
-1.1703889e+183
-1.1670844e+183
-1.1670504e+183
-1.1680689e+183
-1.1681379e+183
-1.1675069e+183
-1.1672256e+183
-1.1682965e+183
-1.1685919e+183
-1.1706097e+183
-1.1694387e+183
-1.1697481e+183
-1.1709389e+183
-1.1684007e+183
-1.1679236e+183
-1.1690146e+183
-1.1695006e+183
-1.1713666e+183
-1.1701729e+183
-1.1706629e+183
-1.1718556e+183
-1.1723547e+183
-1.1711716e+183
-1.1716621e+183
-1.172843e+183
-1.1693669e+183
-1.1689008e+183
-1.1700091e+183
-1.1704908e+183
-1.1623505e+183
-1.1623871e+183
-1.1629719e+183
-1.1629398e+183
-1.1613322e+183
-1.1614127e+183
-1.1618592e+183
-1.1618092e+183
-1.1614532e+183
-1.1613319e+183
-1.1618419e+183
-1.1620226e+183
-1.162623e+183
-1.1624076e+183
-1.1630221e+183
-1.1632691e+183
-1.1615209e+183
-1.1610473e+183
-1.1609648e+183
-1.1608397e+183
-1.1608992e+183
-1.1613035e+183
-1.1594338e+183
-1.160382e+183
-1.1600235e+183
-1.1589055e+183
-1.1584744e+183
-1.1596644e+183
-1.1596806e+183
-1.1584602e+183
-1.1610668e+183
-1.160776e+183
-1.1608002e+183
-1.1608605e+183
-1.160879e+183
-1.1611586e+183
-1.1587152e+183
-1.1609126e+183
-1.1609627e+183
-1.159342e+183
-1.1585839e+183
-1.1598615e+183
-1.1602539e+183
-1.1587074e+183
-1.161322e+183
-1.1609981e+183
-1.1610783e+183
-1.1611134e+183
-1.1611994e+183
-1.1617114e+183
-1.1624671e+183
-1.1617388e+183
-1.1610988e+183
-1.16139e+183
-1.1619553e+183
-1.1622794e+183
-1.1632479e+183
-1.1629652e+183
-1.1636411e+183
-1.1639832e+183
-1.1618038e+183
-1.1616997e+183
-1.1623227e+183
-1.1625289e+183
-1.1621403e+183
-1.1618579e+183
-1.1627053e+183
-1.1629743e+183
-1.1637659e+183
-1.1634931e+183
-1.1642888e+183
-1.1645829e+183
-1.1634056e+183
-1.1612821e+183
-1.1631526e+183
-1.1619737e+183
-1.1607144e+183
-1.1602374e+183
-1.1617588e+183
-1.1625707e+183
-1.163965e+183
-1.1634344e+183
-1.1643963e+183
-1.1638712e+183
-1.16413e+183
-1.1646532e+183
-1.1636499e+183
-1.1638516e+183
-1.1633626e+183
-1.1629875e+183
-1.1630179e+183
-1.1631692e+183
-1.1593305e+183
-1.1616279e+183
-1.1613981e+183
-1.1598867e+183
-1.15942e+183
-1.1608975e+183
-1.161051e+183
-1.1594889e+183
-1.1624075e+183
-1.1620158e+183
-1.1618581e+183
-1.1620781e+183
-1.1620878e+183
-1.1625677e+183
-1.1633029e+183
-1.1626051e+183
-1.162118e+183
-1.1625916e+183
-1.1625568e+183
-1.1629452e+183
-1.1633431e+183
-1.1629074e+183
-1.1637752e+183
-1.1641415e+183
-1.1628022e+183
-1.1625591e+183
-1.1633013e+183
-1.1635579e+183
-1.1643404e+183
-1.1640602e+183
-1.1648767e+183
-1.1651771e+183
-1.1649571e+183
-1.1646103e+183
-1.1654759e+183
-1.165821e+183
-1.1639289e+183
-1.1637388e+183
-1.1645104e+183
-1.1647735e+183
-1.1655867e+183
-1.1653085e+183
-1.1661607e+183
-1.1664343e+183
-1.1661241e+183
-1.1658502e+183
-1.1666748e+183
-1.16692e+183
-1.164605e+183
-1.1642034e+183
-1.1650533e+183
-1.1653745e+183
-1.1667487e+183
-1.1664021e+183
-1.1673595e+183
-1.1677089e+183
-1.1670224e+183
-1.1657631e+183
-1.166082e+183
-1.1666831e+183
-1.1676636e+183
-1.1686974e+183
-1.1690741e+183
-1.1680227e+183
-1.1687274e+183
-1.1683748e+183
-1.1694401e+183
-1.169796e+183
-1.1701823e+183
-1.1697936e+183
-1.1709323e+183
-1.1713392e+183
-1.1733106e+183
-1.1721176e+183
-1.1725396e+183
-1.1737485e+183
-1.1741497e+183
-1.1729373e+183
-1.1733064e+183
-1.174523e+183
-1.1709252e+183
-1.170564e+183
-1.171729e+183
-1.1720951e+183
-1.1701164e+183
-1.1690534e+183
-1.1693315e+183
-1.1704042e+183
-1.1673514e+183
-1.1670801e+183
-1.1680372e+183
-1.1683103e+183
-1.1678098e+183
-1.1675833e+183
-1.1685404e+183
-1.1687551e+183
-1.1706482e+183
-1.1695654e+183
-1.1697711e+183
-1.1708545e+183
-1.1720014e+183
-1.1717914e+183
-1.1729806e+183
-1.1731958e+183
-1.1724147e+183
-1.1712323e+183
-1.1715347e+183
-1.1727154e+183
-1.1748567e+183
-1.1736299e+183
-1.1739431e+183
-1.1751858e+183
-1.1754735e+183
-1.1742181e+183
-1.174439e+183
-1.175707e+183
-1.1697953e+183
-1.1694184e+183
-1.1703873e+183
-1.1707691e+183
-1.1690858e+183
-1.1687912e+183
-1.1697311e+183
-1.1700458e+183
-1.1725028e+183
-1.171417e+183
-1.1718037e+183
-1.1728948e+183
-1.1718041e+183
-1.1707358e+183
-1.1710647e+183
-1.1721418e+183
-1.1685616e+183
-1.1683891e+183
-1.1692843e+183
-1.1694711e+183
-1.168947e+183
-1.1680241e+183
-1.1682226e+183
-1.1691301e+183
-1.1710144e+183
-1.1699362e+183
-1.1701111e+183
-1.1711701e+183
-1.1713254e+183
-1.170268e+183
-1.1704643e+183
-1.1715288e+183
-1.1726774e+183
-1.1724675e+183
-1.1736685e+183
-1.1738828e+183
-1.1733535e+183
-1.1721586e+183
-1.172311e+183
-1.1735073e+183
-1.1758828e+183
-1.1746031e+183
-1.1747638e+183
-1.1760474e+183
-1.1762221e+183
-1.1749337e+183
-1.175149e+183
-1.1764353e+183
-1.1766857e+183
-1.1754151e+183
-1.1757454e+183
-1.1770069e+183
-1.1741561e+183
-1.1729503e+183
-1.1732922e+183
-1.1744936e+183
-1.1740505e+183
-1.1736554e+183
-1.1748595e+183
-1.1752521e+183
-1.1773753e+183
-1.1761123e+183
-1.176501e+183
-1.1777617e+183
-1.1614177e+183
-1.1629397e+183
-1.162956e+183
-1.161432e+183
-1.1618544e+183
-1.1638917e+183
-1.1632142e+183
-1.1616652e+183
-1.1651897e+183
-1.1644425e+183
-1.1640479e+183
-1.1643021e+183
-1.1643512e+183
-1.1647414e+183
-1.1645891e+183
-1.164354e+183
-1.1644318e+183
-1.1644526e+183
-1.1644129e+183
-1.1645721e+183
-1.1655991e+183
-1.1648169e+183
-1.1650458e+183
-1.1657992e+183
-1.1665484e+183
-1.16634e+183
-1.1671416e+183
-1.1673489e+183
-1.1668315e+183
-1.1667029e+183
-1.1675118e+183
-1.1676646e+183
-1.1652379e+183
-1.1651776e+183
-1.1659359e+183
-1.166037e+183
-1.1646449e+183
-1.1645161e+183
-1.1646329e+183
-1.1648912e+183
-1.1647251e+183
-1.1649177e+183
-1.1614706e+183
-1.1629265e+183
-1.1631908e+183
-1.161676e+183
-1.162235e+183
-1.1638255e+183
-1.1648447e+183
-1.1628171e+183
-1.1655626e+183
-1.165231e+183
-1.1652109e+183
-1.1654224e+183
-1.1659326e+183
-1.1665099e+183
-1.1662051e+183
-1.1659528e+183
-1.1667589e+183
-1.1670985e+183
-1.1656437e+183
-1.1654019e+183
-1.1661937e+183
-1.1664322e+183
-1.1672595e+183
-1.1670036e+183
-1.1678675e+183
-1.1681433e+183
-1.1679607e+183
-1.1675896e+183
-1.1684727e+183
-1.1688494e+183
-1.1665538e+183
-1.1669043e+183
-1.1677412e+183
-1.1679188e+183
-1.1674584e+183
-1.1652883e+183
-1.1668694e+183
-1.1658905e+183
-1.1687388e+183
-1.1692428e+183
-1.1690332e+183
-1.1685192e+183
-1.1684018e+183
-1.1685601e+183
-1.1685094e+183
-1.1680884e+183
-1.167542e+183
-1.1679527e+183
-1.1684727e+183
-1.1687279e+183
-1.1640757e+183
-1.1644588e+183
-1.1656821e+183
-1.1663153e+183
-1.1634849e+183
-1.1649643e+183
-1.1652623e+183
-1.1635589e+183
-1.1668337e+183
-1.1673002e+183
-1.1666108e+183
-1.1661698e+183
-1.1659229e+183
-1.1662368e+183
-1.1669166e+183
-1.1667653e+183
-1.1674796e+183
-1.1678341e+183
-1.1685633e+183
-1.1670134e+183
-1.1677057e+183
-1.1674614e+183
-1.1682628e+183
-1.1685793e+183
-1.1669843e+183
-1.1666829e+183
-1.1675362e+183
-1.1678803e+183
-1.1687173e+183
-1.1683671e+183
-1.1692367e+183
-1.1695828e+183
-1.1693929e+183
-1.1690635e+183
-1.1699112e+183
-1.1702276e+183
-1.1700784e+183
-1.1697408e+183
-1.1705225e+183
-1.1708462e+183
-1.1689915e+183
-1.1682098e+183
-1.1685978e+183
-1.1693394e+183
-1.1691489e+183
-1.1690118e+183
-1.16967e+183
-1.1697894e+183
-1.1704646e+183
-1.1703668e+183
-1.1711165e+183
-1.1711962e+183
-1.1720059e+183
-1.171941e+183
-1.1728146e+183
-1.1728623e+183
-1.1717049e+183
-1.171412e+183
-1.1723586e+183
-1.1726167e+183
-1.1744431e+183
-1.1733716e+183
-1.173599e+183
-1.1746421e+183
-1.1747673e+183
-1.173758e+183
-1.1737795e+183
-1.174766e+183
-1.1711382e+183
-1.1708402e+183
-1.1718148e+183
-1.1720998e+183
-1.1711517e+183
-1.1701743e+183
-1.1705223e+183
-1.1715048e+183
-1.1732783e+183
-1.1721862e+183
-1.1725438e+183
-1.1736358e+183
-1.1739399e+183
-1.1728511e+183
-1.1731267e+183
-1.1742095e+183
-1.1781098e+183
-1.1768656e+183
-1.1772067e+183
-1.1784452e+183
-1.1756257e+183
-1.1744243e+183
-1.1747831e+183
-1.1759742e+183
-1.1753534e+183
-1.1750878e+183
-1.1762749e+183
-1.1765364e+183
-1.1787502e+183
-1.1775071e+183
-1.1777656e+183
-1.1790119e+183
-1.1758144e+183
-1.1758429e+183
-1.176968e+183
-1.1769181e+183
-1.1767463e+183
-1.1755741e+183
-1.1757499e+183
-1.1769017e+183
-1.179206e+183
-1.1779614e+183
-1.178102e+183
-1.1793296e+183
-1.1793557e+183
-1.1781464e+183
-1.178074e+183
-1.1792685e+183
-1.2008721e+183
-1.2032355e+183
-1.2014242e+183
-1.2037869e+183
-1.1997797e+183
-1.2021504e+183
-1.2003093e+183
-1.2026825e+183
-1.2007768e+183
-1.1979862e+183
-1.2002668e+183
-1.1984638e+183
-1.198916e+183
-1.2012462e+183
-1.2017049e+183
-1.1993516e+183
-1.2030079e+183
-1.2053363e+183
-1.2034842e+183
-1.2058043e+183
-1.2019361e+183
-1.2042984e+183
-1.2024798e+183
-1.2048291e+183
-1.2038746e+183
-1.2061801e+183
-1.2064816e+183
-1.2041953e+183
-1.2066718e+183
-1.2067661e+183
-1.204414e+183
-1.2045262e+183
-1.1772414e+183
-1.1772483e+183
-1.1738423e+183
-1.1652713e+183
-1.1648993e+183
-1.1736391e+183
-1.1589075e+183
-1.1594552e+183
-1.1652647e+183
-1.1648398e+183
-1.1584876e+183
-1.1645114e+183
-1.1642464e+183
-1.1581922e+183
-1.164652e+183
-1.1577116e+183
-1.157963e+183
-1.1640447e+183
-1.1638459e+183
-1.1512867e+183
-1.1530217e+183
-1.1509276e+183
-1.1526303e+183
-1.1623477e+183
-1.1619828e+183
-1.1581812e+183
-1.157748e+183
-1.1532565e+183
-1.1546031e+183
-1.1520546e+183
-1.1536112e+183
-1.1633977e+183
-1.1628686e+183
-1.1595261e+183
-1.1587924e+183
-1.1505847e+183
-1.1523e+183
-1.1501964e+183
-1.1520148e+183
-1.1617227e+183
-1.1615185e+183
-1.1574518e+183
-1.1572487e+183
-1.1503185e+183
-1.1520883e+183
-1.1508431e+183
-1.1524753e+183
-1.1573008e+183
-1.1502423e+183
-1.1499758e+183
-1.152637e+183
-1.1511745e+183
-1.1492137e+183
-1.1499896e+183
-1.1495898e+183
-1.1490408e+183
-1.1499603e+183
-1.159715e+183
-1.1593226e+183
-1.1590737e+183
-1.1587581e+183
-1.1589274e+183
-1.159501e+183
-1.1595752e+183
-1.1599447e+183
-1.1610144e+183
-1.1621997e+183
-1.1672814e+183
-1.1678578e+183
-1.1674047e+183
-1.1664759e+183
-1.1686701e+183
-1.1690863e+183
-1.1684055e+183
-1.1688483e+183
-1.1677764e+183
-1.1679116e+183
-1.1681126e+183
-1.1688649e+183
-1.1653422e+183
-1.1665483e+183
-1.1651214e+183
-1.1661585e+183
-1.1646451e+183
-1.165548e+183
-1.164802e+183
-1.1657452e+183
-1.167379e+183
-1.1673382e+183
-1.1672002e+183
-1.167163e+183
-1.1672019e+183
-1.1671909e+183
-1.1672942e+183
-1.1673758e+183
-1.164787e+183
-1.1651418e+183
-1.1659163e+183
-1.1656482e+183
-1.1673648e+183
-1.1675416e+183
-1.1674528e+183
-1.1673837e+183
-1.166077e+183
-1.1652155e+183
-1.1660178e+183
-1.1651801e+183
-1.139504e+183
-1.1409926e+183
-1.1444861e+183
-1.1426481e+183
-1.1575406e+183
-1.1556311e+183
-1.1688225e+183
-1.1708174e+183
-1.1538355e+183
-1.1520223e+183
-1.1647247e+183
-1.166883e+183
-1.2000161e+183
-1.203977e+183
-1.202411e+183
-1.1985737e+183
-1.1972544e+183
-1.2010344e+183
-1.2060827e+183
-1.2099345e+183
-1.2117881e+183
-1.2077993e+183
-1.1799703e+183
-1.1840575e+183
-1.1853458e+183
-1.1811501e+183
-1.1878016e+183
-1.1891389e+183
-1.193113e+183
-1.1918043e+183
-1.1904153e+183
-1.1958097e+183
-1.1944202e+183
-1.1823096e+183
-1.1865593e+183
-1.187911e+183
-1.1836091e+183
-1.1867694e+183
-1.1911973e+183
-1.1922775e+183
-1.1878e+183
-1.1890131e+183
-1.1846937e+183
-1.1857375e+183
-1.1901176e+183
-1.1941e+183
-1.1928852e+183
-1.197e+183
-1.1983823e+183
-1.1952506e+183
-1.1963677e+183
-1.2007253e+183
-1.1995941e+183
-1.2054724e+183
-1.202883e+183
-1.2013672e+183
-1.207097e+183
-1.2111015e+183
-1.2094041e+183
-1.2134356e+183
-1.2151914e+183
-1.2138502e+183
-1.2125505e+183
-1.2180609e+183
-1.2166823e+183
-1.2041735e+183
-1.2053378e+183
-1.209705e+183
-1.2084615e+183
-1.2239687e+183
-1.2230191e+183
-1.2248032e+183
-1.2257447e+183
-1.2220949e+183
-1.2211106e+183
-1.2229222e+183
-1.2238849e+183
-1.2191679e+183
-1.2212093e+183
-1.2221707e+183
-1.2201381e+183
-1.2172363e+183
-1.2192754e+183
-1.2202814e+183
-1.21823e+183
-1.2229703e+183
-1.2250559e+183
-1.224378e+183
-1.222333e+183
-1.2261771e+183
-1.2279932e+183
-1.2287619e+183
-1.2269027e+183
-1.2247279e+183
-1.2265023e+183
-1.2272666e+183
-1.2254851e+183
-1.2236996e+183
-1.2209208e+183
-1.2229375e+183
-1.2216683e+183
-1.2305736e+183
-1.229787e+183
-1.2316961e+183
-1.232486e+183
-1.2300883e+183
-1.2282398e+183
-1.2290232e+183
-1.2309049e+183
-1.2341371e+183
-1.2328789e+183
-1.2320448e+183
-1.2349876e+183
-1.2336792e+183
-1.2344842e+183
-1.2366173e+183
-1.2358005e+183
-1.2274724e+183
-1.2265374e+183
-1.2283905e+183
-1.229322e+183
-1.2265351e+183
-1.2246718e+183
-1.2256288e+183
-1.2274931e+183
-1.232409e+183
-1.2303308e+183
-1.2312727e+183
-1.2333569e+183
-1.2284866e+183
-1.2294388e+183
-1.2315123e+183
-1.2305637e+183
-1.2136164e+183
-1.2145345e+183
-1.2165168e+183
-1.215585e+183
-1.2210576e+183
-1.219226e+183
-1.2202133e+183
-1.2220359e+183
-1.2173672e+183
-1.2183192e+183
-1.2201347e+183
-1.2191572e+183
-1.2154057e+183
-1.2173993e+183
-1.2183808e+183
-1.2163523e+183
-1.2228239e+183
-1.223796e+183
-1.2256702e+183
-1.2246879e+183
-1.2209101e+183
-1.2227512e+183
-1.2237681e+183
-1.2219104e+183
-1.2246599e+183
-1.225683e+183
-1.2277141e+183
-1.2266788e+183
-1.2266203e+183
-1.227626e+183
-1.2297033e+183
-1.2286792e+183
-1.1743894e+183
-1.1655988e+183
-1.1662844e+183
-1.1751204e+183
-1.1645238e+183
-1.1732066e+183
-1.1737553e+183
-1.1650062e+183
-1.1804576e+183
-1.1864816e+183
-1.1858186e+183
-1.1798747e+183
-1.1811354e+183
-1.1880874e+183
-1.1872231e+183
-1.1819501e+183
-1.1628273e+183
-1.163227e+183
-1.1716545e+183
-1.1711486e+183
-1.1781357e+183
-1.1775859e+183
-1.1833058e+183
-1.1838949e+183
-1.1793324e+183
-1.1787094e+183
-1.1845068e+183
-1.185168e+183
-1.1636533e+183
-1.1721758e+183
-1.1727134e+183
-1.1640834e+183
-1.1973668e+183
-1.2009798e+183
-1.2000543e+183
-1.1965176e+183
-1.204496e+183
-1.2034581e+183
-1.2063193e+183
-1.2058595e+183
-1.2085056e+183
-1.2089719e+183
-1.2068475e+183
-1.2094899e+183
-1.2099919e+183
-1.2073924e+183
-1.2102993e+183
-1.2077873e+183
-1.20804e+183
-1.2104985e+183
-1.2053668e+183
-1.2059967e+183
-1.2107588e+183
-1.2083073e+183
-1.2086299e+183
-1.2110796e+183
-1.1982225e+183
-1.2018543e+183
-1.2026067e+183
-1.1990252e+183
-1.1980392e+183
-1.1974998e+183
-1.1940741e+183
-1.1945898e+183
-1.1950886e+183
-1.1985786e+183
-1.1992613e+183
-1.1957225e+183
-1.2069414e+183
-1.2043885e+183
-1.2047019e+183
-1.2072889e+183
-1.2019797e+183
-1.2026218e+183
-1.205031e+183
-1.2054512e+183
-1.2080919e+183
-1.2076493e+183
-1.2007291e+183
-1.2055902e+183
-1.2030688e+183
-1.2033343e+183
-1.205852e+183
-1.2061668e+183
-1.2036577e+183
-1.2040402e+183
-1.206563e+183
-1.2013259e+183
-1.2105262e+183
-1.2100532e+183
-1.2121249e+183
-1.2126298e+183
-1.2141233e+183
-1.2160959e+183
-1.216658e+183
-1.2146548e+183
-1.2151602e+183
-1.2132393e+183
-1.2136566e+183
-1.2155983e+183
-1.2112765e+183
-1.2092597e+183
-1.2096478e+183
-1.2116851e+183
-1.2128315e+183
-1.2124039e+183
-1.2143153e+183
-1.2147517e+183
-1.2120701e+183
-1.2117882e+183
-1.213668e+183
-1.2139636e+183
-1.2081732e+183
-1.2079052e+183
-1.2098822e+183
-1.2101592e+183
-1.2084733e+183
-1.2104696e+183
-1.2108866e+183
-1.20888e+183
-1.2166638e+183
-1.2162293e+183
-1.2181333e+183
-1.2185728e+183
-1.2158721e+183
-1.2155567e+183
-1.2174105e+183
-1.2177624e+183
-1.220526e+183
-1.2221058e+183
-1.2200737e+183
-1.2225758e+183
-1.2193001e+183
-1.2212604e+183
-1.2216814e+183
-1.2196772e+183
-1.2189998e+183
-1.2170864e+183
-1.2195082e+183
-1.2175594e+183
-1.2180881e+183
-1.2186567e+183
-1.2206192e+183
-1.2200526e+183
-1.2230345e+183
-1.2214915e+183
-1.2209731e+183
-1.2235613e+183
-1.2220451e+183
-1.2226163e+183
-1.2246943e+183
-1.2241219e+183
-1.2130532e+183
-1.2150531e+183
-1.2153999e+183
-1.2133882e+183
-1.2145594e+183
-1.2125835e+183
-1.2127734e+183
-1.2147605e+183
-1.2184936e+183
-1.216732e+183
-1.216527e+183
-1.2187107e+183
-1.2170281e+183
-1.2190098e+183
-1.2193426e+183
-1.2173704e+183
-1.2171018e+183
-1.2155048e+183
-1.215092e+183
-1.2174817e+183
-1.2130559e+183
-1.2109469e+183
-1.2114099e+183
-1.2134969e+183
-1.2118879e+183
-1.2139357e+183
-1.214336e+183
-1.2123375e+183
-1.2159143e+183
-1.2178727e+183
-1.2182504e+183
-1.2162903e+183
-1.2198691e+183
-1.2222155e+183
-1.2218389e+183
-1.2202459e+183
-1.2210441e+183
-1.2190919e+183
-1.2194799e+183
-1.2214497e+183
-1.2251325e+183
-1.2234534e+183
-1.2230484e+183
-1.2255407e+183
-1.2238451e+183
-1.2259359e+183
-1.2263259e+183
-1.224228e+183
-1.2205033e+183
-1.2224897e+183
-1.2227521e+183
-1.2207388e+183
-1.2210371e+183
-1.2213568e+183
-1.2233649e+183
-1.2230537e+183
-1.2254234e+183
-1.2251086e+183
-1.2272517e+183
-1.2275701e+183
-1.2245225e+183
-1.2247983e+183
-1.2269314e+183
-1.226637e+183
-1.2282234e+183
-1.231181e+183
-1.2315585e+183
-1.2285811e+183
-1.2334744e+183
-1.2330773e+183
-1.2353793e+183
-1.2349465e+183
-1.2326371e+183
-1.2321941e+183
-1.2344702e+183
-1.2340165e+183
-1.2273803e+183
-1.2303144e+183
-1.2307623e+183
-1.2278129e+183
-1.2292229e+183
-1.2289178e+183
-1.2319286e+183
-1.2322679e+183
-1.2326017e+183
-1.2295281e+183
-1.2298074e+183
-1.2328944e+183
-1.2365061e+183
-1.2345601e+183
-1.2348667e+183
-1.2368204e+183
-1.2338717e+183
-1.2342247e+183
-1.2361605e+183
-1.2357946e+183
-1.2384921e+183
-1.2388147e+183
-1.2408733e+183
-1.2405443e+183
-1.2377628e+183
-1.2397937e+183
-1.2401845e+183
-1.2381416e+183
-1.242752e+183
-1.2449841e+183
-1.2453326e+183
-1.2430903e+183
-1.24198e+183
-1.2441901e+183
-1.2445984e+183
-1.2423789e+183
-1.2358974e+183
-1.2378668e+183
-1.2383626e+183
-1.2363722e+183
-1.2368733e+183
-1.2388763e+183
-1.239356e+183
-1.2373342e+183
-1.2410389e+183
-1.2432353e+183
-1.2437348e+183
-1.2415302e+183
-1.2400172e+183
-1.2422059e+183
-1.2427134e+183
-1.2405198e+183
-1.2317105e+183
-1.2311755e+183
-1.2329768e+183
-1.2335188e+183
-1.2305913e+183
-1.2300343e+183
-1.2318295e+183
-1.2323905e+183
-1.2263693e+183
-1.2293123e+183
-1.2298518e+183
-1.2269147e+183
-1.2252455e+183
-1.2281756e+183
-1.228735e+183
-1.2257873e+183
-1.2294973e+183
-1.2289749e+183
-1.2307256e+183
-1.2312722e+183
-1.2279297e+183
-1.2296421e+183
-1.2301779e+183
-1.2284474e+183
-1.2243339e+183
-1.2271671e+183
-1.2276722e+183
-1.224772e+183
-1.2234418e+183
-1.2261718e+183
-1.226676e+183
-1.2238979e+183
-1.2330965e+183
-1.2325285e+183
-1.2344254e+183
-1.2350135e+183
-1.2319596e+183
-1.2314141e+183
-1.2332725e+183
-1.2338368e+183
-1.2386254e+183
-1.2365009e+183
-1.2371081e+183
-1.2392475e+183
-1.2353114e+183
-1.2358964e+183
-1.2380044e+183
-1.2373976e+183
-1.2356024e+183
-1.2336727e+183
-1.2342451e+183
-1.2361887e+183
-1.2353848e+183
-1.234834e+183
-1.2367831e+183
-1.2373443e+183
-1.2398563e+183
-1.2383069e+183
-1.2377074e+183
-1.240465e+183
-1.2389103e+183
-1.2394849e+183
-1.2416672e+183
-1.2410803e+183
-1.1695076e+183
-1.1784625e+183
-1.1791963e+183
-1.1702462e+183
-1.1860667e+183
-1.1922188e+183
-1.1915576e+183
-1.1853747e+183
-1.1874346e+183
-1.1867755e+183
-1.192911e+183
-1.1935366e+183
-1.1709559e+183
-1.1798996e+183
-1.1805362e+183
-1.1715912e+183
-1.1769721e+183
-1.1680238e+183
-1.1687843e+183
-1.1777567e+183
-1.1668561e+183
-1.1757201e+183
-1.1763048e+183
-1.1673783e+183
-1.1831697e+183
-1.1893538e+183
-1.1887495e+183
-1.1825836e+183
-1.1838442e+183
-1.1908761e+183
-1.190047e+183
-1.1846758e+183
-1.2179914e+183
-1.2199048e+183
-1.2203099e+183
-1.21842e+183
-1.2192173e+183
-1.2172506e+183
-1.2176315e+183
-1.2195712e+183
-1.2214251e+183
-1.2210975e+183
-1.2229752e+183
-1.2232877e+183
-1.2217465e+183
-1.223602e+183
-1.2239767e+183
-1.222129e+183
-1.2200068e+183
-1.2195699e+183
-1.2215115e+183
-1.221977e+183
-1.220662e+183
-1.2187695e+183
-1.2191291e+183
-1.2210507e+183
-1.2228988e+183
-1.2224871e+183
-1.2243373e+183
-1.2247614e+183
-1.2233734e+183
-1.2252411e+183
-1.2257406e+183
-1.2238605e+183
-1.2306959e+183
-1.2302696e+183
-1.2323813e+183
-1.2328016e+183
-1.2282432e+183
-1.2262826e+183
-1.2267169e+183
-1.22868e+183
-1.2276753e+183
-1.2271929e+183
-1.2291445e+183
-1.2296076e+183
-1.2311532e+183
-1.2332568e+183
-1.2337172e+183
-1.2316133e+183
-1.2252405e+183
-1.2249275e+183
-1.2268881e+183
-1.2272013e+183
-1.2310252e+183
-1.2292133e+183
-1.2289078e+183
-1.2313274e+183
-1.2298983e+183
-1.2295272e+183
-1.2316425e+183
-1.2320117e+183
-1.225921e+183
-1.2255527e+183
-1.2275118e+183
-1.2278784e+183
-1.2168606e+183
-1.2163864e+183
-1.2183657e+183
-1.2188402e+183
-1.2174648e+183
-1.215489e+183
-1.2159579e+183
-1.2179392e+183
-1.2202592e+183
-1.222164e+183
-1.222618e+183
-1.2207156e+183
-1.2212872e+183
-1.2193825e+183
-1.2198376e+183
-1.221739e+183
-1.2144516e+183
-1.2164421e+183
-1.2169785e+183
-1.2149893e+183
-1.2157034e+183
-1.2136976e+183
-1.214029e+183
-1.2160138e+183
-1.2183702e+183
-1.2203071e+183
-1.2208216e+183
-1.2189033e+183
-1.2176544e+183
-1.2179464e+183
-1.2198964e+183
-1.2196078e+183
-1.2227977e+183
-1.2243075e+183
-1.2223054e+183
-1.2247746e+183
-1.2267993e+183
-1.2263444e+183
-1.2289241e+183
-1.2284792e+183
-1.2259813e+183
-1.2256906e+183
-1.2281237e+183
-1.2278385e+183
-1.2216145e+183
-1.2236281e+183
-1.2239279e+183
-1.2219084e+183
-1.2252116e+183
-1.2232463e+183
-1.22567e+183
-1.2237009e+183
-1.2276818e+183
-1.2272323e+183
-1.2297977e+183
-1.2293488e+183
-1.2241352e+183
-1.2245819e+183
-1.2265481e+183
-1.2261072e+183
-1.2281246e+183
-1.2285694e+183
-1.2306878e+183
-1.2302438e+183
-1.2066886e+183
-1.2075012e+183
-1.2097181e+183
-1.2121464e+183
-1.212672e+183
-1.2102076e+183
-1.2089562e+183
-1.2113893e+183
-1.2117282e+183
-1.2092946e+183
-1.2040964e+183
-1.203324e+183
-1.1997484e+183
-1.2004419e+183
-1.2055397e+183
-1.2048335e+183
-1.2011407e+183
-1.201856e+183
-1.2082647e+183
-1.2131711e+183
-1.2106425e+183
-1.2110378e+183
-1.2136124e+183
-1.211443e+183
-1.2140352e+183
-1.2145139e+183
-1.2119213e+183
-1.2090298e+183
-1.2164922e+183
-1.2142689e+183
-1.213967e+183
-1.2168197e+183
-1.211486e+183
-1.2121208e+183
-1.2146149e+183
-1.2172217e+183
-1.2176278e+183
-1.2149753e+183
-1.209895e+183
-1.2127266e+183
-1.2123365e+183
-1.21491e+183
-1.2152989e+183
-1.2131543e+183
-1.2156948e+183
-1.2161359e+183
-1.2136053e+183
-1.2107501e+183
-1.2032851e+183
-1.2025609e+183
-1.2062563e+183
-1.2070651e+183
-1.2039547e+183
-1.2045547e+183
-1.2084044e+183
-1.2077733e+183
-1.2355778e+183
-1.2325115e+183
-1.2329353e+183
-1.2359815e+183
-1.2346943e+183
-1.231593e+183
-1.2320492e+183
-1.2351315e+183
-1.2386186e+183
-1.2371004e+183
-1.2366663e+183
-1.2390433e+183
-1.2375295e+183
-1.2379348e+183
-1.2398717e+183
-1.2394677e+183
-1.2338501e+183
-1.2307423e+183
-1.2311557e+183
-1.234262e+183
-1.2331743e+183
-1.2300862e+183
-1.2303669e+183
-1.2334693e+183
-1.2371006e+183
-1.235446e+183
-1.2351438e+183
-1.2374039e+183
-1.2358206e+183
-1.2362415e+183
-1.2381979e+183
-1.2377768e+183
-1.2397873e+183
-1.2418641e+183
-1.2422675e+183
-1.240201e+183
-1.2414922e+183
-1.2411754e+183
-1.2391057e+183
-1.2394157e+183
-1.2433999e+183
-1.24372e+183
-1.245974e+183
-1.2456507e+183
-1.2440933e+183
-1.2467483e+183
-1.2463501e+183
-1.2444915e+183
-1.2406161e+183
-1.2410404e+183
-1.2431068e+183
-1.2426803e+183
-1.2449061e+183
-1.2475898e+183
-1.247163e+183
-1.2453324e+183
-1.2484174e+183
-1.2480238e+183
-1.2457641e+183
-1.2461606e+183
-1.2414654e+183
-1.2435352e+183
-1.2439324e+183
-1.2418662e+183
-1.2339303e+183
-1.2369587e+183
-1.2372965e+183
-1.2342639e+183
-1.2363309e+183
-1.2333037e+183
-1.2336124e+183
-1.2366469e+183
-1.2408485e+183
-1.2389113e+183
-1.2392426e+183
-1.2411839e+183
-1.2382776e+183
-1.2385966e+183
-1.2405318e+183
-1.2402135e+183
-1.2346357e+183
-1.2380988e+183
-1.2376692e+183
-1.235078e+183
-1.2359783e+183
-1.2355448e+183
-1.2385585e+183
-1.2389857e+183
-1.2409388e+183
-1.2405056e+183
-1.242439e+183
-1.2428698e+183
-1.2396268e+183
-1.2415686e+183
-1.2419796e+183
-1.2400431e+183
-1.2422131e+183
-1.24253e+183
-1.2445976e+183
-1.2442809e+183
-1.2431904e+183
-1.242847e+183
-1.2452704e+183
-1.24492e+183
-1.2465078e+183
-1.2468246e+183
-1.249079e+183
-1.2487559e+183
-1.2471578e+183
-1.2494271e+183
-1.2497974e+183
-1.2475177e+183
-1.2456544e+183
-1.2435752e+183
-1.2460628e+183
-1.2439836e+183
-1.2448576e+183
-1.2444347e+183
-1.2465058e+183
-1.2469192e+183
-1.2491546e+183
-1.2487427e+183
-1.2510179e+183
-1.2514278e+183
-1.2479042e+183
-1.2501858e+183
-1.2505898e+183
-1.2483069e+183
-1.1867425e+183
-1.1866561e+183
-1.1942816e+183
-1.1941175e+183
-1.1999015e+183
-1.2001525e+183
-1.2258536e+183
-1.2254824e+183
-1.2271196e+183
-1.2274949e+183
-1.2238135e+183
-1.2221011e+183
-1.2224314e+183
-1.2241642e+183
-1.2306244e+183
-1.2288491e+183
-1.2292345e+183
-1.2310084e+183
-1.2325212e+183
-1.2329061e+183
-1.2347692e+183
-1.2343865e+183
-1.2077759e+183
-1.2124517e+183
-1.2110038e+183
-1.2112277e+183
-1.2126959e+183
-1.2094036e+183
-1.2072793e+183
-1.2074717e+183
-1.209608e+183
-1.2097584e+183
-1.2076015e+183
-1.2076894e+183
-1.2098737e+183
-1.2128994e+183
-1.2113855e+183
-1.2115463e+183
-1.2130962e+183
-1.2171097e+183
-1.2173625e+183
-1.2157104e+183
-1.2139521e+183
-1.2142103e+183
-1.215966e+183
-1.2200979e+183
-1.219808e+183
-1.2419379e+183
-1.2415463e+183
-1.2437496e+183
-1.2433643e+183
-1.2378833e+183
-1.239739e+183
-1.2361414e+183
-1.2365375e+183
-1.2382799e+183
-1.2401337e+183
-1.245284e+183
-1.2473347e+183
-1.247711e+183
-1.2456656e+183
-1.2495675e+183
-1.2518472e+183
-1.2522178e+183
-1.2499353e+183
-1.2478472e+183
-1.2500275e+183
-1.2503739e+183
-1.248186e+183
-1.2485686e+183
-1.2507632e+183
-1.2511608e+183
-1.2489625e+183
-1.2534281e+183
-1.2530441e+183
-1.2554037e+183
-1.2557826e+183
-1.2522987e+183
-1.2526469e+183
-1.2550013e+183
-1.2546357e+183
-1.2567918e+183
-1.2594235e+183
-1.2590178e+183
-1.257179e+183
-1.2579778e+183
-1.2575871e+183
-1.259837e+183
-1.260237e+183
-1.2626258e+183
-1.2622157e+183
-1.2646838e+183
-1.2650938e+183
-1.2613824e+183
-1.263847e+183
-1.2642612e+183
-1.2617946e+183
-1.2654915e+183
-1.2633849e+183
-1.263039e+183
-1.2658353e+183
-1.2606526e+183
-1.2584028e+183
-1.2587822e+183
-1.2610133e+183
-1.2591648e+183
-1.2614051e+183
-1.2618035e+183
-1.2595526e+183
-1.2637748e+183
-1.2641723e+183
-1.2666487e+183
-1.2662338e+183
-1.2493785e+183
-1.2515739e+183
-1.2520004e+183
-1.2498105e+183
-1.2502341e+183
-1.2523851e+183
-1.2527414e+183
-1.2506001e+183
-1.254622e+183
-1.2549888e+183
-1.2573498e+183
-1.2569758e+183
-1.2538558e+183
-1.2562162e+183
-1.2565968e+183
-1.2542567e+183
-1.2680094e+183
-1.2705144e+183
-1.2684392e+183
-1.2709082e+183
-1.266432e+183
-1.2660078e+183
-1.2672367e+183
-1.266843e+183
-1.2688394e+183
-1.2713378e+183
-1.269216e+183
-1.2717167e+183
-1.2745966e+183
-1.2742206e+183
-1.2764095e+183
-1.2768032e+183
-1.2733771e+183
-1.2755615e+183
-1.2759752e+183
-1.2737771e+183
-1.2810748e+183
-1.2786584e+183
-1.2790609e+183
-1.2814809e+183
-1.2778027e+183
-1.2802097e+183
-1.2806423e+183
-1.2782263e+183
-1.2828461e+183
-1.2832821e+183
-1.2856209e+183
-1.2851783e+183
-1.2837167e+183
-1.2864788e+183
-1.2860605e+183
-1.2841302e+183
-1.2803302e+183
-1.2827501e+183
-1.2832058e+183
-1.2807853e+183
-1.2794633e+183
-1.2818895e+183
-1.2823063e+183
-1.2798819e+183
-1.2845399e+183
-1.284938e+183
-1.2872889e+183
-1.2868916e+183
-1.2853854e+183
-1.2858311e+183
-1.288174e+183
-1.2877331e+183
-1.2679768e+183
-1.2676121e+183
-1.2699648e+183
-1.2724556e+183
-1.2695696e+183
-1.2720414e+183
-1.2749647e+183
-1.2753875e+183
-1.2776079e+183
-1.2771896e+183
-1.2729187e+183
-1.2758432e+183
-1.2780598e+183
-1.2785137e+183
-1.2733772e+183
-1.2762879e+183
-1.2683947e+183
-1.2704034e+183
-1.2708529e+183
-1.2688292e+183
-1.2932818e+183
-1.2927879e+183
-1.2952757e+183
-1.29733e+183
-1.2947773e+183
-1.2968295e+183
-1.2991938e+183
-1.2997092e+183
-1.2937474e+183
-1.2884587e+183
-1.2913101e+183
-1.2888797e+183
-1.2917194e+183
-1.294178e+183
-1.287559e+183
-1.2903663e+183
-1.2880106e+183
-1.2908543e+183
-1.2978198e+183
-1.3002129e+183
-1.2957519e+183
-1.2962079e+183
-1.298294e+183
-1.300707e+183
-1.2892996e+183
-1.2921647e+183
-1.2946338e+183
-1.2950778e+183
-1.2896989e+183
-1.2926001e+183
-1.2905912e+183
-1.2934908e+183
-1.2960014e+183
-1.2955347e+183
-1.2901456e+183
-1.2930448e+183
-1.2997041e+183
-1.3021544e+183
-1.2975874e+183
-1.298071e+183
-1.300199e+183
-1.3026601e+183
-1.2971204e+183
-1.2992274e+183
-1.2966703e+183
-1.2987688e+183
-1.3011992e+183
-1.3016729e+183
-1.2509499e+183
-1.2534921e+183
-1.2531198e+183
-1.2512963e+183
-1.2516631e+183
-1.2538829e+183
-1.2542734e+183
-1.2520372e+183
-1.2565874e+183
-1.256199e+183
-1.2589758e+183
-1.258597e+183
-1.255403e+183
-1.2581943e+183
-1.2577829e+183
-1.2557917e+183
-1.2599823e+183
-1.2603966e+183
-1.2626514e+183
-1.2622336e+183
-1.2646161e+183
-1.2675492e+183
-1.2671044e+183
-1.2650509e+183
-1.2655017e+183
-1.2680038e+183
-1.2684413e+183
-1.2659355e+183
-1.260812e+183
-1.2612084e+183
-1.2635051e+183
-1.2630901e+183
-1.2663708e+183
-1.2667609e+183
-1.2692323e+183
-1.2688491e+183
-1.264339e+183
-1.263934e+183
-1.2616343e+183
-1.2620359e+183
-1.2624651e+183
-1.2628744e+183
-1.2651542e+183
-1.2647521e+183
-1.2671578e+183
-1.2675653e+183
-1.2700717e+183
-1.2696481e+183
-1.2524324e+183
-1.2546617e+183
-1.2550674e+183
-1.2528371e+183
-1.2536504e+183
-1.2532497e+183
-1.2554728e+183
-1.2558789e+183
-1.2582162e+183
-1.2578036e+183
-1.2602252e+183
-1.2606396e+183
-1.2569891e+183
-1.2573817e+183
-1.2597867e+183
-1.2593978e+183
-1.2692928e+183
-1.2713268e+183
-1.27386e+183
-1.2717891e+183
-1.2742989e+183
-1.2697467e+183
-1.2706207e+183
-1.2701971e+183
-1.2722085e+183
-1.274721e+183
-1.2726018e+183
-1.2750776e+183
-1.2779967e+183
-1.2776245e+183
-1.2802459e+183
-1.2798399e+183
-1.2767661e+183
-1.2771849e+183
-1.2793996e+183
-1.2789759e+183
-1.2825523e+183
-1.282125e+183
-1.2845829e+183
-1.2850263e+183
-1.2836654e+183
-1.2812403e+183
-1.281678e+183
-1.2841228e+183
-1.2867982e+183
-1.2863205e+183
-1.2886818e+183
-1.2891772e+183
-1.287276e+183
-1.2896682e+183
-1.290134e+183
-1.2877365e+183
-1.2905669e+183
-1.2886003e+183
-1.2881877e+183
-1.2909768e+183
-1.2854733e+183
-1.2829899e+183
-1.2834258e+183
-1.2859016e+183
-1.286806e+183
-1.2863495e+183
-1.283886e+183
-1.2843474e+183
-1.2890271e+183
-1.2894811e+183
-1.2914043e+183
-1.2918672e+183
-1.2709938e+183
-1.2729865e+183
-1.2754953e+183
-1.2734019e+183
-1.2759116e+183
-1.2713875e+183
-1.2768617e+183
-1.2797892e+183
-1.2763938e+183
-1.2793359e+183
-1.2815795e+183
-1.2820405e+183
-1.2784204e+183
-1.278854e+183
-1.281108e+183
-1.2806733e+183
-1.2718294e+183
-1.2738545e+183
-1.2743011e+183
-1.2722649e+183
-1.2938418e+183
-1.2967757e+183
-1.2993078e+183
-1.2943168e+183
-1.2972486e+183
-1.2997999e+183
-1.2983882e+183
-1.298835e+183
-1.293399e+183
-1.2963165e+183
-1.2929637e+183
-1.2958593e+183
-1.300908e+183
-1.3030413e+183
-1.3004622e+183
-1.3025851e+183
-1.3050575e+183
-1.3055323e+183
-1.3018981e+183
-1.3040542e+183
-1.3013929e+183
-1.3035394e+183
-1.3060389e+183
-1.3065471e+183
-1.2916134e+183
-1.2945316e+183
-1.2911087e+183
-1.2940086e+183
-1.2965189e+183
-1.2970338e+183
-1.3007226e+183
-1.3031876e+183
-1.2985902e+183
-1.299099e+183
-1.3012302e+183
-1.303697e+183
-1.2975334e+183
-1.2979723e+183
-1.3017135e+183
-1.3041654e+183
-1.2995892e+183
-1.3000327e+183
-1.3021476e+183
-1.3046038e+183
-1.2921156e+183
-1.295033e+183
-1.2925756e+183
-1.2954625e+183
-1.259034e+183
-1.2586508e+183
-1.2611129e+183
-1.2614738e+183
-1.2540705e+183
-1.2563018e+183
-1.2566941e+183
-1.254455e+183
-1.2655648e+183
-1.2632935e+183
-1.2636507e+183
-1.265939e+183
-1.2683771e+183
-1.2679828e+183
-1.2709693e+183
-1.270559e+183
-1.3057927e+183
-1.3052931e+183
-1.3092115e+183
-1.3071686e+183
-1.3097184e+183
-1.3076687e+183
-1.3062614e+183
-1.3067166e+183
-1.3102067e+183
-1.3081459e+183
-1.3106778e+183
-1.3086085e+183
-1.3076621e+183
-1.3116592e+183
-1.3095701e+183
-1.3071823e+183
-1.3111666e+183
-1.309085e+183
-1.3081768e+183
-1.3086901e+183
-1.3121666e+183
-1.3100839e+183
-1.3126639e+183
-1.3105916e+183
-1.3027665e+183
-1.302252e+183
-1.3060715e+183
-1.3040809e+183
-1.3066019e+183
-1.3046034e+183
-1.3012197e+183
-1.3017371e+183
-1.3049825e+183
-1.3030254e+183
-1.3055287e+183
-1.3035535e+183
-1.303749e+183
-1.3032699e+183
-1.3071334e+183
-1.3051186e+183
-1.3076448e+183
-1.3056111e+183
-1.3047642e+183
-1.3042439e+183
-1.3086778e+183
-1.3066382e+183
-1.3081604e+183
-1.3061176e+183
-1.226752e+183
-1.2277604e+183
-1.229684e+183
-1.2286865e+183
-1.2306937e+183
-1.2327614e+183
-1.233831e+183
-1.2317204e+183
-1.2307405e+183
-1.2286835e+183
-1.2296896e+183
-1.2317293e+183
-1.2368299e+183
-1.2378272e+183
-1.2400213e+183
-1.2390397e+183
-1.2356776e+183
-1.234678e+183
-1.232682e+183
-1.2336629e+183
-1.2378503e+183
-1.236753e+183
-1.2347347e+183
-1.2358254e+183
-1.2388962e+183
-1.2399927e+183
-1.2422187e+183
-1.2410987e+183
-1.2369015e+183
-1.2380026e+183
-1.2400264e+183
-1.2389318e+183
-1.2443723e+183
-1.2433046e+183
-1.2410746e+183
-1.2421601e+183
-1.2431532e+183
-1.2440712e+183
-1.2462732e+183
-1.2453558e+183
-1.239037e+183
-1.2410337e+183
-1.2419405e+183
-1.2399404e+183
-1.2287545e+183
-1.2297603e+183
-1.2317188e+183
-1.2306838e+183
-1.2327466e+183
-1.2338034e+183
-1.2359641e+183
-1.2348837e+183
-1.2379602e+183
-1.2370134e+183
-1.2348491e+183
-1.2358265e+183
-1.2307554e+183
-1.2327384e+183
-1.2337269e+183
-1.2317352e+183
-1.2453054e+183
-1.2463394e+183
-1.2482427e+183
-1.250748e+183
-1.2472389e+183
-1.2497401e+183
-1.2529852e+183
-1.2519534e+183
-1.253857e+183
-1.2548988e+183
-1.252734e+183
-1.2549628e+183
-1.2517448e+183
-1.2539843e+183
-1.2559091e+183
-1.2568986e+183
-1.2473139e+183
-1.2501909e+183
-1.2492257e+183
-1.2482454e+183
-1.2409963e+183
-1.2420038e+183
-1.2439409e+183
-1.2464474e+183
-1.2429091e+183
-1.2453854e+183
-1.2475939e+183
-1.2495196e+183
-1.250623e+183
-1.2486915e+183
-1.2517314e+183
-1.2475949e+183
-1.2498235e+183
-1.248705e+183
-1.2509034e+183
-1.2528016e+183
-1.2430907e+183
-1.2450505e+183
-1.2461692e+183
-1.2442077e+183
-1.2631655e+183
-1.2618108e+183
-1.2607709e+183
-1.2642028e+183
-1.2582615e+183
-1.2559677e+183
-1.2570154e+183
-1.25931e+183
-1.2580345e+183
-1.260339e+183
-1.2613482e+183
-1.2590337e+183
-1.2628492e+183
-1.2652601e+183
-1.2662951e+183
-1.26387e+183
-1.2527481e+183
-1.2538341e+183
-1.2561196e+183
-1.2571955e+183
-1.2549035e+183
-1.2687575e+183
-1.2326724e+183
-1.2336126e+183
-1.2356042e+183
-1.2346578e+183
-1.2354563e+183
-1.2345446e+183
-1.2374421e+183
-1.2365292e+183
-1.2367298e+183
-1.2376808e+183
-1.2398113e+183
-1.238858e+183
-1.2386164e+183
-1.2417053e+183
-1.2407664e+183
-1.239538e+183
-1.2408546e+183
-1.2418274e+183
-1.2438666e+183
-1.24287e+183
-1.2450142e+183
-1.2472389e+183
-1.2482682e+183
-1.2460306e+183
-1.2470526e+183
-1.2480202e+183
-1.2502518e+183
-1.2493003e+183
-1.242805e+183
-1.2448695e+183
-1.2458386e+183
-1.2437573e+183
-1.2446598e+183
-1.2455663e+183
-1.2476112e+183
-1.2467185e+183
-1.2488886e+183
-1.2497736e+183
-1.2520095e+183
-1.2511258e+183
-1.2513471e+183
-1.250593e+183
-1.2528279e+183
-1.253585e+183
-1.2464171e+183
-1.2491793e+183
-1.2484425e+183
-1.2471402e+183
-1.2371405e+183
-1.2363051e+183
-1.2382993e+183
-1.2391541e+183
-1.2412885e+183
-1.2434946e+183
-1.2425993e+183
-1.2404096e+183
-1.2451155e+183
-1.2443592e+183
-1.2421553e+183
-1.2429339e+183
-1.2379754e+183
-1.2400056e+183
-1.2407882e+183
-1.2387508e+183
-1.2512942e+183
-1.2541549e+183
-1.2566645e+183
-1.2532175e+183
-1.255724e+183
-1.2522337e+183
-1.2522352e+183
-1.254725e+183
-1.2512096e+183
-1.2537383e+183
-1.2492427e+183
-1.2502722e+183
-1.2569573e+183
-1.2559701e+183
-1.2578963e+183
-1.2588908e+183
-1.2579726e+183
-1.2599033e+183
-1.2608778e+183
-1.2589263e+183
-1.2531332e+183
-1.2550686e+183
-1.2576037e+183
-1.2559531e+183
-1.2584894e+183
-1.2540093e+183
-1.2555934e+183
-1.2548292e+183
-1.2567741e+183
-1.2593047e+183
-1.2575576e+183
-1.2601283e+183
-1.2624418e+183
-1.2616035e+183
-1.2635831e+183
-1.2644417e+183
-1.2598662e+183
-1.2607603e+183
-1.2627106e+183
-1.2618115e+183
-1.2657543e+183
-1.2680992e+183
-1.268968e+183
-1.2666204e+183
-1.2662768e+183
-1.2639544e+183
-1.2648648e+183
-1.2671974e+183
-1.2712524e+183
-1.2697369e+183
-1.2688094e+183
-1.2721821e+183
-1.270646e+183
-1.2730991e+183
-1.2739721e+183
-1.2715179e+183
-1.2620419e+183
-1.2643622e+183
-1.2653346e+183
-1.2630169e+183
-1.2623513e+183
-1.2600328e+183
-1.2610338e+183
-1.2633565e+183
-1.2658872e+183
-1.2648788e+183
-1.2673081e+183
-1.2683221e+183
-1.2668926e+183
-1.2693317e+183
-1.2703089e+183
-1.2678654e+183
-1.2755913e+183
-1.2779698e+183
-1.2801849e+183
-1.281053e+183
-1.2764611e+183
-1.2788246e+183
-1.2783449e+183
-1.2792663e+183
-1.2746621e+183
-1.2770496e+183
-1.2737387e+183
-1.2761142e+183
-1.2812707e+183
-1.2835259e+183
-1.2803598e+183
-1.2826064e+183
-1.2846557e+183
-1.2855848e+183
-1.2830622e+183
-1.2853178e+183
-1.2821836e+183
-1.2844349e+183
-1.2864915e+183
-1.2873678e+183
-1.2697769e+183
-1.2721529e+183
-1.270803e+183
-1.2732064e+183
-1.2754462e+183
-1.2743898e+183
-1.2774868e+183
-1.2764241e+183
-1.2764722e+183
-1.2774197e+183
-1.2794469e+183
-1.2785023e+183
-1.2718261e+183
-1.274235e+183
-1.2727988e+183
-1.2751845e+183
-1.2865663e+183
-1.2874951e+183
-1.2902911e+183
-1.2916788e+183
-1.2883965e+183
-1.2912082e+183
-1.2893243e+183
-1.2925888e+183
-1.2884041e+183
-1.2892805e+183
-1.2921016e+183
-1.2902338e+183
-1.2929536e+183
-1.2911001e+183
-1.2934684e+183
-1.2943107e+183
-1.2956651e+183
-1.2970866e+183
-1.2394466e+183
-1.2400791e+183
-1.242145e+183
-1.2414933e+183
-1.2413331e+183
-1.2407096e+183
-1.2434146e+183
-1.2427786e+183
-1.2436344e+183
-1.2443003e+183
-1.2465278e+183
-1.2458479e+183
-1.2449535e+183
-1.2472058e+183
-1.2478671e+183
-1.2455976e+183
-1.2520929e+183
-1.2513998e+183
-1.249276e+183
-1.249952e+183
-1.2506636e+183
-1.2499227e+183
-1.2478615e+183
-1.2485698e+183
-1.2528752e+183
-1.2521072e+183
-1.2543858e+183
-1.255178e+183
-1.2536374e+183
-1.2559626e+183
-1.2566833e+183
-1.2543383e+183
-1.2519056e+183
-1.2540204e+183
-1.2545937e+183
-1.2524695e+183
-1.2506196e+183
-1.2527451e+183
-1.253393e+183
-1.2512709e+183
-1.2562488e+183
-1.2585959e+183
-1.259194e+183
-1.2568327e+183
-1.2549971e+183
-1.2573474e+183
-1.2579804e+183
-1.2556288e+183
-1.2425749e+183
-1.2419599e+183
-1.244045e+183
-1.2446754e+183
-1.2468879e+183
-1.249181e+183
-1.2485279e+183
-1.2462376e+183
-1.2481399e+183
-1.2475414e+183
-1.2498233e+183
-1.2504062e+183
-1.2431992e+183
-1.2453157e+183
-1.2459105e+183
-1.2437857e+183
-1.2606286e+183
-1.2633567e+183
-1.2654287e+183
-1.2662387e+183
-1.2614508e+183
-1.2641769e+183
-1.258004e+183
-1.259892e+183
-1.2622569e+183
-1.2606146e+183
-1.2629679e+183
-1.2587303e+183
-1.2563912e+183
-1.2590869e+183
-1.2582579e+183
-1.257202e+183
-1.2649774e+183
-1.2670378e+183
-1.2677737e+183
-1.2656823e+183
-1.2691646e+183
-1.2714633e+183
-1.2722173e+183
-1.2699144e+183
-1.269871e+183
-1.2675659e+183
-1.2706683e+183
-1.2683669e+183
-1.2731935e+183
-1.2724023e+183
-1.2754285e+183
-1.2746383e+183
-1.2739825e+183
-1.2747326e+183
-1.2769552e+183
-1.2762142e+183
-1.2742823e+183
-1.2719733e+183
-1.2726305e+183
-1.274952e+183
-1.2736055e+183
-1.2729397e+183
-1.2706353e+183
-1.2713003e+183
-1.2790412e+183
-1.2767917e+183
-1.2774869e+183
-1.2797431e+183
-1.2754377e+183
-1.2776542e+183
-1.2783499e+183
-1.2761115e+183
-1.2594032e+183
-1.2612927e+183
-1.2636712e+183
-1.2619363e+183
-1.2642976e+183
-1.2600414e+183
-1.2606595e+183
-1.2625649e+183
-1.2649469e+183
-1.2631713e+183
-1.2655558e+183
-1.2612632e+183
-1.2677109e+183
-1.268318e+183
-1.2704527e+183
-1.2698138e+183
-1.2684884e+183
-1.2664011e+183
-1.267042e+183
-1.2691426e+183
-1.281972e+183
-1.2827678e+183
-1.2846806e+183
-1.2866527e+183
-1.2838886e+183
-1.2858611e+183
-1.2881489e+183
-1.2889498e+183
-1.2835446e+183
-1.2785065e+183
-1.2812246e+183
-1.2792425e+183
-1.2819496e+183
-1.2842832e+183
-1.2769274e+183
-1.2796358e+183
-1.2777184e+183
-1.2804434e+183
-1.2862049e+183
-1.2881895e+183
-1.2854543e+183
-1.2874278e+183
-1.290495e+183
-1.2897269e+183
-1.2799449e+183
-1.2826676e+183
-1.2850137e+183
-1.2857069e+183
-1.280631e+183
-1.283356e+183
-1.2820475e+183
-1.2847717e+183
-1.2871356e+183
-1.2864119e+183
-1.2813267e+183
-1.284053e+183
-1.2890791e+183
-1.2910827e+183
-1.2883525e+183
-1.2903497e+183
-1.2926692e+183
-1.2933956e+183
-1.2876435e+183
-1.2896426e+183
-1.2869436e+183
-1.2889405e+183
-1.2919619e+183
-1.2912485e+183
-1.2463485e+183
-1.2467678e+183
-1.2489002e+183
-1.2484769e+183
-1.2506925e+183
-1.2529795e+183
-1.2534374e+183
-1.2511257e+183
-1.2515612e+183
-1.2519476e+183
-1.2542395e+183
-1.253866e+183
-1.2471581e+183
-1.2493149e+183
-1.2496924e+183
-1.2475104e+183
-1.2443458e+183
-1.2448662e+183
-1.2469838e+183
-1.2464695e+183
-1.2486779e+183
-1.2509566e+183
-1.2514816e+183
-1.2491927e+183
-1.2497302e+183
-1.250225e+183
-1.2524763e+183
-1.2519999e+183
-1.2453894e+183
-1.2475163e+183
-1.2480211e+183
-1.2458874e+183
-1.2540849e+183
-1.2562396e+183
-1.2567379e+183
-1.2545629e+183
-1.2535707e+183
-1.2530406e+183
-1.2551715e+183
-1.2557129e+183
-1.2579885e+183
-1.2574276e+183
-1.2597932e+183
-1.2603638e+183
-1.2609262e+183
-1.2585334e+183
-1.2590494e+183
-1.2614602e+183
-1.2550861e+183
-1.2577437e+183
-1.2572617e+183
-1.2555578e+183
-1.2559907e+183
-1.2581898e+183
-1.258591e+183
-1.2563707e+183
-1.2609489e+183
-1.2605287e+183
-1.2629718e+183
-1.263406e+183
-1.25958e+183
-1.262002e+183
-1.262503e+183
-1.2600684e+183
-1.2655541e+183
-1.267545e+183
-1.2700482e+183
-1.267095e+183
-1.2695703e+183
-1.2651128e+183
-1.2641294e+183
-1.2666178e+183
-1.2690659e+183
-1.2660957e+183
-1.2685615e+183
-1.2646418e+183
-1.2718937e+183
-1.2713796e+183
-1.2735184e+183
-1.2740552e+183
-1.2724254e+183
-1.2745982e+183
-1.2751024e+183
-1.2729107e+183
-1.2618656e+183
-1.2624511e+183
-1.2643935e+183
-1.2668291e+183
-1.2637852e+183
-1.2662037e+183
-1.2690039e+183
-1.2711293e+183
-1.2717734e+183
-1.2696537e+183
-1.2723746e+183
-1.2674298e+183
-1.2702568e+183
-1.2679933e+183
-1.2708033e+183
-1.2729367e+183
-1.2630289e+183
-1.2649743e+183
-1.2655342e+183
-1.2635761e+183
-1.2768894e+183
-1.2745456e+183
-1.2751252e+183
-1.2774818e+183
-1.2733051e+183
-1.2756363e+183
-1.2762789e+183
-1.2739429e+183
-1.2817372e+183
-1.2794585e+183
-1.2800657e+183
-1.2823572e+183
-1.2781901e+183
-1.2804509e+183
-1.2811063e+183
-1.2788384e+183
-1.2757165e+183
-1.2780842e+183
-1.2786637e+183
-1.2762768e+183
-1.2792236e+183
-1.2768286e+183
-1.277335e+183
-1.2797316e+183
-1.2841566e+183
-1.281841e+183
-1.2846843e+183
-1.2823598e+183
-1.2806833e+183
-1.2829846e+183
-1.2835831e+183
-1.2812729e+183
-1.2878647e+183
-1.2885263e+183
-1.2904668e+183
-1.2924624e+183
-1.2897995e+183
-1.2917976e+183
-1.2941099e+183
-1.2947954e+183
-1.2840526e+183
-1.286808e+183
-1.2891751e+183
-1.2898359e+183
-1.2846948e+183
-1.2874584e+183
-1.2827669e+183
-1.2855063e+183
-1.2834167e+183
-1.2861684e+183
-1.291794e+183
-1.2938162e+183
-1.2911314e+183
-1.2931473e+183
-1.2954859e+183
-1.2961491e+183
-1.2904894e+183
-1.285339e+183
-1.288111e+183
-1.2859329e+183
-1.2887054e+183
-1.291084e+183
-1.2870467e+183
-1.2898156e+183
-1.2865077e+183
-1.2892771e+183
-1.2916686e+183
-1.29223e+183
-1.294224e+183
-1.2962801e+183
-1.2936481e+183
-1.2956964e+183
-1.2980605e+183
-1.2986421e+183
-1.2930512e+183
-1.2950838e+183
-1.2924445e+183
-1.2944629e+183
-1.2968041e+183
-1.2974451e+183
-1.2916945e+183
-1.2953592e+183
-1.2934545e+183
-1.292467e+183
-1.2961249e+183
-1.2942225e+183
-1.2945813e+183
-1.2926814e+183
-1.2909181e+183
-1.2901201e+183
-1.2937927e+183
-1.2918803e+183
-1.2932217e+183
-1.2939355e+183
-1.2968905e+183
-1.2949805e+183
-1.2976245e+183
-1.2957032e+183
-1.2953835e+183
-1.2946535e+183
-1.2990727e+183
-1.2971531e+183
-1.2983536e+183
-1.2964293e+183
-1.3000759e+183
-1.3006668e+183
-1.3038147e+183
-1.3018722e+183
-1.3044043e+183
-1.3024631e+183
-1.2988094e+183
-1.2994514e+183
-1.3031896e+183
-1.301244e+183
-1.3025448e+183
-1.3006014e+183
-1.2960958e+183
-1.2967827e+183
-1.2997988e+183
-1.2978693e+183
-1.3005006e+183
-1.2985627e+183
-1.2981471e+183
-1.297477e+183
-1.3011979e+183
-1.2992593e+183
-1.3018698e+183
-1.2999325e+183
-1.1461304e+183
-1.1458929e+183
-1.1459857e+183
-1.1462549e+183
-1.1463817e+183
-1.1469536e+183
-1.1478336e+183
-1.1364646e+183
-1.1371799e+183
-1.1378318e+183
-1.136887e+183
-1.1362189e+183
-1.1365345e+183
-1.1367687e+183
-1.1363498e+183
-1.1365016e+183
-1.1364848e+183
-1.1368023e+183
-1.1368501e+183
-1.1370184e+183
-1.1379556e+183
-1.13859e+183
-1.1374022e+183
-1.1483456e+183
-1.1483796e+183
-1.1488412e+183
-1.1496826e+183
-1.1505481e+183
-1.1512419e+183
-1.1532499e+183
-1.1521787e+183
-1.1383782e+183
-1.1383381e+183
-1.1387491e+183
-1.1389766e+183
-1.1391387e+183
-1.138762e+183
-1.1396651e+183
-1.1402219e+183
-1.1427344e+183
-1.1419556e+183
-1.1430358e+183
-1.1441112e+183
-1.1410476e+183
-1.1404213e+183
-1.1410238e+183
-1.1416348e+183
-1.1372591e+183
-1.1363552e+183
-1.1410438e+183
-1.1420023e+183
-1.1397828e+183
-1.1384492e+183
-1.143366e+183
-1.1447864e+183
-1.1344334e+183
-1.1343304e+183
-1.1390089e+183
-1.1392336e+183
-1.1347015e+183
-1.1355108e+183
-1.1401725e+183
-1.1393138e+183
-1.1516079e+183
-1.147846e+183
-1.1489708e+183
-1.1457e+183
-1.1467452e+183
-1.1496705e+183
-1.1478957e+183
-1.1448541e+183
-1.1440397e+183
-1.1465351e+183
-1.1435773e+183
-1.1433437e+183
-1.1711568e+183
-1.1708781e+183
-1.1719422e+183
-1.1722591e+183
-1.1705458e+183
-1.1701926e+183
-1.1712432e+183
-1.171602e+183
-1.1735489e+183
-1.1723648e+183
-1.1727287e+183
-1.1739154e+183
-1.1742699e+183
-1.1730779e+183
-1.1734063e+183
-1.1745983e+183
-1.1698585e+183
-1.1694307e+183
-1.1704918e+183
-1.1709073e+183
-1.1689963e+183
-1.1686116e+183
-1.1697127e+183
-1.1700862e+183
-1.1720578e+183
-1.1708634e+183
-1.1712282e+183
-1.1724171e+183
-1.1728009e+183
-1.1716204e+183
-1.1720197e+183
-1.1731902e+183
-1.1772507e+183
-1.1758999e+183
-1.1763018e+183
-1.1776781e+183
-1.174575e+183
-1.1733009e+183
-1.1736677e+183
-1.1749573e+183
-1.1744373e+183
-1.1740478e+183
-1.1753429e+183
-1.1757371e+183
-1.1781056e+183
-1.1767046e+183
-1.1771078e+183
-1.1785222e+183
-1.1758526e+183
-1.1755264e+183
-1.1768349e+183
-1.1771578e+183
-1.1761133e+183
-1.1748053e+183
-1.1751755e+183
-1.1764866e+183
-1.1789168e+183
-1.1774892e+183
-1.1778673e+183
-1.179297e+183
-1.1796498e+183
-1.1782177e+183
-1.1785349e+183
-1.1799646e+183
-1.1729585e+183
-1.1726036e+183
-1.1738112e+183
-1.1741976e+183
-1.167615e+183
-1.1672259e+183
-1.168362e+183
-1.1687494e+183
-1.16832e+183
-1.1679828e+183
-1.1690949e+183
-1.1694252e+183
-1.171407e+183
-1.1702431e+183
-1.1705676e+183
-1.1717412e+183
-1.1890718e+183
-1.187592e+183
-1.1880856e+183
-1.1895563e+183
-1.1860865e+183
-1.1845736e+183
-1.1850681e+183
-1.1865822e+183
-1.1860816e+183
-1.1855868e+183
-1.1871005e+183
-1.187604e+183
-1.1900853e+183
-1.1886061e+183
-1.1891084e+183
-1.1905844e+183
-1.1830528e+183
-1.1815451e+183
-1.1820411e+183
-1.1835453e+183
-1.1800614e+183
-1.1786339e+183
-1.1790976e+183
-1.1805504e+183
-1.1799848e+183
-1.1795515e+183
-1.1810267e+183
-1.1814748e+183
-1.1840555e+183
-1.182535e+183
-1.1829983e+183
-1.1845349e+183
-1.1910292e+183
-1.1895552e+183
-1.1899819e+183
-1.1914635e+183
-1.1880582e+183
-1.1865302e+183
-1.1869283e+183
-1.1884633e+183
-1.1876745e+183
-1.1873157e+183
-1.1888612e+183
-1.1892496e+183
-1.1919145e+183
-1.1904019e+183
-1.1908143e+183
-1.1923479e+183
-1.1849746e+183
-1.1834281e+183
-1.1838264e+183
-1.1853744e+183
-1.1807757e+183
-1.1803878e+183
-1.1818905e+183
-1.182285e+183
-1.1814468e+183
-1.1811317e+183
-1.1826461e+183
-1.1829667e+183
-1.1857505e+183
-1.1841934e+183
-1.1845215e+183
-1.1860924e+183
-1.1604726e+183
-1.1600214e+183
-1.1608746e+183
-1.1613214e+183
-1.1596147e+183
-1.1592583e+183
-1.1600918e+183
-1.1604663e+183
-1.1619008e+183
-1.1609744e+183
-1.1613651e+183
-1.1623064e+183
-1.1627263e+183
-1.1617799e+183
-1.1622216e+183
-1.163162e+183
-1.1589769e+183
-1.1587634e+183
-1.1597786e+183
-1.1606362e+183
-1.1615404e+183
-1.1625157e+183
-1.1635413e+183
-1.1646232e+183
-1.1641375e+183
-1.1637134e+183
-1.1647346e+183
-1.1651353e+183
-1.1639092e+183
-1.1628813e+183
-1.1632974e+183
-1.1643242e+183
-1.1660862e+183
-1.1649818e+183
-1.1653935e+183
-1.1664846e+183
-1.1668708e+183
-1.1657947e+183
-1.1661714e+183
-1.1672244e+183
-1.1537302e+183
-1.1525531e+183
-1.1526676e+183
-1.1538323e+183
-1.1550338e+183
-1.1550224e+183
-1.1552541e+183
-1.1550943e+183
-1.1548273e+183
-1.1551667e+183
-1.1553506e+183
-1.1574039e+183
-1.1572165e+183
-1.1579708e+183
-1.1581704e+183
-1.1560208e+183
-1.155842e+183
-1.1564998e+183
-1.1566796e+183
-1.1552374e+183
-1.1555757e+183
-1.1554884e+183
-1.1555226e+183
-1.1558366e+183
-1.1558745e+183
-1.1544486e+183
-1.1528676e+183
-1.1540541e+183
-1.1532093e+183
-1.1537695e+183
-1.1549629e+183
-1.1555778e+183
-1.1545053e+183
-1.1563419e+183
-1.1560431e+183
-1.1563486e+183
-1.1567939e+183
-1.1565305e+183
-1.1568569e+183
-1.1576608e+183
-1.1570077e+183
-1.1574583e+183
-1.1581197e+183
-1.1568956e+183
-1.1562355e+183
-1.1565539e+183
-1.1572261e+183
-1.1579711e+183
-1.1576286e+183
-1.158425e+183
-1.1587719e+183
-1.1588513e+183
-1.1583833e+183
-1.1591794e+183
-1.1596387e+183
-1.1589416e+183
-1.1599355e+183
-1.1604599e+183
-1.1595975e+183
-1.1573453e+183
-1.1584316e+183
-1.1592341e+183
-1.1581475e+183
-1.1596999e+183
-1.1592646e+183
-1.1594616e+183
-1.1600206e+183
-1.1598603e+183
-1.1603924e+183
-1.161138e+183
-1.1605549e+183
-1.1605813e+183
-1.1608808e+183
-1.160914e+183
-1.1615281e+183
-1.1557423e+183
-1.1569477e+183
-1.1576589e+183
-1.1565321e+183
-1.1549433e+183
-1.1560204e+183
-1.1564294e+183
-1.1552399e+183
-1.1573399e+183
-1.1570073e+183
-1.1572941e+183
-1.1577725e+183
-1.1574724e+183
-1.1577709e+183
-1.1583234e+183
-1.1580177e+183
-1.1583237e+183
-1.1588434e+183
-1.1585952e+183
-1.1589466e+183
-1.1598054e+183
-1.15933e+183
-1.1601015e+183
-1.1605705e+183
-1.1584327e+183
-1.1579537e+183
-1.1586067e+183
-1.1590837e+183
-1.1594763e+183
-1.1589636e+183
-1.1595932e+183
-1.1601043e+183
-1.1608091e+183
-1.1603005e+183
-1.1610638e+183
-1.1615703e+183
-1.1613705e+183
-1.1611189e+183
-1.1616396e+183
-1.1618485e+183
-1.1606166e+183
-1.1600724e+183
-1.1606779e+183
-1.1611983e+183
-1.1618428e+183
-1.1613552e+183
-1.1620931e+183
-1.1625473e+183
-1.1623923e+183
-1.1622238e+183
-1.1628767e+183
-1.1630033e+183
-1.1675307e+183
-1.1665007e+183
-1.1669209e+183
-1.1679275e+183
-1.1654897e+183
-1.1645243e+183
-1.1649738e+183
-1.1659236e+183
-1.1659501e+183
-1.1654581e+183
-1.1663909e+183
-1.1668818e+183
-1.1683824e+183
-1.1673805e+183
-1.167847e+183
-1.1688273e+183
-1.1635743e+183
-1.1626595e+183
-1.163126e+183
-1.1640328e+183
-1.1617737e+183
-1.1609276e+183
-1.1613932e+183
-1.1622393e+183
-1.1623837e+183
-1.1618819e+183
-1.1627246e+183
-1.1632207e+183
-1.1645225e+183
-1.1636111e+183
-1.1641032e+183
-1.1650131e+183
-1.1691692e+183
-1.1682055e+183
-1.1685454e+183
-1.1695124e+183
-1.1672692e+183
-1.1663592e+183
-1.1667001e+183
-1.1675934e+183
-1.1670272e+183
-1.1669268e+183
-1.1678335e+183
-1.1679942e+183
-1.1698238e+183
-1.1688157e+183
-1.169014e+183
-1.1700634e+183
-1.1654547e+183
-1.1645649e+183
-1.1649341e+183
-1.165808e+183
-1.163305e+183
-1.162884e+183
-1.1637022e+183
-1.1640947e+183
-1.1636834e+183
-1.1635893e+183
-1.1643452e+183
-1.1644136e+183
-1.1660269e+183
-1.1651603e+183
-1.16522e+183
-1.1660955e+183
-1.19761e+183
-1.1954653e+183
-1.1949755e+183
-1.198596e+183
-1.1959164e+183
-1.1980806e+183
-1.1964092e+183
-1.1996948e+183
-1.1969256e+183
-1.1991322e+183
-1.19745e+183
-1.1571023e+183
-1.156578e+183
-1.1563155e+183
-1.1564023e+183
-1.1477262e+183
-1.1467832e+183
-1.1493768e+183
-1.1479107e+183
-1.149556e+183
-1.1470574e+183
-1.1485444e+183
-1.14792e+183
-1.1499469e+183
-1.1479854e+183
-1.1495733e+183
-1.1471165e+183
-1.1486569e+183
-1.1476814e+183
-1.1503584e+183
-1.1495912e+183
-1.1511695e+183
-1.1488657e+183
-1.1481196e+183
-1.149874e+183
-1.1480347e+183
-1.1497004e+183
-1.147115e+183
-1.1470951e+183
-1.1565232e+183
-1.1566341e+183
-1.1571767e+183
-1.1580459e+183
-1.158569e+183
-1.1584874e+183
-1.1595102e+183
-1.1589021e+183
-1.1602537e+183
-1.1608281e+183
-1.1623301e+183
-1.1616032e+183
-1.1521285e+183
-1.1537689e+183
-1.1516249e+183
-1.1531993e+183
-1.1508055e+183
-1.1512518e+183
-1.1528844e+183
-1.1543404e+183
-1.1536889e+183
-1.154991e+183
-1.1521242e+183
-1.1531974e+183
-1.1499628e+183
-1.1491972e+183
-1.1514856e+183
-1.1499218e+183
-1.1516097e+183
-1.148971e+183
-1.1510455e+183
-1.1526977e+183
-1.1502582e+183
-1.1519711e+183
-1.149244e+183
-1.1502169e+183
-1.1548079e+183
-1.1546457e+183
-1.15874e+183
-1.1588652e+183
-1.1549733e+183
-1.1547515e+183
-1.1546719e+183
-1.154837e+183
-1.1588209e+183
-1.1587287e+183
-1.1546289e+183
-1.1547306e+183
-1.1548703e+183
-1.1551512e+183
-1.1550259e+183
-1.1552136e+183
-1.1592477e+183
-1.1589979e+183
-1.1556063e+183
-1.1562578e+183
-1.1602453e+183
-1.1562524e+183
-1.1556337e+183
-1.1596825e+183
-1.1572567e+183
-1.1613113e+183
-1.1578654e+183
-1.1618732e+183
-1.1572168e+183
-1.1578504e+183
-1.1568222e+183
-1.1566286e+183
-1.1606373e+183
-1.1608875e+183
-1.1566021e+183
-1.1568593e+183
-1.1587496e+183
-1.1583629e+183
-1.1624316e+183
-1.1628787e+183
-1.1583692e+183
-1.158943e+183
-1.1592131e+183
-1.1633768e+183
-1.1596202e+183
-1.1636553e+183
-1.1594629e+183
-1.1598432e+183
-1.1552032e+183
-1.1545304e+183
-1.1538823e+183
-1.1538231e+183
-1.1538413e+183
-1.1536971e+183
-1.1537817e+183
-1.1544576e+183
-1.1458946e+183
-1.1451335e+183
-1.1473875e+183
-1.1457727e+183
-1.147191e+183
-1.145151e+183
-1.1471743e+183
-1.1466709e+183
-1.1483912e+183
-1.146294e+183
-1.1455693e+183
-1.1476883e+183
-1.1455946e+183
-1.1448314e+183
-1.1471377e+183
-1.1461442e+183
-1.1475346e+183
-1.1456196e+183
-1.1456562e+183
-1.1449576e+183
-1.1471314e+183
-1.145392e+183
-1.1469584e+183
-1.1446103e+183
-1.1546235e+183
-1.154412e+183
-1.1542699e+183
-1.1548575e+183
-1.1552266e+183
-1.1555376e+183
-1.1561911e+183
-1.1571071e+183
-1.145859e+183
-1.1474251e+183
-1.1462212e+183
-1.1476265e+183
-1.1450049e+183
-1.1455778e+183
-1.1458436e+183
-1.1474835e+183
-1.1463315e+183
-1.1479029e+183
-1.1455674e+183
-1.1449257e+183
-1.1476616e+183
-1.1468768e+183
-1.1492034e+183
-1.1485346e+183
-1.1498883e+183
-1.1480427e+183
-1.1466819e+183
-1.1459075e+183
-1.1482242e+183
-1.1469858e+183
-1.1486203e+183
-1.1461269e+183
-1.1536418e+183
-1.1533345e+183
-1.1573937e+183
-1.1577667e+183
-1.1533819e+183
-1.1538268e+183
-1.1541092e+183
-1.1582656e+183
-1.1546529e+183
-1.1587497e+183
-1.1543559e+183
-1.1549094e+183
-1.1524462e+183
-1.1525156e+183
-1.1565236e+183
-1.1565168e+183
-1.1526349e+183
-1.1525848e+183
-1.1526138e+183
-1.1566731e+183
-1.1529861e+183
-1.1570075e+183
-1.1526731e+183
-1.1530291e+183
-1.1521259e+183
-1.1520698e+183
-1.155991e+183
-1.1560882e+183
-1.152171e+183
-1.1523374e+183
-1.1531478e+183
-1.1526689e+183
-1.1525875e+183
-1.152289e+183
-1.1563312e+183
-1.1566427e+183
-1.1519372e+183
-1.1520269e+183
-1.1559401e+183
-1.1559382e+183
-1.152089e+183
-1.1520557e+183
-1.1520609e+183
-1.1561019e+183
-1.1523918e+183
-1.1564027e+183
-1.1522284e+183
-1.1525574e+183
-1.1684232e+183
-1.1688224e+183
-1.1656895e+183
-1.1576674e+183
-1.1577535e+183
-1.1659268e+183
-1.1577954e+183
-1.1577762e+183
-1.1580651e+183
-1.1578808e+183
-1.1692109e+183
-1.1695976e+183
-1.1661678e+183
-1.1578571e+183
-1.1665277e+183
-1.1581306e+183
-1.1577697e+183
-1.1577663e+183
-1.1581875e+183
-1.1579065e+183
-1.1705645e+183
-1.1700393e+183
-1.166925e+183
-1.1584469e+183
-1.1588975e+183
-1.1674465e+183
-1.1583212e+183
-1.1583726e+183
-1.158574e+183
-1.1589353e+183
-1.1712051e+183
-1.1718407e+183
-1.1680849e+183
-1.1594979e+183
-1.1602329e+183
-1.1687543e+183
-1.1592583e+183
-1.1596042e+183
-1.1604808e+183
-1.1600208e+183
-1.1729469e+183
-1.1724059e+183
-1.1610077e+183
-1.1606674e+183
-1.169248e+183
-1.1696964e+183
-1.1606855e+183
-1.1608728e+183
-1.1606444e+183
-1.1606123e+183
-1.1735633e+183
-1.1742437e+183
-1.1702145e+183
-1.1614648e+183
-1.1622089e+183
-1.1709011e+183
-1.1616825e+183
-1.1622309e+183
-1.1610576e+183
-1.1612962e+183
-1.175008e+183
-1.1716425e+183
-1.1629331e+183
-1.163797e+183
-1.1724507e+183
-1.1757716e+183
-1.162584e+183
-1.1628688e+183
-1.1632921e+183
-1.16386e+183
-1.1770306e+183
-1.1765061e+183
-1.1731983e+183
-1.1645776e+183
-1.165241e+183
-1.173721e+183
-1.1642991e+183
-1.1646972e+183
-1.1653888e+183
-1.1650813e+183
-1.1616269e+183
-1.1611481e+183
-1.1609609e+183
-1.1613807e+183
-1.1601495e+183
-1.1606499e+183
-1.1602926e+183
-1.1596363e+183
-1.1591995e+183
-1.1599358e+183
-1.1599501e+183
-1.1591909e+183
-1.1611514e+183
-1.1608398e+183
-1.1609488e+183
-1.1612486e+183
-1.1594215e+183
-1.1609201e+183
-1.1611927e+183
-1.1601392e+183
-1.1593279e+183
-1.1601422e+183
-1.1605304e+183
-1.1594987e+183
-1.1614491e+183
-1.1611291e+183
-1.1612645e+183
-1.1618047e+183
-1.1624426e+183
-1.1617012e+183
-1.16193e+183
-1.1622597e+183
-1.1636573e+183
-1.1621224e+183
-1.1633691e+183
-1.1627772e+183
-1.1615878e+183
-1.1610803e+183
-1.1620826e+183
-1.1628269e+183
-1.1638952e+183
-1.1643438e+183
-1.1641407e+183
-1.1646887e+183
-1.1636665e+183
-1.163855e+183
-1.1634906e+183
-1.1630911e+183
-1.1600742e+183
-1.1616499e+183
-1.1617101e+183
-1.1607096e+183
-1.1602106e+183
-1.1611652e+183
-1.1613718e+183
-1.1603375e+183
-1.1624713e+183
-1.1620687e+183
-1.1621512e+183
-1.1626818e+183
-1.1632792e+183
-1.1625541e+183
-1.1626222e+183
-1.1630522e+183
-1.1622528e+183
-1.1632433e+183
-1.1632132e+183
-1.1622536e+183
-1.1624762e+183
-1.1638959e+183
-1.1635112e+183
-1.1624842e+183
-1.1651953e+183
-1.1644403e+183
-1.1643993e+183
-1.1648386e+183
-1.1646908e+183
-1.1644468e+183
-1.1644739e+183
-1.1646318e+183
-1.1647342e+183
-1.164591e+183
-1.1648029e+183
-1.1650114e+183
-1.1622912e+183
-1.1632147e+183
-1.1634839e+183
-1.1625112e+183
-1.1630683e+183
-1.164111e+183
-1.1648972e+183
-1.1635355e+183
-1.1656578e+183
-1.1652908e+183
-1.1658915e+183
-1.16648e+183
-1.1673832e+183
-1.1676727e+183
-1.1680397e+183
-1.1681965e+183
-1.1676858e+183
-1.1661165e+183
-1.1671089e+183
-1.1667329e+183
-1.1687981e+183
-1.1693329e+183
-1.1691327e+183
-1.168601e+183
-1.1685261e+183
-1.1681212e+183
-1.168507e+183
-1.1687369e+183
-1.1649296e+183
-1.1652494e+183
-1.1660165e+183
-1.1664619e+183
-1.1642969e+183
-1.1652618e+183
-1.1655507e+183
-1.1644084e+183
-1.16674e+183
-1.1672171e+183
-1.1666729e+183
-1.166195e+183
-1.1669671e+183
-1.1675963e+183
-1.1676926e+183
-1.1684339e+183
-1.181438e+183
-1.1813535e+183
-1.1770053e+183
-1.1772228e+183
-1.1805046e+183
-1.1806087e+183
-1.1733217e+183
-1.1696326e+183
-1.1692655e+183
-1.1730535e+183
-1.1687499e+183
-1.1689779e+183
-1.1728233e+183
-1.1726474e+183
-1.1768277e+183
-1.1767099e+183
-1.180385e+183
-1.1804514e+183
-1.1694921e+183
-1.169064e+183
-1.1686769e+183
-1.1683439e+183
-1.1765014e+183
-1.176644e+183
-1.1725363e+183
-1.1685926e+183
-1.1684128e+183
-1.1723942e+183
-1.1681163e+183
-1.1679623e+183
-1.153783e+183
-1.1555517e+183
-1.1533946e+183
-1.1551446e+183
-1.1635111e+183
-1.1630927e+183
-1.160002e+183
-1.1595556e+183
-1.1557106e+183
-1.1572629e+183
-1.1546001e+183
-1.1563225e+183
-1.1646311e+183
-1.1640256e+183
-1.1613826e+183
-1.1606337e+183
-1.153073e+183
-1.1548757e+183
-1.1527133e+183
-1.1545622e+183
-1.162786e+183
-1.1626368e+183
-1.1592375e+183
-1.1590644e+183
-1.1528422e+183
-1.1546663e+183
-1.1532923e+183
-1.1549924e+183
-1.1626665e+183
-1.1591505e+183
-1.1496245e+183
-1.1493259e+183
-1.1519445e+183
-1.150597e+183
-1.1484611e+183
-1.1491844e+183
-1.1488216e+183
-1.1482911e+183
-1.1492142e+183
-1.1627311e+183
-1.1624165e+183
-1.1620802e+183
-1.1618404e+183
-1.1620121e+183
-1.1625031e+183
-1.1625746e+183
-1.1629335e+183
-1.1640405e+183
-1.1651745e+183
-1.1612068e+183
-1.1694821e+183
-1.1704619e+183
-1.1621765e+183
-1.167482e+183
-1.159253e+183
-1.1602133e+183
-1.1684838e+183
-1.1795549e+183
-1.1748733e+183
-1.1738493e+183
-1.180591e+183
-1.1758612e+183
-1.1768647e+183
-1.1825915e+183
-1.181594e+183
-1.1654769e+183
-1.1573595e+183
-1.1583386e+183
-1.1665359e+183
-1.1558173e+183
-1.1636723e+183
-1.1645367e+183
-1.1565264e+183
-1.1706941e+183
-1.1697228e+183
-1.1751177e+183
-1.1762046e+183
-1.1716959e+183
-1.1728646e+183
-1.178515e+183
-1.1772857e+183
-1.2012716e+183
-1.203012e+183
-1.2038052e+183
-1.2020188e+183
-1.2063304e+183
-1.2046844e+183
-1.207237e+183
-1.2055308e+183
-1.2039743e+183
-1.2032806e+183
-1.2048532e+183
-1.2055628e+183
-1.2000027e+183
-1.2016712e+183
-1.2023364e+183
-1.2006376e+183
-1.1986205e+183
-1.2002524e+183
-1.2010348e+183
-1.1993771e+183
-1.2018199e+183
-1.2033376e+183
-1.2041831e+183
-1.2026263e+183
-1.2057945e+183
-1.2049375e+183
-1.2064718e+183
-1.2080851e+183
-1.2088955e+183
-1.2072219e+183
-1.2097876e+183
-1.2115655e+183
-1.2124647e+183
-1.2106426e+183
-1.2133528e+183
-1.2115252e+183
-1.2124789e+183
-1.214288e+183
-1.2097549e+183
-1.2080499e+183
-1.2107105e+183
-1.2089857e+183
-1.1853768e+183
-1.1884061e+183
-1.1896848e+183
-1.1865845e+183
-1.1926171e+183
-1.1951515e+183
-1.1944302e+183
-1.1973587e+183
-1.1966242e+183
-1.1951805e+183
-1.1939724e+183
-1.1970266e+183
-1.1992096e+183
-1.1999143e+183
-1.1976812e+183
-1.1958014e+183
-1.1964166e+183
-1.1986045e+183
-1.1979908e+183
-1.1877651e+183
-1.1909413e+183
-1.1921864e+183
-1.1889764e+183
-1.192428e+183
-1.195813e+183
-1.1967935e+183
-1.1933743e+183
-1.1933245e+183
-1.1901137e+183
-1.1913034e+183
-1.1946133e+183
-1.1978479e+183
-1.1963954e+183
-1.1983151e+183
-1.2006225e+183
-1.201421e+183
-1.1990352e+183
-1.2022506e+183
-1.1998103e+183
-1.2006481e+183
-1.2031281e+183
-1.199111e+183
-1.2000276e+183
-1.2048233e+183
-1.202296e+183
-1.2027136e+183
-1.2052526e+183
-1.2012858e+183
-1.20379e+183
-1.2043413e+183
-1.2018168e+183
-1.2063413e+183
-1.2080824e+183
-1.2089909e+183
-1.2072433e+183
-1.2044629e+183
-1.2063277e+183
-1.2072529e+183
-1.2053751e+183
-1.2027625e+183
-1.205464e+183
-1.2045745e+183
-1.2036137e+183
-1.2098618e+183
-1.2081159e+183
-1.2090572e+183
-1.2108232e+183
-1.2133987e+183
-1.2116482e+183
-1.2126213e+183
-1.2143761e+183
-1.2115604e+183
-1.2098413e+183
-1.2107603e+183
-1.2124932e+183
-1.2142735e+183
-1.2133289e+183
-1.2151476e+183
-1.2161213e+183
-1.215192e+183
-1.2161631e+183
-1.2180159e+183
-1.217047e+183
-1.2151782e+183
-1.2146345e+183
-1.2164385e+183
-1.2170031e+183
-1.2140432e+183
-1.2133713e+183
-1.2151342e+183
-1.2158328e+183
-1.2188591e+183
-1.2201683e+183
-1.2182682e+183
-1.2207846e+183
-1.2169298e+183
-1.2187854e+183
-1.2195166e+183
-1.2176387e+183
-1.2079399e+183
-1.206051e+183
-1.206624e+183
-1.2085391e+183
-1.2071167e+183
-1.2090558e+183
-1.2095395e+183
-1.2075708e+183
-1.2127718e+183
-1.2109313e+183
-1.2114361e+183
-1.2133031e+183
-1.2097647e+183
-1.2115517e+183
-1.212197e+183
-1.210384e+183
-1.2243525e+183
-1.2234445e+183
-1.2250731e+183
-1.2259726e+183
-1.2224794e+183
-1.2215083e+183
-1.2231658e+183
-1.2241191e+183
-1.2191173e+183
-1.2217515e+183
-1.2226805e+183
-1.2200776e+183
-1.217113e+183
-1.2197835e+183
-1.2207812e+183
-1.2181261e+183
-1.2229079e+183
-1.2255813e+183
-1.2249255e+183
-1.2223037e+183
-1.2266256e+183
-1.2283022e+183
-1.2290241e+183
-1.2273164e+183
-1.2251722e+183
-1.2267931e+183
-1.2275479e+183
-1.2259115e+183
-1.2242357e+183
-1.2209191e+183
-1.2234979e+183
-1.2216498e+183
-1.2307851e+183
-1.230049e+183
-1.2318882e+183
-1.2326326e+183
-1.2302918e+183
-1.2284967e+183
-1.2292638e+183
-1.2310812e+183
-1.2343094e+183
-1.2330838e+183
-1.2322745e+183
-1.2351344e+183
-1.2339003e+183
-1.234657e+183
-1.2367285e+183
-1.2359611e+183
-1.2276698e+183
-1.2267737e+183
-1.2285681e+183
-1.2294635e+183
-1.2266928e+183
-1.2248857e+183
-1.2258316e+183
-1.2276336e+183
-1.232564e+183
-1.2305412e+183
-1.2314426e+183
-1.2334699e+183
-1.2286721e+183
-1.2296094e+183
-1.2316291e+183
-1.2306928e+183
-1.2135126e+183
-1.2143912e+183
-1.2169736e+183
-1.2160857e+183
-1.2212828e+183
-1.219595e+183
-1.2205385e+183
-1.222214e+183
-1.2177677e+183
-1.2186781e+183
-1.220357e+183
-1.2194208e+183
-1.2152364e+183
-1.217865e+183
-1.2188097e+183
-1.2161446e+183
-1.2230124e+183
-1.2239419e+183
-1.2257561e+183
-1.2248163e+183
-1.2211385e+183
-1.2229232e+183
-1.22389e+183
-1.2220949e+183
-1.2248619e+183
-1.2258362e+183
-1.2278162e+183
-1.2268287e+183
-1.2267831e+183
-1.2277397e+183
-1.2297605e+183
-1.2287904e+183
-1.1803876e+183
-1.1810799e+183
-1.179102e+183
-1.1796903e+183
-1.1868967e+183
-1.1924626e+183
-1.1917174e+183
-1.1862347e+183
-1.1876561e+183
-1.1941137e+183
-1.1932809e+183
-1.1884338e+183
-1.1776176e+183
-1.177147e+183
-1.184558e+183
-1.1840535e+183
-1.1893476e+183
-1.1898567e+183
-1.1856148e+183
-1.1850997e+183
-1.1903731e+183
-1.1909425e+183
-1.1781075e+183
-1.1785729e+183
-1.1994043e+183
-1.2013411e+183
-1.2018731e+183
-1.1999177e+183
-1.2041684e+183
-1.2028091e+183
-1.2033474e+183
-1.2047294e+183
-1.2022728e+183
-1.2017883e+183
-1.2030933e+183
-1.2036026e+183
-1.1984854e+183
-1.2003643e+183
-1.2008497e+183
-1.1989519e+183
-1.2087058e+183
-1.2092219e+183
-1.206213e+183
-1.2056373e+183
-1.207364e+183
-1.207917e+183
-1.2075823e+183
-1.2081059e+183
-1.2045077e+183
-1.205045e+183
-1.2067598e+183
-1.2062049e+183
-1.2102728e+183
-1.2107999e+183
-1.211364e+183
-1.2118268e+183
-1.2120823e+183
-1.209584e+183
-1.2097967e+183
-1.2122671e+183
-1.2083196e+183
-1.2066503e+183
-1.2069915e+183
-1.2085844e+183
-1.2072058e+183
-1.2102219e+183
-1.2099679e+183
-1.2087727e+183
-1.2090147e+183
-1.207478e+183
-1.2124516e+183
-1.2126968e+183
-1.2003601e+183
-1.2007915e+183
-1.2027295e+183
-1.2023163e+183
-1.2038044e+183
-1.2051821e+183
-1.2055596e+183
-1.2042036e+183
-1.2044981e+183
-1.2048386e+183
-1.2061139e+183
-1.2058171e+183
-1.2015483e+183
-1.201148e+183
-1.2030558e+183
-1.2034168e+183
-1.2012753e+183
-1.2000505e+183
-1.2002721e+183
-1.2015434e+183
-1.2007708e+183
-1.199586e+183
-1.1998518e+183
-1.2010537e+183
-1.198235e+183
-1.1963922e+183
-1.1966247e+183
-1.1984696e+183
-1.198662e+183
-1.1968056e+183
-1.196973e+183
-1.1988443e+183
-1.1971467e+183
-1.1990386e+183
-1.1992775e+183
-1.197357e+183
-1.2017913e+183
-1.2004776e+183
-1.2020528e+183
-1.2007077e+183
-1.2010236e+183
-1.2013913e+183
-1.2026931e+183
-1.2023479e+183
-1.1976538e+183
-1.1995747e+183
-1.1999666e+183
-1.1980681e+183
-1.2087322e+183
-1.2061744e+183
-1.2065031e+183
-1.2090958e+183
-1.2048574e+183
-1.2032043e+183
-1.2051598e+183
-1.2034842e+183
-1.2067753e+183
-1.2071504e+183
-1.2037496e+183
-1.2054245e+183
-1.2057695e+183
-1.2040916e+183
-1.2098245e+183
-1.2094259e+183
-1.2051267e+183
-1.2048644e+183
-1.2035983e+183
-1.2020407e+183
-1.2023355e+183
-1.2038861e+183
-1.2074004e+183
-1.2076635e+183
-1.2079636e+183
-1.2054387e+183
-1.2057924e+183
-1.2083304e+183
-1.2028942e+183
-1.2025794e+183
-1.2041613e+183
-1.2045049e+183
-1.2121935e+183
-1.2117584e+183
-1.2135888e+183
-1.2140577e+183
-1.2153748e+183
-1.2171261e+183
-1.2176433e+183
-1.2158708e+183
-1.2161198e+183
-1.2144394e+183
-1.2148984e+183
-1.2166095e+183
-1.2127094e+183
-1.210939e+183
-1.2113631e+183
-1.2131479e+183
-1.2140347e+183
-1.213657e+183
-1.2153365e+183
-1.2156992e+183
-1.2133389e+183
-1.2130474e+183
-1.2147038e+183
-1.2150115e+183
-1.2098953e+183
-1.209619e+183
-1.2113513e+183
-1.2116321e+183
-1.210178e+183
-1.2119359e+183
-1.2123181e+183
-1.2105645e+183
-1.2174409e+183
-1.2170732e+183
-1.2188169e+183
-1.2191951e+183
-1.2167376e+183
-1.2164098e+183
-1.2181058e+183
-1.2184623e+183
-1.2210506e+183
-1.2224503e+183
-1.2206561e+183
-1.2228648e+183
-1.2198908e+183
-1.2216212e+183
-1.2220425e+183
-1.2202775e+183
-1.2196221e+183
-1.2178571e+183
-1.2201582e+183
-1.2183802e+183
-1.2189255e+183
-1.2194506e+183
-1.2212487e+183
-1.2207216e+183
-1.2233216e+183
-1.2220265e+183
-1.2214899e+183
-1.2238574e+183
-1.2226021e+183
-1.2231364e+183
-1.2249769e+183
-1.224437e+183
-1.2146627e+183
-1.2164359e+183
-1.2167013e+183
-1.2149197e+183
-1.2160028e+183
-1.2142539e+183
-1.2144628e+183
-1.2162097e+183
-1.2194952e+183
-1.2179682e+183
-1.2177503e+183
-1.2197248e+183
-1.2182073e+183
-1.2199741e+183
-1.2202308e+183
-1.2184707e+183
-1.2180918e+183
-1.2167885e+183
-1.2163386e+183
-1.2185323e+183
-1.2145231e+183
-1.2126563e+183
-1.2131629e+183
-1.2149995e+183
-1.2136553e+183
-1.2154458e+183
-1.2157939e+183
-1.2140446e+183
-1.217203e+183
-1.2189349e+183
-1.2192588e+183
-1.2175289e+183
-1.2207297e+183
-1.2228586e+183
-1.2225301e+183
-1.2210481e+183
-1.2216855e+183
-1.2198868e+183
-1.2203298e+183
-1.2221286e+183
-1.2254353e+183
-1.2240229e+183
-1.223582e+183
-1.2258689e+183
-1.2244255e+183
-1.2262742e+183
-1.2266214e+183
-1.2247591e+183
-1.2213037e+183
-1.2231321e+183
-1.2233981e+183
-1.221556e+183
-1.2218116e+183
-1.2220577e+183
-1.2239163e+183
-1.2236639e+183
-1.2258767e+183
-1.2256139e+183
-1.2275193e+183
-1.2277918e+183
-1.2250584e+183
-1.2253356e+183
-1.2272271e+183
-1.2269382e+183
-1.2279982e+183
-1.2297085e+183
-1.2315159e+183
-1.2300603e+183
-1.2318903e+183
-1.2283383e+183
-1.2336729e+183
-1.2332775e+183
-1.2354901e+183
-1.235062e+183
-1.2328387e+183
-1.2323866e+183
-1.2345813e+183
-1.2341182e+183
-1.2271391e+183
-1.2288377e+183
-1.2306427e+183
-1.2292945e+183
-1.2310958e+183
-1.2275863e+183
-1.2289796e+183
-1.2307423e+183
-1.2286771e+183
-1.2304208e+183
-1.2322669e+183
-1.2326102e+183
-1.2310597e+183
-1.2329415e+183
-1.2292713e+183
-1.2295309e+183
-1.2313341e+183
-1.2332285e+183
-1.2366206e+183
-1.2347653e+183
-1.2350621e+183
-1.2369272e+183
-1.2340735e+183
-1.2344307e+183
-1.2362798e+183
-1.2359101e+183
-1.2385449e+183
-1.2388622e+183
-1.2409118e+183
-1.2405884e+183
-1.2378211e+183
-1.239844e+183
-1.2402356e+183
-1.2382021e+183
-1.2427926e+183
-1.2450276e+183
-1.2453675e+183
-1.2431235e+183
-1.2420262e+183
-1.2442389e+183
-1.2446481e+183
-1.2424255e+183
-1.2359469e+183
-1.2379107e+183
-1.238413e+183
-1.2364299e+183
-1.2369328e+183
-1.238927e+183
-1.2394008e+183
-1.2373881e+183
-1.2410866e+183
-1.2432861e+183
-1.2437779e+183
-1.241571e+183
-1.2400569e+183
-1.2422477e+183
-1.2427632e+183
-1.2405662e+183
-1.2318981e+183
-1.2313675e+183
-1.2330786e+183
-1.2336127e+183
-1.2307864e+183
-1.2302256e+183
-1.2319307e+183
-1.2324945e+183
-1.2261399e+183
-1.2278436e+183
-1.2296416e+183
-1.2283838e+183
-1.2301746e+183
-1.2266726e+183
-1.225e+183
-1.2266944e+183
-1.2285016e+183
-1.2272566e+183
-1.2290632e+183
-1.2255497e+183
-1.2296857e+183
-1.2291684e+183
-1.2308306e+183
-1.2313683e+183
-1.2281187e+183
-1.2297453e+183
-1.2302862e+183
-1.2286431e+183
-1.2241193e+183
-1.225754e+183
-1.227491e+183
-1.2262217e+183
-1.2279922e+183
-1.2245343e+183
-1.2232517e+183
-1.2248247e+183
-1.2264893e+183
-1.2253019e+183
-1.2269971e+183
-1.2237011e+183
-1.2331411e+183
-1.2325821e+183
-1.2344718e+183
-1.2350512e+183
-1.232013e+183
-1.2314648e+183
-1.2333169e+183
-1.2338834e+183
-1.2386712e+183
-1.2365444e+183
-1.2371421e+183
-1.2392828e+183
-1.2353519e+183
-1.2359401e+183
-1.2380509e+183
-1.23744e+183
-1.2356468e+183
-1.2337225e+183
-1.2342963e+183
-1.2362329e+183
-1.2354261e+183
-1.2348829e+183
-1.2368248e+183
-1.2373788e+183
-1.2398986e+183
-1.2383471e+183
-1.2377477e+183
-1.2405076e+183
-1.2389484e+183
-1.2395146e+183
-1.2416976e+183
-1.2411202e+183
-1.1843655e+183
-1.1851107e+183
-1.1925004e+183
-1.1981996e+183
-1.1975181e+183
-1.1917837e+183
-1.1937907e+183
-1.1932459e+183
-1.1988779e+183
-1.199424e+183
-1.1858474e+183
-1.1863815e+183
-1.1829087e+183
-1.183613e+183
-1.1816985e+183
-1.182266e+183
-1.1896689e+183
-1.1954013e+183
-1.1948053e+183
-1.1890911e+183
-1.1903151e+183
-1.1968044e+183
-1.1960696e+183
-1.1910483e+183
-1.2197323e+183
-1.2213527e+183
-1.2217041e+183
-1.2200961e+183
-1.2205847e+183
-1.2189118e+183
-1.2193464e+183
-1.2209918e+183
-1.2226371e+183
-1.2222418e+183
-1.2239201e+183
-1.224292e+183
-1.2229843e+183
-1.2246272e+183
-1.2249487e+183
-1.2233138e+183
-1.2217285e+183
-1.2213442e+183
-1.2229863e+183
-1.2234062e+183
-1.2220803e+183
-1.2204782e+183
-1.2209115e+183
-1.2225253e+183
-1.2241584e+183
-1.2236923e+183
-1.225331e+183
-1.2258049e+183
-1.2246377e+183
-1.2262939e+183
-1.2267436e+183
-1.2250817e+183
-1.2312517e+183
-1.2308008e+183
-1.2326553e+183
-1.2331031e+183
-1.2288916e+183
-1.2270905e+183
-1.2275611e+183
-1.2293515e+183
-1.2284817e+183
-1.2280455e+183
-1.2298263e+183
-1.2302542e+183
-1.2317191e+183
-1.2335745e+183
-1.2340072e+183
-1.2321468e+183
-1.226053e+183
-1.2256976e+183
-1.2275068e+183
-1.2278482e+183
-1.231311e+183
-1.2297586e+183
-1.2294281e+183
-1.2316301e+183
-1.2304141e+183
-1.2300789e+183
-1.2319474e+183
-1.2322827e+183
-1.2267004e+183
-1.2263804e+183
-1.2281712e+183
-1.2284996e+183
-1.2184429e+183
-1.2180193e+183
-1.2197215e+183
-1.2201393e+183
-1.218771e+183
-1.2170727e+183
-1.2175808e+183
-1.2192838e+183
-1.2214214e+183
-1.2231229e+183
-1.2235374e+183
-1.2218355e+183
-1.2221804e+183
-1.2204685e+183
-1.2209769e+183
-1.2226737e+183
-1.2160138e+183
-1.2177528e+183
-1.2182481e+183
-1.2165243e+183
-1.2169761e+183
-1.2152142e+183
-1.2155664e+183
-1.2173068e+183
-1.2194956e+183
-1.2212362e+183
-1.221698e+183
-1.2199697e+183
-1.2187245e+183
-1.2190607e+183
-1.2208156e+183
-1.2204848e+183
-1.2235006e+183
-1.2249042e+183
-1.223061e+183
-1.2253279e+183
-1.2272597e+183
-1.2268404e+183
-1.229151e+183
-1.228733e+183
-1.2264662e+183
-1.2261583e+183
-1.2283548e+183
-1.2280696e+183
-1.2223277e+183
-1.2241934e+183
-1.2245153e+183
-1.2226559e+183
-1.2257824e+183
-1.2239662e+183
-1.2262646e+183
-1.2244563e+183
-1.228175e+183
-1.2277015e+183
-1.230054e+183
-1.2295892e+183
-1.2249118e+183
-1.2253229e+183
-1.2271355e+183
-1.2267232e+183
-1.2286389e+183
-1.2290581e+183
-1.2309424e+183
-1.2305192e+183
-1.2078026e+183
-1.2108898e+183
-1.2105215e+183
-1.2082179e+183
-1.209728e+183
-1.2093309e+183
-1.2118236e+183
-1.211342e+183
-1.2091069e+183
-1.2086389e+183
-1.2101528e+183
-1.2106282e+183
-1.2137989e+183
-1.2143124e+183
-1.2129865e+183
-1.2133509e+183
-1.2073148e+183
-1.2060308e+183
-1.2064759e+183
-1.2077681e+183
-1.205596e+183
-1.205181e+183
-1.2064489e+183
-1.2068749e+183
-1.2022615e+183
-1.2018945e+183
-1.2037617e+183
-1.2041648e+183
-1.2029801e+183
-1.2026066e+183
-1.2045626e+183
-1.2049794e+183
-1.2074621e+183
-1.2078107e+183
-1.2091669e+183
-1.2087952e+183
-1.2068392e+183
-1.2081427e+183
-1.2084996e+183
-1.2071787e+183
-1.2033117e+183
-1.2036558e+183
-1.2056842e+183
-1.2053337e+183
-1.204348e+183
-1.203978e+183
-1.2059787e+183
-1.206319e+183
-1.2123231e+183
-1.212768e+183
-1.2098597e+183
-1.2094967e+183
-1.2110702e+183
-1.2114806e+183
-1.214868e+183
-1.2153518e+183
-1.2131711e+183
-1.2157737e+183
-1.2162298e+183
-1.2136312e+183
-1.2102041e+183
-1.2118716e+183
-1.2123246e+183
-1.2106257e+183
-1.2183666e+183
-1.2161871e+183
-1.2158695e+183
-1.2187348e+183
-1.2146408e+183
-1.2128948e+183
-1.2132232e+183
-1.2149825e+183
-1.2165403e+183
-1.2168286e+183
-1.2152798e+183
-1.2135168e+183
-1.2137722e+183
-1.2155246e+183
-1.2191482e+183
-1.2194899e+183
-1.2110819e+183
-1.2141043e+183
-1.2145621e+183
-1.211603e+183
-1.21334e+183
-1.2128159e+183
-1.2166952e+183
-1.2171432e+183
-1.2150393e+183
-1.2175599e+183
-1.2179685e+183
-1.2154583e+183
-1.2138138e+183
-1.2120794e+183
-1.2125437e+183
-1.2142677e+183
-1.2058211e+183
-1.2054376e+183
-1.2075017e+183
-1.2079112e+183
-1.205074e+183
-1.2046899e+183
-1.2066676e+183
-1.2070987e+183
-1.2086264e+183
-1.2081722e+183
-1.2100614e+183
-1.2095653e+183
-1.2095161e+183
-1.2090784e+183
-1.2109892e+183
-1.2105347e+183
-1.2061434e+183
-1.208252e+183
-1.2085911e+183
-1.2064667e+183
-1.2070359e+183
-1.2067499e+183
-1.2088771e+183
-1.2091611e+183
-1.2104684e+183
-1.2107613e+183
-1.2122288e+183
-1.2119521e+183
-1.2101608e+183
-1.209853e+183
-1.2116511e+183
-1.2113328e+183
-1.2340382e+183
-1.2359184e+183
-1.2322702e+183
-1.2326893e+183
-1.234451e+183
-1.2363164e+183
-1.2331246e+183
-1.235035e+183
-1.2313312e+183
-1.2317978e+183
-1.2335728e+183
-1.2354725e+183
-1.2387334e+183
-1.237304e+183
-1.2368702e+183
-1.2391613e+183
-1.237735e+183
-1.2381307e+183
-1.2399803e+183
-1.2395846e+183
-1.2322804e+183
-1.2341917e+183
-1.2304817e+183
-1.2308854e+183
-1.2326878e+183
-1.2345991e+183
-1.231613e+183
-1.2335127e+183
-1.2298139e+183
-1.2301033e+183
-1.2318969e+183
-1.2338117e+183
-1.2372154e+183
-1.2356541e+183
-1.2353468e+183
-1.2375268e+183
-1.2360278e+183
-1.2364393e+183
-1.2383083e+183
-1.2378966e+183
-1.2398484e+183
-1.2419155e+183
-1.2423111e+183
-1.2402529e+183
-1.2415446e+183
-1.2412196e+183
-1.2391581e+183
-1.2394785e+183
-1.2434375e+183
-1.243767e+183
-1.2460245e+183
-1.2456916e+183
-1.244141e+183
-1.246792e+183
-1.2464013e+183
-1.2445314e+183
-1.24067e+183
-1.2410997e+183
-1.2431572e+183
-1.2427275e+183
-1.2449508e+183
-1.2476412e+183
-1.2472118e+183
-1.2453797e+183
-1.2484584e+183
-1.2480732e+183
-1.2458094e+183
-1.2461978e+183
-1.2415237e+183
-1.2435839e+183
-1.2439741e+183
-1.2419166e+183
-1.2337003e+183
-1.2354402e+183
-1.2373031e+183
-1.2357708e+183
-1.2376358e+183
-1.2340218e+183
-1.2348105e+183
-1.2366681e+183
-1.2330635e+183
-1.2333864e+183
-1.2351289e+183
-1.236989e+183
-1.240973e+183
-1.239121e+183
-1.2394494e+183
-1.2413036e+183
-1.2384789e+183
-1.2388032e+183
-1.2406538e+183
-1.2403283e+183
-1.2343972e+183
-1.2361378e+183
-1.2365814e+183
-1.238441e+183
-1.2380117e+183
-1.2348501e+183
-1.2357414e+183
-1.2374669e+183
-1.2353239e+183
-1.2370501e+183
-1.2388984e+183
-1.2393216e+183
-1.2411379e+183
-1.2407098e+183
-1.2425572e+183
-1.2429796e+183
-1.2398351e+183
-1.2416915e+183
-1.2421035e+183
-1.2402531e+183
-1.2422693e+183
-1.2425926e+183
-1.2446506e+183
-1.2443285e+183
-1.2432497e+183
-1.2429087e+183
-1.2453198e+183
-1.2449726e+183
-1.2465509e+183
-1.2468739e+183
-1.249132e+183
-1.248802e+183
-1.2472066e+183
-1.2494797e+183
-1.2498438e+183
-1.2475617e+183
-1.2457077e+183
-1.2436379e+183
-1.2461136e+183
-1.2440438e+183
-1.2449071e+183
-1.2444927e+183
-1.2465534e+183
-1.2469595e+183
-1.2491895e+183
-1.2487852e+183
-1.2510633e+183
-1.251465e+183
-1.247951e+183
-1.2502357e+183
-1.2506383e+183
-1.248351e+183
-1.1878826e+183
-1.1882188e+183
-1.1932702e+183
-1.1930781e+183
-1.1881962e+183
-1.1931685e+183
-1.1930472e+183
-1.1878868e+183
-1.1970196e+183
-1.1968879e+183
-1.1999237e+183
-1.2000048e+183
-1.19685e+183
-1.1997633e+183
-1.1998485e+183
-1.1968254e+183
-1.2024492e+183
-1.2023176e+183
-1.2048773e+183
-1.2047046e+183
-1.2026245e+183
-1.2025481e+183
-1.2049933e+183
-1.2050734e+183
-1.2026788e+183
-1.2051446e+183
-1.2262836e+183
-1.2258945e+183
-1.2274519e+183
-1.2278438e+183
-1.2243687e+183
-1.2228308e+183
-1.223175e+183
-1.2247303e+183
-1.2308168e+183
-1.2291002e+183
-1.2294966e+183
-1.2312102e+183
-1.2326807e+183
-1.2330757e+183
-1.2347971e+183
-1.2344035e+183
-1.2086084e+183
-1.2130829e+183
-1.2118289e+183
-1.2120408e+183
-1.2133121e+183
-1.2105246e+183
-1.2082067e+183
-1.2083653e+183
-1.2107078e+183
-1.2108589e+183
-1.2084811e+183
-1.2085467e+183
-1.2109669e+183
-1.2135335e+183
-1.2122039e+183
-1.2123632e+183
-1.2137319e+183
-1.2150265e+183
-1.216689e+183
-1.2178877e+183
-1.2181577e+183
-1.2161625e+183
-1.2145221e+183
-1.2147681e+183
-1.2164171e+183
-1.2203199e+183
-1.2200204e+183
-1.2420935e+183
-1.2416983e+183
-1.2438358e+183
-1.2434473e+183
-1.2383338e+183
-1.2399624e+183
-1.2362099e+183
-1.2366085e+183
-1.2387379e+183
-1.2403616e+183
-1.2453204e+183
-1.2473614e+183
-1.2477404e+183
-1.2457043e+183
-1.2496064e+183
-1.2519088e+183
-1.2522836e+183
-1.2499785e+183
-1.2478694e+183
-1.2500428e+183
-1.2503924e+183
-1.2482119e+183
-1.2485946e+183
-1.2507817e+183
-1.2511794e+183
-1.2489872e+183
-1.2534551e+183
-1.2530715e+183
-1.2554836e+183
-1.2558601e+183
-1.2523233e+183
-1.2526755e+183
-1.2550819e+183
-1.2547121e+183
-1.2568226e+183
-1.2594393e+183
-1.2590312e+183
-1.2572134e+183
-1.2580088e+183
-1.257621e+183
-1.2598526e+183
-1.2602499e+183
-1.2626347e+183
-1.2622274e+183
-1.2647524e+183
-1.2651589e+183
-1.2613916e+183
-1.2639121e+183
-1.2643299e+183
-1.2618066e+183
-1.2655634e+183
-1.2633957e+183
-1.2630513e+183
-1.2659047e+183
-1.2606681e+183
-1.2584355e+183
-1.2588158e+183
-1.2610283e+183
-1.2591957e+183
-1.2614174e+183
-1.2618131e+183
-1.2595801e+183
-1.2637828e+183
-1.2641777e+183
-1.2667092e+183
-1.2662987e+183
-1.249404e+183
-1.2515927e+183
-1.2520215e+183
-1.2498372e+183
-1.2502625e+183
-1.2524053e+183
-1.2527584e+183
-1.2506251e+183
-1.2546493e+183
-1.2550138e+183
-1.2574248e+183
-1.2570544e+183
-1.2538832e+183
-1.2562955e+183
-1.2566775e+183
-1.2542861e+183
-1.2703529e+183
-1.2707621e+183
-1.2711873e+183
-1.2715585e+183
-1.2746811e+183
-1.2743075e+183
-1.2765497e+183
-1.2769412e+183
-1.2734602e+183
-1.2756989e+183
-1.2761145e+183
-1.2738635e+183
-1.2811009e+183
-1.2787337e+183
-1.2791342e+183
-1.2815053e+183
-1.2778759e+183
-1.2802343e+183
-1.2806676e+183
-1.2783006e+183
-1.2829128e+183
-1.2833446e+183
-1.2855307e+183
-1.285091e+183
-1.2837842e+183
-1.2863914e+183
-1.2859732e+183
-1.2841974e+183
-1.2804038e+183
-1.2827742e+183
-1.2832206e+183
-1.2808563e+183
-1.279538e+183
-1.2819148e+183
-1.2823292e+183
-1.2799558e+183
-1.284607e+183
-1.2849955e+183
-1.2871936e+183
-1.2868035e+183
-1.2854514e+183
-1.285893e+183
-1.2880802e+183
-1.2876433e+183
-1.2723046e+183
-1.2718898e+183
-1.2750508e+183
-1.2754733e+183
-1.2777477e+183
-1.2773297e+183
-1.2727637e+183
-1.2759287e+183
-1.2781995e+183
-1.2786505e+183
-1.2732093e+183
-1.2763686e+183
-1.2933984e+183
-1.2929056e+183
-1.2972182e+183
-1.2967198e+183
-1.2991778e+183
-1.2996917e+183
-1.2938652e+183
-1.2883234e+183
-1.2913218e+183
-1.288743e+183
-1.2917316e+183
-1.2942987e+183
-1.287423e+183
-1.2903772e+183
-1.2878738e+183
-1.2908654e+183
-1.2977078e+183
-1.3001959e+183
-1.2982023e+183
-1.3006972e+183
-1.2891625e+183
-1.2921764e+183
-1.2947532e+183
-1.2951946e+183
-1.2895574e+183
-1.2926096e+183
-1.2904476e+183
-1.2935e+183
-1.2961193e+183
-1.2956521e+183
-1.2900066e+183
-1.2930555e+183
-1.2995866e+183
-1.3021358e+183
-1.3001028e+183
-1.3026481e+183
-1.2991127e+183
-1.2986786e+183
-1.3011906e+183
-1.3016548e+183
-1.250974e+183
-1.2535109e+183
-1.2531365e+183
-1.2513232e+183
-1.2516899e+183
-1.2539023e+183
-1.2542925e+183
-1.2520614e+183
-1.2566151e+183
-1.2562273e+183
-1.2590541e+183
-1.2586781e+183
-1.2554285e+183
-1.2582767e+183
-1.2578606e+183
-1.2558211e+183
-1.2600129e+183
-1.260432e+183
-1.262667e+183
-1.2622463e+183
-1.2646243e+183
-1.2676171e+183
-1.2671692e+183
-1.2650618e+183
-1.2655124e+183
-1.2680718e+183
-1.2685058e+183
-1.2659432e+183
-1.2608461e+183
-1.2612392e+183
-1.2635173e+183
-1.2631053e+183
-1.2663823e+183
-1.2667712e+183
-1.2693027e+183
-1.2689206e+183
-1.2643525e+183
-1.2639489e+183
-1.2616664e+183
-1.2620671e+183
-1.2624941e+183
-1.2629011e+183
-1.2651642e+183
-1.2647635e+183
-1.2671657e+183
-1.2675714e+183
-1.2701351e+183
-1.2697147e+183
-1.2524585e+183
-1.254681e+183
-1.2550866e+183
-1.2528635e+183
-1.2536705e+183
-1.2532728e+183
-1.2554878e+183
-1.2558911e+183
-1.2582373e+183
-1.2578274e+183
-1.260302e+183
-1.2607137e+183
-1.2570167e+183
-1.2574092e+183
-1.2598657e+183
-1.2594775e+183
-1.2737019e+183
-1.274151e+183
-1.2745666e+183
-1.2749186e+183
-1.278081e+183
-1.2777116e+183
-1.280385e+183
-1.2799813e+183
-1.2768517e+183
-1.2772725e+183
-1.2795409e+183
-1.2791157e+183
-1.2826255e+183
-1.2822005e+183
-1.2846083e+183
-1.2850491e+183
-1.28369e+183
-1.2813147e+183
-1.2817536e+183
-1.2841486e+183
-1.2868659e+183
-1.2863884e+183
-1.288593e+183
-1.2890873e+183
-1.2873434e+183
-1.2895771e+183
-1.2900404e+183
-1.2878009e+183
-1.2904746e+183
-1.2886636e+183
-1.2882461e+183
-1.2908786e+183
-1.2854953e+183
-1.2830642e+183
-1.2834993e+183
-1.2859241e+183
-1.2868273e+183
-1.2863704e+183
-1.2839594e+183
-1.2844205e+183
-1.2890839e+183
-1.2895389e+183
-1.2913051e+183
-1.2917688e+183
-1.2753372e+183
-1.2757533e+183
-1.2766894e+183
-1.2798715e+183
-1.2762351e+183
-1.279422e+183
-1.2817205e+183
-1.2821799e+183
-1.2785069e+183
-1.2789386e+183
-1.2812482e+183
-1.2808147e+183
-1.2936939e+183
-1.2967829e+183
-1.2994264e+183
-1.2941676e+183
-1.2972556e+183
-1.2999195e+183
-1.2985056e+183
-1.2989516e+183
-1.2932518e+183
-1.296323e+183
-1.2928211e+183
-1.295866e+183
-1.3029243e+183
-1.30247e+183
-1.305039e+183
-1.3055127e+183
-1.3039574e+183
-1.3034434e+183
-1.3060276e+183
-1.3065351e+183
-1.2914751e+183
-1.2945434e+183
-1.2909699e+183
-1.29402e+183
-1.2966399e+183
-1.2971532e+183
-1.3006307e+183
-1.3031785e+183
-1.3011368e+183
-1.3036866e+183
-1.2976513e+183
-1.2980897e+183
-1.3015966e+183
-1.3041477e+183
-1.3020331e+183
-1.3045851e+183
-1.291975e+183
-1.2950436e+183
-1.2924308e+183
-1.2954708e+183
-1.2267633e+183
-1.2277591e+183
-1.2296866e+183
-1.2287016e+183
-1.230717e+183
-1.2328111e+183
-1.2338646e+183
-1.2317302e+183
-1.2307851e+183
-1.2287003e+183
-1.2297126e+183
-1.231781e+183
-1.2368301e+183
-1.2378274e+183
-1.2400317e+183
-1.2390502e+183
-1.2356846e+183
-1.2346835e+183
-1.2326921e+183
-1.2336768e+183
-1.23784e+183
-1.2367573e+183
-1.2347468e+183
-1.2358221e+183
-1.2388958e+183
-1.2399777e+183
-1.2422147e+183
-1.2411083e+183
-1.2369124e+183
-1.238007e+183
-1.2400278e+183
-1.2389387e+183
-1.2443845e+183
-1.24332e+183
-1.2410776e+183
-1.2421585e+183
-1.2431522e+183
-1.2440594e+183
-1.2462736e+183
-1.2453681e+183
-1.2390436e+183
-1.2410358e+183
-1.2419326e+183
-1.2399361e+183
-1.2287651e+183
-1.2297618e+183
-1.2317235e+183
-1.230698e+183
-1.232768e+183
-1.2338166e+183
-1.2360045e+183
-1.2349305e+183
-1.2379917e+183
-1.2370541e+183
-1.2348609e+183
-1.2358296e+183
-1.2307528e+183
-1.2327393e+183
-1.2337163e+183
-1.2317193e+183
-1.2452911e+183
-1.2463238e+183
-1.248111e+183
-1.2503881e+183
-1.2471079e+183
-1.2493888e+183
-1.2530316e+183
-1.252005e+183
-1.2539968e+183
-1.2550331e+183
-1.2523692e+183
-1.2550045e+183
-1.2513878e+183
-1.2540327e+183
-1.2560454e+183
-1.2570313e+183
-1.2472973e+183
-1.2500534e+183
-1.2490925e+183
-1.2482237e+183
-1.2409808e+183
-1.2419875e+183
-1.2438102e+183
-1.2460893e+183
-1.2427799e+183
-1.2450352e+183
-1.2476423e+183
-1.249655e+183
-1.2507554e+183
-1.2487379e+183
-1.2518666e+183
-1.2472384e+183
-1.249873e+183
-1.2483383e+183
-1.2509455e+183
-1.2529338e+183
-1.243073e+183
-1.2449161e+183
-1.2460306e+183
-1.2441843e+183
-1.2618558e+183
-1.2608199e+183
-1.2640369e+183
-1.2583274e+183
-1.2560717e+183
-1.2571137e+183
-1.2593705e+183
-1.2581348e+183
-1.2604003e+183
-1.2614073e+183
-1.2591318e+183
-1.2628948e+183
-1.2650948e+183
-1.2661265e+183
-1.2639137e+183
-1.2528425e+183
-1.2539333e+183
-1.2561823e+183
-1.2572552e+183
-1.2550015e+183
-1.2683952e+183
-1.2326753e+183
-1.233619e+183
-1.2356148e+183
-1.2346658e+183
-1.2354582e+183
-1.2345555e+183
-1.2374459e+183
-1.2365415e+183
-1.2367472e+183
-1.2377002e+183
-1.2398587e+183
-1.2389024e+183
-1.2386387e+183
-1.2417425e+183
-1.2408165e+183
-1.2395497e+183
-1.240863e+183
-1.2418375e+183
-1.2438704e+183
-1.2428739e+183
-1.2450138e+183
-1.247251e+183
-1.2482813e+183
-1.2460303e+183
-1.2470584e+183
-1.2480148e+183
-1.2502607e+183
-1.2493198e+183
-1.2428187e+183
-1.2448769e+183
-1.2458353e+183
-1.2437583e+183
-1.2446741e+183
-1.2455781e+183
-1.2476188e+183
-1.2467281e+183
-1.2488951e+183
-1.2497781e+183
-1.2520288e+183
-1.2511466e+183
-1.2513438e+183
-1.2505991e+183
-1.2528485e+183
-1.2535942e+183
-1.2464321e+183
-1.2491806e+183
-1.2484522e+183
-1.2471453e+183
-1.2371543e+183
-1.2363208e+183
-1.2383172e+183
-1.2391689e+183
-1.2413109e+183
-1.2435434e+183
-1.2426498e+183
-1.2404342e+183
-1.2451581e+183
-1.2444105e+183
-1.2421786e+183
-1.2429489e+183
-1.2379876e+183
-1.2400195e+183
-1.240791e+183
-1.2387498e+183
-1.251281e+183
-1.2540242e+183
-1.2563076e+183
-1.2530882e+183
-1.2553756e+183
-1.2522164e+183
-1.2521048e+183
-1.2543801e+183
-1.2510772e+183
-1.2533846e+183
-1.2492265e+183
-1.2502567e+183
-1.2570094e+183
-1.2560219e+183
-1.2580379e+183
-1.2590312e+183
-1.2580277e+183
-1.2600454e+183
-1.2610139e+183
-1.2589741e+183
-1.2531212e+183
-1.2549419e+183
-1.2572591e+183
-1.2558241e+183
-1.2581358e+183
-1.2539959e+183
-1.2555756e+183
-1.2548161e+183
-1.2566434e+183
-1.2589516e+183
-1.257422e+183
-1.2597643e+183
-1.262489e+183
-1.2616584e+183
-1.2637274e+183
-1.2645793e+183
-1.2599234e+183
-1.260814e+183
-1.2628549e+183
-1.2619576e+183
-1.2658617e+183
-1.2681667e+183
-1.2690302e+183
-1.2667221e+183
-1.266348e+183
-1.2640639e+183
-1.2649727e+183
-1.2672666e+183
-1.2710951e+183
-1.2697912e+183
-1.2688661e+183
-1.2720232e+183
-1.2706987e+183
-1.2729374e+183
-1.273805e+183
-1.2715654e+183
-1.2621471e+183
-1.2644285e+183
-1.2653966e+183
-1.263117e+183
-1.2624194e+183
-1.260139e+183
-1.2611381e+183
-1.2634228e+183
-1.2659385e+183
-1.2649323e+183
-1.2671507e+183
-1.2681636e+183
-1.2669445e+183
-1.2691725e+183
-1.2701434e+183
-1.2679127e+183
-1.275232e+183
-1.2779392e+183
-1.2802646e+183
-1.28113e+183
-1.276096e+183
-1.2787881e+183
-1.2784274e+183
-1.2793475e+183
-1.274304e+183
-1.2770208e+183
-1.2733783e+183
-1.276083e+183
-1.2812605e+183
-1.2832303e+183
-1.2803515e+183
-1.2823197e+183
-1.2846018e+183
-1.2855276e+183
-1.2830514e+183
-1.285029e+183
-1.2821757e+183
-1.284149e+183
-1.2864393e+183
-1.2873113e+183
-1.2694265e+183
-1.2721251e+183
-1.2704484e+183
-1.2731796e+183
-1.2755282e+183
-1.2744725e+183
-1.2774758e+183
-1.2764146e+183
-1.2765515e+183
-1.2774979e+183
-1.2794354e+183
-1.2784912e+183
-1.2714679e+183
-1.2742061e+183
-1.2724326e+183
-1.2751492e+183
-1.2865712e+183
-1.2874961e+183
-1.2902876e+183
-1.2883395e+183
-1.2912038e+183
-1.2892647e+183
-1.2884108e+183
-1.2892835e+183
-1.2920982e+183
-1.2901751e+183
-1.2929497e+183
-1.2910417e+183
-1.2394689e+183
-1.2401033e+183
-1.2421622e+183
-1.241509e+183
-1.2413523e+183
-1.2407332e+183
-1.2434261e+183
-1.2427957e+183
-1.2436595e+183
-1.2443266e+183
-1.2466048e+183
-1.2459236e+183
-1.2449794e+183
-1.2472824e+183
-1.2479379e+183
-1.2456183e+183
-1.2521035e+183
-1.251415e+183
-1.2493086e+183
-1.2499796e+183
-1.2506793e+183
-1.2499379e+183
-1.2478934e+183
-1.2486028e+183
-1.2528874e+183
-1.2521188e+183
-1.2544518e+183
-1.2552447e+183
-1.2536498e+183
-1.2560298e+183
-1.2567456e+183
-1.2543463e+183
-1.2519364e+183
-1.2540348e+183
-1.2546058e+183
-1.2524981e+183
-1.2506506e+183
-1.2527598e+183
-1.2534063e+183
-1.2513007e+183
-1.2562599e+183
-1.2586629e+183
-1.2592565e+183
-1.2568412e+183
-1.2550086e+183
-1.2574145e+183
-1.2580482e+183
-1.2556399e+183
-1.2425968e+183
-1.2419834e+183
-1.2440617e+183
-1.2446896e+183
-1.2469111e+183
-1.2492555e+183
-1.2486027e+183
-1.2462624e+183
-1.2481621e+183
-1.2475639e+183
-1.2498989e+183
-1.2504806e+183
-1.2432198e+183
-1.2453286e+183
-1.2459203e+183
-1.2438024e+183
-1.2604865e+183
-1.2634405e+183
-1.2655633e+183
-1.2663735e+183
-1.2613075e+183
-1.264259e+183
-1.2621168e+183
-1.2628252e+183
-1.2650619e+183
-1.2671728e+183
-1.2679047e+183
-1.2657636e+183
-1.2692388e+183
-1.271491e+183
-1.2722397e+183
-1.2699835e+183
-1.2698981e+183
-1.2676393e+183
-1.2706968e+183
-1.2684417e+183
-1.273259e+183
-1.272471e+183
-1.2753474e+183
-1.2745589e+183
-1.2740511e+183
-1.2747931e+183
-1.27687e+183
-1.2761346e+183
-1.2743044e+183
-1.2720447e+183
-1.2726995e+183
-1.2749738e+183
-1.2736276e+183
-1.2729554e+183
-1.2707054e+183
-1.2713721e+183
-1.2789506e+183
-1.2768476e+183
-1.2775497e+183
-1.2796564e+183
-1.2754996e+183
-1.2775679e+183
-1.2782595e+183
-1.2761671e+183
-1.2635281e+183
-1.2641611e+183
-1.2648059e+183
-1.2654087e+183
-1.2677954e+183
-1.2683992e+183
-1.2705844e+183
-1.2699485e+183
-1.2686225e+183
-1.2664856e+183
-1.2671268e+183
-1.2692775e+183
-1.2820886e+183
-1.2828838e+183
-1.2865472e+183
-1.2857571e+183
-1.2881341e+183
-1.2889338e+183
-1.2836613e+183
-1.2783811e+183
-1.2812383e+183
-1.2791108e+183
-1.2819604e+183
-1.2843986e+183
-1.2768003e+183
-1.279648e+183
-1.2775926e+183
-1.2804568e+183
-1.2881036e+183
-1.2873231e+183
-1.2904859e+183
-1.2897125e+183
-1.2798127e+183
-1.2826775e+183
-1.2851283e+183
-1.285819e+183
-1.2805004e+183
-1.283365e+183
-1.2819135e+183
-1.2847815e+183
-1.2872499e+183
-1.2865251e+183
-1.2811954e+183
-1.2840625e+183
-1.2909928e+183
-1.290244e+183
-1.292654e+183
-1.2933849e+183
-1.2895378e+183
-1.2888567e+183
-1.2919464e+183
-1.2912418e+183
-1.2463738e+183
-1.2467944e+183
-1.2489196e+183
-1.2484953e+183
-1.2507195e+183
-1.2530578e+183
-1.2535161e+183
-1.2511528e+183
-1.2515854e+183
-1.2519716e+183
-1.2543155e+183
-1.2539438e+183
-1.2471804e+183
-1.2493301e+183
-1.2497068e+183
-1.2475292e+183
-1.2443677e+183
-1.2448931e+183
-1.2470037e+183
-1.2464848e+183
-1.2487027e+183
-1.2510328e+183
-1.2515614e+183
-1.2492208e+183
-1.2497578e+183
-1.250252e+183
-1.2525544e+183
-1.2520811e+183
-1.2454155e+183
-1.247535e+183
-1.2480394e+183
-1.2459117e+183
-1.2541211e+183
-1.2562581e+183
-1.2567531e+183
-1.2545956e+183
-1.2536055e+183
-1.2530718e+183
-1.2551857e+183
-1.2557296e+183
-1.2580013e+183
-1.2574381e+183
-1.2598592e+183
-1.2604325e+183
-1.2609965e+183
-1.2585478e+183
-1.2590606e+183
-1.2615256e+183
-1.2551192e+183
-1.2577591e+183
-1.2572778e+183
-1.2555913e+183
-1.2560233e+183
-1.2582045e+183
-1.2586029e+183
-1.2564004e+183
-1.2609561e+183
-1.260539e+183
-1.2630377e+183
-1.2634671e+183
-1.2595924e+183
-1.2620705e+183
-1.2625709e+183
-1.2600799e+183
-1.2698866e+183
-1.269413e+183
-1.2689224e+183
-1.2684119e+183
-1.2719799e+183
-1.271466e+183
-1.2736572e+183
-1.2741936e+183
-1.2725083e+183
-1.2747351e+183
-1.2752364e+183
-1.2729924e+183
-1.2666861e+183
-1.2660571e+183
-1.2690883e+183
-1.2712649e+183
-1.2719096e+183
-1.2697391e+183
-1.2725131e+183
-1.2672829e+183
-1.2703428e+183
-1.2678358e+183
-1.2708851e+183
-1.273073e+183
-1.2769178e+183
-1.2746217e+183
-1.2752e+183
-1.2775095e+183
-1.2733775e+183
-1.2756615e+183
-1.2763049e+183
-1.2740158e+183
-1.2816525e+183
-1.2795234e+183
-1.2801346e+183
-1.2822744e+183
-1.2782576e+183
-1.2803683e+183
-1.2810212e+183
-1.2789024e+183
-1.2757923e+183
-1.2781125e+183
-1.27869e+183
-1.2763514e+183
-1.2792481e+183
-1.2769016e+183
-1.2774047e+183
-1.2797535e+183
-1.2840685e+183
-1.2819069e+183
-1.2845953e+183
-1.2824241e+183
-1.2807542e+183
-1.282903e+183
-1.2834964e+183
-1.28134e+183
-1.2879801e+183
-1.2886414e+183
-1.2923587e+183
-1.291692e+183
-1.2940952e+183
-1.2947802e+183
-1.2839205e+183
-1.2868197e+183
-1.289292e+183
-1.2899531e+183
-1.2845636e+183
-1.2874708e+183
-1.2826371e+183
-1.2855175e+183
-1.283285e+183
-1.2861786e+183
-1.2937075e+183
-1.2930609e+183
-1.2954783e+183
-1.296133e+183
-1.2906083e+183
-1.2852087e+183
-1.2881238e+183
-1.2857941e+183
-1.288715e+183
-1.2912006e+183
-1.2869073e+183
-1.2898251e+183
-1.286366e+183
-1.2892854e+183
-1.2917848e+183
-1.2923477e+183
-1.2961896e+183
-1.2956089e+183
-1.2980526e+183
-1.2986322e+183
-1.2949957e+183
-1.2943555e+183
-1.2967888e+183
-1.2974357e+183
-1.1484644e+183
-1.1482618e+183
-1.1483348e+183
-1.1486307e+183
-1.1488089e+183
-1.1493672e+183
-1.1501763e+183
-1.1405516e+183
-1.1420384e+183
-1.1411646e+183
-1.1424896e+183
-1.1401807e+183
-1.1393923e+183
-1.1402847e+183
-1.1418602e+183
-1.1390238e+183
-1.1404068e+183
-1.1392875e+183
-1.1419528e+183
-1.1406487e+183
-1.1422817e+183
-1.1405302e+183
-1.1420931e+183
-1.1394016e+183
-1.139326e+183
-1.1411923e+183
-1.1427632e+183
-1.1420867e+183
-1.1435444e+183
-1.14115e+183
-1.1399977e+183
-1.1506954e+183
-1.1508072e+183
-1.1512937e+183
-1.1520907e+183
-1.1529533e+183
-1.1536788e+183
-1.1555581e+183
-1.1545861e+183
-1.142486e+183
-1.1439269e+183
-1.1425497e+183
-1.144136e+183
-1.141387e+183
-1.1414625e+183
-1.142999e+183
-1.1417937e+183
-1.144601e+183
-1.143898e+183
-1.1454316e+183
-1.1429051e+183
-1.1463637e+183
-1.1454927e+183
-1.147719e+183
-1.1473271e+183
-1.1485207e+183
-1.1467945e+183
-1.1446921e+183
-1.1437012e+183
-1.146157e+183
-1.1453905e+183
-1.1468808e+183
-1.1444064e+183
-1.1484851e+183
-1.1487731e+183
-1.1525152e+183
-1.1528731e+183
-1.1487962e+183
-1.1491595e+183
-1.1493001e+183
-1.1500429e+183
-1.1541293e+183
-1.1534067e+183
-1.1496304e+183
-1.1504172e+183
-1.1512566e+183
-1.1506909e+183
-1.1548442e+183
-1.1555079e+183
-1.1511189e+183
-1.151909e+183
-1.1561912e+183
-1.1519032e+183
-1.1525192e+183
-1.1567059e+183
-1.152635e+183
-1.1532154e+183
-1.1465717e+183
-1.1463764e+183
-1.1504191e+183
-1.1505502e+183
-1.1467478e+183
-1.1468416e+183
-1.1471514e+183
-1.1469012e+183
-1.1506207e+183
-1.1465631e+183
-1.1463666e+183
-1.1504582e+183
-1.1474105e+183
-1.1480507e+183
-1.1520664e+183
-1.151474e+183
-1.1477422e+183
-1.1484048e+183
-1.1467771e+183
-1.150746e+183
-1.1469794e+183
-1.1510155e+183
-1.1469777e+183
-1.147284e+183
-1.1669321e+183
-1.1678381e+183
-1.1562011e+183
-1.1642984e+183
-1.1652324e+183
-1.1572494e+183
-1.1563204e+183
-1.1569066e+183
-1.1579857e+183
-1.1574849e+183
-1.1544539e+183
-1.1540596e+183
-1.1540407e+183
-1.1549942e+183
-1.1557071e+183
-1.155131e+183
-1.164866e+183
-1.1659015e+183
-1.1621476e+183
-1.1632666e+183
-1.1638986e+183
-1.1629627e+183
-1.1523091e+183
-1.1603209e+183
-1.1612425e+183
-1.1531633e+183
-1.1530465e+183
-1.1536305e+183
-1.1523518e+183
-1.1526216e+183
-1.1513275e+183
-1.1614196e+183
-1.1621633e+183
-1.1596738e+183
-1.1590316e+183
-1.1517404e+183
-1.1518964e+183
-1.1521155e+183
-1.1518484e+183
-1.1517999e+183
-1.1540236e+183
-1.153332e+183
-1.1534467e+183
-1.1541287e+183
-1.1549156e+183
-1.1552142e+183
-1.1551966e+183
-1.1553905e+183
-1.1552144e+183
-1.1549966e+183
-1.155405e+183
-1.1556265e+183
-1.1556788e+183
-1.1559545e+183
-1.1547441e+183
-1.1536459e+183
-1.1543495e+183
-1.154003e+183
-1.1545603e+183
-1.1552592e+183
-1.1558639e+183
-1.1552748e+183
-1.1564786e+183
-1.1562187e+183
-1.1566827e+183
-1.1569729e+183
-1.1597198e+183
-1.1602318e+183
-1.1607265e+183
-1.1603221e+183
-1.1581325e+183
-1.1587296e+183
-1.1595224e+183
-1.1589349e+183
-1.1598355e+183
-1.1594321e+183
-1.1600179e+183
-1.1605113e+183
-1.1612657e+183
-1.1606935e+183
-1.1610155e+183
-1.1616248e+183
-1.1565422e+183
-1.1572476e+183
-1.157953e+183
-1.157319e+183
-1.155716e+183
-1.156312e+183
-1.156726e+183
-1.1560343e+183
-1.1574743e+183
-1.1571822e+183
-1.1576379e+183
-1.1578953e+183
-1.1584643e+183
-1.1582017e+183
-1.1587487e+183
-1.1590652e+183
-1.1599791e+183
-1.159564e+183
-1.1593119e+183
-1.1593806e+183
-1.1503345e+183
-1.1521521e+183
-1.1461234e+183
-1.1504538e+183
-1.1522167e+183
-1.1464096e+183
-1.1510613e+183
-1.1527087e+183
-1.1473123e+183
-1.1505522e+183
-1.1522901e+183
-1.1464881e+183
-1.1512495e+183
-1.1530837e+183
-1.1470225e+183
-1.1521153e+183
-1.1538238e+183
-1.148227e+183
-1.1507164e+183
-1.1525688e+183
-1.1505696e+183
-1.1523624e+183
-1.1463911e+183
-1.1464115e+183
-1.159448e+183
-1.159627e+183
-1.160167e+183
-1.161005e+183
-1.1615146e+183
-1.1614906e+183
-1.1625058e+183
-1.161951e+183
-1.1632815e+183
-1.1638851e+183
-1.1652796e+183
-1.1646625e+183
-1.15472e+183
-1.1564715e+183
-1.1542094e+183
-1.155974e+183
-1.1501098e+183
-1.1505963e+183
-1.1554899e+183
-1.1571512e+183
-1.1561219e+183
-1.1576026e+183
-1.1514043e+183
-1.1523902e+183
-1.152507e+183
-1.1542376e+183
-1.1484576e+183
-1.1525236e+183
-1.1543396e+183
-1.1483163e+183
-1.153605e+183
-1.1553563e+183
-1.1528591e+183
-1.1546847e+183
-1.1485561e+183
-1.1495613e+183
-1.1649953e+183
-1.1600559e+183
-1.1650015e+183
-1.1601495e+183
-1.156909e+183
-1.1566975e+183
-1.1651634e+183
-1.1600815e+183
-1.1650474e+183
-1.1599598e+183
-1.1565516e+183
-1.1566411e+183
-1.1567922e+183
-1.1602267e+183
-1.1570784e+183
-1.160533e+183
-1.165634e+183
-1.1653588e+183
-1.1575549e+183
-1.1609562e+183
-1.1581666e+183
-1.1615343e+183
-1.1665175e+183
-1.1660376e+183
-1.1676623e+183
-1.1625695e+183
-1.1681581e+183
-1.1631583e+183
-1.1591674e+183
-1.159757e+183
-1.1668918e+183
-1.1618567e+183
-1.1672174e+183
-1.1621942e+183
-1.1585155e+183
-1.1587944e+183
-1.1686662e+183
-1.1636384e+183
-1.1691047e+183
-1.1642209e+183
-1.1602907e+183
-1.1608757e+183
-1.1695337e+183
-1.1646699e+183
-1.1697136e+183
-1.1649642e+183
-1.161433e+183
-1.1617557e+183
-1.1579703e+183
-1.1573573e+183
-1.1565683e+183
-1.1566609e+183
-1.1566388e+183
-1.1565588e+183
-1.156689e+183
-1.1573521e+183
-1.1483667e+183
-1.1500206e+183
-1.1445528e+183
-1.1482654e+183
-1.1499018e+183
-1.1446173e+183
-1.1495746e+183
-1.1510931e+183
-1.1460421e+183
-1.1487863e+183
-1.1504331e+183
-1.1450571e+183
-1.1481499e+183
-1.1498701e+183
-1.1443813e+183
-1.1486783e+183
-1.1503044e+183
-1.1450808e+183
-1.1481139e+183
-1.1497567e+183
-1.1443726e+183
-1.1479377e+183
-1.1496599e+183
-1.1441034e+183
-1.1574481e+183
-1.157336e+183
-1.1572355e+183
-1.1577643e+183
-1.1581349e+183
-1.1585403e+183
-1.1591778e+183
-1.1600344e+183
-1.1484403e+183
-1.1501723e+183
-1.1487352e+183
-1.1503827e+183
-1.1443874e+183
-1.1449048e+183
-1.1484318e+183
-1.1502293e+183
-1.1488919e+183
-1.1506063e+183
-1.1449329e+183
-1.1443695e+183
-1.1502587e+183
-1.1519895e+183
-1.1462911e+183
-1.1510776e+183
-1.1526781e+183
-1.1473822e+183
-1.1492643e+183
-1.1510173e+183
-1.1452464e+183
-1.1495964e+183
-1.1513777e+183
-1.1455435e+183
-1.1636227e+183
-1.158649e+183
-1.1640176e+183
-1.1591224e+183
-1.1553305e+183
-1.155806e+183
-1.1644661e+183
-1.1596109e+183
-1.1648565e+183
-1.1600659e+183
-1.1563592e+183
-1.1568479e+183
-1.1626182e+183
-1.1577871e+183
-1.1627268e+183
-1.1578504e+183
-1.1545632e+183
-1.1545596e+183
-1.1629324e+183
-1.1579715e+183
-1.1632517e+183
-1.1583135e+183
-1.1546487e+183
-1.1549693e+183
-1.1619583e+183
-1.1572204e+183
-1.1620295e+183
-1.1573741e+183
-1.1540378e+183
-1.154195e+183
-1.1550505e+183
-1.1580243e+183
-1.1545361e+183
-1.1576234e+183
-1.1621755e+183
-1.1624116e+183
-1.1619763e+183
-1.157208e+183
-1.1620457e+183
-1.1572414e+183
-1.1539772e+183
-1.1539972e+183
-1.1622126e+183
-1.1574104e+183
-1.1624603e+183
-1.1576805e+183
-1.1541706e+183
-1.1544691e+183
-1.1728132e+183
-1.1731525e+183
-1.1691304e+183
-1.1691483e+183
-1.1723137e+183
-1.1722617e+183
-1.165547e+183
-1.1621419e+183
-1.1620132e+183
-1.1654823e+183
-1.1619634e+183
-1.1654832e+183
-1.1655615e+183
-1.1619963e+183
-1.1691824e+183
-1.169305e+183
-1.1726399e+183
-1.1724499e+183
-1.1734709e+183
-1.1738751e+183
-1.1729022e+183
-1.1695241e+183
-1.1694189e+183
-1.1727902e+183
-1.1620697e+183
-1.1620257e+183
-1.1656376e+183
-1.1657306e+183
-1.1699707e+183
-1.1696985e+183
-1.1730606e+183
-1.1732807e+183
-1.1622181e+183
-1.1658933e+183
-1.1661552e+183
-1.1625024e+183
-1.1749486e+183
-1.1743454e+183
-1.1735326e+183
-1.1703609e+183
-1.1701652e+183
-1.1738268e+183
-1.1663268e+183
-1.1626497e+183
-1.1627579e+183
-1.1664952e+183
-1.1633478e+183
-1.1629628e+183
-1.1667223e+183
-1.1671002e+183
-1.1706142e+183
-1.1710195e+183
-1.1745381e+183
-1.1741408e+183
-1.175614e+183
-1.176303e+183
-1.1748268e+183
-1.1716702e+183
-1.1713377e+183
-1.175167e+183
-1.1674157e+183
-1.1636626e+183
-1.1640218e+183
-1.1677714e+183
-1.1643982e+183
-1.1681275e+183
-1.1685275e+183
-1.1648411e+183
-1.172012e+183
-1.1724145e+183
-1.1759381e+183
-1.1755452e+183
-1.1773428e+183
-1.1768427e+183
-1.1653535e+183
-1.1651277e+183
-1.1689488e+183
-1.1691889e+183
-1.1687176e+183
-1.165013e+183
-1.1650421e+183
-1.1688263e+183
-1.1727728e+183
-1.1726302e+183
-1.176361e+183
-1.1761605e+183
-1.1729255e+183
-1.1731965e+183
-1.176821e+183
-1.176559e+183
-1.1778627e+183
-1.1785537e+183
-1.1736591e+183
-1.1733985e+183
-1.1772828e+183
-1.1769933e+183
-1.169386e+183
-1.1655366e+183
-1.1657961e+183
-1.1696619e+183
-1.1666861e+183
-1.1661527e+183
-1.1700007e+183
-1.1704803e+183
-1.173985e+183
-1.174455e+183
-1.1780185e+183
-1.1776184e+183
-1.1792762e+183
-1.1751437e+183
-1.1747922e+183
-1.1786994e+183
-1.1782901e+183
-1.170821e+183
-1.1670313e+183
-1.1673531e+183
-1.1711807e+183
-1.1683187e+183
-1.1677431e+183
-1.1715655e+183
-1.1721026e+183
-1.1755231e+183
-1.1760635e+183
-1.1796269e+183
-1.1791211e+183
-1.180076e+183
-1.1812769e+183
-1.1808073e+183
-1.180238e+183
-1.1799293e+183
-1.1764294e+183
-1.1767561e+183
-1.1724834e+183
-1.1687237e+183
-1.1691135e+183
-1.1728536e+183
-1.1694346e+183
-1.1731406e+183
-1.1733679e+183
-1.1697147e+183
-1.1770124e+183
-1.177222e+183
-1.1806852e+183
-1.1805189e+183
-1.1839267e+183
-1.1838576e+183
-1.1873871e+183
-1.1874392e+183
-1.1904542e+183
-1.1902155e+183
-1.190192e+183
-1.1904066e+183
-1.1873179e+183
-1.1873593e+183
-1.1838067e+183
-1.1837407e+183
-1.1788805e+183
-1.1790861e+183
-1.1824582e+183
-1.1825174e+183
-1.1762923e+183
-1.1733449e+183
-1.1729912e+183
-1.1760147e+183
-1.1723742e+183
-1.1726634e+183
-1.1757423e+183
-1.1755139e+183
-1.1786719e+183
-1.1784949e+183
-1.1823412e+183
-1.1824428e+183
-1.1717975e+183
-1.1713882e+183
-1.1709998e+183
-1.1706596e+183
-1.1782966e+183
-1.1783932e+183
-1.1753685e+183
-1.1721912e+183
-1.1720586e+183
-1.175251e+183
-1.1704219e+183
-1.1703137e+183
-1.1549706e+183
-1.1569387e+183
-1.1545616e+183
-1.1565164e+183
-1.1646333e+183
-1.1682315e+183
-1.1642047e+183
-1.167839e+183
-1.1611213e+183
-1.1606747e+183
-1.1568313e+183
-1.1586499e+183
-1.1557975e+183
-1.1577535e+183
-1.165763e+183
-1.1692093e+183
-1.165139e+183
-1.1686824e+183
-1.1624583e+183
-1.1617272e+183
-1.1542552e+183
-1.1562762e+183
-1.153912e+183
-1.155962e+183
-1.1638718e+183
-1.1675619e+183
-1.1637725e+183
-1.1674657e+183
-1.1603347e+183
-1.160195e+183
-1.154036e+183
-1.1560688e+183
-1.1544262e+183
-1.1563535e+183
-1.1638207e+183
-1.1674822e+183
-1.1602831e+183
-1.1756069e+183
-1.1765036e+183
-1.1735059e+183
-1.1745613e+183
-1.185587e+183
-1.1814458e+183
-1.1803464e+183
-1.1866964e+183
-1.1824828e+183
-1.1833866e+183
-1.1886758e+183
-1.1877606e+183
-1.1714683e+183
-1.1724697e+183
-1.1696717e+183
-1.1705333e+183
-1.1771392e+183
-1.1761436e+183
-1.1810871e+183
-1.1821911e+183
-1.1781576e+183
-1.1792639e+183
-1.1844495e+183
-1.1832968e+183
-1.2027496e+183
-1.2042535e+183
-1.2050158e+183
-1.2034674e+183
-1.2071979e+183
-1.2057342e+183
-1.2080619e+183
-1.2065413e+183
-1.2050002e+183
-1.2043205e+183
-1.2056964e+183
-1.2064024e+183
-1.2015038e+183
-1.2029217e+183
-1.2035761e+183
-1.2021297e+183
-1.2001295e+183
-1.2015129e+183
-1.2022519e+183
-1.2008499e+183
-1.2028682e+183
-1.2042011e+183
-1.2049872e+183
-1.2036171e+183
-1.2064206e+183
-1.2056148e+183
-1.2071544e+183
-1.2086461e+183
-1.2094389e+183
-1.2079012e+183
-1.2102517e+183
-1.2118286e+183
-1.2126981e+183
-1.2110874e+183
-1.2135633e+183
-1.2119581e+183
-1.2128683e+183
-1.214452e+183
-1.2102992e+183
-1.2087341e+183
-1.2112132e+183
-1.2096321e+183
-1.1874834e+183
-1.1889973e+183
-1.1896752e+183
-1.1881287e+183
-1.1901406e+183
-1.1911858e+183
-1.1918897e+183
-1.1908267e+183
-1.1914365e+183
-1.1920976e+183
-1.1931804e+183
-1.1924956e+183
-1.1902767e+183
-1.1886913e+183
-1.1893189e+183
-1.1908951e+183
-1.1936462e+183
-1.1960957e+183
-1.1950314e+183
-1.195739e+183
-1.1943539e+183
-1.1967962e+183
-1.1989934e+183
-1.1982886e+183
-1.1986263e+183
-1.1992471e+183
-1.1981601e+183
-1.197566e+183
-1.1962103e+183
-1.1967903e+183
-1.1950209e+183
-1.1974643e+183
-1.1980782e+183
-1.1970474e+183
-1.1964155e+183
-1.1956998e+183
-1.2008154e+183
-1.2014806e+183
-1.2002488e+183
-1.1996472e+183
-1.1914822e+183
-1.1898648e+183
-1.1904879e+183
-1.1921613e+183
-1.1945064e+183
-1.1938095e+183
-1.1926946e+183
-1.1933993e+183
-1.1939541e+183
-1.194517e+183
-1.1956118e+183
-1.1950462e+183
-1.1927337e+183
-1.1910469e+183
-1.191661e+183
-1.193285e+183
-1.1947072e+183
-1.1964821e+183
-1.1970838e+183
-1.1952898e+183
-1.1990498e+183
-1.1978171e+183
-1.1984047e+183
-1.1996344e+183
-1.2000771e+183
-1.1988752e+183
-1.1993111e+183
-1.2004893e+183
-1.1975615e+183
-1.1957304e+183
-1.1961239e+183
-1.197966e+183
-1.1961132e+183
-1.1949975e+183
-1.1956734e+183
-1.1968365e+183
-1.1937816e+183
-1.1921919e+183
-1.1928119e+183
-1.1944244e+183
-1.1934003e+183
-1.1950857e+183
-1.1958518e+183
-1.1941055e+183
-1.1975873e+183
-1.1963841e+183
-1.1971647e+183
-1.1983976e+183
-1.2025481e+183
-1.2016947e+183
-1.2013539e+183
-1.2004873e+183
-1.1997583e+183
-1.1989134e+183
-1.2007919e+183
-1.199972e+183
-1.1996292e+183
-1.1987964e+183
-1.1973385e+183
-1.1981134e+183
-1.2022899e+183
-1.203178e+183
-1.2041331e+183
-1.2050268e+183
-1.2037839e+183
-1.2032495e+183
-1.2020329e+183
-1.2004148e+183
-1.2009844e+183
-1.2025934e+183
-1.2045255e+183
-1.2041936e+183
-1.2017578e+183
-1.2013675e+183
-1.2029618e+183
-1.2033083e+183
-1.2067498e+183
-1.2070924e+183
-1.205762e+183
-1.2063227e+183
-1.2074626e+183
-1.2089972e+183
-1.2099369e+183
-1.2084211e+183
-1.206213e+183
-1.2078274e+183
-1.2087479e+183
-1.2071301e+183
-1.2043235e+183
-1.2068645e+183
-1.2059137e+183
-1.2052529e+183
-1.2109107e+183
-1.2093897e+183
-1.2103221e+183
-1.2118608e+183
-1.2140735e+183
-1.2124854e+183
-1.2134519e+183
-1.2150438e+183
-1.2121488e+183
-1.2105766e+183
-1.2115095e+183
-1.2130893e+183
-1.2147678e+183
-1.2137973e+183
-1.2153983e+183
-1.2163959e+183
-1.2157462e+183
-1.2167183e+183
-1.218348e+183
-1.2173817e+183
-1.2160183e+183
-1.2155262e+183
-1.2171379e+183
-1.2176708e+183
-1.2149478e+183
-1.2142672e+183
-1.2158624e+183
-1.2165422e+183
-1.2194217e+183
-1.2205416e+183
-1.2188638e+183
-1.2211211e+183
-1.2175493e+183
-1.2191841e+183
-1.2199028e+183
-1.2182482e+183
-1.2095047e+183
-1.2078781e+183
-1.2084701e+183
-1.2101179e+183
-1.2089298e+183
-1.2106122e+183
-1.2110197e+183
-1.2093066e+183
-1.2138811e+183
-1.212264e+183
-1.212701e+183
-1.2143425e+183
-1.2110958e+183
-1.2126568e+183
-1.2133224e+183
-1.2117358e+183
-1.2245262e+183
-1.223622e+183
-1.2251689e+183
-1.2260614e+183
-1.2226538e+183
-1.2216761e+183
-1.2232526e+183
-1.2242109e+183
-1.2189226e+183
-1.2204271e+183
-1.2220534e+183
-1.221379e+183
-1.2229766e+183
-1.2198846e+183
-1.2168844e+183
-1.2184056e+183
-1.2200771e+183
-1.2194328e+183
-1.2210775e+183
-1.217912e+183
-1.2227125e+183
-1.2242475e+183
-1.2258871e+183
-1.2236172e+183
-1.2252316e+183
-1.2221209e+183
-1.226816e+183
-1.2284138e+183
-1.2291246e+183
-1.2274986e+183
-1.2253574e+183
-1.2268967e+183
-1.2276558e+183
-1.2261002e+183
-1.2229524e+183
-1.2245414e+183
-1.22075e+183
-1.222225e+183
-1.2238044e+183
-1.2214741e+183
-1.2308276e+183
-1.2301057e+183
-1.2319353e+183
-1.232667e+183
-1.2303411e+183
-1.22855e+183
-1.2293179e+183
-1.2311295e+183
-1.234358e+183
-1.2331285e+183
-1.2323199e+183
-1.2351822e+183
-1.2339437e+183
-1.234687e+183
-1.2367599e+183
-1.2360061e+183
-1.2277087e+183
-1.2268199e+183
-1.2286089e+183
-1.2294977e+183
-1.2267259e+183
-1.2249232e+183
-1.2258733e+183
-1.22767e+183
-1.2326066e+183
-1.2305803e+183
-1.2314738e+183
-1.2335038e+183
-1.2287016e+183
-1.2296427e+183
-1.231667e+183
-1.2307259e+183
-1.2133059e+183
-1.2147722e+183
-1.2141679e+183
-1.2156373e+183
-1.2172569e+183
-1.2163744e+183
-1.2213658e+183
-1.2197573e+183
-1.2206939e+183
-1.2222868e+183
-1.2179384e+183
-1.2188427e+183
-1.2204469e+183
-1.2195177e+183
-1.2150025e+183
-1.2164802e+183
-1.2181481e+183
-1.2174107e+183
-1.2190879e+183
-1.215891e+183
-1.2230436e+183
-1.223964e+183
-1.2257722e+183
-1.2248415e+183
-1.2211838e+183
-1.2229628e+183
-1.2239206e+183
-1.2221321e+183
-1.2248983e+183
-1.2258634e+183
-1.2278486e+183
-1.2268699e+183
-1.2268065e+183
-1.2277517e+183
-1.229775e+183
-1.2288178e+183
-1.186829e+183
-1.181989e+183
-1.1820173e+183
-1.1870481e+183
-1.187432e+183
-1.1823726e+183
-1.1830782e+183
-1.1879888e+183
-1.1853694e+183
-1.180636e+183
-1.1806116e+183
-1.1855432e+183
-1.1858939e+183
-1.1809283e+183
-1.1816328e+183
-1.1864541e+183
-1.1923671e+183
-1.1895089e+183
-1.1900188e+183
-1.1928336e+183
-1.1952708e+183
-1.194799e+183
-1.1975114e+183
-1.1970199e+183
-1.1944149e+183
-1.1939879e+183
-1.1961549e+183
-1.1966176e+183
-1.1888519e+183
-1.1916043e+183
-1.1919881e+183
-1.1891395e+183
-1.190398e+183
-1.1932337e+183
-1.1936434e+183
-1.1907249e+183
-1.1965364e+183
-1.1969546e+183
-1.1991832e+183
-1.1987845e+183
-1.1961297e+183
-1.1956912e+183
-1.1979404e+183
-1.1983879e+183
-1.1940461e+183
-1.1911242e+183
-1.1916232e+183
-1.1944863e+183
-1.1789877e+183
-1.1837475e+183
-1.1841288e+183
-1.1794941e+183
-1.1834922e+183
-1.1788904e+183
-1.1788024e+183
-1.1835568e+183
-1.1875453e+183
-1.1872372e+183
-1.1899542e+183
-1.1901942e+183
-1.1870455e+183
-1.1868994e+183
-1.1895752e+183
-1.1897618e+183
-1.1921261e+183
-1.1919179e+183
-1.1940725e+183
-1.1942975e+183
-1.1925197e+183
-1.192314e+183
-1.1944792e+183
-1.1946614e+183
-1.190903e+183
-1.1881445e+183
-1.1885431e+183
-1.1912623e+183
-1.1877475e+183
-1.190413e+183
-1.190637e+183
-1.1879008e+183
-1.1929421e+183
-1.192712e+183
-1.1950375e+183
-1.1948296e+183
-1.1935921e+183
-1.1932211e+183
-1.1953282e+183
-1.1957388e+183
-1.1796801e+183
-1.184326e+183
-1.184392e+183
-1.1795709e+183
-1.1803727e+183
-1.1797756e+183
-1.1846162e+183
-1.1850721e+183
-1.2002737e+183
-1.2023778e+183
-1.2029209e+183
-1.2008187e+183
-1.2047913e+183
-1.2035932e+183
-1.2041289e+183
-1.2053469e+183
-1.2030202e+183
-1.2025382e+183
-1.2036772e+183
-1.2041821e+183
-1.1993127e+183
-1.2013545e+183
-1.2018308e+183
-1.1997515e+183
-1.2095003e+183
-1.2100282e+183
-1.2067561e+183
-1.2061841e+183
-1.2077968e+183
-1.2083499e+183
-1.2083281e+183
-1.2088971e+183
-1.2050405e+183
-1.2055716e+183
-1.2071864e+183
-1.2066345e+183
-1.2104636e+183
-1.2110216e+183
-1.2115995e+183
-1.2120679e+183
-1.2123267e+183
-1.2103498e+183
-1.210564e+183
-1.2125046e+183
-1.2087455e+183
-1.2072105e+183
-1.2075145e+183
-1.2089866e+183
-1.2077401e+183
-1.210925e+183
-1.2107071e+183
-1.2091937e+183
-1.2094247e+183
-1.2079964e+183
-1.2126506e+183
-1.2128539e+183
-1.2012894e+183
-1.2016914e+183
-1.2037719e+183
-1.2033893e+183
-1.2046139e+183
-1.2058258e+183
-1.2061768e+183
-1.2049892e+183
-1.2052828e+183
-1.2056017e+183
-1.2067059e+183
-1.2064243e+183
-1.2024537e+183
-1.2020307e+183
-1.2040846e+183
-1.2044332e+183
-1.2018659e+183
-1.2008145e+183
-1.2010271e+183
-1.2021254e+183
-1.2013815e+183
-1.2003774e+183
-1.2006252e+183
-1.2016501e+183
-1.1993171e+183
-1.1973971e+183
-1.1975802e+183
-1.1995258e+183
-1.1997041e+183
-1.1977254e+183
-1.1978537e+183
-1.1998653e+183
-1.1979794e+183
-1.2000423e+183
-1.2002578e+183
-1.1981415e+183
-1.2023921e+183
-1.2012353e+183
-1.2026329e+183
-1.2014527e+183
-1.2017619e+183
-1.2021129e+183
-1.2032461e+183
-1.2029128e+183
-1.1984376e+183
-1.2005594e+183
-1.2009427e+183
-1.1988754e+183
-1.2089407e+183
-1.2069213e+183
-1.2072474e+183
-1.2092853e+183
-1.2052604e+183
-1.203722e+183
-1.2055528e+183
-1.2039872e+183
-1.2075161e+183
-1.2078804e+183
-1.2042649e+183
-1.205837e+183
-1.2061793e+183
-1.2045992e+183
-1.2099923e+183
-1.2096077e+183
-1.205897e+183
-1.2056148e+183
-1.2040308e+183
-1.2025849e+183
-1.2028703e+183
-1.2043176e+183
-1.2076147e+183
-1.2078966e+183
-1.2082041e+183
-1.2061914e+183
-1.2065516e+183
-1.2085617e+183
-1.2034161e+183
-1.2031082e+183
-1.2045861e+183
-1.2049226e+183
-1.2129209e+183
-1.2124801e+183
-1.2141291e+183
-1.214596e+183
-1.2157821e+183
-1.2174493e+183
-1.2179543e+183
-1.2162716e+183
-1.2164143e+183
-1.2148226e+183
-1.2152968e+183
-1.2169228e+183
-1.2132384e+183
-1.2116485e+183
-1.2120683e+183
-1.21368e+183
-1.2144247e+183
-1.2140711e+183
-1.2156612e+183
-1.2160006e+183
-1.2137545e+183
-1.2134518e+183
-1.2150253e+183
-1.2153417e+183
-1.210614e+183
-1.2103294e+183
-1.2118874e+183
-1.2121775e+183
-1.2109117e+183
-1.2124849e+183
-1.212851e+183
-1.2112806e+183
-1.2176515e+183
-1.2173112e+183
-1.2189966e+183
-1.2193484e+183
-1.2169836e+183
-1.2166481e+183
-1.2182889e+183
-1.2186516e+183
-1.2211787e+183
-1.2224668e+183
-1.220809e+183
-1.2228564e+183
-1.2200488e+183
-1.2216485e+183
-1.222072e+183
-1.2204409e+183
-1.219774e+183
-1.2180635e+183
-1.2203239e+183
-1.2186059e+183
-1.2191605e+183
-1.2196685e+183
-1.2214052e+183
-1.2208937e+183
-1.2233095e+183
-1.2221616e+183
-1.2216152e+183
-1.2238531e+183
-1.2227442e+183
-1.2232642e+183
-1.2249658e+183
-1.2244387e+183
-1.2153659e+183
-1.216967e+183
-1.2172031e+183
-1.215598e+183
-1.2165405e+183
-1.2149609e+183
-1.2151725e+183
-1.2167563e+183
-1.2198084e+183
-1.2183808e+183
-1.2181455e+183
-1.2200522e+183
-1.2186029e+183
-1.2202838e+183
-1.2205078e+183
-1.218828e+183
-1.2184006e+183
-1.2172066e+183
-1.2167416e+183
-1.2188592e+183
-1.2150762e+183
-1.2134032e+183
-1.213913e+183
-1.2155601e+183
-1.2143881e+183
-1.2159949e+183
-1.2163234e+183
-1.2147518e+183
-1.217616e+183
-1.2192639e+183
-1.2195685e+183
-1.2179188e+183
-1.220968e+183
-1.2230167e+183
-1.2227059e+183
-1.2212686e+183
-1.2218434e+183
-1.2200988e+183
-1.220564e+183
-1.222302e+183
-1.2254282e+183
-1.2241672e+183
-1.2237125e+183
-1.2258748e+183
-1.2245716e+183
-1.2262811e+183
-1.2266135e+183
-1.2248881e+183
-1.2215285e+183
-1.2232955e+183
-1.2235686e+183
-1.2217912e+183
-1.2220309e+183
-1.2222489e+183
-1.2240465e+183
-1.2238189e+183
-1.2259797e+183
-1.2257385e+183
-1.2275002e+183
-1.2277533e+183
-1.2251926e+183
-1.2254736e+183
-1.2272221e+183
-1.226932e+183
-1.2280607e+183
-1.2301515e+183
-1.2317326e+183
-1.2304962e+183
-1.2321052e+183
-1.228398e+183
-1.2338171e+183
-1.2334242e+183
-1.2355685e+183
-1.2351437e+183
-1.2329855e+183
-1.2325289e+183
-1.2346613e+183
-1.234194e+183
-1.2271977e+183
-1.2292672e+183
-1.2308561e+183
-1.2297336e+183
-1.2313108e+183
-1.2276484e+183
-1.2290416e+183
-1.2311902e+183
-1.2287384e+183
-1.2308654e+183
-1.2324866e+183
-1.2328327e+183
-1.2315079e+183
-1.2331615e+183
-1.2293308e+183
-1.2295862e+183
-1.2317775e+183
-1.2334465e+183
-1.2367007e+183
-1.2349135e+183
-1.2352068e+183
-1.2370044e+183
-1.2342211e+183
-1.2345807e+183
-1.2363629e+183
-1.2359915e+183
-1.2385783e+183
-1.238893e+183
-1.2409319e+183
-1.2406112e+183
-1.2378569e+183
-1.2398698e+183
-1.2402615e+183
-1.2382386e+183
-1.2428279e+183
-1.2450853e+183
-1.2454215e+183
-1.2431557e+183
-1.2420644e+183
-1.2442996e+183
-1.244709e+183
-1.2424639e+183
-1.2359789e+183
-1.2379337e+183
-1.2384392e+183
-1.2364654e+183
-1.2369692e+183
-1.2389531e+183
-1.239424e+183
-1.2374214e+183
-1.2411255e+183
-1.2433474e+183
-1.2438355e+183
-1.2416067e+183
-1.240092e+183
-1.2423045e+183
-1.2428244e+183
-1.2406055e+183
-1.2320378e+183
-1.2315097e+183
-1.2331548e+183
-1.2336849e+183
-1.2309288e+183
-1.230366e+183
-1.2320055e+183
-1.2325708e+183
-1.2262013e+183
-1.2282823e+183
-1.2298544e+183
-1.2288144e+183
-1.2303839e+183
-1.226731e+183
-1.2250574e+183
-1.2271215e+183
-1.2287127e+183
-1.2276905e+183
-1.2292745e+183
-1.2256096e+183
-1.2298245e+183
-1.2293101e+183
-1.2309074e+183
-1.2314409e+183
-1.2282598e+183
-1.2298228e+183
-1.2303652e+183
-1.2287858e+183
-1.224181e+183
-1.2261739e+183
-1.2277008e+183
-1.2266473e+183
-1.2281986e+183
-1.2245926e+183
-1.2233143e+183
-1.2252428e+183
-1.226695e+183
-1.2257198e+183
-1.2272045e+183
-1.2237648e+183
-1.2331706e+183
-1.2326158e+183
-1.2344961e+183
-1.2350714e+183
-1.2320501e+183
-1.2314983e+183
-1.233341e+183
-1.2339094e+183
-1.2387291e+183
-1.236581e+183
-1.2371745e+183
-1.2393363e+183
-1.2353878e+183
-1.2359779e+183
-1.2381098e+183
-1.237497e+183
-1.2356701e+183
-1.2337544e+183
-1.2343288e+183
-1.236256e+183
-1.2354542e+183
-1.2349146e+183
-1.2368467e+183
-1.2373974e+183
-1.2399557e+183
-1.2383825e+183
-1.2377838e+183
-1.2405647e+183
-1.2389826e+183
-1.2395451e+183
-1.2417491e+183
-1.2411759e+183
-1.1858195e+183
-1.1907571e+183
-1.1909549e+183
-1.1858366e+183
-1.1913228e+183
-1.1862135e+183
-1.1869839e+183
-1.1919144e+183
-1.1955653e+183
-1.1950568e+183
-1.1980235e+183
-1.1984435e+183
-1.2009542e+183
-1.2005665e+183
-1.2032958e+183
-1.2029234e+183
-1.2002318e+183
-1.1998951e+183
-1.2022202e+183
-1.2025833e+183
-1.1946974e+183
-1.1944327e+183
-1.1973591e+183
-1.1976805e+183
-1.1967334e+183
-1.1964119e+183
-1.1993466e+183
-1.1995965e+183
-1.1959118e+183
-1.1961453e+183
-1.199077e+183
-1.1987679e+183
-1.2015713e+183
-1.2012529e+183
-1.2039178e+183
-1.2035982e+183
-1.2018463e+183
-1.2021008e+183
-1.2044681e+183
-1.2041939e+183
-1.1922708e+183
-1.1873498e+183
-1.1873223e+183
-1.1924245e+183
-1.187561e+183
-1.1926813e+183
-1.1930724e+183
-1.1881004e+183
-1.184429e+183
-1.1893806e+183
-1.1895185e+183
-1.1843803e+183
-1.1847172e+183
-1.1854685e+183
-1.1904269e+183
-1.1898584e+183
-1.1882882e+183
-1.1833666e+183
-1.1833078e+183
-1.1884151e+183
-1.1835519e+183
-1.1886653e+183
-1.1891159e+183
-1.1841609e+183
-1.1953606e+183
-1.1924067e+183
-1.1927814e+183
-1.1956851e+183
-1.1978814e+183
-1.1981991e+183
-1.2005112e+183
-1.2001689e+183
-1.1972855e+183
-1.1976078e+183
-1.1998766e+183
-1.1995186e+183
-1.191931e+183
-1.194802e+183
-1.1950948e+183
-1.19215e+183
-1.1930464e+183
-1.195966e+183
-1.1962606e+183
-1.1932649e+183
-1.1991556e+183
-1.1995668e+183
-1.2018869e+183
-1.2014993e+183
-1.1988054e+183
-1.1984916e+183
-1.2011585e+183
-1.2008201e+183
-1.1941097e+183
-1.1936172e+183
-1.1966057e+183
-1.1970335e+183
-1.220471e+183
-1.2219206e+183
-1.2222565e+183
-1.2208335e+183
-1.2211321e+183
-1.2196419e+183
-1.2200835e+183
-1.2215531e+183
-1.2230636e+183
-1.2226457e+183
-1.2242445e+183
-1.2246382e+183
-1.2234168e+183
-1.2249791e+183
-1.2252881e+183
-1.2237292e+183
-1.2224641e+183
-1.2220791e+183
-1.2235588e+183
-1.2239738e+183
-1.2226459e+183
-1.2212211e+183
-1.2216642e+183
-1.2231103e+183
-1.2246062e+183
-1.22412e+183
-1.2256819e+183
-1.2261699e+183
-1.2250796e+183
-1.2266547e+183
-1.2270857e+183
-1.2255106e+183
-1.2314179e+183
-1.230957e+183
-1.232659e+183
-1.2331197e+183
-1.2290853e+183
-1.2273507e+183
-1.2278322e+183
-1.2295548e+183
-1.2287307e+183
-1.228314e+183
-1.230028e+183
-1.2304399e+183
-1.2318862e+183
-1.2335944e+183
-1.2340148e+183
-1.2323001e+183
-1.226308e+183
-1.2259346e+183
-1.2276827e+183
-1.228039e+183
-1.2313136e+183
-1.2299171e+183
-1.2295739e+183
-1.2316448e+183
-1.230562e+183
-1.2302378e+183
-1.2319605e+183
-1.2322837e+183
-1.2269478e+183
-1.2266396e+183
-1.2283642e+183
-1.2286817e+183
-1.2191658e+183
-1.2187368e+183
-1.2202644e+183
-1.220675e+183
-1.2193e+183
-1.2177716e+183
-1.2182815e+183
-1.2198111e+183
-1.2218294e+183
-1.2234492e+183
-1.2238549e+183
-1.2222359e+183
-1.2224749e+183
-1.2208469e+183
-1.2213707e+183
-1.2229868e+183
-1.2167116e+183
-1.2182803e+183
-1.2187717e+183
-1.2172238e+183
-1.2174863e+183
-1.2158996e+183
-1.2162648e+183
-1.2178397e+183
-1.2198884e+183
-1.2215478e+183
-1.2219869e+183
-1.2203421e+183
-1.2190926e+183
-1.2194576e+183
-1.2211292e+183
-1.2207721e+183
-1.223702e+183
-1.2250644e+183
-1.2232846e+183
-1.2254697e+183
-1.2273736e+183
-1.2269696e+183
-1.2291217e+183
-1.2287158e+183
-1.2265932e+183
-1.2262707e+183
-1.2283336e+183
-1.228039e+183
-1.22253e+183
-1.2243354e+183
-1.2246754e+183
-1.2228803e+183
-1.2259304e+183
-1.2241739e+183
-1.226427e+183
-1.2246815e+183
-1.2283065e+183
-1.2278196e+183
-1.2300424e+183
-1.2295657e+183
-1.2251482e+183
-1.2255508e+183
-1.2273018e+183
-1.2268953e+183
-1.2287802e+183
-1.229194e+183
-1.2309352e+183
-1.2305163e+183
-1.2083314e+183
-1.2116134e+183
-1.211223e+183
-1.2087322e+183
-1.2101393e+183
-1.2097497e+183
-1.2125575e+183
-1.2120463e+183
-1.2096288e+183
-1.209155e+183
-1.2105553e+183
-1.2110462e+183
-1.2139829e+183
-1.2145112e+183
-1.2131584e+183
-1.2135355e+183
-1.2079162e+183
-1.2068202e+183
-1.2072636e+183
-1.2083659e+183
-1.2063665e+183
-1.2059579e+183
-1.2070532e+183
-1.2074663e+183
-1.2031363e+183
-1.2028128e+183
-1.2047948e+183
-1.2051871e+183
-1.2039181e+183
-1.2035282e+183
-1.2056306e+183
-1.2060618e+183
-1.2082781e+183
-1.2086149e+183
-1.209796e+183
-1.2094281e+183
-1.2076531e+183
-1.2087658e+183
-1.2091089e+183
-1.2079836e+183
-1.2042597e+183
-1.204574e+183
-1.2067669e+183
-1.2064415e+183
-1.2052562e+183
-1.2048962e+183
-1.2070554e+183
-1.2073796e+183
-1.2130707e+183
-1.2135303e+183
-1.2103996e+183
-1.2100502e+183
-1.2115201e+183
-1.2119174e+183
-1.2150675e+183
-1.2155547e+183
-1.2139479e+183
-1.2160005e+183
-1.2164709e+183
-1.214421e+183
-1.2107758e+183
-1.2123313e+183
-1.2127808e+183
-1.2111911e+183
-1.2186986e+183
-1.2170766e+183
-1.2167225e+183
-1.2190756e+183
-1.2151369e+183
-1.2135305e+183
-1.21385e+183
-1.215477e+183
-1.2173821e+183
-1.2176566e+183
-1.2157651e+183
-1.2141451e+183
-1.2143708e+183
-1.2159926e+183
-1.2194182e+183
-1.2197382e+183
-1.2116887e+183
-1.2149076e+183
-1.2154205e+183
-1.2122092e+183
-1.2138191e+183
-1.2132922e+183
-1.2169565e+183
-1.2174387e+183
-1.215882e+183
-1.217871e+183
-1.2183117e+183
-1.2163369e+183
-1.2143034e+183
-1.212709e+183
-1.213158e+183
-1.2147553e+183
-1.2067754e+183
-1.2063957e+183
-1.2086451e+183
-1.2090492e+183
-1.2060053e+183
-1.2056178e+183
-1.207758e+183
-1.2081984e+183
-1.2094793e+183
-1.2090167e+183
-1.2107483e+183
-1.210252e+183
-1.2103758e+183
-1.2099499e+183
-1.2116816e+183
-1.211241e+183
-1.2071015e+183
-1.2094065e+183
-1.2097343e+183
-1.207413e+183
-1.2079734e+183
-1.2077032e+183
-1.2100286e+183
-1.2102923e+183
-1.2113536e+183
-1.2116158e+183
-1.2129071e+183
-1.2126613e+183
-1.2110408e+183
-1.2107346e+183
-1.2123561e+183
-1.2120463e+183
-1.2344902e+183
-1.2361392e+183
-1.232334e+183
-1.2327521e+183
-1.2348979e+183
-1.2365355e+183
-1.2335762e+183
-1.2352556e+183
-1.2313907e+183
-1.231859e+183
-1.2340235e+183
-1.2356949e+183
-1.2388146e+183
-1.2374541e+183
-1.2370186e+183
-1.2392452e+183
-1.2378849e+183
-1.2382773e+183
-1.2400602e+183
-1.2396672e+183
-1.2327315e+183
-1.2344126e+183
-1.2305422e+183
-1.2309429e+183
-1.2331364e+183
-1.2348188e+183
-1.2320583e+183
-1.233732e+183
-1.2298712e+183
-1.230164e+183
-1.2323468e+183
-1.2340347e+183
-1.237296e+183
-1.2358051e+183
-1.235494e+183
-1.2376117e+183
-1.2361772e+183
-1.2365856e+183
-1.2383879e+183
-1.2379792e+183
-1.2398851e+183
-1.2419417e+183
-1.2423342e+183
-1.2402861e+183
-1.2415718e+183
-1.2412429e+183
-1.2391918e+183
-1.2395165e+183
-1.2434743e+183
-1.2438065e+183
-1.2460866e+183
-1.2457498e+183
-1.24418e+183
-1.2468507e+183
-1.2464631e+183
-1.2445672e+183
-1.2407048e+183
-1.2411367e+183
-1.2431837e+183
-1.2427524e+183
-1.2449889e+183
-1.2477038e+183
-1.2472731e+183
-1.2454192e+183
-1.2485191e+183
-1.2481348e+183
-1.2458476e+183
-1.2462329e+183
-1.2415599e+183
-1.2436093e+183
-1.2439967e+183
-1.2419498e+183
-1.2337666e+183
-1.2358886e+183
-1.2375273e+183
-1.2362143e+183
-1.2378558e+183
-1.2340861e+183
-1.2352541e+183
-1.2368875e+183
-1.233127e+183
-1.2334535e+183
-1.2355811e+183
-1.2372121e+183
-1.2410597e+183
-1.2392737e+183
-1.2395991e+183
-1.2413869e+183
-1.2386265e+183
-1.2389552e+183
-1.2407398e+183
-1.24041e+183
-1.2344621e+183
-1.2365839e+183
-1.2370258e+183
-1.2386627e+183
-1.2382346e+183
-1.2349162e+183
-1.2358039e+183
-1.2379023e+183
-1.2353906e+183
-1.2374972e+183
-1.23912e+183
-1.2395425e+183
-1.2412862e+183
-1.2408602e+183
-1.2426413e+183
-1.24306e+183
-1.2399866e+183
-1.241777e+183
-1.2421893e+183
-1.240405e+183
-1.2423046e+183
-1.2426314e+183
-1.2446786e+183
-1.2443535e+183
-1.2432865e+183
-1.2429476e+183
-1.2453459e+183
-1.2450005e+183
-1.2465884e+183
-1.2469145e+183
-1.2491956e+183
-1.2488623e+183
-1.247247e+183
-1.249543e+183
-1.2499042e+183
-1.2475997e+183
-1.2457357e+183
-1.2436766e+183
-1.2461405e+183
-1.2440817e+183
-1.2449401e+183
-1.2445291e+183
-1.2465785e+183
-1.2469816e+183
-1.2492235e+183
-1.2488225e+183
-1.2511232e+183
-1.2515214e+183
-1.2479909e+183
-1.2502983e+183
-1.2507008e+183
-1.2483912e+183
-1.1955477e+183
-1.1954371e+183
-1.1955245e+183
-1.1954273e+183
-1.1994828e+183
-1.1994112e+183
-1.2021245e+183
-1.2021715e+183
-1.199373e+183
-1.2019899e+183
-1.2020587e+183
-1.1993627e+183
-1.2043724e+183
-1.2042625e+183
-1.2063909e+183
-1.2062503e+183
-1.2045111e+183
-1.2044601e+183
-1.2064928e+183
-1.2065471e+183
-1.2045392e+183
-1.2065822e+183
-1.2264241e+183
-1.2260311e+183
-1.227551e+183
-1.2279482e+183
-1.2245753e+183
-1.2214975e+183
-1.2231637e+183
-1.2218257e+183
-1.223513e+183
-1.2249398e+183
-1.2308652e+183
-1.2291707e+183
-1.2295701e+183
-1.2312611e+183
-1.2327404e+183
-1.2331382e+183
-1.2348098e+183
-1.2344132e+183
-1.2101629e+183
-1.2089207e+183
-1.2133018e+183
-1.2121278e+183
-1.2123299e+183
-1.2135222e+183
-1.2110104e+183
-1.2097337e+183
-1.2085797e+183
-1.2087129e+183
-1.2098831e+183
-1.2111884e+183
-1.211338e+183
-1.2100148e+183
-1.2088229e+183
-1.2088702e+183
-1.2100899e+183
-1.2114528e+183
-1.2137498e+183
-1.2124987e+183
-1.2126558e+183
-1.2139511e+183
-1.2186568e+183
-1.2154391e+183
-1.2151867e+183
-1.2168476e+183
-1.2180852e+183
-1.2183638e+183
-1.2163193e+183
-1.214689e+183
-1.21493e+183
-1.2165724e+183
-1.2202156e+183
-1.219913e+183
-1.2385813e+183
-1.2362772e+183
-1.2366767e+183
-1.2389891e+183
-1.2267857e+183
-1.2277766e+183
-1.2296992e+183
-1.2287177e+183
-1.2307414e+183
-1.2328852e+183
-1.2339328e+183
-1.2317502e+183
-1.2308568e+183
-1.2287214e+183
-1.2297385e+183
-1.2318578e+183
-1.2368401e+183
-1.2378375e+183
-1.2400945e+183
-1.2391128e+183
-1.2356999e+183
-1.2346977e+183
-1.2327224e+183
-1.233709e+183
-1.237847e+183
-1.2367701e+183
-1.234777e+183
-1.2358468e+183
-1.2389045e+183
-1.2399808e+183
-1.2422706e+183
-1.2411704e+183
-1.2369423e+183
-1.2380342e+183
-1.2400396e+183
-1.2389529e+183
-1.2444482e+183
-1.2433853e+183
-1.2410883e+183
-1.2421672e+183
-1.2431609e+183
-1.2440646e+183
-1.2463322e+183
-1.2454314e+183
-1.239072e+183
-1.2410484e+183
-1.2419415e+183
-1.2399615e+183
-1.2287876e+183
-1.2297801e+183
-1.2317356e+183
-1.2307138e+183
-1.2327918e+183
-1.2338371e+183
-1.236075e+183
-1.235004e+183
-1.23806e+183
-1.2371241e+183
-1.2348791e+183
-1.2358463e+183
-1.2307683e+183
-1.2327479e+183
-1.2337204e+183
-1.2317296e+183
-1.2502474e+183
-1.2492458e+183
-1.2531101e+183
-1.2520857e+183
-1.2541259e+183
-1.2551596e+183
-1.2522176e+183
-1.2550802e+183
-1.2512462e+183
-1.2541124e+183
-1.2561735e+183
-1.2571572e+183
-1.2459503e+183
-1.2448939e+183
-1.2477211e+183
-1.2497813e+183
-1.2508803e+183
-1.2488161e+183
-1.2519937e+183
-1.2470971e+183
-1.2499535e+183
-1.2481864e+183
-1.2510211e+183
-1.2530589e+183
-1.2619211e+183
-1.2608865e+183
-1.2639543e+183
-1.2583515e+183
-1.256141e+183
-1.2571803e+183
-1.2593922e+183
-1.2582028e+183
-1.2604226e+183
-1.2614281e+183
-1.2591982e+183
-1.26296e+183
-1.2650126e+183
-1.2660427e+183
-1.2639773e+183
-1.2529062e+183
-1.2540003e+183
-1.256205e+183
-1.2572768e+183
-1.2550681e+183
-1.2682594e+183
-1.2326941e+183
-1.2336396e+183
-1.2356291e+183
-1.2346786e+183
-1.2354773e+183
-1.2345778e+183
-1.2374572e+183
-1.2365573e+183
-1.2367691e+183
-1.2377233e+183
-1.239933e+183
-1.238975e+183
-1.2386631e+183
-1.2418128e+183
-1.240892e+183
-1.2395694e+183
-1.240892e+183
-1.2418673e+183
-1.2438831e+183
-1.2428865e+183
-1.2450228e+183
-1.2473147e+183
-1.2483457e+183
-1.2460393e+183
-1.2470691e+183
-1.2480221e+183
-1.2503238e+183
-1.2493866e+183
-1.2428497e+183
-1.2448906e+183
-1.245845e+183
-1.243785e+183
-1.2447067e+183
-1.2456091e+183
-1.2476333e+183
-1.2467441e+183
-1.2489077e+183
-1.2497894e+183
-1.2520963e+183
-1.2512149e+183
-1.2513532e+183
-1.2506114e+183
-1.2529171e+183
-1.253658e+183
-1.2464655e+183
-1.2491939e+183
-1.2484686e+183
-1.2471756e+183
-1.2371788e+183
-1.236347e+183
-1.2383359e+183
-1.2391849e+183
-1.2413353e+183
-1.2436189e+183
-1.2427265e+183
-1.2404603e+183
-1.2452329e+183
-1.2444871e+183
-1.2422023e+183
-1.2429712e+183
-1.23801e+183
-1.2400339e+183
-1.2408011e+183
-1.2387671e+183
-1.2561646e+183
-1.2552397e+183
-1.2542462e+183
-1.2532381e+183
-1.2570906e+183
-1.256102e+183
-1.2581683e+183
-1.2591611e+183
-1.2581105e+183
-1.2601766e+183
-1.2611417e+183
-1.2590525e+183
-1.2571198e+183
-1.2579935e+183
-1.2588116e+183
-1.2596163e+183
-1.2625687e+183
-1.2617415e+183
-1.2638604e+183
-1.2647088e+183
-1.2600079e+183
-1.2608956e+183
-1.2629872e+183
-1.2620912e+183
-1.2659333e+183
-1.2681917e+183
-1.2690521e+183
-1.2667904e+183
-1.2663747e+183
-1.2641365e+183
-1.2650444e+183
-1.2672925e+183
-1.2710159e+183
-1.2698603e+183
-1.268936e+183
-1.2719431e+183
-1.2707667e+183
-1.272856e+183
-1.273721e+183
-1.2716302e+183
-1.2622174e+183
-1.264453e+183
-1.2654184e+183
-1.2631844e+183
-1.2624444e+183
-1.2602094e+183
-1.2612077e+183
-1.2634471e+183
-1.2660058e+183
-1.265001e+183
-1.2670719e+183
-1.2680835e+183
-1.2670124e+183
-1.2690922e+183
-1.2700586e+183
-1.2679746e+183
-1.2751042e+183
-1.2779509e+183
-1.2803812e+183
-1.2812447e+183
-1.275959e+183
-1.2787958e+183
-1.278545e+183
-1.2794648e+183
-1.2741782e+183
-1.2770333e+183
-1.2732458e+183
-1.276093e+183
-1.2831245e+183
-1.2822199e+183
-1.2845874e+183
-1.2855109e+183
-1.2849259e+183
-1.2840644e+183
-1.2864318e+183
-1.2872957e+183
-1.2693003e+183
-1.2721378e+183
-1.2703239e+183
-1.2731928e+183
-1.2756458e+183
-1.2745911e+183
-1.2766676e+183
-1.2776128e+183
-1.2713426e+183
-1.2742182e+183
-1.2723001e+183
-1.2751578e+183
-1.1509718e+183
-1.1507883e+183
-1.1508824e+183
-1.1511592e+183
-1.1513901e+183
-1.151952e+183
-1.1527522e+183
-1.1429946e+183
-1.1446826e+183
-1.1435154e+183
-1.145101e+183
-1.1393058e+183
-1.1386108e+183
-1.1427292e+183
-1.1444744e+183
-1.1382045e+183
-1.1428408e+183
-1.1445524e+183
-1.1384959e+183
-1.1431557e+183
-1.1449307e+183
-1.1429627e+183
-1.1446961e+183
-1.1386028e+183
-1.1384635e+183
-1.1436929e+183
-1.1454585e+183
-1.1445276e+183
-1.146182e+183
-1.1403236e+183
-1.1391936e+183
-1.1532484e+183
-1.153407e+183
-1.1539026e+183
-1.1546998e+183
-1.1555558e+183
-1.1563119e+183
-1.1580464e+183
-1.1572014e+183
-1.1449277e+183
-1.1466111e+183
-1.145076e+183
-1.1468395e+183
-1.1405811e+183
-1.1405725e+183
-1.1455338e+183
-1.1473232e+183
-1.1409799e+183
-1.1464199e+183
-1.1481459e+183
-1.1421128e+183
-1.1489124e+183
-1.1505374e+183
-1.1446974e+183
-1.1497559e+183
-1.1512121e+183
-1.145972e+183
-1.1472125e+183
-1.1489194e+183
-1.1428778e+183
-1.1479772e+183
-1.1496926e+183
-1.1436341e+183
-1.1583835e+183
-1.1538136e+183
-1.1588273e+183
-1.1542546e+183
-1.1507043e+183
-1.1510942e+183
-1.1600743e+183
-1.1555086e+183
-1.1593929e+183
-1.1547439e+183
-1.151586e+183
-1.1523569e+183
-1.1607759e+183
-1.156206e+183
-1.1614312e+183
-1.1569915e+183
-1.1531095e+183
-1.1539339e+183
-1.1620658e+183
-1.1576628e+183
-1.1624677e+183
-1.1581431e+183
-1.154706e+183
-1.1552027e+183
-1.1562035e+183
-1.1517391e+183
-1.1563635e+183
-1.1518599e+183
-1.1486203e+183
-1.1487048e+183
-1.1490309e+183
-1.1519806e+183
-1.1487961e+183
-1.1518407e+183
-1.1561737e+183
-1.1561485e+183
-1.1579218e+183
-1.1534193e+183
-1.1573871e+183
-1.1528019e+183
-1.1496653e+183
-1.1502971e+183
-1.1566114e+183
-1.1520165e+183
-1.1569336e+183
-1.1523626e+183
-1.1488559e+183
-1.1491852e+183
-1.1714836e+183
-1.1723314e+183
-1.1639804e+183
-1.161064e+183
-1.1604765e+183
-1.1645601e+183
-1.171006e+183
-1.1676637e+183
-1.1682082e+183
-1.1715147e+183
-1.1686568e+183
-1.1690369e+183
-1.1722039e+183
-1.1719296e+183
-1.1615813e+183
-1.1650428e+183
-1.1654525e+183
-1.1620444e+183
-1.1586382e+183
-1.1581889e+183
-1.1616872e+183
-1.1621853e+183
-1.1591701e+183
-1.1598963e+183
-1.1627187e+183
-1.1634224e+183
-1.1693377e+183
-1.1704781e+183
-1.16588e+183
-1.1653677e+183
-1.1686925e+183
-1.1692462e+183
-1.1664231e+183
-1.1698054e+183
-1.1704755e+183
-1.1671295e+183
-1.1683739e+183
-1.1674188e+183
-1.1564454e+183
-1.1567648e+183
-1.1602854e+183
-1.159918e+183
-1.1639471e+183
-1.1635666e+183
-1.166891e+183
-1.1672872e+183
-1.1649375e+183
-1.1643697e+183
-1.1676975e+183
-1.1682051e+183
-1.1571821e+183
-1.1607033e+183
-1.161268e+183
-1.1577713e+183
-1.1557351e+183
-1.1589817e+183
-1.159143e+183
-1.1557855e+183
-1.1659298e+183
-1.1666836e+183
-1.1661134e+183
-1.1629071e+183
-1.1632762e+183
-1.1665234e+183
-1.1624472e+183
-1.1626542e+183
-1.1658338e+183
-1.1655952e+183
-1.1593363e+183
-1.155925e+183
-1.1561984e+183
-1.1596514e+183
-1.1515892e+183
-1.1536344e+183
-1.1516647e+183
-1.1536517e+183
-1.1522646e+183
-1.1541628e+183
-1.151778e+183
-1.1537392e+183
-1.1524854e+183
-1.1545369e+183
-1.1533064e+183
-1.1552432e+183
-1.1519583e+183
-1.1540216e+183
-1.1517794e+183
-1.1537961e+183
-1.1559392e+183
-1.1579142e+183
-1.1554347e+183
-1.1574368e+183
-1.1566928e+183
-1.1586104e+183
-1.1572162e+183
-1.1589693e+183
-1.1537153e+183
-1.1556904e+183
-1.1537708e+183
-1.1558011e+183
-1.1548136e+183
-1.1567847e+183
-1.1541004e+183
-1.1561374e+183
-1.1674063e+183
-1.1689167e+183
-1.1612893e+183
-1.1647724e+183
-1.1673573e+183
-1.1688539e+183
-1.1613524e+183
-1.1647715e+183
-1.1580301e+183
-1.1578626e+183
-1.1675678e+183
-1.1691534e+183
-1.16128e+183
-1.1648436e+183
-1.1674456e+183
-1.1689965e+183
-1.1611623e+183
-1.1647251e+183
-1.1576978e+183
-1.1577949e+183
-1.1614406e+183
-1.1579496e+183
-1.1650154e+183
-1.1617522e+183
-1.1582404e+183
-1.1653414e+183
-1.1680744e+183
-1.1696405e+183
-1.167768e+183
-1.1693508e+183
-1.1621899e+183
-1.1587164e+183
-1.1657446e+183
-1.1627261e+183
-1.1593022e+183
-1.1662342e+183
-1.1688932e+183
-1.1704611e+183
-1.1684641e+183
-1.1700119e+183
-1.1700652e+183
-1.1716002e+183
-1.1638052e+183
-1.1673634e+183
-1.170549e+183
-1.1720957e+183
-1.1643511e+183
-1.1678781e+183
-1.1603338e+183
-1.1609018e+183
-1.169252e+183
-1.170833e+183
-1.1630384e+183
-1.1665606e+183
-1.1696381e+183
-1.1711892e+183
-1.1634124e+183
-1.1669601e+183
-1.1596398e+183
-1.1599555e+183
-1.1710435e+183
-1.1725618e+183
-1.1648355e+183
-1.1683533e+183
-1.1715172e+183
-1.1729766e+183
-1.1654575e+183
-1.1689342e+183
-1.161426e+183
-1.1620373e+183
-1.1719117e+183
-1.1733241e+183
-1.1659322e+183
-1.1693723e+183
-1.1720532e+183
-1.1734975e+183
-1.1661844e+183
-1.1695618e+183
-1.1625903e+183
-1.1628824e+183
-1.1495474e+183
-1.1514219e+183
-1.149445e+183
-1.1513287e+183
-1.1506828e+183
-1.1524831e+183
-1.1499623e+183
-1.1518609e+183
-1.1493838e+183
-1.1513189e+183
-1.1498882e+183
-1.1517617e+183
-1.1492793e+183
-1.1511596e+183
-1.1491612e+183
-1.151103e+183
-1.1496835e+183
-1.1516367e+183
-1.149945e+183
-1.1518399e+183
-1.1496936e+183
-1.1517008e+183
-1.1501078e+183
-1.1520518e+183
-1.151499e+183
-1.1534592e+183
-1.1522678e+183
-1.1541353e+183
-1.1505016e+183
-1.1524949e+183
-1.1508519e+183
-1.1528522e+183
-1.1660181e+183
-1.1675229e+183
-1.1598732e+183
-1.1633499e+183
-1.1664459e+183
-1.167917e+183
-1.1603805e+183
-1.1638304e+183
-1.1564771e+183
-1.156979e+183
-1.1668858e+183
-1.1683239e+183
-1.1608918e+183
-1.1642999e+183
-1.1672176e+183
-1.1686867e+183
-1.1612709e+183
-1.1646715e+183
-1.1575332e+183
-1.1579666e+183
-1.1649603e+183
-1.166439e+183
-1.1589944e+183
-1.1623729e+183
-1.1651363e+183
-1.1666044e+183
-1.1591109e+183
-1.1625292e+183
-1.1556895e+183
-1.1557292e+183
-1.1653422e+183
-1.1668305e+183
-1.1592328e+183
-1.1626833e+183
-1.1656533e+183
-1.1671625e+183
-1.1595365e+183
-1.1630036e+183
-1.1558213e+183
-1.1561239e+183
-1.1642506e+183
-1.1656861e+183
-1.1583601e+183
-1.1616888e+183
-1.1643262e+183
-1.1657085e+183
-1.1585221e+183
-1.1618361e+183
-1.1551325e+183
-1.1553027e+183
-1.1592198e+183
-1.1561249e+183
-1.1624369e+183
-1.1587636e+183
-1.1556069e+183
-1.1620202e+183
-1.1644807e+183
-1.1657985e+183
-1.1647521e+183
-1.1659658e+183
-1.1643014e+183
-1.1657417e+183
-1.1584001e+183
-1.1617379e+183
-1.164415e+183
-1.1658503e+183
-1.1584747e+183
-1.1618316e+183
-1.1550993e+183
-1.1551469e+183
-1.1645729e+183
-1.1660277e+183
-1.1586393e+183
-1.161997e+183
-1.1647881e+183
-1.1662618e+183
-1.1588602e+183
-1.162224e+183
-1.1553145e+183
-1.1555773e+183
-1.1753324e+183
-1.1786032e+183
-1.1786851e+183
-1.175414e+183
-1.1811923e+183
-1.1812472e+183
-1.1755683e+183
-1.1817557e+183
-1.1813396e+183
-1.1788378e+183
-1.179045e+183
-1.1757594e+183
-1.171118e+183
-1.1711909e+183
-1.1742554e+183
-1.1742394e+183
-1.1686573e+183
-1.1685377e+183
-1.1684885e+183
-1.1685138e+183
-1.1711123e+183
-1.1711821e+183
-1.1745707e+183
-1.1744037e+183
-1.1759084e+183
-1.1818937e+183
-1.1818699e+183
-1.1792821e+183
-1.1791843e+183
-1.1759909e+183
-1.1764429e+183
-1.1761895e+183
-1.1794766e+183
-1.1797547e+183
-1.1825593e+183
-1.1820497e+183
-1.1748477e+183
-1.1714657e+183
-1.1713217e+183
-1.1747152e+183
-1.168607e+183
-1.1687362e+183
-1.1718634e+183
-1.1716386e+183
-1.1750037e+183
-1.1751963e+183
-1.1689184e+183
-1.1691508e+183
-1.1839511e+183
-1.1833368e+183
-1.1807488e+183
-1.1773637e+183
-1.1777724e+183
-1.181161e+183
-1.1829539e+183
-1.1828647e+183
-1.1800119e+183
-1.1766892e+183
-1.1770283e+183
-1.1803877e+183
-1.1754715e+183
-1.1723303e+183
-1.1720841e+183
-1.17582e+183
-1.1693452e+183
-1.1695481e+183
-1.1697914e+183
-1.1701341e+183
-1.172597e+183
-1.1729491e+183
-1.1765528e+183
-1.1761956e+183
-1.1844474e+183
-1.1843258e+183
-1.181456e+183
-1.1780567e+183
-1.1784262e+183
-1.181847e+183
-1.1854796e+183
-1.1848626e+183
-1.1822427e+183
-1.1787995e+183
-1.1792221e+183
-1.1826783e+183
-1.1768322e+183
-1.1736667e+183
-1.1732952e+183
-1.1772057e+183
-1.1704856e+183
-1.1708676e+183
-1.1712494e+183
-1.1716016e+183
-1.1740338e+183
-1.1743759e+183
-1.1779754e+183
-1.1776245e+183
-1.1798896e+183
-1.186529e+183
-1.1860344e+183
-1.1833948e+183
-1.1836633e+183
-1.1801545e+183
-1.1794864e+183
-1.1829562e+183
-1.183182e+183
-1.1796882e+183
-1.1858124e+183
-1.1857771e+183
-1.172024e+183
-1.1722106e+183
-1.1717908e+183
-1.1719108e+183
-1.1747591e+183
-1.1745879e+183
-1.1784495e+183
-1.1782249e+183
-1.1749115e+183
-1.1751168e+183
-1.1788751e+183
-1.178661e+183
-1.1803437e+183
-1.1806121e+183
-1.1841242e+183
-1.183864e+183
-1.186756e+183
-1.1867861e+183
-1.1871402e+183
-1.187765e+183
-1.1848443e+183
-1.1844468e+183
-1.1809353e+183
-1.1813512e+183
-1.1756214e+183
-1.1753283e+183
-1.1793432e+183
-1.1790422e+183
-1.1724158e+183
-1.172708e+183
-1.1730569e+183
-1.1734798e+183
-1.1759525e+183
-1.1763474e+183
-1.1800362e+183
-1.1796975e+183
-1.1816455e+183
-1.1820277e+183
-1.1855186e+183
-1.1851439e+183
-1.1880897e+183
-1.1881995e+183
-1.1770792e+183
-1.1766911e+183
-1.1807288e+183
-1.1803027e+183
-1.1738392e+183
-1.1742135e+183
-1.1746196e+183
-1.175098e+183
-1.1774882e+183
-1.1779566e+183
-1.1816378e+183
-1.1829075e+183
-1.1812008e+183
-1.182426e+183
-1.189268e+183
-1.1886162e+183
-1.1863795e+183
-1.1859241e+183
-1.1837368e+183
-1.1903809e+183
-1.1899398e+183
-1.1872117e+183
-1.1874193e+183
-1.1839287e+183
-1.1831982e+183
-1.1896907e+183
-1.189622e+183
-1.186656e+183
-1.1869377e+183
-1.1834791e+183
-1.1822663e+183
-1.1819306e+183
-1.1783738e+183
-1.1787448e+183
-1.1755349e+183
-1.1759306e+183
-1.1762403e+183
-1.1763927e+183
-1.1790235e+183
-1.1791449e+183
-1.1826492e+183
-1.1825536e+183
-1.1852591e+183
-1.1852139e+183
-1.1882546e+183
-1.1914317e+183
-1.1882874e+183
-1.1915063e+183
-1.1914176e+183
-1.1914288e+183
-1.1882147e+183
-1.188268e+183
-1.1852235e+183
-1.1851481e+183
-1.1796945e+183
-1.1812755e+183
-1.1798552e+183
-1.1813584e+183
-1.1833258e+183
-1.1833674e+183
-1.1773696e+183
-1.1747459e+183
-1.174413e+183
-1.1771094e+183
-1.1737861e+183
-1.1740783e+183
-1.1768307e+183
-1.1765863e+183
-1.1795009e+183
-1.1811671e+183
-1.1792938e+183
-1.181018e+183
-1.1831964e+183
-1.1833113e+183
-1.1728282e+183
-1.172424e+183
-1.172044e+183
-1.1717073e+183
-1.1808548e+183
-1.1790849e+183
-1.179114e+183
-1.1808268e+183
-1.1764062e+183
-1.1735812e+183
-1.1734771e+183
-1.1763211e+183
-1.1714626e+183
-1.1713729e+183
-1.1578177e+183
-1.1573825e+183
-1.1656329e+183
-1.169868e+183
-1.1652078e+183
-1.1694812e+183
-1.1617274e+183
-1.1612779e+183
-1.1594393e+183
-1.158577e+183
-1.1667427e+183
-1.1708268e+183
-1.1661264e+183
-1.1703067e+183
-1.1630303e+183
-1.1623097e+183
-1.1571077e+183
-1.1568499e+183
-1.1648642e+183
-1.1691917e+183
-1.1647894e+183
-1.169124e+183
-1.160925e+183
-1.1608055e+183
-1.1569524e+183
-1.1572048e+183
-1.1648391e+183
-1.1691421e+183
-1.1608937e+183
-1.1820384e+183
-1.1774327e+183
-1.1775907e+183
-1.1823605e+183
-1.1827731e+183
-1.1780058e+183
-1.1786295e+183
-1.1832544e+183
-1.1797702e+183
-1.1752135e+183
-1.1802049e+183
-1.175473e+183
-1.1807543e+183
-1.1760153e+183
-1.1769244e+183
-1.1815219e+183
-1.1900349e+183
-1.1880065e+183
-1.1906488e+183
-1.1886044e+183
-1.1849152e+183
-1.1842004e+183
-1.1868825e+183
-1.1875471e+183
-1.1831201e+183
-1.1836432e+183
-1.1857381e+183
-1.186319e+183
-1.1912153e+183
-1.1891714e+183
-1.1898283e+183
-1.1918847e+183
-1.185423e+183
-1.1858298e+183
-1.1885484e+183
-1.1880728e+183
-1.1866587e+183
-1.1862349e+183
-1.1889589e+183
-1.1893418e+183
-1.191669e+183
-1.1912928e+183
-1.1934236e+183
-1.1938074e+183
-1.1903666e+183
-1.1924436e+183
-1.1929963e+183
-1.1908711e+183
-1.1733959e+183
-1.1732296e+183
-1.1777189e+183
-1.1780567e+183
-1.173867e+183
-1.1785418e+183
-1.1792468e+183
-1.1747092e+183
-1.1716962e+183
-1.1715481e+183
-1.1758799e+183
-1.1762041e+183
-1.1728142e+183
-1.1720907e+183
-1.1766394e+183
-1.177261e+183
-1.179939e+183
-1.1825002e+183
-1.1830794e+183
-1.1805363e+183
-1.1814893e+183
-1.1790455e+183
-1.1794761e+183
-1.1820048e+183
-1.1860747e+183
-1.1854536e+183
-1.1835998e+183
-1.1841607e+183
-1.1846842e+183
-1.1866101e+183
-1.1872224e+183
-1.185271e+183
-1.1835728e+183
-1.1810079e+183
-1.1814454e+183
-1.1840847e+183
-1.1825962e+183
-1.1819469e+183
-1.1846e+183
-1.1852097e+183
-1.1868566e+183
-1.1888757e+183
-1.1894981e+183
-1.1874671e+183
-1.1877444e+183
-1.1857815e+183
-1.1863259e+183
-1.1883365e+183
-1.2033477e+183
-1.2047055e+183
-1.2054797e+183
-1.2040826e+183
-1.2074614e+183
-1.2060688e+183
-1.2083175e+183
-1.2068734e+183
-1.2053219e+183
-1.204646e+183
-1.2059522e+183
-1.2066597e+183
-1.2020883e+183
-1.2033635e+183
-1.2040172e+183
-1.2027096e+183
-1.2007158e+183
-1.201954e+183
-1.2026852e+183
-1.2014321e+183
-1.203194e+183
-1.2044592e+183
-1.2052295e+183
-1.2039308e+183
-1.2065895e+183
-1.205799e+183
-1.2073391e+183
-1.2087833e+183
-1.2095736e+183
-1.208087e+183
-1.2103705e+183
-1.2118224e+183
-1.2126826e+183
-1.2111998e+183
-1.2135382e+183
-1.2120644e+183
-1.2129607e+183
-1.2144116e+183
-1.2104297e+183
-1.2089199e+183
-1.2113321e+183
-1.2098074e+183
-1.1883931e+183
-1.1899084e+183
-1.1905712e+183
-1.1890372e+183
-1.1908324e+183
-1.1917437e+183
-1.1924135e+183
-1.1914912e+183
-1.192124e+183
-1.1927619e+183
-1.1936941e+183
-1.1930331e+183
-1.1912088e+183
-1.1896138e+183
-1.1901846e+183
-1.1917899e+183
-1.1941324e+183
-1.1967973e+183
-1.1954243e+183
-1.1961165e+183
-1.1975133e+183
-1.1948125e+183
-1.1992065e+183
-1.1985007e+183
-1.1992784e+183
-1.1999088e+183
-1.1985175e+183
-1.1979392e+183
-1.1966899e+183
-1.1972394e+183
-1.1954916e+183
-1.1981618e+183
-1.1987654e+183
-1.1973854e+183
-1.196772e+183
-1.1961462e+183
-1.2009781e+183
-1.2016415e+183
-1.2004246e+183
-1.1998507e+183
-1.1924176e+183
-1.1907585e+183
-1.1914062e+183
-1.1931186e+183
-1.1950519e+183
-1.1943723e+183
-1.1934025e+183
-1.1940995e+183
-1.1946655e+183
-1.1951881e+183
-1.1961225e+183
-1.195592e+183
-1.1937129e+183
-1.1919913e+183
-1.1925614e+183
-1.1942058e+183
-1.1957441e+183
-1.1975623e+183
-1.1981486e+183
-1.1963278e+183
-1.1997066e+183
-1.1986287e+183
-1.1992044e+183
-1.200275e+183
-1.2007093e+183
-1.1996943e+183
-1.2001068e+183
-1.2011027e+183
-1.1986628e+183
-1.1967861e+183
-1.1971461e+183
-1.1990502e+183
-1.196653e+183
-1.1956859e+183
-1.1963563e+183
-1.1973647e+183
-1.1946893e+183
-1.1930446e+183
-1.1936472e+183
-1.1953219e+183
-1.1943431e+183
-1.1960698e+183
-1.1968672e+183
-1.1950826e+183
-1.19818e+183
-1.1971273e+183
-1.1979168e+183
-1.1989957e+183
-1.2033753e+183
-1.2024676e+183
-1.2017745e+183
-1.2008979e+183
-1.2002821e+183
-1.1994317e+183
-1.2015453e+183
-1.200649e+183
-1.2000071e+183
-1.199176e+183
-1.1978129e+183
-1.1985818e+183
-1.2024643e+183
-1.2034012e+183
-1.2043793e+183
-1.2053027e+183
-1.2046454e+183
-1.2040811e+183
-1.2024877e+183
-1.2009878e+183
-1.2015519e+183
-1.2030515e+183
-1.2053295e+183
-1.2050064e+183
-1.2023092e+183
-1.2019376e+183
-1.2034234e+183
-1.2037591e+183
-1.207015e+183
-1.2073322e+183
-1.2060474e+183
-1.2066242e+183
-1.2078207e+183
-1.2092702e+183
-1.2102235e+183
-1.2087922e+183
-1.2068998e+183
-1.2083437e+183
-1.2092582e+183
-1.2078167e+183
-1.2049617e+183
-1.2073638e+183
-1.2063929e+183
-1.2059224e+183
-1.2112245e+183
-1.2097793e+183
-1.2106963e+183
-1.2121607e+183
-1.2142411e+183
-1.2127112e+183
-1.2136701e+183
-1.2152071e+183
-1.212288e+183
-1.2107699e+183
-1.2117078e+183
-1.2132369e+183
-1.2148924e+183
-1.2139115e+183
-1.2153811e+183
-1.2163913e+183
-1.2158874e+183
-1.2168587e+183
-1.2183613e+183
-1.2173945e+183
-1.216251e+183
-1.2157805e+183
-1.217323e+183
-1.2178453e+183
-1.2152028e+183
-1.2145069e+183
-1.2160475e+183
-1.2167308e+183
-1.2195708e+183
-1.220571e+183
-1.2190233e+183
-1.2211391e+183
-1.2177116e+183
-1.2192203e+183
-1.2199376e+183
-1.218411e+183
-1.2100387e+183
-1.2085856e+183
-1.2092e+183
-1.2106766e+183
-1.2096616e+183
-1.2111734e+183
-1.2115565e+183
-1.2100192e+183
-1.214226e+183
-1.2126919e+183
-1.2130952e+183
-1.2146572e+183
-1.2114898e+183
-1.2129769e+183
-1.2136683e+183
-1.2121613e+183
-1.2246587e+183
-1.2237556e+183
-1.2252421e+183
-1.2261322e+183
-1.2227853e+183
-1.2218036e+183
-1.223321e+183
-1.2242819e+183
-1.2189763e+183
-1.2208228e+183
-1.2222482e+183
-1.2217698e+183
-1.2231683e+183
-1.2199376e+183
-1.2169286e+183
-1.2187906e+183
-1.220267e+183
-1.2198223e+183
-1.221269e+183
-1.2179607e+183
-1.2227703e+183
-1.2246483e+183
-1.2260868e+183
-1.2240102e+183
-1.2254293e+183
-1.2221796e+183
-1.2269546e+183
-1.228492e+183
-1.2292e+183
-1.2276361e+183
-1.2254957e+183
-1.226974e+183
-1.2277345e+183
-1.2262395e+183
-1.2233434e+183
-1.2247389e+183
-1.220808e+183
-1.2226209e+183
-1.2240021e+183
-1.2215324e+183
-1.2308577e+183
-1.2301406e+183
-1.2319599e+183
-1.2326866e+183
-1.2303675e+183
-1.2285847e+183
-1.2293553e+183
-1.2311565e+183
-1.2344186e+183
-1.2331675e+183
-1.2323592e+183
-1.2352425e+183
-1.2339805e+183
-1.2347185e+183
-1.2368122e+183
-1.2360641e+183
-1.2277371e+183
-1.2268508e+183
-1.228631e+183
-1.2295175e+183
-1.2267442e+183
-1.2249499e+183
-1.2259021e+183
-1.2276903e+183
-1.2326633e+183
-1.2306152e+183
-1.231506e+183
-1.2335575e+183
-1.2287325e+183
-1.2296753e+183
-1.2317218e+183
-1.2307784e+183
-1.2133523e+183
-1.2151492e+183
-1.2142105e+183
-1.2160028e+183
-1.2174427e+183
-1.2165616e+183
-1.221432e+183
-1.2198812e+183
-1.2208147e+183
-1.222348e+183
-1.2180673e+183
-1.2189689e+183
-1.2205154e+183
-1.2195896e+183
-1.2150433e+183
-1.2168484e+183
-1.2183329e+183
-1.2177797e+183
-1.2192693e+183
-1.2159291e+183
-1.2230701e+183
-1.2239834e+183
-1.2257828e+183
-1.2248572e+183
-1.2212138e+183
-1.222984e+183
-1.2239379e+183
-1.2221585e+183
-1.2249319e+183
-1.2258931e+183
-1.2279005e+183
-1.2269259e+183
-1.2268338e+183
-1.2277738e+183
-1.2298183e+183
-1.2288664e+183
-1.18924e+183
-1.1895166e+183
-1.1899562e+183
-1.19047e+183
-1.1876628e+183
-1.187912e+183
-1.1883285e+183
-1.1888439e+183
-1.1945883e+183
-1.1920718e+183
-1.1925585e+183
-1.1950565e+183
-1.1971897e+183
-1.1967007e+183
-1.1990221e+183
-1.1985028e+183
-1.1962602e+183
-1.1958173e+183
-1.1975808e+183
-1.1980104e+183
-1.1912792e+183
-1.1937342e+183
-1.1941509e+183
-1.1916439e+183
-1.1929589e+183
-1.1954875e+183
-1.1959075e+183
-1.1933414e+183
-1.1984842e+183
-1.1989159e+183
-1.2007114e+183
-1.2002689e+183
-1.1980736e+183
-1.1976406e+183
-1.1994853e+183
-1.1999086e+183
-1.1963445e+183
-1.1937801e+183
-1.1942505e+183
-1.1967781e+183
-1.1861279e+183
-1.1864336e+183
-1.1859159e+183
-1.1859606e+183
-1.1899572e+183
-1.1897189e+183
-1.1921296e+183
-1.1923185e+183
-1.1895513e+183
-1.1894528e+183
-1.1918356e+183
-1.1919717e+183
-1.1940595e+183
-1.1939022e+183
-1.1956731e+183
-1.1958453e+183
-1.1943653e+183
-1.1942076e+183
-1.1959892e+183
-1.1961263e+183
-1.1929509e+183
-1.1905569e+183
-1.1909301e+183
-1.1933255e+183
-1.1901377e+183
-1.1924788e+183
-1.1926527e+183
-1.190292e+183
-1.1946667e+183
-1.1945033e+183
-1.1964022e+183
-1.1962487e+183
-1.1953759e+183
-1.1949551e+183
-1.1966934e+183
-1.1971366e+183
-1.1866007e+183
-1.1866941e+183
-1.1869183e+183
-1.1873275e+183
-1.2006172e+183
-1.2016268e+183
-1.202823e+183
-1.2033761e+183
-1.2022081e+183
-1.2011887e+183
-1.2049973e+183
-1.2038659e+183
-1.2044132e+183
-1.2055598e+183
-1.2032891e+183
-1.2028e+183
-1.2038701e+183
-1.204381e+183
-1.1996313e+183
-1.2006148e+183
-1.2017837e+183
-1.20226e+183
-1.2010596e+183
-1.2000595e+183
-1.209695e+183
-1.2102122e+183
-1.2069171e+183
-1.2063394e+183
-1.2079437e+183
-1.2084987e+183
-1.2085293e+183
-1.209093e+183
-1.2051921e+183
-1.2057258e+183
-1.2073339e+183
-1.2067818e+183
-1.2103548e+183
-1.2119794e+183
-1.2109181e+183
-1.2125271e+183
-1.2114948e+183
-1.2130586e+183
-1.2119633e+183
-1.2134762e+183
-1.212221e+183
-1.2136862e+183
-1.2105204e+183
-1.210738e+183
-1.2124102e+183
-1.2138771e+183
-1.2088912e+183
-1.2073722e+183
-1.2076652e+183
-1.2091229e+183
-1.207894e+183
-1.2111056e+183
-1.2109113e+183
-1.2093398e+183
-1.2095692e+183
-1.2081482e+183
-1.2125723e+183
-1.2140414e+183
-1.2127574e+183
-1.2142433e+183
-1.2016742e+183
-1.2026809e+183
-1.2020535e+183
-1.2030495e+183
-1.2042212e+183
-1.20385e+183
-1.2048974e+183
-1.2060402e+183
-1.2063829e+183
-1.2052646e+183
-1.2055576e+183
-1.2058722e+183
-1.2069056e+183
-1.2066258e+183
-1.2028171e+183
-1.2037612e+183
-1.2023753e+183
-1.2033551e+183
-1.2045287e+183
-1.2048755e+183
-1.2020659e+183
-1.2010867e+183
-1.2012936e+183
-1.2023221e+183
-1.2015883e+183
-1.2006591e+183
-1.2008969e+183
-1.2018506e+183
-1.1997696e+183
-1.1987507e+183
-1.1978165e+183
-1.1979757e+183
-1.1989263e+183
-1.199974e+183
-1.2001451e+183
-1.1990705e+183
-1.1980975e+183
-1.198204e+183
-1.1991898e+183
-1.2003077e+183
-1.1983145e+183
-1.1993086e+183
-1.2004773e+183
-1.2006855e+183
-1.1994766e+183
-1.1984541e+183
-1.202591e+183
-1.2014999e+183
-1.202829e+183
-1.2017197e+183
-1.2020204e+183
-1.2023748e+183
-1.2034366e+183
-1.2030997e+183
-1.1987467e+183
-1.1997705e+183
-1.2009886e+183
-1.2013694e+183
-1.2002068e+183
-1.1991993e+183
-1.2087997e+183
-1.2103278e+183
-1.2070713e+183
-1.2073873e+183
-1.2091405e+183
-1.210709e+183
-1.2053956e+183
-1.2038681e+183
-1.205687e+183
-1.2041325e+183
-1.207697e+183
-1.2080544e+183
-1.2044106e+183
-1.2059773e+183
-1.2063223e+183
-1.2047476e+183
-1.2098643e+183
-1.2114943e+183
-1.2094834e+183
-1.2110823e+183
-1.2060898e+183
-1.2057981e+183
-1.2041802e+183
-1.202743e+183
-1.203026e+183
-1.2044661e+183
-1.2075087e+183
-1.2090295e+183
-1.2077991e+183
-1.2093189e+183
-1.2081008e+183
-1.2096225e+183
-1.2063826e+183
-1.2067298e+183
-1.2084503e+183
-1.209982e+183
-1.203567e+183
-1.2032606e+183
-1.2047316e+183
-1.2050655e+183
-1.2132653e+183
-1.2128177e+183
-1.2143309e+183
-1.2147991e+183
-1.215914e+183
-1.2175432e+183
-1.2180459e+183
-1.216403e+183
-1.2165006e+183
-1.2149457e+183
-1.2154236e+183
-1.2170108e+183
-1.2134325e+183
-1.2119749e+183
-1.2123944e+183
-1.2138755e+183
-1.2145477e+183
-1.2142055e+183
-1.2157569e+183
-1.2160897e+183
-1.213889e+183
-1.2135818e+183
-1.2151163e+183
-1.2154365e+183
-1.2109439e+183
-1.2106565e+183
-1.212085e+183
-1.2123792e+183
-1.211249e+183
-1.2126877e+183
-1.213048e+183
-1.2116101e+183
-1.2177086e+183
-1.2173764e+183
-1.2190399e+183
-1.2193836e+183
-1.2170498e+183
-1.2167112e+183
-1.218332e+183
-1.218697e+183
-1.2212263e+183
-1.2224738e+183
-1.2208644e+183
-1.2228563e+183
-1.2201053e+183
-1.221658e+183
-1.2220824e+183
-1.2204993e+183
-1.2198082e+183
-1.2181186e+183
-1.2203614e+183
-1.2186647e+183
-1.2192234e+183
-1.2197265e+183
-1.2214405e+183
-1.2209335e+183
-1.2233086e+183
-1.2222117e+183
-1.2216625e+183
-1.2238545e+183
-1.222796e+183
-1.2233118e+183
-1.2249648e+183
-1.2244414e+183
-1.2156954e+183
-1.2171672e+183
-1.2173957e+183
-1.2159234e+183
-1.2167404e+183
-1.2152903e+183
-1.2154995e+183
-1.2169586e+183
-1.2198995e+183
-1.2185141e+183
-1.2182723e+183
-1.2201481e+183
-1.2187324e+183
-1.2203751e+183
-1.2205878e+183
-1.2189432e+183
-1.2184915e+183
-1.2173421e+183
-1.2168696e+183
-1.2189524e+183
-1.2152839e+183
-1.2137533e+183
-1.2142604e+183
-1.2157689e+183
-1.2147256e+183
-1.2161972e+183
-1.2165192e+183
-1.2150777e+183
-1.2177485e+183
-1.2193588e+183
-1.2196558e+183
-1.2180399e+183
-1.2210315e+183
-1.2230524e+183
-1.2227462e+183
-1.2213278e+183
-1.2218791e+183
-1.2201556e+183
-1.2206258e+183
-1.2223417e+183
-1.2254284e+183
-1.2242193e+183
-1.2237611e+183
-1.2258783e+183
-1.2246242e+183
-1.2262847e+183
-1.2266134e+183
-1.2249364e+183
-1.2215894e+183
-1.2233333e+183
-1.2236084e+183
-1.2218551e+183
-1.2220903e+183
-1.2223003e+183
-1.2240745e+183
-1.2238541e+183
-1.2260201e+183
-1.2257854e+183
-1.2274973e+183
-1.2277447e+183
-1.2252424e+183
-1.2255248e+183
-1.2272234e+183
-1.2269328e+183
-1.2281254e+183
-1.2303949e+183
-1.2307392e+183
-1.2284625e+183
-1.2272613e+183
-1.2295077e+183
-1.2299733e+183
-1.227713e+183
-1.2291069e+183
-1.2314382e+183
-1.228803e+183
-1.2311109e+183
-1.2317538e+183
-1.2293951e+183
-1.229649e+183
-1.2320239e+183
-1.2262654e+183
-1.2285233e+183
-1.2290509e+183
-1.2267939e+183
-1.2251202e+183
-1.2273606e+183
-1.2279293e+183
-1.2256736e+183
-1.224245e+183
-1.226408e+183
-1.2268804e+183
-1.2246553e+183
-1.2233773e+183
-1.2254722e+183
-1.2259511e+183
-1.223829e+183
-1.1931305e+183
-1.1933697e+183
-1.1937724e+183
-1.1942889e+183
-1.1981138e+183
-1.1976705e+183
-1.2003002e+183
-1.2006871e+183
-1.2029181e+183
-1.2025505e+183
-1.204862e+183
-1.2044964e+183
-1.2021923e+183
-1.2018465e+183
-1.2037626e+183
-1.204126e+183
-1.1972811e+183
-1.1969815e+183
-1.1996034e+183
-1.1999347e+183
-1.1992465e+183
-1.1989827e+183
-1.2015588e+183
-1.2017869e+183
-1.1984322e+183
-1.1986976e+183
-1.2012776e+183
-1.2009664e+183
-1.2035118e+183
-1.2032037e+183
-1.2054714e+183
-1.2051627e+183
-1.2037959e+183
-1.2040389e+183
-1.2060186e+183
-1.205758e+183
-1.194637e+183
-1.1948313e+183
-1.1951038e+183
-1.1954307e+183
-1.1918058e+183
-1.1919682e+183
-1.192802e+183
-1.1923161e+183
-1.1907909e+183
-1.1909546e+183
-1.1911944e+183
-1.1915647e+183
-1.1976774e+183
-1.1950838e+183
-1.1953942e+183
-1.1979748e+183
-1.1998727e+183
-1.20018e+183
-1.2020715e+183
-1.2017234e+183
-1.199269e+183
-1.1995817e+183
-1.2013682e+183
-1.2010671e+183
-1.1945763e+183
-1.1971176e+183
-1.1974096e+183
-1.1948233e+183
-1.1956543e+183
-1.1982514e+183
-1.1985294e+183
-1.1958867e+183
-1.2011158e+183
-1.2015022e+183
-1.2034099e+183
-1.2030344e+183
-1.2007675e+183
-1.200473e+183
-1.2026967e+183
-1.2023879e+183
-1.1966521e+183
-1.1962343e+183
-1.1988759e+183
-1.199267e+183
-1.219259e+183
-1.2208019e+183
-1.2221309e+183
-1.2224684e+183
-1.2196718e+183
-1.2211653e+183
-1.2213403e+183
-1.2183829e+183
-1.2199751e+183
-1.2188546e+183
-1.220416e+183
-1.2217634e+183
-1.2232059e+183
-1.2227831e+183
-1.2243439e+183
-1.224744e+183
-1.2235598e+183
-1.2250861e+183
-1.2253927e+183
-1.2238688e+183
-1.2211785e+183
-1.2227971e+183
-1.220823e+183
-1.2224095e+183
-1.2237711e+183
-1.2241849e+183
-1.2228628e+183
-1.2200442e+183
-1.2215534e+183
-1.2204641e+183
-1.2219971e+183
-1.2233263e+183
-1.2247545e+183
-1.2242637e+183
-1.2257901e+183
-1.2262817e+183
-1.2252255e+183
-1.2267643e+183
-1.2271899e+183
-1.2256526e+183
-1.231481e+183
-1.2310171e+183
-1.2326665e+183
-1.23313e+183
-1.2291363e+183
-1.2274269e+183
-1.2279111e+183
-1.2296083e+183
-1.2288025e+183
-1.2283911e+183
-1.2300803e+183
-1.2304873e+183
-1.2319489e+183
-1.2336052e+183
-1.2340216e+183
-1.2323585e+183
-1.2263815e+183
-1.2260027e+183
-1.2277271e+183
-1.2280879e+183
-1.2313185e+183
-1.229977e+183
-1.2296298e+183
-1.2316537e+183
-1.2306191e+183
-1.2302977e+183
-1.2319693e+183
-1.2322896e+183
-1.2270199e+183
-1.2267141e+183
-1.2284139e+183
-1.2287289e+183
-1.2178852e+183
-1.2194987e+183
-1.2174349e+183
-1.2190674e+183
-1.2204691e+183
-1.2208851e+183
-1.2195e+183
-1.2164686e+183
-1.2180967e+183
-1.2169707e+183
-1.2186057e+183
-1.2200104e+183
-1.2219657e+183
-1.2235484e+183
-1.2239544e+183
-1.2223743e+183
-1.2225638e+183
-1.2209749e+183
-1.2215018e+183
-1.2230812e+183
-1.2153787e+183
-1.2170401e+183
-1.2184823e+183
-1.2189731e+183
-1.2159116e+183
-1.2175523e+183
-1.2176843e+183
-1.2145581e+183
-1.2162265e+183
-1.2149324e+183
-1.2165935e+183
-1.2180437e+183
-1.2200206e+183
-1.2216424e+183
-1.2220748e+183
-1.2204697e+183
-1.2192173e+183
-1.2195913e+183
-1.2212248e+183
-1.2208581e+183
-1.2237582e+183
-1.2251029e+183
-1.2233473e+183
-1.2255025e+183
-1.2274187e+183
-1.2270196e+183
-1.229117e+183
-1.2287148e+183
-1.2266425e+183
-1.2263143e+183
-1.2283325e+183
-1.2280333e+183
-1.2225853e+183
-1.2243674e+183
-1.2247139e+183
-1.2229434e+183
-1.2259649e+183
-1.2242314e+183
-1.2264663e+183
-1.2247446e+183
-1.2283577e+183
-1.2278661e+183
-1.2300431e+183
-1.2295628e+183
-1.2252152e+183
-1.225617e+183
-1.2273438e+183
-1.226938e+183
-1.2288347e+183
-1.2292473e+183
-1.2309379e+183
-1.2305201e+183
-1.2084841e+183
-1.2118172e+183
-1.2114337e+183
-1.2088821e+183
-1.210283e+183
-1.2098965e+183
-1.2127606e+183
-1.212247e+183
-1.2097818e+183
-1.2093035e+183
-1.2106925e+183
-1.2111932e+183
-1.2139004e+183
-1.2144298e+183
-1.2130787e+183
-1.2134584e+183
-1.2081148e+183
-1.2070949e+183
-1.2075439e+183
-1.2085684e+183
-1.2066384e+183
-1.2062293e+183
-1.2072539e+183
-1.2076644e+183
-1.2034823e+183
-1.2044634e+183
-1.2031813e+183
-1.2041261e+183
-1.2052385e+183
-1.2056318e+183
-1.2043096e+183
-1.2053482e+183
-1.2038964e+183
-1.2049084e+183
-1.2060865e+183
-1.2065319e+183
-1.2085651e+183
-1.2089024e+183
-1.2100129e+183
-1.2096401e+183
-1.2079394e+183
-1.2089733e+183
-1.2093145e+183
-1.2082679e+183
-1.2046622e+183
-1.205711e+183
-1.2049556e+183
-1.2060109e+183
-1.2072332e+183
-1.2069175e+183
-1.205604e+183
-1.2066471e+183
-1.2052566e+183
-1.2063039e+183
-1.2075196e+183
-1.2078446e+183
-1.2132859e+183
-1.2137303e+183
-1.2105583e+183
-1.2102096e+183
-1.2116744e+183
-1.2120686e+183
-1.2149881e+183
-1.215468e+183
-1.214173e+183
-1.215927e+183
-1.2163913e+183
-1.2146357e+183
-1.2109418e+183
-1.2124907e+183
-1.2129413e+183
-1.2113602e+183
-1.2186597e+183
-1.217327e+183
-1.2169559e+183
-1.219048e+183
-1.2153114e+183
-1.2137225e+183
-1.2140411e+183
-1.2156511e+183
-1.2176044e+183
-1.2178764e+183
-1.2159362e+183
-1.214335e+183
-1.2145518e+183
-1.2161571e+183
-1.2193544e+183
-1.2196599e+183
-1.2118708e+183
-1.2151546e+183
-1.2156687e+183
-1.2123952e+183
-1.2139884e+183
-1.2134603e+183
-1.2169056e+183
-1.2174002e+183
-1.2161164e+183
-1.2178258e+183
-1.2182748e+183
-1.216582e+183
-1.2144762e+183
-1.212898e+183
-1.213345e+183
-1.2149269e+183
-1.2071835e+183
-1.2082801e+183
-1.2068127e+183
-1.2078822e+183
-1.2091411e+183
-1.2095508e+183
-1.2063949e+183
-1.2074384e+183
-1.2059818e+183
-1.207022e+183
-1.2082319e+183
-1.2086795e+183
-1.2097845e+183
-1.2093152e+183
-1.2109882e+183
-1.2104869e+183
-1.2106853e+183
-1.2102588e+183
-1.2119227e+183
-1.2114826e+183
-1.2075147e+183
-1.208624e+183
-1.209911e+183
-1.2102294e+183
-1.2089386e+183
-1.2078251e+183
-1.2083679e+183
-1.2095029e+183
-1.2081108e+183
-1.2092324e+183
-1.210529e+183
-1.2107906e+183
-1.2116685e+183
-1.2119233e+183
-1.2131423e+183
-1.2129052e+183
-1.211361e+183
-1.2110497e+183
-1.2126017e+183
-1.2122921e+183
-1.2347384e+183
-1.2324001e+183
-1.2328177e+183
-1.2351458e+183
-1.2338266e+183
-1.2314557e+183
-1.2319245e+183
-1.2342744e+183
-1.232981e+183
-1.2306074e+183
-1.2310071e+183
-1.2333857e+183
-1.2323064e+183
-1.2299352e+183
-1.2302302e+183
-1.2325981e+183
-1.2338335e+183
-1.2361384e+183
-1.2364607e+183
-1.2341525e+183
-1.2355019e+183
-1.2331932e+183
-1.2335207e+183
-1.2358305e+183
-1.2345287e+183
-1.2368332e+183
-1.2372725e+183
-1.2349829e+183
-1.2358691e+183
-1.2381471e+183
-1.2354569e+183
-1.2377439e+183
-1.1955707e+183
-1.1955549e+183
-1.1956057e+183
-1.1955624e+183
-1.2006129e+183
-1.2005783e+183
-1.2029809e+183
-1.2030138e+183
-1.2005226e+183
-1.2028576e+183
-1.2029319e+183
-1.2005521e+183
-1.2049949e+183
-1.2049013e+183
-1.206899e+183
-1.2067825e+183
-1.2051141e+183
-1.205078e+183
-1.206998e+183
-1.2070375e+183
-1.2030266e+183
-1.2051318e+183
-1.2070588e+183
-1.2264905e+183
-1.2260967e+183
-1.2275943e+183
-1.2279917e+183
-1.2246867e+183
-1.2219509e+183
-1.2233658e+183
-1.2222869e+183
-1.223718e+183
-1.2250515e+183
-1.230872e+183
-1.2291962e+183
-1.2295956e+183
-1.2312681e+183
-1.2328008e+183
-1.2331993e+183
-1.2348317e+183
-1.2344343e+183
-1.2107318e+183
-1.2091178e+183
-1.2134126e+183
-1.2122995e+183
-1.2125002e+183
-1.2136291e+183
-1.2113148e+183
-1.2103036e+183
-1.2087865e+183
-1.208913e+183
-1.2104444e+183
-1.2114927e+183
-1.2116403e+183
-1.2105804e+183
-1.209023e+183
-1.2090676e+183
-1.2106636e+183
-1.2117598e+183
-1.2138612e+183
-1.212668e+183
-1.2128267e+183
-1.2140643e+183
-1.2187301e+183
-1.2155135e+183
-1.2152589e+183
-1.2169383e+183
-1.2181518e+183
-1.2184339e+183
-1.2164082e+183
-1.2147618e+183
-1.2150014e+183
-1.2166609e+183
-1.2203209e+183
-1.2200154e+183
-1.1442026e+183
-1.1460834e+183
-1.1446726e+183
-1.1464798e+183
-1.1439446e+183
-1.1458768e+183
-1.1440374e+183
-1.1459467e+183
-1.1443932e+183
-1.1463564e+183
-1.1441712e+183
-1.1460989e+183
-1.1449207e+183
-1.1468915e+183
-1.1457013e+183
-1.1475831e+183
-1.1461191e+183
-1.1480318e+183
-1.1463114e+183
-1.1482821e+183
-1.1467736e+183
-1.1487725e+183
-1.1476346e+183
-1.1495922e+183
-1.150116e+183
-1.1519962e+183
-1.1508684e+183
-1.1526063e+183
-1.1484291e+183
-1.1503743e+183
-1.1492164e+183
-1.1511749e+183
-1.1607052e+183
-1.1620092e+183
-1.1550337e+183
-1.1582771e+183
-1.1612107e+183
-1.1625039e+183
-1.1555009e+183
-1.1587808e+183
-1.1518058e+183
-1.1522268e+183
-1.1624595e+183
-1.163743e+183
-1.1567523e+183
-1.160035e+183
-1.1617776e+183
-1.1630636e+183
-1.1560136e+183
-1.1593147e+183
-1.1527302e+183
-1.1534885e+183
-1.1631759e+183
-1.1644119e+183
-1.1575094e+183
-1.1607623e+183
-1.1638806e+183
-1.1650497e+183
-1.1583272e+183
-1.1615457e+183
-1.1542623e+183
-1.1550996e+183
-1.1644916e+183
-1.1655905e+183
-1.1590584e+183
-1.1622229e+183
-1.1648289e+183
-1.1659564e+183
-1.1594652e+183
-1.1626081e+183
-1.1558864e+183
-1.156343e+183
-1.1584936e+183
-1.1597319e+183
-1.152933e+183
-1.156116e+183
-1.1586602e+183
-1.1599491e+183
-1.1530393e+183
-1.1562557e+183
-1.149715e+183
-1.1497977e+183
-1.1531777e+183
-1.1500988e+183
-1.1562073e+183
-1.1530553e+183
-1.1498917e+183
-1.1561657e+183
-1.1584301e+183
-1.1595343e+183
-1.1584591e+183
-1.159616e+183
-1.1602459e+183
-1.1615512e+183
-1.1546248e+183
-1.1578532e+183
-1.1597311e+183
-1.1610236e+183
-1.1540398e+183
-1.1572948e+183
-1.1507841e+183
-1.1513947e+183
-1.1589119e+183
-1.1602162e+183
-1.1532205e+183
-1.1564651e+183
-1.1592869e+183
-1.1605841e+183
-1.1535855e+183
-1.1568527e+183
-1.14996e+183
-1.1503035e+183
-1.1801241e+183
-1.1798947e+183
-1.1740675e+183
-1.1745629e+183
-1.1778051e+183
-1.1773227e+183
-1.1810341e+183
-1.1805443e+183
-1.1781849e+183
-1.1749281e+183
-1.1751992e+183
-1.1784621e+183
-1.1671445e+183
-1.1677607e+183
-1.1730736e+183
-1.1697445e+183
-1.1703398e+183
-1.1736012e+183
-1.1708305e+183
-1.171139e+183
-1.1741838e+183
-1.1739787e+183
-1.1682753e+183
-1.1686192e+183
-1.1647574e+183
-1.1652738e+183
-1.1658341e+183
-1.1665035e+183
-1.1779686e+183
-1.1776136e+183
-1.1750289e+183
-1.1717926e+183
-1.1756049e+183
-1.1723594e+183
-1.1793873e+183
-1.1785576e+183
-1.1768125e+183
-1.1761615e+183
-1.1729103e+183
-1.1735674e+183
-1.1679025e+183
-1.1673661e+183
-1.1707127e+183
-1.1712935e+183
-1.1684718e+183
-1.1718814e+183
-1.1725015e+183
-1.1691308e+183
-1.1712924e+183
-1.1770783e+183
-1.1763423e+183
-1.173977e+183
-1.1707505e+183
-1.1745292e+183
-1.1758584e+183
-1.1756269e+183
-1.1731234e+183
-1.1699279e+183
-1.1703357e+183
-1.1735517e+183
-1.1633457e+183
-1.1629558e+183
-1.165958e+183
-1.1655537e+183
-1.1688815e+183
-1.1692936e+183
-1.1669043e+183
-1.1663945e+183
-1.1696894e+183
-1.1701648e+183
-1.163782e+183
-1.164303e+183
-1.1620747e+183
-1.1622331e+183
-1.1685236e+183
-1.1739661e+183
-1.1741673e+183
-1.1719104e+183
-1.1716142e+183
-1.1687863e+183
-1.1745621e+183
-1.1751943e+183
-1.1727086e+183
-1.1722103e+183
-1.1690625e+183
-1.1695382e+183
-1.1680612e+183
-1.1649227e+183
-1.1652391e+183
-1.1684566e+183
-1.1644932e+183
-1.1646972e+183
-1.1678233e+183
-1.1675681e+183
-1.1624017e+183
-1.1626687e+183
-1.1545009e+183
-1.1545383e+183
-1.1549998e+183
-1.154638e+183
-1.1554293e+183
-1.1561094e+183
-1.1549234e+183
-1.1546807e+183
-1.1588093e+183
-1.1582835e+183
-1.1594672e+183
-1.1598148e+183
-1.1565308e+183
-1.1567026e+183
-1.157669e+183
-1.1570423e+183
-1.1684772e+183
-1.170402e+183
-1.1623198e+183
-1.1664305e+183
-1.1684011e+183
-1.1702997e+183
-1.1623489e+183
-1.1663893e+183
-1.1586262e+183
-1.1584876e+183
-1.1686441e+183
-1.170631e+183
-1.1623053e+183
-1.1665065e+183
-1.1685059e+183
-1.1704791e+183
-1.1621831e+183
-1.1663667e+183
-1.1583105e+183
-1.1584116e+183
-1.1624673e+183
-1.1585677e+183
-1.1666782e+183
-1.1627866e+183
-1.1588621e+183
-1.1670178e+183
-1.1691624e+183
-1.1711538e+183
-1.1688446e+183
-1.1708469e+183
-1.1632204e+183
-1.1593333e+183
-1.1674084e+183
-1.1637379e+183
-1.1599053e+183
-1.1678769e+183
-1.169953e+183
-1.1719191e+183
-1.1695388e+183
-1.1715145e+183
-1.1711247e+183
-1.1730817e+183
-1.1648387e+183
-1.169022e+183
-1.1716107e+183
-1.1735459e+183
-1.1653727e+183
-1.1695324e+183
-1.1609571e+183
-1.1615149e+183
-1.170303e+183
-1.172269e+183
-1.1640417e+183
-1.1681961e+183
-1.1707161e+183
-1.1726642e+183
-1.1644449e+183
-1.1686316e+183
-1.1602361e+183
-1.1605782e+183
-1.1720856e+183
-1.1740144e+183
-1.1658509e+183
-1.1699894e+183
-1.1725817e+183
-1.1744593e+183
-1.1664961e+183
-1.1705986e+183
-1.1620311e+183
-1.1626635e+183
-1.1729499e+183
-1.1748123e+183
-1.1669665e+183
-1.1710109e+183
-1.1730935e+183
-1.1749376e+183
-1.1671974e+183
-1.1711885e+183
-1.163213e+183
-1.1634879e+183
-1.1522822e+183
-1.1521424e+183
-1.1532661e+183
-1.1526611e+183
-1.1521889e+183
-1.1525893e+183
-1.1520086e+183
-1.1519859e+183
-1.1525421e+183
-1.1526845e+183
-1.1526041e+183
-1.1529359e+183
-1.1543555e+183
-1.1549617e+183
-1.1533513e+183
-1.1537593e+183
-1.1670768e+183
-1.1689949e+183
-1.1608879e+183
-1.1649828e+183
-1.1675211e+183
-1.1694023e+183
-1.1614127e+183
-1.1654904e+183
-1.157083e+183
-1.1576042e+183
-1.1679462e+183
-1.1698067e+183
-1.1619228e+183
-1.165942e+183
-1.1682577e+183
-1.1701323e+183
-1.1622696e+183
-1.166281e+183
-1.1581553e+183
-1.158556e+183
-1.1659951e+183
-1.1678817e+183
-1.1599866e+183
-1.1639676e+183
-1.1662023e+183
-1.1680885e+183
-1.1601371e+183
-1.1641709e+183
-1.1562892e+183
-1.1563556e+183
-1.1664088e+183
-1.1683161e+183
-1.1602598e+183
-1.1643257e+183
-1.1667215e+183
-1.1686374e+183
-1.1605554e+183
-1.1646482e+183
-1.1564471e+183
-1.1567371e+183
-1.1652712e+183
-1.1671043e+183
-1.1593319e+183
-1.1632751e+183
-1.165347e+183
-1.1671409e+183
-1.1595008e+183
-1.1634306e+183
-1.1557117e+183
-1.155902e+183
-1.1601963e+183
-1.1566932e+183
-1.164029e+183
-1.1597199e+183
-1.1561676e+183
-1.163597e+183
-1.1655016e+183
-1.1672704e+183
-1.1657849e+183
-1.1674772e+183
-1.1653314e+183
-1.1671793e+183
-1.1593881e+183
-1.1633236e+183
-1.1654623e+183
-1.1673107e+183
-1.1594832e+183
-1.1634448e+183
-1.1556935e+183
-1.1557581e+183
-1.165616e+183
-1.1674781e+183
-1.1596422e+183
-1.1636035e+183
-1.1658176e+183
-1.1676935e+183
-1.1598421e+183
-1.1638115e+183
-1.1559206e+183
-1.1561619e+183
-1.1767179e+183
-1.1795068e+183
-1.1823783e+183
-1.1795549e+183
-1.1824351e+183
-1.176763e+183
-1.1769301e+183
-1.1828258e+183
-1.1825774e+183
-1.1797178e+183
-1.1799121e+183
-1.1771148e+183
-1.1720354e+183
-1.1733335e+183
-1.1721635e+183
-1.1734158e+183
-1.1751136e+183
-1.1751161e+183
-1.169887e+183
-1.169716e+183
-1.1696168e+183
-1.1696221e+183
-1.1719926e+183
-1.1733706e+183
-1.1720571e+183
-1.1734873e+183
-1.1754082e+183
-1.1752495e+183
-1.1772561e+183
-1.1829544e+183
-1.1830454e+183
-1.1801488e+183
-1.1800516e+183
-1.1773545e+183
-1.1777657e+183
-1.177544e+183
-1.1803486e+183
-1.183241e+183
-1.1805981e+183
-1.1835811e+183
-1.173785e+183
-1.1756848e+183
-1.1723536e+183
-1.1721957e+183
-1.1736221e+183
-1.1755473e+183
-1.1697262e+183
-1.1698729e+183
-1.1727286e+183
-1.1741441e+183
-1.1725149e+183
-1.1739372e+183
-1.1758432e+183
-1.1760432e+183
-1.1700427e+183
-1.1702603e+183
-1.1850803e+183
-1.1846257e+183
-1.1817039e+183
-1.1788244e+183
-1.1791925e+183
-1.1820919e+183
-1.184221e+183
-1.183874e+183
-1.1808781e+183
-1.1780363e+183
-1.1784292e+183
-1.1812989e+183
-1.1743984e+183
-1.1763173e+183
-1.1732348e+183
-1.174709e+183
-1.1729626e+183
-1.176687e+183
-1.1704659e+183
-1.1707024e+183
-1.1709494e+183
-1.1712797e+183
-1.1735167e+183
-1.1750397e+183
-1.1738531e+183
-1.1753927e+183
-1.1774256e+183
-1.1770795e+183
-1.1857649e+183
-1.185406e+183
-1.1823733e+183
-1.1794659e+183
-1.1798604e+183
-1.1827855e+183
-1.1866781e+183
-1.1861983e+183
-1.1832198e+183
-1.1802861e+183
-1.1806678e+183
-1.1836369e+183
-1.1757104e+183
-1.1777083e+183
-1.1745798e+183
-1.1760826e+183
-1.1741929e+183
-1.1780914e+183
-1.1716317e+183
-1.1720274e+183
-1.1724121e+183
-1.1727364e+183
-1.174962e+183
-1.1764879e+183
-1.1752858e+183
-1.1768253e+183
-1.1788558e+183
-1.1785158e+183
-1.1813974e+183
-1.1877063e+183
-1.187391e+183
-1.1843938e+183
-1.1846235e+183
-1.1816221e+183
-1.1809401e+183
-1.1839218e+183
-1.1869774e+183
-1.1841634e+183
-1.1871877e+183
-1.1811755e+183
-1.1731842e+183
-1.1733578e+183
-1.1729253e+183
-1.173073e+183
-1.1756762e+183
-1.1772587e+183
-1.1754883e+183
-1.1770439e+183
-1.1793556e+183
-1.1791199e+183
-1.1758299e+183
-1.1774375e+183
-1.1760171e+183
-1.1776427e+183
-1.1797697e+183
-1.1795707e+183
-1.1818032e+183
-1.1820841e+183
-1.1850947e+183
-1.1881204e+183
-1.1848199e+183
-1.1878995e+183
-1.1884506e+183
-1.1888849e+183
-1.1857603e+183
-1.1854178e+183
-1.1824232e+183
-1.1827642e+183
-1.1765445e+183
-1.1781371e+183
-1.176238e+183
-1.1778335e+183
-1.1802448e+183
-1.179953e+183
-1.1735802e+183
-1.1738865e+183
-1.174225e+183
-1.1746067e+183
-1.1768715e+183
-1.1784816e+183
-1.1772258e+183
-1.1788247e+183
-1.1809176e+183
-1.1805965e+183
-1.1830443e+183
-1.1834526e+183
-1.1864523e+183
-1.1895073e+183
-1.1860498e+183
-1.1891774e+183
-1.1779619e+183
-1.1795352e+183
-1.1775483e+183
-1.1791174e+183
-1.1816193e+183
-1.1811983e+183
-1.1749494e+183
-1.1753553e+183
-1.1757767e+183
-1.1762272e+183
-1.178398e+183
-1.1799926e+183
-1.1788471e+183
-1.1804419e+183
-1.1825086e+183
-1.184341e+183
-1.1821027e+183
-1.1839103e+183
-1.1903989e+183
-1.1899164e+183
-1.1873258e+183
-1.1869003e+183
-1.1852192e+183
-1.1914715e+183
-1.1912017e+183
-1.1881839e+183
-1.1883368e+183
-1.1853462e+183
-1.1846013e+183
-1.1909233e+183
-1.1906794e+183
-1.1875721e+183
-1.1878577e+183
-1.1849034e+183
-1.181168e+183
-1.1831426e+183
-1.1808099e+183
-1.1828116e+183
-1.1792707e+183
-1.1796607e+183
-1.1766759e+183
-1.1770985e+183
-1.1774243e+183
-1.1775297e+183
-1.1799693e+183
-1.1814719e+183
-1.1800427e+183
-1.1815404e+183
-1.1834944e+183
-1.1834237e+183
-1.1857383e+183
-1.1857024e+183
-1.1885992e+183
-1.1918267e+183
-1.1886236e+183
-1.1918668e+183
-1.1918144e+183
-1.1917877e+183
-1.1885763e+183
-1.1886321e+183
-1.1857386e+183
-1.1856634e+183
-1.1801079e+183
-1.1821943e+183
-1.1802457e+183
-1.1822133e+183
-1.1837957e+183
-1.1838267e+183
-1.1777591e+183
-1.1752931e+183
-1.1749666e+183
-1.1775055e+183
-1.1743451e+183
-1.1746373e+183
-1.1772322e+183
-1.1769829e+183
-1.1799313e+183
-1.1821266e+183
-1.1797196e+183
-1.1819706e+183
-1.183668e+183
-1.1837874e+183
-1.1734267e+183
-1.1730252e+183
-1.1726469e+183
-1.1723138e+183
-1.1818123e+183
-1.1795193e+183
-1.179514e+183
-1.1817153e+183
-1.1767907e+183
-1.1741318e+183
-1.1740408e+183
-1.1767212e+183
-1.1720704e+183
-1.1719873e+183
-1.1661424e+183
-1.1706833e+183
-1.165716e+183
-1.1703027e+183
-1.1672501e+183
-1.1716475e+183
-1.1666366e+183
-1.1711303e+183
-1.1653721e+183
-1.1700154e+183
-1.1653033e+183
-1.1699528e+183
-1.1653552e+183
-1.1699698e+183
-1.1845871e+183
-1.1849426e+183
-1.1853532e+183
-1.1857299e+183
-1.1822372e+183
-1.1827148e+183
-1.1833181e+183
-1.1840419e+183
-1.191543e+183
-1.1899376e+183
-1.192149e+183
-1.1905371e+183
-1.1875394e+183
-1.1868528e+183
-1.1891891e+183
-1.1898519e+183
-1.185686e+183
-1.1862385e+183
-1.1879902e+183
-1.1885735e+183
-1.1927891e+183
-1.1911551e+183
-1.1918218e+183
-1.193479e+183
-1.1880966e+183
-1.1885394e+183
-1.1909106e+183
-1.1904275e+183
-1.1892747e+183
-1.1889356e+183
-1.1913184e+183
-1.1916396e+183
-1.193682e+183
-1.1933536e+183
-1.1950897e+183
-1.1954339e+183
-1.1924146e+183
-1.1940996e+183
-1.1946532e+183
-1.1929309e+183
-1.1801801e+183
-1.1805476e+183
-1.1810443e+183
-1.1816813e+183
-1.1783624e+183
-1.1786912e+183
-1.1791308e+183
-1.179696e+183
-1.1825148e+183
-1.1847473e+183
-1.1853017e+183
-1.1830734e+183
-1.1837378e+183
-1.1816071e+183
-1.1820405e+183
-1.184237e+183
-1.1875901e+183
-1.1869843e+183
-1.1855192e+183
-1.186074e+183
-1.1866069e+183
-1.1881395e+183
-1.1887174e+183
-1.1871732e+183
-1.1858262e+183
-1.1835764e+183
-1.1840452e+183
-1.1863388e+183
-1.185141e+183
-1.1845514e+183
-1.1868653e+183
-1.1874377e+183
-1.1888034e+183
-1.1904238e+183
-1.1910119e+183
-1.1893849e+183
-1.1892677e+183
-1.1877098e+183
-1.1882607e+183
-1.1898636e+183
-1.2021593e+183
-1.2036252e+183
-1.2048718e+183
-1.205652e+183
-1.2028616e+183
-1.2043705e+183
-1.2075367e+183
-1.2061755e+183
-1.2083914e+183
-1.2069821e+183
-1.2054243e+183
-1.2047481e+183
-1.2060248e+183
-1.2067325e+183
-1.2009909e+183
-1.2023526e+183
-1.2035228e+183
-1.2041779e+183
-1.2015675e+183
-1.202975e+183
-1.1996413e+183
-1.2009791e+183
-1.2021119e+183
-1.2028428e+183
-1.200355e+183
-1.2016958e+183
-1.2032954e+183
-1.2045315e+183
-1.2052981e+183
-1.2040309e+183
-1.2066332e+183
-1.2058465e+183
-1.2073868e+183
-1.2088133e+183
-1.2096031e+183
-1.2081353e+183
-1.2104159e+183
-1.2118218e+183
-1.2126793e+183
-1.2112435e+183
-1.2135343e+183
-1.2121068e+183
-1.2129992e+183
-1.2144031e+183
-1.210458e+183
-1.2089688e+183
-1.2113574e+183
-1.2098537e+183
-1.1887573e+183
-1.1894216e+183
-1.1902832e+183
-1.1909443e+183
-1.1900864e+183
-1.1894064e+183
-1.191066e+183
-1.1919172e+183
-1.1925836e+183
-1.1917228e+183
-1.192359e+183
-1.1929927e+183
-1.1938604e+183
-1.1932029e+183
-1.1915854e+183
-1.1907146e+183
-1.1899929e+183
-1.1905244e+183
-1.1912513e+183
-1.1921701e+183
-1.1942649e+183
-1.1969653e+183
-1.1955534e+183
-1.1976612e+183
-1.1962421e+183
-1.1949399e+183
-1.1991143e+183
-1.198414e+183
-1.1994254e+183
-1.2000405e+183
-1.1986406e+183
-1.1980654e+183
-1.1968235e+183
-1.197366e+183
-1.1956194e+183
-1.1983043e+183
-1.198878e+183
-1.1974976e+183
-1.1968879e+183
-1.1962713e+183
-1.2008728e+183
-1.2015268e+183
-1.2003053e+183
-1.1997481e+183
-1.1928056e+183
-1.1918554e+183
-1.1911096e+183
-1.1918034e+183
-1.1925795e+183
-1.1935203e+183
-1.1952288e+183
-1.1945494e+183
-1.1936445e+183
-1.1943416e+183
-1.1949138e+183
-1.1954228e+183
-1.1962895e+183
-1.1957686e+183
-1.1941143e+183
-1.1931893e+183
-1.1923973e+183
-1.1929279e+183
-1.1936824e+183
-1.1945962e+183
-1.1962005e+183
-1.1970255e+183
-1.1980114e+183
-1.1985959e+183
-1.1975956e+183
-1.1967825e+183
-1.1999223e+183
-1.1989093e+183
-1.1994892e+183
-1.200491e+183
-1.2009217e+183
-1.1999849e+183
-1.2003879e+183
-1.2013086e+183
-1.1991139e+183
-1.1981166e+183
-1.1972671e+183
-1.1976055e+183
-1.1984847e+183
-1.1995065e+183
-1.1968267e+183
-1.1959231e+183
-1.1965934e+183
-1.1975369e+183
-1.1950718e+183
-1.1941256e+183
-1.1933902e+183
-1.1939947e+183
-1.1947308e+183
-1.1957086e+183
-1.1947231e+183
-1.1954934e+183
-1.1964808e+183
-1.1972965e+183
-1.1963233e+183
-1.1955015e+183
-1.1983702e+183
-1.1973816e+183
-1.1981878e+183
-1.1991995e+183
-1.2035383e+183
-1.2026291e+183
-1.2019181e+183
-1.2010342e+183
-1.2004363e+183
-1.1995741e+183
-1.20169e+183
-1.2007955e+183
-1.2001339e+183
-1.199303e+183
-1.1979436e+183
-1.1987131e+183
-1.2023445e+183
-1.2037235e+183
-1.2032873e+183
-1.2046933e+183
-1.204266e+183
-1.2056831e+183
-1.205198e+183
-1.2066236e+183
-1.2048469e+183
-1.2042689e+183
-1.202641e+183
-1.2011515e+183
-1.2017193e+183
-1.2032077e+183
-1.2055348e+183
-1.2052234e+183
-1.2024702e+183
-1.2021025e+183
-1.2035808e+183
-1.2039138e+183
-1.206949e+183
-1.2084087e+183
-1.2072529e+183
-1.2087374e+183
-1.205957e+183
-1.2073836e+183
-1.206551e+183
-1.2079893e+183
-1.2079329e+183
-1.209346e+183
-1.2103055e+183
-1.2089051e+183
-1.2072076e+183
-1.2085267e+183
-1.2094398e+183
-1.2081251e+183
-1.2052565e+183
-1.2075431e+183
-1.2065656e+183
-1.2062263e+183
-1.2113115e+183
-1.2098993e+183
-1.2108084e+183
-1.212242e+183
-1.2142784e+183
-1.2127687e+183
-1.2137251e+183
-1.2152428e+183
-1.2123175e+183
-1.2108187e+183
-1.2117595e+183
-1.2132694e+183
-1.2149393e+183
-1.2139554e+183
-1.2153772e+183
-1.2163912e+183
-1.2159394e+183
-1.2169092e+183
-1.2183655e+183
-1.2173994e+183
-1.2163131e+183
-1.2158491e+183
-1.217369e+183
-1.2178872e+183
-1.2152702e+183
-1.2145675e+183
-1.2160901e+183
-1.2167771e+183
-1.2196259e+183
-1.2205821e+183
-1.2190824e+183
-1.2211465e+183
-1.2177689e+183
-1.2192308e+183
-1.2199495e+183
-1.2184707e+183
-1.2102284e+183
-1.2089012e+183
-1.2095241e+183
-1.2108769e+183
-1.2099907e+183
-1.211378e+183
-1.2117557e+183
-1.2103466e+183
-1.2143261e+183
-1.2128283e+183
-1.2132183e+183
-1.2147464e+183
-1.2116075e+183
-1.2130637e+183
-1.2137667e+183
-1.2122947e+183
-1.2190352e+183
-1.2210433e+183
-1.2219853e+183
-1.2199958e+183
-1.2169834e+183
-1.219008e+183
-1.2200387e+183
-1.2180172e+183
-1.2228314e+183
-1.2248705e+183
-1.2242293e+183
-1.222241e+183
-1.2235612e+183
-1.2208676e+183
-1.2228399e+183
-1.2215931e+183
-1.2134069e+183
-1.2153613e+183
-1.2142643e+183
-1.216212e+183
-1.2150963e+183
-1.2170594e+183
-1.21799e+183
-1.2159818e+183
-1.1893587e+183
-1.1897481e+183
-1.1902066e+183
-1.1906808e+183
-1.1877318e+183
-1.1881119e+183
-1.1885464e+183
-1.1889989e+183
-1.1954475e+183
-1.1932407e+183
-1.1937017e+183
-1.195918e+183
-1.1978172e+183
-1.1973095e+183
-1.1995411e+183
-1.1989967e+183
-1.1968515e+183
-1.1964061e+183
-1.198052e+183
-1.1984788e+183
-1.1923675e+183
-1.1945514e+183
-1.1949968e+183
-1.1927953e+183
-1.1941108e+183
-1.1963542e+183
-1.1967903e+183
-1.1945418e+183
-1.1991202e+183
-1.1995647e+183
-1.2012345e+183
-1.2007769e+183
-1.1986946e+183
-1.1982758e+183
-1.2000149e+183
-1.2004151e+183
-1.1972343e+183
-1.1949944e+183
-1.1954424e+183
-1.1976705e+183
-1.1863351e+183
-1.1865616e+183
-1.1861355e+183
-1.1861779e+183
-1.1910191e+183
-1.1908189e+183
-1.1929623e+183
-1.1931289e+183
-1.190673e+183
-1.1906015e+183
-1.1927214e+183
-1.1928257e+183
-1.194695e+183
-1.194568e+183
-1.1962399e+183
-1.1963818e+183
-1.1949591e+183
-1.1948222e+183
-1.1965044e+183
-1.1966214e+183
-1.1937617e+183
-1.191651e+183
-1.1919975e+183
-1.1941339e+183
-1.1911984e+183
-1.1932851e+183
-1.1934774e+183
-1.191384e+183
-1.1952357e+183
-1.1950855e+183
-1.1968611e+183
-1.1967274e+183
-1.1959575e+183
-1.195522e+183
-1.1971502e+183
-1.1976081e+183
-1.1867181e+183
-1.1868326e+183
-1.1870707e+183
-1.1874086e+183
-1.2007992e+183
-1.2021378e+183
-1.2031076e+183
-1.2036644e+183
-1.2027357e+183
-1.2013808e+183
-1.2051048e+183
-1.2040264e+183
-1.2045766e+183
-1.2056693e+183
-1.2034443e+183
-1.2029532e+183
-1.2039678e+183
-1.2044815e+183
-1.1998028e+183
-1.2010993e+183
-1.2020581e+183
-1.2025339e+183
-1.2015441e+183
-1.2002298e+183
-1.2097591e+183
-1.2102741e+183
-1.2069902e+183
-1.2064094e+183
-1.2080307e+183
-1.2085866e+183
-1.2085968e+183
-1.2091603e+183
-1.2052587e+183
-1.2057938e+183
-1.2074201e+183
-1.2068677e+183
-1.2104586e+183
-1.2124507e+183
-1.2110217e+183
-1.212993e+183
-1.211594e+183
-1.2135099e+183
-1.2120567e+183
-1.2139071e+183
-1.2123087e+183
-1.2141031e+183
-1.2105772e+183
-1.210795e+183
-1.2124995e+183
-1.2143014e+183
-1.2089794e+183
-1.2074464e+183
-1.2077345e+183
-1.2092056e+183
-1.2079632e+183
-1.211169e+183
-1.2109796e+183
-1.209427e+183
-1.2096561e+183
-1.2082164e+183
-1.2126684e+183
-1.2144749e+183
-1.2128507e+183
-1.2146783e+183
-1.2018687e+183
-1.2032107e+183
-1.2022394e+183
-1.203561e+183
-1.2045098e+183
-1.2041438e+183
-1.2050641e+183
-1.206152e+183
-1.206491e+183
-1.2054274e+183
-1.2057188e+183
-1.206031e+183
-1.2070068e+183
-1.2067283e+183
-1.2030023e+183
-1.2042567e+183
-1.202556e+183
-1.2038532e+183
-1.2048138e+183
-1.2051579e+183
-1.2021682e+183
-1.2012437e+183
-1.20145e+183
-1.2024225e+183
-1.2016938e+183
-1.2008209e+183
-1.2010572e+183
-1.2019536e+183
-1.2000516e+183
-1.1992797e+183
-1.1980205e+183
-1.1981714e+183
-1.1994485e+183
-1.2002553e+183
-1.2004216e+183
-1.199588e+183
-1.1982886e+183
-1.1983892e+183
-1.1997075e+183
-1.2005867e+183
-1.1984942e+183
-1.1998147e+183
-1.2007541e+183
-1.2009576e+183
-1.1999725e+183
-1.1986282e+183
-1.2026946e+183
-1.2016547e+183
-1.2029294e+183
-1.2018723e+183
-1.2021728e+183
-1.2025259e+183
-1.2035329e+183
-1.2031955e+183
-1.1989203e+183
-1.2002696e+183
-1.2012633e+183
-1.2016405e+183
-1.2007028e+183
-1.199375e+183
-1.2088827e+183
-1.2107449e+183
-1.20712e+183
-1.2074355e+183
-1.2092255e+183
-1.211139e+183
-1.2054769e+183
-1.203934e+183
-1.2057673e+183
-1.204197e+183
-1.207757e+183
-1.2081165e+183
-1.2044751e+183
-1.2060602e+183
-1.2064063e+183
-1.2048128e+183
-1.2099633e+183
-1.2119581e+183
-1.2095786e+183
-1.2115342e+183
-1.2061552e+183
-1.2058597e+183
-1.2042668e+183
-1.202813e+183
-1.2030963e+183
-1.2045528e+183
-1.2076038e+183
-1.209469e+183
-1.2078965e+183
-1.2097601e+183
-1.2081989e+183
-1.2100627e+183
-1.2064464e+183
-1.2067901e+183
-1.208545e+183
-1.2104206e+183
-1.2036343e+183
-1.2033283e+183
-1.2048158e+183
-1.2051494e+183
-1.2134737e+183
-1.2130218e+183
-1.2144392e+183
-1.2149091e+183
-1.2159754e+183
-1.2175807e+183
-1.2180835e+183
-1.2164652e+183
-1.2165381e+183
-1.215004e+183
-1.2154822e+183
-1.2170462e+183
-1.2135363e+183
-1.2121715e+183
-1.212592e+183
-1.21398e+183
-1.2146078e+183
-1.2142694e+183
-1.215797e+183
-1.2161285e+183
-1.213952e+183
-1.2136427e+183
-1.215154e+183
-1.2154757e+183
-1.2111429e+183
-1.2108542e+183
-1.2121914e+183
-1.2124875e+183
-1.2114517e+183
-1.2127972e+183
-1.2131541e+183
-1.2118081e+183
-1.2177282e+183
-1.2173988e+183
-1.2190444e+183
-1.2193851e+183
-1.2170723e+183
-1.2167325e+183
-1.2183365e+183
-1.2187023e+183
-1.2212805e+183
-1.2224937e+183
-1.2209218e+183
-1.2228732e+183
-1.2201637e+183
-1.2216793e+183
-1.222104e+183
-1.2205583e+183
-1.2198096e+183
-1.2181386e+183
-1.2203627e+183
-1.2186834e+183
-1.2192436e+183
-1.2197458e+183
-1.2214414e+183
-1.2209356e+183
-1.2233252e+183
-1.2222677e+183
-1.2217169e+183
-1.2238725e+183
-1.222852e+183
-1.2233663e+183
-1.2249814e+183
-1.2244595e+183
-1.215896e+183
-1.2172755e+183
-1.2175009e+183
-1.2161219e+183
-1.2168485e+183
-1.21549e+183
-1.2156984e+183
-1.2170673e+183
-1.2199367e+183
-1.2185764e+183
-1.2183325e+183
-1.2201866e+183
-1.2187935e+183
-1.2204119e+183
-1.2206209e+183
-1.2189993e+183
-1.2185311e+183
-1.2174057e+183
-1.2169317e+183
-1.2189909e+183
-1.2153961e+183
-1.2139647e+183
-1.2144706e+183
-1.2158816e+183
-1.2149299e+183
-1.2163069e+183
-1.2166254e+183
-1.2152754e+183
-1.217811e+183
-1.2193971e+183
-1.2196918e+183
-1.2180983e+183
-1.2210522e+183
-1.2230534e+183
-1.2227485e+183
-1.2213479e+183
-1.221881e+183
-1.2201763e+183
-1.2206462e+183
-1.2223438e+183
-1.2254456e+183
-1.2242757e+183
-1.2238168e+183
-1.2258968e+183
-1.2246807e+183
-1.2263032e+183
-1.2266309e+183
-1.2249921e+183
-1.2216103e+183
-1.2233349e+183
-1.2236102e+183
-1.2218758e+183
-1.2221091e+183
-1.2223171e+183
-1.2240717e+183
-1.2238539e+183
-1.2260711e+183
-1.2258392e+183
-1.2275127e+183
-1.2277577e+183
-1.225298e+183
-1.225581e+183
-1.2272409e+183
-1.2269501e+183
-1.193244e+183
-1.1935858e+183
-1.1939948e+183
-1.1944412e+183
-1.1992973e+183
-1.1989087e+183
-1.2012244e+183
-1.2015868e+183
-1.2035891e+183
-1.203237e+183
-1.2054279e+183
-1.2050713e+183
-1.2028657e+183
-1.2024901e+183
-1.2042853e+183
-1.2046768e+183
-1.1985164e+183
-1.1981517e+183
-1.2004829e+183
-1.200851e+183
-1.2003992e+183
-1.2001736e+183
-1.2024528e+183
-1.2026796e+183
-1.1996033e+183
-1.199881e+183
-1.202169e+183
-1.201876e+183
-1.2041769e+183
-1.2038809e+183
-1.206035e+183
-1.2057332e+183
-1.2044619e+183
-1.2047014e+183
-1.2065736e+183
-1.2063224e+183
-1.1947358e+183
-1.1949817e+183
-1.195283e+183
-1.1955385e+183
-1.1919656e+183
-1.1921995e+183
-1.1929228e+183
-1.1925216e+183
-1.1910046e+183
-1.1912262e+183
-1.1914521e+183
-1.1917417e+183
-1.1985828e+183
-1.1963129e+183
-1.1965882e+183
-1.1988717e+183
-1.2005088e+183
-1.200836e+183
-1.2026171e+183
-1.2022451e+183
-1.1999265e+183
-1.2002215e+183
-1.2018826e+183
-1.2015987e+183
-1.1957794e+183
-1.1980204e+183
-1.1983129e+183
-1.1960504e+183
-1.1968577e+183
-1.1991572e+183
-1.1994426e+183
-1.1971299e+183
-1.2017592e+183
-1.2021271e+183
-1.2039153e+183
-1.2035538e+183
-1.2014194e+183
-1.2011384e+183
-1.2032306e+183
-1.2029426e+183
-1.1978018e+183
-1.1974402e+183
-1.1997636e+183
-1.2001261e+183
-1.2197026e+183
-1.2210022e+183
-1.2222435e+183
-1.2225827e+183
-1.2200992e+183
-1.2213631e+183
-1.2214534e+183
-1.2188346e+183
-1.2201768e+183
-1.2193033e+183
-1.2206176e+183
-1.2218765e+183
-1.2232743e+183
-1.2228499e+183
-1.224386e+183
-1.2247889e+183
-1.2236286e+183
-1.2251316e+183
-1.225438e+183
-1.2239368e+183
-1.2216248e+183
-1.2229985e+183
-1.2212643e+183
-1.2226102e+183
-1.2238842e+183
-1.224297e+183
-1.2229789e+183
-1.2204678e+183
-1.2217521e+183
-1.2209034e+183
-1.2221979e+183
-1.2234411e+183
-1.2248251e+183
-1.2243331e+183
-1.2258365e+183
-1.2263291e+183
-1.2252945e+183
-1.2268102e+183
-1.227234e+183
-1.2257199e+183
-1.2315432e+183
-1.2310784e+183
-1.2326881e+183
-1.2331521e+183
-1.2291444e+183
-1.2274549e+183
-1.2279397e+183
-1.2296169e+183
-1.2288283e+183
-1.2284186e+183
-1.2300882e+183
-1.2304934e+183
-1.2320105e+183
-1.2336269e+183
-1.2340416e+183
-1.2324182e+183
-1.2264078e+183
-1.2260269e+183
-1.227732e+183
-1.2280946e+183
-1.231338e+183
-1.2300376e+183
-1.2296887e+183
-1.2316747e+183
-1.2306786e+183
-1.2303583e+183
-1.2319904e+183
-1.2323101e+183
-1.2270473e+183
-1.2267409e+183
-1.2284209e+183
-1.2287359e+183
-1.218322e+183
-1.2196992e+183
-1.2178819e+183
-1.2192686e+183
-1.2205793e+183
-1.2209979e+183
-1.219608e+183
-1.2169055e+183
-1.2182938e+183
-1.2174094e+183
-1.2188035e+183
-1.220118e+183
-1.2220309e+183
-1.2235898e+183
-1.2239969e+183
-1.222441e+183
-1.2226009e+183
-1.2210365e+183
-1.2215643e+183
-1.2231204e+183
-1.2158173e+183
-1.2172394e+183
-1.2185905e+183
-1.2190817e+183
-1.2163506e+183
-1.2177506e+183
-1.2177913e+183
-1.2149968e+183
-1.2164248e+183
-1.2153696e+183
-1.2167928e+183
-1.2181527e+183
-1.2200837e+183
-1.2216815e+183
-1.2221116e+183
-1.2205317e+183
-1.2192772e+183
-1.2196545e+183
-1.2212641e+183
-1.2208933e+183
-1.223778e+183
-1.2251046e+183
-1.2233682e+183
-1.2255027e+183
-1.227473e+183
-1.2270759e+183
-1.2291325e+183
-1.2287318e+183
-1.2266982e+183
-1.2263669e+183
-1.2283507e+183
-1.228048e+183
-1.2226029e+183
-1.2243661e+183
-1.2247155e+183
-1.2229644e+183
-1.2259657e+183
-1.2242517e+183
-1.2264685e+183
-1.2247658e+183
-1.2284149e+183
-1.227922e+183
-1.230061e+183
-1.2295794e+183
-1.2252383e+183
-1.2256408e+183
-1.227348e+183
-1.2269418e+183
-1.2288929e+183
-1.229305e+183
-1.2309565e+183
-1.2305389e+183
-1.2085531e+183
-1.2118869e+183
-1.2115048e+183
-1.2089499e+183
-1.2103691e+183
-1.2099842e+183
-1.2128305e+183
-1.2123126e+183
-1.2098517e+183
-1.2093701e+183
-1.2107752e+183
-1.2112813e+183
-1.2139969e+183
-1.2145284e+183
-1.2131771e+183
-1.2135561e+183
-1.2082177e+183
-1.2072577e+183
-1.2077106e+183
-1.2086728e+183
-1.2067982e+183
-1.2063886e+183
-1.2073559e+183
-1.2077658e+183
-1.2036652e+183
-1.2049645e+183
-1.2033688e+183
-1.2046251e+183
-1.2055212e+183
-1.2059162e+183
-1.2045127e+183
-1.2058981e+183
-1.204088e+183
-1.2054329e+183
-1.206377e+183
-1.2068304e+183
-1.2087342e+183
-1.2090705e+183
-1.2101226e+183
-1.209748e+183
-1.2081094e+183
-1.2090799e+183
-1.209421e+183
-1.2084368e+183
-1.2048698e+183
-1.2062675e+183
-1.2051566e+183
-1.2065527e+183
-1.2075323e+183
-1.2072201e+183
-1.205794e+183
-1.2071709e+183
-1.2054507e+183
-1.2068301e+183
-1.2078164e+183
-1.2081398e+183
-1.2133581e+183
-1.2138e+183
-1.2106283e+183
-1.2102814e+183
-1.2117655e+183
-1.2121568e+183
-1.2150875e+183
-1.2155677e+183
-1.2142496e+183
-1.2160327e+183
-1.2164963e+183
-1.214712e+183
-1.2110159e+183
-1.2125835e+183
-1.2130349e+183
-1.211436e+183
-1.2187668e+183
-1.2174124e+183
-1.2170352e+183
-1.2191602e+183
-1.215413e+183
-1.213811e+183
-1.2141287e+183
-1.2157514e+183
-1.2176808e+183
-1.2179525e+183
-1.2160363e+183
-1.2144229e+183
-1.2146346e+183
-1.2162524e+183
-1.2194602e+183
-1.2197653e+183
-1.2119548e+183
-1.2152389e+183
-1.2157541e+183
-1.2124819e+183
-1.2140876e+183
-1.2135584e+183
-1.2170192e+183
-1.2175138e+183
-1.2161963e+183
-1.2179356e+183
-1.2183842e+183
-1.2166655e+183
-1.2145781e+183
-1.2129864e+183
-1.2134321e+183
-1.215027e+183
-1.2073999e+183
-1.2088633e+183
-1.2070295e+183
-1.2084566e+183
-1.2094563e+183
-1.2098675e+183
-1.2066001e+183
-1.2079799e+183
-1.2061772e+183
-1.2075523e+183
-1.2085323e+183
-1.2089871e+183
-1.2099637e+183
-1.2094885e+183
-1.2111131e+183
-1.2106078e+183
-1.2108667e+183
-1.2104411e+183
-1.2120482e+183
-1.2116093e+183
-1.2077318e+183
-1.2092044e+183
-1.2102291e+183
-1.2105427e+183
-1.2095125e+183
-1.2080416e+183
-1.2085818e+183
-1.2100831e+183
-1.2083284e+183
-1.2098137e+183
-1.2108468e+183
-1.2111049e+183
-1.2118527e+183
-1.2121027e+183
-1.213264e+183
-1.213032e+183
-1.2115438e+183
-1.2112331e+183
-1.2127272e+183
-1.212419e+183
-1.1952849e+183
-1.1983073e+183
-1.1953003e+183
-1.198306e+183
-1.1953517e+183
-1.1983218e+183
-1.1953237e+183
-1.1983206e+183
-1.2011594e+183
-1.2011341e+183
-1.2033129e+183
-1.2033409e+183
-1.2010652e+183
-1.2031905e+183
-1.2032666e+183
-1.201108e+183
-1.2051889e+183
-1.2051069e+183
-1.2070511e+183
-1.2069445e+183
-1.2053083e+183
-1.2052782e+183
-1.2071523e+183
-1.2071869e+183
-1.2033628e+183
-1.2053164e+183
-1.2072058e+183
-1.2221959e+183
-1.2225344e+183
-1.2110307e+183
-1.2092251e+183
-1.2105946e+183
-1.2088958e+183
-1.2090207e+183
-1.2107383e+183
-1.2108696e+183
-1.209129e+183
-1.209173e+183
-1.2109619e+183
-1.2187882e+183
-1.2182066e+183
-1.2184898e+183
-1.2204089e+183
-1.2201023e+183
-1.1469394e+183
-1.147292e+183
-1.1467323e+183
-1.1467943e+183
-1.1472404e+183
-1.1469587e+183
-1.1477581e+183
-1.14842e+183
-1.1488685e+183
-1.1491678e+183
-1.1496603e+183
-1.1504561e+183
-1.1528873e+183
-1.1534557e+183
-1.1512463e+183
-1.1520619e+183
-1.1617245e+183
-1.1634782e+183
-1.1560002e+183
-1.1598281e+183
-1.1622583e+183
-1.1640027e+183
-1.156495e+183
-1.1603747e+183
-1.1523914e+183
-1.1528343e+183
-1.1635063e+183
-1.1652358e+183
-1.1577489e+183
-1.16163e+183
-1.1628242e+183
-1.1645694e+183
-1.157016e+183
-1.1609143e+183
-1.153342e+183
-1.1540886e+183
-1.1642218e+183
-1.1659227e+183
-1.158519e+183
-1.1623595e+183
-1.1649438e+183
-1.1665911e+183
-1.1593521e+183
-1.1631633e+183
-1.1548721e+183
-1.1557166e+183
-1.1655342e+183
-1.1671638e+183
-1.1600925e+183
-1.1638267e+183
-1.1658523e+183
-1.1674943e+183
-1.1604793e+183
-1.1641836e+183
-1.1565155e+183
-1.1569574e+183
-1.1594963e+183
-1.1612069e+183
-1.153883e+183
-1.157633e+183
-1.1596724e+183
-1.1614129e+183
-1.1539938e+183
-1.1577874e+183
-1.150302e+183
-1.1503804e+183
-1.1541018e+183
-1.1506658e+183
-1.1576768e+183
-1.1540057e+183
-1.1504774e+183
-1.1576812e+183
-1.1594095e+183
-1.1610211e+183
-1.1594663e+183
-1.1611264e+183
-1.1612683e+183
-1.1630193e+183
-1.1555902e+183
-1.1594047e+183
-1.1607592e+183
-1.1625152e+183
-1.1550178e+183
-1.1588583e+183
-1.1513796e+183
-1.1519752e+183
-1.1599266e+183
-1.1616857e+183
-1.1541837e+183
-1.1580067e+183
-1.1603233e+183
-1.1620797e+183
-1.1545648e+183
-1.1584237e+183
-1.1505522e+183
-1.1509048e+183
-1.1815508e+183
-1.1811058e+183
-1.1755435e+183
-1.1760689e+183
-1.1788332e+183
-1.178317e+183
-1.1822319e+183
-1.1819275e+183
-1.1792006e+183
-1.1764389e+183
-1.1766479e+183
-1.1794275e+183
-1.168358e+183
-1.1690096e+183
-1.1721018e+183
-1.173951e+183
-1.1707523e+183
-1.1713898e+183
-1.1726866e+183
-1.1744867e+183
-1.171905e+183
-1.1731332e+183
-1.1721921e+183
-1.1733818e+183
-1.1750428e+183
-1.1748493e+183
-1.169562e+183
-1.169883e+183
-1.1659254e+183
-1.1664665e+183
-1.1670361e+183
-1.1676903e+183
-1.1793329e+183
-1.1787839e+183
-1.1759694e+183
-1.1732164e+183
-1.1765634e+183
-1.1738056e+183
-1.1805851e+183
-1.1799031e+183
-1.1777599e+183
-1.1771405e+183
-1.1743855e+183
-1.1749954e+183
-1.1688701e+183
-1.1702549e+183
-1.1683089e+183
-1.1696813e+183
-1.1715781e+183
-1.1721761e+183
-1.169449e+183
-1.1708421e+183
-1.1727677e+183
-1.1714785e+183
-1.1733746e+183
-1.1700975e+183
-1.1726755e+183
-1.1782597e+183
-1.1776627e+183
-1.1749276e+183
-1.1721787e+183
-1.1754441e+183
-1.1772224e+183
-1.176813e+183
-1.1740683e+183
-1.1713476e+183
-1.1717798e+183
-1.1745224e+183
-1.1645379e+183
-1.1641259e+183
-1.1669246e+183
-1.1682821e+183
-1.1664992e+183
-1.1678537e+183
-1.1697314e+183
-1.1701538e+183
-1.1678343e+183
-1.1691727e+183
-1.1673433e+183
-1.1686879e+183
-1.1705469e+183
-1.1710277e+183
-1.1649684e+183
-1.1654654e+183
-1.1632879e+183
-1.1634556e+183
-1.1699328e+183
-1.1751878e+183
-1.1754961e+183
-1.1728562e+183
-1.1725651e+183
-1.1702109e+183
-1.1758256e+183
-1.1763635e+183
-1.1736065e+183
-1.1731348e+183
-1.1704587e+183
-1.1709035e+183
-1.1671271e+183
-1.1688989e+183
-1.1658751e+183
-1.1661642e+183
-1.167468e+183
-1.1692961e+183
-1.1654966e+183
-1.1666778e+183
-1.1657077e+183
-1.1669187e+183
-1.1686744e+183
-1.1684055e+183
-1.1635821e+183
-1.1638279e+183
-1.169092e+183
-1.1709831e+183
-1.1628389e+183
-1.1672542e+183
-1.1690051e+183
-1.1708625e+183
-1.1628593e+183
-1.1672044e+183
-1.1692617e+183
-1.1712125e+183
-1.1628209e+183
-1.1673344e+183
-1.1691233e+183
-1.1710569e+183
-1.1627024e+183
-1.1671945e+183
-1.1629834e+183
-1.1675077e+183
-1.1633055e+183
-1.1678508e+183
-1.1697864e+183
-1.1717478e+183
-1.1694638e+183
-1.1714357e+183
-1.1637367e+183
-1.168237e+183
-1.1642453e+183
-1.1686936e+183
-1.170558e+183
-1.1724894e+183
-1.1701544e+183
-1.1721e+183
-1.1717391e+183
-1.1736654e+183
-1.1653592e+183
-1.169847e+183
-1.1722189e+183
-1.1741181e+183
-1.1658878e+183
-1.1703533e+183
-1.1709104e+183
-1.1728292e+183
-1.164553e+183
-1.1690202e+183
-1.1713334e+183
-1.1732446e+183
-1.1649641e+183
-1.1694598e+183
-1.1726928e+183
-1.1745782e+183
-1.1663701e+183
-1.1708183e+183
-1.1731949e+183
-1.1750414e+183
-1.1670195e+183
-1.1714231e+183
-1.1735673e+183
-1.1753917e+183
-1.1674932e+183
-1.1718348e+183
-1.1736984e+183
-1.1755035e+183
-1.1677089e+183
-1.1719979e+183
-1.1676872e+183
-1.1695664e+183
-1.1613998e+183
-1.1658017e+183
-1.1681362e+183
-1.1699825e+183
-1.1619306e+183
-1.1663122e+183
-1.1685545e+183
-1.1703797e+183
-1.1624389e+183
-1.1667581e+183
-1.1688603e+183
-1.1706905e+183
-1.1627766e+183
-1.1670916e+183
-1.1665944e+183
-1.1684407e+183
-1.1604915e+183
-1.1647726e+183
-1.1668149e+183
-1.168667e+183
-1.1606537e+183
-1.1649884e+183
-1.1670217e+183
-1.1688956e+183
-1.1607756e+183
-1.1651458e+183
-1.167333e+183
-1.1692144e+183
-1.1610659e+183
-1.1654674e+183
-1.1658574e+183
-1.1676558e+183
-1.1598268e+183
-1.164074e+183
-1.1659295e+183
-1.1676993e+183
-1.159998e+183
-1.1642251e+183
-1.1606978e+183
-1.1648347e+183
-1.1602092e+183
-1.1643964e+183
-1.1660856e+183
-1.1678403e+183
-1.1663838e+183
-1.1680639e+183
-1.1659205e+183
-1.1677397e+183
-1.1598819e+183
-1.1641145e+183
-1.1660609e+183
-1.1678794e+183
-1.1599888e+183
-1.1642475e+183
-1.1662128e+183
-1.1680406e+183
-1.160146e+183
-1.1644056e+183
-1.1664119e+183
-1.168248e+183
-1.160342e+183
-1.1646138e+183
-1.1772248e+183
-1.1798686e+183
-1.1828039e+183
-1.1798994e+183
-1.1828223e+183
-1.1772517e+183
-1.1774167e+183
-1.1831823e+183
-1.182985e+183
-1.1800611e+183
-1.180255e+183
-1.1776049e+183
-1.1724626e+183
-1.174238e+183
-1.1726116e+183
-1.1743303e+183
-1.175577e+183
-1.1755921e+183
-1.1703292e+183
-1.1701403e+183
-1.1700261e+183
-1.1700231e+183
-1.1724102e+183
-1.1742796e+183
-1.1724739e+183
-1.1743934e+183
-1.1758642e+183
-1.175704e+183
-1.1777471e+183
-1.1833292e+183
-1.1834168e+183
-1.1804992e+183
-1.1803963e+183
-1.1778596e+183
-1.1782472e+183
-1.1780316e+183
-1.1806928e+183
-1.1836461e+183
-1.1809335e+183
-1.1839364e+183
-1.1746902e+183
-1.1761322e+183
-1.1727876e+183
-1.1726226e+183
-1.1745258e+183
-1.1760004e+183
-1.1701338e+183
-1.1702876e+183
-1.173142e+183
-1.1750317e+183
-1.1729375e+183
-1.1748351e+183
-1.1763001e+183
-1.1765022e+183
-1.1704489e+183
-1.1706591e+183
-1.1855039e+183
-1.185075e+183
-1.1820858e+183
-1.1793559e+183
-1.1797107e+183
-1.1824631e+183
-1.1846548e+183
-1.1842246e+183
-1.1812236e+183
-1.1785312e+183
-1.1789425e+183
-1.1816643e+183
-1.1752964e+183
-1.1767707e+183
-1.1736763e+183
-1.1756423e+183
-1.1733856e+183
-1.1771592e+183
-1.17087e+183
-1.1711224e+183
-1.1713729e+183
-1.1716975e+183
-1.1739678e+183
-1.1760075e+183
-1.1742949e+183
-1.1763472e+183
-1.1779015e+183
-1.1775586e+183
-1.1862198e+183
-1.1857983e+183
-1.1827385e+183
-1.1799825e+183
-1.1803806e+183
-1.1831581e+183
-1.1871342e+183
-1.1866651e+183
-1.1836108e+183
-1.1808262e+183
-1.1811926e+183
-1.1840177e+183
-1.1766469e+183
-1.1781771e+183
-1.1750238e+183
-1.1770296e+183
-1.1746319e+183
-1.1785736e+183
-1.1720476e+183
-1.1724497e+183
-1.1728338e+183
-1.1731431e+183
-1.1754145e+183
-1.1774626e+183
-1.1757218e+183
-1.1777809e+183
-1.1793353e+183
-1.1789981e+183
-1.1819455e+183
-1.188136e+183
-1.1878985e+183
-1.1847919e+183
-1.1850079e+183
-1.1821583e+183
-1.1814618e+183
-1.1843008e+183
-1.1874427e+183
-1.1845546e+183
-1.1876613e+183
-1.1817152e+183
-1.1736085e+183
-1.1737789e+183
-1.1733358e+183
-1.1734963e+183
-1.1761251e+183
-1.1782411e+183
-1.175923e+183
-1.1780072e+183
-1.1798482e+183
-1.1796048e+183
-1.1762864e+183
-1.1784349e+183
-1.1764666e+183
-1.1786248e+183
-1.1802598e+183
-1.1800645e+183
-1.1823393e+183
-1.1826248e+183
-1.1854856e+183
-1.1886115e+183
-1.1852042e+183
-1.1883552e+183
-1.1889114e+183
-1.1892716e+183
-1.1861281e+183
-1.185812e+183
-1.18297e+183
-1.1832807e+183
-1.177005e+183
-1.1791203e+183
-1.1766946e+183
-1.1788153e+183
-1.1807393e+183
-1.1804495e+183
-1.1740095e+183
-1.1743191e+183
-1.1746549e+183
-1.1750195e+183
-1.1773345e+183
-1.1794796e+183
-1.1776665e+183
-1.1797899e+183
-1.1813979e+183
-1.1810853e+183
-1.1835511e+183
-1.1839705e+183
-1.1868243e+183
-1.1899739e+183
-1.1864102e+183
-1.1895894e+183
-1.1784042e+183
-1.180493e+183
-1.1779763e+183
-1.1800623e+183
-1.182106e+183
-1.1816824e+183
-1.1753537e+183
-1.1757748e+183
-1.1762063e+183
-1.1766441e+183
-1.1788611e+183
-1.1809919e+183
-1.1792916e+183
-1.1814096e+183
-1.1829895e+183
-1.1848659e+183
-1.182591e+183
-1.1844539e+183
-1.190843e+183
-1.1904153e+183
-1.1877037e+183
-1.1872952e+183
-1.1857635e+183
-1.1918515e+183
-1.1916715e+183
-1.1885769e+183
-1.1887055e+183
-1.1858654e+183
-1.1851217e+183
-1.1913389e+183
-1.1910927e+183
-1.1879414e+183
-1.1882273e+183
-1.1854274e+183
-1.1821111e+183
-1.1836151e+183
-1.181759e+183
-1.1832828e+183
-1.1797136e+183
-1.1801058e+183
-1.1770922e+183
-1.1775247e+183
-1.1778557e+183
-1.1779449e+183
-1.1804262e+183
-1.1824376e+183
-1.1804787e+183
-1.1824705e+183
-1.1839625e+183
-1.1839032e+183
-1.1859877e+183
-1.1859575e+183
-1.1887749e+183
-1.1919881e+183
-1.1887947e+183
-1.192017e+183
-1.1919787e+183
-1.191944e+183
-1.1887567e+183
-1.1888154e+183
-1.1860052e+183
-1.1859277e+183
-1.1803411e+183
-1.1826522e+183
-1.1804714e+183
-1.1826555e+183
-1.1779459e+183
-1.1755988e+183
-1.1752746e+183
-1.1776928e+183
-1.1746516e+183
-1.1749434e+183
-1.1774166e+183
-1.1771655e+183
-1.180165e+183
-1.182597e+183
-1.1799526e+183
-1.1824385e+183
-1.1822712e+183
-1.1797556e+183
-1.1797403e+183
-1.1821702e+183
-1.1769705e+183
-1.1744376e+183
-1.1743505e+183
-1.1769038e+183
-1.1848695e+183
-1.1853301e+183
-1.1857028e+183
-1.1859918e+183
-1.18247e+183
-1.1830262e+183
-1.1836244e+183
-1.1842924e+183
-1.1920526e+183
-1.1905656e+183
-1.1926595e+183
-1.1911704e+183
-1.1886747e+183
-1.188009e+183
-1.1900671e+183
-1.19073e+183
-1.1868023e+183
-1.1873872e+183
-1.1888449e+183
-1.1894416e+183
-1.1933276e+183
-1.191804e+183
-1.1924784e+183
-1.1940364e+183
-1.1892796e+183
-1.1897742e+183
-1.1918547e+183
-1.1913416e+183
-1.1904438e+183
-1.1901594e+183
-1.1922558e+183
-1.1925452e+183
-1.1943705e+183
-1.1940684e+183
-1.1957084e+183
-1.1960275e+183
-1.1931071e+183
-1.1946945e+183
-1.1952645e+183
-1.1936466e+183
-1.1804351e+183
-1.180887e+183
-1.1813495e+183
-1.1819315e+183
-1.1786784e+183
-1.179024e+183
-1.179403e+183
-1.1799373e+183
-1.1836119e+183
-1.1855842e+183
-1.1861268e+183
-1.1841526e+183
-1.1845755e+183
-1.1826976e+183
-1.1831488e+183
-1.185085e+183
-1.1881039e+183
-1.1874876e+183
-1.186122e+183
-1.1866957e+183
-1.1872233e+183
-1.1886536e+183
-1.1891995e+183
-1.1877607e+183
-1.1866673e+183
-1.1846812e+183
-1.1852044e+183
-1.1872176e+183
-1.1862654e+183
-1.1857062e+183
-1.1877419e+183
-1.1883006e+183
-1.1894539e+183
-1.1909697e+183
-1.1915353e+183
-1.1900203e+183
-1.1897646e+183
-1.1883102e+183
-1.1889039e+183
-1.1903974e+183
-1.2025267e+183
-1.2037904e+183
-1.2049581e+183
-1.2057416e+183
-1.2032424e+183
-1.2045411e+183
-1.2075666e+183
-1.2062242e+183
-1.2084211e+183
-1.2070325e+183
-1.205472e+183
-1.204795e+183
-1.2060542e+183
-1.2067633e+183
-1.2013406e+183
-1.2025097e+183
-1.2036053e+183
-1.2042616e+183
-1.2019179e+183
-1.2031332e+183
-1.1999941e+183
-1.2011356e+183
-1.2021939e+183
-1.2029258e+183
-1.2007084e+183
-1.2018527e+183
-1.203342e+183
-1.2045601e+183
-1.2053256e+183
-1.2040776e+183
-1.2066479e+183
-1.2058615e+183
-1.2074018e+183
-1.2088129e+183
-1.2096028e+183
-1.2081512e+183
-1.2104704e+183
-1.2118397e+183
-1.2126963e+183
-1.2112976e+183
-1.2135524e+183
-1.2121611e+183
-1.2130521e+183
-1.2144193e+183
-1.2104567e+183
-1.2089844e+183
-1.2113557e+183
-1.2098692e+183
-1.1889135e+183
-1.1898217e+183
-1.1905255e+183
-1.191185e+183
-1.1904855e+183
-1.189566e+183
-1.191202e+183
-1.1920072e+183
-1.1926723e+183
-1.191857e+183
-1.1924951e+183
-1.1931284e+183
-1.1939452e+183
-1.1932896e+183
-1.191828e+183
-1.1911377e+183
-1.190157e+183
-1.190679e+183
-1.1916621e+183
-1.1924163e+183
-1.1943239e+183
-1.1970172e+183
-1.1956344e+183
-1.19771e+183
-1.1963212e+183
-1.1949964e+183
-1.1991836e+183
-1.1984845e+183
-1.1994727e+183
-1.2000863e+183
-1.1987195e+183
-1.1981466e+183
-1.1968846e+183
-1.1974233e+183
-1.1956776e+183
-1.1983468e+183
-1.1989151e+183
-1.1975725e+183
-1.1969634e+183
-1.1963302e+183
-1.2009413e+183
-1.2015976e+183
-1.2003652e+183
-1.1998123e+183
-1.1930549e+183
-1.1922766e+183
-1.1912698e+183
-1.1919804e+183
-1.1930369e+183
-1.193781e+183
-1.1953237e+183
-1.1946407e+183
-1.1937833e+183
-1.1944871e+183
-1.1950598e+183
-1.1955625e+183
-1.1963755e+183
-1.1958601e+183
-1.1943731e+183
-1.1936509e+183
-1.1925793e+183
-1.1930965e+183
-1.19411e+183
-1.1948493e+183
-1.1964021e+183
-1.1975344e+183
-1.1982969e+183
-1.1988801e+183
-1.1980869e+183
-1.1969864e+183
-1.2000352e+183
-1.1990742e+183
-1.1996536e+183
-1.200603e+183
-1.2010296e+183
-1.2001518e+183
-1.2005542e+183
-1.2014139e+183
-1.1994001e+183
-1.1986352e+183
-1.1974816e+183
-1.1978151e+183
-1.1990135e+183
-1.1997962e+183
-1.1969145e+183
-1.1960594e+183
-1.1967336e+183
-1.197625e+183
-1.1953171e+183
-1.1945464e+183
-1.1935492e+183
-1.1941529e+183
-1.1951506e+183
-1.1959602e+183
-1.1948959e+183
-1.1959358e+183
-1.1967456e+183
-1.1975688e+183
-1.1968118e+183
-1.1956903e+183
-1.1984697e+183
-1.1975313e+183
-1.1983446e+183
-1.1993053e+183
-1.2035936e+183
-1.2026798e+183
-1.2020055e+183
-1.201118e+183
-1.2005071e+183
-1.1996383e+183
-1.2017389e+183
-1.2008421e+183
-1.2002129e+183
-1.1993815e+183
-1.1980008e+183
-1.1987714e+183
-1.2024188e+183
-1.2041149e+183
-1.2033648e+183
-1.2050927e+183
-1.2043463e+183
-1.2060879e+183
-1.205282e+183
-1.2070316e+183
-1.2049144e+183
-1.2043293e+183
-1.2027326e+183
-1.2012259e+183
-1.2017958e+183
-1.2033e+183
-1.2056044e+183
-1.2052957e+183
-1.2025422e+183
-1.2021744e+183
-1.203671e+183
-1.2040038e+183
-1.2070492e+183
-1.2088427e+183
-1.2073504e+183
-1.2091738e+183
-1.2060456e+183
-1.2077981e+183
-1.206646e+183
-1.2084138e+183
-1.2079846e+183
-1.209377e+183
-1.2103405e+183
-1.2089587e+183
-1.2073909e+183
-1.2086236e+183
-1.2095368e+183
-1.2083089e+183
-1.2054321e+183
-1.207638e+183
-1.2066567e+183
-1.2064068e+183
-1.2113459e+183
-1.2099545e+183
-1.2108617e+183
-1.2122746e+183
-1.2142807e+183
-1.2127876e+183
-1.2137427e+183
-1.2152442e+183
-1.2123168e+183
-1.2108342e+183
-1.2117784e+183
-1.2132708e+183
-1.2149952e+183
-1.2140104e+183
-1.2153945e+183
-1.2164097e+183
-1.2159981e+183
-1.2169659e+183
-1.2183854e+183
-1.2174203e+183
-1.2163341e+183
-1.2158735e+183
-1.2173777e+183
-1.2178919e+183
-1.2152938e+183
-1.2145873e+183
-1.2160948e+183
-1.216786e+183
-1.2196846e+183
-1.2206056e+183
-1.2191443e+183
-1.2211676e+183
-1.2178287e+183
-1.2192532e+183
-1.2199736e+183
-1.218533e+183
-1.2103296e+183
-1.2090899e+183
-1.2097187e+183
-1.2109838e+183
-1.21019e+183
-1.2114877e+183
-1.2118626e+183
-1.2105445e+183
-1.2143667e+183
-1.2128919e+183
-1.213277e+183
-1.2147828e+183
-1.2116628e+183
-1.2130982e+183
-1.2138064e+183
-1.2123565e+183
-1.1891452e+183
-1.1919669e+183
-1.1895807e+183
-1.1924172e+183
-1.1900399e+183
-1.1928804e+183
-1.1905249e+183
-1.1933512e+183
-1.1874931e+183
-1.1902531e+183
-1.1879351e+183
-1.1907029e+183
-1.1883738e+183
-1.1911461e+183
-1.1888145e+183
-1.1915988e+183
-1.1957756e+183
-1.1937836e+183
-1.1942376e+183
-1.1962472e+183
-1.1980176e+183
-1.1974973e+183
-1.199697e+183
-1.1991425e+183
-1.1970349e+183
-1.1965913e+183
-1.1981894e+183
-1.1986201e+183
-1.1928813e+183
-1.1948624e+183
-1.1953209e+183
-1.1933322e+183
-1.19465e+183
-1.1966838e+183
-1.1971271e+183
-1.1950977e+183
-1.1993184e+183
-1.1997737e+183
-1.2013901e+183
-1.2009312e+183
-1.1988872e+183
-1.1984776e+183
-1.2001731e+183
-1.2005647e+183
-1.1975735e+183
-1.1955551e+183
-1.1959962e+183
-1.1980115e+183
-1.186151e+183
-1.188824e+183
-1.1863486e+183
-1.189007e+183
-1.1859783e+183
-1.1886512e+183
-1.1859891e+183
-1.1886842e+183
-1.1915168e+183
-1.1913277e+183
-1.1932754e+183
-1.1934351e+183
-1.1911906e+183
-1.1911284e+183
-1.1930553e+183
-1.1931452e+183
-1.194895e+183
-1.1947804e+183
-1.1964109e+183
-1.1965415e+183
-1.1951465e+183
-1.1950162e+183
-1.1966584e+183
-1.1967691e+183
-1.1940751e+183
-1.1921603e+183
-1.1895925e+183
-1.1925003e+183
-1.1899197e+183
-1.1944436e+183
-1.191697e+183
-1.1891754e+183
-1.1935948e+183
-1.1937924e+183
-1.1918908e+183
-1.1893261e+183
-1.1954202e+183
-1.195272e+183
-1.1969996e+183
-1.1968719e+183
-1.1961427e+183
-1.1957064e+183
-1.1972882e+183
-1.1977492e+183
-1.186509e+183
-1.1866215e+183
-1.186872e+183
-1.1871824e+183
-1.200897e+183
-1.202407e+183
-1.2030068e+183
-1.2014831e+183
-1.1998966e+183
-1.2013593e+183
-1.2018015e+183
-1.2003227e+183
-1.2098147e+183
-1.2103286e+183
-1.208653e+183
-1.2092161e+183
-1.2105468e+183
-1.2127065e+183
-1.2111093e+183
-1.2132444e+183
-1.2116799e+183
-1.2137544e+183
-1.212139e+183
-1.2141408e+183
-1.2123881e+183
-1.2143342e+183
-1.21063e+183
-1.210847e+183
-1.2125783e+183
-1.2145327e+183
-1.2112246e+183
-1.2110371e+183
-1.2127506e+183
-1.2147119e+183
-1.212932e+183
-1.2149177e+183
-1.2019716e+183
-1.2034864e+183
-1.2023387e+183
-1.20383e+183
-1.2031028e+183
-1.2045218e+183
-1.2026532e+183
-1.2041195e+183
-1.1995459e+183
-1.1981278e+183
-1.198276e+183
-1.1997182e+183
-1.1998522e+183
-1.1983905e+183
-1.1984876e+183
-1.1999759e+183
-1.1985895e+183
-1.2000796e+183
-1.2002311e+183
-1.1987217e+183
-1.199014e+183
-1.2005343e+183
-1.2009599e+183
-1.1994695e+183
-1.2089605e+183
-1.2109761e+183
-1.2071681e+183
-1.2074829e+183
-1.209304e+183
-1.2113734e+183
-1.2078096e+183
-1.2081706e+183
-1.2100497e+183
-1.2122109e+183
-1.2096623e+183
-1.2117799e+183
-1.2062101e+183
-1.2059132e+183
-1.2076868e+183
-1.2097067e+183
-1.2079801e+183
-1.2099971e+183
-1.208283e+183
-1.210302e+183
-1.2065001e+183
-1.2068427e+183
-1.2086275e+183
-1.2106571e+183
-1.193034e+183
-1.1959472e+183
-1.193421e+183
-1.1963342e+183
-1.1938474e+183
-1.1967368e+183
-1.1942626e+183
-1.1971385e+183
-1.1998567e+183
-1.1994858e+183
-1.2015826e+183
-1.2019355e+183
-1.2038098e+183
-1.2034644e+183
-1.2056041e+183
-1.205251e+183
-1.2030874e+183
-1.2026973e+183
-1.2044414e+183
-1.2048451e+183
-1.1990927e+183
-1.1987037e+183
-1.2008203e+183
-1.2012052e+183
-1.2009444e+183
-1.1982277e+183
-1.2007307e+183
-1.1980099e+183
-1.2028004e+183
-1.2030232e+183
-1.200153e+183
-1.1974269e+183
-1.2004344e+183
-1.1976934e+183
-1.2025134e+183
-1.2022248e+183
-1.204395e+183
-1.2041021e+183
-1.2062101e+183
-1.2059101e+183
-1.2046821e+183
-1.2049175e+183
-1.2067453e+183
-1.2064986e+183
-1.1945269e+183
-1.1947761e+183
-1.195098e+183
-1.1952937e+183
-1.1917951e+183
-1.194678e+183
-1.1920524e+183
-1.1949507e+183
-1.1926893e+183
-1.1956031e+183
-1.1923333e+183
-1.1952447e+183
-1.1908498e+183
-1.1936834e+183
-1.1910705e+183
-1.1939306e+183
-1.1913109e+183
-1.1941712e+183
-1.1915521e+183
-1.1944266e+183
-1.1989291e+183
-1.1968811e+183
-1.197148e+183
-1.1992155e+183
-1.2007075e+183
-1.2010479e+183
-1.2027832e+183
-1.2024003e+183
-1.2001379e+183
-1.2004209e+183
-1.2020391e+183
-1.201757e+183
-1.1963362e+183
-1.1983637e+183
-1.1986561e+183
-1.1966164e+183
-1.1974225e+183
-1.1995066e+183
-1.1997952e+183
-1.1977069e+183
-1.2019674e+183
-1.2023267e+183
-1.2040647e+183
-1.2037089e+183
-1.2016254e+183
-1.201355e+183
-1.2033917e+183
-1.2031128e+183
-1.1983472e+183
-1.1980043e+183
-1.2001054e+183
-1.2004559e+183
-1.2199423e+183
-1.2203307e+183
-1.2190789e+183
-1.2195441e+183
-1.2218661e+183
-1.2215037e+183
-1.2206995e+183
-1.2211394e+183
-1.2185623e+183
-1.2181241e+183
-1.2171437e+183
-1.2176476e+183
-1.2160566e+183
-1.2165898e+183
-1.2152359e+183
-1.2156072e+183
-1.2119449e+183
-1.211564e+183
-1.2128894e+183
-1.2123685e+183
-1.2140793e+183
-1.2146125e+183
-1.2132607e+183
-1.2136386e+183
-1.2037641e+183
-1.2052324e+183
-1.2034705e+183
-1.2048915e+183
-1.2046201e+183
-1.2061834e+183
-1.2041903e+183
-1.205708e+183
-1.2049792e+183
-1.2065564e+183
-1.2052632e+183
-1.2068362e+183
-1.2058972e+183
-1.2074508e+183
-1.2055549e+183
-1.2071097e+183
-1.213418e+183
-1.2138577e+183
-1.2151722e+183
-1.2156523e+183
-1.2143109e+183
-1.2161207e+183
-1.2165855e+183
-1.214774e+183
-1.2188544e+183
-1.2174779e+183
-1.2170985e+183
-1.2192495e+183
-1.2177425e+183
-1.2180132e+183
-1.2195475e+183
-1.2198532e+183
-1.2153049e+183
-1.2158203e+183
-1.2171116e+183
-1.217605e+183
-1.2162605e+183
-1.2180251e+183
-1.2184738e+183
-1.2167312e+183
-1.2075138e+183
-1.2091665e+183
-1.2071433e+183
-1.2087545e+183
-1.2067105e+183
-1.2082685e+183
-1.2062838e+183
-1.2078361e+183
-1.2078458e+183
-1.2095062e+183
-1.2098057e+183
-1.2081547e+183
-1.2086926e+183
-1.210383e+183
-1.208441e+183
-1.2101142e+183
-1.1955117e+183
-1.1991075e+183
-1.1955325e+183
-1.1991104e+183
-1.1955756e+183
-1.1991076e+183
-1.1955553e+183
-1.1991192e+183
-1.201486e+183
-1.2014651e+183
-1.2035198e+183
-1.2035446e+183
-1.2013907e+183
-1.2033986e+183
-1.2034759e+183
-1.2014398e+183
-1.2052925e+183
-1.2052137e+183
-1.2071156e+183
-1.2070128e+183
-1.2054084e+183
-1.2053815e+183
-1.207216e+183
-1.2072482e+183
-1.2015096e+183
-1.2035704e+183
-1.2054169e+183
-1.2072693e+183
-1.162315e+183
-1.1640474e+183
-1.1564892e+183
-1.1606089e+183
-1.1628617e+183
-1.1645865e+183
-1.1569952e+183
-1.1611691e+183
-1.1641079e+183
-1.1658161e+183
-1.1582475e+183
-1.1624244e+183
-1.1634293e+183
-1.1651557e+183
-1.1575198e+183
-1.161712e+183
-1.1648236e+183
-1.1665064e+183
-1.1590225e+183
-1.163155e+183
-1.1655532e+183
-1.16719e+183
-1.1598623e+183
-1.1639621e+183
-1.1661481e+183
-1.1677763e+183
-1.1606091e+183
-1.164622e+183
-1.1664623e+183
-1.1680968e+183
-1.1609892e+183
-1.1649689e+183
-1.1600774e+183
-1.1617763e+183
-1.1543627e+183
-1.158396e+183
-1.1602568e+183
-1.1619809e+183
-1.1544739e+183
-1.1585576e+183
-1.1545694e+183
-1.1584187e+183
-1.1544839e+183
-1.1584415e+183
-1.1599779e+183
-1.1615925e+183
-1.1600475e+183
-1.1617091e+183
-1.1618565e+183
-1.1635899e+183
-1.1560728e+183
-1.1601811e+183
-1.1613539e+183
-1.1630939e+183
-1.1555088e+183
-1.1596419e+183
-1.1605153e+183
-1.1622576e+183
-1.1546696e+183
-1.1587822e+183
-1.160922e+183
-1.1626633e+183
-1.155058e+183
-1.1592098e+183
-1.1821063e+183
-1.1816047e+183
-1.1760818e+183
-1.1766201e+183
-1.1792437e+183
-1.1787128e+183
-1.1827007e+183
-1.1824428e+183
-1.1796097e+183
-1.1769974e+183
-1.1771916e+183
-1.1798188e+183
-1.1687962e+183
-1.1694629e+183
-1.1730555e+183
-1.1744274e+183
-1.1712142e+183
-1.1718625e+183
-1.1736467e+183
-1.1749726e+183
-1.1723899e+183
-1.1740788e+183
-1.1726664e+183
-1.1743041e+183
-1.1755215e+183
-1.1753315e+183
-1.1700311e+183
-1.1703449e+183
-1.1663469e+183
-1.1668999e+183
-1.1674737e+183
-1.1681207e+183
-1.1797798e+183
-1.1792003e+183
-1.1763406e+183
-1.1737321e+183
-1.1769444e+183
-1.174333e+183
-1.1810051e+183
-1.1803676e+183
-1.1781351e+183
-1.1775295e+183
-1.1749197e+183
-1.1755158e+183
-1.169322e+183
-1.1712099e+183
-1.1687491e+183
-1.1706172e+183
-1.1720495e+183
-1.1726562e+183
-1.169907e+183
-1.1718049e+183
-1.173248e+183
-1.1724261e+183
-1.1738479e+183
-1.1705467e+183
-1.173184e+183
-1.1786835e+183
-1.1781275e+183
-1.1753037e+183
-1.1726985e+183
-1.1758074e+183
-1.177718e+183
-1.1772412e+183
-1.1744412e+183
-1.1718653e+183
-1.1723106e+183
-1.1749095e+183
-1.1649704e+183
-1.1645492e+183
-1.1673743e+183
-1.169215e+183
-1.1669412e+183
-1.1687778e+183
-1.1701976e+183
-1.1706263e+183
-1.1682689e+183
-1.1700801e+183
-1.1677881e+183
-1.1696051e+183
-1.1710162e+183
-1.1714967e+183
-1.1653973e+183
-1.1658848e+183
-1.1637195e+183
-1.1638927e+183
-1.1704468e+183
-1.175648e+183
-1.1759406e+183
-1.1732328e+183
-1.1729371e+183
-1.1707336e+183
-1.1762493e+183
-1.1767516e+183
-1.1739611e+183
-1.1734999e+183
-1.1709729e+183
-1.1714031e+183
-1.1680076e+183
-1.1693505e+183
-1.1663081e+183
-1.1665939e+183
-1.1683583e+183
-1.169755e+183
-1.1659352e+183
-1.1675749e+183
-1.1661532e+183
-1.1678283e+183
-1.1691388e+183
-1.1688649e+183
-1.1640048e+183
-1.1642451e+183
-1.1712996e+183
-1.1711745e+183
-1.171529e+183
-1.1713763e+183
-1.1720678e+183
-1.1717536e+183
-1.1727968e+183
-1.1724158e+183
-1.1739844e+183
-1.1744339e+183
-1.1731394e+183
-1.1735612e+183
-1.1748952e+183
-1.1753615e+183
-1.1757155e+183
-1.1758174e+183
-1.1698805e+183
-1.1702992e+183
-1.1706927e+183
-1.1710007e+183
-1.1687484e+183
-1.1689818e+183
-1.1692107e+183
-1.1695285e+183
-1.1679582e+183
-1.1680009e+183
-1.1681485e+183
-1.1683847e+183
-1.1680426e+183
-1.1681873e+183
-1.1683463e+183
-1.168554e+183
-1.1774941e+183
-1.1800589e+183
-1.182979e+183
-1.180082e+183
-1.1829807e+183
-1.1775099e+183
-1.1776717e+183
-1.1833314e+183
-1.1831462e+183
-1.1802398e+183
-1.1804316e+183
-1.1778608e+183
-1.1727006e+183
-1.1746905e+183
-1.1728582e+183
-1.174781e+183
-1.1705378e+183
-1.17034e+183
-1.1702163e+183
-1.1702115e+183
-1.1726402e+183
-1.1747284e+183
-1.1727028e+183
-1.1748407e+183
-1.1780001e+183
-1.183488e+183
-1.1835781e+183
-1.1806738e+183
-1.1805705e+183
-1.1781114e+183
-1.178499e+183
-1.1782853e+183
-1.1808698e+183
-1.1838102e+183
-1.1811075e+183
-1.1840876e+183
-1.1751219e+183
-1.1730188e+183
-1.1728509e+183
-1.174968e+183
-1.17032e+183
-1.1704767e+183
-1.1733726e+183
-1.1754749e+183
-1.1731689e+183
-1.1752792e+183
-1.1706369e+183
-1.1708473e+183
-1.1856816e+183
-1.1852565e+183
-1.1822804e+183
-1.1796297e+183
-1.1799807e+183
-1.1826537e+183
-1.1848353e+183
-1.1843764e+183
-1.1813993e+183
-1.1787825e+183
-1.1792072e+183
-1.18185e+183
-1.1757312e+183
-1.1739144e+183
-1.1760986e+183
-1.1736172e+183
-1.1710585e+183
-1.1713155e+183
-1.1715665e+183
-1.1718909e+183
-1.1742082e+183
-1.1764776e+183
-1.1745351e+183
-1.1768146e+183
-1.1864056e+183
-1.1859653e+183
-1.1829233e+183
-1.1802437e+183
-1.1806508e+183
-1.1833489e+183
-1.1873227e+183
-1.1868541e+183
-1.1838088e+183
-1.1811033e+183
-1.1814663e+183
-1.1842131e+183
-1.1770995e+183
-1.1752663e+183
-1.1774963e+183
-1.1748719e+183
-1.1722412e+183
-1.1726452e+183
-1.1730271e+183
-1.1733352e+183
-1.1756557e+183
-1.1779337e+183
-1.1759615e+183
-1.1782495e+183
-1.1822284e+183
-1.1883143e+183
-1.188102e+183
-1.1849935e+183
-1.1852039e+183
-1.1824368e+183
-1.1817363e+183
-1.1844968e+183
-1.1876289e+183
-1.1847542e+183
-1.1878515e+183
-1.1819955e+183
-1.1738051e+183
-1.1739735e+183
-1.1735295e+183
-1.1736918e+183
-1.1763694e+183
-1.1787234e+183
-1.1761639e+183
-1.1784853e+183
-1.1765319e+183
-1.1789203e+183
-1.1767114e+183
-1.1791073e+183
-1.1826167e+183
-1.1829051e+183
-1.1856842e+183
-1.1888137e+183
-1.1854003e+183
-1.1885456e+183
-1.1891007e+183
-1.1894341e+183
-1.1863183e+183
-1.1860121e+183
-1.183253e+183
-1.1835529e+183
-1.1772524e+183
-1.1796048e+183
-1.1769402e+183
-1.1793014e+183
-1.1742051e+183
-1.1745161e+183
-1.1748498e+183
-1.1752097e+183
-1.1775801e+183
-1.179963e+183
-1.1779074e+183
-1.1802657e+183
-1.1838186e+183
-1.1842409e+183
-1.1870146e+183
-1.1901633e+183
-1.1865979e+183
-1.1897591e+183
-1.1786481e+183
-1.1809673e+183
-1.1782174e+183
-1.1805362e+183
-1.175545e+183
-1.1759691e+183
-1.1764009e+183
-1.1768394e+183
-1.1791055e+183
-1.1814741e+183
-1.179536e+183
-1.1818861e+183
-1.185141e+183
-1.1847334e+183
-1.1910287e+183
-1.1906203e+183
-1.1878965e+183
-1.187494e+183
-1.1860402e+183
-1.1920159e+183
-1.1918695e+183
-1.1887707e+183
-1.1888887e+183
-1.1861313e+183
-1.1853848e+183
-1.191515e+183
-1.1912684e+183
-1.1881261e+183
-1.188415e+183
-1.1856939e+183
-1.1825685e+183
-1.1822159e+183
-1.1799552e+183
-1.180351e+183
-1.1772883e+183
-1.1777236e+183
-1.1780565e+183
-1.1781387e+183
-1.1806691e+183
-1.1829026e+183
-1.1807143e+183
-1.1829226e+183
-1.1920635e+183
-1.1920872e+183
-1.1920531e+183
-1.1920144e+183
-1.184779e+183
-1.1873702e+183
-1.1852889e+183
-1.1878859e+183
-1.185626e+183
-1.1882425e+183
-1.1858836e+183
-1.1885052e+183
-1.1823023e+183
-1.1848827e+183
-1.1828845e+183
-1.1854717e+183
-1.1834858e+183
-1.1860776e+183
-1.1841448e+183
-1.1867426e+183
-1.1921982e+183
-1.1907595e+183
-1.192806e+183
-1.1913674e+183
-1.1891933e+183
-1.1885306e+183
-1.190394e+183
-1.1910578e+183
-1.1873113e+183
-1.187907e+183
-1.1891629e+183
-1.1897651e+183
-1.1934848e+183
-1.1920064e+183
-1.192684e+183
-1.1942006e+183
-1.1898172e+183
-1.1903326e+183
-1.1922145e+183
-1.1916871e+183
-1.1909816e+183
-1.1907137e+183
-1.1926148e+183
-1.1928928e+183
-1.194594e+183
-1.1943022e+183
-1.1958985e+183
-1.1962083e+183
-1.1933287e+183
-1.1948732e+183
-1.195451e+183
-1.1938796e+183
-1.1802922e+183
-1.1828067e+183
-1.1807968e+183
-1.1833324e+183
-1.1812271e+183
-1.1837964e+183
-1.1817872e+183
-1.1843616e+183
-1.1785858e+183
-1.1809524e+183
-1.1789104e+183
-1.1813439e+183
-1.1792585e+183
-1.1817398e+183
-1.1797729e+183
-1.1822809e+183
-1.1841078e+183
-1.1858938e+183
-1.1864324e+183
-1.184645e+183
-1.1848856e+183
-1.1831877e+183
-1.1836475e+183
-1.1853989e+183
-1.1882509e+183
-1.1876289e+183
-1.186301e+183
-1.1868864e+183
-1.1874114e+183
-1.1888003e+183
-1.1893345e+183
-1.1879337e+183
-1.1869813e+183
-1.185185e+183
-1.1857287e+183
-1.1875484e+183
-1.186778e+183
-1.1862304e+183
-1.1880723e+183
-1.1886247e+183
-1.1896593e+183
-1.1911311e+183
-1.1916882e+183
-1.1902193e+183
-1.1899051e+183
-1.188489e+183
-1.1891062e+183
-1.1905545e+183
-1.2027306e+183
-1.2034537e+183
-1.2015338e+183
-1.2021122e+183
-1.2001882e+183
-1.2009023e+183
-1.1889994e+183
-1.1900396e+183
-1.1907005e+183
-1.1896535e+183
-1.1913542e+183
-1.1902446e+183
-1.1907649e+183
-1.1918862e+183
-1.19707e+183
-1.1977614e+183
-1.1992531e+183
-1.1985545e+183
-1.1995239e+183
-1.2001364e+183
-1.1983954e+183
-1.1989613e+183
-1.2010106e+183
-1.2016688e+183
-1.2004301e+183
-1.1998793e+183
-1.1925045e+183
-1.1913587e+183
-1.1920747e+183
-1.1932741e+183
-1.1938856e+183
-1.1926755e+183
-1.1931897e+183
-1.1943432e+183
-1.1965079e+183
-1.197797e+183
-1.1983479e+183
-1.1970957e+183
-1.1988939e+183
-1.1975912e+183
-1.1979229e+183
-1.1992831e+183
-1.1947748e+183
-1.1936403e+183
-1.1942429e+183
-1.1953812e+183
-1.1949908e+183
-1.1961765e+183
-1.197061e+183
-1.1957906e+183
-1.2036477e+183
-1.2027316e+183
-1.2017896e+183
-1.2008919e+183
-1.2024923e+183
-1.2043316e+183
-1.20344e+183
-1.2053112e+183
-1.2044232e+183
-1.2063096e+183
-1.205361e+183
-1.2072538e+183
-1.2049725e+183
-1.2043852e+183
-1.2056622e+183
-1.2053541e+183
-1.2071333e+183
-1.2090769e+183
-1.2074339e+183
-1.2094097e+183
-1.2061262e+183
-1.2080239e+183
-1.2067285e+183
-1.2086425e+183
-1.1893726e+183
-1.1927373e+183
-1.1898249e+183
-1.1932096e+183
-1.1902875e+183
-1.1936785e+183
-1.1907751e+183
-1.1941494e+183
-1.1877052e+183
-1.1909919e+183
-1.1881712e+183
-1.1914708e+183
-1.1886103e+183
-1.191919e+183
-1.1890496e+183
-1.1923717e+183
-1.1959831e+183
-1.1941061e+183
-1.1945571e+183
-1.196454e+183
-1.1981235e+183
-1.197599e+183
-1.1997647e+183
-1.199206e+183
-1.1971362e+183
-1.19669e+183
-1.1982503e+183
-1.1986833e+183
-1.1931886e+183
-1.195059e+183
-1.1955254e+183
-1.1936514e+183
-1.1949723e+183
-1.1968916e+183
-1.1973395e+183
-1.1954279e+183
-1.1994266e+183
-1.1998848e+183
-1.2014596e+183
-1.2009997e+183
-1.198992e+183
-1.1985845e+183
-1.2002416e+183
-1.2006301e+183
-1.1977871e+183
-1.1958877e+183
-1.1963256e+183
-1.1982252e+183
-1.1863668e+183
-1.1895564e+183
-1.1865566e+183
-1.1897297e+183
-1.1862107e+183
-1.1894059e+183
-1.1862056e+183
-1.1894249e+183
-1.1918124e+183
-1.1916287e+183
-1.1934683e+183
-1.1936251e+183
-1.1914986e+183
-1.1914434e+183
-1.1932641e+183
-1.1933438e+183
-1.1949996e+183
-1.194892e+183
-1.1964858e+183
-1.1966114e+183
-1.1952435e+183
-1.1951164e+183
-1.1967246e+183
-1.1968318e+183
-1.194272e+183
-1.1924626e+183
-1.190329e+183
-1.1927998e+183
-1.1906502e+183
-1.1946365e+183
-1.1919931e+183
-1.1899e+183
-1.1937858e+183
-1.1939901e+183
-1.1921919e+183
-1.190057e+183
-1.1955182e+183
-1.1953691e+183
-1.1970588e+183
-1.1969334e+183
-1.1962406e+183
-1.1958042e+183
-1.1973472e+183
-1.1978105e+183
-1.1867236e+183
-1.1868385e+183
-1.1870917e+183
-1.1873941e+183
-1.1932694e+183
-1.1967428e+183
-1.1936748e+183
-1.1971547e+183
-1.1941115e+183
-1.197564e+183
-1.1945127e+183
-1.1979484e+183
-1.2001897e+183
-1.1998297e+183
-1.201807e+183
-1.2021525e+183
-1.203925e+183
-1.2035844e+183
-1.2056799e+183
-1.2053293e+183
-1.2032046e+183
-1.2028065e+183
-1.2045104e+183
-1.2049195e+183
-1.1994353e+183
-1.199033e+183
-1.2010314e+183
-1.2014267e+183
-1.2012693e+183
-1.1990161e+183
-1.2010635e+183
-1.1988175e+183
-1.2030164e+183
-1.203235e+183
-1.2004817e+183
-1.1982184e+183
-1.2007654e+183
-1.1984872e+183
-1.2027287e+183
-1.2024405e+183
-1.2045096e+183
-1.2042176e+183
-1.2062852e+183
-1.2059861e+183
-1.2047964e+183
-1.2050284e+183
-1.2068168e+183
-1.2065729e+183
-1.194767e+183
-1.195016e+183
-1.195356e+183
-1.1955277e+183
-1.1920478e+183
-1.1954904e+183
-1.1923149e+183
-1.1957751e+183
-1.1929185e+183
-1.1963915e+183
-1.1925825e+183
-1.1960545e+183
-1.1910978e+183
-1.1944834e+183
-1.191321e+183
-1.194738e+183
-1.1915701e+183
-1.1949882e+183
-1.1917944e+183
-1.1952297e+183
-1.1991462e+183
-1.1972181e+183
-1.1974809e+183
-1.1994302e+183
-1.2008148e+183
-1.2011593e+183
-1.2028551e+183
-1.202468e+183
-1.20025e+183
-1.2005301e+183
-1.2021091e+183
-1.2018279e+183
-1.1966675e+183
-1.1985779e+183
-1.1988715e+183
-1.1969525e+183
-1.1977597e+183
-1.1997258e+183
-1.2000172e+183
-1.1980499e+183
-1.2020771e+183
-1.202431e+183
-1.2041295e+183
-1.2037761e+183
-1.2017364e+183
-1.2014695e+183
-1.2034615e+183
-1.2031867e+183
-1.1986715e+183
-1.1983395e+183
-1.2003204e+183
-1.2006621e+183
-1.1956513e+183
-1.1995166e+183
-1.1956741e+183
-1.1995193e+183
-1.1957177e+183
-1.1995109e+183
-1.195701e+183
-1.1995288e+183
-1.1643587e+183
-1.164904e+183
-1.1661332e+183
-1.1654764e+183
-1.1668258e+183
-1.1675188e+183
-1.1681136e+183
-1.1684315e+183
-1.1620846e+183
-1.162288e+183
-1.1619014e+183
-1.1620215e+183
-1.1638993e+183
-1.1634086e+183
-1.1625685e+183
-1.1629802e+183
-1.1823263e+183
-1.1818058e+183
-1.1763557e+183
-1.1769098e+183
-1.1794581e+183
-1.1789158e+183
-1.1828986e+183
-1.182653e+183
-1.1798169e+183
-1.1772835e+183
-1.1774715e+183
-1.1800173e+183
-1.1690002e+183
-1.1696755e+183
-1.1735138e+183
-1.1714625e+183
-1.1721171e+183
-1.1741118e+183
-1.1726429e+183
-1.1745295e+183
-1.172916e+183
-1.1747451e+183
-1.1702483e+183
-1.1705608e+183
-1.1665442e+183
-1.1671012e+183
-1.1676773e+183
-1.168322e+183
-1.1799572e+183
-1.1793653e+183
-1.1765386e+183
-1.1740038e+183
-1.1771471e+183
-1.1746111e+183
-1.18118e+183
-1.1805495e+183
-1.1783319e+183
-1.177735e+183
-1.1752e+183
-1.1757845e+183
-1.169569e+183
-1.1716752e+183
-1.1689925e+183
-1.1710756e+183
-1.1701561e+183
-1.1722717e+183
-1.1728867e+183
-1.170793e+183
-1.1734504e+183
-1.1788563e+183
-1.1783107e+183
-1.1755011e+183
-1.172969e+183
-1.1759994e+183
-1.1779156e+183
-1.177411e+183
-1.1746396e+183
-1.1721376e+183
-1.1725881e+183
-1.1751127e+183
-1.1651707e+183
-1.1647454e+183
-1.1676188e+183
-1.169668e+183
-1.167183e+183
-1.1692287e+183
-1.1685088e+183
-1.1705274e+183
-1.1680313e+183
-1.1700535e+183
-1.165596e+183
-1.1660798e+183
-1.1639204e+183
-1.164094e+183
-1.1707176e+183
-1.1758284e+183
-1.1761173e+183
-1.1734329e+183
-1.1731348e+183
-1.1710083e+183
-1.1764185e+183
-1.1769099e+183
-1.1741506e+183
-1.1736903e+183
-1.1712347e+183
-1.1716661e+183
-1.168434e+183
-1.1665459e+183
-1.1668311e+183
-1.1687973e+183
-1.1661739e+183
-1.1680138e+183
-1.1663939e+183
-1.1682708e+183
-1.1642007e+183
-1.1644384e+183
-1.1830666e+183
-1.1830627e+183
-1.1834034e+183
-1.1832264e+183
-1.1835624e+183
-1.1836529e+183
-1.1838895e+183
-1.1841619e+183
-1.1857673e+183
-1.1853425e+183
-1.1849203e+183
-1.1844498e+183
-1.1864944e+183
-1.1860455e+183
-1.1874128e+183
-1.1869421e+183
-1.1883987e+183
-1.1881976e+183
-1.1877194e+183
-1.1879414e+183
-1.1889085e+183
-1.1886363e+183
-1.1891886e+183
-1.1895118e+183
-1.1902528e+183
-1.1898425e+183
-1.1911157e+183
-1.190715e+183
-1.1920889e+183
-1.1919579e+183
-1.1915987e+183
-1.1913506e+183
-1.1850256e+183
-1.1881271e+183
-1.185553e+183
-1.1886684e+183
-1.1858845e+183
-1.1890153e+183
-1.1861327e+183
-1.1892649e+183
-1.182513e+183
-1.1855984e+183
-1.1831049e+183
-1.186198e+183
-1.1837095e+183
-1.1868082e+183
-1.1843668e+183
-1.1874757e+183
-1.1922667e+183
-1.190864e+183
-1.1928744e+183
-1.191473e+183
-1.1895025e+183
-1.1888399e+183
-1.1906009e+183
-1.1912651e+183
-1.1876139e+183
-1.1882147e+183
-1.1893645e+183
-1.1899693e+183
-1.1935556e+183
-1.1921147e+183
-1.192794e+183
-1.1942742e+183
-1.1901385e+183
-1.1906658e+183
-1.1924424e+183
-1.1919062e+183
-1.1913041e+183
-1.1910453e+183
-1.1928413e+183
-1.1931122e+183
-1.1947122e+183
-1.194426e+183
-1.1959822e+183
-1.1962875e+183
-1.1934477e+183
-1.1949536e+183
-1.1955356e+183
-1.194005e+183
-1.1805066e+183
-1.1835121e+183
-1.1810353e+183
-1.1840672e+183
-1.1814563e+183
-1.1845302e+183
-1.1820083e+183
-1.1850847e+183
-1.1788033e+183
-1.1816343e+183
-1.1791267e+183
-1.182035e+183
-1.1794687e+183
-1.1824317e+183
-1.1799777e+183
-1.1829726e+183
-1.1844023e+183
-1.186091e+183
-1.1866274e+183
-1.1849376e+183
-1.1850829e+183
-1.1834787e+183
-1.1839434e+183
-1.1855979e+183
-1.1883177e+183
-1.1876942e+183
-1.1863997e+183
-1.1869889e+183
-1.1875127e+183
-1.1888664e+183
-1.1893966e+183
-1.1880295e+183
-1.1871825e+183
-1.1854849e+183
-1.1860407e+183
-1.1877591e+183
-1.1870827e+183
-1.1865424e+183
-1.1882826e+183
-1.1888296e+183
-1.1897701e+183
-1.1912039e+183
-1.1917575e+183
-1.1903262e+183
-1.1899697e+183
-1.1885879e+183
-1.1892159e+183
-1.1906259e+183
-1.1895152e+183
-1.1931355e+183
-1.1899738e+183
-1.1936126e+183
-1.1904355e+183
-1.1940825e+183
-1.190927e+183
-1.1945555e+183
-1.1878401e+183
-1.1913753e+183
-1.188314e+183
-1.1918611e+183
-1.1887536e+183
-1.1923132e+183
-1.1891948e+183
-1.1927681e+183
-1.1865054e+183
-1.1899346e+183
-1.1866877e+183
-1.1901009e+183
-1.1863555e+183
-1.1897888e+183
-1.1863474e+183
-1.189809e+183
-1.1907055e+183
-1.1910272e+183
-1.1902697e+183
-1.1904299e+183
-1.1868556e+183
-1.1869717e+183
-1.187229e+183
-1.1875293e+183
-1.1934187e+183
-1.1971535e+183
-1.1938283e+183
-1.1975717e+183
-1.1942674e+183
-1.1979827e+183
-1.194663e+183
-1.1983608e+183
-1.199412e+183
-1.1992214e+183
-1.1986232e+183
-1.1988917e+183
-1.1949146e+183
-1.1951637e+183
-1.1955058e+183
-1.1956673e+183
-1.1922011e+183
-1.1959056e+183
-1.1924706e+183
-1.1961919e+183
-1.1930613e+183
-1.1967953e+183
-1.1927313e+183
-1.1964638e+183
-1.1912512e+183
-1.1948933e+183
-1.1914725e+183
-1.1951482e+183
-1.191725e+183
-1.1954019e+183
-1.1919422e+183
-1.1956403e+183
-1.1824357e+183
-1.1819054e+183
-1.1829919e+183
-1.1827512e+183
-1.1800492e+183
-1.1794529e+183
-1.1812699e+183
-1.1806431e+183
-1.178946e+183
-1.1784035e+183
-1.1780159e+183
-1.1774999e+183
-1.1759231e+183
-1.1762093e+183
-1.1765061e+183
-1.1769935e+183
-1.1851762e+183
-1.1885137e+183
-1.1857107e+183
-1.1890629e+183
-1.1860331e+183
-1.1894014e+183
-1.1862776e+183
-1.1896448e+183
-1.182652e+183
-1.1859703e+183
-1.1832456e+183
-1.1865706e+183
-1.1838513e+183
-1.1871828e+183
-1.1845083e+183
-1.1878544e+183
-1.1806442e+183
-1.1838763e+183
-1.1811822e+183
-1.1844408e+183
-1.1815992e+183
-1.1849055e+183
-1.1821498e+183
-1.1854564e+183
-1.1789415e+183
-1.1819866e+183
-1.1792636e+183
-1.1823906e+183
-1.1796035e+183
-1.1827898e+183
-1.1801111e+183
-1.1833302e+183
)
;
boundaryField
{
frontAndBack
{
type zeroGradient;
}
inlet
{
type freestreamPressure;
freestreamValue nonuniform 0();
supersonic 0;
value nonuniform 0();
}
outlet
{
type freestreamPressure;
freestreamValue nonuniform 0();
supersonic 0;
value nonuniform 0();
}
solidWall
{
type zeroGradient;
}
procBoundary3to0
{
type processor;
value nonuniform List<scalar>
1277
(
-1.4279244e+183
-1.368929e+183
-1.368929e+183
-1.368929e+183
-1.2807167e+183
-1.2807167e+183
-1.3765139e+183
-1.3506343e+183
-1.3132922e+183
-1.3132922e+183
-1.3204572e+183
-1.3232457e+183
-1.3232457e+183
-1.2081434e+183
-1.2081434e+183
-1.2081434e+183
-1.2081434e+183
-1.1434426e+183
-1.1434426e+183
-1.2631187e+183
-1.342494e+183
-1.3305875e+183
-1.3260967e+183
-1.3278168e+183
-1.3074524e+183
-1.2936487e+183
-1.2264561e+183
-1.1363373e+183
-1.1363373e+183
-1.1363373e+183
-1.1363373e+183
-1.1895819e+183
-1.0714366e+183
-1.2697559e+183
-1.3305875e+183
-1.342494e+183
-1.3099076e+183
-1.3031016e+183
-1.3141218e+183
-1.3133515e+183
-1.2998708e+183
-1.2900814e+183
-1.248013e+183
-1.2262477e+183
-1.0674718e+183
-1.0674718e+183
-1.0674718e+183
-1.0674718e+183
-1.1558055e+183
-1.1193125e+183
-1.208665e+183
-1.1913013e+183
-1.275383e+183
-1.2847548e+183
-1.2810835e+183
-1.2952277e+183
-1.2900719e+183
-1.2832473e+183
-1.3022566e+183
-1.3056936e+183
-1.3067539e+183
-1.3046154e+183
-1.2950118e+183
-1.288505e+183
-1.1558055e+183
-1.1558055e+183
-1.1193125e+183
-1.1193125e+183
-1.1913013e+183
-1.1913013e+183
-1.1913013e+183
-1.208665e+183
-1.2619009e+183
-1.248402e+183
-1.2373644e+183
-1.226971e+183
-1.0836595e+183
-1.0419206e+183
-1.0039786e+183
-1.2179879e+183
-1.279338e+183
-1.2810835e+183
-1.2473602e+183
-1.2564078e+183
-1.27606e+183
-1.2832473e+183
-1.2900719e+183
-1.2928189e+183
-1.2972158e+183
-1.3019376e+183
-1.3028819e+183
-1.3018805e+183
-1.2989568e+183
-1.2906585e+183
-1.2871631e+183
-9.4777339e+182
-9.9154133e+182
-1.0836595e+183
-1.0836595e+183
-1.0836595e+183
-1.0419206e+183
-1.1554828e+183
-1.1554828e+183
-1.1718876e+183
-1.1393333e+183
-1.1393333e+183
-1.1393333e+183
-1.120355e+183
-1.120355e+183
-1.120355e+183
-1.199134e+183
-1.1912486e+183
-1.1912486e+183
-1.1912486e+183
-1.1912486e+183
-1.2068987e+183
-1.2179879e+183
-1.2179879e+183
-1.2179879e+183
-1.226971e+183
-1.226971e+183
-1.2622147e+183
-1.2707959e+183
-1.248446e+183
-1.2551314e+183
-1.2369644e+183
-1.2426754e+183
-1.2815246e+183
-1.2317859e+183
-1.2375103e+183
-1.208491e+183
-1.2159427e+183
-1.2507465e+183
-1.2632164e+183
-1.2632164e+183
-1.2632164e+183
-1.2794473e+183
-1.2928189e+183
-1.2972158e+183
-1.2972158e+183
-1.2972158e+183
-1.2972158e+183
-1.2978193e+183
-1.3002142e+183
-1.3006599e+183
-1.3003529e+183
-1.2995855e+183
-1.2977309e+183
-1.2940111e+183
-9.8981425e+182
-9.4574586e+182
-9.8690745e+182
-1.283792e+183
-9.9154133e+182
-1.0332355e+183
-1.0696505e+183
-1.099177e+183
-1.099177e+183
-1.099177e+183
-1.099177e+183
-1.1677266e+183
-1.1595874e+183
-1.1677266e+183
-1.1744894e+183
-1.1818536e+183
-1.1451918e+183
-1.1451918e+183
-1.1525465e+183
-1.1274386e+183
-1.1274386e+183
-1.1274386e+183
-1.1373734e+183
-1.1373734e+183
-1.1373734e+183
-1.1994222e+183
-1.1994222e+183
-1.2033024e+183
-1.194602e+183
-1.1973865e+183
-1.1978901e+183
-1.190714e+183
-1.190714e+183
-1.2071921e+183
-1.2113013e+183
-1.2078349e+183
-1.2098017e+183
-1.2166873e+183
-1.2118018e+183
-1.2138975e+183
-1.2166873e+183
-1.2166873e+183
-1.2166873e+183
-1.2212679e+183
-1.2212679e+183
-1.2212679e+183
-1.2258193e+183
-1.2306936e+183
-1.2369644e+183
-1.262288e+183
-1.2666993e+183
-1.2711918e+183
-1.2764211e+183
-1.2481328e+183
-1.2514079e+183
-1.2546935e+183
-1.2585125e+183
-1.2366195e+183
-1.2393614e+183
-1.2421153e+183
-1.2451678e+183
-1.1963731e+183
-1.2321693e+183
-1.2003357e+183
-1.1678777e+183
-1.1737088e+183
-1.2370547e+183
-1.2520772e+183
-1.2653328e+183
-1.2653328e+183
-1.2794473e+183
-1.2794473e+183
-1.2866855e+183
-1.2889447e+183
-1.2960773e+183
-1.2978193e+183
-1.2982104e+183
-1.2987582e+183
-1.2991735e+183
-1.2990266e+183
-1.296381e+183
-1.2906474e+183
-1.0387284e+183
-1.0374514e+183
-9.8690745e+182
-9.8690745e+182
-1.2839588e+183
-1.2774966e+183
-1.030019e+183
-1.0678675e+183
-1.1141842e+183
-1.1141842e+183
-1.1141842e+183
-1.0951743e+183
-1.0951743e+183
-1.0951743e+183
-1.1732581e+183
-1.1702586e+183
-1.1630594e+183
-1.1659579e+183
-1.1694889e+183
-1.1702586e+183
-1.1702586e+183
-1.1687783e+183
-1.1763554e+183
-1.1795404e+183
-1.1828572e+183
-1.1863289e+183
-1.1543339e+183
-1.1510318e+183
-1.1543339e+183
-1.1571507e+183
-1.1600318e+183
-1.1349512e+183
-1.140541e+183
-1.1444264e+183
-1.1478003e+183
-1.199789e+183
-1.2015928e+183
-1.203449e+183
-1.20536e+183
-1.1946421e+183
-1.1978901e+183
-1.1973865e+183
-1.1978901e+183
-1.1913174e+183
-1.1913174e+183
-1.2078349e+183
-1.2078349e+183
-1.2098017e+183
-1.2118018e+183
-1.2138975e+183
-1.2159952e+183
-1.2181778e+183
-1.2227158e+183
-1.2256366e+183
-1.2203866e+183
-1.2280143e+183
-1.2256366e+183
-1.2328616e+183
-1.2303406e+183
-1.2359902e+183
-1.2366195e+183
-1.2629193e+183
-1.2673585e+183
-1.2721691e+183
-1.248412e+183
-1.2516449e+183
-1.2551085e+183
-1.258858e+183
-1.2368129e+183
-1.2395176e+183
-1.2423432e+183
-1.2453025e+183
-1.0374514e+183
-1.0387284e+183
-1.158921e+183
-1.1969335e+183
-1.2152735e+183
-1.1615018e+183
-1.126256e+183
-1.1304203e+183
-1.2202866e+183
-1.2386473e+183
-1.2520772e+183
-1.2520772e+183
-1.2520772e+183
-1.2673114e+183
-1.2673114e+183
-1.2651538e+183
-1.2726304e+183
-1.2794072e+183
-1.281398e+183
-1.281398e+183
-1.2816537e+183
-1.2836052e+183
-1.2836052e+183
-1.2905376e+183
-1.2956104e+183
-1.2965432e+183
-1.297393e+183
-1.2982104e+183
-1.2987582e+183
-1.298289e+183
-1.2989805e+183
-1.2987712e+183
-1.2960632e+183
-1.2898707e+183
-1.0316289e+183
-1.0369524e+183
-1.2776232e+183
-1.283371e+183
-1.0653755e+183
-1.0662697e+183
-1.0964825e+183
-1.1153778e+183
-1.1153778e+183
-1.1270968e+183
-1.1185909e+183
-1.1748584e+183
-1.1655274e+183
-1.171392e+183
-1.1748584e+183
-1.1687783e+183
-1.1687783e+183
-1.1777466e+183
-1.1807525e+183
-1.1839246e+183
-1.187135e+183
-1.158207e+183
-1.1556676e+183
-1.158207e+183
-1.1588987e+183
-1.1604852e+183
-1.1629266e+183
-1.1420664e+183
-1.1477901e+183
-1.1509178e+183
-1.1533421e+183
-1.2002235e+183
-1.2020522e+183
-1.2038587e+183
-1.2056958e+183
-1.1948808e+183
-1.1982493e+183
-1.1977589e+183
-1.1982493e+183
-1.1910681e+183
-1.1910681e+183
-1.190563e+183
-1.1926975e+183
-1.2081713e+183
-1.2063641e+183
-1.2081713e+183
-1.2101067e+183
-1.2121066e+183
-1.2141504e+183
-1.2162603e+183
-1.2184055e+183
-1.2228864e+183
-1.2258404e+183
-1.220625e+183
-1.2281818e+183
-1.2258404e+183
-1.2329944e+183
-1.2305484e+183
-1.2362029e+183
-1.2368129e+183
-1.2630002e+183
-1.2674836e+183
-1.2723106e+183
-1.2484336e+183
-1.2516664e+183
-1.2551665e+183
-1.2589034e+183
-1.2368063e+183
-1.2395327e+183
-1.2423522e+183
-1.2453025e+183
-1.0369524e+183
-1.0867863e+183
-1.0841979e+183
-1.1199349e+183
-1.1788961e+183
-1.1587165e+183
-1.2036807e+183
-1.1218205e+183
-1.2102417e+183
-1.2182549e+183
-1.2222328e+183
-1.2305032e+183
-1.2443421e+183
-1.2398183e+183
-1.2182549e+183
-1.2253038e+183
-1.2509546e+183
-1.2582695e+183
-1.2509546e+183
-1.2582695e+183
-1.2671399e+183
-1.2710915e+183
-1.2682177e+183
-1.2682177e+183
-1.2660817e+183
-1.2650186e+183
-1.2749709e+183
-1.2815135e+183
-1.28257e+183
-1.2835108e+183
-1.2844557e+183
-1.2844557e+183
-1.2870181e+183
-1.2880556e+183
-1.2927919e+183
-1.2907599e+183
-1.295493e+183
-1.2945922e+183
-1.2963416e+183
-1.2963416e+183
-1.298289e+183
-1.2981236e+183
-1.2988062e+183
-1.29864e+183
-1.295974e+183
-1.2898741e+183
-1.0687094e+183
-1.0671855e+183
-1.2774389e+183
-1.2828959e+183
-1.0932401e+183
-1.0937358e+183
-1.0938773e+183
-1.0958569e+183
-1.1185909e+183
-1.1185909e+183
-1.1325373e+183
-1.1325373e+183
-1.1325373e+183
-1.1325373e+183
-1.1766278e+183
-1.1752642e+183
-1.1664814e+183
-1.1676857e+183
-1.1719702e+183
-1.1732126e+183
-1.1748467e+183
-1.1752642e+183
-1.1692048e+183
-1.16959e+183
-1.16959e+183
-1.1707813e+183
-1.1779812e+183
-1.1794417e+183
-1.1808896e+183
-1.182448e+183
-1.1839567e+183
-1.1855449e+183
-1.1870508e+183
-1.1886215e+183
-1.160942e+183
-1.1600246e+183
-1.1588987e+183
-1.1578765e+183
-1.1588987e+183
-1.1600246e+183
-1.161946e+183
-1.1630117e+183
-1.1641314e+183
-1.1653008e+183
-1.1492617e+183
-1.1453806e+183
-1.1453806e+183
-1.1533312e+183
-1.1518536e+183
-1.154334e+183
-1.15522e+183
-1.156117e+183
-1.1569735e+183
-1.2004464e+183
-1.2022035e+183
-1.2039707e+183
-1.19452e+183
-1.1965144e+183
-1.1986534e+183
-1.1986534e+183
-1.1910775e+183
-1.1910775e+183
-1.1910775e+183
-1.1905889e+183
-1.1926365e+183
-1.2063641e+183
-1.2063641e+183
-1.2082524e+183
-1.2101816e+183
-1.2121676e+183
-1.2142042e+183
-1.2163031e+183
-1.2184503e+183
-1.2229164e+183
-1.2258643e+183
-1.2206599e+183
-1.2282099e+183
-1.2258643e+183
-1.2329915e+183
-1.2305639e+183
-1.2362027e+183
-1.2368063e+183
-1.2629863e+183
-1.2674518e+183
-1.2722359e+183
-1.2484403e+183
-1.2516642e+183
-1.255176e+183
-1.258893e+183
-1.2368081e+183
-1.2395434e+183
-1.2423593e+183
-1.2453036e+183
-1.0817724e+183
-1.0796343e+183
-1.117385e+183
-1.1390614e+183
-1.1860945e+183
-1.1671719e+183
-1.2023278e+183
-1.2102417e+183
-1.2182549e+183
-1.2274147e+183
-1.2356629e+183
-1.231327e+183
-1.2446588e+183
-1.247378e+183
-1.2422072e+183
-1.2399902e+183
-1.2253038e+183
-1.2253038e+183
-1.2234416e+183
-1.2506509e+183
-1.2517865e+183
-1.2614933e+183
-1.2588386e+183
-1.2517865e+183
-1.2517865e+183
-1.2542072e+183
-1.2588386e+183
-1.2577162e+183
-1.2681535e+183
-1.2723423e+183
-1.269218e+183
-1.269218e+183
-1.267092e+183
-1.2660474e+183
-1.2752704e+183
-1.2778933e+183
-1.2802592e+183
-1.2813088e+183
-1.2822695e+183
-1.2831968e+183
-1.2854311e+183
-1.2890061e+183
-1.290894e+183
-1.2934114e+183
-1.2943135e+183
-1.2951741e+183
-1.2951741e+183
-1.2965074e+183
-1.2981236e+183
-1.2980673e+183
-1.2987213e+183
-1.0957992e+183
-1.0979184e+183
-1.2773321e+183
-1.1115404e+183
-1.1149785e+183
-1.1132707e+183
-1.1144543e+183
-1.1154672e+183
-1.1181276e+183
-1.1321222e+183
-1.1403617e+183
-1.1403617e+183
-1.1767516e+183
-1.1754329e+183
-1.1667625e+183
-1.1679196e+183
-1.1721685e+183
-1.1733696e+183
-1.1750256e+183
-1.1754329e+183
-1.1694427e+183
-1.1698153e+183
-1.1698153e+183
-1.170968e+183
-1.178128e+183
-1.1795398e+183
-1.1810165e+183
-1.1825214e+183
-1.1840567e+183
-1.1855846e+183
-1.1871136e+183
-1.1886116e+183
-1.1613595e+183
-1.1604623e+183
-1.1593637e+183
-1.158387e+183
-1.1593637e+183
-1.1604623e+183
-1.1604623e+183
-1.1613595e+183
-1.162347e+183
-1.162347e+183
-1.1633808e+183
-1.1633808e+183
-1.16448e+183
-1.16448e+183
-1.1656005e+183
-1.1521673e+183
-1.1488653e+183
-1.1488653e+183
-1.1545488e+183
-1.1538338e+183
-1.1553107e+183
-1.1560247e+183
-1.1567852e+183
-1.157568e+183
-1.2005731e+183
-1.2022627e+183
-1.2040021e+183
-1.1943505e+183
-1.1965144e+183
-1.1965144e+183
-1.1989227e+183
-1.1989227e+183
-1.1905806e+183
-1.1926251e+183
-1.1905806e+183
-1.1926251e+183
-1.2063914e+183
-1.2063914e+183
-1.2082687e+183
-1.2101956e+183
-1.2121789e+183
-1.214215e+183
-1.2163132e+183
-1.218462e+183
-1.2229248e+183
-1.2258721e+183
-1.2206695e+183
-1.2282189e+183
-1.2258721e+183
-1.2329892e+183
-1.2305685e+183
-1.236206e+183
-1.2368081e+183
-1.2629862e+183
-1.2674426e+183
-1.2721882e+183
-1.2484542e+183
-1.2516659e+183
-1.2551955e+183
-1.2588927e+183
-1.2368018e+183
-1.2395495e+183
-1.2423655e+183
-1.2453059e+183
-1.1233064e+183
-1.1462516e+183
-1.1908182e+183
-1.1729077e+183
-1.1823704e+183
-1.2023278e+183
-1.1994836e+183
-1.1958318e+183
-1.2023278e+183
-1.1917614e+183
-1.2121487e+183
-1.2157926e+183
-1.2194891e+183
-1.2234416e+183
-1.2275428e+183
-1.2296153e+183
-1.2379697e+183
-1.2356997e+183
-1.2315335e+183
-1.2335907e+183
-1.2458393e+183
-1.2480269e+183
-1.2421094e+183
-1.2400728e+183
-1.2265492e+183
-1.2275799e+183
-1.2275799e+183
-1.2256077e+183
-1.2246835e+183
-1.2257444e+183
-1.2513314e+183
-1.262087e+183
-1.2594491e+183
-1.2513314e+183
-1.2547753e+183
-1.2547753e+183
-1.2594491e+183
-1.2583539e+183
-1.2729611e+183
-1.270444e+183
-1.270444e+183
-1.2754473e+183
-1.2831968e+183
-1.2797943e+183
-1.2787331e+183
-1.2817131e+183
-1.2807878e+183
-1.2856974e+183
-1.2894049e+183
-1.2876669e+183
-1.2907953e+183
-1.2931886e+183
-1.2940879e+183
-1.2949512e+183
-1.2949512e+183
-1.2963498e+183
-1.2980673e+183
-1.1252981e+183
-1.1314859e+183
-1.1252465e+183
-1.128608e+183
-1.1292202e+183
-1.1287815e+183
-1.13152e+183
-1.1423003e+183
-1.1423003e+183
-1.1767952e+183
-1.1754764e+183
-1.1668414e+183
-1.1679873e+183
-1.1722209e+183
-1.17342e+183
-1.1750686e+183
-1.1754764e+183
-1.1695026e+183
-1.169875e+183
-1.169875e+183
-1.1710268e+183
-1.1781655e+183
-1.1795757e+183
-1.1810469e+183
-1.1825501e+183
-1.1840778e+183
-1.1856019e+183
-1.1871205e+183
-1.1886116e+183
-1.1594958e+183
-1.1585321e+183
-1.1594958e+183
-1.161222e+183
-1.1603275e+183
-1.1621854e+183
-1.1632024e+183
-1.1642809e+183
-1.1656922e+183
-1.1656922e+183
-1.1535706e+183
-1.1518243e+183
-1.1518243e+183
-1.1549193e+183
-1.1549193e+183
-1.1543873e+183
-1.1550015e+183
-1.1556064e+183
-1.1562624e+183
-1.1569794e+183
-1.1577362e+183
-1.2006349e+183
-1.2022859e+183
-1.2040088e+183
-1.1944154e+183
-1.1969035e+183
-1.1969035e+183
-1.199082e+183
-1.199082e+183
-1.1905699e+183
-1.1926142e+183
-1.1905699e+183
-1.1926142e+183
-1.2063962e+183
-1.2063962e+183
-1.2082701e+183
-1.210197e+183
-1.2121799e+183
-1.2142166e+183
-1.2163156e+183
-1.2184653e+183
-1.2229269e+183
-1.2258751e+183
-1.2206719e+183
-1.2282222e+183
-1.2258751e+183
-1.2329754e+183
-1.2305659e+183
-1.2362002e+183
-1.2368018e+183
-1.1380688e+183
-1.1502235e+183
-1.162591e+183
-1.1827334e+183
-1.1787093e+183
-1.186413e+183
-1.1994836e+183
-1.1958318e+183
-1.2046349e+183
-1.2046349e+183
-1.2046349e+183
-1.2046349e+183
-1.2083509e+183
-1.1917614e+183
-1.1913342e+183
-1.1917614e+183
-1.2127751e+183
-1.2147297e+183
-1.2164861e+183
-1.2182559e+183
-1.2200011e+183
-1.2218365e+183
-1.2237327e+183
-1.2257444e+183
-1.2276315e+183
-1.2296899e+183
-1.2380413e+183
-1.2358048e+183
-1.2316499e+183
-1.2336507e+183
-1.2443643e+183
-1.2465271e+183
-1.2484371e+183
-1.2419004e+183
-1.2399917e+183
-1.2266613e+183
-1.2276687e+183
-1.2276687e+183
-1.2257448e+183
-1.2248324e+183
-1.2258389e+183
-1.251651e+183
-1.26212e+183
-1.2656019e+183
-1.2630001e+183
-1.2597086e+183
-1.2666463e+183
-1.2677146e+183
-1.251651e+183
-1.2550364e+183
-1.2550364e+183
-1.2597086e+183
-1.25863e+183
-1.2677146e+183
-1.2733419e+183
-1.2711111e+183
-1.2711111e+183
-1.2753588e+183
-1.2817131e+183
-1.2837462e+183
-1.2794971e+183
-1.278436e+183
-1.2814265e+183
-1.280503e+183
-1.2856317e+183
-1.2893505e+183
-1.2874547e+183
-1.2907426e+183
-1.2930801e+183
-1.2939774e+183
-1.2948431e+183
-1.2948431e+183
-1.2962613e+183
-1.1452125e+183
-1.1429784e+183
-1.1341494e+183
-1.1372008e+183
-1.1391351e+183
-1.1379212e+183
-1.1467457e+183
-1.1467457e+183
-1.1768126e+183
-1.1754935e+183
-1.1668727e+183
-1.1680117e+183
-1.1722413e+183
-1.1734389e+183
-1.1750851e+183
-1.1754935e+183
-1.1695258e+183
-1.1698984e+183
-1.1698984e+183
-1.1710498e+183
-1.1781805e+183
-1.1795902e+183
-1.1810592e+183
-1.1825614e+183
-1.1840849e+183
-1.185607e+183
-1.1871202e+183
-1.1886064e+183
-1.159547e+183
-1.1585841e+183
-1.159547e+183
-1.1612714e+183
-1.1603756e+183
-1.1622318e+183
-1.1632469e+183
-1.1643211e+183
-1.1657285e+183
-1.1657285e+183
-1.1538201e+183
-1.1527158e+183
-1.1527158e+183
-1.1549497e+183
-1.1556887e+183
-1.1547693e+183
-1.1547693e+183
-1.1551019e+183
-1.1551019e+183
-1.1556887e+183
-1.1563346e+183
-1.1570414e+183
-1.1577939e+183
-1.1944629e+183
-1.1971173e+183
-1.1971173e+183
-1.1627286e+183
-1.1550013e+183
-1.1686794e+183
-1.1739577e+183
-1.1869598e+183
-1.1839924e+183
-1.2010394e+183
-1.2025207e+183
-1.1979207e+183
-1.1995161e+183
-1.2073782e+183
-1.2065074e+183
-1.2040825e+183
-1.2073782e+183
-1.2090243e+183
-1.2107585e+183
-1.1913342e+183
-1.1913342e+183
-1.1937932e+183
-1.1959605e+183
-1.2126328e+183
-1.2151845e+183
-1.2168418e+183
-1.2184762e+183
-1.2201778e+183
-1.2219522e+183
-1.2238789e+183
-1.2258389e+183
-1.2276248e+183
-1.2297103e+183
-1.2380331e+183
-1.2357842e+183
-1.2316368e+183
-1.2336345e+183
-1.2440089e+183
-1.2465655e+183
-1.248562e+183
-1.2417663e+183
-1.2399682e+183
-1.2266697e+183
-1.2276815e+183
-1.2276815e+183
-1.2257536e+183
-1.2248746e+183
-1.2258688e+183
-1.2517487e+183
-1.2630001e+183
-1.2630001e+183
-1.2597517e+183
-1.266279e+183
-1.2673528e+183
-1.2517487e+183
-1.2550952e+183
-1.2550952e+183
-1.2597517e+183
-1.2586776e+183
-1.2673528e+183
-1.2734153e+183
-1.2710729e+183
-1.2710729e+183
-1.2753416e+183
-1.2814265e+183
-1.2836868e+183
-1.2794058e+183
-1.2783432e+183
-1.2813246e+183
-1.2804009e+183
-1.2856321e+183
-1.2893446e+183
-1.2873929e+183
-1.1605974e+183
-1.1508362e+183
-1.158408e+183
-1.1464606e+183
-1.1517038e+183
-1.1412403e+183
-1.1425428e+183
-1.1505631e+183
-1.1471894e+183
-1.1403615e+183
-1.1489812e+183
-1.1489812e+183
-1.1541047e+183
-1.153483e+183
-1.1541047e+183
-1.153483e+183
-1.1552472e+183
-1.1548871e+183
-1.1686831e+183
-1.1750318e+183
-1.1798311e+183
-1.1904803e+183
-1.1894731e+183
-1.1883506e+183
-1.1868492e+183
-1.2020591e+183
-1.2033454e+183
-1.1993968e+183
-1.2007427e+183
-1.2078791e+183
-1.207054e+183
-1.2047344e+183
-1.2078791e+183
-1.2094397e+183
-1.2109785e+183
-1.1923469e+183
-1.1930614e+183
-1.1954467e+183
-1.1944182e+183
-1.1930614e+183
-1.1975925e+183
-1.212418e+183
-1.2138732e+183
-1.215466e+183
-1.217008e+183
-1.2185665e+183
-1.2202144e+183
-1.2219812e+183
-1.2239047e+183
-1.2258688e+183
-1.2276355e+183
-1.2297707e+183
-1.2380849e+183
-1.2357834e+183
-1.2316556e+183
-1.2336376e+183
-1.2438619e+183
-1.2466395e+183
-1.2486834e+183
-1.2266821e+183
-1.2276968e+183
-1.2276968e+183
-1.2257754e+183
-1.2249306e+183
-1.2259198e+183
-1.2518141e+183
-1.2629161e+183
-1.2629161e+183
-1.2598162e+183
-1.2661493e+183
-1.2672247e+183
-1.2518141e+183
-1.2551151e+183
-1.2551151e+183
-1.2598162e+183
-1.258744e+183
-1.2672247e+183
-1.2735269e+183
-1.2710782e+183
-1.2710782e+183
-1.2813246e+183
-1.2836709e+183
-1.1651976e+183
-1.1555677e+183
-1.1587696e+183
-1.1621951e+183
-1.1652808e+183
-1.1560499e+183
-1.1436023e+183
-1.1451586e+183
-1.151991e+183
-1.1490803e+183
-1.1395379e+183
-1.1514184e+183
-1.1514184e+183
-1.1711237e+183
-1.1754055e+183
-1.1809468e+183
-1.1785448e+183
-1.1830208e+183
-1.1848484e+183
-1.1910082e+183
-1.1901473e+183
-1.1892668e+183
-1.1877728e+183
-1.2023817e+183
-1.2036021e+183
-1.1999649e+183
-1.2011764e+183
-1.2080013e+183
-1.2071894e+183
-1.2049174e+183
-1.2080013e+183
-1.2095456e+183
-1.210963e+183
-1.1928264e+183
-1.1935005e+183
-1.1961371e+183
-1.1947574e+183
-1.1935005e+183
-1.1977833e+183
-1.2124623e+183
-1.2142429e+183
-1.2156489e+183
-1.2171342e+183
-1.2186349e+183
-1.2202406e+183
-1.221998e+183
-1.2239337e+183
-1.2259198e+183
-1.1735646e+183
-1.171255e+183
-1.1681837e+183
-1.1593753e+183
-1.1618638e+183
-1.1642252e+183
-1.1672178e+183
-1.158313e+183
-1.144749e+183
-1.1465272e+183
-1.1531976e+183
-1.1561675e+183
-1.1501492e+183
-1.1778948e+183
-1.1831831e+183
-1.1810956e+183
-1.1849304e+183
-1.1863718e+183
-1.1911837e+183
-1.1903853e+183
-1.1896455e+183
-1.1888287e+183
-1.1881578e+183
-1.202482e+183
-1.2036744e+183
-1.1988908e+183
-1.2002202e+183
-1.2013314e+183
-1.2080276e+183
-1.2072191e+183
-1.2049649e+183
-1.2080276e+183
-1.2095883e+183
-1.2109606e+183
-1.1929565e+183
-1.1936239e+183
-1.1962521e+183
-1.1948699e+183
-1.1936239e+183
-1.1976693e+183
-1.2125164e+183
-1.2144511e+183
-1.1748068e+183
-1.1721821e+183
-1.1695674e+183
-1.1608469e+183
-1.1630573e+183
-1.165212e+183
-1.1663532e+183
-1.168047e+183
-1.1592935e+183
-1.1473367e+183
-1.1541223e+183
-1.1576349e+183
-1.1507128e+183
-1.1782401e+183
-1.1840221e+183
-1.1821818e+183
-1.1855373e+183
-1.1868785e+183
-1.191273e+183
-1.1905223e+183
-1.189887e+183
-1.1892437e+183
-1.1883193e+183
-1.2025277e+183
-1.2037035e+183
-1.1992299e+183
-1.2003715e+183
-1.2014114e+183
-1.2080267e+183
-1.2072188e+183
-1.2049801e+183
-1.2080267e+183
-1.2096429e+183
-1.2109789e+183
-1.1930158e+183
-1.1936805e+183
-1.1962902e+183
-1.1949443e+183
-1.1936805e+183
-1.1977298e+183
-1.175232e+183
-1.1725451e+183
-1.1700727e+183
-1.1614099e+183
-1.1634795e+183
-1.1656381e+183
-1.1672271e+183
-1.1685003e+183
-1.159858e+183
-1.1545852e+183
-1.1583722e+183
-1.1781418e+183
-1.1804785e+183
-1.1843307e+183
-1.1826687e+183
-1.1857181e+183
-1.1870219e+183
-1.1894587e+183
-1.1884054e+183
-1.1994175e+183
-1.1963366e+183
-1.1977949e+183
-1.1753999e+183
-1.1727383e+183
-1.1703378e+183
-1.1617134e+183
-1.1636764e+183
-1.165871e+183
-1.1676561e+183
-1.178352e+183
-1.1811494e+183
-1.1845269e+183
-1.1829572e+183
-1.1858177e+183
-1.1870877e+183
-1.1754883e+183
-1.1784862e+183
-1.1814962e+183
)
;
}
procBoundary3to2
{
type processor;
value nonuniform List<scalar>
1155
(
-1.4025126e+183
-1.353592e+183
-1.2880665e+183
-1.3615003e+183
-1.3623786e+183
-1.3335473e+183
-1.3175368e+183
-1.2065012e+183
-1.2065012e+183
-1.2471905e+183
-1.2906429e+183
-1.3306126e+183
-1.3375295e+183
-1.3416864e+183
-1.340463e+183
-1.3223483e+183
-1.3110038e+183
-1.223563e+183
-1.2049552e+183
-1.2049552e+183
-1.2049552e+183
-1.2049552e+183
-1.1730972e+183
-1.1896478e+183
-1.1711538e+183
-1.1315132e+183
-1.1312068e+183
-1.1529549e+183
-1.2663642e+183
-1.2425306e+183
-1.2943592e+183
-1.3132277e+183
-1.3092092e+183
-1.3162872e+183
-1.3259716e+183
-1.3294434e+183
-1.3304905e+183
-1.3279526e+183
-1.3155342e+183
-1.3080142e+183
-1.2309272e+183
-1.2215778e+183
-1.2215778e+183
-1.2215778e+183
-1.2215778e+183
-1.2141954e+183
-1.2057772e+183
-1.1896478e+183
-1.1976901e+183
-1.1711538e+183
-1.0452917e+183
-1.0452917e+183
-1.0914854e+183
-1.1069807e+183
-1.0755098e+183
-1.1529549e+183
-1.1312068e+183
-1.2640396e+183
-1.2791167e+183
-1.2404934e+183
-1.2518056e+183
-1.2976265e+183
-1.2718888e+183
-1.2891281e+183
-1.2951294e+183
-1.3158071e+183
-1.3203071e+183
-1.3238124e+183
-1.324737e+183
-1.323581e+183
-1.3201878e+183
-1.305997e+183
-1.3100124e+183
-9.9243753e+182
-1.2294756e+183
-1.2294756e+183
-1.2294756e+183
-1.2342932e+183
-1.2211447e+183
-1.2255155e+183
-1.2267392e+183
-1.2211447e+183
-1.2211447e+183
-1.2211447e+183
-1.2132378e+183
-1.2174319e+183
-1.2091694e+183
-1.1976901e+183
-1.2050378e+183
-1.1976901e+183
-1.1904087e+183
-1.1749595e+183
-1.1826733e+183
-1.2620978e+183
-1.2695859e+183
-1.2775533e+183
-1.0349903e+183
-1.0349903e+183
-1.0349903e+183
-1.1069807e+183
-1.0755098e+183
-1.159068e+183
-1.167093e+183
-1.138209e+183
-1.150334e+183
-1.150334e+183
-1.138209e+183
-1.138209e+183
-1.2878908e+183
-1.2391567e+183
-1.2444565e+183
-1.2499847e+183
-1.2562899e+183
-1.299576e+183
-1.2298475e+183
-1.2678084e+183
-1.2747222e+183
-1.3052783e+183
-1.2940681e+183
-1.3113829e+183
-1.3136534e+183
-1.3193129e+183
-1.3211285e+183
-1.3215769e+183
-1.3212277e+183
-1.3202984e+183
-1.3181585e+183
-1.3138957e+183
-9.8699967e+182
-1.301854e+183
-1.2310272e+183
-1.228968e+183
-1.2310272e+183
-1.23336e+183
-1.235824e+183
-1.2267392e+183
-1.2267392e+183
-1.2248078e+183
-1.2229712e+183
-1.2208931e+183
-1.2248078e+183
-1.2208931e+183
-1.2248078e+183
-1.213054e+183
-1.215028e+183
-1.2190766e+183
-1.2170376e+183
-1.2152407e+183
-1.2171657e+183
-1.2191025e+183
-1.2110255e+183
-1.2087083e+183
-1.1977472e+183
-1.2014055e+183
-1.2055178e+183
-1.2014055e+183
-1.1977472e+183
-1.1977472e+183
-1.1982338e+183
-1.2055178e+183
-1.1913669e+183
-1.1949904e+183
-1.1957637e+183
-1.1777357e+183
-1.1809756e+183
-1.184263e+183
-1.1877737e+183
-1.2620978e+183
-1.2620978e+183
-1.2695859e+183
-1.2775533e+183
-1.2775533e+183
-1.2874692e+183
-1.2934177e+183
-1.0311791e+183
-1.0311791e+183
-1.0311791e+183
-1.072566e+183
-1.1228651e+183
-1.1016739e+183
-1.1647548e+183
-1.1679289e+183
-1.1711046e+183
-1.1743847e+183
-1.1612895e+183
-1.1612895e+183
-1.1577966e+183
-1.1530259e+183
-1.1460441e+183
-1.1368232e+183
-1.2382683e+183
-1.2408316e+183
-1.243407e+183
-1.2461963e+183
-1.2489809e+183
-1.2520162e+183
-1.2550754e+183
-1.2584617e+183
-1.301854e+183
-1.2934177e+183
-1.1854512e+183
-1.2263855e+183
-1.2478991e+183
-1.2548545e+183
-1.2735561e+183
-1.2839248e+183
-1.3055858e+183
-1.3003244e+183
-1.2945158e+183
-1.3078587e+183
-1.3152228e+183
-1.3189312e+183
-1.3195091e+183
-1.3199444e+183
-1.3197257e+183
-1.3166887e+183
-1.3101568e+183
-1.0335991e+183
-1.301854e+183
-1.2311737e+183
-1.2291503e+183
-1.2311737e+183
-1.2335212e+183
-1.2359225e+183
-1.2269038e+183
-1.2269038e+183
-1.223174e+183
-1.2211275e+183
-1.2271738e+183
-1.2252753e+183
-1.2134554e+183
-1.2152407e+183
-1.2152407e+183
-1.2171657e+183
-1.2191025e+183
-1.2113377e+183
-1.2088545e+183
-1.204821e+183
-1.2065235e+183
-1.2025434e+183
-1.1991952e+183
-1.2050007e+183
-1.204821e+183
-1.1957637e+183
-1.1927115e+183
-1.1957637e+183
-1.1798696e+183
-1.1828187e+183
-1.185973e+183
-1.1892788e+183
-1.2610972e+183
-1.2614566e+183
-1.2647711e+183
-1.2610972e+183
-1.268451e+183
-1.2727426e+183
-1.2819938e+183
-1.2769959e+183
-1.2819938e+183
-1.2874692e+183
-1.2934177e+183
-1.0704538e+183
-1.0739803e+183
-1.0707148e+183
-1.103144e+183
-1.1234942e+183
-1.1368232e+183
-1.1368232e+183
-1.1690936e+183
-1.1715535e+183
-1.1741962e+183
-1.1769473e+183
-1.1666072e+183
-1.1666072e+183
-1.1666072e+183
-1.1644396e+183
-1.1606472e+183
-1.1535468e+183
-1.2384108e+183
-1.2409448e+183
-1.2435704e+183
-1.2462882e+183
-1.2491633e+183
-1.2521598e+183
-1.2553029e+183
-1.2585914e+183
-1.1382584e+183
-1.2055694e+183
-1.1822698e+183
-1.2350174e+183
-1.2543437e+183
-1.2543437e+183
-1.2543437e+183
-1.2641177e+183
-1.2641177e+183
-1.2641177e+183
-1.2732235e+183
-1.2732235e+183
-1.2783316e+183
-1.283472e+183
-1.2891591e+183
-1.3028606e+183
-1.2946415e+183
-1.2977941e+183
-1.3079143e+183
-1.3107074e+183
-1.3118011e+183
-1.3146794e+183
-1.316833e+183
-1.3020651e+183
-1.3177511e+183
-1.3189777e+183
-1.3197131e+183
-1.3194423e+183
-1.3163274e+183
-1.3092946e+183
-1.076216e+183
-1.0739803e+183
-1.0739803e+183
-1.3020651e+183
-1.294659e+183
-1.2311927e+183
-1.2291699e+183
-1.2311927e+183
-1.2335331e+183
-1.2359305e+183
-1.2269293e+183
-1.2269293e+183
-1.2232129e+183
-1.2211695e+183
-1.2272038e+183
-1.2253043e+183
-1.2136827e+183
-1.2153731e+183
-1.2153731e+183
-1.2153731e+183
-1.2172545e+183
-1.2191726e+183
-1.2117552e+183
-1.2084235e+183
-1.2048292e+183
-1.2064492e+183
-1.2019358e+183
-1.2035866e+183
-1.1987149e+183
-1.2003723e+183
-1.2050012e+183
-1.2048292e+183
-1.1924734e+183
-1.1954317e+183
-1.1956188e+183
-1.1941833e+183
-1.1954317e+183
-1.1971092e+183
-1.1802453e+183
-1.181632e+183
-1.1830162e+183
-1.1845071e+183
-1.1859994e+183
-1.1875951e+183
-1.1891659e+183
-1.1908459e+183
-1.2488427e+183
-1.2518532e+183
-1.2613904e+183
-1.2549772e+183
-1.261732e+183
-1.2582532e+183
-1.2650091e+183
-1.2613904e+183
-1.2689016e+183
-1.2731271e+183
-1.2827335e+183
-1.2777104e+183
-1.2827335e+183
-1.2885774e+183
-1.1015381e+183
-1.1012207e+183
-1.1005765e+183
-1.1023568e+183
-1.1023568e+183
-1.1267087e+183
-1.1267087e+183
-1.1267087e+183
-1.142181e+183
-1.1708352e+183
-1.1718184e+183
-1.1728928e+183
-1.173996e+183
-1.1751653e+183
-1.1763675e+183
-1.1776099e+183
-1.1789133e+183
-1.1698655e+183
-1.1690865e+183
-1.1690865e+183
-1.1698655e+183
-1.1674449e+183
-1.1683785e+183
-1.1644839e+183
-1.1662556e+183
-1.1613156e+183
-1.1567697e+183
-1.2384099e+183
-1.2409488e+183
-1.2435633e+183
-1.2462646e+183
-1.0896662e+183
-1.1588712e+183
-1.1330667e+183
-1.2142515e+183
-1.1920236e+183
-1.1920236e+183
-1.235566e+183
-1.2451605e+183
-1.2451605e+183
-1.2451605e+183
-1.2550806e+183
-1.2597919e+183
-1.2643766e+183
-1.2693721e+183
-1.2726373e+183
-1.2726373e+183
-1.2751649e+183
-1.2730643e+183
-1.2779577e+183
-1.2810318e+183
-1.2862487e+183
-1.2835804e+183
-1.2889591e+183
-1.2918604e+183
-1.2991401e+183
-1.3023449e+183
-1.3051558e+183
-1.2957212e+183
-1.3089533e+183
-1.3127923e+183
-1.3148123e+183
-1.3013983e+183
-1.3164721e+183
-1.3179367e+183
-1.3187962e+183
-1.3195254e+183
-1.3192845e+183
-1.3162082e+183
-1.309258e+183
-1.1072924e+183
-1.1072924e+183
-1.1094766e+183
-1.1394011e+183
-1.3013983e+183
-1.2948083e+183
-1.2311958e+183
-1.2291737e+183
-1.2311958e+183
-1.2335367e+183
-1.235933e+183
-1.2269327e+183
-1.2269327e+183
-1.2232166e+183
-1.2211722e+183
-1.2272075e+183
-1.2253076e+183
-1.213815e+183
-1.2156512e+183
-1.2172797e+183
-1.2172797e+183
-1.2191854e+183
-1.2120401e+183
-1.2100042e+183
-1.2082403e+183
-1.2048166e+183
-1.2064335e+183
-1.2019908e+183
-1.203569e+183
-1.1988049e+183
-1.2004002e+183
-1.2049879e+183
-1.2048166e+183
-1.1926054e+183
-1.195547e+183
-1.1957263e+183
-1.1942587e+183
-1.195547e+183
-1.1971694e+183
-1.1804576e+183
-1.1818046e+183
-1.1832124e+183
-1.1846605e+183
-1.186174e+183
-1.1877182e+183
-1.1893179e+183
-1.1909442e+183
-1.1804576e+183
-1.2488427e+183
-1.2488427e+183
-1.2518532e+183
-1.2582532e+183
-1.2614099e+183
-1.2549772e+183
-1.2432696e+183
-1.2459582e+183
-1.2650316e+183
-1.2614099e+183
-1.2689651e+183
-1.2731817e+183
-1.2828794e+183
-1.2778055e+183
-1.2828794e+183
-1.2887368e+183
-1.1230223e+183
-1.1392059e+183
-1.1256702e+183
-1.1446273e+183
-1.1219694e+183
-1.1227418e+183
-1.1236266e+183
-1.1236266e+183
-1.1258827e+183
-1.1405947e+183
-1.15009e+183
-1.1712113e+183
-1.1721731e+183
-1.173215e+183
-1.1742931e+183
-1.1754455e+183
-1.176617e+183
-1.1778596e+183
-1.1791248e+183
-1.1702988e+183
-1.1695593e+183
-1.1695593e+183
-1.1702988e+183
-1.1682027e+183
-1.1689568e+183
-1.1665533e+183
-1.1673306e+183
-1.164447e+183
-1.1604608e+183
-1.1791248e+183
-1.1778596e+183
-1.176617e+183
-1.1754455e+183
-1.1742931e+183
-1.2384096e+183
-1.2409493e+183
-1.1670038e+183
-1.1670038e+183
-1.1670038e+183
-1.1394011e+183
-1.1394011e+183
-1.1394011e+183
-1.2163227e+183
-1.2163227e+183
-1.2163227e+183
-1.2261927e+183
-1.2261927e+183
-1.1960478e+183
-1.2063554e+183
-1.2063554e+183
-1.2063554e+183
-1.2063554e+183
-1.2407906e+183
-1.2407906e+183
-1.2407906e+183
-1.2407906e+183
-1.2364184e+183
-1.2364184e+183
-1.2364184e+183
-1.2459272e+183
-1.2505675e+183
-1.2546184e+183
-1.2569169e+183
-1.2615753e+183
-1.2591652e+183
-1.2662127e+183
-1.2638156e+183
-1.2686014e+183
-1.2711751e+183
-1.2727956e+183
-1.2727956e+183
-1.2751191e+183
-1.2732152e+183
-1.2793829e+183
-1.2818675e+183
-1.2869321e+183
-1.2843528e+183
-1.2896492e+183
-1.2925122e+183
-1.29982e+183
-1.3025306e+183
-1.3065045e+183
-1.2970672e+183
-1.3092529e+183
-1.3132333e+183
-1.3113752e+183
-1.3147032e+183
-1.3008432e+183
-1.3162292e+183
-1.317765e+183
-1.318734e+183
-1.3194337e+183
-1.3008432e+183
-1.2945997e+183
-1.2311956e+183
-1.2291738e+183
-1.2311956e+183
-1.2335372e+183
-1.2359329e+183
-1.2269317e+183
-1.2269317e+183
-1.2232165e+183
-1.2211709e+183
-1.2272059e+183
-1.2253078e+183
-1.213882e+183
-1.2156748e+183
-1.2172891e+183
-1.2172891e+183
-1.2191891e+183
-1.2122116e+183
-1.2104145e+183
-1.2083085e+183
-1.2048041e+183
-1.2064198e+183
-1.2019944e+183
-1.203567e+183
-1.1988213e+183
-1.2004138e+183
-1.2049749e+183
-1.2048041e+183
-1.1926344e+183
-1.19557e+183
-1.1957483e+183
-1.1942863e+183
-1.19557e+183
-1.1971935e+183
-1.1818605e+183
-1.1832611e+183
-1.1847082e+183
-1.1862159e+183
-1.1877582e+183
-1.1893527e+183
-1.1909784e+183
-1.1806152e+183
-1.1818605e+183
-1.2488385e+183
-1.2518591e+183
-1.2582505e+183
-1.2614158e+183
-1.2549799e+183
-1.2432696e+183
-1.2432696e+183
-1.2459582e+183
-1.2650304e+183
-1.2614158e+183
-1.2614158e+183
-1.2689761e+183
-1.2731721e+183
-1.2828451e+183
-1.2777919e+183
-1.2828451e+183
-1.2828451e+183
-1.288653e+183
-1.1392059e+183
-1.1446273e+183
-1.1354202e+183
-1.1454319e+183
-1.1446273e+183
-1.1446273e+183
-1.1381765e+183
-1.1495813e+183
-1.1376623e+183
-1.1381568e+183
-1.1381568e+183
-1.1373228e+183
-1.1396256e+183
-1.1515712e+183
-1.1713184e+183
-1.1722746e+183
-1.1733055e+183
-1.1704237e+183
-1.1696917e+183
-1.1696917e+183
-1.1704237e+183
-1.1684236e+183
-1.1691234e+183
-1.1671799e+183
-1.1674894e+183
-1.1676452e+183
-1.1655899e+183
-1.1634123e+183
-1.1792827e+183
-1.1780154e+183
-1.17677e+183
-1.1755946e+183
-1.1733055e+183
-1.1744419e+183
-1.2384084e+183
-1.240948e+183
-1.1690105e+183
-1.1837415e+183
-1.1544011e+183
-1.2238023e+183
-1.2192457e+183
-1.2281061e+183
-1.2318603e+183
-1.2318603e+183
-1.2318603e+183
-1.2318603e+183
-1.2003302e+183
-1.2053451e+183
-1.2094891e+183
-1.2094891e+183
-1.2142987e+183
-1.241249e+183
-1.241249e+183
-1.243326e+183
-1.243326e+183
-1.243326e+183
-1.239181e+183
-1.236833e+183
-1.236833e+183
-1.239181e+183
-1.2478811e+183
-1.2457444e+183
-1.2500695e+183
-1.2524112e+183
-1.2548081e+183
-1.2570464e+183
-1.2617577e+183
-1.2593753e+183
-1.2663497e+183
-1.2640322e+183
-1.2687968e+183
-1.2713227e+183
-1.2727228e+183
-1.2727228e+183
-1.274897e+183
-1.2777035e+183
-1.2731451e+183
-1.2802146e+183
-1.2823726e+183
-1.2872239e+183
-1.2847185e+183
-1.2899358e+183
-1.2925589e+183
-1.3002426e+183
-1.3024292e+183
-1.304876e+183
-1.3071078e+183
-1.295224e+183
-1.2978088e+183
-1.3091854e+183
-1.3131736e+183
-1.3111537e+183
-1.3146461e+183
-1.3161123e+183
-1.3176691e+183
-1.2944696e+183
-1.2106407e+183
-1.2083584e+183
-1.2019925e+183
-1.2035606e+183
-1.1988262e+183
-1.2004169e+183
-1.1926462e+183
-1.1955788e+183
-1.1957572e+183
-1.1942973e+183
-1.1955788e+183
-1.1972023e+183
-1.1818836e+183
-1.1832804e+183
-1.1847275e+183
-1.1862329e+183
-1.1877738e+183
-1.1893667e+183
-1.1909922e+183
-1.1806388e+183
-1.1818836e+183
-1.2488289e+183
-1.2518633e+183
-1.2582507e+183
-1.2549842e+183
-1.2432618e+183
-1.2432618e+183
-1.2459395e+183
-1.2650319e+183
-1.2650319e+183
-1.2617593e+183
-1.2689972e+183
-1.2731714e+183
-1.2777908e+183
-1.2777908e+183
-1.283184e+183
-1.2885937e+183
-1.1605694e+183
-1.1454319e+183
-1.1605694e+183
-1.1555596e+183
-1.1495813e+183
-1.1466394e+183
-1.1495813e+183
-1.1495813e+183
-1.1495813e+183
-1.1473873e+183
-1.1473873e+183
-1.1473873e+183
-1.1466716e+183
-1.1565081e+183
-1.1713542e+183
-1.1723106e+183
-1.173339e+183
-1.1704618e+183
-1.1697184e+183
-1.1697184e+183
-1.1704618e+183
-1.1684488e+183
-1.1691493e+183
-1.1675589e+183
-1.1675655e+183
-1.1676986e+183
-1.165771e+183
-1.1642643e+183
-1.1793085e+183
-1.1780426e+183
-1.1767998e+183
-1.1756242e+183
-1.173339e+183
-1.1744741e+183
-1.1720039e+183
-1.1811909e+183
-1.1882638e+183
-1.1945899e+183
-1.2249208e+183
-1.2268119e+183
-1.2209608e+183
-1.2230001e+183
-1.2287645e+183
-1.2307163e+183
-1.2323232e+183
-1.2323232e+183
-1.2323232e+183
-1.2344387e+183
-1.2344387e+183
-1.2056916e+183
-1.2056916e+183
-1.2097068e+183
-1.2131665e+183
-1.2131665e+183
-1.2157784e+183
-1.2185068e+183
-1.2421144e+183
-1.2440289e+183
-1.2371632e+183
-1.2401871e+183
-1.2480682e+183
-1.2460095e+183
-1.2502975e+183
-1.2525738e+183
-1.2548237e+183
-1.2570648e+183
-1.2618106e+183
-1.2594015e+183
-1.2663558e+183
-1.2640448e+183
-1.2687985e+183
-1.2713378e+183
-1.2727039e+183
-1.2727039e+183
-1.2747493e+183
-1.2773166e+183
-1.2731271e+183
-1.2802699e+183
-1.2825266e+183
-1.2872934e+183
-1.2848313e+183
-1.2899866e+183
-1.2923805e+183
-1.3003209e+183
-1.3024125e+183
-1.3045591e+183
-1.3070454e+183
-1.2948358e+183
-1.2977716e+183
-1.3091861e+183
-1.3131671e+183
-1.3110895e+183
-1.1772492e+183
-1.1735193e+183
-1.1735193e+183
-1.1735193e+183
-1.1735193e+183
-1.1646206e+183
-1.1577082e+183
-1.1638261e+183
-1.1615218e+183
-1.1508105e+183
-1.1575332e+183
-1.1524189e+183
-1.1615218e+183
-1.1575332e+183
-1.1493271e+183
-1.1532866e+183
-1.1493271e+183
-1.1592077e+183
-1.1676347e+183
-1.1676551e+183
-1.1660425e+183
-1.1650829e+183
-1.1868496e+183
-1.1944942e+183
-1.2003848e+183
-1.2003848e+183
-1.2003848e+183
-1.2262066e+183
-1.2278791e+183
-1.2227592e+183
-1.2244993e+183
-1.2296334e+183
-1.2314134e+183
-1.2333115e+183
-1.23518e+183
-1.2099926e+183
-1.2099926e+183
-1.2079245e+183
-1.2132445e+183
-1.2116668e+183
-1.214476e+183
-1.2147158e+183
-1.2176622e+183
-1.214476e+183
-1.214476e+183
-1.216248e+183
-1.216248e+183
-1.2204127e+183
-1.2423242e+183
-1.2441483e+183
-1.2369438e+183
-1.2386897e+183
-1.2405307e+183
-1.2481174e+183
-1.2460686e+183
-1.2503434e+183
-1.2526233e+183
-1.2548491e+183
-1.2570827e+183
-1.2618909e+183
-1.2594283e+183
-1.2663703e+183
-1.2640782e+183
-1.2688085e+183
-1.2714057e+183
-1.2771553e+183
-1.2803569e+183
-1.2826692e+183
-1.287319e+183
-1.2849072e+183
-1.2900558e+183
-1.2922904e+183
-1.3004417e+183
-1.3044432e+183
-1.3070273e+183
-1.2946946e+183
-1.2977815e+183
-1.1812968e+183
-1.180301e+183
-1.180233e+183
-1.1764808e+183
-1.180301e+183
-1.1683893e+183
-1.1723677e+183
-1.1679547e+183
-1.1532866e+183
-1.1593281e+183
-1.155046e+183
-1.16283e+183
-1.1593281e+183
-1.1486353e+183
-1.1544326e+183
-1.1486353e+183
-1.1622884e+183
-1.1882094e+183
-1.1932832e+183
-1.1970563e+183
-1.200054e+183
-1.200054e+183
-1.2027662e+183
-1.2052556e+183
-1.2266378e+183
-1.2282298e+183
-1.223511e+183
-1.2250716e+183
-1.2298946e+183
-1.2316116e+183
-1.2334775e+183
-1.2352018e+183
-1.2110898e+183
-1.2110898e+183
-1.2087652e+183
-1.2138956e+183
-1.2125017e+183
-1.2152744e+183
-1.2184457e+183
-1.2184457e+183
-1.2152744e+183
-1.2152744e+183
-1.2169834e+183
-1.220632e+183
-1.2424767e+183
-1.2442324e+183
-1.2370126e+183
-1.2391422e+183
-1.2407534e+183
-1.2481434e+183
-1.2461056e+183
-1.2503822e+183
-1.2526851e+183
-1.1903603e+183
-1.1872257e+183
-1.1836471e+183
-1.1821918e+183
-1.1821995e+183
-1.1782604e+183
-1.1821918e+183
-1.1720426e+183
-1.1752241e+183
-1.1702982e+183
-1.1702982e+183
-1.1544326e+183
-1.1604319e+183
-1.1564322e+183
-1.1639139e+183
-1.1675375e+183
-1.1604319e+183
-1.1955281e+183
-1.1994823e+183
-1.2021606e+183
-1.2021606e+183
-1.2021606e+183
-1.2046237e+183
-1.2067081e+183
-1.2267783e+183
-1.2283338e+183
-1.2221502e+183
-1.2238519e+183
-1.2252841e+183
-1.2299674e+183
-1.231661e+183
-1.2335384e+183
-1.2352121e+183
-1.2115785e+183
-1.2115785e+183
-1.2103564e+183
-1.2091006e+183
-1.2141209e+183
-1.2128047e+183
-1.2189719e+183
-1.2205253e+183
-1.2171369e+183
-1.2156324e+183
-1.2171369e+183
-1.2205253e+183
-1.2370796e+183
-1.2393887e+183
-1.1913424e+183
-1.1880956e+183
-1.1850055e+183
-1.183033e+183
-1.180862e+183
-1.1830676e+183
-1.1790504e+183
-1.183033e+183
-1.1734463e+183
-1.1762815e+183
-1.1713543e+183
-1.1713543e+183
-1.1610275e+183
-1.1572121e+183
-1.1649074e+183
-1.1691582e+183
-1.1610275e+183
-1.1955213e+183
-1.2006287e+183
-1.2006287e+183
-1.2031161e+183
-1.205247e+183
-1.2072131e+183
-1.2268438e+183
-1.2283762e+183
-1.2226158e+183
-1.2240568e+183
-1.2253963e+183
-1.2299923e+183
-1.2316671e+183
-1.2335983e+183
-1.2352329e+183
-1.2118872e+183
-1.2118872e+183
-1.2109403e+183
-1.209306e+183
-1.2142353e+183
-1.212977e+183
-1.2190389e+183
-1.2206345e+183
-1.2172275e+183
-1.2157064e+183
-1.2172275e+183
-1.2206345e+183
-1.1917087e+183
-1.1884506e+183
-1.1855124e+183
-1.1834953e+183
-1.1818472e+183
-1.1835353e+183
-1.1794886e+183
-1.1834953e+183
-1.1740064e+183
-1.1766799e+183
-1.171968e+183
-1.171968e+183
-1.1654126e+183
-1.1699741e+183
-1.1952432e+183
-1.198296e+183
-1.2011796e+183
-1.2011796e+183
-1.2011796e+183
-1.2034563e+183
-1.2054517e+183
-1.2073706e+183
-1.222865e+183
-1.2112448e+183
-1.2094155e+183
-1.2190945e+183
-1.2207252e+183
-1.2207252e+183
-1.191871e+183
-1.1886281e+183
-1.1857701e+183
-1.1823258e+183
-1.1797248e+183
-1.1743146e+183
-1.1768614e+183
-1.1954759e+183
-1.1991024e+183
-1.2015838e+183
-1.1995154e+183
-1.2036697e+183
-1.2055592e+183
-1.2074369e+183
-1.1919456e+183
-1.1956208e+183
-1.1995154e+183
)
;
}
}
// ************************************************************************* //
|
|
7badff1df9c08c97831055ad10fbcf7966e22bd2
|
5289b5a61a5c17a4371204214724cf3b8c49b2cf
|
/common/classes/InGameEvent.cpp
|
7877683cafc4c9d63f3e280de73943afd097a869
|
[] |
no_license
|
ishigo974/rtype
|
7e4daf50ca16f46d67c79c293dbd35d3a7641810
|
f45397e4240365e83f64479ccd1efcb98898303a
|
refs/heads/master
| 2021-01-10T10:23:51.626559
| 2015-12-27T22:23:33
| 2015-12-27T22:23:33
| 51,431,731
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 6,014
|
cpp
|
InGameEvent.cpp
|
#include "IncompleteRequest.hpp"
#include "NotImplemented.hpp"
#include "InGameEvent.hpp"
namespace RType
{
/*
** Static variables
*/
const size_t InGameEvent::headerSize = sizeof(uint32_t) +
sizeof(uint16_t) +
sizeof(uint32_t);
const InGameEvent::EventMap InGameEvent::inGameEvents =
{
{ InGameEvent::SE_PLAYERUP, { "player_id", "time" } },
{ InGameEvent::SE_PLAYERDOWN, { "player_id", "time" } },
{ InGameEvent::SE_PLAYERLEFT, { "player_id", "time" } },
{ InGameEvent::SE_PLAYERRIGHT, { "player_id", "time" } },
{ InGameEvent::SE_SHOT, { "player_id", "shot_type", "time" } },
{ InGameEvent::SE_MOBSPAWNED, { "mob_id", "x", "y", "time" } },
// { InGameEvent::SE_MOBMOVED, { "mob_id", "x", "y", "time" } },
{ InGameEvent::SE_INPUTERROR, { "time" } },
{ InGameEvent::SE_PLYRDISCONN, { } },
{ InGameEvent::CL_PLAYERUP, { "time" } },
{ InGameEvent::CL_PLAYERDOWN, { "time" } },
{ InGameEvent::CL_PLAYERLEFT, { "time" } },
{ InGameEvent::CL_PLAYERRIGHT, { "time" } },
{ InGameEvent::CL_SHOT, { "shot_type", "time" } },
{ InGameEvent::CL_DISCONNECT, { } }
};
const InGameEvent::DataSizeMap InGameEvent::dataSizes = {
{ "size", sizeof(uint32_t) },
{ "player_id", sizeof(uint8_t) },
{ "time", sizeof(uint64_t) },
{ "shot_type", sizeof(uint8_t) },
{ "mob_id", sizeof(uint8_t) },
{ "x", sizeof(uint32_t) },
{ "y", sizeof(uint32_t) }
};
/*
** Constructors/Destructor
*/
InGameEvent::InGameEvent(uint16_t code) : ABasePacket(code), _id(0)
{
}
InGameEvent::InGameEvent(Buffer const& raw) : ABasePacket(), _id(0)
{
parse(raw);
}
InGameEvent::~InGameEvent()
{
}
/*
** Copy constructor and assign operator
*/
InGameEvent::InGameEvent(InGameEvent const& other) :
ABasePacket(other), _id(other._id)
{
}
InGameEvent& InGameEvent::operator=(InGameEvent const& other)
{
if (this != &other)
{
ABasePacket::operator=(other);
_id = other._id;
}
return *this;
}
/*
** Overloaded operators
*/
bool InGameEvent::operator<(InGameEvent const& other) const
{
return _id < other._id;
}
bool InGameEvent::operator>(InGameEvent const& other) const
{
return _id > other._id;
}
bool InGameEvent::operator<=(InGameEvent const& other) const
{
return _id <= other._id;
}
bool InGameEvent::operator>=(InGameEvent const& other) const
{
return _id >= other._id;
}
bool InGameEvent::operator==(InGameEvent const& other) const
{
return ABasePacket::operator==(other) && _id == other._id;
}
/*
** Public member functions
*/
void InGameEvent::parse(Buffer const& raw)
{
size_t dataSize;
clear();
if (raw.size() < headerSize)
throw Exception::IncompleteRequest("Buffer can't contain a \
request header");
_id = raw.get<uint32_t>();
_code = raw.get<uint16_t>(sizeof(uint32_t));
dataSize = raw.get<uint32_t>(sizeof(uint32_t) + sizeof(uint16_t));
if (raw.size() - headerSize < dataSize)
throw Exception::IncompleteRequest("Buffer can't contain \
request's data");
parseData(raw);
}
void InGameEvent::parseData(Buffer const& raw)
{
Buffer tmp = raw;
EventMap::const_iterator it =
inGameEvents.find(static_cast<Code>(_code));
tmp.consume(headerSize);
if (it == inGameEvents.end())
throw Exception::NotImplemented("Request '" + std::to_string(_code)
+ "' does not exists or is not implemented");
for (std::string const& arg: it->second)
{
auto it = dataSizes.find(arg);
Buffer res;
if (it == dataSizes.end())
throw Exception::NotImplemented("Unknown data size: " + arg);
if (it->second > tmp.size())
throw Exception::IncompleteRequest("Buffer can't "
"contain argument");
res.setData(tmp.data(), it->second);
tmp.consume(it->second);
_data.insert(std::make_pair(it->first, res));
}
}
Buffer InGameEvent::toBuffer() const
{
Buffer res;
Buffer data;
auto it = inGameEvents.find(static_cast<Code>(_code));
if (it == inGameEvents.end())
throw Exception::IncompleteRequest("Code " + std::to_string(_code) +
" does not match any requests");
res.append<uint32_t>(_id);
res.append<uint16_t>(_code);
for (auto& arg: it->second)
data.append<Buffer>(_data.at(arg));
res.append<uint32_t>(data.size());
res.append(data);
return res;
}
void InGameEvent::clear()
{
ABasePacket::clear();
_id = 0;
}
void InGameEvent::setId(uint32_t id)
{
_id = id;
}
uint32_t InGameEvent::getId() const
{
return _id;
}
}
|
c1bbe5e48c3e2bb3b70edfbe8e45b48e5a8a26e0
|
75db3640b0031a491f1cf3c2daafe9333b07e9ae
|
/10/ACT03.Notas/ACT03.Notas/archivo1.cpp
|
b4dafd4243a70e97f6060be3654568031daee910
|
[] |
no_license
|
Ce28/cmasmastra
|
625d1aa5ad3d98c380e93e4fe4c6698db516f86a
|
10ad3d253703e2e6c0662b0a628a232beaad377e
|
refs/heads/master
| 2021-03-30T22:38:06.724869
| 2018-03-13T00:30:22
| 2018-03-13T00:30:22
| 124,463,265
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 483
|
cpp
|
archivo1.cpp
|
#include<iostream>
using namespace std;
void main()
{
int nota = 0;
int aprobados = 0;
int reprobados = 0;
for (int f = 1; f <= 10; f++)
{
cout << "Ingrese la nota del alumno: ";
cin >> nota;
if (nota >= 7)
{
aprobados++;
}
else
{
reprobados++;
}
}
cout << "La cantidad de aprobados es: ";
cout << aprobados;
cout << "\n";
cout << "La cantidad de reprobados es: ";
cout << reprobados;
cin.get();
cin.get();
}
|
4da4b35e94c55e42c8e5c3e4ff46c2752ba648bc
|
3002278fe2dece6a384249de87c9bf36947a080b
|
/Deadman_Wonderland_tone/Deadman_Wonderland_tone.ino
|
544412e03ac6c007de8913db87e7eaf84e9ac87f
|
[] |
no_license
|
jimmytsoares/Arduino-tones
|
2476c0d58e494586719c8838d6d369b8185726fa
|
6f58ed36ec08b58dc6d7a2e473478f8d26172036
|
refs/heads/master
| 2021-05-14T22:35:45.742536
| 2017-10-10T04:11:19
| 2017-10-10T04:11:19
| 106,366,999
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 738
|
ino
|
Deadman_Wonderland_tone.ino
|
int melody[] = {
659, 659, 587, 659, 698, 659, 587, 0,
440, 659, 587, 659, 698, 784, 523, 587, 523, 494, 0,
659, 659, 587, 659, 698, 659, 587, 0,
440, 659, 587, 659, 698, 784, 784, 784, 698, 659
};
int noteDurations[] = {
5,5,5,4,4,1,1,5,
5,5,5,4,4,2,5,3,5,3,5,
5,5,5,4,4,1,1,5,
5,5,5,4,4,2,5,3,5,3
};
void setup() {
for (int thisNote = 0; thisNote < 38; thisNote++) {
int noteDuration = 1000 / noteDurations[thisNote];
tone(9, melody[thisNote], noteDuration);
if(noteDurations[thisNote] != 1){
int pauseBetweenNotes = noteDuration * 1.30;
delay(pauseBetweenNotes);
} else {
delay(1100);
}
noTone(9);
}
}
void loop() {
// put your main code here, to run repeatedly:
}
|
0a86e5ee5d9ca35a2089068287a214aeffaede5a
|
d7d66364f6e9867ba76bf2cbd7718def2644c4c2
|
/Multi_Thread/ThreadPool.cpp
|
6d99894d6128eac4e9bf5a05f65bc4cd053d9aeb
|
[] |
no_license
|
lwzswufe/CppCode
|
ca61b2f410cca758c8968359234ae28c559e9683
|
dc9ee87b573acba4f59d26ef1f52b2b92b0982c1
|
refs/heads/master
| 2023-07-06T22:36:10.692762
| 2023-06-22T15:09:02
| 2023-06-22T15:09:02
| 105,245,499
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,780
|
cpp
|
ThreadPool.cpp
|
#include <atomic>
#include <thread>
#include <pthread.h>
#include <vector>
#include <functional>
#include <queue>
#include <mutex>
#include <time.h>
#include <unistd.h>
#include <sys/time.h>
/*
g++ -std=c++11 ThreadPool.cpp -o ThreadPool.out -lpthread
*/
// 线程安全队列
template <typename T>
class safe_queue
{
public:
bool empty();
size_t size();
void push_back(T);
T pop_front();
bool try_pop(T&);
private:
std::mutex _m;
std::queue<T> _q{};
};
// 任务结构体
struct task_data
{ // 函数对象类型 返回void 输入 int
std::function<void(int)> fun;
// 函数参数
int task_id;
};
class thread_pool
{
private:
// 任务完成标致
std::atomic_bool done;
// 任务队列
safe_queue<task_data> work_queue;
// 线程数组
std::vector<std::thread> threads;
// 执行任务
void worker_thread(unsigned thread_id);
public:
// 构造函数
thread_pool();
// 析构函数
~thread_pool();
// 子线程回收函数
void join();
// 提交任务
// template<typename FunctionType>
void submit(task_data __ino_t_defined);
};
void thread_pool::worker_thread(unsigned thread_id)
{
printf("worker_thread %u start done:%d\n", thread_id, done.load());
while(!done)
{
task_data td;
if(work_queue.try_pop(td))
{
printf("get task id:%d\n", td.task_id);
td.fun(td.task_id);
}
else
{
std::this_thread::yield();
}
}
printf("worker_thread %u end\n", thread_id);
}
// template<typename FunctionType>
void thread_pool::submit(task_data td)
{
work_queue.push_back(td);
printf("submit task:%d\n", td.task_id);
}
thread_pool::~thread_pool()
{
done=true;
}
thread_pool::thread_pool()
{
done = false;
// joiner(threads)
unsigned const thread_count=std::thread::hardware_concurrency();
try
{
for(unsigned i=0;i<thread_count;++i)
{
threads.push_back(
std::thread(&thread_pool::worker_thread, this, i));
printf(" start thread:%u\n", i);
}
}
catch(...)
{
done=true;
throw;
}
};
void thread_pool::join()
{
while(!work_queue.empty())
{
usleep(1);
}
done = true;
for (unsigned i=0; i<threads.size(); ++i)
{
threads[i].join();
}
}
template<typename T>
bool safe_queue<T>::empty()
{
return _q.empty();
}
template <typename T>
size_t safe_queue<T>::size()
{
return _q.size();
}
template <typename T>
void safe_queue<T>::push_back(T t)
{
_m.lock();
_q.push(t);
_m.unlock();
}
template <typename T>
bool safe_queue<T>::try_pop(T& t)
{
if (_m.try_lock())
{
if (_q.empty())
{
_m.unlock();
return false;
}
else
{
t = _q.front();
_q.pop();
_m.unlock();
return true;
}
}
else
{
return false;
}
}
void print_time()
{ // 获取精确到毫秒的时间
struct timeval tv;
struct timezone tz;
struct tm *p;
gettimeofday(&tv, &tz);
p = localtime(&tv.tv_sec);
printf("time_now:%d-%02d-%02d %02d:%02d:%02d.%06ld\n",
1900+p->tm_year, 1+p->tm_mon, p->tm_mday,
p->tm_hour, p->tm_min, p->tm_sec, tv.tv_usec);
}
void task(int task_id)
{
usleep(task_id);
printf("task_id:%d ", task_id);
print_time();
}
int main()
{
thread_pool tp;
for (int i = 1; i < 50; ++i)
{
task_data td;
td.fun = task;
td.task_id = i;
tp.submit(td);
}
tp.join();
return 0;
}
|
3c536a1b4113a880313654396f24b8f531bb3957
|
0bcd128368e2de959ca648960ffd7944067fcf27
|
/gm/filterbug.cpp
|
b4de6e2a48020bb56da9055008f4abde1f0d1056
|
[
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference"
] |
permissive
|
google/skia
|
ac6e39179cd33cf0c8a46d29c1a70bf78b4d74ee
|
bf6b239838d3eb56562fffd0856f4047867ae771
|
refs/heads/main
| 2023-08-31T21:03:04.620734
| 2023-08-31T18:24:15
| 2023-08-31T20:20:26
| 15,773,229
| 8,064
| 1,487
|
BSD-3-Clause
| 2023-09-11T13:42:07
| 2014-01-09T17:09:57
|
C++
|
UTF-8
|
C++
| false
| false
| 3,257
|
cpp
|
filterbug.cpp
|
/*
* Copyright 2016 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "gm/gm.h"
#include "include/core/SkBitmap.h"
#include "include/core/SkCanvas.h"
#include "include/core/SkColor.h"
#include "include/core/SkColorPriv.h"
#include "include/core/SkImage.h"
#include "include/core/SkImageInfo.h"
#include "include/core/SkMatrix.h"
#include "include/core/SkPaint.h"
#include "include/core/SkRect.h"
#include "include/core/SkRefCnt.h"
#include "include/core/SkShader.h"
#include "include/core/SkSize.h"
#include "include/core/SkString.h"
#include "include/core/SkTileMode.h"
static sk_sp<SkImage> make_image(int firstBlackRow, int lastBlackRow) {
static const int kWidth = 25;
static const int kHeight = 27;
SkBitmap bm;
bm.allocN32Pixels(kWidth, kHeight);
bm.eraseColor(SK_ColorWHITE);
for (int y = firstBlackRow; y < lastBlackRow; ++y) {
for (int x = 0; x < kWidth; ++x) {
*bm.getAddr32(x, y) = SkPackARGB32(0xFF, 0x0, 0x0, 0x0);
}
}
bm.setAlphaType(SkAlphaType::kOpaque_SkAlphaType);
bm.setImmutable();
return bm.asImage();
}
// GM to reproduce crbug.com/673261.
class FilterBugGM : public skiagm::GM {
public:
FilterBugGM() { this->setBGColor(SK_ColorRED); }
protected:
SkString getName() const override { return SkString("filterbug"); }
SkISize getISize() override { return SkISize::Make(150, 150); }
void onOnceBeforeDraw() override {
// The top texture has 5 black rows on top and then 22 white rows on the bottom
fTop = make_image(0, 5);
// The bottom texture has 5 black rows on the bottom and then 22 white rows on the top
fBot = make_image(22, 27);
}
void onDraw(SkCanvas* canvas) override {
static const SkSamplingOptions kSampling(SkCubicResampler::Mitchell());
static const bool kDoAA = true;
{
SkRect r1 = SkRect::MakeXYWH(50.0f, 0.0f, 50.0f, 50.0f);
SkPaint p1;
p1.setAntiAlias(kDoAA);
SkMatrix localMat;
localMat.setScaleTranslate(2.0f, 2.0f, 50.0f, 0.0f);
p1.setShader(fTop->makeShader(SkTileMode::kRepeat, SkTileMode::kRepeat,
kSampling, &localMat));
canvas->drawRect(r1, p1);
}
{
SkRect r2 = SkRect::MakeXYWH(50.0f, 50.0f, 50.0f, 36.0f);
SkPaint p2;
p2.setColor(SK_ColorWHITE);
p2.setAntiAlias(kDoAA);
canvas->drawRect(r2, p2);
}
{
SkRect r3 = SkRect::MakeXYWH(50.0f, 86.0f, 50.0f, 50.0f);
SkPaint p3;
p3.setAntiAlias(kDoAA);
SkMatrix localMat;
localMat.setScaleTranslate(2.0f, 2.0f, 50.0f, 86.0f);
p3.setShader(fBot->makeShader(SkTileMode::kRepeat, SkTileMode::kRepeat,
kSampling, &localMat));
canvas->drawRect(r3, p3);
}
}
private:
sk_sp<SkImage> fTop;
sk_sp<SkImage> fBot;
using INHERITED = skiagm::GM;
};
//////////////////////////////////////////////////////////////////////////////
DEF_GM(return new FilterBugGM;)
|
3e82ba22e875e21283005236af2ae38f6dfffa7a
|
7dcc325c38b27dfabd84d2c4816fbb94e1f15819
|
/BlackJack/deck.h
|
3bdc36048c2c7aaf9c9728224b21ba691149034d
|
[] |
no_license
|
cunundrummer/BlackJack
|
67cf38f9ccacb6d9c49e5537c683190c0d325ab2
|
c8f73c90c7483db98794ce91e11e36a01800bd5d
|
refs/heads/master
| 2021-01-18T21:12:57.117892
| 2016-05-17T18:52:31
| 2016-05-17T18:52:44
| 40,152,104
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 575
|
h
|
deck.h
|
//
// deck.h
// BlackJack
//
// Created by Leeran Pinckovich on 2015-05-07.
// Copyright (c) 2015 Compulsive Gamblers inc. All rights reserved.
//
#ifndef __BlackJack__deck__
#define __BlackJack__deck__
#include <iostream>
#include <algorithm>
#include "cardpile.h"
class Deck : public CardPile {
private:
const int MAX_CARDS_IN_A_DECK = 52;
int cardCount;
public:
Deck& operator=(Deck& other) {
this->_cardPile = other._cardPile;
return *this;
}
Deck(int numDecks = 0);
};
#endif /* defined(__BlackJack__deck__) */
|
a7e8d49a87454c90d332ef262bd4f989883dfd5a
|
e79923c9512ea2db4ff58a846da3f4101e9b25b1
|
/ftdidevice/ftdidevice.h
|
34f46accedc85532a43df08137f139f5efad462e
|
[] |
no_license
|
dostapazov/qtshared
|
a77a3b901b15ee803a25051e43aef73d01461a2f
|
d3d0f5eb1cbeeffe821b8c01cb07711079fac3c3
|
refs/heads/master
| 2022-07-29T20:35:13.442609
| 2022-07-12T20:07:50
| 2022-07-12T20:07:50
| 206,958,406
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,898
|
h
|
ftdidevice.h
|
#ifndef FTDIDEVICE_H
#define FTDIDEVICE_H
#include <QIODevice>
#include <QTimer>
#include "ftdilib.h"
class QFtdiNotifier;
class QFtdiDevice : public QIODevice
{
Q_OBJECT
public:
explicit QFtdiDevice(QObject *parent = Q_NULLPTR);
void set_params(QString ftdi_name, quint32 baudRate = FT_BAUD_921600, quint8 bits = FT_BITS_8
, quint8 stopBits = FT_STOP_BITS_1, quint8 parity = FT_PARITY_NONE
, quint16 flow = FT_FLOW_NONE, quint8 xon_char = 0, quint8 xoff_char = 0
);
virtual bool open(OpenMode mode) override;
virtual void close() override;
virtual qint64 pos() const override;
qint64 size() const override;
bool seek(qint64 pos) override;
bool atEnd() const override;
bool reset() override;
int poller_timeout () {return m_poller_timeout;}
void set_poller_timeout(int value){ m_poller_timeout = value;}
QString ftdiName();
qint64 bytesAvailable() const override;
qint64 bytesToWrite () const override;
FTDI_HANDLE_TYPE getHandle () ;
virtual bool isSequential() const override;
static QStringList scan();
static quint64 get_default_speed() {return m_default_speed;}
static void set_default_speed(quint64 spd) { m_default_speed = spd; }
protected:
qint64 do_read_data (char *data, quint32 maxlen);
virtual qint64 readData (char *data, qint64 maxlen) override;
virtual qint64 writeData(const char *data, qint64 len) override;
virtual void timerEvent(QTimerEvent * event) override;
virtual void check_for_read();
private:
mutable QByteArray m_rx_data;
int m_poller_timer_id = 0;
int m_poller_timeout = 10;
FTDI_HANDLE_TYPE handle;
QString m_ftdi_name;
quint32 m_baud = FT_BAUD_921600;
quint8 m_data_bits = FT_BITS_8;
quint8 m_stop_bits = FT_STOP_BITS_1;
quint8 m_parity = FT_PARITY_NONE;
quint16 m_flow = FT_FLOW_NONE;
quint8 m_xon_char = 0;
quint8 m_xoff_char = 0;
static quint64 m_default_speed ;
};
inline QString QFtdiDevice::ftdiName()
{
return m_ftdi_name;
}
inline FTDI_HANDLE_TYPE QFtdiDevice::getHandle(){return handle;}
inline bool QFtdiDevice::isSequential() const {return true;}
inline qint64 QFtdiDevice::pos() const
{ return 0;}
inline qint64 QFtdiDevice::size() const
{ return 0;}
inline bool QFtdiDevice::seek(qint64 pos)
{ Q_UNUSED(pos); return false;}
inline bool QFtdiDevice::atEnd() const
{ return false;}
inline bool QFtdiDevice::reset()
{ return false;}
inline qint64 QFtdiDevice::bytesToWrite() const
{ return 0;}
#endif // FTDIDEVICE_H
|
cfdf3091c113ab8da85d446ebe0abd0b74761ea6
|
845ee309254fe4521270ee0779ce41a0322c7fc0
|
/include/Runge-Kutta.hpp
|
1703f26f8fed0b700e96946ddc1b0cd779ddcb65
|
[
"MIT"
] |
permissive
|
pycckuu/reaction_network
|
90205312876323704acf764399fb524fad3f460d
|
7941b11e0bb228fa47107a9d48947b18ed5c75e6
|
refs/heads/master
| 2021-01-17T08:22:10.504656
| 2016-03-17T21:20:27
| 2016-03-17T21:20:27
| 18,650,082
| 0
| 1
| null | 2016-03-17T21:20:27
| 2014-04-10T20:06:43
|
C++
|
UTF-8
|
C++
| false
| false
| 186
|
hpp
|
Runge-Kutta.hpp
|
#ifndef RUNGEKUTTA_HPP
#define RUNGEKUTTA_HPP
#include "OdeSolver.hpp"
class RungeKutta : public OdeSolver {
public:
double SolveEquation();
};
#endif // RUNGEKUTTA_HPP
|
89c6ebdeb8d3b748582fe8cea0bb8d4f86f36fc2
|
cce0b23bf7e271a4d72bb7165bd2bbd7a1304eee
|
/homographysearch.cpp
|
605a3c3555eaedf46c53771fc74efa0310ba3bd8
|
[] |
no_license
|
Dannyyyy/ComputerVision
|
1b56a068e1da27e9fe0e596bdc4cc546d9a3f598
|
db4367b8d4e2d7b3b5e5bde771ed1124ba3a0f4c
|
refs/heads/master
| 2021-01-19T13:31:06.489699
| 2017-04-27T09:37:35
| 2017-04-27T09:37:35
| 82,393,971
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 4,545
|
cpp
|
homographysearch.cpp
|
#include <homographysearch.h>
#include <random>
using namespace std;
void calculateMatrixA(gsl_matrix *A, const vector<NearestDescriptors> &overlaps, const vector<int> &indexes)
{
const int sizeMatrixA = A->size1;
const int halfSize = sizeMatrixA/2;
for(int i=0; i<halfSize; i++)
{
const int index = indexes[i];
const double xR = overlaps[index].sY;
const double yR = overlaps[index].sX;
const double xL = overlaps[index].fY;
const double yL = overlaps[index].fX;
double rowF[] = {xR, yR, 1, 0, 0, 0, -xL*xR, -xL*yR, -xL};
double rowS[] = {0, 0, 0, xR, yR, 1, -yL*xR, -yL*yR, -yL};
for (int j = 0; j < 9; j++) {
const int doubleIndex = i*2;
gsl_matrix_set(A, doubleIndex, j, rowF[j]);
gsl_matrix_set(A, doubleIndex + 1, j, rowS[j]);
}
}
}
void putMatrixH(gsl_matrix* H, gsl_vector_view columnH)
{
auto vector = columnH.vector;
for(int i=0; i<3; i++){
for(int j=0; j<3; j++){
gsl_matrix_set(H,i,j,gsl_vector_get(&vector,i*3+j));
}
}
}
void dlt(gsl_matrix *A, gsl_matrix *AT, gsl_matrix *U, gsl_matrix *H)
{
gsl_vector* help1 = gsl_vector_alloc(3*3);
gsl_vector* help2 = gsl_vector_alloc(3*3);
gsl_blas_dgemm(CblasTrans, CblasNoTrans, 1.0, A, A, 0.0, AT);
gsl_linalg_SV_decomp(AT, U, help1, help2);
auto columnH = gsl_matrix_column(U, 8);
putMatrixH(H, columnH);
gsl_vector_free(help1);
gsl_vector_free(help2);
}
vector<int> getInliers(gsl_matrix* H, const vector<NearestDescriptors> overlaps, double treshold)
{
vector<int> currentInliers;
const int overlapsCount = overlaps.size();
for(int i=0; i<overlapsCount; i++)
{
const double xS = overlaps[i].sY;
const double yS = overlaps[i].sX;
const double xF = overlaps[i].fY;
const double yF = overlaps[i].fX;
double initial[3] = {xS, yS, 1.0};
double result[3];
gsl_vector_view resultVector = gsl_vector_view_array(result, 3);
gsl_vector_view initialVector = gsl_vector_view_array(initial, 3);
gsl_blas_dgemv(CblasNoTrans, 1.0, H, &initialVector.vector, 0.0, &resultVector.vector);
double scaleResult = result[2];
double xResult = result[0]/scaleResult;
double yResult = result[1]/scaleResult;
double distance = sqrt(pow(xF - xResult,2) + (yF - yResult,2));
if(distance < treshold)
{
currentInliers.emplace_back(i);
}
}
return currentInliers;
}
vector<double> HomographySearch::ransac(const vector<NearestDescriptors> &overlaps) {
const int overlapsCount = overlaps.size();
if(overlapsCount < 4){
return vector<double>(0);
}
gsl_matrix* A = gsl_matrix_alloc(8,9);
gsl_matrix* AT = gsl_matrix_alloc(9,9);
gsl_matrix* U = gsl_matrix_alloc(9,9);
gsl_matrix* H = gsl_matrix_alloc(3,3);
vector<double> wellTransform;
wellTransform.resize(9);
vector<int> wellInliers;
random_device randomDevice;
mt19937 mtRand(randomDevice());
vector<int> indexes(overlapsCount);
iota(indexes.begin(), indexes.end(), 0);
for (int repeat = 0; repeat < repeats; repeat++) {
shuffle(indexes.begin(), indexes.end(), mtRand);
calculateMatrixA(A, overlaps, indexes);
dlt(A, AT, U, H);
const double treshold = 5;
vector<int> currentInliers = getInliers(H, overlaps, treshold);
const int currentInliersCount = currentInliers.size();
const int wellInliersCount = wellInliers.size();
if(currentInliersCount > wellInliersCount)
{
wellInliers = currentInliers;
}
}
// уточнение модели
const int wellInliersCount = wellInliers.size();
const int wellInliersDoubleCount = wellInliersCount * 2;
gsl_matrix* resultA = gsl_matrix_alloc(wellInliersDoubleCount, 9);
gsl_matrix* resultAT = gsl_matrix_alloc(9,9);
calculateMatrixA(resultA, overlaps, wellInliers);
dlt(resultA, resultAT, U, H);
double scaleMatrix = gsl_matrix_get(H,2,2);
for(int i=0; i<3; i++){
for(int j=0; j<3; j++){
int index = j*3 + i;
double value = gsl_matrix_get(H, i, j);
wellTransform[index] = value/scaleMatrix;
}
}
gsl_matrix_free(A);
gsl_matrix_free(AT);
gsl_matrix_free(H);
gsl_matrix_free(U);
gsl_matrix_free(resultA);
gsl_matrix_free(resultAT);
return wellTransform;
}
|
7cb2cca740d9a3a8f9ffc86363c3f5b6e6fecddb
|
0f3c96b41f45c90803cf9db1af6c59b639c0a880
|
/pimsync/src/syncml/syncclient.cpp
|
fb1d1bfcea789f54d7b9835458a3df1022d35b7f
|
[] |
no_license
|
saschpe/qtopia-pimsync
|
978f2d56cf7ea8a4706bc9a46e79e5b3a007c65c
|
5ce6e1c6472de92cbe561d3e285bbbd2c44dd69a
|
refs/heads/master
| 2020-12-24T15:14:10.148506
| 2009-07-23T13:20:19
| 2009-07-23T13:20:19
| 699,927
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 9,598
|
cpp
|
syncclient.cpp
|
/****************************************************************************
**
** Copyright (C) 2000-2008 TROLLTECH ASA. All rights reserved.
**
** This file is part of the Phone Edition of the Qtopia Toolkit.
**
** Licensees holding a valid license agreement from Trolltech or any of its
** authorized distributors may use this file in accordance with
** the License Agreement provided with the Licensed Software.
**
** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for
** information about Trolltech's Commercial License Agreements.
**
** Contact info@trolltech.com if any conditions of this licensing are
** not clear to you.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
****************************************************************************/
#include "syncclient.h"
#include "../serverconfig.h"
#include "contactsyncsource.h"
#include "appointmentsyncsource.h"
#include "tasksyncsource.h"
#include "notesyncsource.h"
#include <spds/SyncManagerConfig.h>
#include <QtXml>
#include <QContent>
#include <QSettings>
#include <QUuid>
QtopiaSyncClient::QtopiaSyncClient()
: QObject(), SyncClient()
{
m_managerConfig = new SyncManagerConfig();
// Create a GUID for the current device once, used for identification
// with SyncML servers
QSettings cfg("Trolltech", "PimSync");
QUuid id = QUuid(cfg.value("Funambol/Device/Id").toString());
if (id.isNull()) {
id = QUuid::createUuid();
//qDebug() << "QtopiaSyncClient::QtopiaSyncClient() Generate device GUID:" << id.toString();
cfg.setValue("Device/Id", id.toString());
} else {
//qDebug() << "QtopiaSyncClient::QtopiaSyncClient() Using device GUID:" << id.toString();
}
AccessConfig* ac = new AccessConfig();
ac->setUsername ("");
ac->setPassword ("");
ac->setFirstTimeSyncMode (SYNC_NONE);
//ac->setFirstTimeSyncMode (SYNC_SLOW);
ac->setUseProxy (FALSE);
//ac->setProxyHost ("");
//ac->setProxyPort (8080);
//ac->setProxyUsername ("");
//ac->setProxyPassword ("");
ac->setSyncURL ("http://localhost:8080/funambol/ds");
ac->setBeginSync (0);
ac->setEndSync (0);
ac->setServerAuthRequired (FALSE);
ac->setClientAuthType ("syncml:auth-basic");
ac->setServerAuthType ("syncml:auth-basic");
ac->setServerPWD ("funambol");
ac->setServerID ("funambol");
ac->setServerNonce ("");
ac->setClientNonce ("");
ac->setMaxMsgSize (10000);
ac->setReadBufferSize (0);
ac->setUserAgent ("");
ac->setCheckConn (TRUE);
ac->setResponseTimeout (0);
m_managerConfig->setAccessConfig(*ac);
delete ac;
// Customize for specific device
DeviceConfig* dc = new DeviceConfig();
//dc->setVerDTD ("1.1");
dc->setMan ("Trolltech");
dc->setMod ("");
dc->setOem ("");
dc->setFwv ("");
dc->setSwv ("");
dc->setHwv ("");
dc->setDevID (id.toString().toAscii()); // This should be a GUID
dc->setDevType ("smartphone"); // Or pda,handheld,server,workstation,pager,phone
dc->setDsV ("");
dc->setUtc (TRUE);
dc->setLoSupport (FALSE);
dc->setNocSupport (FALSE);
dc->setLogLevel (LOG_LEVEL_NONE);
//dc->setLogLevel (LOG_LEVEL_DEBUG);
dc->setMaxObjSize (0);
dc->setDevInfHash ("");
m_managerConfig->setDeviceConfig(*dc);
delete dc;
}
QtopiaSyncClient::~QtopiaSyncClient()
{
if (m_managerConfig)
delete m_managerConfig;
}
bool QtopiaSyncClient::sync(ServerConfig *profile)
{
m_managerConfig->getAccessConfig().setUsername(profile->transportUser().toAscii());
m_managerConfig->getAccessConfig().setPassword(profile->transportPassword().toAscii());
m_managerConfig->getAccessConfig().setSyncURL(profile->transportUrl().toAscii());
// This is more or less a direkt mapping of supported sync modes
AbstractSyncSourceConfig2::Mode mode = AbstractSyncSourceConfig2::TwoWay;
switch (profile->mode()) {
case ServerConfig::Slow: mode = AbstractSyncSourceConfig2::Slow; break;
case ServerConfig::TwoWay: mode = AbstractSyncSourceConfig2::TwoWay; break;
case ServerConfig::OneWayFromServer: mode = AbstractSyncSourceConfig2::OneWayFromServer; break;
case ServerConfig::OneWayFromClient: mode = AbstractSyncSourceConfig2::OneWayFromClient; break;
case ServerConfig::RefreshFromServer: mode = AbstractSyncSourceConfig2::RefreshFromServer; break;
case ServerConfig::RefreshFromClient: mode = AbstractSyncSourceConfig2::RefreshFromClient; break;
}
int index = 0;
SyncSource *sourcesArray[] = {NULL, NULL, NULL, NULL, NULL}; // count sources + 1 -> '\0' terminated array
ContactSyncSource *contactSource = NULL;
if (profile->sourceEnabled(ServerConfig::Contacts)) {
ContactSyncSourceConfig *contactConfig = new ContactSyncSourceConfig(mode,
profile->sourceLastSync(ServerConfig::Contacts), profile->sourceUrl(ServerConfig::Contacts).toAscii());
contactSource = new ContactSyncSource(contactConfig, m_managerConfig);
sourcesArray[index++] = contactSource;
}
TaskSyncSource *taskSource = NULL;
if (profile->sourceEnabled(ServerConfig::Tasks)) {
TaskSyncSourceConfig *taskConfig = new TaskSyncSourceConfig(mode,
profile->sourceLastSync(ServerConfig::Tasks), profile->sourceUrl(ServerConfig::Tasks).toAscii());
taskSource = new TaskSyncSource(taskConfig, m_managerConfig);
sourcesArray[index++] = taskSource;
}
AppointmentSyncSource *appointmentSource = NULL;
if (profile->sourceEnabled(ServerConfig::Appointments)) {
AppointmentSyncSourceConfig *appointmentConfig = new AppointmentSyncSourceConfig(mode,
profile->sourceLastSync(ServerConfig::Appointments), profile->sourceUrl(ServerConfig::Appointments).toAscii());
appointmentSource = new AppointmentSyncSource(appointmentConfig, m_managerConfig);
sourcesArray[index++] = appointmentSource;
}
NoteSyncSource *noteSource = NULL;
if (profile->sourceEnabled(ServerConfig::Notes)) {
NoteSyncSourceConfig *noteConfig = new NoteSyncSourceConfig(mode,
profile->sourceLastSync(ServerConfig::Notes), profile->sourceUrl(ServerConfig::Notes).toAscii());
noteSource = new NoteSyncSource(noteConfig, m_managerConfig);
sourcesArray[index++] = noteSource;
}
if (SyncClient::sync(*m_managerConfig, sourcesArray) == 0) {
if (profile->sourceEnabled(ServerConfig::Contacts))
profile->setSourceLastSync(ServerConfig::Contacts, contactSource->lastSync());
if (profile->sourceEnabled(ServerConfig::Tasks))
profile->setSourceLastSync(ServerConfig::Tasks, taskSource->lastSync());
if (profile->sourceEnabled(ServerConfig::Appointments))
profile->setSourceLastSync(ServerConfig::Appointments, appointmentSource->lastSync());
if (profile->sourceEnabled(ServerConfig::Notes))
profile->setSourceLastSync(ServerConfig::Notes, noteSource->lastSync());
profile->save();
return true;
}
return false;
}
QString QtopiaSyncClient::syncReport()
{
StringBuffer res;
SyncClient::getSyncReport()->toString(res);
return QString(res);
}
QString QtopiaSyncClient::results()
{
QString str;
for (unsigned int i = 0; getSyncReport()->getSyncSourceReport(i); i++) {
SyncSourceReport *ssr = getSyncReport()->getSyncSourceReport(i);
if (ssr->getState() == SOURCE_INACTIVE)
continue;
str += tr("Results for ") + QString(ssr->getSourceName()) + "s:\n";
str += tr(" client server\n");
str += " " + QString::number(ssr->getItemReportSuccessfulCount(CLIENT, COMMAND_ADD)) +
" / " + QString::number(ssr->getItemReportCount(CLIENT, COMMAND_ADD)) + " | ";
str += " " + QString::number(ssr->getItemReportSuccessfulCount(SERVER, COMMAND_ADD)) +
" / " + QString::number(ssr->getItemReportCount(SERVER, COMMAND_ADD)) + tr(" new\n");
str += " " + QString::number(ssr->getItemReportSuccessfulCount(CLIENT, COMMAND_REPLACE)) +
" / " + QString::number(ssr->getItemReportCount(CLIENT, COMMAND_REPLACE)) + " | ";
str += " " + QString::number(ssr->getItemReportSuccessfulCount(SERVER, COMMAND_REPLACE)) +
" / " + QString::number(ssr->getItemReportCount(SERVER, COMMAND_REPLACE)) + tr(" modified\n");
str += " " + QString::number(ssr->getItemReportSuccessfulCount(CLIENT, COMMAND_DELETE)) +
" / " + QString::number(ssr->getItemReportCount(CLIENT, COMMAND_DELETE)) + " | ";
str += " " + QString::number(ssr->getItemReportSuccessfulCount(SERVER, COMMAND_DELETE)) +
" / " + QString::number(ssr->getItemReportCount(SERVER, COMMAND_DELETE)) + tr(" deleted\n\n");
}
return str;
}
QString QtopiaSyncClient::error()
{
return getSyncReport()->getLastErrorMsg();
}
|
00c610431569437a77cc5a64087b1e3d8ef0dd5e
|
4fac684af53fce28aecec08a88026d3ff76689b2
|
/Lava/src/Camera.h
|
40fcb160fa64e6e26c8c7827e8e29dc5412c82e4
|
[] |
no_license
|
ivan-gil-dev/lavaEngine
|
ff2731e35401b849eb394b49e71220bf6773104d
|
e7defac9ead077aa929ae1b13b2bbbbe23c62911
|
refs/heads/master
| 2023-06-04T14:18:23.676592
| 2020-09-12T12:17:57
| 2020-09-12T12:17:57
| 294,929,976
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,833
|
h
|
Camera.h
|
#pragma once
#include "../vendor/glm/glm.hpp"
#include "../vendor/glm/gtc/matrix_transform.hpp"
#include "DataTypes.h"
#include <GLFW/glfw3.h>
namespace Lava{
class Camera {
glm::vec3 cameraPos;
glm::vec3 cameraUp;
glm::mat4 projectionMatrix;
double yaw, pitch;
glm::vec3 cameraFront;
public:
bool firstMouse;
Camera() {
firstMouse = true;
cameraPos = glm::vec3(0.0f, 6.0f, -15.0f);
cameraFront = glm::vec3(0.0f, -2.0f, -1.0f);
cameraUp = glm::vec3(0.0f, 1.0f, 0.0f);
yaw = 90.0f;
pitch = -30.0f;
projectionMatrix = glm::perspective(glm::radians(80.0f), ((float)WIDTH /HEIGHT), 0.1f, 1000.0f);
glm::vec3 direction;
direction.x = glm::cos(glm::radians((float)yaw)) * glm::cos(glm::radians((float)pitch));
direction.y = glm::sin(glm::radians((float)pitch));
direction.z = glm::sin(glm::radians((float)yaw)) * glm::cos(glm::radians((float)pitch));
cameraFront = glm::normalize(direction);
}
glm::mat4 getView() {
return glm::lookAt(cameraPos, cameraPos + cameraFront, cameraUp);
}
glm::mat4 getCubemapView(){
glm::vec3 cubemapFront = cameraFront;
cubemapFront.y *= -1;
return glm::lookAt(cameraPos, (cameraPos + cubemapFront), cameraUp);
}
glm::vec3 getPosition() {
return cameraPos;
}
void cursorUpdate(double xoffset, double yoffset) {
float sensitivity = 0.1f;
xoffset *= sensitivity;
yoffset *= sensitivity;
yaw += xoffset;
pitch += yoffset;
if (pitch > 89.0f)
pitch = 89.0f;
if (pitch < -89.0f)
pitch = -89.0f;
glm::vec3 direction;
direction.x = glm::cos(glm::radians((float)yaw)) * glm::cos(glm::radians((float)pitch));
direction.y = glm::sin(glm::radians((float)pitch));
direction.z = glm::sin(glm::radians((float)yaw)) * glm::cos(glm::radians((float)pitch));
cameraFront = glm::normalize(direction);
}
void processInput(GLFWwindow* window, double deltaTime) {
float moveSpeed = 6.25f;
float fasterMoveSpeed = 10.f;
if (glfwGetKey(window, GLFW_KEY_A) == GLFW_PRESS) {
cameraPos -= glm::normalize(glm::cross(cameraFront, cameraUp)) * moveSpeed * (float)deltaTime;
}
if (glfwGetKey(window, GLFW_KEY_A) == GLFW_PRESS && glfwGetKey(window, GLFW_KEY_LEFT_SHIFT) == GLFW_PRESS) {
cameraPos -= glm::normalize(glm::cross(cameraFront, cameraUp)) * fasterMoveSpeed * (float)deltaTime;
}
if (glfwGetKey(window, GLFW_KEY_D) == GLFW_PRESS) {
cameraPos += glm::normalize(glm::cross(cameraFront, cameraUp)) * moveSpeed * (float)deltaTime;
}
if (glfwGetKey(window, GLFW_KEY_W) == GLFW_PRESS) {
cameraPos += moveSpeed * cameraFront * (float)deltaTime;
}
if (glfwGetKey(window, GLFW_KEY_S) == GLFW_PRESS) {
cameraPos -= moveSpeed * cameraFront * (float)deltaTime;
}
}
glm::mat4 getProjectionMatrix(){
return projectionMatrix;
}
}camera;
}
|
12fae066a60a8f4e46090102b75d934b61ef2748
|
54b9e493500440edbcd8a3fac8876260f25c4d92
|
/friends_of_a_class/main.cpp
|
d98007bdfffc1505e9055fea6c4b152650e297df
|
[] |
no_license
|
element2112/cpp_udemy_course
|
3f35b117b7f007385d560ceeb2002eff3c0d47c8
|
23f1fdf78e15f7725716fc5e39925f8010f9fc90
|
refs/heads/master
| 2022-08-19T14:34:17.634055
| 2020-05-25T23:55:23
| 2020-05-25T23:55:23
| 252,863,739
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,302
|
cpp
|
main.cpp
|
#include <iostream>
/* FRIENDS OF A CLASS
*
* Friendship must be granted NOT taken
* Declared explicityly in the class that is granting friendship
* Declared in the function prototype with the keyword friend
*
* Friendship is not symmetric
* Must be explicity granted
* if A is a friend of B
* B is NOT a friend of A
*
* Friendship is not transitive
* Must be explicitly granted
* If A is a friend of B AND
* B is a friend of C
* then A is NOT a friend of C
*
* Friendship is not inherited
*/
class Other_class
{
int data;
int more_data;
public:
void display_player(Player &p)
{
std::cout << p.name << std::endl;
std::cout << p.health << std::endl;
std::cout << p.xp << std::endl;
}
};
class Player
{
private:
std::string name;
int health;
int xp;
friend void display(Player &p);
friend void Other_class::display_player(Player &p);
friend class Other_class; // all the methods in Other_class now have access to all data in Player class
};
// can also change these values now
void display(Player &p)
{
std::cout << p.name << std::endl;
std::cout << p.health << std::endl;
std::cout << p.xp << std::endl;
}
int main()
{
return 0;
}
|
931ab467ed5955cb5c7e68010b65789f8a7c34ee
|
ac4e161fb67df73eaf52852d6dadf4b53520a6f7
|
/game_server/game/cards/locations/LocationCard.cpp
|
f94119d1bb11be0fe9f7686889dd25255e321d20
|
[] |
no_license
|
Neomer/pathfinder
|
b1e9428cf257030c00acdbb0bf2fcd8187ddc84f
|
fb6d097a05ad9e2b3a041cbd128d8eb230637d25
|
refs/heads/master
| 2023-01-07T16:17:09.305521
| 2019-07-01T04:38:22
| 2019-07-01T04:38:22
| 193,769,019
| 0
| 0
| null | 2023-01-07T07:01:46
| 2019-06-25T19:15:44
|
C++
|
UTF-8
|
C++
| false
| false
| 1,424
|
cpp
|
LocationCard.cpp
|
//
// Created by vinokurov on 29.06.2019.
//
#include "LocationCard.h"
#include "../../CardMetadataProvider.h"
using namespace std::string_literals;
CardMetadata::CardType LocationCardMetadata::getCardType() const {
return CardType::Location;
}
void LocationCardMetadata::load() {
}
void LocationCardMetadata::toJson(nlohmann::json &json) const {
CardMetadata::toJson(json);
}
void LocationCard::createDeck() {
auto metadata = dynamic_cast<const LocationCardMetadata *>(CardMetadataProvider::getInstance().getMetadata(getTypeId()));
if (metadata == nullptr) {
throw std::runtime_error("Metadata for type"s + std::to_string(getTypeId()) + " not found!");
}
auto deckDescription = metadata->getLocationDeck();
for(auto cardsOfType : deckDescription) {
auto metadataList = CardMetadataProvider::getInstance().getMetadata(
[cardsOfType](const CardMetadata *metadata) -> bool {
return metadata->getCardType() == cardsOfType.second;
});
auto collectionSize = metadataList.size();
if (collectionSize > 0) {
while (cardsOfType.first-- > 0) {
auto item = rand() % collectionSize;
_deck.push_back(metadataList.at(item)->createInstance());
}
}
}
}
void LocationCard::toJson(nlohmann::json &json) const {
json["Deck"]["Size"] = _deck.size();
}
|
cd2aec9c82b996178022bdfbe8ae6577a30b7559
|
4eaab46d2ae7395ca8c273e80bdae779368d68c3
|
/Contest 6/U_so_luong_hon_dao.cpp
|
e9d167155f6f71c14ce40c5cdf7bb2df1a375199
|
[] |
no_license
|
ngoquanghuy99/Data-structures-Algorithms-problems-and-solutions
|
b96f15f2245d66f8914ebb1552e7540cd610c400
|
95bb1dba201f94b23ff6a45344ada2b9f64597aa
|
refs/heads/master
| 2022-12-25T04:49:39.605637
| 2020-10-06T15:48:45
| 2020-10-06T15:48:45
| 272,522,675
| 4
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,233
|
cpp
|
U_so_luong_hon_dao.cpp
|
#include <iostream>
#include <string>
#include <cstring>
int t, n, m;
using namespace std;
int a[1001][1001];
int iss(int a[][1001], int r, int c, bool visited[][1001]){
// return if row, col are in range and the value is 1 && not visited
return ((r >= 1 && r <= n) && (c >= 1 && c <= m) && a[r][c] && !visited[r][c]);
}
// DFS with only 8 adjacent vertices
void DFS(int a[][1001], int r, int c, bool visited[][1001]){
static int rowN[] = {-1, -1, -1, 0, 0, 1, 1, 1};
static int colN[] = {-1, 0, 1, -1, 1, -1, 0, 1};
// mark this cell as visited
visited[r][c] = true;
// recursionn for all connected neighbors
for(int k = 1; k <= 8; k++)
if(iss(a, r + rowN[k], c + colN[k], visited))
DFS(a, r + rowN[k], c + colN[k], visited);
}
int counting(int a[][1001]){
// create bool array to mark visited cells
bool visited[1001][1001];
memset(visited, false, sizeof(visited));
int dem = 0;
for(int i = 1; i <= n; i++)
for(int j = 1; j <= m; j++){
if(a[i][j] && !visited[i][j]){
dem++;
DFS(a,i,j,visited);
}
}
return dem;
}
int main(){
cin >> t;
while (t--){
cin >> n >> m;
for(int i = 1; i <= n; i++)
for(int j = 1; j <= m; j++)
cin >> a[i][j];
cout << counting(a) << endl;
}
return 0;
}
|
e94cb15ddcdde0ed63cf6def5d97ad866637618a
|
49c69709e7f856ba0f1f1875210837359dfcd125
|
/lz/290_blinking_leds/Private/RecognizeState.cpp
|
d00e60733dfa364030ab5615426c4a3e97ecab1a
|
[] |
no_license
|
NadzwyczajnaGrupaRobocza/papuc_exercises
|
1198139567928e72c399d34bfebf9d5b0c77ee61
|
099ab051d1bcce32090e2078e7e64d2c52e23aa8
|
refs/heads/master
| 2020-05-21T16:41:25.999334
| 2018-02-02T18:06:32
| 2018-02-02T18:06:32
| 61,226,420
| 1
| 7
| null | 2018-02-02T17:45:28
| 2016-06-15T17:19:13
|
C++
|
UTF-8
|
C++
| false
| false
| 494
|
cpp
|
RecognizeState.cpp
|
#include "RecognizeState.hpp"
#include "LedToken.hpp"
#include <iostream>
namespace lz
{
RecognizeState::RecognizeState()
: commands{{"ld", LedTokenState::LedLdCommand},
{"out", LedTokenState::LedOutCommand}}
{
}
LedTokenState RecognizeState::parse(const LedToken& token)
{
try
{
return commands.at(token.str());
}
catch (std::out_of_range&)
{
std::cerr << "Command is not recognized: " << token.str() << ".\n";
throw;
}
}
}
|
e56f1c9369ba0e206d47c061fb6c7933fb27da7b
|
08a6c08ef8377b92d31ed32360a7e57e98781e96
|
/Platform.h
|
3d20dd8f1e1c44dfc4993e832b3a2c07377bf53e
|
[] |
no_license
|
Muhammadtayyab596/Taxi-Game-Managment-C-
|
e2740a873d63bc2b0c81eff22d366a4508b54c8b
|
bdd5648969984d7dffdf8aea0f8de3ec046cdea9
|
refs/heads/master
| 2022-12-13T01:37:07.623130
| 2020-09-13T14:26:15
| 2020-09-13T14:26:15
| 295,167,208
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 375
|
h
|
Platform.h
|
#ifndef Included_Platform_H
#define Included_Platform_H
#include<iostream>
#include<string>
using namespace std;
class Platform
{
private:
string name;
string id;
string ip_address;
static int numb;
public:
Platform();
Platform(string, string, string);
void display();
void PrintData();
};
#endif // Included_Platform_H
|
d462fcd881d81778191197943d08929401fe03e7
|
7fb3d724b38f956ea549fd9c250eb2fd5b2b8a23
|
/src/tiled/objectsdock.cpp
|
b179033ae0f5096ae562ef24daccac99306155e2
|
[] |
no_license
|
chenzujiang/tiled-map-editor
|
b355bdde79d836f1af669891612a9b5275ecb3bd
|
28dc164c625bbfdb0e39f6e6b4bdc5aac70ae3dc
|
refs/heads/master
| 2021-04-14T07:46:58.014886
| 2020-03-22T15:50:12
| 2020-03-22T15:50:12
| 249,216,650
| 1
| 0
| null | null | null | null |
GB18030
|
C++
| false
| false
| 17,529
|
cpp
|
objectsdock.cpp
|
/*
* objectsdock.cpp
* Copyright 2012, Tim Baker <treectrl@hotmail.com>
*
* This file is part of Tiled.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
* Software Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "objectsdock.h"
#include "documentmanager.h"
#include "grouplayer.h"
#include "map.h"
#include "mapdocument.h"
#include "mapdocumentactionhandler.h"
#include "mapobject.h"
#include "mapobjectmodel.h"
#include "objectgroup.h"
#include "preferences.h"
#include "reversingproxymodel.h"
#include "utils.h"
#include "iconcheckdelegate.h"
#include <QApplication>
#include <QBoxLayout>
#include <QContextMenuEvent>
#include <QHeaderView>
#include <QLabel>
#include <QMenu>
#include <QPainter>
#include <QSettings>
#include <QToolBar>
#include <QToolButton>
#include <QUrl>
static const char FIRST_COLUMN_WIDTH_KEY[] = "ObjectsDock/FirstSectionSize";
static const char VISIBLE_COLUMNS_KEY[] = "ObjectsDock/VisibleSections";
using namespace Tiled;
using namespace Tiled::Internal;
ObjectsDock::ObjectsDock(QWidget *parent)
: QDockWidget(parent)
, mObjectsView(new ObjectsView)
, mMapDocument(nullptr)
{
setObjectName(QLatin1String("ObjectsDock"));
mActionObjectProperties = new QAction(this);
mActionObjectProperties->setIcon(QIcon(QLatin1String(":/images/16x16/document-properties.png")));
connect(mActionObjectProperties, &QAction::triggered,
this, &ObjectsDock::objectProperties);
MapDocumentActionHandler *handler = MapDocumentActionHandler::instance();
QWidget *widget = new QWidget(this);
QVBoxLayout *layout = new QVBoxLayout(widget);
layout->setMargin(0);
layout->setSpacing(0);
layout->addWidget(mObjectsView);
mActionNewLayer = new QAction(this);
mActionNewLayer->setIcon(QIcon(QLatin1String(":/images/16x16/document-new.png")));
connect(mActionNewLayer, &QAction::triggered,
handler->actionAddObjectGroup(), &QAction::trigger);
mActionMoveToGroup = new QAction(this);
mActionMoveToGroup->setIcon(QIcon(QLatin1String(":/images/16x16/layer-object.png")));
mActionMoveUp = new QAction(this);
mActionMoveUp->setIcon(QIcon(QLatin1String(":/images/16x16/go-up.png")));
mActionMoveDown = new QAction(this);
mActionMoveDown->setIcon(QIcon(QLatin1String(":/images/16x16/go-down.png")));
Utils::setThemeIcon(mActionObjectProperties, "document-properties");
Utils::setThemeIcon(mActionMoveUp, "go-up");
Utils::setThemeIcon(mActionMoveDown, "go-down");
QToolBar *toolBar = new QToolBar;
toolBar->setFloatable(false);//This property holds whether the toolbar is an independent window.
toolBar->setMovable(false);//:这个属性包含工具栏是否可以作为一个独立的窗口被拖放
toolBar->setIconSize(Utils::smallIconSize());
toolBar->addAction(mActionNewLayer);
toolBar->addAction(handler->actionDuplicateObjects());
toolBar->addAction(handler->actionRemoveObjects());
toolBar->addAction(mActionMoveUp);
toolBar->addAction(mActionMoveDown);
toolBar->addAction(mActionMoveToGroup);
QToolButton *button;
button = dynamic_cast<QToolButton*>(toolBar->widgetForAction(mActionMoveToGroup));
mMoveToMenu = new QMenu(this);
button->setPopupMode(QToolButton::InstantPopup);
button->setMenu(mMoveToMenu);
connect(mMoveToMenu, &QMenu::aboutToShow, this, &ObjectsDock::aboutToShowMoveToMenu);
connect(mMoveToMenu, &QMenu::triggered, this, &ObjectsDock::triggeredMoveToMenu);
toolBar->addAction(mActionObjectProperties);
layout->addWidget(toolBar);
setWidget(widget);
retranslateUi();
connect(DocumentManager::instance(), &DocumentManager::documentAboutToClose,
this, &ObjectsDock::documentAboutToClose);
connect(mActionMoveUp, &QAction::triggered, this, &ObjectsDock::moveObjectsUp);
connect(mActionMoveDown, &QAction::triggered, this, &ObjectsDock::moveObjectsDown);
}
void ObjectsDock::moveObjectsUp()
{
if (mMapDocument)
mMapDocument->moveObjectsUp(mMapDocument->selectedObjects());
}
void ObjectsDock::moveObjectsDown()
{
if (mMapDocument)
mMapDocument->moveObjectsDown(mMapDocument->selectedObjects());
}
void ObjectsDock::setMapDocument(MapDocument *mapDoc)
{
if (mMapDocument) {
saveExpandedGroups();
mMapDocument->disconnect(this);
}
mMapDocument = mapDoc;
mObjectsView->setMapDocument(mapDoc);
if (mMapDocument) {
restoreExpandedGroups();
connect(mMapDocument, &MapDocument::selectedObjectsChanged,
this, &ObjectsDock::updateActions);
}
updateActions();
}
void ObjectsDock::changeEvent(QEvent *e)
{
QDockWidget::changeEvent(e);
switch (e->type()) {
case QEvent::LanguageChange:
retranslateUi();
break;
default:
break;
}
}
void ObjectsDock::retranslateUi()
{
setWindowTitle(tr("Objects"));
mActionNewLayer->setToolTip(tr("Add Object Layer"));
mActionObjectProperties->setToolTip(tr("Object Properties"));
mActionMoveUp->setToolTip(tr("Move Objects Up"));
mActionMoveDown->setToolTip(tr("Move Objects Down"));
updateActions();
}
void ObjectsDock::updateActions()
{
int selectedObjectsCount = 0;
int objectGroupCount = 0;
if (mMapDocument) {
selectedObjectsCount = mMapDocument->selectedObjects().count();
objectGroupCount = mMapDocument->map()->objectGroupCount();
}
mActionObjectProperties->setEnabled(selectedObjectsCount > 0);
mActionMoveToGroup->setEnabled(selectedObjectsCount > 0 && objectGroupCount >= 2);
mActionMoveToGroup->setToolTip(tr("Move %n Object(s) to Layer", "", selectedObjectsCount));
mActionMoveUp->setEnabled(selectedObjectsCount > 0);
mActionMoveDown->setEnabled(selectedObjectsCount > 0);
}
void ObjectsDock::aboutToShowMoveToMenu()
{
mMoveToMenu->clear();
for (Layer *layer : mMapDocument->map()->objectGroups()) {
QAction *action = mMoveToMenu->addAction(layer->name());
action->setData(QVariant::fromValue(static_cast<ObjectGroup*>(layer)));
}
}
void ObjectsDock::triggeredMoveToMenu(QAction *action)
{
MapDocumentActionHandler *handler = MapDocumentActionHandler::instance();
ObjectGroup *objectGroup = action->data().value<ObjectGroup*>();
handler->moveObjectsToGroup(objectGroup);
}
void ObjectsDock::objectProperties()
{
const auto &selectedObjects = mMapDocument->selectedObjects();
mMapDocument->setCurrentObject(selectedObjects.first());
emit mMapDocument->editCurrentObject();
}
//保存扩充的组
void ObjectsDock::saveExpandedGroups()
{
mExpandedGroups[mMapDocument].clear();
const auto proxyModel = static_cast<QAbstractProxyModel*>(mObjectsView->model());
for (Layer *layer : mMapDocument->map()->objectGroups()) {
const QModelIndex sourceIndex = mMapDocument->mapObjectModel()->index(layer);
const QModelIndex index = proxyModel->mapFromSource(sourceIndex);
if (mObjectsView->isExpanded(index))
mExpandedGroups[mMapDocument].append(layer);
}
}
void ObjectsDock::restoreExpandedGroups()
{
const auto objectGroups = mExpandedGroups.take(mMapDocument);
for (Layer *layer : objectGroups) {
const QModelIndex sourceIndex = mMapDocument->mapObjectModel()->index(layer);
const QModelIndex index = static_cast<QAbstractProxyModel*>(mObjectsView->model())->mapFromSource(sourceIndex);
mObjectsView->setExpanded(index, true);
}
}
void ObjectsDock::documentAboutToClose(Document *document)
{
if (MapDocument *mapDocument = qobject_cast<MapDocument*>(document))
mExpandedGroups.remove(mapDocument);
}
///// ///// ///// ///// /////
class ObjectsViewport : public QWidget
{
Q_OBJECT
public:
ObjectsViewport(QWidget *parent = nullptr)
: QWidget(parent)
{}
signals:
void mouseLeft();
protected:
void leaveEvent(QEvent *) override { emit mouseLeft(); }
};
ObjectsView::ObjectsView(QWidget *parent)
: QTreeView(parent)
, mMapDocument(nullptr)
, mProxyModel(new ReversingProxyModel(this))
, mSynching(false)
{
auto objectsViewport = new ObjectsViewport;
connect(objectsViewport, &ObjectsViewport::mouseLeft, this, [this] {
if (mMapDocument)
mMapDocument->setHoveredMapObject(nullptr);
});
setViewport(objectsViewport);
setMouseTracking(true);
setUniformRowHeights(true);
setModel(mProxyModel);
setItemDelegate(new IconCheckDelegate(IconCheckDelegate::VisibilityIcon, false, this));
setSelectionBehavior(QAbstractItemView::SelectRows);
setSelectionMode(QAbstractItemView::ExtendedSelection);
connect(this, &QAbstractItemView::activated, this, &ObjectsView::onActivated);
connect(header(), &QHeaderView::sectionResized,
this, &ObjectsView::onSectionResized);
header()->setContextMenuPolicy(Qt::CustomContextMenu);
connect(header(), &QWidget::customContextMenuRequested,
this, &ObjectsView::showCustomHeaderContextMenu);
}
QSize ObjectsView::sizeHint() const
{
return Utils::dpiScaled(QSize(130, 100));
}
void ObjectsView::setMapDocument(MapDocument *mapDoc)
{
if (mapDoc == mMapDocument)
return;
if (mMapDocument)
mMapDocument->disconnect(this);
mMapDocument = mapDoc;
if (mMapDocument) {
mProxyModel->setSourceModel(mMapDocument->mapObjectModel());
const QSettings *settings = Preferences::instance()->settings();
const int firstColumnWidth =
settings->value(QLatin1String(FIRST_COLUMN_WIDTH_KEY), 200).toInt();
setColumnWidth(0, firstColumnWidth);
connect(mMapDocument, &MapDocument::selectedObjectsChanged,
this, &ObjectsView::selectedObjectsChanged);
connect(mMapDocument, &MapDocument::hoveredMapObjectChanged,
this, &ObjectsView::hoveredObjectChanged);
restoreVisibleColumns();
synchronizeSelectedItems();
} else {
mProxyModel->setSourceModel(nullptr);
}
}
MapObjectModel *ObjectsView::mapObjectModel() const
{
return mMapDocument ? mMapDocument->mapObjectModel() : nullptr;
}
bool ObjectsView::event(QEvent *event)
{
if (event->type() == QEvent::ShortcutOverride) {
if (static_cast<QKeyEvent *>(event)->key() == Qt::Key_Tab) {
if (indexWidget(currentIndex())) {
event->accept();
return true;
}
}
}
return QTreeView::event(event);
}
void ObjectsView::mousePressEvent(QMouseEvent *event)
{
const QModelIndex proxyIndex = indexAt(event->pos());
const QModelIndex index = mProxyModel->mapToSource(proxyIndex);
if (MapObject *mapObject = mapObjectModel()->toMapObject(index)) {
mMapDocument->setCurrentObject(mapObject);
if (event->button() == Qt::LeftButton && !event->modifiers()) {
const QPointF center = mapObject->bounds().center();
const QPointF offset = mapObject->objectGroup()->totalOffset();
DocumentManager::instance()->centerMapViewOn(center + offset);
}
} else if (Layer *layer = mapObjectModel()->toLayer(index)) {
mMapDocument->setCurrentObject(layer);
mMapDocument->setCurrentLayer(layer);
}
QTreeView::mousePressEvent(event);
}
void ObjectsView::mouseMoveEvent(QMouseEvent *event)
{
if (!mMapDocument)
return;
const QModelIndex proxyIndex = indexAt(event->pos());
const QModelIndex index = mProxyModel->mapToSource(proxyIndex);
MapObject *mapObject = mapObjectModel()->toMapObject(index);
mMapDocument->setHoveredMapObject(mapObject);
}
void ObjectsView::onActivated(const QModelIndex &proxyIndex)
{
const QModelIndex index = mProxyModel->mapToSource(proxyIndex);
if (MapObject *mapObject = mapObjectModel()->toMapObject(index)) {
mMapDocument->setCurrentObject(mapObject);
const QPointF center = mapObject->bounds().center();
const QPointF offset = mapObject->objectGroup()->totalOffset();
DocumentManager::instance()->centerMapViewOn(center + offset);
}
}
void ObjectsView::onSectionResized(int logicalIndex)
{
if (logicalIndex != 0)
return;
QSettings *settings = Preferences::instance()->settings();
settings->setValue(QLatin1String(FIRST_COLUMN_WIDTH_KEY),
columnWidth(0));
}
void ObjectsView::selectionChanged(const QItemSelection &selected,
const QItemSelection &deselected)
{
QTreeView::selectionChanged(selected, deselected);
if (!mMapDocument || mSynching)
return;
const QModelIndexList selectedProxyRows = selectionModel()->selectedRows();
QList<MapObject*> selectedObjects;
for (const QModelIndex &proxyIndex : selectedProxyRows) {
const QModelIndex index = mProxyModel->mapToSource(proxyIndex);
if (MapObject *o = mapObjectModel()->toMapObject(index))
selectedObjects.append(o);
}
if (selectedObjects != mMapDocument->selectedObjects()) {
mSynching = true;
mMapDocument->setSelectedObjects(selectedObjects);
mSynching = false;
}
}
void ObjectsView::drawRow(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &proxyIndex) const
{
if (mMapDocument) {
const QModelIndex index = mProxyModel->mapToSource(proxyIndex);
const MapObject *mapObject = mapObjectModel()->toMapObject(index);
if (mapObject && mapObject == mMapDocument->hoveredMapObject()) {
QColor hoverColor = QGuiApplication::palette().highlight().color();
hoverColor.setAlpha(64);
painter->fillRect(option.rect, hoverColor);
}
}
QTreeView::drawRow(painter, option, proxyIndex);
}
void ObjectsView::selectedObjectsChanged()
{
if (mSynching)
return;
synchronizeSelectedItems();
const QList<MapObject *> &selectedObjects = mMapDocument->selectedObjects();
if (selectedObjects.count() == 1) {
MapObject *o = selectedObjects.first();
scrollTo(mProxyModel->mapFromSource(mapObjectModel()->index(o)));
}
}
void ObjectsView::hoveredObjectChanged(MapObject *object, MapObject *previous)
{
updateRow(object);
updateRow(previous);
}
void ObjectsView::setColumnVisibility(bool visible)
{
QAction *action = qobject_cast<QAction*>(sender());
if (!action)
return;
int column = action->data().toInt();
setColumnHidden(column, !visible);
QSettings *settings = Preferences::instance()->settings();
QVariantList visibleColumns;
for (int i = 0; i < mProxyModel->columnCount(); i++) {
if (!isColumnHidden(i))
visibleColumns.append(i);
}
settings->setValue(QLatin1String(VISIBLE_COLUMNS_KEY), visibleColumns);
}
void ObjectsView::showCustomHeaderContextMenu(const QPoint &point)
{
Q_UNUSED(point)
QMenu contextMenu(this);
QAbstractItemModel *model = mProxyModel->sourceModel();
for (int i = 0; i < model->columnCount(); i++) {
if (i == MapObjectModel::Name)
continue;
QAction *action = new QAction(model->headerData(i, Qt::Horizontal).toString(), &contextMenu);
action->setCheckable(true);
action->setChecked(!isColumnHidden(i));
action->setData(i);
connect(action, &QAction::triggered, this, &ObjectsView::setColumnVisibility);
contextMenu.addAction(action);
}
contextMenu.exec(QCursor::pos());
}
void ObjectsView::restoreVisibleColumns()
{
QSettings *settings = Preferences::instance()->settings();
QVariantList visibleColumns = settings->value(QLatin1String(VISIBLE_COLUMNS_KEY),
QVariantList() << MapObjectModel::Name << MapObjectModel::Type).toList();
for (int i = 0; i < mProxyModel->columnCount(); i++)
setColumnHidden(i, !visibleColumns.contains(i));
}
//选择item同步
void ObjectsView::synchronizeSelectedItems()
{
Q_ASSERT(!mSynching);
Q_ASSERT(mMapDocument);
QItemSelection itemSelection;
for (MapObject *o : mMapDocument->selectedObjects()) {
QModelIndex index = mProxyModel->mapFromSource(mapObjectModel()->index(o));
itemSelection.select(index, index);
}
mSynching = true;
selectionModel()->select(itemSelection,
QItemSelectionModel::Select |
QItemSelectionModel::Rows |
QItemSelectionModel::Clear);
mSynching = false;
}
void ObjectsView::updateRow(MapObject *object)
{
if (!object)
return;
const QModelIndex index = mapObjectModel()->index(object);
const QModelIndex proxyIndex = mProxyModel->mapFromSource(index);
const QRect rect = visualRect(proxyIndex);
viewport()->update(QRect(0, rect.y(), viewport()->width(), rect.height()));
}
#include "objectsdock.moc"
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.