blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 201 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 7 100 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 260
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 11.4k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 17
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 80
values | src_encoding stringclasses 28
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 8 9.86M | extension stringclasses 52
values | content stringlengths 8 9.86M | authors listlengths 1 1 | author stringlengths 0 119 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
2b4cae3b79dd910c5282902ced24c3c25e4dad07 | bddd8d142caf4cf843bd06ad0e3173fcdf9be452 | /OnSeason_Project_class/03_Dendrobium/Project_11.cpp | 3c8bed562470cce8d8959079224937e585101167 | [] | no_license | tinSn0703/SuzuProject | a567aa3d3f85b296e34bf27c4347d4feab7d29c0 | 68bd8b9dbd5b7e42acd91b0e82e90c72cbd355bc | refs/heads/master | 2020-03-20T07:48:48.446041 | 2018-06-14T01:42:57 | 2018-06-14T01:42:57 | 137,291,832 | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 5,469 | cpp |
/*************************************************************************
プロジェクトのテンプレート。 実装。
*************************************************************************/
#include <MainCircit/MainCircit.h>
#include "Project_11.h"
/************************************************************************/
namespace Dendrobium
{
namespace Master
{
/************************************************************************/
#define INIT_LED() DDRA = 0xff; PORTA = 0x00
#define PORT_LED PORTA
#define LED_STATE_LOCK 0x00
#define LED_STATE_UNLOCK 0x0f
/************************************************************************/
//----------------------------------------------------------------------//
Main :: Main()
:_controller(Uart::NUM_0)
,_wheel(Uart::NUM_1, 0, 1, 2, 3)
,_motor_gun_angle(4)
,_motor_slave_move(5)
,_uart_valve(Uart::NUM_3)
,_valve_fire(VALVE::NUM_4)
,_valve_rod(VALVE::NUM_0)
,_valve_stopper(VALVE::NUM_2)
{
LCD::Initialize();
INIT_LED();
_is_movement_lock = YES;
_wheel.Record_pwm(PWM_WHEEL_NORMAL);
_wheel[WheelPlace::FRONT_RIGHT].Want_to_reverse_signal(YES);
_wheel[WheelPlace::FRONT_LEFT].Want_to_reverse_signal(YES);
_wheel[WheelPlace::BACK_RIGHT].Want_to_reverse_signal(YES);
_motor_gun_angle = _motor_slave_move = PWM_MOTOR;
_motor_gun_angle.Set_steps(STEPS_USE);
_motor_slave_move.Set_steps(STEPS_USE);
LCD::Write(0x00, "300 Dendrobium", 75);
LCD::Write(0x40, " Master");
LCD::Write(0x40, _wheel[WheelPlace::FRONT_RIGHT].Get_number(), 1, DECIMAL_10);
LCD::Write(0x41, _wheel[WheelPlace::BACK_RIGHT].Get_number(), 1, DECIMAL_10);
LCD::Write(0x42, _wheel[WheelPlace::BACK_LEFT].Get_number(), 1, DECIMAL_10);
LCD::Write(0x43, _wheel[WheelPlace::FRONT_LEFT].Get_number(), 1, DECIMAL_10);
LCD::Write(0x45, _motor_gun_angle.Get_number(), 1, DECIMAL_10);
LCD::Write(0x46, _motor_slave_move.Get_number(), 1, DECIMAL_10);
}
//----------------------------------------------------------------------//
void Main :: Input()
{
_controller.Read();
}
//----------------------------------------------------------------------//
void Main :: Work_wheel()
{
_wheel.Set_move_direction(_controller.Get_L_stick_y());
switch (_controller.Get_R_stick_y())
{
case Direction::NORTH: _wheel.Record_pwm(PWM_WHEEL_HIGH); break;
case Direction::SOUTH: _wheel.Record_pwm(PWM_WHEEL_LOW); break;
case Direction::yCENTER: _wheel.Record_pwm(PWM_WHEEL_NORMAL); break;
}
if (_wheel.Is_move())
{
_wheel.Curve(WHEEL_CURVE_PERSENT, _controller.Get_L1(), _controller.Get_R1());
}
else
{
if (
(_controller.Get_L1() & _controller.Get_L2()) |
(_controller.Get_R1() & _controller.Get_R2())
)
{
_wheel.SpinTurn(_controller.Get_L1(), _controller.Get_R1());
}
else if (_controller.Get_L1() | _controller.Get_L2())
{
_wheel.PivotTurn(WheelPlace::FRONT_RIGHT, _controller.Get_L2(), _controller.Get_L1());
}
else if (_controller.Get_R1() | _controller.Get_R2())
{
_wheel.PivotTurn(WheelPlace::FRONT_LEFT , _controller.Get_R1(), _controller.Get_R2());
}
else
{
_wheel.Stop();
}
}
}
//----------------------------------------------------------------------//
void Main :: Work_motor()
{
switch (_controller.Get_cross_key_y())
{
case Direction::NORTH: _motor_slave_move.Set(SIGNAL_FORWARD); break;
case Direction::SOUTH: _motor_slave_move.Set(SIGNAL_REVERSE); break;
case Direction::yCENTER: _motor_slave_move.Set(SIGNAL_BREAK); break;
}
switch (_controller.Get_cross_key_x())
{
case Direction::EAST: _motor_gun_angle.Set(SIGNAL_FORWARD); break;
case Direction::WEST: _motor_gun_angle.Set(SIGNAL_REVERSE); break;
case Direction::xCENTER: _motor_gun_angle.Set(SIGNAL_BREAK); break;
}
}
//----------------------------------------------------------------------//
void Main :: Work_valve()
{
_valve_rod.Open_and_Close(_controller.Get_Triangle(), TIME_ROD_OPEN);
if (_valve_rod.Is_open())
{
if (_controller.Get_Circle()) _valve_stopper.Want_to_open(NO);
_valve_stopper.Open_or_Close(_controller.Get_Circle());
}
_valve_fire.Open_or_Close(_controller.Get_Square());
}
//----------------------------------------------------------------------//
void Main :: Process()
{
if (_controller.Get_START()) _is_movement_lock = NO;
if (_controller.Get_SELECT()) _is_movement_lock = YES;
if (_is_movement_lock == NO)
{
Work_wheel();
Work_motor();
Work_valve();
}
}
//----------------------------------------------------------------------//
void Main :: Output()
{
if (_is_movement_lock)
{
_wheel.Write_clear();
_motor_gun_angle.Write_clear(_wheel.Get_uart_adrs());
_motor_slave_move.Write_clear(_wheel.Get_uart_adrs());
if (PORT_LED == LED_STATE_UNLOCK)
{
LCD::Write(0x40, " Lock Mode");
PORT_LED = LED_STATE_LOCK;
}
}
else
{
_wheel.Write();
_motor_gun_angle.Write(_wheel.Get_uart_adrs());
_motor_slave_move.Write(_wheel.Get_uart_adrs());
_uart_valve.Transmit_8bit(_valve_fire.Get_data() | _valve_rod.Get_data() | _valve_stopper.Get_data());
if (PORT_LED == LED_STATE_LOCK)
{
LCD::Clear_under();
PORT_LED = LED_STATE_UNLOCK;
}
_wheel.Display_power(0x40);
}
}
//----------------------------------------------------------------------//
/************************************************************************/
}
}
/************************************************************************/
| [
"condensa1952@gmail.com"
] | condensa1952@gmail.com |
c2670791f1f6ad47618722ff8aff704635395584 | c75ad52c59042bdf30064636d0aa9cb11161448f | /S3DR/lib/src/auxiliary/geometry_utils.cpp | 0047419297646d61426b67e6c80b6875c6d1f81d | [
"MIT"
] | permissive | tdenis8/S3DR | 56b6a195fe077330181db9b4d5cec2d8d239a19f | fb8f4c0c98b5571abb12a51e03229978115b099b | refs/heads/master | 2020-05-18T15:32:41.851950 | 2015-01-16T19:16:53 | 2015-01-24T11:56:00 | 18,430,166 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,179 | cpp | #include "geometry_utils.hpp"
#include "utility/math_utils.hpp"
void CalculateNormals(const std::vector<glm::vec3> & vertices,
const std::vector<glm::ivec3> & indices,
std::vector<glm::vec3> & normals)
{
for(const auto & it: indices){
int i1 = it.x;
int i2 = it.y;
int i3 = it.z;
const glm::vec3 & v1 = vertices.at(i1);
const glm::vec3 & v2 = vertices.at(i2);
const glm::vec3 & v3 = vertices.at(i3);
// Note: order of vectors in cross function is important
glm::vec3 n1 = glm::cross(glm::normalize(v2-v1), glm::normalize(v3-v1));
n1 = glm::normalize(n1);
normals[i1] = n1 + normals[i1];
glm::vec3 n2 = glm::cross(glm::normalize(v3-v2), glm::normalize(v1-v2));
n2 = glm::normalize(n2);
normals[i2] = n2 + normals[i2];
glm::vec3 n3 = glm::cross(glm::normalize(v1-v3), glm::normalize(v2-v3));
n3 = glm::normalize(n3);
normals[i3] = n3 + normals[i3];
}
for(auto & n: normals){
if(n.x + n.y + n.z == 0.0){
continue;
}
n = glm::normalize(n);
}
} | [
"tomislav.denis@gmail.com"
] | tomislav.denis@gmail.com |
2e8fca1ee13c4367d48c300b4201039cf7098afa | a326c29f71bb66b06e437120dacd2be3902df7e2 | /Сvector3.cpp | 99c458f060c1e00260e78165441f6877e8d077a5 | [] | no_license | Alekseenkov/Cstring_-vector3 | 8c35bd961338e6fa91dfd73baca0b79e6eaa3eef | c60681cf52e5c7c41a0dd072b103428f12d6653e | refs/heads/master | 2022-12-15T05:39:08.084215 | 2020-09-15T17:25:35 | 2020-09-15T17:25:35 | 295,800,682 | 0 | 0 | null | null | null | null | MacCentralEurope | C++ | false | false | 319 | cpp | #include "—vector3.h"
—vector3::—vector3()
{
x = y = z = 0;
}
—vector3::—vector3(double x, double y, double z)
{
this->x = x;
this->y = y;
this->z = z;
}
—vector3::~—vector3()
{
}
void —vector3::_info()
{
std::cout << "x=" << x << " y=" << y << " z=" << z << std::endl;
}
| [
"noreply@github.com"
] | noreply@github.com |
bd6ab2c933366cea870ef53a4452d75aa85df4e7 | 242d143cfa172d6b51e7f4fe73d8eed2395d6d91 | /Coding-Ninjas-DP/best-time-to-buy-and-sell-stock-i.cpp | af26780b0fbce641fd6da06a9d77de3e5f85adf6 | [] | no_license | Ankit80165/Data-Structures-and-Algorithms | 7b11775809c928db875c468202747388477b4f93 | fcd1694ead0b091a5f08d01c0546bbc689fd989d | refs/heads/master | 2023-07-03T04:47:58.786090 | 2021-08-11T16:12:07 | 2021-08-11T16:12:07 | 370,378,360 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,451 | cpp | // best time to buy and sell stock when only one
// transaction is allowed
#include<bits/stdc++.h>
#include<cstring>
#include<climits>
using namespace std;
#define add(x) accumulate(x)
#define sz(x) (int)(x).size()
#define mp make_pair
#define pb push_back
#define ff first
#define ss second
#define lb lower_bound
#define ub upper_bound
#define all(x) x.begin(), x.end()
#define rep(i, a, b) for (int i=a; i<(b); i++)
#define hs ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
typedef long long ll;
typedef pair<ll, ll> pll;
typedef vector<ll> vll;
typedef vector<pll> vpll;
const ll mod = 1000000007;
const ll INF = 1e18;
const ll MAX = 100001;
ll GCD(ll x, ll y) {return __gcd(x, y);}
ll LCM(ll x, ll y) {return (x * y) / __gcd(x, y);}
// time complexity = O(n)
// space complexity = O(1)
int getMaxProfit(ll *A, ll n) {
int maxRes = 0;
int leastValue = A[0];
for (int i = 1; i < n; i++) {
if (A[i] < leastValue) {
leastValue = A[i];
}
ll profit = (A[i] - leastValue);
if (profit > maxRes) {
maxRes = profit;
}
}
return maxRes;
}
// brute force method time complexity O(n^2)
// space complexity of brute force O(1)
void solve() {
//code goes here
int n;
cin >> n;
ll A[n];
for (int i = 0; i < n; i++) {
cin >> A[i];
}
int maxProfit = getMaxProfit(A, n);
cout << maxProfit << endl;
return;
}
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
cout.precision(15);
cout << fixed;
solve();
return 0;
}
| [
"ankit.majhirisen357@gmail.com"
] | ankit.majhirisen357@gmail.com |
e28820128bcd082425f44dbe6ea10684ef0ed453 | f113b7f7695bf2f5c09e5e8afb28cc99ee06c63a | /src/DOTk_ObjectiveFunction/DOTk_ZakharovObjective.cpp | 24af14bd35e3470ed2e98c1820f750fad725901f | [] | no_license | maguilo11/locus | 501a074a12e260e2b9f0940a6eb389ad36aefb89 | cbf926808493c621893cc11f124f813b9e0fcbde | refs/heads/master | 2021-09-24T21:35:27.503003 | 2018-10-15T02:58:38 | 2018-10-15T02:58:38 | 72,475,433 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,607 | cpp | /*
* DOTk_ZakharovObjective.cpp
*
* Created on: May 31, 2015
* Author: Miguel A. Aguilo Valentin
*/
#include <cmath>
#include "DOTk_ZakharovObjective.hpp"
namespace dotk
{
DOTk_ZakharovObjective::DOTk_ZakharovObjective(const dotk::Vector<Real> & input_) :
m_Data(input_.clone())
{
}
DOTk_ZakharovObjective::~DOTk_ZakharovObjective()
{
}
Real DOTk_ZakharovObjective::value(const dotk::Vector<Real> & primal_)
{
Real primal_dot_primal = primal_.dot(primal_);
Real k_dot_primal = primal_.dot(*m_Data);
Real value = primal_dot_primal + std::pow(k_dot_primal, 2.) / static_cast<Real>(4.)
+ std::pow(k_dot_primal, 4.) / static_cast<Real>(16.);
return (value);
}
void DOTk_ZakharovObjective::gradient(const dotk::Vector<Real> & primal_, dotk::Vector<Real> & output_)
{
Real k_dot_primal = primal_.dot(*m_Data);
Real coeff = static_cast<Real>(0.25) * (static_cast<Real>(2.) * k_dot_primal + std::pow(k_dot_primal, 3.));
output_.update(2., primal_, 1.);
output_.update(coeff, *m_Data, 1.);
}
void DOTk_ZakharovObjective::hessian(const dotk::Vector<Real> & primal_,
const dotk::Vector<Real> & vector_,
dotk::Vector<Real> & output_)
{
Real k_dot_primal = primal_.dot(*m_Data);
Real k_dot_delta_primal = vector_.dot(*m_Data);
Real coeff = static_cast<Real>(0.25) * (static_cast<Real>(2.) + static_cast<Real>(3.) * std::pow(k_dot_primal, 2.))
* k_dot_delta_primal;
output_.update(coeff, *m_Data, 1.);
output_.update(2., vector_, 1.);
}
}
| [
"aguilo.miguel@gmail.com"
] | aguilo.miguel@gmail.com |
a0cc9fd5381732ed6b4e2a0a4aa771fdbd877e0f | a6ef9674622f6e7c46ac31f4cfffbd568ff4f97e | /SteadyState_Rectangular_0_dt2t10000/processor14/10000/p | 6c81ba1a617dc5abb54706dd3d37c748c17ea817 | [] | 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 | 587,326 | /*--------------------------------*- 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 "10000";
object p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 2 -2 0 0 0 0];
internalField nonuniform List<scalar>
34222
(
-6.7547205e+117
-6.3028662e+117
-6.7766077e+117
-6.6078308e+117
-6.5853989e+117
-6.8213577e+117
-6.8361818e+117
-5.8438896e+117
-6.3299143e+117
-6.1385039e+117
-6.1594073e+117
-6.3856521e+117
-6.3629154e+117
-6.7799793e+117
-6.8417937e+117
-6.6243797e+117
-6.6239079e+117
-6.8418968e+117
-6.6027076e+117
-6.5807823e+117
-6.8086642e+117
-6.8264523e+117
-6.8926861e+117
-5.8604401e+117
-5.3874242e+117
-5.9407674e+117
-5.7159006e+117
-5.7078681e+117
-5.9261482e+117
-6.3361165e+117
-6.4125532e+117
-6.1857389e+117
-6.1747999e+117
-6.4059133e+117
-6.1351089e+117
-6.1573194e+117
-6.3759222e+117
-6.3524829e+117
-6.7630131e+117
-6.835608e+117
-6.6163726e+117
-6.6217502e+117
-6.8404857e+117
-6.836317e+117
-6.6212166e+117
-6.6223389e+117
-6.836921e+117
-6.5988767e+117
-6.5801888e+117
-6.8129035e+117
-6.828391e+117
-6.9426446e+117
-6.6946016e+117
-6.6912277e+117
-6.8714945e+117
-6.572497e+117
-6.5705894e+117
-5.866557e+117
-5.3957056e+117
-5.9595796e+117
-5.7292021e+117
-5.7211463e+117
-5.9497965e+117
-5.2802034e+117
-5.4992096e+117
-5.4942908e+117
-5.2753999e+117
-5.9362491e+117
-5.7172284e+117
-5.7083979e+117
-5.9205914e+117
-6.3131919e+117
-6.3106498e+117
-6.3258331e+117
-6.1858219e+117
-6.1829484e+117
-6.4053934e+117
-6.4106974e+117
-6.4038923e+117
-6.181697e+117
-6.1724727e+117
-6.3967356e+117
-6.1364582e+117
-6.159693e+117
-6.3757706e+117
-6.3522765e+117
-6.5994102e+117
-6.6094956e+117
-6.8260975e+117
-6.8133419e+117
-6.8255514e+117
-6.6131406e+117
-6.6188377e+117
-6.8313563e+117
-6.8382337e+117
-6.6182901e+117
-6.6210125e+117
-6.8385608e+117
-6.598648e+117
-6.5801712e+117
-6.8132803e+117
-6.8285932e+117
-6.7388551e+117
-6.7439567e+117
-6.7306011e+117
-6.9115573e+117
-6.7382524e+117
-6.5861694e+117
-6.5242597e+117
-6.49399e+117
-6.5857848e+117
-6.4941773e+117
-6.5841945e+117
-6.5812855e+117
-6.4909734e+117
-6.6818233e+117
-6.4932202e+117
-6.6666835e+117
-6.5629254e+117
-6.5509097e+117
-6.8386054e+117
-6.0664202e+117
-5.8147595e+117
-5.8625087e+117
-5.8147901e+117
-5.3998319e+117
-5.96008e+117
-5.7301111e+117
-5.7313467e+117
-5.961258e+117
-6.0645564e+117
-5.2847682e+117
-5.2902517e+117
-5.5097836e+117
-5.503162e+117
-5.9532387e+117
-5.729597e+117
-5.7200123e+117
-5.9438066e+117
-5.282536e+117
-5.4966687e+117
-5.4919363e+117
-5.2773636e+117
-5.9405932e+117
-5.7192516e+117
-5.7108726e+117
-5.9233777e+117
-6.3371824e+117
-6.3619296e+117
-6.335482e+117
-6.3350099e+117
-6.3343318e+117
-6.3047344e+117
-6.295325e+117
-6.3106065e+117
-6.1732486e+117
-6.1778997e+117
-6.3999287e+117
-6.3923406e+117
-6.1796344e+117
-6.1773061e+117
-6.3970482e+117
-6.4018082e+117
-6.402893e+117
-6.1817558e+117
-6.1717847e+117
-6.3952608e+117
-6.1365319e+117
-6.1598412e+117
-6.3757911e+117
-6.3522493e+117
-6.5934516e+117
-6.6038189e+117
-6.8150322e+117
-6.8013971e+117
-6.8277027e+117
-6.6144495e+117
-6.6194915e+117
-6.8315155e+117
-6.8385465e+117
-6.6182382e+117
-6.6210999e+117
-6.8388441e+117
-6.680394e+117
-6.6917303e+117
-6.6094934e+117
-6.569745e+117
-6.5708841e+117
-6.6104246e+117
-6.6365724e+117
-6.5592636e+117
-6.6286635e+117
-6.6357327e+117
-6.6279694e+117
-6.7178016e+117
-6.6010344e+117
-6.5599954e+117
-6.5659071e+117
-6.6064239e+117
-6.701905e+117
-6.8785365e+117
-6.711327e+117
-6.7271189e+117
-6.6284302e+117
-6.6331287e+117
-6.6219147e+117
-6.6258271e+117
-6.5246597e+117
-6.5247236e+117
-6.4589327e+117
-6.4588554e+117
-6.4856487e+117
-6.4856635e+117
-6.4415699e+117
-6.4421046e+117
-6.4574402e+117
-6.5230201e+117
-6.5240902e+117
-6.4582094e+117
-6.5216825e+117
-6.5224268e+117
-6.4568627e+117
-6.4572266e+117
-6.5194551e+117
-6.5205632e+117
-6.455667e+117
-6.4561426e+117
-6.5776691e+117
-6.4880648e+117
-6.5719626e+117
-6.4833776e+117
-6.6478943e+117
-6.4692251e+117
-6.5558038e+117
-6.476799e+117
-6.5645701e+117
-6.5350041e+117
-6.5214439e+117
-6.6294468e+117
-6.1878345e+117
-6.2742438e+117
-6.1953182e+117
-6.0509072e+117
-6.0540566e+117
-6.1174372e+117
-6.1936168e+117
-6.0535366e+117
-5.8251753e+117
-5.8859563e+117
-5.9381454e+117
-5.9353488e+117
-5.9927976e+117
-5.9393591e+117
-5.8265172e+117
-5.5772927e+117
-5.8056055e+117
-6.0527417e+117
-5.8113674e+117
-5.8542663e+117
-5.9550382e+117
-5.7290598e+117
-5.3991723e+117
-5.729626e+117
-5.95748e+117
-6.0602507e+117
-5.938728e+117
-5.8265632e+117
-5.9393077e+117
-5.8260809e+117
-5.5766242e+117
-5.2939283e+117
-5.2976114e+117
-5.5134068e+117
-5.5130283e+117
-5.9497536e+117
-5.7262018e+117
-5.7287827e+117
-5.9515367e+117
-6.1924263e+117
-6.1926171e+117
-6.0520589e+117
-6.0515883e+117
-5.2886094e+117
-5.2947462e+117
-5.5080502e+117
-5.4997654e+117
-5.953796e+117
-5.7293817e+117
-5.7190633e+117
-5.9435992e+117
-5.2813878e+117
-5.4931695e+117
-5.4903569e+117
-5.2751102e+117
-5.9408353e+117
-5.7196084e+117
-5.7111052e+117
-5.9235578e+117
-6.3623921e+117
-6.3612665e+117
-6.3819023e+117
-6.3808066e+117
-6.3600057e+117
-6.3596548e+117
-6.3601885e+117
-6.3598098e+117
-6.359537e+117
-6.3600887e+117
-6.3322518e+117
-6.3270132e+117
-6.3176785e+117
-6.2855856e+117
-6.3225677e+117
-6.2757107e+117
-6.387053e+117
-6.3808679e+117
-6.1627779e+117
-6.168488e+117
-6.1690339e+117
-6.172263e+117
-6.3900936e+117
-6.3833318e+117
-6.1790189e+117
-6.1768161e+117
-6.3980034e+117
-6.4032091e+117
-6.4028636e+117
-6.1816999e+117
-6.171724e+117
-6.39523e+117
-6.5951423e+117
-6.6050325e+117
-6.8178095e+117
-6.8040163e+117
-6.8280337e+117
-6.6146105e+117
-6.6196982e+117
-6.8317942e+117
-6.4493784e+117
-6.4578299e+117
-6.4844447e+117
-6.4430575e+117
-6.4447808e+117
-6.4858543e+117
-6.5500139e+117
-6.570556e+117
-6.5702992e+117
-6.5495792e+117
-6.5755341e+117
-6.5430321e+117
-6.5351664e+117
-6.5353643e+117
-6.5141991e+117
-6.5595014e+117
-6.5144769e+117
-6.5757199e+117
-6.5596068e+117
-6.5493995e+117
-6.5476481e+117
-6.5683686e+117
-6.5699742e+117
-6.5737108e+117
-6.5751322e+117
-6.5576271e+117
-6.5589631e+117
-6.5909891e+117
-6.5491683e+117
-6.5546904e+117
-6.5962744e+117
-6.4769319e+117
-6.4349227e+117
-6.4399145e+117
-6.4813174e+117
-6.683671e+117
-6.5419425e+117
-6.5340802e+117
-6.5760603e+117
-6.584593e+117
-6.666394e+117
-6.674173e+117
-6.6924707e+117
-6.6018641e+117
-6.6106743e+117
-6.5947709e+117
-6.6038905e+117
-6.6178811e+117
-6.6233991e+117
-6.6172155e+117
-6.6113659e+117
-6.5429376e+117
-6.5403189e+117
-6.5615675e+117
-6.5640085e+117
-6.5461232e+117
-6.5447959e+117
-6.5657902e+117
-6.5671188e+117
-6.5675523e+117
-6.5697392e+117
-6.5524433e+117
-6.5542192e+117
-6.5725462e+117
-6.5713876e+117
-6.5557039e+117
-6.5567646e+117
-6.4854798e+117
-6.4855419e+117
-6.4423219e+117
-6.4424149e+117
-6.4847328e+117
-6.4854297e+117
-6.4418266e+117
-6.4413526e+117
-6.4516508e+117
-6.4513302e+117
-6.4303987e+117
-6.430276e+117
-6.4509641e+117
-6.4510107e+117
-6.4296915e+117
-6.4295556e+117
-6.4831543e+117
-6.483705e+117
-6.4401794e+117
-6.4402099e+117
-6.4840561e+117
-6.4840609e+117
-6.4407288e+117
-6.4403553e+117
-6.4818948e+117
-6.4823988e+117
-6.4396291e+117
-6.4394226e+117
-6.4827834e+117
-6.4827521e+117
-6.4401411e+117
-6.4400248e+117
-6.4807234e+117
-6.481236e+117
-6.4390789e+117
-6.4391787e+117
-6.5184286e+117
-6.4814005e+117
-6.481575e+117
-6.4392283e+117
-6.4390783e+117
-6.4552001e+117
-6.4535334e+117
-6.5163445e+117
-6.5135466e+117
-6.5097478e+117
-6.4472804e+117
-6.4506248e+117
-6.5467717e+117
-6.5369201e+117
-6.4538336e+117
-6.4617532e+117
-6.4949836e+117
-6.4343423e+117
-6.4991355e+117
-6.4378321e+117
-6.5027943e+117
-6.5065294e+117
-6.4412516e+117
-6.4444678e+117
-6.5183467e+117
-6.5273233e+117
-6.4377552e+117
-6.4454339e+117
-6.1876938e+117
-6.183218e+117
-6.1826918e+117
-6.2257105e+117
-6.2251626e+117
-6.2708671e+117
-6.3258588e+117
-6.2700378e+117
-6.3247766e+117
-6.2744302e+117
-6.1864311e+117
-6.2730524e+117
-6.0473139e+117
-6.0782947e+117
-6.0468381e+117
-6.0780157e+117
-6.0510711e+117
-6.1172625e+117
-6.0501222e+117
-6.1163081e+117
-6.1100508e+117
-6.146408e+117
-6.1097465e+117
-6.1459803e+117
-6.184701e+117
-6.2714823e+117
-6.18438e+117
-6.2711798e+117
-6.1145678e+117
-6.0491084e+117
-6.0493147e+117
-6.1149676e+117
-5.8367861e+117
-5.8363421e+117
-5.8857669e+117
-5.8857526e+117
-5.7156899e+117
-5.861828e+117
-5.8852135e+117
-5.885174e+117
-5.9101513e+117
-5.9097508e+117
-5.9353476e+117
-5.9925693e+117
-5.993223e+117
-5.9355215e+117
-5.9345454e+117
-5.960853e+117
-5.9879269e+117
-5.9343605e+117
-5.9349037e+117
-5.9612515e+117
-5.96071e+117
-5.9885619e+117
-6.0181935e+117
-5.9879338e+117
-6.01757e+117
-5.9927337e+117
-5.9924492e+117
-5.9365958e+117
-5.9357405e+117
-5.8379901e+117
-5.837158e+117
-5.8872232e+117
-5.8862908e+117
-5.7169816e+117
-5.595431e+117
-5.8164756e+117
-5.8183058e+117
-5.9300842e+117
-5.9271483e+117
-5.5704571e+117
-5.7997531e+117
-6.1825902e+117
-6.1793025e+117
-6.0399051e+117
-6.0426564e+117
-6.046628e+117
-5.9341825e+117
-5.8221298e+117
-5.8241475e+117
-5.936344e+117
-5.5742545e+117
-6.0407436e+117
-5.395502e+117
-5.793811e+117
-5.7263639e+117
-5.9477256e+117
-5.9517237e+117
-5.7268019e+117
-5.9467773e+117
-5.725979e+117
-5.5122729e+117
-5.2966325e+117
-5.2957402e+117
-5.5127441e+117
-5.7254006e+117
-5.9474496e+117
-6.0462946e+117
-6.049757e+117
-6.1861895e+117
-6.1908552e+117
-5.9922457e+117
-5.9363263e+117
-5.9366249e+117
-5.9911835e+117
-5.8880789e+117
-5.887903e+117
-5.8388091e+117
-5.8393865e+117
-5.7165875e+117
-5.9915267e+117
-5.9368784e+117
-5.9366235e+117
-5.9922799e+117
-5.8880284e+117
-5.8882038e+117
-5.8394081e+117
-5.8389623e+117
-5.7157666e+117
-5.5945559e+117
-5.5944638e+117
-5.3012295e+117
-5.3059958e+117
-5.5108559e+117
-5.5110983e+117
-5.9484021e+117
-5.724356e+117
-5.7289883e+117
-5.9511045e+117
-6.1841934e+117
-6.1853309e+117
-6.272525e+117
-6.2715744e+117
-6.2717673e+117
-6.1845627e+117
-6.1842197e+117
-6.2719177e+117
-6.1134872e+117
-6.0471188e+117
-6.0481399e+117
-6.1140882e+117
-6.1145643e+117
-6.0470146e+117
-6.0481702e+117
-6.1135201e+117
-5.2899677e+117
-5.2951433e+117
-5.5084584e+117
-5.4998948e+117
-5.9537918e+117
-5.7293164e+117
-5.7190432e+117
-5.9435427e+117
-5.2814391e+117
-5.4931954e+117
-5.4903049e+117
-5.2750749e+117
-6.3816015e+117
-6.382184e+117
-6.3803481e+117
-6.3807854e+117
-6.3932271e+117
-6.3927896e+117
-6.3920817e+117
-6.3922264e+117
-6.3787249e+117
-6.3797005e+117
-6.3790869e+117
-6.3785011e+117
-6.3791893e+117
-6.3794807e+117
-6.3789353e+117
-6.3787309e+117
-6.3788737e+117
-6.3790777e+117
-6.3599757e+117
-6.3797465e+117
-6.3789729e+117
-6.3577808e+117
-6.3548241e+117
-6.3523605e+117
-6.3124684e+117
-6.3426311e+117
-6.3448723e+117
-6.3050097e+117
-6.3475074e+117
-6.3504215e+117
-6.2932676e+117
-6.2985741e+117
-6.3790871e+117
-6.3723162e+117
-6.1604127e+117
-6.1652844e+117
-6.1693463e+117
-6.1722289e+117
-6.3912469e+117
-6.3846701e+117
-6.1788642e+117
-6.1767576e+117
-6.3980533e+117
-6.4032719e+117
-6.5953346e+117
-6.6052105e+117
-6.8181939e+117
-6.8043971e+117
-6.4365787e+117
-6.4214111e+117
-6.357264e+117
-6.4869282e+117
-6.488529e+117
-6.3205341e+117
-6.3223624e+117
-6.3597126e+117
-6.4893076e+117
-6.4892675e+117
-6.5155512e+117
-6.5157072e+117
-6.5108678e+117
-6.5386643e+117
-6.5383943e+117
-6.5433197e+117
-6.543115e+117
-6.5219203e+117
-6.522367e+117
-6.5239805e+117
-6.5237134e+117
-6.5209116e+117
-6.5211491e+117
-6.5144864e+117
-6.535204e+117
-6.5146652e+117
-6.5212384e+117
-6.5210644e+117
-6.5148518e+117
-6.5146682e+117
-6.5004217e+117
-6.5139959e+117
-6.4739901e+117
-6.4742237e+117
-6.5006781e+117
-6.5354567e+117
-6.5141534e+117
-6.5006018e+117
-6.5008683e+117
-6.4741026e+117
-6.4738653e+117
-6.5381727e+117
-6.5386204e+117
-6.54286e+117
-6.5433652e+117
-6.5354095e+117
-6.5142828e+117
-6.5348637e+117
-6.5134838e+117
-6.513372e+117
-6.514848e+117
-6.540722e+117
-6.5416288e+117
-6.5369139e+117
-6.5359152e+117
-6.5376231e+117
-6.5379202e+117
-6.5426306e+117
-6.5422485e+117
-6.5329151e+117
-6.5337264e+117
-6.5114946e+117
-6.5123468e+117
-6.534354e+117
-6.5130416e+117
-6.5346039e+117
-6.513045e+117
-6.4684098e+117
-6.4251641e+117
-6.4303026e+117
-6.4727135e+117
-6.3501807e+117
-6.4797874e+117
-6.48203e+117
-6.3131416e+117
-6.3177805e+117
-6.3548567e+117
-6.4835343e+117
-6.4850933e+117
-6.5583645e+117
-6.5176734e+117
-6.5259458e+117
-6.5674582e+117
-6.4185657e+117
-6.4119316e+117
-6.456026e+117
-6.4629637e+117
-6.5401154e+117
-6.5002784e+117
-6.5083511e+117
-6.5489092e+117
-6.5635466e+117
-6.5725486e+117
-6.5561131e+117
-6.5653323e+117
-6.5924007e+117
-6.5752928e+117
-6.5852672e+117
-6.5827619e+117
-6.5215279e+117
-6.5169243e+117
-6.5372588e+117
-6.5419608e+117
-6.545952e+117
-6.5255628e+117
-6.5286141e+117
-6.5492707e+117
-6.5419884e+117
-6.5466896e+117
-6.5265045e+117
-6.5310214e+117
-6.5542828e+117
-6.5350993e+117
-6.5508617e+117
-6.5387787e+117
-6.552226e+117
-6.5313246e+117
-6.5343752e+117
-6.5554295e+117
-6.5577729e+117
-6.5365799e+117
-6.5382523e+117
-6.5596075e+117
-6.5656183e+117
-6.548727e+117
-6.5636007e+117
-6.5508599e+117
-6.5575742e+117
-6.5609216e+117
-6.5420805e+117
-6.5458608e+117
-6.506851e+117
-6.5087717e+117
-6.5102348e+117
-6.5117505e+117
-6.5298166e+117
-6.5310186e+117
-6.5350233e+117
-6.5360781e+117
-6.5319598e+117
-6.532556e+117
-6.5369187e+117
-6.5375468e+117
-6.5280455e+117
-6.5289977e+117
-6.5077827e+117
-6.5085906e+117
-6.5297187e+117
-6.5301137e+117
-6.5090944e+117
-6.509264e+117
-6.5348112e+117
-6.5352721e+117
-6.5401524e+117
-6.5397228e+117
-6.5341591e+117
-6.5332164e+117
-6.5381903e+117
-6.5391334e+117
-6.5308006e+117
-6.5316193e+117
-6.5099678e+117
-6.510661e+117
-6.5321832e+117
-6.5111152e+117
-6.5324418e+117
-6.5110234e+117
-6.451452e+117
-6.4510771e+117
-6.4300688e+117
-6.4303611e+117
-6.45186e+117
-6.4517222e+117
-6.430572e+117
-6.4306612e+117
-6.428903e+117
-6.4499623e+117
-6.4501511e+117
-6.4290449e+117
-6.4508286e+117
-6.4496591e+117
-6.4287836e+117
-6.4297542e+117
-6.4069894e+117
-6.4069559e+117
-6.4061892e+117
-6.4062978e+117
-6.4279934e+117
-6.4493523e+117
-6.449092e+117
-6.4277427e+117
-6.4276339e+117
-6.4491781e+117
-6.4487253e+117
-6.4274296e+117
-6.427322e+117
-6.4482941e+117
-6.4493179e+117
-6.4279768e+117
-6.428191e+117
-6.4495824e+117
-6.4494016e+117
-6.4284014e+117
-6.4478965e+117
-6.4480764e+117
-6.4271822e+117
-6.4269924e+117
-6.4481955e+117
-6.447972e+117
-6.426914e+117
-6.427162e+117
-6.4490324e+117
-6.4481078e+117
-6.4273393e+117
-6.4278303e+117
-6.4279889e+117
-6.4493386e+117
-6.4492616e+117
-6.4279781e+117
-6.4481331e+117
-6.447943e+117
-6.4802019e+117
-6.427111e+117
-6.4271261e+117
-6.4481345e+117
-6.4482557e+117
-6.4270575e+117
-6.4270192e+117
-6.4390867e+117
-6.4795361e+117
-6.4383929e+117
-6.448305e+117
-6.4480948e+117
-6.4270725e+117
-6.4272037e+117
-6.4482978e+117
-6.4484014e+117
-6.42732e+117
-6.4272491e+117
-6.4767872e+117
-6.4784025e+117
-6.43733e+117
-6.4359526e+117
-6.4741195e+117
-6.4755429e+117
-6.4345752e+117
-6.4329601e+117
-6.4707656e+117
-6.4726007e+117
-6.4314952e+117
-6.4302037e+117
-6.4861332e+117
-6.4269288e+117
-6.4910033e+117
-6.4310114e+117
-6.480916e+117
-6.4221864e+117
-6.4751629e+117
-6.4171487e+117
-6.4178861e+117
-6.4575226e+117
-6.4594728e+117
-6.4193668e+117
-6.4611963e+117
-6.4627353e+117
-6.420917e+117
-6.422477e+117
-6.4641912e+117
-6.4660774e+117
-6.4238671e+117
-6.4255007e+117
-6.4273303e+117
-6.4678357e+117
-6.4694123e+117
-6.4289551e+117
-6.402475e+117
-6.458359e+117
-6.461987e+117
-6.4053643e+117
-6.465954e+117
-6.4706339e+117
-6.4090455e+117
-6.4130912e+117
-6.1824501e+117
-6.2251961e+117
-6.1830343e+117
-6.2256394e+117
-6.1787836e+117
-6.1996103e+117
-6.1995823e+117
-6.1786887e+117
-6.1784949e+117
-6.1993065e+117
-6.1783655e+117
-6.198997e+117
-6.2442016e+117
-6.2204656e+117
-6.244617e+117
-6.2202246e+117
-6.2197393e+117
-6.2438013e+117
-6.2200208e+117
-6.2440105e+117
-6.2709039e+117
-6.2686657e+117
-6.2967113e+117
-6.2962945e+117
-6.2682146e+117
-6.3260725e+117
-6.325495e+117
-6.3590262e+117
-6.3584412e+117
-6.3249411e+117
-6.2679573e+117
-6.2677532e+117
-6.2959587e+117
-6.2956451e+117
-6.3245364e+117
-6.3242853e+117
-6.3579298e+117
-6.3577254e+117
-6.2703087e+117
-6.3254026e+117
-6.1809185e+117
-6.2234938e+117
-6.1817326e+117
-6.224461e+117
-6.2687278e+117
-6.3239202e+117
-6.2695168e+117
-6.3245501e+117
-6.0473804e+117
-6.0434352e+117
-6.0432099e+117
-6.0584843e+117
-6.0583501e+117
-6.0732774e+117
-6.0781834e+117
-6.0893717e+117
-6.0734004e+117
-6.0894899e+117
-6.0583431e+117
-6.0431271e+117
-6.0583025e+117
-6.04318e+117
-6.0732579e+117
-6.0893427e+117
-6.0893309e+117
-6.0732604e+117
-6.0470094e+117
-6.0778432e+117
-6.1093068e+117
-6.1097938e+117
-6.1455783e+117
-6.1461741e+117
-6.0457954e+117
-6.0464534e+117
-6.0765264e+117
-6.0773367e+117
-6.1080383e+117
-6.1442317e+117
-6.1087821e+117
-6.1449694e+117
-6.1054744e+117
-6.1229268e+117
-6.1229053e+117
-6.1053937e+117
-6.1597959e+117
-6.1404898e+117
-6.1599115e+117
-6.1404128e+117
-6.1227517e+117
-6.1053537e+117
-6.1228422e+117
-6.1053389e+117
-6.1403405e+117
-6.1596794e+117
-6.1595747e+117
-6.1402575e+117
-6.178822e+117
-6.2216039e+117
-6.1798991e+117
-6.2225268e+117
-6.2668501e+117
-6.2678577e+117
-6.3221117e+117
-6.3231484e+117
-6.1790075e+117
-6.2216281e+117
-6.1784918e+117
-6.2212288e+117
-6.2670858e+117
-6.3225538e+117
-6.2664755e+117
-6.321817e+117
-6.1063668e+117
-6.1423391e+117
-6.1060376e+117
-6.1418327e+117
-6.0444663e+117
-6.0748791e+117
-6.0443073e+117
-6.074741e+117
-6.0444567e+117
-6.0749243e+117
-6.0449867e+117
-6.0755586e+117
-6.1061857e+117
-6.142102e+117
-6.1070074e+117
-6.1431429e+117
-5.8616493e+117
-5.8610849e+117
-5.7896467e+117
-5.8386213e+117
-5.8378942e+117
-5.8610584e+117
-5.8614494e+117
-5.7891372e+117
-5.8377811e+117
-5.8375365e+117
-5.8846137e+117
-5.8841562e+117
-5.9096907e+117
-5.9092375e+117
-5.8843443e+117
-5.884882e+117
-5.9094826e+117
-5.9100493e+117
-5.7404483e+117
-5.8605485e+117
-5.8607997e+117
-5.873862e+117
-5.8740346e+117
-5.8424403e+117
-5.8855453e+117
-5.897169e+117
-5.8972891e+117
-5.885721e+117
-5.8860306e+117
-5.8974506e+117
-5.8975998e+117
-5.8861883e+117
-5.9092097e+117
-5.9214661e+117
-5.9212864e+117
-5.9091888e+117
-5.9091688e+117
-5.9211847e+117
-5.9212579e+117
-5.909279e+117
-5.9346797e+117
-5.9610687e+117
-5.9343301e+117
-5.9609574e+117
-5.9879735e+117
-5.9880633e+117
-6.0170739e+117
-6.0174905e+117
-5.9884899e+117
-5.9888238e+117
-6.0180279e+117
-6.018412e+117
-5.9345727e+117
-5.9612285e+117
-5.935004e+117
-5.9615206e+117
-5.9336292e+117
-5.9461444e+117
-5.9460121e+117
-5.9336864e+117
-5.9586011e+117
-5.9718792e+117
-5.9586444e+117
-5.9718264e+117
-5.9992833e+117
-5.9852485e+117
-5.9992631e+117
-5.9852093e+117
-5.9334453e+117
-5.9333854e+117
-5.9458127e+117
-5.9457868e+117
-5.9335277e+117
-5.9337529e+117
-5.9462181e+117
-5.945945e+117
-5.9585915e+117
-5.9719234e+117
-5.9589139e+117
-5.9722915e+117
-5.9584421e+117
-5.9717636e+117
-5.9718123e+117
-5.958476e+117
-5.9857357e+117
-5.9853921e+117
-5.9997652e+117
-5.9994814e+117
-6.0136727e+117
-6.0286196e+117
-6.0139594e+117
-6.0289018e+117
-5.9992638e+117
-5.9852243e+117
-5.9993111e+117
-5.9852352e+117
-6.0135274e+117
-6.0284948e+117
-6.0285071e+117
-6.0134939e+117
-5.987688e+117
-5.9875077e+117
-6.0161448e+117
-6.0159215e+117
-5.9875226e+117
-6.0160079e+117
-5.987852e+117
-6.0164838e+117
-5.9357319e+117
-5.9613949e+117
-5.935166e+117
-5.9611358e+117
-5.9349213e+117
-5.9610268e+117
-5.9612198e+117
-5.9349923e+117
-5.8633994e+117
-5.8624266e+117
-5.7907749e+117
-5.8400677e+117
-5.8389402e+117
-5.862059e+117
-5.8620731e+117
-5.7899363e+117
-5.8387451e+117
-5.8389177e+117
-5.8864717e+117
-5.9111728e+117
-5.8855596e+117
-5.9103181e+117
-5.88507e+117
-5.9099458e+117
-5.8850895e+117
-5.9100228e+117
-5.7418043e+117
-5.7406668e+117
-5.694218e+117
-5.643223e+117
-5.6422082e+117
-5.692695e+117
-5.8136858e+117
-5.8287674e+117
-5.8275075e+117
-5.8763949e+117
-5.7077703e+117
-5.8773156e+117
-5.8301444e+117
-5.8789976e+117
-5.8819238e+117
-5.8331125e+117
-5.7093307e+117
-5.9840305e+117
-5.9301761e+117
-5.9276914e+117
-5.9861498e+117
-5.9259089e+117
-5.9823739e+117
-5.9250994e+117
-5.9819791e+117
-5.9253112e+117
-5.5885734e+117
-5.5863662e+117
-5.5660117e+117
-5.925297e+117
-5.8119909e+117
-6.2621706e+117
-6.1780487e+117
-6.1764464e+117
-6.2643391e+117
-6.174667e+117
-6.2598889e+117
-6.1736009e+117
-6.1758677e+117
-6.2583384e+117
-6.0390784e+117
-6.1052852e+117
-6.0374895e+117
-6.104277e+117
-6.0384706e+117
-6.106785e+117
-6.0405461e+117
-6.0423279e+117
-6.108246e+117
-6.1707931e+117
-6.0360931e+117
-5.9875589e+117
-5.9332016e+117
-5.9321949e+117
-5.9883867e+117
-5.8851177e+117
-5.8840148e+117
-5.8354704e+117
-5.8365426e+117
-5.712491e+117
-5.8381234e+117
-5.837168e+117
-5.885787e+117
-5.7144421e+117
-5.8869243e+117
-5.9357051e+117
-5.9902967e+117
-5.9342917e+117
-5.9920566e+117
-5.5900773e+117
-5.5934973e+117
-6.0345349e+117
-6.0310952e+117
-6.1627012e+117
-6.1666601e+117
-5.5111759e+117
-5.5102031e+117
-5.2925485e+117
-5.2949879e+117
-5.9241377e+117
-5.809331e+117
-5.725476e+117
-5.9427483e+117
-5.9441719e+117
-5.7244219e+117
-5.9443382e+117
-5.723799e+117
-5.5089489e+117
-5.3039002e+117
-5.3029578e+117
-5.5088687e+117
-5.7233975e+117
-5.9450836e+117
-6.1089324e+117
-6.0430918e+117
-6.0442596e+117
-6.1105443e+117
-6.0485025e+117
-6.0466788e+117
-6.113074e+117
-6.1148132e+117
-6.1806284e+117
-6.1788847e+117
-6.2656084e+117
-6.2677148e+117
-6.2706702e+117
-6.1833958e+117
-6.1853699e+117
-6.2728009e+117
-5.9879528e+117
-6.0164464e+117
-5.9869441e+117
-6.015198e+117
-5.9355014e+117
-5.935741e+117
-5.9606448e+117
-5.9606922e+117
-5.9361467e+117
-5.9616461e+117
-5.9355899e+117
-5.9609164e+117
-5.986475e+117
-6.0147122e+117
-5.9864654e+117
-6.0146641e+117
-5.8877357e+117
-5.9116115e+117
-5.8882693e+117
-5.9120233e+117
-5.8876324e+117
-5.9119939e+117
-5.887638e+117
-5.91161e+117
-5.8645214e+117
-5.8646432e+117
-5.7916192e+117
-5.8411806e+117
-5.8413901e+117
-5.8650385e+117
-5.8656329e+117
-5.7922307e+117
-5.8429083e+117
-5.8421533e+117
-5.7426765e+117
-5.7433919e+117
-5.9865841e+117
-5.9864445e+117
-6.014617e+117
-6.0145004e+117
-5.9355536e+117
-5.9357125e+117
-5.9607874e+117
-5.9611161e+117
-5.93586e+117
-5.9607941e+117
-5.9355121e+117
-5.960631e+117
-5.9867035e+117
-5.9872568e+117
-6.0149888e+117
-6.0157563e+117
-5.8875276e+117
-5.9115345e+117
-5.8872768e+117
-5.9115519e+117
-5.8882343e+117
-5.9120986e+117
-5.8879003e+117
-5.911677e+117
-5.8656105e+117
-5.8651674e+117
-5.7920318e+117
-5.8429132e+117
-5.8422134e+117
-5.864734e+117
-5.8642577e+117
-5.7914607e+117
-5.8417265e+117
-5.8410235e+117
-5.7427745e+117
-5.7421841e+117
-5.6949983e+117
-5.6440338e+117
-5.6424414e+117
-5.6949115e+117
-5.6423653e+117
-5.6416565e+117
-5.693975e+117
-5.6938444e+117
-5.5879635e+117
-5.3030239e+117
-5.3077045e+117
-5.5106233e+117
-5.5119798e+117
-5.9482757e+117
-5.7242337e+117
-5.728997e+117
-5.9509881e+117
-6.1793357e+117
-6.1792205e+117
-6.2224287e+117
-6.2221694e+117
-6.1808525e+117
-6.2236677e+117
-6.1797875e+117
-6.2227858e+117
-6.2691125e+117
-6.3242891e+117
-6.2681012e+117
-6.3232294e+117
-6.2678538e+117
-6.3230151e+117
-6.2677904e+117
-6.3230937e+117
-6.2676919e+117
-6.2674774e+117
-6.3228888e+117
-6.3226228e+117
-6.1791725e+117
-6.1793897e+117
-6.2221855e+117
-6.2221547e+117
-6.1790756e+117
-6.2219822e+117
-6.1788551e+117
-6.2219151e+117
-6.2676788e+117
-6.267734e+117
-6.3230009e+117
-6.3232177e+117
-6.1054486e+117
-6.142053e+117
-6.1053961e+117
-6.14186e+117
-6.0427056e+117
-6.0734351e+117
-6.0426432e+117
-6.0734726e+117
-6.0432772e+117
-6.0740748e+117
-6.0440847e+117
-6.0747021e+117
-6.1058313e+117
-6.1063623e+117
-6.1422485e+117
-6.1426283e+117
-6.1076001e+117
-6.1439684e+117
-6.1063553e+117
-6.1428261e+117
-6.0430162e+117
-6.0739184e+117
-6.042896e+117
-6.0736645e+117
-6.0756293e+117
-6.0447272e+117
-6.0434583e+117
-6.0744059e+117
-6.1058256e+117
-6.1423454e+117
-6.1056242e+117
-6.1422303e+117
-5.2900908e+117
-5.2951701e+117
-5.5084771e+117
-5.4999487e+117
-6.3927184e+117
-6.3928902e+117
-6.393367e+117
-6.393123e+117
-6.3913649e+117
-6.3914814e+117
-6.3915844e+117
-6.3924291e+117
-6.3896758e+117
-6.3900052e+117
-6.390394e+117
-6.3909879e+117
-6.3903075e+117
-6.389829e+117
-6.389624e+117
-6.3896576e+117
-6.3900674e+117
-6.390261e+117
-6.3903448e+117
-6.3904601e+117
-6.3898837e+117
-6.3895418e+117
-6.3895375e+117
-6.3898682e+117
-6.3899599e+117
-6.3898639e+117
-6.3899195e+117
-6.3899976e+117
-6.3791581e+117
-6.3799486e+117
-6.3905069e+117
-6.3901193e+117
-6.3899261e+117
-6.389941e+117
-6.3768481e+117
-6.3780285e+117
-6.3754462e+117
-6.3735702e+117
-6.3721719e+117
-6.3716089e+117
-6.3358004e+117
-6.3401369e+117
-6.3610556e+117
-6.3618723e+117
-6.3631656e+117
-6.3648629e+117
-6.3314939e+117
-6.3272349e+117
-6.3659322e+117
-6.3670351e+117
-6.3687632e+117
-6.3705822e+117
-6.3172481e+117
-6.315963e+117
-6.3238922e+117
-6.3200479e+117
-6.3794522e+117
-6.3722868e+117
-6.160532e+117
-6.16549e+117
-6.1693227e+117
-6.1721804e+117
-6.3913222e+117
-6.384734e+117
-6.4062773e+117
-6.3905586e+117
-6.4267575e+117
-6.425123e+117
-6.2283203e+117
-6.3595529e+117
-6.3578408e+117
-6.4280895e+117
-6.4277805e+117
-6.2319475e+117
-6.3609388e+117
-6.3616066e+117
-6.3680461e+117
-6.4655502e+117
-6.4655124e+117
-6.4777099e+117
-6.4778426e+117
-6.5104656e+117
-6.5107139e+117
-6.4660661e+117
-6.4656539e+117
-6.4779872e+117
-6.4783248e+117
-6.5108176e+117
-6.5108518e+117
-6.4446517e+117
-6.4861603e+117
-6.508224e+117
-6.5084547e+117
-6.522386e+117
-6.5219275e+117
-6.5236842e+117
-6.5239546e+117
-6.5223745e+117
-6.5219466e+117
-6.5239469e+117
-6.5237242e+117
-6.5106903e+117
-6.5105359e+117
-6.5208621e+117
-6.5122591e+117
-6.5124004e+117
-6.5083465e+117
-6.5143654e+117
-6.521031e+117
-6.5144302e+117
-6.5086701e+117
-6.5124564e+117
-6.5123495e+117
-6.5086168e+117
-6.508647e+117
-6.4899092e+117
-6.5002914e+117
-6.5003501e+117
-6.4740018e+117
-6.4740455e+117
-6.4511171e+117
-6.4512775e+117
-6.4900866e+117
-6.5142036e+117
-6.5208395e+117
-6.5210673e+117
-6.5143937e+117
-6.4733534e+117
-6.4999013e+117
-6.5002472e+117
-6.4737363e+117
-6.48998e+117
-6.4900778e+117
-6.4508282e+117
-6.4508357e+117
-6.5232629e+117
-6.5214991e+117
-6.5236161e+117
-6.5220571e+117
-6.5221925e+117
-6.5218811e+117
-6.5236386e+117
-6.5237477e+117
-6.5208111e+117
-6.5207597e+117
-6.5141688e+117
-6.5140854e+117
-6.4998932e+117
-6.5000288e+117
-6.4729816e+117
-6.4733039e+117
-6.5136255e+117
-6.5203763e+117
-6.5139537e+117
-6.5206807e+117
-6.4723688e+117
-6.4991934e+117
-6.4727438e+117
-6.4996951e+117
-6.4633499e+117
-6.4626589e+117
-6.4750529e+117
-6.4756579e+117
-6.5088848e+117
-6.5081436e+117
-6.4651132e+117
-6.4641726e+117
-6.4764327e+117
-6.4772864e+117
-6.5100998e+117
-6.5095612e+117
-6.5211973e+117
-6.5192596e+117
-6.5200493e+117
-6.5217672e+117
-6.5221023e+117
-6.5204203e+117
-6.5222114e+117
-6.5203524e+117
-6.5215553e+117
-6.5231286e+117
-6.5231354e+117
-6.5213565e+117
-6.5213498e+117
-6.5206415e+117
-6.5224631e+117
-6.5229466e+117
-6.5118836e+117
-6.518478e+117
-6.5189743e+117
-6.5122956e+117
-6.5126118e+117
-6.5192755e+117
-6.5194052e+117
-6.5127382e+117
-6.4712917e+117
-6.4975975e+117
-6.4980332e+117
-6.4714179e+117
-6.4716337e+117
-6.4983545e+117
-6.4983851e+117
-6.471436e+117
-6.5196634e+117
-6.5200504e+117
-6.5132001e+117
-6.512983e+117
-6.4713927e+117
-6.498557e+117
-6.4988736e+117
-6.4719382e+117
-6.5133735e+117
-6.5201814e+117
-6.52024e+117
-6.5134594e+117
-6.4721415e+117
-6.4990256e+117
-6.4990508e+117
-6.47209e+117
-6.3434481e+117
-6.4744915e+117
-6.4722655e+117
-6.304496e+117
-6.3087569e+117
-6.3463664e+117
-6.4762904e+117
-6.4779349e+117
-6.4201214e+117
-6.4175919e+117
-6.3498316e+117
-6.3529269e+117
-6.4234321e+117
-6.4218923e+117
-6.3551463e+117
-6.3566016e+117
-6.4384785e+117
-6.3952377e+117
-6.4042205e+117
-6.4479118e+117
-6.298979e+117
-6.2926702e+117
-6.3339085e+117
-6.459558e+117
-6.4635071e+117
-6.3390892e+117
-6.4699398e+117
-6.4670797e+117
-6.4214179e+117
-6.3793934e+117
-6.3865933e+117
-6.4290658e+117
-6.4839597e+117
-6.4799397e+117
-6.4990452e+117
-6.5031453e+117
-6.4928157e+117
-6.4883579e+117
-6.5122932e+117
-6.5075969e+117
-6.5034251e+117
-6.5075592e+117
-6.4882149e+117
-6.4921924e+117
-6.5121551e+117
-6.5168003e+117
-6.4965717e+117
-6.5012768e+117
-6.5087302e+117
-6.5129167e+117
-6.5330075e+117
-6.5285268e+117
-6.5219949e+117
-6.52781e+117
-6.5061627e+117
-6.5120955e+117
-6.5329082e+117
-6.5374935e+117
-6.5173945e+117
-6.5222757e+117
-6.5037082e+117
-6.4978769e+117
-6.5235018e+117
-6.5175241e+117
-6.4857538e+117
-6.4897334e+117
-6.4933484e+117
-6.4964644e+117
-6.5064486e+117
-6.5087719e+117
-6.5108369e+117
-6.5131267e+117
-6.5109049e+117
-6.512719e+117
-6.5151872e+117
-6.5170922e+117
-6.5036544e+117
-6.4837279e+117
-6.5060292e+117
-6.4860331e+117
-6.5098773e+117
-6.5080868e+117
-6.4880126e+117
-6.489557e+117
-6.519512e+117
-6.5182305e+117
-6.5226268e+117
-6.5240695e+117
-6.5117079e+117
-6.5137487e+117
-6.4912678e+117
-6.4932327e+117
-6.5165965e+117
-6.5145555e+117
-6.5189637e+117
-6.5209815e+117
-6.5154576e+117
-6.5167998e+117
-6.4949873e+117
-6.4962708e+117
-6.4990342e+117
-6.5014462e+117
-6.5033337e+117
-6.505076e+117
-6.5283417e+117
-6.5289659e+117
-6.53425e+117
-6.5335658e+117
-6.5242507e+117
-6.503849e+117
-6.5054576e+117
-6.5256921e+117
-6.5274227e+117
-6.5261269e+117
-6.5312407e+117
-6.5326106e+117
-6.5267322e+117
-6.5066225e+117
-6.5273208e+117
-6.5070361e+117
-6.5225755e+117
-6.5209088e+117
-6.5255258e+117
-6.5272746e+117
-6.5250678e+117
-6.5239756e+117
-6.5287224e+117
-6.5300616e+117
-6.5182553e+117
-6.5200746e+117
-6.4996217e+117
-6.4977772e+117
-6.5013173e+117
-6.502514e+117
-6.5216947e+117
-6.5229577e+117
-6.4565828e+117
-6.4557312e+117
-6.4692997e+117
-6.4685219e+117
-6.5021538e+117
-6.5030534e+117
-6.4587465e+117
-6.457655e+117
-6.4711476e+117
-6.4702102e+117
-6.50386e+117
-6.5045779e+117
-6.4597065e+117
-6.4592655e+117
-6.4722773e+117
-6.4717129e+117
-6.5052111e+117
-6.5059148e+117
-6.4616565e+117
-6.4604568e+117
-6.473036e+117
-6.5066141e+117
-6.474134e+117
-6.5073943e+117
-6.5144886e+117
-6.5136447e+117
-6.5159273e+117
-6.516568e+117
-6.5170032e+117
-6.5149507e+117
-6.5149666e+117
-6.5171911e+117
-6.5175066e+117
-6.5153055e+117
-6.5180732e+117
-6.516089e+117
-6.5164015e+117
-6.5163071e+117
-6.5184376e+117
-6.5183594e+117
-6.5075871e+117
-6.5136299e+117
-6.5142063e+117
-6.5080924e+117
-6.5084902e+117
-6.5146214e+117
-6.514839e+117
-6.5086891e+117
-6.4690182e+117
-6.4940534e+117
-6.4945422e+117
-6.4693141e+117
-6.4949433e+117
-6.4949232e+117
-6.4696207e+117
-6.4695203e+117
-6.5089281e+117
-6.5151358e+117
-6.5156005e+117
-6.5092542e+117
-6.5158307e+117
-6.5159262e+117
-6.5095944e+117
-6.509475e+117
-6.46947e+117
-6.4950534e+117
-6.4954015e+117
-6.4697068e+117
-6.4699212e+117
-6.4956081e+117
-6.4956531e+117
-6.4698859e+117
-6.519013e+117
-6.5189564e+117
-6.5209168e+117
-6.5207803e+117
-6.5187167e+117
-6.5179298e+117
-6.5199531e+117
-6.5205118e+117
-6.5187385e+117
-6.5166299e+117
-6.5173638e+117
-6.5192586e+117
-6.519569e+117
-6.5177076e+117
-6.5176506e+117
-6.5196896e+117
-6.5098659e+117
-6.5162353e+117
-6.5166808e+117
-6.510224e+117
-6.5105001e+117
-6.5169357e+117
-6.517073e+117
-6.5106188e+117
-6.4697555e+117
-6.4957879e+117
-6.496188e+117
-6.4698849e+117
-6.4965477e+117
-6.4965035e+117
-6.4701424e+117
-6.4702475e+117
-6.5178115e+117
-6.5173521e+117
-6.5108774e+117
-6.511217e+117
-6.4703261e+117
-6.4967215e+117
-6.4971422e+117
-6.4709445e+117
-6.511464e+117
-6.5180377e+117
-6.5181965e+117
-6.5116119e+117
-6.4973739e+117
-6.4973466e+117
-6.4711902e+117
-6.4711548e+117
-6.4070502e+117
-6.406768e+117
-6.407346e+117
-6.4072139e+117
-6.4053701e+117
-6.4055578e+117
-6.4063668e+117
-6.4052603e+117
-6.4077685e+117
-6.3653765e+117
-6.4077998e+117
-6.3657545e+117
-6.4070201e+117
-6.3646453e+117
-6.407263e+117
-6.3649512e+117
-6.4045617e+117
-6.4041783e+117
-6.4040685e+117
-6.4037914e+117
-6.4035589e+117
-6.4043259e+117
-6.4046064e+117
-6.4047616e+117
-6.4036109e+117
-6.4038935e+117
-6.4038664e+117
-6.4036422e+117
-6.4045036e+117
-6.4038994e+117
-6.404647e+117
-6.4045988e+117
-6.404294e+117
-6.4477891e+117
-6.404306e+117
-6.4476736e+117
-6.4268307e+117
-6.4270266e+117
-6.4041096e+117
-6.4042219e+117
-6.447153e+117
-6.4459441e+117
-6.4256604e+117
-6.4263669e+117
-6.4042223e+117
-6.4041723e+117
-6.4039866e+117
-6.4041174e+117
-6.4446421e+117
-6.4438236e+117
-6.4234078e+117
-6.4239983e+117
-6.4457223e+117
-6.4452711e+117
-6.4246269e+117
-6.425214e+117
-6.4406217e+117
-6.4417082e+117
-6.4210858e+117
-6.4202392e+117
-6.4433096e+117
-6.4425378e+117
-6.4219789e+117
-6.4227578e+117
-6.4385599e+117
-6.4380932e+117
-6.4177517e+117
-6.4182616e+117
-6.4400315e+117
-6.4393052e+117
-6.4188553e+117
-6.4195071e+117
-6.4092195e+117
-6.4482728e+117
-6.4510451e+117
-6.4117696e+117
-6.4533634e+117
-6.4555868e+117
-6.4141268e+117
-6.4162769e+117
-6.4430708e+117
-6.4457113e+117
-6.4042237e+117
-6.4068901e+117
-6.4377623e+117
-6.440462e+117
-6.3993708e+117
-6.4016761e+117
-6.4265742e+117
-6.4256044e+117
-6.4056051e+117
-6.4063023e+117
-6.4069847e+117
-6.4272699e+117
-6.4278266e+117
-6.4076642e+117
-6.4295939e+117
-6.4285543e+117
-6.4084207e+117
-6.4093027e+117
-6.4310745e+117
-6.4304127e+117
-6.4101902e+117
-6.4108653e+117
-6.4323074e+117
-6.4315386e+117
-6.4114415e+117
-6.4119826e+117
-6.4339855e+117
-6.4331601e+117
-6.4127483e+117
-6.4136139e+117
-6.4359e+117
-6.4347341e+117
-6.4144711e+117
-6.4154546e+117
-6.4375589e+117
-6.4368043e+117
-6.4163933e+117
-6.4171299e+117
-6.3858503e+117
-6.4225217e+117
-6.4237147e+117
-6.3865703e+117
-6.425265e+117
-6.4268508e+117
-6.3893137e+117
-6.3878108e+117
-6.4285491e+117
-6.4309038e+117
-6.3929844e+117
-6.3909646e+117
-6.4332505e+117
-6.4355872e+117
-6.3974693e+117
-6.3952415e+117
-6.1990178e+117
-6.1777084e+117
-6.1985737e+117
-6.1780262e+117
-6.2194795e+117
-6.2437123e+117
-6.2438778e+117
-6.2197639e+117
-6.1786189e+117
-6.1994539e+117
-6.1782963e+117
-6.1992413e+117
-6.2200733e+117
-6.2442522e+117
-6.2203588e+117
-6.2445759e+117
-6.1803036e+117
-6.2008946e+117
-6.2009654e+117
-6.1803668e+117
-6.1801723e+117
-6.2006685e+117
-6.1800235e+117
-6.2003651e+117
-6.2462202e+117
-6.2228594e+117
-6.2465647e+117
-6.2226961e+117
-6.2221531e+117
-6.2457821e+117
-6.2225053e+117
-6.2460689e+117
-6.2686677e+117
-6.2967517e+117
-6.2683428e+117
-6.2965467e+117
-6.2723158e+117
-6.3005209e+117
-6.3001158e+117
-6.2719318e+117
-6.358857e+117
-6.3253037e+117
-6.3256165e+117
-6.359213e+117
-6.3313431e+117
-6.3308848e+117
-6.2717211e+117
-6.2714507e+117
-6.2998313e+117
-6.299545e+117
-6.3305408e+117
-6.3302462e+117
-6.2961803e+117
-6.2677997e+117
-6.295887e+117
-6.2679807e+117
-6.3583382e+117
-6.3247117e+117
-6.3249274e+117
-6.3585151e+117
-6.1973391e+117
-6.1759637e+117
-6.1967885e+117
-6.1764354e+117
-6.2177288e+117
-6.2181698e+117
-6.2419773e+117
-6.2423456e+117
-6.1982336e+117
-6.1768928e+117
-6.1977735e+117
-6.1773944e+117
-6.2428626e+117
-6.218637e+117
-6.2191594e+117
-6.2434097e+117
-6.2946977e+117
-6.2661319e+117
-6.2942709e+117
-6.2664967e+117
-6.3231536e+117
-6.3234246e+117
-6.3568629e+117
-6.3569866e+117
-6.2675127e+117
-6.2955993e+117
-6.2669542e+117
-6.2950783e+117
-6.3572656e+117
-6.323796e+117
-6.3244093e+117
-6.3580177e+117
-6.0434434e+117
-6.0433449e+117
-6.0583612e+117
-6.058444e+117
-6.0442063e+117
-6.0441417e+117
-6.0590748e+117
-6.0590551e+117
-6.0743032e+117
-6.0732886e+117
-6.0890412e+117
-6.0731012e+117
-6.0893333e+117
-6.0899839e+117
-6.0742912e+117
-6.0899504e+117
-6.059155e+117
-6.0441426e+117
-6.0590917e+117
-6.0441883e+117
-6.0743391e+117
-6.0899949e+117
-6.0898983e+117
-6.0742973e+117
-6.043055e+117
-6.0580452e+117
-6.0582357e+117
-6.0432214e+117
-6.0887057e+117
-6.0728059e+117
-6.0728999e+117
-6.0887383e+117
-6.1221365e+117
-6.104544e+117
-6.1046548e+117
-6.1218928e+117
-6.1052875e+117
-6.122722e+117
-6.1049587e+117
-6.1224319e+117
-6.1588043e+117
-6.1590564e+117
-6.1393971e+117
-6.1396281e+117
-6.1399447e+117
-6.1593832e+117
-6.1402812e+117
-6.1597221e+117
-6.0415223e+117
-6.0564429e+117
-6.0569485e+117
-6.0419385e+117
-6.0423665e+117
-6.057395e+117
-6.0578635e+117
-6.0428414e+117
-6.0871431e+117
-6.0712232e+117
-6.0716993e+117
-6.0876051e+117
-6.0880818e+117
-6.0721627e+117
-6.0725976e+117
-6.088459e+117
-6.1208924e+117
-6.1029942e+117
-6.1203394e+117
-6.1034883e+117
-6.1378236e+117
-6.1383148e+117
-6.1571531e+117
-6.1576047e+117
-6.1043231e+117
-6.1216762e+117
-6.1039328e+117
-6.1213028e+117
-6.1580643e+117
-6.1387444e+117
-6.1391672e+117
-6.1585295e+117
-6.1064494e+117
-6.1236699e+117
-6.1237292e+117
-6.1065005e+117
-6.160554e+117
-6.1416899e+117
-6.160521e+117
-6.1417363e+117
-6.123613e+117
-6.1064978e+117
-6.1237064e+117
-6.1064102e+117
-6.1417028e+117
-6.1604673e+117
-6.1603554e+117
-6.1415976e+117
-6.1951372e+117
-6.1739341e+117
-6.1947522e+117
-6.1742169e+117
-6.2157341e+117
-6.2400302e+117
-6.2403181e+117
-6.2160351e+117
-6.1754426e+117
-6.1962622e+117
-6.1747331e+117
-6.1956316e+117
-6.2165229e+117
-6.240785e+117
-6.2172261e+117
-6.2414963e+117
-6.2926706e+117
-6.2642077e+117
-6.2923603e+117
-6.2644763e+117
-6.2656803e+117
-6.2649646e+117
-6.2932039e+117
-6.2938363e+117
-6.3212868e+117
-6.3550534e+117
-6.3215109e+117
-6.3552876e+117
-6.3227689e+117
-6.3557755e+117
-6.3564843e+117
-6.3220455e+117
-6.1743822e+117
-6.173959e+117
-6.1951795e+117
-6.194817e+117
-6.215713e+117
-6.2399523e+117
-6.2161429e+117
-6.2404429e+117
-6.1945935e+117
-6.1737594e+117
-6.1946291e+117
-6.1737809e+117
-6.2155457e+117
-6.2155656e+117
-6.2397712e+117
-6.2398199e+117
-6.2646973e+117
-6.292984e+117
-6.2641994e+117
-6.2925504e+117
-6.3214706e+117
-6.3552623e+117
-6.3220387e+117
-6.355908e+117
-6.2640257e+117
-6.2922262e+117
-6.2639784e+117
-6.2922942e+117
-6.3211899e+117
-6.354971e+117
-6.3550096e+117
-6.3212075e+117
-6.1015948e+117
-6.1013412e+117
-6.118906e+117
-6.1186674e+117
-6.1359842e+117
-6.1551509e+117
-6.1363187e+117
-6.1555675e+117
-6.1013086e+117
-6.1185152e+117
-6.1012511e+117
-6.118543e+117
-6.135833e+117
-6.1358277e+117
-6.1549724e+117
-6.1549768e+117
-6.0402866e+117
-6.0402226e+117
-6.0550262e+117
-6.0549114e+117
-6.0695346e+117
-6.085412e+117
-6.0697423e+117
-6.0856744e+117
-6.0549648e+117
-6.0401907e+117
-6.0549006e+117
-6.0402317e+117
-6.0695222e+117
-6.0696232e+117
-6.0853597e+117
-6.0854472e+117
-6.05521e+117
-6.0403205e+117
-6.0550568e+117
-6.0403731e+117
-6.06971e+117
-6.0855579e+117
-6.0857185e+117
-6.0698689e+117
-6.0559855e+117
-6.0406025e+117
-6.0554869e+117
-6.0410684e+117
-6.0701888e+117
-6.0860265e+117
-6.0707005e+117
-6.0865297e+117
-6.118818e+117
-6.1013847e+117
-6.1186129e+117
-6.1015412e+117
-6.1551573e+117
-6.1359779e+117
-6.1361852e+117
-6.1553939e+117
-6.1024278e+117
-6.1197884e+117
-6.1018883e+117
-6.119237e+117
-6.1559186e+117
-6.1366607e+117
-6.1372968e+117
-6.1566137e+117
-5.8602509e+117
-5.8598247e+117
-5.8732229e+117
-5.8727539e+117
-5.8725851e+117
-5.8726839e+117
-5.8595446e+117
-5.8595312e+117
-5.8185465e+117
-5.7980723e+117
-5.8177313e+117
-5.7972126e+117
-5.8423697e+117
-5.8417963e+117
-5.8596189e+117
-5.8597081e+117
-5.8728191e+117
-5.8729737e+117
-5.8732948e+117
-5.8736468e+117
-5.8598625e+117
-5.8601603e+117
-5.7962807e+117
-5.8170453e+117
-5.8417394e+117
-5.841669e+117
-5.8847749e+117
-5.8964111e+117
-5.8960265e+117
-5.8843301e+117
-5.8841839e+117
-5.8958491e+117
-5.8959921e+117
-5.8843125e+117
-5.9204869e+117
-5.9084931e+117
-5.920857e+117
-5.9081145e+117
-5.9205001e+117
-5.9079579e+117
-5.9203552e+117
-5.9081044e+117
-5.8844744e+117
-5.8961633e+117
-5.8963817e+117
-5.8846717e+117
-5.8850109e+117
-5.8966435e+117
-5.8969713e+117
-5.8853511e+117
-5.9208251e+117
-5.9082769e+117
-5.9206706e+117
-5.9084668e+117
-5.9087342e+117
-5.9211048e+117
-5.9213893e+117
-5.9090552e+117
-5.7781372e+117
-5.7576077e+117
-5.7771812e+117
-5.756895e+117
-5.8623145e+117
-5.8627072e+117
-5.8764015e+117
-5.8767483e+117
-5.8490504e+117
-5.8393434e+117
-5.8398293e+117
-5.849474e+117
-5.8884212e+117
-5.9000127e+117
-5.9002453e+117
-5.8887273e+117
-5.8890175e+117
-5.9004668e+117
-5.9006428e+117
-5.8891906e+117
-5.9116705e+117
-5.9234349e+117
-5.9234484e+117
-5.9117986e+117
-5.9118685e+117
-5.9234264e+117
-5.9234343e+117
-5.9119586e+117
-5.9332265e+117
-5.9329103e+117
-5.9457633e+117
-5.9454992e+117
-5.9584349e+117
-5.9582037e+117
-5.9717107e+117
-5.9715324e+117
-5.9327938e+117
-5.9454288e+117
-5.9455679e+117
-5.9329376e+117
-5.9715712e+117
-5.9718201e+117
-5.958191e+117
-5.9583676e+117
-5.9987866e+117
-5.9849437e+117
-5.9986692e+117
-5.9848743e+117
-5.9849717e+117
-5.9989609e+117
-5.9992436e+117
-5.9852392e+117
-6.0125268e+117
-6.0271783e+117
-6.0127588e+117
-6.0275097e+117
-6.0278694e+117
-6.0283003e+117
-6.013034e+117
-6.0133801e+117
-5.9854177e+117
-5.9994433e+117
-5.9996215e+117
-5.9855458e+117
-5.9858308e+117
-5.9857277e+117
-5.9997931e+117
-5.9998448e+117
-6.0135976e+117
-6.0285337e+117
-6.0286957e+117
-6.0137428e+117
-6.0140023e+117
-6.0139063e+117
-6.0288317e+117
-6.028938e+117
-5.9330865e+117
-5.9457025e+117
-5.9332404e+117
-5.9458527e+117
-5.9586154e+117
-5.958502e+117
-5.9719718e+117
-5.9720643e+117
-5.9462512e+117
-5.9334813e+117
-5.9460815e+117
-5.933723e+117
-5.9722571e+117
-5.9588238e+117
-5.9589748e+117
-5.9723892e+117
-5.935604e+117
-5.9479292e+117
-5.9477574e+117
-5.9357435e+117
-5.9603257e+117
-5.9732432e+117
-5.9603879e+117
-5.9732243e+117
-6.0004362e+117
-5.98666e+117
-6.0004069e+117
-5.9866563e+117
-5.9353799e+117
-5.9353854e+117
-5.9475458e+117
-5.9475619e+117
-5.935441e+117
-5.9355216e+117
-5.9477829e+117
-5.9476464e+117
-5.9603065e+117
-5.9733231e+117
-5.9604719e+117
-5.9735021e+117
-5.9602113e+117
-5.9732149e+117
-5.9731949e+117
-5.9601945e+117
-5.9869867e+117
-5.9868094e+117
-6.0007331e+117
-6.0005792e+117
-6.0148165e+117
-6.0293256e+117
-6.0149453e+117
-6.0294276e+117
-6.0004165e+117
-5.986699e+117
-6.0004736e+117
-5.9866543e+117
-6.0147341e+117
-6.029275e+117
-6.0292627e+117
-6.014672e+117
-5.9844422e+117
-5.9979429e+117
-5.9979517e+117
-5.9844055e+117
-5.9844464e+117
-5.9844175e+117
-5.9979255e+117
-5.9979278e+117
-6.0260109e+117
-6.0116233e+117
-6.0260857e+117
-6.0115613e+117
-6.0115541e+117
-6.0259668e+117
-6.0115261e+117
-6.0259908e+117
-5.9844433e+117
-5.9844475e+117
-5.997963e+117
-5.998004e+117
-6.0116343e+117
-6.0260666e+117
-6.0116049e+117
-6.0260892e+117
-5.9984584e+117
-5.9845491e+117
-5.9981332e+117
-5.9849109e+117
-6.0117898e+117
-6.026275e+117
-6.0266852e+117
-6.0121236e+117
-5.9461164e+117
-5.9340955e+117
-5.9462476e+117
-5.9338476e+117
-5.9585564e+117
-5.95845e+117
-5.9714654e+117
-5.9713687e+117
-5.9460196e+117
-5.9337019e+117
-5.9460181e+117
-5.9336357e+117
-5.9713767e+117
-5.9584191e+117
-5.958458e+117
-5.9714126e+117
-5.9460669e+117
-5.9335962e+117
-5.9334289e+117
-5.9459443e+117
-5.9584355e+117
-5.9714008e+117
-5.9584845e+117
-5.9713993e+117
-5.9717575e+117
-5.9585422e+117
-5.9585659e+117
-5.9714861e+117
-5.933409e+117
-5.9460135e+117
-5.9334419e+117
-5.9459383e+117
-5.8621821e+117
-5.8616735e+117
-5.8752169e+117
-5.8746379e+117
-5.8744444e+117
-5.8742481e+117
-5.8613783e+117
-5.8611585e+117
-5.8195913e+117
-5.7987118e+117
-5.7973432e+117
-5.8182679e+117
-5.843989e+117
-5.8432983e+117
-5.860952e+117
-5.860782e+117
-5.873899e+117
-5.8736659e+117
-5.8737546e+117
-5.8736759e+117
-5.8607587e+117
-5.8606361e+117
-5.8182005e+117
-5.7973352e+117
-5.7980021e+117
-5.8186272e+117
-5.8430147e+117
-5.8429643e+117
-5.8976935e+117
-5.8867739e+117
-5.8982064e+117
-5.8861822e+117
-5.9100233e+117
-5.9095912e+117
-5.9220335e+117
-5.9216716e+117
-5.8971919e+117
-5.8859601e+117
-5.897371e+117
-5.8857619e+117
-5.9214552e+117
-5.9093088e+117
-5.909155e+117
-5.9213299e+117
-5.8967895e+117
-5.885448e+117
-5.8970008e+117
-5.885209e+117
-5.9212485e+117
-5.9090002e+117
-5.9087866e+117
-5.9210459e+117
-5.8966849e+117
-5.8852602e+117
-5.896737e+117
-5.8851775e+117
-5.9210397e+117
-5.9087409e+117
-5.9087199e+117
-5.9210274e+117
-5.7786131e+117
-5.7583618e+117
-5.7568119e+117
-5.7771184e+117
-5.7574638e+117
-5.7566097e+117
-5.777156e+117
-5.7779718e+117
-5.7382133e+117
-5.7177013e+117
-5.7162709e+117
-5.7365346e+117
-5.6980998e+117
-5.6770549e+117
-5.6759202e+117
-5.6967484e+117
-5.6762679e+117
-5.6757176e+117
-5.6962626e+117
-5.6969761e+117
-5.7359878e+117
-5.7154881e+117
-5.716271e+117
-5.7369077e+117
-5.8264869e+117
-5.8266495e+117
-5.8761069e+117
-5.8757523e+117
-5.7052721e+117
-5.853557e+117
-5.8547689e+117
-5.7819876e+117
-5.8317086e+117
-5.830506e+117
-5.8525615e+117
-5.8528515e+117
-5.7809802e+117
-5.8294974e+117
-5.8290996e+117
-5.8757014e+117
-5.875839e+117
-5.9006494e+117
-5.9005458e+117
-5.7329994e+117
-5.7334688e+117
-5.876328e+117
-5.8775788e+117
-5.9010083e+117
-5.9022411e+117
-5.8556896e+117
-5.8569196e+117
-5.7829476e+117
-5.8335426e+117
-5.832508e+117
-5.8785801e+117
-5.9032535e+117
-5.8798276e+117
-5.9042657e+117
-5.8815021e+117
-5.9056468e+117
-5.8833483e+117
-5.9072387e+117
-5.8585567e+117
-5.860553e+117
-5.7857538e+117
-5.8374248e+117
-5.8351882e+117
-5.7333736e+117
-5.7360562e+117
-5.9804525e+117
-6.0093132e+117
-5.981081e+117
-6.009837e+117
-5.9296743e+117
-5.9310076e+117
-5.9554084e+117
-5.9564424e+117
-5.9277615e+117
-5.953766e+117
-5.9286314e+117
-5.9545392e+117
-5.9819185e+117
-6.0106978e+117
-5.9828199e+117
-6.0115031e+117
-5.9256761e+117
-5.9518768e+117
-5.9267716e+117
-5.9528445e+117
-5.9786573e+117
-6.0076601e+117
-5.9795786e+117
-6.0085985e+117
-5.980977e+117
-5.925106e+117
-5.9247971e+117
-5.9814608e+117
-5.9784156e+117
-6.0074432e+117
-5.9783082e+117
-6.0072664e+117
-5.9253568e+117
-5.9515531e+117
-5.9252435e+117
-5.9514935e+117
-5.6344379e+117
-5.6357054e+117
-5.6876806e+117
-5.6855728e+117
-5.686267e+117
-5.6344634e+117
-5.6860527e+117
-5.5838868e+117
-5.5786752e+117
-5.7016036e+117
-5.9826621e+117
-5.9283002e+117
-5.9267108e+117
-5.9814381e+117
-5.8281515e+117
-5.8271852e+117
-5.8791381e+117
-5.8776746e+117
-6.2588677e+117
-6.3122489e+117
-6.2596362e+117
-6.3131291e+117
-6.1739984e+117
-6.1746279e+117
-6.2162511e+117
-6.2169598e+117
-6.1726446e+117
-6.2144837e+117
-6.1731587e+117
-6.2152717e+117
-6.2607794e+117
-6.3146499e+117
-6.2618686e+117
-6.3162238e+117
-6.1708118e+117
-6.212643e+117
-6.171898e+117
-6.2137172e+117
-6.2566078e+117
-6.309784e+117
-6.2579322e+117
-6.3113364e+117
-6.1699059e+117
-6.211338e+117
-6.1701144e+117
-6.2117741e+117
-6.1719571e+117
-6.1691751e+117
-6.2528132e+117
-6.2565421e+117
-6.2551498e+117
-6.3081475e+117
-6.2555289e+117
-6.3086074e+117
-6.0362215e+117
-6.0671138e+117
-6.0371164e+117
-6.0679371e+117
-6.0987097e+117
-6.1346972e+117
-6.099619e+117
-6.1357477e+117
-6.0376576e+117
-6.0364087e+117
-6.1010674e+117
-6.1030251e+117
-6.0980465e+117
-6.1339308e+117
-6.0981506e+117
-6.1340424e+117
-6.035856e+117
-6.0665291e+117
-6.0357467e+117
-6.0665992e+117
-6.1002831e+117
-6.1363975e+117
-6.1007188e+117
-6.1368137e+117
-6.0377339e+117
-6.0685331e+117
-6.0382398e+117
-6.0690869e+117
-6.0397426e+117
-6.0390804e+117
-6.0698692e+117
-6.070367e+117
-6.1014381e+117
-6.1019793e+117
-6.1375984e+117
-6.1382131e+117
-6.1663673e+117
-6.1639395e+117
-6.2454685e+117
-6.2491031e+117
-6.0980041e+117
-6.0358354e+117
-6.0357141e+117
-6.0993371e+117
-5.9832135e+117
-6.0115443e+117
-5.9831856e+117
-6.0113208e+117
-5.9327448e+117
-5.9335932e+117
-5.9578132e+117
-5.9587706e+117
-5.9319324e+117
-5.9571098e+117
-5.9321927e+117
-5.9573009e+117
-5.9836504e+117
-5.9847908e+117
-6.011921e+117
-6.0133003e+117
-5.8853483e+117
-5.9090005e+117
-5.8860006e+117
-5.9098042e+117
-5.8843111e+117
-5.9081628e+117
-5.8849241e+117
-5.9084955e+117
-5.8617353e+117
-5.862393e+117
-5.838932e+117
-5.7881892e+117
-5.8395797e+117
-5.8629137e+117
-5.8634707e+117
-5.7892967e+117
-5.8407751e+117
-5.8402908e+117
-5.739807e+117
-5.7384976e+117
-5.8635656e+117
-5.8641811e+117
-5.7907176e+117
-5.8410138e+117
-5.8406065e+117
-5.8633813e+117
-5.8632907e+117
-5.789926e+117
-5.8403503e+117
-5.8407037e+117
-5.8858927e+117
-5.9100984e+117
-5.885898e+117
-5.9102195e+117
-5.7403423e+117
-5.7408987e+117
-5.8862418e+117
-5.9107551e+117
-5.88707e+117
-5.9116279e+117
-5.9352494e+117
-5.9612171e+117
-5.9359813e+117
-5.9617503e+117
-5.9860362e+117
-6.0146585e+117
-5.9869602e+117
-6.0156753e+117
-5.9342167e+117
-5.9597194e+117
-5.9345891e+117
-5.9604644e+117
-5.9878115e+117
-6.0166422e+117
-5.9882704e+117
-6.0170702e+117
-5.6370149e+117
-5.6896897e+117
-5.638894e+117
-5.691328e+117
-5.641986e+117
-5.6408832e+117
-5.6921539e+117
-5.6926717e+117
-5.7248519e+117
-5.7239041e+117
-5.9414899e+117
-5.9417797e+117
-6.0969019e+117
-6.0342442e+117
-6.094436e+117
-6.0356877e+117
-6.091846e+117
-6.0327116e+117
-6.0926106e+117
-6.2362436e+117
-6.1560028e+117
-6.1563737e+117
-6.2367723e+117
-6.2391512e+117
-6.1614184e+117
-6.1584558e+117
-6.2424681e+117
-5.5079279e+117
-5.5073666e+117
-5.2992565e+117
-5.3019023e+117
-5.9808439e+117
-5.9822542e+117
-5.9294939e+117
-5.9293088e+117
-5.9830116e+117
-5.8806381e+117
-5.8805963e+117
-5.8292535e+117
-5.7236905e+117
-5.9421906e+117
-5.9423014e+117
-5.7224108e+117
-5.9441446e+117
-5.7236488e+117
-5.5092037e+117
-5.587224e+117
-5.3060788e+117
-5.3051407e+117
-5.5091514e+117
-5.7232618e+117
-5.9448704e+117
-6.1019842e+117
-6.1381985e+117
-6.1019557e+117
-6.1381265e+117
-6.039643e+117
-6.039452e+117
-6.0702557e+117
-6.0702119e+117
-6.0402184e+117
-6.0416733e+117
-6.0710253e+117
-6.072462e+117
-6.1027652e+117
-6.104299e+117
-6.1390441e+117
-6.1407503e+117
-6.0450752e+117
-6.0454223e+117
-6.0759744e+117
-6.0762348e+117
-6.0429832e+117
-6.0440742e+117
-6.0737563e+117
-6.0749703e+117
-6.1056003e+117
-6.1067385e+117
-6.1421033e+117
-6.1432198e+117
-6.1077296e+117
-6.1080534e+117
-6.1442037e+117
-6.1445215e+117
-6.1757259e+117
-6.1774805e+117
-6.2186387e+117
-6.2203225e+117
-6.1746787e+117
-6.2172087e+117
-6.1746981e+117
-6.2175384e+117
-6.3169873e+117
-6.2623625e+117
-6.2626916e+117
-6.3173387e+117
-6.2638856e+117
-6.2657079e+117
-6.3186025e+117
-6.3205198e+117
-6.2671977e+117
-6.3219537e+117
-6.2684671e+117
-6.3231604e+117
-6.1788633e+117
-6.1800312e+117
-6.2217476e+117
-6.2231211e+117
-6.1809951e+117
-6.1813053e+117
-6.224082e+117
-6.2241984e+117
-6.2694801e+117
-6.3243021e+117
-6.2697545e+117
-6.3248692e+117
-5.9981887e+117
-5.9852117e+117
-5.9987453e+117
-5.9846438e+117
-6.0124463e+117
-6.026914e+117
-6.0261185e+117
-6.0117636e+117
-5.983925e+117
-5.9972934e+117
-5.9842316e+117
-5.997694e+117
-6.0112723e+117
-6.0256075e+117
-6.0108659e+117
-6.0252257e+117
-5.9343535e+117
-5.9461903e+117
-5.9461062e+117
-5.9342502e+117
-5.9345147e+117
-5.9343436e+117
-5.9461763e+117
-5.9463077e+117
-5.9707292e+117
-5.9582247e+117
-5.9708981e+117
-5.9580952e+117
-5.9582873e+117
-5.9708949e+117
-5.9581502e+117
-5.9707548e+117
-5.9467411e+117
-5.9349637e+117
-5.9470356e+117
-5.9347267e+117
-5.9593006e+117
-5.9722033e+117
-5.9716432e+117
-5.9588716e+117
-5.94625e+117
-5.9345026e+117
-5.9464565e+117
-5.9343568e+117
-5.9585866e+117
-5.9713069e+117
-5.9583531e+117
-5.971059e+117
-5.983709e+117
-5.997071e+117
-5.9968665e+117
-5.9835027e+117
-6.0250322e+117
-6.0104272e+117
-6.0106603e+117
-6.0247914e+117
-5.9835281e+117
-5.9836433e+117
-5.9968939e+117
-5.9969502e+117
-6.0248044e+117
-6.0105073e+117
-6.0248385e+117
-6.0104524e+117
-5.888504e+117
-5.8885427e+117
-5.8996146e+117
-5.8996042e+117
-5.9109179e+117
-5.9225768e+117
-5.9224907e+117
-5.9109777e+117
-5.8888857e+117
-5.8890555e+117
-5.8999659e+117
-5.8998203e+117
-5.9110481e+117
-5.9112083e+117
-5.9226065e+117
-5.9227975e+117
-5.8995508e+117
-5.8881306e+117
-5.8994422e+117
-5.88827e+117
-5.9110991e+117
-5.922991e+117
-5.9228017e+117
-5.9110764e+117
-5.8996645e+117
-5.8884863e+117
-5.8996001e+117
-5.8886136e+117
-5.9109945e+117
-5.9226401e+117
-5.9109837e+117
-5.9225434e+117
-5.8635731e+117
-5.8637553e+117
-5.8766148e+117
-5.8767424e+117
-5.8769966e+117
-5.8772094e+117
-5.8640144e+117
-5.8642984e+117
-5.8004725e+117
-5.8000952e+117
-5.8208138e+117
-5.8209975e+117
-5.8458614e+117
-5.8465308e+117
-5.8645009e+117
-5.8647035e+117
-5.8771749e+117
-5.8772713e+117
-5.8776348e+117
-5.877821e+117
-5.864997e+117
-5.8651286e+117
-5.8219563e+117
-5.8016737e+117
-5.8027656e+117
-5.8229507e+117
-5.8479395e+117
-5.8473322e+117
-5.7801129e+117
-5.7600254e+117
-5.760761e+117
-5.7806481e+117
-5.7631263e+117
-5.7622036e+117
-5.7820996e+117
-5.7831855e+117
-5.9836524e+117
-5.9969373e+117
-5.996817e+117
-5.9834689e+117
-5.983491e+117
-5.9834197e+117
-5.9967455e+117
-5.9967993e+117
-6.0244163e+117
-6.010425e+117
-6.0246989e+117
-6.0102152e+117
-6.0103033e+117
-6.024606e+117
-6.0101938e+117
-6.0244209e+117
-5.9341656e+117
-5.9460185e+117
-5.9459913e+117
-5.9340145e+117
-5.9340904e+117
-5.9340141e+117
-5.9460562e+117
-5.9461822e+117
-5.9708022e+117
-5.9580626e+117
-5.9707462e+117
-5.9580736e+117
-5.9584238e+117
-5.9712883e+117
-5.9582103e+117
-5.9709854e+117
-5.9462129e+117
-5.9345725e+117
-5.9463534e+117
-5.9344018e+117
-5.9583166e+117
-5.9709019e+117
-5.9706688e+117
-5.9581234e+117
-5.9460077e+117
-5.9342395e+117
-5.9460652e+117
-5.9341655e+117
-5.9580519e+117
-5.9706266e+117
-5.9580414e+117
-5.9706848e+117
-5.9835589e+117
-5.9969226e+117
-5.9970904e+117
-5.9836489e+117
-5.9839017e+117
-5.9974107e+117
-5.9842384e+117
-5.9977435e+117
-6.0251259e+117
-6.0105044e+117
-6.0248657e+117
-6.0107062e+117
-6.0114592e+117
-6.0110759e+117
-6.0255227e+117
-6.0259368e+117
-5.8882229e+117
-5.887784e+117
-5.8993552e+117
-5.8989929e+117
-5.9104367e+117
-5.9223672e+117
-5.9221401e+117
-5.9107457e+117
-5.8876915e+117
-5.8873726e+117
-5.898613e+117
-5.8988573e+117
-5.9103033e+117
-5.9101796e+117
-5.9220818e+117
-5.922096e+117
-5.8998051e+117
-5.8888937e+117
-5.8999354e+117
-5.8887004e+117
-5.9112732e+117
-5.9228581e+117
-5.9226639e+117
-5.911135e+117
-5.8996486e+117
-5.8887451e+117
-5.8997286e+117
-5.8886409e+117
-5.9109792e+117
-5.9224956e+117
-5.9108974e+117
-5.9224045e+117
-5.8650251e+117
-5.8648654e+117
-5.877637e+117
-5.8774274e+117
-5.8774465e+117
-5.8773124e+117
-5.8647697e+117
-5.8645595e+117
-5.8229641e+117
-5.802765e+117
-5.8015139e+117
-5.8219897e+117
-5.8477472e+117
-5.8473638e+117
-5.8641795e+117
-5.86372e+117
-5.8768628e+117
-5.8764017e+117
-5.8762439e+117
-5.8758564e+117
-5.8633213e+117
-5.8627758e+117
-5.8213639e+117
-5.8007245e+117
-5.7998685e+117
-5.8206368e+117
-5.8464788e+117
-5.8453586e+117
-5.7830232e+117
-5.7625958e+117
-5.7608971e+117
-5.7815009e+117
-5.7594897e+117
-5.7600969e+117
-5.7806657e+117
-5.7798399e+117
-5.7400786e+117
-5.7199617e+117
-5.720727e+117
-5.7407928e+117
-5.7004187e+117
-5.6795996e+117
-5.6796339e+117
-5.7010221e+117
-5.6786183e+117
-5.6791184e+117
-5.7010098e+117
-5.7008837e+117
-5.741911e+117
-5.7212719e+117
-5.7214329e+117
-5.7426768e+117
-5.6766647e+117
-5.6757527e+117
-5.697855e+117
-5.6982319e+117
-5.6756998e+117
-5.6775464e+117
-5.6999011e+117
-5.6980226e+117
-5.7418006e+117
-5.7204056e+117
-5.7185848e+117
-5.7399029e+117
-5.7392411e+117
-5.7181175e+117
-5.7181733e+117
-5.7390235e+117
-5.6323379e+117
-5.6570302e+117
-5.6562986e+117
-5.3031802e+117
-5.3078274e+117
-5.5106179e+117
-5.5120582e+117
-6.1748405e+117
-6.1958023e+117
-6.1956653e+117
-6.1746107e+117
-6.1745599e+117
-6.1745751e+117
-6.1955985e+117
-6.1955096e+117
-6.2410846e+117
-6.2168798e+117
-6.2412698e+117
-6.2166686e+117
-6.2165858e+117
-6.2410099e+117
-6.2166142e+117
-6.2410215e+117
-6.1968595e+117
-6.1764327e+117
-6.1973657e+117
-6.1758331e+117
-6.2183727e+117
-6.2427052e+117
-6.2419215e+117
-6.2177177e+117
-6.1959996e+117
-6.1753989e+117
-6.1964038e+117
-6.1750548e+117
-6.2173443e+117
-6.2415789e+117
-6.2170332e+117
-6.2413546e+117
-6.2943691e+117
-6.266878e+117
-6.2950303e+117
-6.2661024e+117
-6.357189e+117
-6.3238579e+117
-6.3231267e+117
-6.3565029e+117
-6.2655441e+117
-6.2937278e+117
-6.2657332e+117
-6.2939903e+117
-6.3561356e+117
-6.3227356e+117
-6.3225883e+117
-6.3561034e+117
-6.2654697e+117
-6.2936365e+117
-6.2935245e+117
-6.2652921e+117
-6.3559892e+117
-6.322269e+117
-6.3224553e+117
-6.3557967e+117
-6.2652744e+117
-6.2652994e+117
-6.293567e+117
-6.2935189e+117
-6.3558709e+117
-6.3224318e+117
-6.3560144e+117
-6.3223525e+117
-6.2651782e+117
-6.2933904e+117
-6.2932454e+117
-6.2648817e+117
-6.2649266e+117
-6.2647955e+117
-6.2930668e+117
-6.2931019e+117
-6.3552674e+117
-6.322208e+117
-6.3557627e+117
-6.3218426e+117
-6.3219106e+117
-6.3555304e+117
-6.3217425e+117
-6.3552191e+117
-6.1743243e+117
-6.1952856e+117
-6.195582e+117
-6.1745476e+117
-6.1746328e+117
-6.1746435e+117
-6.1955998e+117
-6.195452e+117
-6.2406848e+117
-6.2163405e+117
-6.2407174e+117
-6.2164373e+117
-6.2164452e+117
-6.2407748e+117
-6.2165245e+117
-6.2408141e+117
-6.1953121e+117
-6.1744774e+117
-6.1954249e+117
-6.1742998e+117
-6.2164636e+117
-6.2408477e+117
-6.2404878e+117
-6.2162043e+117
-6.1951397e+117
-6.1741573e+117
-6.1951674e+117
-6.1741555e+117
-6.2161488e+117
-6.2404717e+117
-6.2162018e+117
-6.2405966e+117
-6.2649595e+117
-6.2931663e+117
-6.2932617e+117
-6.2649189e+117
-6.2650303e+117
-6.2933846e+117
-6.2650162e+117
-6.2932899e+117
-6.355865e+117
-6.3220636e+117
-6.3557276e+117
-6.3221339e+117
-6.3223514e+117
-6.3561777e+117
-6.3222977e+117
-6.3560275e+117
-6.1181672e+117
-6.1007194e+117
-6.1183033e+117
-6.1005156e+117
-6.1359882e+117
-6.1554951e+117
-6.1553046e+117
-6.1357866e+117
-6.1183894e+117
-6.1005722e+117
-6.1181981e+117
-6.1008401e+117
-6.1357728e+117
-6.1551915e+117
-6.1358701e+117
-6.1551706e+117
-6.0388007e+117
-6.0385217e+117
-6.0535873e+117
-6.053339e+117
-6.068463e+117
-6.0682028e+117
-6.0845945e+117
-6.0843427e+117
-6.038538e+117
-6.0533728e+117
-6.0535902e+117
-6.038759e+117
-6.0843935e+117
-6.0846752e+117
-6.0682502e+117
-6.0685073e+117
-6.0390259e+117
-6.0538653e+117
-6.0393106e+117
-6.0541815e+117
-6.0690189e+117
-6.0687596e+117
-6.0848971e+117
-6.085103e+117
-6.0401249e+117
-6.0549174e+117
-6.0397155e+117
-6.0545801e+117
-6.0854284e+117
-6.0693855e+117
-6.0697102e+117
-6.085708e+117
-6.1009661e+117
-6.1184745e+117
-6.1186796e+117
-6.1011423e+117
-6.1016455e+117
-6.1014228e+117
-6.1189196e+117
-6.1190126e+117
-6.1554008e+117
-6.1556026e+117
-6.1360311e+117
-6.1362074e+117
-6.1365028e+117
-6.1364259e+117
-6.1557911e+117
-6.1558193e+117
-6.1033211e+117
-6.1200708e+117
-6.1205821e+117
-6.1025598e+117
-6.1380123e+117
-6.1574561e+117
-6.1568462e+117
-6.1374805e+117
-6.1015571e+117
-6.1190735e+117
-6.1019721e+117
-6.1195241e+117
-6.1370504e+117
-6.1564395e+117
-6.1366675e+117
-6.1560917e+117
-6.053898e+117
-6.0392203e+117
-6.0540988e+117
-6.0389853e+117
-6.0690389e+117
-6.0852007e+117
-6.0849153e+117
-6.0687809e+117
-6.0537634e+117
-6.0389688e+117
-6.0538447e+117
-6.0389639e+117
-6.0687115e+117
-6.0848291e+117
-6.0847677e+117
-6.0686423e+117
-6.0872841e+117
-6.0710257e+117
-6.0702171e+117
-6.0864283e+117
-6.0560319e+117
-6.0411235e+117
-6.0403254e+117
-6.0552515e+117
-6.0543072e+117
-6.0398037e+117
-6.0547193e+117
-6.0394262e+117
-6.0858397e+117
-6.0696669e+117
-6.0692726e+117
-6.0854425e+117
-6.1186464e+117
-6.1012992e+117
-6.1188365e+117
-6.1010241e+117
-6.1559016e+117
-6.1364618e+117
-6.1362372e+117
-6.1556592e+117
-6.1184446e+117
-6.1009399e+117
-6.1185609e+117
-6.1008694e+117
-6.1556421e+117
-6.1361931e+117
-6.1361205e+117
-6.1555938e+117
-6.3895695e+117
-6.3899712e+117
-6.3905687e+117
-6.3903039e+117
-6.387236e+117
-6.3875943e+117
-6.3882635e+117
-6.3890092e+117
-6.3855643e+117
-6.3866059e+117
-6.3839354e+117
-6.3846742e+117
-6.3832907e+117
-6.3826359e+117
-6.3823212e+117
-6.3819839e+117
-6.3531457e+117
-6.3553316e+117
-6.3598664e+117
-6.3576216e+117
-6.3708463e+117
-6.3711853e+117
-6.3717203e+117
-6.3725287e+117
-6.373142e+117
-6.373841e+117
-6.3747038e+117
-6.3755552e+117
-6.3481342e+117
-6.3510262e+117
-6.3438966e+117
-6.3456856e+117
-6.3763011e+117
-6.376017e+117
-6.3769512e+117
-6.3779128e+117
-6.3787111e+117
-6.3794919e+117
-6.380386e+117
-6.3813282e+117
-6.3333933e+117
-6.3349801e+117
-6.332643e+117
-6.332629e+117
-6.3397184e+117
-6.3421503e+117
-6.3363438e+117
-6.3376983e+117
-6.3794803e+117
-6.3722795e+117
-6.1605013e+117
-6.165478e+117
-6.1605639e+117
-6.1475296e+117
-6.4298538e+117
-6.4307728e+117
-6.4290674e+117
-6.4280929e+117
-6.2332627e+117
-6.2310517e+117
-6.297958e+117
-6.2960651e+117
-6.3658068e+117
-6.3646621e+117
-6.3990542e+117
-6.3999082e+117
-6.3627279e+117
-6.3970364e+117
-6.398248e+117
-6.36369e+117
-6.4315673e+117
-6.4319819e+117
-6.4312544e+117
-6.43139e+117
-6.2360833e+117
-6.3000123e+117
-6.3665234e+117
-6.3669316e+117
-6.4008463e+117
-6.4005049e+117
-6.3671422e+117
-6.3675406e+117
-6.4013189e+117
-6.4010239e+117
-6.3880617e+117
-6.3883242e+117
-6.370084e+117
-6.3699192e+117
-6.4158081e+117
-6.443697e+117
-6.4855358e+117
-6.4438535e+117
-6.4857626e+117
-6.5080553e+117
-6.50769e+117
-6.5081534e+117
-6.508044e+117
-6.4440586e+117
-6.4859087e+117
-6.444495e+117
-6.4860717e+117
-6.5083776e+117
-6.5080936e+117
-6.5083959e+117
-6.5082066e+117
-6.4612044e+117
-6.4613764e+117
-6.4451473e+117
-6.4450455e+117
-6.4666973e+117
-6.4666214e+117
-6.482864e+117
-6.4827837e+117
-6.4954305e+117
-6.4956025e+117
-6.5103963e+117
-6.5105706e+117
-6.510601e+117
-6.5105132e+117
-6.4999283e+117
-6.499825e+117
-6.5122121e+117
-6.5061238e+117
-6.5095453e+117
-6.506205e+117
-6.5097102e+117
-6.5083328e+117
-6.5064438e+117
-6.5122649e+117
-6.508275e+117
-6.5067225e+117
-6.5062524e+117
-6.5097422e+117
-6.5061618e+117
-6.5096769e+117
-6.5066655e+117
-6.5066913e+117
-6.4877428e+117
-6.4898897e+117
-6.4898046e+117
-6.4511567e+117
-6.4513619e+117
-6.4456162e+117
-6.4456992e+117
-6.487852e+117
-6.5080107e+117
-6.5121041e+117
-6.5122458e+117
-6.5083148e+117
-6.4505319e+117
-6.4893362e+117
-6.4896825e+117
-6.4507687e+117
-6.4877314e+117
-6.4878494e+117
-6.4452626e+117
-6.4452004e+117
-6.5100001e+117
-6.5102455e+117
-6.5103329e+117
-6.5103559e+117
-6.512005e+117
-6.5120367e+117
-6.5077212e+117
-6.5080184e+117
-6.4893299e+117
-6.4890784e+117
-6.4493408e+117
-6.4502196e+117
-6.5075154e+117
-6.5117083e+117
-6.507731e+117
-6.5119143e+117
-6.4493572e+117
-6.4885841e+117
-6.4495183e+117
-6.4889022e+117
-6.440715e+117
-6.4830629e+117
-6.4414908e+117
-6.48372e+117
-6.5064418e+117
-6.5063049e+117
-6.5054076e+117
-6.5059668e+117
-6.4422973e+117
-6.4843813e+117
-6.4432049e+117
-6.4850688e+117
-6.5074757e+117
-6.507511e+117
-6.5067267e+117
-6.5072243e+117
-6.5078872e+117
-6.5083313e+117
-6.5086488e+117
-6.5088365e+117
-6.5097077e+117
-6.5098322e+117
-6.5091019e+117
-6.5094797e+117
-6.5058909e+117
-6.5097506e+117
-6.5101274e+117
-6.506195e+117
-6.5063732e+117
-6.5104286e+117
-6.5106203e+117
-6.5065755e+117
-6.4485671e+117
-6.487219e+117
-6.4874944e+117
-6.4483847e+117
-6.448467e+117
-6.4876285e+117
-6.4877442e+117
-6.4482338e+117
-6.5108379e+117
-6.5111578e+117
-6.5071643e+117
-6.5066438e+117
-6.4478495e+117
-6.4876964e+117
-6.4881797e+117
-6.4485401e+117
-6.5072151e+117
-6.5113735e+117
-6.5115296e+117
-6.5073751e+117
-6.4489052e+117
-6.4882806e+117
-6.4884224e+117
-6.4488234e+117
-6.4130475e+117
-6.4114495e+117
-6.3451254e+117
-6.3460147e+117
-6.4157478e+117
-6.4144453e+117
-6.3471418e+117
-6.3480028e+117
-6.4230812e+117
-6.4241202e+117
-6.4208865e+117
-6.4218555e+117
-6.3547158e+117
-6.3559993e+117
-6.3906738e+117
-6.3894584e+117
-6.3577113e+117
-6.3593407e+117
-6.3931784e+117
-6.3921566e+117
-6.4258535e+117
-6.4269733e+117
-6.4246312e+117
-6.4250643e+117
-6.2953813e+117
-6.294021e+117
-6.3599633e+117
-6.3602206e+117
-6.3942643e+117
-6.3937879e+117
-6.3607971e+117
-6.3617605e+117
-6.3959152e+117
-6.3950258e+117
-6.3156405e+117
-6.4402414e+117
-6.4460733e+117
-6.2765337e+117
-6.2851272e+117
-6.3256803e+117
-6.4511534e+117
-6.4558621e+117
-6.4044261e+117
-6.4006924e+117
-6.3364939e+117
-6.3402112e+117
-6.4095399e+117
-6.4073315e+117
-6.342361e+117
-6.3435431e+117
-6.3001728e+117
-6.4231083e+117
-6.4265173e+117
-6.2622824e+117
-6.2690151e+117
-6.3065411e+117
-6.4303905e+117
-6.435206e+117
-6.4478898e+117
-6.451425e+117
-6.4604459e+117
-6.4555728e+117
-6.468297e+117
-6.47018e+117
-6.4727387e+117
-6.4745799e+117
-6.4765219e+117
-6.4721218e+117
-6.4739819e+117
-6.4784273e+117
-6.4658211e+117
-6.4677847e+117
-6.4468547e+117
-6.448661e+117
-6.4696242e+117
-6.4713905e+117
-6.4520178e+117
-6.4504658e+117
-6.4760837e+117
-6.4786511e+117
-6.4805506e+117
-6.483037e+117
-6.4810547e+117
-6.4833913e+117
-6.4853859e+117
-6.487808e+117
-6.4734194e+117
-6.4759758e+117
-6.4565808e+117
-6.4539589e+117
-6.4589327e+117
-6.4610743e+117
-6.4783068e+117
-6.480602e+117
-6.4817964e+117
-6.477092e+117
-6.4860145e+117
-6.4891596e+117
-6.4903803e+117
-6.4934319e+117
-6.4921426e+117
-6.4947997e+117
-6.4962854e+117
-6.4990307e+117
-6.483054e+117
-6.4634255e+117
-6.4862251e+117
-6.4665257e+117
-6.4890997e+117
-6.4918222e+117
-6.4693352e+117
-6.4719e+117
-6.4973297e+117
-6.5001307e+117
-6.5043579e+117
-6.5015646e+117
-6.5066567e+117
-6.5044219e+117
-6.5024473e+117
-6.5087844e+117
-6.4944251e+117
-6.4746325e+117
-6.4775267e+117
-6.497346e+117
-6.4798716e+117
-6.4817559e+117
-6.4996956e+117
-6.5016934e+117
-6.4717762e+117
-6.4658977e+117
-6.4387739e+117
-6.4372234e+117
-6.4513483e+117
-6.4497126e+117
-6.4809504e+117
-6.4829354e+117
-6.4426485e+117
-6.4405699e+117
-6.4531522e+117
-6.4848417e+117
-6.4867139e+117
-6.4550967e+117
-6.4455942e+117
-6.4443123e+117
-6.4580459e+117
-6.4566709e+117
-6.488423e+117
-6.4901275e+117
-6.4483269e+117
-6.4469207e+117
-6.4594423e+117
-6.4608711e+117
-6.491661e+117
-6.4930581e+117
-6.4925086e+117
-6.4910911e+117
-6.4930244e+117
-6.4942642e+117
-6.495344e+117
-6.4935647e+117
-6.4942098e+117
-6.496197e+117
-6.4971378e+117
-6.4951319e+117
-6.4965255e+117
-6.4983374e+117
-6.4979797e+117
-6.4974302e+117
-6.4992535e+117
-6.4999915e+117
-6.4916294e+117
-6.4904463e+117
-6.4842019e+117
-6.4853805e+117
-6.4458609e+117
-6.4706187e+117
-6.4718554e+117
-6.4469731e+117
-6.4936674e+117
-6.4927541e+117
-6.48645e+117
-6.4873918e+117
-6.4736387e+117
-6.4728796e+117
-6.4478389e+117
-6.4484512e+117
-6.4966957e+117
-6.4902407e+117
-6.4910294e+117
-6.4974413e+117
-6.4957833e+117
-6.4946541e+117
-6.4883097e+117
-6.4893399e+117
-6.449148e+117
-6.4744192e+117
-6.4755551e+117
-6.4502542e+117
-6.4771892e+117
-6.4764553e+117
-6.4511138e+117
-6.4518172e+117
-6.5042146e+117
-6.5022022e+117
-6.5052036e+117
-6.5033895e+117
-6.5040644e+117
-6.5043814e+117
-6.5058885e+117
-6.5064038e+117
-6.4993599e+117
-6.4983035e+117
-6.4918785e+117
-6.4928223e+117
-6.50097e+117
-6.5002762e+117
-6.4936999e+117
-6.4944352e+117
-6.4788407e+117
-6.4778295e+117
-6.4522919e+117
-6.4531981e+117
-6.4804049e+117
-6.4796896e+117
-6.454033e+117
-6.454831e+117
-6.5008416e+117
-6.4988206e+117
-6.5001261e+117
-6.5019649e+117
-6.5028409e+117
-6.5009997e+117
-6.5014816e+117
-6.5034986e+117
-6.5026289e+117
-6.5017144e+117
-6.4951749e+117
-6.4960536e+117
-6.5038487e+117
-6.5033034e+117
-6.4968031e+117
-6.4974508e+117
-6.4555179e+117
-6.4810925e+117
-6.4822103e+117
-6.4567115e+117
-6.4836684e+117
-6.4830272e+117
-6.4576482e+117
-6.4583609e+117
-6.4500483e+117
-6.4493005e+117
-6.4627752e+117
-6.4618882e+117
-6.4943179e+117
-6.4955831e+117
-6.452071e+117
-6.4509591e+117
-6.4637633e+117
-6.4648399e+117
-6.4967567e+117
-6.4978575e+117
-6.4532392e+117
-6.4527347e+117
-6.4655677e+117
-6.4661614e+117
-6.4988083e+117
-6.4997511e+117
-6.4549233e+117
-6.4539688e+117
-6.4668803e+117
-6.467749e+117
-6.5005667e+117
-6.5013386e+117
-6.51326e+117
-6.5132559e+117
-6.5155559e+117
-6.5153661e+117
-6.5143856e+117
-6.5120805e+117
-6.5128953e+117
-6.5150026e+117
-6.5107212e+117
-6.5099043e+117
-6.5036359e+117
-6.5043967e+117
-6.490777e+117
-6.4898654e+117
-6.4646391e+117
-6.4655548e+117
-6.4661872e+117
-6.491388e+117
-6.4918266e+117
-6.4666658e+117
-6.5116814e+117
-6.5113139e+117
-6.5054579e+117
-6.505026e+117
-6.5110268e+117
-6.5100375e+117
-6.5122701e+117
-6.5131131e+117
-6.5136708e+117
-6.5115549e+117
-6.511689e+117
-6.5139991e+117
-6.512116e+117
-6.5126727e+117
-6.5064702e+117
-6.5059451e+117
-6.4670113e+117
-6.4922606e+117
-6.4930436e+117
-6.4680794e+117
-6.5068849e+117
-6.513013e+117
-6.5132466e+117
-6.5071788e+117
-6.4686065e+117
-6.4934973e+117
-6.4937027e+117
-6.4687511e+117
-6.5070711e+117
-6.5050392e+117
-6.5080023e+117
-6.5061488e+117
-6.5068104e+117
-6.5071303e+117
-6.5086803e+117
-6.5092096e+117
-6.5098202e+117
-6.5077254e+117
-6.510702e+117
-6.5087834e+117
-6.5093287e+117
-6.5095319e+117
-6.5112721e+117
-6.5117072e+117
-6.4981653e+117
-6.5045418e+117
-6.5054176e+117
-6.4989353e+117
-6.506729e+117
-6.5061421e+117
-6.5002349e+117
-6.4996683e+117
-6.4857251e+117
-6.460222e+117
-6.4608969e+117
-6.4862951e+117
-6.4587997e+117
-6.4842723e+117
-6.4850337e+117
-6.4594328e+117
-6.486842e+117
-6.4878705e+117
-6.4625701e+117
-6.4614403e+117
-6.4892069e+117
-6.4885249e+117
-6.4633325e+117
-6.4641107e+117
-6.5082023e+117
-6.507384e+117
-6.5016446e+117
-6.5008611e+117
-6.5092679e+117
-6.5087635e+117
-6.5029163e+117
-6.5022832e+117
-6.434695e+117
-6.4777702e+117
-6.4338811e+117
-6.4769476e+117
-6.4998018e+117
-6.500441e+117
-6.5008339e+117
-6.5010277e+117
-6.4366382e+117
-6.479319e+117
-6.4785753e+117
-6.4356902e+117
-6.5018809e+117
-6.5013221e+117
-6.5022279e+117
-6.5023817e+117
-6.4377223e+117
-6.4805753e+117
-6.4372265e+117
-6.4799083e+117
-6.5031956e+117
-6.5026792e+117
-6.5034828e+117
-6.5036002e+117
-6.4385192e+117
-6.4812865e+117
-6.5039144e+117
-6.5045183e+117
-6.4396301e+117
-6.4822142e+117
-6.5048973e+117
-6.5050623e+117
-6.5025896e+117
-6.5031087e+117
-6.5034962e+117
-6.5037378e+117
-6.5040202e+117
-6.5044639e+117
-6.505008e+117
-6.5047944e+117
-6.5015024e+117
-6.5047536e+117
-6.5052355e+117
-6.5019648e+117
-6.5022867e+117
-6.5056135e+117
-6.5058671e+117
-6.5025277e+117
-6.4470607e+117
-6.4839936e+117
-6.4844277e+117
-6.4471494e+117
-6.4847884e+117
-6.4847349e+117
-6.4474676e+117
-6.44723e+117
-6.5027358e+117
-6.5061383e+117
-6.5065064e+117
-6.5031386e+117
-6.5067953e+117
-6.5070265e+117
-6.503497e+117
-6.503372e+117
-6.4472389e+117
-6.4848119e+117
-6.4851225e+117
-6.4472112e+117
-6.4473242e+117
-6.4852307e+117
-6.4853937e+117
-6.4473058e+117
-6.5075614e+117
-6.5072976e+117
-6.5064891e+117
-6.5069633e+117
-6.5053175e+117
-6.5057145e+117
-6.5059927e+117
-6.5061871e+117
-6.5037041e+117
-6.5073295e+117
-6.507674e+117
-6.5040166e+117
-6.5041359e+117
-6.5079341e+117
-6.5081298e+117
-6.5044325e+117
-6.4472628e+117
-6.4854318e+117
-6.4857226e+117
-6.4470313e+117
-6.4861098e+117
-6.4859569e+117
-6.4473845e+117
-6.4474587e+117
-6.5088283e+117
-6.5084156e+117
-6.5046352e+117
-6.5051238e+117
-6.4474142e+117
-6.4861711e+117
-6.4866883e+117
-6.448077e+117
-6.5053228e+117
-6.5091524e+117
-6.5094203e+117
-6.5056323e+117
-6.4870684e+117
-6.4869478e+117
-6.4485406e+117
-6.4483966e+117
-6.407739e+117
-6.3654752e+117
-6.4074553e+117
-6.3652292e+117
-6.4079819e+117
-6.365891e+117
-6.4079225e+117
-6.3657003e+117
-6.4060935e+117
-6.3636871e+117
-6.4064091e+117
-6.3640075e+117
-6.4070583e+117
-6.3649537e+117
-6.4064083e+117
-6.3644077e+117
-6.4037264e+117
-6.3661027e+117
-6.3664064e+117
-6.4037779e+117
-6.4029617e+117
-6.365351e+117
-6.3656829e+117
-6.4032273e+117
-6.4051742e+117
-6.3626305e+117
-6.4049476e+117
-6.3622449e+117
-6.4048812e+117
-6.3620127e+117
-6.404652e+117
-6.3619523e+117
-6.404565e+117
-6.3620442e+117
-6.4050511e+117
-6.3623153e+117
-6.4053694e+117
-6.3626789e+117
-6.4055361e+117
-6.3632314e+117
-6.40432e+117
-6.3620725e+117
-6.4045239e+117
-6.362437e+117
-6.4045669e+117
-6.3623313e+117
-6.404466e+117
-6.3621594e+117
-6.4050896e+117
-6.3626903e+117
-6.4046684e+117
-6.3625047e+117
-6.4052541e+117
-6.3627806e+117
-6.4051525e+117
-6.3628162e+117
-6.4049149e+117
-6.3632327e+117
-6.4042138e+117
-6.4049196e+117
-6.363625e+117
-6.4041148e+117
-6.4047166e+117
-6.3628486e+117
-6.4048917e+117
-6.3629546e+117
-6.4038645e+117
-6.4031347e+117
-6.4047659e+117
-6.3626537e+117
-6.4047572e+117
-6.3627476e+117
-6.4045591e+117
-6.3626108e+117
-6.4047076e+117
-6.3626142e+117
-6.4014631e+117
-6.4009246e+117
-6.4026286e+117
-6.4021565e+117
-6.3977551e+117
-6.3985786e+117
-6.4002244e+117
-6.3994208e+117
-6.3960328e+117
-6.3956375e+117
-6.3970302e+117
-6.3964903e+117
-6.4173728e+117
-6.4160189e+117
-6.3965854e+117
-6.3978259e+117
-6.4198853e+117
-6.4186775e+117
-6.3990109e+117
-6.4002274e+117
-6.4224945e+117
-6.4210188e+117
-6.4012954e+117
-6.4025679e+117
-6.4247479e+117
-6.4237422e+117
-6.4048021e+117
-6.4037766e+117
-6.4122218e+117
-6.410572e+117
-6.3912392e+117
-6.3927609e+117
-6.4148599e+117
-6.4136372e+117
-6.3941876e+117
-6.3954835e+117
-6.4069562e+117
-6.4057245e+117
-6.3865168e+117
-6.3875636e+117
-6.3886313e+117
-6.4081021e+117
-6.409264e+117
-6.3898961e+117
-6.3845739e+117
-6.3839273e+117
-6.3852065e+117
-6.3858333e+117
-6.3873402e+117
-6.3865321e+117
-6.388807e+117
-6.3881444e+117
-6.389883e+117
-6.3894087e+117
-6.3914717e+117
-6.3906994e+117
-6.3932037e+117
-6.3923196e+117
-6.394766e+117
-6.3939924e+117
-6.392851e+117
-6.3926183e+117
-6.3738191e+117
-6.3738994e+117
-6.3742015e+117
-6.3932971e+117
-6.393569e+117
-6.3745443e+117
-6.3751322e+117
-6.3941706e+117
-6.3949546e+117
-6.3759717e+117
-6.3965251e+117
-6.3957725e+117
-6.3768751e+117
-6.3776047e+117
-6.3978769e+117
-6.3971981e+117
-6.3782757e+117
-6.3789861e+117
-6.3998035e+117
-6.3988282e+117
-6.3798818e+117
-6.3808647e+117
-6.4009127e+117
-6.3819124e+117
-6.3832191e+117
-6.4023899e+117
-6.4036428e+117
-6.4047204e+117
-6.3855769e+117
-6.3844649e+117
-6.2003028e+117
-6.1792356e+117
-6.1998465e+117
-6.1796145e+117
-6.2218609e+117
-6.2456304e+117
-6.245797e+117
-6.2221528e+117
-6.1800897e+117
-6.2006802e+117
-6.1798197e+117
-6.2004488e+117
-6.222446e+117
-6.2462012e+117
-6.2226993e+117
-6.2464839e+117
-6.180337e+117
-6.2009396e+117
-6.2010947e+117
-6.1804751e+117
-6.1802855e+117
-6.2007834e+117
-6.1801413e+117
-6.2004871e+117
-6.2464835e+117
-6.2231188e+117
-6.2467485e+117
-6.2230432e+117
-6.2224589e+117
-6.2460121e+117
-6.2228244e+117
-6.246328e+117
-6.272299e+117
-6.3005667e+117
-6.2720344e+117
-6.3003389e+117
-6.2726746e+117
-6.3011195e+117
-6.3007759e+117
-6.2723665e+117
-6.331212e+117
-6.3314582e+117
-6.3320532e+117
-6.3316464e+117
-6.2721503e+117
-6.2718489e+117
-6.300494e+117
-6.3001789e+117
-6.3312934e+117
-6.3309836e+117
-6.2999786e+117
-6.2714704e+117
-6.2997685e+117
-6.2716491e+117
-6.3306857e+117
-6.3308893e+117
-6.1985701e+117
-6.1774049e+117
-6.1979959e+117
-6.1779433e+117
-6.220078e+117
-6.2205719e+117
-6.2439073e+117
-6.2443527e+117
-6.1994574e+117
-6.1784117e+117
-6.1989823e+117
-6.1788623e+117
-6.244882e+117
-6.2210324e+117
-6.2214815e+117
-6.2453147e+117
-6.2985956e+117
-6.2697973e+117
-6.2981361e+117
-6.2702509e+117
-6.3290843e+117
-6.3294691e+117
-6.2711786e+117
-6.2994852e+117
-6.2707258e+117
-6.2989868e+117
-6.3298866e+117
-6.3303988e+117
-6.0441833e+117
-6.0441673e+117
-6.0589702e+117
-6.0590107e+117
-6.0440926e+117
-6.0440864e+117
-6.0589955e+117
-6.0590259e+117
-6.0742226e+117
-6.07417e+117
-6.0895443e+117
-6.0740397e+117
-6.0897704e+117
-6.0898164e+117
-6.0741617e+117
-6.0897316e+117
-6.059183e+117
-6.0441194e+117
-6.0590983e+117
-6.0441767e+117
-6.0742907e+117
-6.0898597e+117
-6.0897656e+117
-6.0742676e+117
-6.0439229e+117
-6.0587222e+117
-6.0589059e+117
-6.0441231e+117
-6.089173e+117
-6.0737543e+117
-6.0738638e+117
-6.0892354e+117
-6.122847e+117
-6.105502e+117
-6.1056449e+117
-6.1226201e+117
-6.1062299e+117
-6.1234276e+117
-6.1059497e+117
-6.1231327e+117
-6.159415e+117
-6.1597093e+117
-6.1405975e+117
-6.1408559e+117
-6.1411418e+117
-6.1599906e+117
-6.1414377e+117
-6.160287e+117
-6.0422699e+117
-6.0570213e+117
-6.0575782e+117
-6.0427737e+117
-6.0432486e+117
-6.0580456e+117
-6.058513e+117
-6.043683e+117
-6.0875674e+117
-6.0720933e+117
-6.0726214e+117
-6.0880954e+117
-6.0885894e+117
-6.0730995e+117
-6.0734674e+117
-6.0888399e+117
-6.1216003e+117
-6.1039143e+117
-6.1210299e+117
-6.1044697e+117
-6.1389687e+117
-6.1395169e+117
-6.1576988e+117
-6.1582202e+117
-6.105219e+117
-6.1223576e+117
-6.1049268e+117
-6.122006e+117
-6.158688e+117
-6.1399452e+117
-6.1403242e+117
-6.1591042e+117
-6.1062743e+117
-6.1236378e+117
-6.1237426e+117
-6.1063753e+117
-6.1605195e+117
-6.141637e+117
-6.1604249e+117
-6.1417386e+117
-6.1236615e+117
-6.1064019e+117
-6.1237488e+117
-6.1063161e+117
-6.1417316e+117
-6.1604591e+117
-6.1603494e+117
-6.1416353e+117
-6.196343e+117
-6.1754458e+117
-6.1959894e+117
-6.1757323e+117
-6.2180904e+117
-6.2419635e+117
-6.2422717e+117
-6.2183813e+117
-6.1768071e+117
-6.1973788e+117
-6.1761827e+117
-6.196752e+117
-6.2188193e+117
-6.2426806e+117
-6.2194622e+117
-6.2433208e+117
-6.2964755e+117
-6.2678904e+117
-6.2962507e+117
-6.268162e+117
-6.2692381e+117
-6.2686051e+117
-6.2969748e+117
-6.2976018e+117
-6.3272917e+117
-6.3274885e+117
-6.3285925e+117
-6.3279554e+117
-6.1758089e+117
-6.1754976e+117
-6.1963546e+117
-6.1960464e+117
-6.2181205e+117
-6.2419776e+117
-6.2184425e+117
-6.2423284e+117
-6.1958681e+117
-6.1753166e+117
-6.1958727e+117
-6.1753061e+117
-6.2179568e+117
-6.2179198e+117
-6.241799e+117
-6.2417729e+117
-6.2683103e+117
-6.2967743e+117
-6.2679507e+117
-6.2964109e+117
-6.3274806e+117
-6.3278954e+117
-6.2677255e+117
-6.2961369e+117
-6.267755e+117
-6.2961851e+117
-6.3272325e+117
-6.3272051e+117
-6.1025008e+117
-6.1023494e+117
-6.1195919e+117
-6.1194161e+117
-6.1372445e+117
-6.1558591e+117
-6.1374727e+117
-6.1561413e+117
-6.1022902e+117
-6.1192993e+117
-6.1022725e+117
-6.1193099e+117
-6.1371135e+117
-6.1370822e+117
-6.1556958e+117
-6.1556727e+117
-6.0410048e+117
-6.0410363e+117
-6.055562e+117
-6.0554903e+117
-6.0704315e+117
-6.0859352e+117
-6.0705719e+117
-6.0860915e+117
-6.055563e+117
-6.04101e+117
-6.0554863e+117
-6.0410113e+117
-6.0704188e+117
-6.0704824e+117
-6.0858825e+117
-6.0859181e+117
-6.0558334e+117
-6.0411095e+117
-6.0556522e+117
-6.0412185e+117
-6.0705946e+117
-6.0860508e+117
-6.0862846e+117
-6.0707996e+117
-6.0565431e+117
-6.0414257e+117
-6.0561031e+117
-6.0417871e+117
-6.0711114e+117
-6.0865516e+117
-6.0715188e+117
-6.0869022e+117
-6.1195769e+117
-6.1023885e+117
-6.1194084e+117
-6.1025863e+117
-6.1558255e+117
-6.1372322e+117
-6.1374215e+117
-6.1560491e+117
-6.1032938e+117
-6.1204343e+117
-6.1028846e+117
-6.1199506e+117
-6.1565125e+117
-6.137842e+117
-6.1383879e+117
-6.1571129e+117
-5.8617423e+117
-5.8613839e+117
-5.8755156e+117
-5.8751515e+117
-5.8749697e+117
-5.8750398e+117
-5.8611373e+117
-5.8611402e+117
-5.8241583e+117
-5.8062087e+117
-5.8235688e+117
-5.8056338e+117
-5.8392127e+117
-5.8395931e+117
-5.8488371e+117
-5.8484635e+117
-5.8387811e+117
-5.8389616e+117
-5.848212e+117
-5.8481229e+117
-5.8613006e+117
-5.8614995e+117
-5.8752624e+117
-5.8755199e+117
-5.8757876e+117
-5.8760836e+117
-5.8616673e+117
-5.8619189e+117
-5.8046824e+117
-5.8229901e+117
-5.8389054e+117
-5.838712e+117
-5.848371e+117
-5.8486183e+117
-5.8387422e+117
-5.8388026e+117
-5.8482046e+117
-5.8482943e+117
-5.8874432e+117
-5.8990359e+117
-5.8987298e+117
-5.8870953e+117
-5.8869096e+117
-5.8985599e+117
-5.8986657e+117
-5.8870095e+117
-5.9223935e+117
-5.910758e+117
-5.922627e+117
-5.9104966e+117
-5.9223834e+117
-5.910354e+117
-5.9222859e+117
-5.910456e+117
-5.8872823e+117
-5.8989236e+117
-5.8991923e+117
-5.8875511e+117
-5.8877986e+117
-5.8994343e+117
-5.8997169e+117
-5.8880935e+117
-5.9228314e+117
-5.9106897e+117
-5.9225938e+117
-5.9109528e+117
-5.9111887e+117
-5.9230637e+117
-5.923272e+117
-5.9114376e+117
-5.7882324e+117
-5.7704821e+117
-5.7878699e+117
-5.7703126e+117
-5.8599341e+117
-5.8604143e+117
-5.8788473e+117
-5.8792349e+117
-5.8486126e+117
-5.8393661e+117
-5.8398486e+117
-5.8490381e+117
-5.8898757e+117
-5.9010684e+117
-5.9013088e+117
-5.890202e+117
-5.8904755e+117
-5.9014816e+117
-5.901645e+117
-5.8906577e+117
-5.912395e+117
-5.9239581e+117
-5.9239904e+117
-5.9125218e+117
-5.9125967e+117
-5.9239839e+117
-5.9239966e+117
-5.9126661e+117
-5.9348254e+117
-5.9346098e+117
-5.9471587e+117
-5.9469788e+117
-5.9598462e+117
-5.9597172e+117
-5.9727894e+117
-5.9727312e+117
-5.9345453e+117
-5.9469446e+117
-5.9470432e+117
-5.9346306e+117
-5.9727841e+117
-5.9729362e+117
-5.9597242e+117
-5.9598359e+117
-5.9997432e+117
-5.9860989e+117
-5.9995786e+117
-5.986131e+117
-5.9862458e+117
-5.9999394e+117
-6.0001758e+117
-5.9864275e+117
-6.0134675e+117
-6.0276722e+117
-6.0137781e+117
-6.0280961e+117
-6.0284938e+117
-6.0288631e+117
-6.0140798e+117
-6.0143721e+117
-5.9866415e+117
-6.0004074e+117
-6.0006053e+117
-5.986835e+117
-5.9870249e+117
-5.9869823e+117
-6.000707e+117
-6.0007515e+117
-6.0146333e+117
-6.0291336e+117
-6.0293329e+117
-6.0147916e+117
-6.0149394e+117
-6.0148945e+117
-6.0293816e+117
-6.0294147e+117
-5.934826e+117
-5.9472186e+117
-5.9350288e+117
-5.9474029e+117
-5.9601917e+117
-5.9600165e+117
-5.9731227e+117
-5.9732989e+117
-5.9477386e+117
-5.9352553e+117
-5.9476115e+117
-5.9354165e+117
-5.9734637e+117
-5.9603782e+117
-5.9604597e+117
-5.973515e+117
-5.9360208e+117
-5.9482971e+117
-5.9481191e+117
-5.9361684e+117
-5.9606007e+117
-5.9734625e+117
-5.9606789e+117
-5.9734571e+117
-6.0005863e+117
-5.9868066e+117
-6.0005506e+117
-5.9868154e+117
-5.9357753e+117
-5.9357746e+117
-5.9478922e+117
-5.9479052e+117
-5.9358008e+117
-5.935858e+117
-5.9480636e+117
-5.9479584e+117
-5.9605435e+117
-5.9735139e+117
-5.9606653e+117
-5.9736395e+117
-5.9604721e+117
-5.9734297e+117
-5.9734015e+117
-5.9604554e+117
-5.9870541e+117
-5.9869303e+117
-6.000797e+117
-6.0006933e+117
-6.0148617e+117
-6.0293248e+117
-6.0149355e+117
-6.0293663e+117
-6.000553e+117
-5.9868413e+117
-6.0006115e+117
-5.9867899e+117
-6.0148031e+117
-6.0293042e+117
-6.0292936e+117
-6.014744e+117
-5.9854987e+117
-5.9987693e+117
-5.9988385e+117
-5.9855569e+117
-5.9855676e+117
-5.9855863e+117
-5.9988064e+117
-5.9988142e+117
-6.0266195e+117
-6.0125244e+117
-6.0265827e+117
-6.0125326e+117
-6.0125178e+117
-6.0265864e+117
-6.0125152e+117
-6.0265682e+117
-5.9855589e+117
-5.9856607e+117
-5.9988462e+117
-5.9989341e+117
-6.0126727e+117
-6.0266504e+117
-6.0125845e+117
-6.026739e+117
-5.9993491e+117
-5.9857305e+117
-5.9990503e+117
-5.9860419e+117
-6.0127943e+117
-6.0268899e+117
-6.0271633e+117
-6.0130309e+117
-5.9475037e+117
-5.9355683e+117
-5.9475356e+117
-5.9354693e+117
-5.9598562e+117
-5.9598283e+117
-5.9724641e+117
-5.9724646e+117
-5.947476e+117
-5.9353868e+117
-5.9474414e+117
-5.9353222e+117
-5.972511e+117
-5.9598362e+117
-5.959847e+117
-5.9724811e+117
-5.9475597e+117
-5.9353179e+117
-5.9352223e+117
-5.9474847e+117
-5.9599728e+117
-5.9726055e+117
-5.9599309e+117
-5.9724745e+117
-5.9728202e+117
-5.9600221e+117
-5.9599728e+117
-5.9726193e+117
-5.9350133e+117
-5.9474963e+117
-5.9351652e+117
-5.9473333e+117
-5.8636853e+117
-5.8632663e+117
-5.8775176e+117
-5.877066e+117
-5.8768593e+117
-5.8766404e+117
-5.8630876e+117
-5.8628598e+117
-5.8253437e+117
-5.8068392e+117
-5.8059277e+117
-5.8244751e+117
-5.8407549e+117
-5.8413178e+117
-5.8506976e+117
-5.8502044e+117
-5.8403741e+117
-5.8405671e+117
-5.8500325e+117
-5.8498242e+117
-5.8625663e+117
-5.8624603e+117
-5.8763469e+117
-5.8761947e+117
-5.8761615e+117
-5.8759614e+117
-5.86246e+117
-5.8622456e+117
-5.8244052e+117
-5.8058981e+117
-5.8063159e+117
-5.8244828e+117
-5.8401676e+117
-5.8401973e+117
-5.8495787e+117
-5.8495207e+117
-5.839984e+117
-5.8401927e+117
-5.8495326e+117
-5.8492933e+117
-5.900383e+117
-5.8893918e+117
-5.9007798e+117
-5.888925e+117
-5.9121945e+117
-5.9119127e+117
-5.9237198e+117
-5.9235321e+117
-5.8999128e+117
-5.8886408e+117
-5.9001019e+117
-5.8884315e+117
-5.9233719e+117
-5.9116796e+117
-5.9115122e+117
-5.9232331e+117
-5.8995974e+117
-5.8882328e+117
-5.8997675e+117
-5.8880599e+117
-5.9231817e+117
-5.9114047e+117
-5.9112581e+117
-5.9230604e+117
-5.8993007e+117
-5.8879484e+117
-5.899459e+117
-5.8877669e+117
-5.9229608e+117
-5.9111261e+117
-5.9109797e+117
-5.9228105e+117
-5.7884026e+117
-5.7703908e+117
-5.7693608e+117
-5.7873186e+117
-5.7699212e+117
-5.7693551e+117
-5.7872685e+117
-5.7879552e+117
-5.7523396e+117
-5.734723e+117
-5.7338424e+117
-5.7512291e+117
-5.7173567e+117
-5.7000056e+117
-5.6997734e+117
-5.7165725e+117
-5.6990433e+117
-5.7157397e+117
-5.7510879e+117
-5.7331421e+117
-5.733539e+117
-5.7515179e+117
-5.8533704e+117
-5.8519742e+117
-5.7790785e+117
-5.8296796e+117
-5.8285111e+117
-5.8516516e+117
-5.8521344e+117
-5.7801204e+117
-5.8286715e+117
-5.828144e+117
-5.8766525e+117
-5.8751539e+117
-5.9017719e+117
-5.9001981e+117
-5.8748922e+117
-5.8753456e+117
-5.8999468e+117
-5.9003826e+117
-5.7302009e+117
-5.7319748e+117
-5.8525727e+117
-5.8529707e+117
-5.8654227e+117
-5.8657915e+117
-5.8665176e+117
-5.8672534e+117
-5.8535774e+117
-5.8542007e+117
-5.8101394e+117
-5.7893983e+117
-5.7907944e+117
-5.8114936e+117
-5.8362816e+117
-5.8351622e+117
-5.8512984e+117
-5.8515623e+117
-5.8644725e+117
-5.8646421e+117
-5.8649481e+117
-5.8652857e+117
-5.8518797e+117
-5.8522516e+117
-5.7882363e+117
-5.7879049e+117
-5.8086866e+117
-5.8090279e+117
-5.834179e+117
-5.8333949e+117
-5.8760636e+117
-5.8876373e+117
-5.8877325e+117
-5.8761995e+117
-5.8764469e+117
-5.8878533e+117
-5.8881e+117
-5.8767166e+117
-5.9118637e+117
-5.899674e+117
-5.911917e+117
-5.8996963e+117
-5.9121711e+117
-5.8997987e+117
-5.9119501e+117
-5.9000281e+117
-5.7485907e+117
-5.7489005e+117
-5.7683053e+117
-5.7684242e+117
-5.7505748e+117
-5.7494989e+117
-5.7695543e+117
-5.7709058e+117
-5.8768531e+117
-5.8883423e+117
-5.888711e+117
-5.8772188e+117
-5.877912e+117
-5.8892941e+117
-5.8900213e+117
-5.8786402e+117
-5.9127207e+117
-5.9002611e+117
-5.9124272e+117
-5.9005868e+117
-5.9018883e+117
-5.9011582e+117
-5.9132847e+117
-5.913994e+117
-5.854714e+117
-5.8552986e+117
-5.8677111e+117
-5.868295e+117
-5.8691061e+117
-5.870076e+117
-5.8560656e+117
-5.8569901e+117
-5.7919558e+117
-5.7915213e+117
-5.8122927e+117
-5.8129997e+117
-5.8387167e+117
-5.8372575e+117
-5.8791529e+117
-5.8797599e+117
-5.8911549e+117
-5.8905817e+117
-5.9024498e+117
-5.9145435e+117
-5.9149957e+117
-5.9029651e+117
-5.8927154e+117
-5.880531e+117
-5.8918155e+117
-5.881463e+117
-5.9035998e+117
-5.91558e+117
-5.9044184e+117
-5.9163032e+117
-5.8822396e+117
-5.8831441e+117
-5.8934909e+117
-5.8942962e+117
-5.9057079e+117
-5.9168596e+117
-5.9173934e+117
-5.9050429e+117
-5.8840665e+117
-5.8847785e+117
-5.8957317e+117
-5.8950838e+117
-5.9063926e+117
-5.9070324e+117
-5.9180348e+117
-5.9186827e+117
-5.8578348e+117
-5.8587584e+117
-5.8708239e+117
-5.8717194e+117
-5.8726916e+117
-5.8734954e+117
-5.8597299e+117
-5.8605875e+117
-5.7959235e+117
-5.7934627e+117
-5.8145821e+117
-5.8169807e+117
-5.8425289e+117
-5.840531e+117
-5.771154e+117
-5.7503678e+117
-5.75033e+117
-5.7714251e+117
-5.7545569e+117
-5.7518622e+117
-5.7729182e+117
-5.7755142e+117
-5.9919752e+117
-5.9779189e+117
-5.9916481e+117
-5.9782412e+117
-6.005499e+117
-6.0200652e+117
-6.0201638e+117
-6.005693e+117
-5.9790305e+117
-5.9926362e+117
-5.9785772e+117
-5.9922527e+117
-6.0060067e+117
-6.0204857e+117
-6.0064117e+117
-6.0209225e+117
-5.9287799e+117
-5.9408732e+117
-5.9413101e+117
-5.9292452e+117
-5.9304472e+117
-5.9298349e+117
-5.941849e+117
-5.9423884e+117
-5.9665527e+117
-5.9532505e+117
-5.9662635e+117
-5.9536067e+117
-5.9545913e+117
-5.9674438e+117
-5.9540955e+117
-5.9669949e+117
-5.9394041e+117
-5.9266695e+117
-5.9389845e+117
-5.927106e+117
-5.9515295e+117
-5.9647109e+117
-5.9650272e+117
-5.9518944e+117
-5.9404656e+117
-5.9276484e+117
-5.939894e+117
-5.9282979e+117
-5.9523477e+117
-5.9654236e+117
-5.9528902e+117
-5.9659366e+117
-5.9793367e+117
-5.9929442e+117
-5.9932572e+117
-5.9796085e+117
-6.0212512e+117
-6.0067365e+117
-6.0070081e+117
-6.0214945e+117
-5.9800038e+117
-5.9803865e+117
-5.9936129e+117
-5.9938861e+117
-6.0218353e+117
-6.0076039e+117
-6.0220499e+117
-6.0073538e+117
-5.9246415e+117
-5.9370383e+117
-5.924924e+117
-5.9373208e+117
-5.9498865e+117
-5.9631091e+117
-5.9496492e+117
-5.9629053e+117
-5.926133e+117
-5.9254538e+117
-5.9378385e+117
-5.9384845e+117
-5.9510432e+117
-5.9642596e+117
-5.9503947e+117
-5.9636003e+117
-5.9761631e+117
-5.9899458e+117
-5.9763613e+117
-5.9901878e+117
-6.004078e+117
-6.0187188e+117
-6.0038291e+117
-6.0184328e+117
-5.9768416e+117
-5.9906594e+117
-5.97747e+117
-5.991232e+117
-6.0051439e+117
-6.019781e+117
-6.0045707e+117
-6.019219e+117
-5.9781936e+117
-6.0063083e+117
-5.9776183e+117
-6.0061471e+117
-5.9263927e+117
-5.952113e+117
-5.9249784e+117
-5.9511187e+117
-5.9247456e+117
-5.9509811e+117
-5.9250933e+117
-5.9512955e+117
-5.9777014e+117
-6.0065523e+117
-5.9781336e+117
-6.0072033e+117
-5.9757488e+117
-5.9756797e+117
-5.9895427e+117
-5.9895134e+117
-6.0034041e+117
-6.0180105e+117
-6.0034733e+117
-6.0181173e+117
-5.9757723e+117
-5.9895957e+117
-5.9898008e+117
-5.9760085e+117
-6.0181802e+117
-6.0034825e+117
-6.0180514e+117
-6.0036317e+117
-5.9241651e+117
-5.9241178e+117
-5.9365874e+117
-5.9365379e+117
-5.9491469e+117
-5.9623875e+117
-5.9492227e+117
-5.9624887e+117
-5.9241924e+117
-5.936609e+117
-5.9368035e+117
-5.9244053e+117
-5.9627118e+117
-5.9492401e+117
-5.9624723e+117
-5.9494454e+117
-5.6681975e+117
-5.689014e+117
-5.6883748e+117
-5.6673867e+117
-5.6681182e+117
-5.6896125e+117
-5.6917306e+117
-5.6697636e+117
-5.7122002e+117
-5.709695e+117
-5.73363e+117
-5.7308313e+117
-5.7082828e+117
-5.7086412e+117
-5.7293013e+117
-5.7296364e+117
-5.6849813e+117
-5.7297573e+117
-5.7102252e+117
-5.7097434e+117
-5.729118e+117
-5.6905513e+117
-5.6901828e+117
-5.7099235e+117
-5.7099125e+117
-5.7297151e+117
-5.7304986e+117
-5.6829799e+117
-5.6810468e+117
-5.7792789e+117
-5.7284046e+117
-5.7286411e+117
-5.7785544e+117
-5.9804531e+117
-6.0074187e+117
-6.0068065e+117
-5.9796587e+117
-5.9305156e+117
-5.9553318e+117
-5.9291898e+117
-5.9543732e+117
-5.9285006e+117
-5.9537181e+117
-5.9531202e+117
-5.9277836e+117
-5.9790087e+117
-6.0063891e+117
-5.9785423e+117
-6.0062603e+117
-5.8575434e+117
-5.8557662e+117
-5.832977e+117
-5.8311672e+117
-5.8553977e+117
-5.8548216e+117
-5.830879e+117
-5.8307048e+117
-5.8813085e+117
-5.9063584e+117
-5.8795822e+117
-5.9047006e+117
-5.878976e+117
-5.9040393e+117
-5.8782776e+117
-5.9033652e+117
-6.2843511e+117
-6.256724e+117
-6.2839729e+117
-6.256918e+117
-6.3117413e+117
-6.3438723e+117
-6.3439733e+117
-6.3119289e+117
-6.2579323e+117
-6.2852493e+117
-6.2573069e+117
-6.2846844e+117
-6.3123654e+117
-6.3444975e+117
-6.3131058e+117
-6.3454332e+117
-6.1697717e+117
-6.1903461e+117
-6.1908344e+117
-6.1701186e+117
-6.1705201e+117
-6.1703606e+117
-6.1910683e+117
-6.1911753e+117
-6.2351174e+117
-6.2109555e+117
-6.2347843e+117
-6.2113278e+117
-6.2119659e+117
-6.2360204e+117
-6.2117096e+117
-6.2356204e+117
-6.1892579e+117
-6.1685551e+117
-6.1889957e+117
-6.1686769e+117
-6.2094811e+117
-6.2331833e+117
-6.2332814e+117
-6.2096322e+117
-6.1899413e+117
-6.1689558e+117
-6.1895206e+117
-6.1694049e+117
-6.2100053e+117
-6.2337038e+117
-6.2105063e+117
-6.2342932e+117
-6.2583901e+117
-6.2857854e+117
-6.2863937e+117
-6.2587863e+117
-6.3461909e+117
-6.313788e+117
-6.3144344e+117
-6.3469135e+117
-6.2593536e+117
-6.2598599e+117
-6.2870575e+117
-6.2875981e+117
-6.3477755e+117
-6.3160031e+117
-6.3487581e+117
-6.3152194e+117
-6.1666761e+117
-6.1870629e+117
-6.1670991e+117
-6.1875728e+117
-6.2079762e+117
-6.2315841e+117
-6.2074769e+117
-6.2310362e+117
-6.1676778e+117
-6.1881624e+117
-6.1682518e+117
-6.1886738e+117
-6.2091801e+117
-6.2328892e+117
-6.2085997e+117
-6.2322529e+117
-6.2543434e+117
-6.2814535e+117
-6.2549509e+117
-6.2822008e+117
-6.309825e+117
-6.3418252e+117
-6.309149e+117
-6.341162e+117
-6.2556625e+117
-6.2563483e+117
-6.2829504e+117
-6.2835789e+117
-6.3114212e+117
-6.3435741e+117
-6.3106482e+117
-6.3426884e+117
-6.1692152e+117
-6.165782e+117
-6.1658395e+117
-6.1860358e+117
-6.186178e+117
-6.210646e+117
-6.2064148e+117
-6.2298361e+117
-6.2063251e+117
-6.2297836e+117
-6.1660261e+117
-6.18639e+117
-6.1867119e+117
-6.166329e+117
-6.2304742e+117
-6.2066626e+117
-6.2300801e+117
-6.20702e+117
-6.1680034e+117
-6.2094294e+117
-6.165462e+117
-6.1666471e+117
-6.2062186e+117
-6.2078609e+117
-6.2492426e+117
-6.3012132e+117
-6.2510048e+117
-6.3031865e+117
-6.2528731e+117
-6.3053378e+117
-6.2544336e+117
-6.3073036e+117
-6.253002e+117
-6.2530829e+117
-6.280005e+117
-6.2802122e+117
-6.3077485e+117
-6.339531e+117
-6.307609e+117
-6.3393858e+117
-6.2533293e+117
-6.2804676e+117
-6.2808552e+117
-6.253764e+117
-6.3406123e+117
-6.3080432e+117
-6.3398892e+117
-6.3085905e+117
-6.0327175e+117
-6.0476303e+117
-6.0330281e+117
-6.0479864e+117
-6.0628412e+117
-6.0788977e+117
-6.0625302e+117
-6.0786185e+117
-6.0335237e+117
-6.0484651e+117
-6.0340493e+117
-6.0489292e+117
-6.0638042e+117
-6.0798777e+117
-6.0633182e+117
-6.0793682e+117
-6.0945622e+117
-6.1118719e+117
-6.0948431e+117
-6.1122205e+117
-6.129529e+117
-6.1486079e+117
-6.1291703e+117
-6.1482015e+117
-6.0953208e+117
-6.112708e+117
-6.0958328e+117
-6.1131794e+117
-6.1305857e+117
-6.1497316e+117
-6.1300657e+117
-6.1491796e+117
-6.0347857e+117
-6.0355436e+117
-6.0652792e+117
-6.0661021e+117
-6.0339751e+117
-6.0341179e+117
-6.0638865e+117
-6.0644082e+117
-6.0947451e+117
-6.0954219e+117
-6.1300615e+117
-6.1309781e+117
-6.0964679e+117
-6.0974667e+117
-6.1321938e+117
-6.1333455e+117
-6.0938382e+117
-6.0938608e+117
-6.1110593e+117
-6.1111626e+117
-6.1283875e+117
-6.1473906e+117
-6.1283205e+117
-6.1473582e+117
-6.0940189e+117
-6.1113405e+117
-6.1116367e+117
-6.0943296e+117
-6.1478099e+117
-6.1285853e+117
-6.1475693e+117
-6.1288394e+117
-6.0323647e+117
-6.032282e+117
-6.0472113e+117
-6.0471797e+117
-6.06198e+117
-6.0779665e+117
-6.0620188e+117
-6.0780006e+117
-6.0323233e+117
-6.0472223e+117
-6.0473527e+117
-6.0324593e+117
-6.0783577e+117
-6.06207e+117
-6.0780834e+117
-6.0622652e+117
-6.1137306e+117
-6.0961247e+117
-6.1134914e+117
-6.096284e+117
-6.1308791e+117
-6.150003e+117
-6.1500549e+117
-6.1309894e+117
-6.0968655e+117
-6.1141909e+117
-6.0964985e+117
-6.1139059e+117
-6.1312471e+117
-6.1503522e+117
-6.1315852e+117
-6.1507606e+117
-6.049303e+117
-6.0343101e+117
-6.0491753e+117
-6.0344046e+117
-6.0640535e+117
-6.0801318e+117
-6.0802357e+117
-6.0641543e+117
-6.0499963e+117
-6.0347147e+117
-6.0495989e+117
-6.0351488e+117
-6.0644469e+117
-6.0804993e+117
-6.0648639e+117
-6.0809156e+117
-6.0360043e+117
-6.0361736e+117
-6.0509376e+117
-6.0508446e+117
-6.0354615e+117
-6.0503088e+117
-6.050579e+117
-6.0356992e+117
-6.0653773e+117
-6.0813849e+117
-6.0651634e+117
-6.0812048e+117
-6.0656249e+117
-6.0816239e+117
-6.0817559e+117
-6.0657399e+117
-6.0971273e+117
-6.1144696e+117
-6.1147415e+117
-6.0973182e+117
-6.097558e+117
-6.1149842e+117
-6.0976898e+117
-6.1150641e+117
-6.1511183e+117
-6.1514079e+117
-6.1318993e+117
-6.1321503e+117
-6.1325533e+117
-6.1324232e+117
-6.1516867e+117
-6.1518348e+117
-6.1623019e+117
-6.1641283e+117
-6.2026495e+117
-6.2046586e+117
-6.15994e+117
-6.1993144e+117
-6.1609258e+117
-6.2008713e+117
-6.2413996e+117
-6.2430065e+117
-6.2926006e+117
-6.2942355e+117
-6.2450976e+117
-6.2965081e+117
-6.2474489e+117
-6.2992249e+117
-6.0922242e+117
-6.1259414e+117
-6.0923087e+117
-6.1264529e+117
-6.0339276e+117
-6.0625636e+117
-6.0334262e+117
-6.0623666e+117
-6.0334806e+117
-6.0337047e+117
-6.0627864e+117
-6.0633884e+117
-6.0929684e+117
-6.093973e+117
-6.1274787e+117
-6.1289842e+117
-5.9938329e+117
-5.980496e+117
-5.9939323e+117
-5.9803905e+117
-6.0075497e+117
-6.0219126e+117
-6.021581e+117
-6.0073212e+117
-5.9806558e+117
-5.9939615e+117
-5.9804385e+117
-5.9938062e+117
-6.0073009e+117
-6.0215615e+117
-6.0074805e+117
-6.0217932e+117
-5.9317627e+117
-5.9435076e+117
-5.9437878e+117
-5.9319675e+117
-5.9327819e+117
-5.9323252e+117
-5.9441901e+117
-5.9447078e+117
-5.9684118e+117
-5.9554741e+117
-5.9681003e+117
-5.9557665e+117
-5.9568378e+117
-5.9696248e+117
-5.9562219e+117
-5.9689066e+117
-5.9428735e+117
-5.9308673e+117
-5.9427387e+117
-5.9310422e+117
-5.9548402e+117
-5.9675936e+117
-5.9674941e+117
-5.9548544e+117
-5.9432357e+117
-5.931203e+117
-5.9429959e+117
-5.9314696e+117
-5.9549944e+117
-5.9676045e+117
-5.9552303e+117
-5.9678532e+117
-5.980886e+117
-5.9942233e+117
-5.9946165e+117
-5.9812137e+117
-5.9817718e+117
-5.9952398e+117
-5.9825334e+117
-5.9960264e+117
-6.0221672e+117
-6.0226415e+117
-6.0078057e+117
-6.008225e+117
-6.0097533e+117
-6.0089018e+117
-6.0233524e+117
-6.0242477e+117
-5.8864913e+117
-5.886598e+117
-5.8974129e+117
-5.8975382e+117
-5.9087627e+117
-5.9200901e+117
-5.9202599e+117
-5.9086259e+117
-5.8869523e+117
-5.8870756e+117
-5.8979951e+117
-5.8978206e+117
-5.9090281e+117
-5.9093031e+117
-5.9205756e+117
-5.920979e+117
-5.8965348e+117
-5.8850926e+117
-5.8961419e+117
-5.8854986e+117
-5.9075108e+117
-5.9191189e+117
-5.9193176e+117
-5.9078278e+117
-5.8972919e+117
-5.8860491e+117
-5.8969163e+117
-5.8864606e+117
-5.9080786e+117
-5.9195165e+117
-5.9084115e+117
-5.9198003e+117
-5.861201e+117
-5.8617079e+117
-5.8738404e+117
-5.8742576e+117
-5.8748416e+117
-5.8753041e+117
-5.8622397e+117
-5.8627098e+117
-5.8441127e+117
-5.8185694e+117
-5.7976087e+117
-5.7985562e+117
-5.8192897e+117
-5.8453119e+117
-5.8629173e+117
-5.8630443e+117
-5.8753513e+117
-5.8754548e+117
-5.8757826e+117
-5.8758819e+117
-5.8632273e+117
-5.863204e+117
-5.8200474e+117
-5.7993652e+117
-5.8000642e+117
-5.8206877e+117
-5.8461288e+117
-5.8459517e+117
-5.759272e+117
-5.7583829e+117
-5.7791615e+117
-5.7799884e+117
-5.7574223e+117
-5.7563448e+117
-5.7772691e+117
-5.778304e+117
-5.8629127e+117
-5.8629993e+117
-5.8755934e+117
-5.8756831e+117
-5.8761139e+117
-5.8764675e+117
-5.8632263e+117
-5.8634109e+117
-5.8201965e+117
-5.7992555e+117
-5.7997776e+117
-5.8206686e+117
-5.845643e+117
-5.8454459e+117
-5.8629834e+117
-5.8628369e+117
-5.8756013e+117
-5.8754095e+117
-5.8755506e+117
-5.8756873e+117
-5.8628736e+117
-5.8629316e+117
-5.8206955e+117
-5.8000466e+117
-5.7991895e+117
-5.8200317e+117
-5.845531e+117
-5.845661e+117
-5.8868202e+117
-5.8866297e+117
-5.8978168e+117
-5.8979288e+117
-5.9094659e+117
-5.909436e+117
-5.9212366e+117
-5.9212847e+117
-5.8980924e+117
-5.8867658e+117
-5.897883e+117
-5.8869282e+117
-5.9214603e+117
-5.909559e+117
-5.9098131e+117
-5.9217438e+117
-5.7797494e+117
-5.7589508e+117
-5.7579485e+117
-5.7788362e+117
-5.7590989e+117
-5.757988e+117
-5.7788549e+117
-5.7795745e+117
-5.8983843e+117
-5.8869064e+117
-5.8982073e+117
-5.8870239e+117
-5.9219825e+117
-5.9099911e+117
-5.9101709e+117
-5.9221697e+117
-5.8991576e+117
-5.8874649e+117
-5.8987404e+117
-5.8878758e+117
-5.9225497e+117
-5.9105293e+117
-5.9109245e+117
-5.9228877e+117
-5.9465334e+117
-5.9340519e+117
-5.9462903e+117
-5.9342588e+117
-5.9587697e+117
-5.9718595e+117
-5.9720469e+117
-5.958979e+117
-5.9348916e+117
-5.9470476e+117
-5.9346064e+117
-5.9468389e+117
-5.959249e+117
-5.9722912e+117
-5.9594144e+117
-5.9724151e+117
-5.9972458e+117
-5.9831567e+117
-5.9966838e+117
-5.9836309e+117
-6.0249055e+117
-6.0104183e+117
-6.0109364e+117
-6.0253924e+117
-5.9846427e+117
-5.9982452e+117
-5.9841241e+117
-5.9977393e+117
-6.0259516e+117
-6.0114535e+117
-6.0120223e+117
-6.0265593e+117
-5.9453534e+117
-5.9330915e+117
-5.9450958e+117
-5.9332339e+117
-5.9573322e+117
-5.9576534e+117
-5.9701998e+117
-5.970586e+117
-5.9460156e+117
-5.9334732e+117
-5.9456434e+117
-5.9337952e+117
-5.9710296e+117
-5.9580352e+117
-5.9584762e+117
-5.9715429e+117
-5.9988774e+117
-5.9849675e+117
-5.9986057e+117
-5.9851684e+117
-6.0269784e+117
-6.0124216e+117
-6.0126714e+117
-6.0272155e+117
-5.9854478e+117
-5.9990349e+117
-5.9853816e+117
-5.9990686e+117
-6.0274242e+117
-6.0128701e+117
-6.0128255e+117
-6.0273624e+117
-5.6711622e+117
-5.6707529e+117
-5.6930759e+117
-5.6937257e+117
-5.714603e+117
-5.7136332e+117
-5.7362726e+117
-5.7353086e+117
-5.6746882e+117
-5.6724806e+117
-5.6949363e+117
-5.6965287e+117
-5.7168419e+117
-5.7157482e+117
-5.7373492e+117
-5.7384276e+117
-5.6776712e+117
-5.6752172e+117
-5.6960623e+117
-5.6982736e+117
-5.6749285e+117
-5.6751788e+117
-5.6966764e+117
-5.6961045e+117
-5.7158698e+117
-5.7166902e+117
-5.7380748e+117
-5.7369769e+117
-5.736948e+117
-5.7159241e+117
-5.7178488e+117
-5.7385651e+117
-5.7167617e+117
-5.7033344e+117
-5.9161424e+117
-5.9335107e+117
-5.5057124e+117
-5.5033447e+117
-5.2917688e+117
-5.2957607e+117
-5.7220436e+117
-5.7199311e+117
-5.9426185e+117
-5.9428812e+117
-6.123629e+117
-6.1251213e+117
-6.0917858e+117
-6.0905911e+117
-6.0322188e+117
-6.0597382e+117
-6.0326624e+117
-6.0605594e+117
-6.0882754e+117
-6.1211203e+117
-6.1221891e+117
-6.0892264e+117
-6.0334369e+117
-6.0616166e+117
-6.0340378e+117
-6.0624566e+117
-6.0863499e+117
-6.1190302e+117
-6.0306964e+117
-6.058155e+117
-6.0315702e+117
-6.0589909e+117
-6.0865585e+117
-6.1192223e+117
-6.087403e+117
-6.1201465e+117
-6.2333922e+117
-6.2329701e+117
-6.2831732e+117
-6.2828372e+117
-6.1530253e+117
-6.1918967e+117
-6.1523368e+117
-6.1915003e+117
-6.1525969e+117
-6.1535447e+117
-6.1917943e+117
-6.1926827e+117
-6.233327e+117
-6.2833726e+117
-6.2343845e+117
-6.2847111e+117
-6.2355564e+117
-6.2859237e+117
-6.2367521e+117
-6.2870541e+117
-6.156952e+117
-6.1962177e+117
-6.1585659e+117
-6.1977532e+117
-6.1545914e+117
-6.1937816e+117
-6.195051e+117
-6.1556692e+117
-6.2380874e+117
-6.288815e+117
-6.2398629e+117
-6.2910199e+117
-5.5083745e+117
-5.5078071e+117
-5.3017837e+117
-5.3042139e+117
-5.9557282e+117
-6.0047683e+117
-5.9797052e+117
-6.0057386e+117
-5.9803476e+117
-5.980361e+117
-6.0063661e+117
-6.0065617e+117
-5.9319708e+117
-5.9313739e+117
-5.955991e+117
-5.9557313e+117
-5.9328862e+117
-5.956266e+117
-5.9323295e+117
-5.9561159e+117
-5.9804492e+117
-5.9805485e+117
-6.0070388e+117
-6.0074892e+117
-5.8845139e+117
-5.9086754e+117
-5.8834067e+117
-5.907885e+117
-5.9098239e+117
-5.8851042e+117
-5.9092087e+117
-5.8607218e+117
-5.8595853e+117
-5.8356429e+117
-5.8347854e+117
-5.7235861e+117
-5.9421214e+117
-5.9421448e+117
-5.7222513e+117
-5.5092437e+117
-5.6509984e+117
-5.6518939e+117
-5.6519304e+117
-5.6285274e+117
-5.6526911e+117
-5.6312278e+117
-5.6554084e+117
-5.3062605e+117
-5.3053202e+117
-5.5092128e+117
-6.1148999e+117
-6.0976087e+117
-6.1150136e+117
-6.0974005e+117
-6.132497e+117
-6.151769e+117
-6.1515674e+117
-6.1323167e+117
-6.1153042e+117
-6.0974826e+117
-6.1149722e+117
-6.0978608e+117
-6.1323792e+117
-6.1515647e+117
-6.1326491e+117
-6.1517637e+117
-6.0505068e+117
-6.0360259e+117
-6.0507877e+117
-6.0357e+117
-6.0356859e+117
-6.0505038e+117
-6.050763e+117
-6.0359481e+117
-6.0656022e+117
-6.0816279e+117
-6.0653129e+117
-6.0813452e+117
-6.0814035e+117
-6.0817692e+117
-6.0653416e+117
-6.0656552e+117
-6.0363369e+117
-6.05117e+117
-6.0517421e+117
-6.0368469e+117
-6.0375743e+117
-6.0524732e+117
-6.0533226e+117
-6.0384673e+117
-6.0660613e+117
-6.0821685e+117
-6.0826804e+117
-6.0665941e+117
-6.067327e+117
-6.0834162e+117
-6.0843081e+117
-6.0682031e+117
-6.0982049e+117
-6.1156365e+117
-6.1162346e+117
-6.0987207e+117
-6.0994696e+117
-6.117005e+117
-6.1178548e+117
-6.1003494e+117
-6.1523168e+117
-6.1530192e+117
-6.1330946e+117
-6.1337161e+117
-6.1345401e+117
-6.1538895e+117
-6.154834e+117
-6.1354413e+117
-6.0412257e+117
-6.056135e+117
-6.0564334e+117
-6.0414736e+117
-6.0415696e+117
-6.0416593e+117
-6.0565977e+117
-6.0564569e+117
-6.0710534e+117
-6.0871939e+117
-6.087426e+117
-6.0713096e+117
-6.0713919e+117
-6.0714781e+117
-6.0875964e+117
-6.0875593e+117
-6.0391043e+117
-6.0539554e+117
-6.0545243e+117
-6.0396157e+117
-6.0401848e+117
-6.0550815e+117
-6.0557066e+117
-6.0408134e+117
-6.0688274e+117
-6.0849294e+117
-6.0854497e+117
-6.0693677e+117
-6.069957e+117
-6.0860562e+117
-6.0867614e+117
-6.0706247e+117
-6.100963e+117
-6.1184751e+117
-6.1190998e+117
-6.1015125e+117
-6.1021189e+117
-6.1196927e+117
-6.1203145e+117
-6.1028014e+117
-6.1360753e+117
-6.1554878e+117
-6.1560524e+117
-6.1366572e+117
-6.1372689e+117
-6.1566734e+117
-6.1573178e+117
-6.1379032e+117
-6.103213e+117
-6.1207157e+117
-6.1210116e+117
-6.1034533e+117
-6.1035758e+117
-6.1036189e+117
-6.121146e+117
-6.1209603e+117
-6.1382998e+117
-6.1577186e+117
-6.1579347e+117
-6.1385327e+117
-6.1384798e+117
-6.1386727e+117
-6.1580819e+117
-6.157901e+117
-6.1710761e+117
-6.1919348e+117
-6.1927559e+117
-6.1718154e+117
-6.1727014e+117
-6.1936502e+117
-6.1945654e+117
-6.1736711e+117
-6.2380176e+117
-6.2129818e+117
-6.2372926e+117
-6.2137328e+117
-6.2399762e+117
-6.2146278e+117
-6.2389308e+117
-6.2156168e+117
-6.1910319e+117
-6.1704696e+117
-6.1911688e+117
-6.1702623e+117
-6.2120235e+117
-6.2361369e+117
-6.2360379e+117
-6.211882e+117
-6.1914032e+117
-6.1702782e+117
-6.1911176e+117
-6.1705389e+117
-6.2120292e+117
-6.2362253e+117
-6.2124434e+117
-6.2367264e+117
-6.3163847e+117
-6.3492509e+117
-6.3494965e+117
-6.3165517e+117
-6.2880592e+117
-6.2600594e+117
-6.2878945e+117
-6.260032e+117
-6.2607787e+117
-6.2602442e+117
-6.2882748e+117
-6.2887245e+117
-6.3172699e+117
-6.3167196e+117
-6.3495932e+117
-6.3502372e+117
-6.2613578e+117
-6.289296e+117
-6.2901308e+117
-6.2620956e+117
-6.2630127e+117
-6.2910523e+117
-6.2640759e+117
-6.29203e+117
-6.3507826e+117
-6.3514974e+117
-6.3178166e+117
-6.31856e+117
-6.3206121e+117
-6.3195035e+117
-6.3524328e+117
-6.3536197e+117
-6.2936452e+117
-6.2648256e+117
-6.2928103e+117
-6.2655392e+117
-6.3542386e+117
-6.3213115e+117
-6.3218653e+117
-6.3545632e+117
-6.2949323e+117
-6.2661684e+117
-6.2942123e+117
-6.2669457e+117
-6.3552097e+117
-6.322503e+117
-6.3232426e+117
-6.3559832e+117
-6.1743337e+117
-6.1952448e+117
-6.1959171e+117
-6.1749196e+117
-6.1755387e+117
-6.196549e+117
-6.1971469e+117
-6.176192e+117
-6.2163086e+117
-6.2406842e+117
-6.2413206e+117
-6.2169424e+117
-6.2176029e+117
-6.2419947e+117
-6.2427481e+117
-6.2182834e+117
-6.1765752e+117
-6.1975298e+117
-6.1978098e+117
-6.1767958e+117
-6.1767891e+117
-6.1769321e+117
-6.1979264e+117
-6.1977033e+117
-6.2186551e+117
-6.2430999e+117
-6.2432261e+117
-6.2188394e+117
-6.2187643e+117
-6.2189359e+117
-6.2433156e+117
-6.2431565e+117
-6.2954755e+117
-6.2672344e+117
-6.2951899e+117
-6.2673603e+117
-6.35652e+117
-6.3236528e+117
-6.3239427e+117
-6.3568986e+117
-6.2673183e+117
-6.295433e+117
-6.2674559e+117
-6.2956195e+117
-6.3572284e+117
-6.3241972e+117
-6.3242237e+117
-6.3574559e+117
-5.9991756e+117
-5.9863654e+117
-5.9996492e+117
-5.9859002e+117
-6.0133946e+117
-6.0274394e+117
-6.0267712e+117
-6.012812e+117
-5.9851461e+117
-5.9982989e+117
-5.9855027e+117
-5.9987029e+117
-6.0123588e+117
-6.0263179e+117
-6.0119315e+117
-6.0259112e+117
-5.9360584e+117
-5.9476558e+117
-5.9476256e+117
-5.9360187e+117
-5.9361008e+117
-5.9360417e+117
-5.9476523e+117
-5.9477101e+117
-5.9719699e+117
-5.9596706e+117
-5.9720587e+117
-5.9595924e+117
-5.9597026e+117
-5.972027e+117
-5.9596432e+117
-5.9719784e+117
-5.9482539e+117
-5.9366119e+117
-5.9484832e+117
-5.93647e+117
-5.9607425e+117
-5.9733257e+117
-5.9728692e+117
-5.9603772e+117
-5.9477496e+117
-5.9362573e+117
-5.9479932e+117
-5.9360508e+117
-5.9601054e+117
-5.972552e+117
-5.9597983e+117
-5.9722262e+117
-5.9849235e+117
-5.9980623e+117
-5.9978656e+117
-5.9847746e+117
-6.0256714e+117
-6.0114818e+117
-6.0116975e+117
-6.0254511e+117
-5.984783e+117
-5.9848162e+117
-5.9978759e+117
-5.9978934e+117
-6.0254221e+117
-6.0114764e+117
-6.0253954e+117
-6.0114781e+117
-5.8914773e+117
-5.8915572e+117
-5.9025062e+117
-5.9025179e+117
-5.9134532e+117
-5.9245707e+117
-5.9245445e+117
-5.9134726e+117
-5.8917194e+117
-5.8917833e+117
-5.9026483e+117
-5.9025997e+117
-5.913475e+117
-5.9135231e+117
-5.924561e+117
-5.9246205e+117
-5.9023948e+117
-5.890967e+117
-5.9022143e+117
-5.8912022e+117
-5.9134861e+117
-5.9248753e+117
-5.9248129e+117
-5.9135243e+117
-5.902525e+117
-5.8913661e+117
-5.9024609e+117
-5.8914681e+117
-5.9134754e+117
-5.9246589e+117
-5.913436e+117
-5.9244956e+117
-5.8655125e+117
-5.8658039e+117
-5.8792518e+117
-5.8795093e+117
-5.8797594e+117
-5.8799358e+117
-5.8661332e+117
-5.8663759e+117
-5.8100528e+117
-5.808978e+117
-5.8271968e+117
-5.8280404e+117
-5.852671e+117
-5.8431844e+117
-5.8434697e+117
-5.8529351e+117
-5.8445489e+117
-5.843957e+117
-5.8533415e+117
-5.8537583e+117
-5.8665343e+117
-5.8667926e+117
-5.8799721e+117
-5.8801288e+117
-5.8803742e+117
-5.8804413e+117
-5.867113e+117
-5.8671585e+117
-5.8292783e+117
-5.8115534e+117
-5.812509e+117
-5.8299792e+117
-5.8457136e+117
-5.8457071e+117
-5.8547241e+117
-5.8547416e+117
-5.845364e+117
-5.8449239e+117
-5.8540359e+117
-5.8543873e+117
-5.7908481e+117
-5.7731902e+117
-5.7748167e+117
-5.7920901e+117
-5.7775983e+117
-5.7768613e+117
-5.7937928e+117
-5.7948815e+117
-5.9848037e+117
-5.9978611e+117
-5.9977671e+117
-5.9846757e+117
-5.9846091e+117
-5.9846177e+117
-5.9976876e+117
-5.9976999e+117
-6.0250504e+117
-6.0114058e+117
-6.025276e+117
-6.0112376e+117
-6.0112713e+117
-6.0251909e+117
-6.0112215e+117
-6.0250757e+117
-5.9357527e+117
-5.9473727e+117
-5.9473864e+117
-5.9356589e+117
-5.9355672e+117
-5.9355869e+117
-5.9474048e+117
-5.9474664e+117
-5.9719264e+117
-5.9594058e+117
-5.9718044e+117
-5.9594602e+117
-5.9597298e+117
-5.9722968e+117
-5.9595884e+117
-5.9720898e+117
-5.9476497e+117
-5.9361558e+117
-5.9477474e+117
-5.936068e+117
-5.9597193e+117
-5.9720179e+117
-5.9718413e+117
-5.9595628e+117
-5.9473998e+117
-5.9359106e+117
-5.9475191e+117
-5.9357559e+117
-5.9594951e+117
-5.9718019e+117
-5.9593897e+117
-5.9717515e+117
-5.9846755e+117
-5.9978157e+117
-5.9979671e+117
-5.9848093e+117
-5.9850436e+117
-5.9982692e+117
-5.9852985e+117
-5.9985623e+117
-6.0256715e+117
-6.0114521e+117
-6.0254153e+117
-6.0116492e+117
-6.0123159e+117
-6.0119881e+117
-6.0260211e+117
-6.02637e+117
-5.8910164e+117
-5.8906173e+117
-5.9020921e+117
-5.9017369e+117
-5.912825e+117
-5.924233e+117
-5.9240516e+117
-5.9131041e+117
-5.8903132e+117
-5.8899042e+117
-5.9011474e+117
-5.9014558e+117
-5.9125759e+117
-5.9123693e+117
-5.9238877e+117
-5.9237863e+117
-5.902609e+117
-5.8917228e+117
-5.9026724e+117
-5.8916288e+117
-5.9136083e+117
-5.924695e+117
-5.9246093e+117
-5.9135224e+117
-5.9023949e+117
-5.8915614e+117
-5.9025064e+117
-5.8913873e+117
-5.9133847e+117
-5.9244374e+117
-5.9132515e+117
-5.9242541e+117
-5.8669546e+117
-5.866878e+117
-5.8802928e+117
-5.8801941e+117
-5.8801544e+117
-5.8799298e+117
-5.866839e+117
-5.8665671e+117
-5.8298028e+117
-5.8121907e+117
-5.8113884e+117
-5.8291768e+117
-5.8453186e+117
-5.8454958e+117
-5.8545314e+117
-5.8543947e+117
-5.8448589e+117
-5.8452455e+117
-5.85434e+117
-5.8539959e+117
-5.8660223e+117
-5.8655752e+117
-5.879458e+117
-5.879036e+117
-5.8786885e+117
-5.8781682e+117
-5.8651132e+117
-5.8644625e+117
-5.8282099e+117
-5.8100897e+117
-5.8086324e+117
-5.8268209e+117
-5.8436837e+117
-5.8443109e+117
-5.8534315e+117
-5.8528671e+117
-5.8421236e+117
-5.8430836e+117
-5.8523365e+117
-5.8515037e+117
-5.7944375e+117
-5.7768013e+117
-5.7753471e+117
-5.7932921e+117
-5.772433e+117
-5.7739082e+117
-5.7917328e+117
-5.7903326e+117
-5.7555917e+117
-5.7386359e+117
-5.740409e+117
-5.75733e+117
-5.7220439e+117
-5.7054511e+117
-5.7065624e+117
-5.7233314e+117
-5.705054e+117
-5.7064208e+117
-5.7243428e+117
-5.7235069e+117
-5.7594375e+117
-5.7419179e+117
-5.7416057e+117
-5.7597031e+117
-5.7007474e+117
-5.7006287e+117
-5.7186599e+117
-5.7185052e+117
-5.7011187e+117
-5.7029454e+117
-5.7212606e+117
-5.7197484e+117
-5.7584129e+117
-5.7397919e+117
-5.7381939e+117
-5.7567808e+117
-5.755467e+117
-5.7369579e+117
-5.7362251e+117
-5.754239e+117
-5.6671906e+117
-5.6869176e+117
-5.68744e+117
-6.1763794e+117
-6.1970539e+117
-6.1969092e+117
-6.1761781e+117
-6.1760068e+117
-6.176071e+117
-6.1967554e+117
-6.196702e+117
-6.2430191e+117
-6.2192209e+117
-6.2431572e+117
-6.2190321e+117
-6.2188705e+117
-6.2428433e+117
-6.2189289e+117
-6.2428975e+117
-6.1981417e+117
-6.1778896e+117
-6.1985767e+117
-6.1774313e+117
-6.2206916e+117
-6.2445616e+117
-6.2438595e+117
-6.2201182e+117
-6.197317e+117
-6.1770118e+117
-6.1976985e+117
-6.1766393e+117
-6.219759e+117
-6.2435599e+117
-6.2194016e+117
-6.2432753e+117
-6.2981026e+117
-6.2704449e+117
-6.2987431e+117
-6.2697552e+117
-6.3295709e+117
-6.3289686e+117
-6.2692077e+117
-6.2975662e+117
-6.2694495e+117
-6.2977871e+117
-6.3286433e+117
-6.3284858e+117
-6.2691059e+117
-6.2974452e+117
-6.2972783e+117
-6.2689618e+117
-6.3281571e+117
-6.3283332e+117
-6.2688973e+117
-6.2688563e+117
-6.2972903e+117
-6.2972643e+117
-6.3282036e+117
-6.3281785e+117
-6.2687545e+117
-6.2971469e+117
-6.2970216e+117
-6.2685462e+117
-6.2685012e+117
-6.2684559e+117
-6.2968321e+117
-6.2968647e+117
-6.3280316e+117
-6.3277288e+117
-6.3277642e+117
-6.3276729e+117
-6.1758092e+117
-6.1965059e+117
-6.1968053e+117
-6.1760787e+117
-6.1760182e+117
-6.1760795e+117
-6.196726e+117
-6.196595e+117
-6.242491e+117
-6.2186524e+117
-6.242541e+117
-6.21874e+117
-6.218687e+117
-6.2425785e+117
-6.2187972e+117
-6.2426429e+117
-6.1966e+117
-6.1759721e+117
-6.196671e+117
-6.1759095e+117
-6.2188182e+117
-6.2427372e+117
-6.2424377e+117
-6.2186101e+117
-6.1963557e+117
-6.1757213e+117
-6.1964142e+117
-6.1756116e+117
-6.2185299e+117
-6.2424282e+117
-6.2184943e+117
-6.2424445e+117
-6.2685113e+117
-6.2969077e+117
-6.2969141e+117
-6.2684613e+117
-6.2685921e+117
-6.2970359e+117
-6.2685463e+117
-6.2970006e+117
-6.3278997e+117
-6.3279547e+117
-6.3281174e+117
-6.328078e+117
-6.1189388e+117
-6.1016757e+117
-6.1190336e+117
-6.1015573e+117
-6.137178e+117
-6.1560965e+117
-6.1560224e+117
-6.1370533e+117
-6.1191891e+117
-6.1016243e+117
-6.1189733e+117
-6.1018496e+117
-6.1370411e+117
-6.1558715e+117
-6.1370696e+117
-6.1557437e+117
-6.0396024e+117
-6.0393761e+117
-6.0542089e+117
-6.0539875e+117
-6.0693518e+117
-6.0691587e+117
-6.0850532e+117
-6.0848932e+117
-6.0394092e+117
-6.054033e+117
-6.0542171e+117
-6.0395672e+117
-6.0849378e+117
-6.0851435e+117
-6.0692004e+117
-6.0693934e+117
-6.0398136e+117
-6.0544648e+117
-6.0400857e+117
-6.054733e+117
-6.069883e+117
-6.0696275e+117
-6.0853304e+117
-6.0855545e+117
-6.0407964e+117
-6.0554161e+117
-6.0404484e+117
-6.0550966e+117
-6.0858351e+117
-6.0702117e+117
-6.0704906e+117
-6.0860638e+117
-6.1019361e+117
-6.1192261e+117
-6.1193777e+117
-6.102114e+117
-6.1025086e+117
-6.1023401e+117
-6.1195585e+117
-6.1196591e+117
-6.1559986e+117
-6.156211e+117
-6.137234e+117
-6.1374022e+117
-6.1375929e+117
-6.1375533e+117
-6.1563222e+117
-6.156318e+117
-6.1043065e+117
-6.1208675e+117
-6.1212689e+117
-6.1036578e+117
-6.1391186e+117
-6.1579891e+117
-6.157534e+117
-6.1387328e+117
-6.1025986e+117
-6.1198843e+117
-6.1030498e+117
-6.1203002e+117
-6.1383125e+117
-6.1571403e+117
-6.1379286e+117
-6.1567823e+117
-6.0545802e+117
-6.0400933e+117
-6.0547862e+117
-6.0398796e+117
-6.0699816e+117
-6.0857019e+117
-6.0854706e+117
-6.0697578e+117
-6.0543793e+117
-6.0398141e+117
-6.0544789e+117
-6.039751e+117
-6.0696414e+117
-6.0853385e+117
-6.0852169e+117
-6.0695228e+117
-6.0877733e+117
-6.0719201e+117
-6.0712197e+117
-6.0870311e+117
-6.0566325e+117
-6.0418974e+117
-6.0412133e+117
-6.0559378e+117
-6.0550432e+117
-6.0407419e+117
-6.0554445e+117
-6.0403423e+117
-6.0864281e+117
-6.0706741e+117
-6.0702521e+117
-6.0859854e+117
-6.1194323e+117
-6.102309e+117
-6.1196257e+117
-6.1020747e+117
-6.1565489e+117
-6.1377045e+117
-6.137506e+117
-6.156327e+117
-6.119178e+117
-6.1019467e+117
-6.1192954e+117
-6.1018131e+117
-6.1562487e+117
-6.1374046e+117
-6.1372815e+117
-6.1561416e+117
-6.3623603e+117
-6.3633506e+117
-6.364469e+117
-6.3658175e+117
-6.3701907e+117
-6.3690275e+117
-6.3678927e+117
-6.3668302e+117
-6.3570865e+117
-6.3584338e+117
-6.3598444e+117
-6.3613379e+117
-6.3527268e+117
-6.3535632e+117
-6.3545026e+117
-6.3558547e+117
-6.3421844e+117
-6.3427882e+117
-6.3436192e+117
-6.3445336e+117
-6.3415532e+117
-6.3413069e+117
-6.341417e+117
-6.3417799e+117
-6.3481917e+117
-6.3492814e+117
-6.3504922e+117
-6.3518169e+117
-6.345153e+117
-6.3456299e+117
-6.34625e+117
-6.3472818e+117
-6.1454395e+117
-6.1529772e+117
-6.133149e+117
-6.1395347e+117
-6.26718e+117
-6.2688394e+117
-6.2651192e+117
-6.26591e+117
-6.332788e+117
-6.2981574e+117
-6.2996589e+117
-6.3340916e+117
-6.2962641e+117
-6.3308701e+117
-6.3317276e+117
-6.2970326e+117
-6.3672335e+117
-6.3857537e+117
-6.3862133e+117
-6.3678773e+117
-6.3845569e+117
-6.3852055e+117
-6.3666226e+117
-6.3661631e+117
-6.4129065e+117
-6.4138767e+117
-6.3645483e+117
-6.3640011e+117
-6.3824752e+117
-6.3831851e+117
-6.4110634e+117
-6.4121025e+117
-6.3650619e+117
-6.3837166e+117
-6.3841486e+117
-6.365655e+117
-6.2700971e+117
-6.2711092e+117
-6.300691e+117
-6.3349231e+117
-6.3354839e+117
-6.301418e+117
-6.3682501e+117
-6.3865496e+117
-6.3869473e+117
-6.3685587e+117
-6.387126e+117
-6.3871084e+117
-6.3688318e+117
-6.3689906e+117
-6.414721e+117
-6.4144989e+117
-6.3871638e+117
-6.3874425e+117
-6.3691468e+117
-6.3691261e+117
-6.3693254e+117
-6.3876337e+117
-6.3878297e+117
-6.3696626e+117
-6.4154484e+117
-6.4149523e+117
-6.3953626e+117
-6.3954793e+117
-6.3759585e+117
-6.3758005e+117
-6.4134833e+117
-6.4134015e+117
-6.4291748e+117
-6.4292718e+117
-6.4605865e+117
-6.4602975e+117
-6.4439729e+117
-6.4441439e+117
-6.4659421e+117
-6.4657421e+117
-6.4820295e+117
-6.4948065e+117
-6.4951365e+117
-6.4822577e+117
-6.4606316e+117
-6.4606679e+117
-6.4442893e+117
-6.4442368e+117
-6.4660371e+117
-6.4660849e+117
-6.4823633e+117
-6.4952305e+117
-6.4951636e+117
-6.4823775e+117
-6.4610352e+117
-6.4606862e+117
-6.4444262e+117
-6.4446613e+117
-6.4824517e+117
-6.4661541e+117
-6.4663875e+117
-6.495215e+117
-6.4954812e+117
-6.4826282e+117
-6.4611821e+117
-6.4449525e+117
-6.4449085e+117
-6.4611602e+117
-6.4665023e+117
-6.4665822e+117
-6.4827226e+117
-6.4827089e+117
-6.4955157e+117
-6.495389e+117
-6.4503106e+117
-6.4502486e+117
-6.4718061e+117
-6.4717409e+117
-6.4828293e+117
-6.4827754e+117
-6.4996358e+117
-6.4997918e+117
-6.4998235e+117
-6.4997762e+117
-6.4921777e+117
-6.5002938e+117
-6.4921276e+117
-6.5002208e+117
-6.5060566e+117
-6.5094885e+117
-6.5048482e+117
-6.5081409e+117
-6.5049097e+117
-6.5082808e+117
-6.5064262e+117
-6.5057868e+117
-6.5060713e+117
-6.5094891e+117
-6.5063369e+117
-6.5059907e+117
-6.5049505e+117
-6.5083066e+117
-6.5048713e+117
-6.5082485e+117
-6.5059672e+117
-6.5059662e+117
-6.4871056e+117
-6.4877204e+117
-6.4876155e+117
-6.4455507e+117
-6.4457194e+117
-6.444972e+117
-6.4451435e+117
-6.4871885e+117
-6.506103e+117
-6.5093416e+117
-6.5059457e+117
-6.5060312e+117
-6.5094787e+117
-6.5063657e+117
-6.4449584e+117
-6.4871833e+117
-6.487469e+117
-6.4451843e+117
-6.4870526e+117
-6.4871708e+117
-6.4445799e+117
-6.4445158e+117
-6.4992231e+117
-6.4994601e+117
-6.4995697e+117
-6.4995596e+117
-6.5058078e+117
-6.5091327e+117
-6.505855e+117
-6.5092626e+117
-6.5057758e+117
-6.5060876e+117
-6.4871339e+117
-6.4868637e+117
-6.4438019e+117
-6.4444793e+117
-6.5055977e+117
-6.5089292e+117
-6.5055583e+117
-6.5057999e+117
-6.5090955e+117
-6.5057218e+117
-6.4437271e+117
-6.4864117e+117
-6.4439397e+117
-6.486694e+117
-6.4574833e+117
-6.4409971e+117
-6.4580423e+117
-6.441524e+117
-6.4630795e+117
-6.4635087e+117
-6.4800146e+117
-6.4795938e+117
-6.492457e+117
-6.492953e+117
-6.4583127e+117
-6.4420543e+117
-6.4417953e+117
-6.458493e+117
-6.463786e+117
-6.4640461e+117
-6.4803218e+117
-6.4932927e+117
-6.4934652e+117
-6.4805594e+117
-6.442919e+117
-6.4424243e+117
-6.4588362e+117
-6.4594118e+117
-6.4643617e+117
-6.4648187e+117
-6.4812468e+117
-6.4808531e+117
-6.4937509e+117
-6.4942054e+117
-6.4436892e+117
-6.4433806e+117
-6.4598115e+117
-6.4600474e+117
-6.4651927e+117
-6.4654965e+117
-6.4817947e+117
-6.4815702e+117
-6.494498e+117
-6.4945929e+117
-6.4970177e+117
-6.4974224e+117
-6.49775e+117
-6.4979759e+117
-6.4988381e+117
-6.4990042e+117
-6.4982384e+117
-6.498576e+117
-6.5039961e+117
-6.5071032e+117
-6.503551e+117
-6.5038806e+117
-6.5074036e+117
-6.5042749e+117
-6.5044452e+117
-6.5076734e+117
-6.5041833e+117
-6.5043881e+117
-6.5078379e+117
-6.504646e+117
-6.4430101e+117
-6.4850911e+117
-6.4853314e+117
-6.4427981e+117
-6.4428619e+117
-6.4854532e+117
-6.4855555e+117
-6.4425903e+117
-6.5046233e+117
-6.5080092e+117
-6.504896e+117
-6.5083618e+117
-6.5051981e+117
-6.5046987e+117
-6.4423237e+117
-6.4855e+117
-6.4859402e+117
-6.4428382e+117
-6.5052672e+117
-6.5085627e+117
-6.5051499e+117
-6.5053346e+117
-6.5087187e+117
-6.5054344e+117
-6.4432486e+117
-6.4860654e+117
-6.4862154e+117
-6.4431598e+117
-6.4168593e+117
-6.4177277e+117
-6.4154914e+117
-6.4161166e+117
-6.3511846e+117
-6.3513507e+117
-6.3855045e+117
-6.3849434e+117
-6.3516454e+117
-6.3523285e+117
-6.3866624e+117
-6.3860575e+117
-6.4193042e+117
-6.4200888e+117
-6.4182741e+117
-6.4186672e+117
-6.3527815e+117
-6.3528726e+117
-6.3875553e+117
-6.3871695e+117
-6.353192e+117
-6.3538625e+117
-6.3886094e+117
-6.3880602e+117
-6.3277356e+117
-6.3563653e+117
-6.3750802e+117
-6.3756846e+117
-6.3568406e+117
-6.3575057e+117
-6.376249e+117
-6.3768779e+117
-6.3584573e+117
-6.4048793e+117
-6.4039801e+117
-6.3592759e+117
-6.3775718e+117
-6.378502e+117
-6.3600535e+117
-6.3608429e+117
-6.3791443e+117
-6.3795177e+117
-6.3614636e+117
-6.4070536e+117
-6.4060418e+117
-6.2639615e+117
-6.2645186e+117
-6.2648303e+117
-6.2957904e+117
-6.2952577e+117
-6.3292395e+117
-6.3300522e+117
-6.2942979e+117
-6.3287202e+117
-6.3285545e+117
-6.2947051e+117
-6.3798046e+117
-6.3800399e+117
-6.3615983e+117
-6.3616009e+117
-6.3801128e+117
-6.3616328e+117
-6.3617369e+117
-6.3801582e+117
-6.4081063e+117
-6.4077138e+117
-6.3809694e+117
-6.3804091e+117
-6.361935e+117
-6.3622964e+117
-6.3634308e+117
-6.3819212e+117
-6.3814555e+117
-6.3628004e+117
-6.4098846e+117
-6.4088535e+117
-6.3864605e+117
-6.3803564e+117
-6.1913896e+117
-6.3148847e+117
-6.3213485e+117
-6.3968647e+117
-6.3917527e+117
-6.2012325e+117
-6.3267481e+117
-6.3323395e+117
-6.4077862e+117
-6.4096724e+117
-6.404535e+117
-6.4060766e+117
-6.2813389e+117
-6.2777817e+117
-6.3423151e+117
-6.3438381e+117
-6.3766521e+117
-6.3749989e+117
-6.3457508e+117
-6.3476385e+117
-6.3800882e+117
-6.3784182e+117
-6.4134829e+117
-6.4146548e+117
-6.4112008e+117
-6.41234e+117
-6.3489371e+117
-6.3492806e+117
-6.3824867e+117
-6.3815276e+117
-6.3497281e+117
-6.3504574e+117
-6.3841677e+117
-6.3833317e+117
-6.3668547e+117
-6.3640057e+117
-6.1779542e+117
-6.2993506e+117
-6.3016487e+117
-6.3752917e+117
-6.3703402e+117
-6.1833495e+117
-6.3048361e+117
-6.3098057e+117
-6.4008102e+117
-6.3997683e+117
-6.4127359e+117
-6.4115398e+117
-6.4426942e+117
-6.4442714e+117
-6.4041913e+117
-6.4023272e+117
-6.41429e+117
-6.445931e+117
-6.4160825e+117
-6.4477985e+117
-6.4137231e+117
-6.4107822e+117
-6.4228719e+117
-6.4257137e+117
-6.4547094e+117
-6.4573536e+117
-6.4081506e+117
-6.4060289e+117
-6.4180227e+117
-6.4202376e+117
-6.4498243e+117
-6.4522376e+117
-6.4541666e+117
-6.4530394e+117
-6.4550495e+117
-6.455982e+117
-6.4569108e+117
-6.4550828e+117
-6.4555873e+117
-6.4576069e+117
-6.4584525e+117
-6.4564111e+117
-6.4595419e+117
-6.4577179e+117
-6.4586603e+117
-6.4592728e+117
-6.4604802e+117
-6.4612783e+117
-6.4465258e+117
-6.4526001e+117
-6.4534568e+117
-6.4474386e+117
-6.4482892e+117
-6.4544239e+117
-6.4551553e+117
-6.4491032e+117
-6.4112804e+117
-6.4339415e+117
-6.4347942e+117
-6.411825e+117
-6.4360965e+117
-6.4355713e+117
-6.4124215e+117
-6.4127536e+117
-6.4498366e+117
-6.4559959e+117
-6.4569786e+117
-6.4508943e+117
-6.4587113e+117
-6.4578954e+117
-6.4517065e+117
-6.4525743e+117
-6.43941e+117
-6.4386347e+117
-6.4150083e+117
-6.4157912e+117
-6.4133539e+117
-6.4368402e+117
-6.41412e+117
-6.4377841e+117
-6.4622615e+117
-6.460248e+117
-6.4617847e+117
-6.4635888e+117
-6.4648347e+117
-6.4630264e+117
-6.4639383e+117
-6.4659265e+117
-6.4670631e+117
-6.4650648e+117
-6.4685293e+117
-6.4667491e+117
-6.4679786e+117
-6.4689275e+117
-6.4697462e+117
-6.470877e+117
-6.4534596e+117
-6.4596874e+117
-6.4609182e+117
-6.4547574e+117
-6.4633365e+117
-6.4622118e+117
-6.457219e+117
-6.455974e+117
-6.4426017e+117
-6.4183756e+117
-6.4193838e+117
-6.4436916e+117
-6.4164367e+117
-6.4402189e+117
-6.4413797e+117
-6.4172708e+117
-6.4447685e+117
-6.4463014e+117
-6.4220486e+117
-6.4205364e+117
-6.4232687e+117
-6.4474814e+117
-6.44852e+117
-6.4243605e+117
-6.4658606e+117
-6.4644943e+117
-6.4596666e+117
-6.4582641e+117
-6.4682176e+117
-6.4670751e+117
-6.4619986e+117
-6.4608366e+117
-6.4355808e+117
-6.4331765e+117
-6.4768558e+117
-6.4456463e+117
-6.4479681e+117
-6.4790152e+117
-6.4306726e+117
-6.4281535e+117
-6.4431947e+117
-6.4406014e+117
-6.4717669e+117
-6.474472e+117
-6.4601424e+117
-6.4632206e+117
-6.4720769e+117
-6.4701899e+117
-6.4721216e+117
-6.4737996e+117
-6.4753312e+117
-6.4736101e+117
-6.4748074e+117
-6.4767144e+117
-6.4661971e+117
-6.4691166e+117
-6.4780729e+117
-6.4761674e+117
-6.478056e+117
-6.4797632e+117
-6.4804362e+117
-6.4794261e+117
-6.4811248e+117
-6.4823348e+117
-6.4710408e+117
-6.4694652e+117
-6.4632268e+117
-6.4648256e+117
-6.4253895e+117
-6.4496956e+117
-6.451319e+117
-6.4267589e+117
-6.4740469e+117
-6.4726334e+117
-6.4663327e+117
-6.4677941e+117
-6.4540557e+117
-6.4527678e+117
-6.4280788e+117
-6.4292492e+117
-6.4770843e+117
-6.4754551e+117
-6.4691133e+117
-6.4706812e+117
-6.4797026e+117
-6.4784658e+117
-6.4720265e+117
-6.473328e+117
-6.4304652e+117
-6.4553279e+117
-6.45701e+117
-6.4321364e+117
-6.4596097e+117
-6.4583891e+117
-6.4336065e+117
-6.4347965e+117
-6.4848072e+117
-6.4865254e+117
-6.4876926e+117
-6.4857676e+117
-6.4834623e+117
-6.4816829e+117
-6.4835811e+117
-6.485184e+117
-6.4883997e+117
-6.4868516e+117
-6.4887835e+117
-6.4901569e+117
-6.4912243e+117
-6.4894692e+117
-6.4901136e+117
-6.4920579e+117
-6.4746081e+117
-6.4809756e+117
-6.4825163e+117
-6.4760609e+117
-6.4359643e+117
-6.4608338e+117
-6.4623212e+117
-6.437356e+117
-6.4387452e+117
-6.4636696e+117
-6.4648758e+117
-6.439975e+117
-6.4839057e+117
-6.4851216e+117
-6.4786443e+117
-6.4773915e+117
-6.4411258e+117
-6.4660145e+117
-6.4674871e+117
-6.4426526e+117
-6.4439221e+117
-6.4686291e+117
-6.4696113e+117
-6.444942e+117
-6.4875839e+117
-6.4862534e+117
-6.4810549e+117
-6.4797811e+117
-6.4894846e+117
-6.4886222e+117
-6.4831102e+117
-6.4821392e+117
-6.4255461e+117
-6.4222477e+117
-6.4379019e+117
-6.4346759e+117
-6.419175e+117
-6.4163054e+117
-6.4285808e+117
-6.4315871e+117
-6.418842e+117
-6.4594645e+117
-6.4172849e+117
-6.4576494e+117
-6.4784208e+117
-6.4796255e+117
-6.4805744e+117
-6.4813706e+117
-6.4205283e+117
-6.461252e+117
-6.4834204e+117
-6.4822438e+117
-6.4631117e+117
-6.4843291e+117
-6.4850387e+117
-6.4223152e+117
-6.4249103e+117
-6.4662024e+117
-6.4646879e+117
-6.4237418e+117
-6.4868925e+117
-6.485867e+117
-6.4876948e+117
-6.4883266e+117
-6.4261442e+117
-6.4675864e+117
-6.4274144e+117
-6.4689702e+117
-6.4900087e+117
-6.4890611e+117
-6.4906973e+117
-6.4911818e+117
-6.4808749e+117
-6.4819775e+117
-6.482966e+117
-6.483835e+117
-6.4847594e+117
-6.485819e+117
-6.4867238e+117
-6.4875367e+117
-6.4836923e+117
-6.4826113e+117
-6.4787527e+117
-6.479871e+117
-6.4246633e+117
-6.4611998e+117
-6.4623581e+117
-6.425561e+117
-6.4855956e+117
-6.484694e+117
-6.4808629e+117
-6.4816244e+117
-6.4639825e+117
-6.4632612e+117
-6.4263917e+117
-6.426918e+117
-6.4884679e+117
-6.4845499e+117
-6.4853424e+117
-6.4893082e+117
-6.4875412e+117
-6.4865369e+117
-6.4825941e+117
-6.4836016e+117
-6.4276026e+117
-6.4647067e+117
-6.4658085e+117
-6.4285522e+117
-6.4675188e+117
-6.4667232e+117
-6.4295283e+117
-6.4302173e+117
-6.4915614e+117
-6.4924077e+117
-6.4930924e+117
-6.493683e+117
-6.4911138e+117
-6.4902073e+117
-6.4860944e+117
-6.4870384e+117
-6.4926451e+117
-6.4919422e+117
-6.4878704e+117
-6.4885657e+117
-6.4690385e+117
-6.4681503e+117
-6.4308509e+117
-6.4314583e+117
-6.4705728e+117
-6.469832e+117
-6.4323532e+117
-6.4330319e+117
-6.4883943e+117
-6.4893428e+117
-6.4901496e+117
-6.4908395e+117
-6.4941776e+117
-6.4933778e+117
-6.4893542e+117
-6.4902933e+117
-6.495498e+117
-6.4948754e+117
-6.4910016e+117
-6.4916453e+117
-6.4338224e+117
-6.4712435e+117
-6.472327e+117
-6.4347644e+117
-6.4738712e+117
-6.4731514e+117
-6.4358285e+117
-6.4365161e+117
-6.4289653e+117
-6.4711335e+117
-6.4282715e+117
-6.4700542e+117
-6.4926458e+117
-6.4918234e+117
-6.4932457e+117
-6.4936678e+117
-6.4297954e+117
-6.4721423e+117
-6.4306877e+117
-6.4731834e+117
-6.495045e+117
-6.4942458e+117
-6.4955994e+117
-6.4959596e+117
-6.4312812e+117
-6.4739855e+117
-6.4317067e+117
-6.4747422e+117
-6.4964652e+117
-6.4971614e+117
-6.4976223e+117
-6.4978647e+117
-6.4323313e+117
-6.4754429e+117
-6.4331014e+117
-6.4761922e+117
-6.4988541e+117
-6.4982621e+117
-6.4992034e+117
-6.4994018e+117
-6.5021904e+117
-6.5018984e+117
-6.5010472e+117
-6.5015326e+117
-6.5019232e+117
-6.5012588e+117
-6.4976535e+117
-6.4984045e+117
-6.4807811e+117
-6.4799816e+117
-6.4429381e+117
-6.4434829e+117
-6.444235e+117
-6.4812674e+117
-6.4817771e+117
-6.444536e+117
-6.5028186e+117
-6.5024552e+117
-6.4993497e+117
-6.498926e+117
-6.499185e+117
-6.4998431e+117
-6.5003273e+117
-6.5006708e+117
-6.5031997e+117
-6.5036532e+117
-6.5003764e+117
-6.499725e+117
-6.4450456e+117
-6.4821363e+117
-6.4829597e+117
-6.4459544e+117
-6.500709e+117
-6.5040233e+117
-6.5043481e+117
-6.5011028e+117
-6.4465286e+117
-6.4833303e+117
-6.4836911e+117
-6.4466058e+117
-6.4943405e+117
-6.4950939e+117
-6.4956958e+117
-6.4962341e+117
-6.4968292e+117
-6.4975587e+117
-6.4981315e+117
-6.4986272e+117
-6.4922927e+117
-6.4961928e+117
-6.4969114e+117
-6.4930049e+117
-6.4981114e+117
-6.4975306e+117
-6.4942765e+117
-6.493537e+117
-6.4757185e+117
-6.4384004e+117
-6.4388681e+117
-6.4762794e+117
-6.4371625e+117
-6.4743952e+117
-6.4750967e+117
-6.437441e+117
-6.476947e+117
-6.4778698e+117
-6.4404451e+117
-6.4396468e+117
-6.4793369e+117
-6.478593e+117
-6.4414366e+117
-6.4422028e+117
-6.4994452e+117
-6.4987429e+117
-6.4956702e+117
-6.4948663e+117
-6.5006101e+117
-6.5000462e+117
-6.4969689e+117
-6.4963194e+117
-6.4354381e+117
-6.4350758e+117
-6.4518747e+117
-6.4521877e+117
-6.4575531e+117
-6.4579456e+117
-6.4745049e+117
-6.4877199e+117
-6.4879583e+117
-6.4748521e+117
-6.4509916e+117
-6.4346821e+117
-6.4342818e+117
-6.4514979e+117
-6.4567568e+117
-6.4571723e+117
-6.4736637e+117
-6.4867579e+117
-6.4873448e+117
-6.4741232e+117
-6.4536315e+117
-6.4369263e+117
-6.4372373e+117
-6.4538506e+117
-6.4595004e+117
-6.4592114e+117
-6.4759857e+117
-6.4891132e+117
-6.4893192e+117
-6.4762509e+117
-6.4752219e+117
-6.4526161e+117
-6.453236e+117
-6.4588698e+117
-6.4583808e+117
-6.475651e+117
-6.4887458e+117
-6.488244e+117
-6.4359115e+117
-6.4364602e+117
-6.4548301e+117
-6.4381127e+117
-6.4384222e+117
-6.4550555e+117
-6.4604194e+117
-6.460741e+117
-6.4774765e+117
-6.477206e+117
-6.4903566e+117
-6.4905017e+117
-6.437531e+117
-6.4541139e+117
-6.4545396e+117
-6.4378408e+117
-6.4601113e+117
-6.4597673e+117
-6.476536e+117
-6.4896081e+117
-6.4900746e+117
-6.4768946e+117
-6.4553995e+117
-6.4387847e+117
-6.4560078e+117
-6.4393445e+117
-6.4615731e+117
-6.4610769e+117
-6.4783013e+117
-6.4778221e+117
-6.4908391e+117
-6.4914014e+117
-6.4565268e+117
-6.4404531e+117
-6.4398613e+117
-6.4569699e+117
-6.4620694e+117
-6.4918549e+117
-6.4787597e+117
-6.4625808e+117
-6.4791601e+117
-6.4920751e+117
-6.4915661e+117
-6.4920581e+117
-6.492425e+117
-6.492701e+117
-6.4929549e+117
-6.4933484e+117
-6.4939937e+117
-6.4937169e+117
-6.49967e+117
-6.5023413e+117
-6.4984415e+117
-6.4988651e+117
-6.5027665e+117
-6.5001159e+117
-6.5004344e+117
-6.5031353e+117
-6.4992361e+117
-6.4995018e+117
-6.5033769e+117
-6.500674e+117
-6.4417895e+117
-6.4820052e+117
-6.4824324e+117
-6.4417745e+117
-6.4827813e+117
-6.4827379e+117
-6.4421129e+117
-6.4417636e+117
-6.500875e+117
-6.5036411e+117
-6.49977e+117
-6.5000797e+117
-6.5039572e+117
-6.5012387e+117
-6.5004132e+117
-6.5042361e+117
-6.5006964e+117
-6.5044599e+117
-6.5016188e+117
-6.5014407e+117
-6.4418819e+117
-6.4827835e+117
-6.4830365e+117
-6.4417408e+117
-6.4418432e+117
-6.4831047e+117
-6.4833337e+117
-6.4417424e+117
-6.4966386e+117
-6.4963472e+117
-6.4954898e+117
-6.4959393e+117
-6.4943007e+117
-6.4946734e+117
-6.4949425e+117
-6.4951536e+117
-6.5018182e+117
-6.5047516e+117
-6.5010234e+117
-6.50132e+117
-6.5050377e+117
-6.5021102e+117
-6.5022411e+117
-6.505259e+117
-6.5015824e+117
-6.5017958e+117
-6.5054712e+117
-6.5025339e+117
-6.441873e+117
-6.4833588e+117
-6.4836239e+117
-6.441516e+117
-6.4839938e+117
-6.4838665e+117
-6.4419494e+117
-6.4418822e+117
-6.5024891e+117
-6.5061549e+117
-6.5021106e+117
-6.5057384e+117
-6.502712e+117
-6.5031975e+117
-6.4419548e+117
-6.4840328e+117
-6.4845474e+117
-6.4424717e+117
-6.5034277e+117
-6.5064798e+117
-6.5028681e+117
-6.5031769e+117
-6.5067673e+117
-6.5037375e+117
-6.484946e+117
-6.4848413e+117
-6.4429925e+117
-6.4427341e+117
-6.403689e+117
-6.3661775e+117
-6.3659243e+117
-6.403388e+117
-6.4039095e+117
-6.3665122e+117
-6.3663786e+117
-6.4038465e+117
-6.3643841e+117
-6.4020297e+117
-6.4023867e+117
-6.3647841e+117
-6.4029896e+117
-6.3656271e+117
-6.3651697e+117
-6.4024415e+117
-6.4003493e+117
-6.3648374e+117
-6.3651174e+117
-6.4003987e+117
-6.3995519e+117
-6.3640715e+117
-6.3644082e+117
-6.3998327e+117
-6.3633013e+117
-6.4010982e+117
-6.4008817e+117
-6.3630082e+117
-6.3628098e+117
-6.4008018e+117
-6.4006079e+117
-6.3627304e+117
-6.3628057e+117
-6.4005593e+117
-6.4009812e+117
-6.3630526e+117
-6.3633872e+117
-6.4012734e+117
-6.4014797e+117
-6.3638679e+117
-6.4003239e+117
-6.3628698e+117
-6.3631443e+117
-6.4005169e+117
-6.4005392e+117
-6.3630456e+117
-6.3629401e+117
-6.4004545e+117
-6.4010213e+117
-6.3633642e+117
-6.3631903e+117
-6.4006504e+117
-6.3634333e+117
-6.4011539e+117
-6.4010686e+117
-6.3634256e+117
-6.4009604e+117
-6.3639914e+117
-6.4047775e+117
-6.3638124e+117
-6.3642903e+117
-6.4009828e+117
-6.4047661e+117
-6.3637238e+117
-6.4007119e+117
-6.3635726e+117
-6.363725e+117
-6.4008869e+117
-6.4044888e+117
-6.3635365e+117
-6.4038829e+117
-6.3631164e+117
-6.4007387e+117
-6.3633731e+117
-6.363457e+117
-6.4007317e+117
-6.4005253e+117
-6.3632549e+117
-6.363301e+117
-6.4006591e+117
-6.4021554e+117
-6.3612166e+117
-6.4015735e+117
-6.3607643e+117
-6.4033132e+117
-6.362486e+117
-6.4028998e+117
-6.3619253e+117
-6.3983693e+117
-6.3573888e+117
-6.3992051e+117
-6.3581486e+117
-6.4008296e+117
-6.3600352e+117
-6.4000554e+117
-6.3590392e+117
-6.3966684e+117
-6.3561145e+117
-6.3962531e+117
-6.3556765e+117
-6.3976416e+117
-6.3567837e+117
-6.3971833e+117
-6.3562744e+117
-6.3764043e+117
-6.3751921e+117
-6.3787529e+117
-6.377575e+117
-6.3810434e+117
-6.3798637e+117
-6.383071e+117
-6.3820864e+117
-6.3714016e+117
-6.3699321e+117
-6.374027e+117
-6.3727421e+117
-6.3663047e+117
-6.3652324e+117
-6.3673733e+117
-6.3685661e+117
-6.3853462e+117
-6.3458953e+117
-6.3846375e+117
-6.3455124e+117
-6.3859898e+117
-6.3463155e+117
-6.3865365e+117
-6.3468964e+117
-6.3880417e+117
-6.3482256e+117
-6.3872246e+117
-6.3474926e+117
-6.3895241e+117
-6.3497846e+117
-6.3888698e+117
-6.3490274e+117
-6.3906783e+117
-6.3504508e+117
-6.3901584e+117
-6.3502348e+117
-6.3921973e+117
-6.3518929e+117
-6.3914926e+117
-6.351114e+117
-6.3938755e+117
-6.3533892e+117
-6.3930152e+117
-6.3526419e+117
-6.3954069e+117
-6.3550051e+117
-6.394681e+117
-6.3541599e+117
-6.3535473e+117
-6.3535532e+117
-6.3538195e+117
-6.3541066e+117
-6.3545509e+117
-6.3552583e+117
-6.3567348e+117
-6.3560148e+117
-6.3580709e+117
-6.3574221e+117
-6.3596581e+117
-6.3587597e+117
-6.3606905e+117
-6.3618788e+117
-6.3630214e+117
-6.3641576e+117
-6.2004077e+117
-6.179303e+117
-6.1999453e+117
-6.1796935e+117
-6.2221698e+117
-6.2458624e+117
-6.246039e+117
-6.2224764e+117
-6.1800904e+117
-6.200688e+117
-6.1798632e+117
-6.2004981e+117
-6.2227126e+117
-6.2464039e+117
-6.2229186e+117
-6.2466304e+117
-6.1803476e+117
-6.2009025e+117
-6.2010925e+117
-6.1805123e+117
-6.1803216e+117
-6.2007695e+117
-6.1801854e+117
-6.2004849e+117
-6.2464268e+117
-6.2231485e+117
-6.2466578e+117
-6.2231114e+117
-6.2225114e+117
-6.2459417e+117
-6.2228738e+117
-6.2462612e+117
-6.2726235e+117
-6.3011333e+117
-6.2724107e+117
-6.3009461e+117
-6.2725451e+117
-6.3008518e+117
-6.300532e+117
-6.2722697e+117
-6.3319366e+117
-6.3321439e+117
-6.3315203e+117
-6.331147e+117
-6.2720417e+117
-6.2717349e+117
-6.3002419e+117
-6.2999223e+117
-6.3307828e+117
-6.330465e+117
-6.3006167e+117
-6.2718718e+117
-6.300411e+117
-6.2720605e+117
-6.3314387e+117
-6.3316377e+117
-6.1986429e+117
-6.1774488e+117
-6.1980432e+117
-6.1780042e+117
-6.2203394e+117
-6.2208885e+117
-6.2441036e+117
-6.2446092e+117
-6.1995025e+117
-6.1784758e+117
-6.1990665e+117
-6.1788934e+117
-6.2451377e+117
-6.2213408e+117
-6.2217697e+117
-6.2455317e+117
-6.2992531e+117
-6.270165e+117
-6.2987437e+117
-6.2706745e+117
-6.3298134e+117
-6.3302483e+117
-6.2715626e+117
-6.3001055e+117
-6.2711588e+117
-6.2996568e+117
-6.3306625e+117
-6.3311315e+117
-6.0440579e+117
-6.0440823e+117
-6.0589282e+117
-6.0589289e+117
-6.044047e+117
-6.0440568e+117
-6.0589573e+117
-6.0590015e+117
-6.0741806e+117
-6.0740373e+117
-6.0893618e+117
-6.0739474e+117
-6.0895452e+117
-6.0897435e+117
-6.074106e+117
-6.0896443e+117
-6.0591872e+117
-6.0441015e+117
-6.0590867e+117
-6.0441684e+117
-6.0742612e+117
-6.0897997e+117
-6.0897126e+117
-6.0742518e+117
-6.0438534e+117
-6.0587032e+117
-6.0588977e+117
-6.0440686e+117
-6.089006e+117
-6.0736858e+117
-6.0738042e+117
-6.0890717e+117
-6.1228427e+117
-6.105365e+117
-6.1055082e+117
-6.1226195e+117
-6.1060424e+117
-6.1233796e+117
-6.1058025e+117
-6.1231154e+117
-6.1593481e+117
-6.1596423e+117
-6.1405702e+117
-6.1408277e+117
-6.1410956e+117
-6.1599023e+117
-6.1413599e+117
-6.1601601e+117
-6.0421742e+117
-6.056969e+117
-6.0575387e+117
-6.0426854e+117
-6.0431771e+117
-6.058026e+117
-6.0584836e+117
-6.043601e+117
-6.0873918e+117
-6.0720044e+117
-6.0725567e+117
-6.0879375e+117
-6.0884372e+117
-6.0730389e+117
-6.0733891e+117
-6.0886505e+117
-6.1216088e+117
-6.1037779e+117
-6.1210318e+117
-6.1043438e+117
-6.1389436e+117
-6.1395049e+117
-6.1576242e+117
-6.1581636e+117
-6.1050571e+117
-6.1223365e+117
-6.1048025e+117
-6.1220119e+117
-6.1586338e+117
-6.1399319e+117
-6.1402805e+117
-6.1590143e+117
-6.1062332e+117
-6.1236567e+117
-6.1237747e+117
-6.1063483e+117
-6.1605115e+117
-6.1416409e+117
-6.1603996e+117
-6.1417577e+117
-6.12371e+117
-6.1063871e+117
-6.1237927e+117
-6.1063071e+117
-6.1417609e+117
-6.16046e+117
-6.1603559e+117
-6.1416713e+117
-6.1964365e+117
-6.1755543e+117
-6.1961117e+117
-6.1758277e+117
-6.2184196e+117
-6.242222e+117
-6.2425278e+117
-6.2187033e+117
-6.1768199e+117
-6.1973886e+117
-6.1762498e+117
-6.1968226e+117
-6.2190993e+117
-6.2428934e+117
-6.2196755e+117
-6.2434633e+117
-6.2971272e+117
-6.2683147e+117
-6.2969173e+117
-6.2685846e+117
-6.2695482e+117
-6.2689806e+117
-6.297582e+117
-6.2981476e+117
-6.3280741e+117
-6.3282404e+117
-6.3292609e+117
-6.3286711e+117
-6.1758503e+117
-6.1755955e+117
-6.1964003e+117
-6.1961447e+117
-6.2184293e+117
-6.2422278e+117
-6.2186908e+117
-6.2425042e+117
-6.1959775e+117
-6.1754343e+117
-6.195988e+117
-6.1754069e+117
-6.2182828e+117
-6.218252e+117
-6.2420711e+117
-6.2420326e+117
-6.2686559e+117
-6.2973612e+117
-6.2683705e+117
-6.2970657e+117
-6.3282652e+117
-6.328612e+117
-6.2681461e+117
-6.2967964e+117
-6.2681941e+117
-6.2968636e+117
-6.328028e+117
-6.3279908e+117
-6.1023377e+117
-6.1022438e+117
-6.1195812e+117
-6.1194568e+117
-6.1372683e+117
-6.1558453e+117
-6.1374367e+117
-6.1560623e+117
-6.102192e+117
-6.1193503e+117
-6.1021864e+117
-6.1193708e+117
-6.1371588e+117
-6.1371139e+117
-6.1557083e+117
-6.1556667e+117
-6.0409089e+117
-6.041e+117
-6.0555063e+117
-6.0554881e+117
-6.0703765e+117
-6.0857967e+117
-6.070463e+117
-6.0858934e+117
-6.0555509e+117
-6.0409802e+117
-6.0554945e+117
-6.0409525e+117
-6.0703786e+117
-6.0704355e+117
-6.0857649e+117
-6.0857861e+117
-6.0558305e+117
-6.0410583e+117
-6.0556447e+117
-6.0411738e+117
-6.0705467e+117
-6.085928e+117
-6.0861735e+117
-6.070768e+117
-6.0565114e+117
-6.0413819e+117
-6.056098e+117
-6.0417111e+117
-6.0710658e+117
-6.0864222e+117
-6.0714407e+117
-6.0867245e+117
-6.1196234e+117
-6.1022998e+117
-6.1194615e+117
-6.1025023e+117
-6.1558249e+117
-6.1372686e+117
-6.1374518e+117
-6.1560376e+117
-6.1031426e+117
-6.1204219e+117
-6.1027789e+117
-6.1199797e+117
-6.1564758e+117
-6.13785e+117
-6.1383463e+117
-6.157018e+117
-5.8593731e+117
-5.8590112e+117
-5.8779284e+117
-5.8775899e+117
-5.8774037e+117
-5.8774787e+117
-5.8587789e+117
-5.8587837e+117
-5.8311254e+117
-5.8224671e+117
-5.8221664e+117
-5.8307526e+117
-5.8141748e+117
-5.8055539e+117
-5.805471e+117
-5.8139339e+117
-5.8304842e+117
-5.821891e+117
-5.8216351e+117
-5.8302627e+117
-5.8049282e+117
-5.8053392e+117
-5.8137008e+117
-5.8133973e+117
-5.8392481e+117
-5.839591e+117
-5.8483735e+117
-5.8480331e+117
-5.8388174e+117
-5.8389946e+117
-5.8477849e+117
-5.8476887e+117
-5.8589323e+117
-5.8591432e+117
-5.8777181e+117
-5.878004e+117
-5.8782806e+117
-5.8785603e+117
-5.8593095e+117
-5.859576e+117
-5.8131228e+117
-5.804415e+117
-5.8037868e+117
-5.8126292e+117
-5.8301774e+117
-5.8214454e+117
-5.8210951e+117
-5.8299962e+117
-5.8389387e+117
-5.8387549e+117
-5.8479367e+117
-5.8481847e+117
-5.838752e+117
-5.8387821e+117
-5.8477296e+117
-5.847832e+117
-5.8888627e+117
-5.9000374e+117
-5.8997685e+117
-5.8885501e+117
-5.8883711e+117
-5.8996288e+117
-5.8997017e+117
-5.8884591e+117
-5.9228949e+117
-5.9114273e+117
-5.9230978e+117
-5.9111888e+117
-5.9228831e+117
-5.9110861e+117
-5.9228179e+117
-5.9111442e+117
-5.8887411e+117
-5.8999699e+117
-5.9002484e+117
-5.8890262e+117
-5.889282e+117
-5.9005086e+117
-5.9007557e+117
-5.8895526e+117
-5.9233493e+117
-5.9114075e+117
-5.9231162e+117
-5.9116613e+117
-5.9119238e+117
-5.9235942e+117
-5.9237671e+117
-5.9121268e+117
-5.7973152e+117
-5.7888219e+117
-5.7890453e+117
-5.7973581e+117
-5.7807524e+117
-5.7722675e+117
-5.7727076e+117
-5.7810449e+117
-5.797332e+117
-5.7891072e+117
-5.7885391e+117
-5.7968256e+117
-5.7723829e+117
-5.772855e+117
-5.7811419e+117
-5.7806054e+117
-5.858754e+117
-5.8688248e+117
-5.8693606e+117
-5.8592282e+117
-5.8804424e+117
-5.8808301e+117
-5.8485228e+117
-5.8392853e+117
-5.8397667e+117
-5.8489454e+117
-5.8906467e+117
-5.9014664e+117
-5.901705e+117
-5.8909737e+117
-5.8912603e+117
-5.9018529e+117
-5.9020168e+117
-5.8914433e+117
-5.9125977e+117
-5.9240655e+117
-5.924092e+117
-5.9127105e+117
-5.912782e+117
-5.9240902e+117
-5.9241092e+117
-5.9128465e+117
-5.9351146e+117
-5.93492e+117
-5.9473933e+117
-5.947232e+117
-5.9599992e+117
-5.9598931e+117
-5.972897e+117
-5.9728625e+117
-5.9348877e+117
-5.9472259e+117
-5.9473077e+117
-5.9349438e+117
-5.9729286e+117
-5.9730575e+117
-5.9599178e+117
-5.9600119e+117
-5.999806e+117
-5.9861467e+117
-5.9996342e+117
-5.9861962e+117
-5.9863216e+117
-6.0000128e+117
-6.0002334e+117
-5.9864838e+117
-6.0134616e+117
-6.0276261e+117
-6.0137765e+117
-6.0280549e+117
-6.0284651e+117
-6.0288192e+117
-6.0140874e+117
-6.0143677e+117
-5.9867021e+117
-6.0004757e+117
-6.0006773e+117
-5.9868979e+117
-5.9870727e+117
-5.9870445e+117
-6.0007725e+117
-6.0008008e+117
-6.0146417e+117
-6.029107e+117
-6.0293195e+117
-6.0148161e+117
-6.0149143e+117
-6.0148948e+117
-6.0293425e+117
-6.0293383e+117
-5.9351632e+117
-5.9474972e+117
-5.9353555e+117
-5.9476718e+117
-5.9603758e+117
-5.9602017e+117
-5.9732512e+117
-5.9734309e+117
-5.9479977e+117
-5.9355958e+117
-5.9478888e+117
-5.9357236e+117
-5.9735948e+117
-5.9605652e+117
-5.9606326e+117
-5.9736287e+117
-5.9360925e+117
-5.9483654e+117
-5.9481746e+117
-5.9362412e+117
-5.9606398e+117
-5.9734949e+117
-5.9607355e+117
-5.9735012e+117
-6.0006156e+117
-5.9868282e+117
-6.0005762e+117
-5.9868453e+117
-5.9358376e+117
-5.9358276e+117
-5.9479426e+117
-5.9479473e+117
-5.9358461e+117
-5.9359019e+117
-5.9480909e+117
-5.9479933e+117
-5.9605658e+117
-5.9735314e+117
-5.960676e+117
-5.9736432e+117
-5.9604999e+117
-5.9734536e+117
-5.9734274e+117
-5.9604886e+117
-5.9870481e+117
-5.986938e+117
-6.0007952e+117
-6.0007047e+117
-6.0148596e+117
-6.0293121e+117
-6.0149183e+117
-6.029337e+117
-6.0005744e+117
-5.9868557e+117
-6.0006306e+117
-5.9868065e+117
-6.0148097e+117
-6.0293021e+117
-6.029297e+117
-6.0147568e+117
-5.9855166e+117
-5.9988056e+117
-5.9989219e+117
-5.9856212e+117
-5.9856389e+117
-5.9856703e+117
-5.9989069e+117
-5.998902e+117
-6.0266338e+117
-6.012506e+117
-6.0265359e+117
-6.0125738e+117
-6.0125451e+117
-6.0266098e+117
-6.0125617e+117
-6.0265643e+117
-5.985627e+117
-5.9857412e+117
-5.9989303e+117
-5.9990277e+117
-6.0127124e+117
-6.0266491e+117
-6.0126121e+117
-6.02675e+117
-5.9994357e+117
-5.9858162e+117
-5.9991561e+117
-5.9861136e+117
-6.0128418e+117
-6.0269058e+117
-6.027143e+117
-6.0130543e+117
-5.947737e+117
-5.9358146e+117
-5.9477288e+117
-5.9357612e+117
-5.9599719e+117
-5.9599873e+117
-5.9725397e+117
-5.9725859e+117
-5.9477408e+117
-5.9357019e+117
-5.9476968e+117
-5.9356406e+117
-5.9726526e+117
-5.9600117e+117
-5.9600299e+117
-5.9726129e+117
-5.9478344e+117
-5.9356541e+117
-5.9355584e+117
-5.9477627e+117
-5.9601667e+117
-5.9727532e+117
-5.9601167e+117
-5.9726057e+117
-5.9729499e+117
-5.9602145e+117
-5.9601313e+117
-5.9727724e+117
-5.9352897e+117
-5.9477623e+117
-5.9354802e+117
-5.9475622e+117
-5.8613226e+117
-5.8608967e+117
-5.8799315e+117
-5.8795039e+117
-5.8792491e+117
-5.8790241e+117
-5.8607674e+117
-5.860544e+117
-5.8326899e+117
-5.8238511e+117
-5.8231609e+117
-5.8320613e+117
-5.8153548e+117
-5.806499e+117
-5.8056924e+117
-5.8145927e+117
-5.8052045e+117
-5.805404e+117
-5.8143269e+117
-5.8141873e+117
-5.8318367e+117
-5.8228845e+117
-5.8227565e+117
-5.831673e+117
-5.8408041e+117
-5.8413121e+117
-5.8502274e+117
-5.8497751e+117
-5.8404023e+117
-5.8405852e+117
-5.8495762e+117
-5.8493834e+117
-5.8602361e+117
-5.8601595e+117
-5.8787796e+117
-5.8786386e+117
-5.8785395e+117
-5.8783153e+117
-5.8601621e+117
-5.8599029e+117
-5.831603e+117
-5.8227717e+117
-5.8227701e+117
-5.8315719e+117
-5.8142003e+117
-5.8051622e+117
-5.8052877e+117
-5.8142435e+117
-5.805682e+117
-5.8055477e+117
-5.8143804e+117
-5.81439e+117
-5.8316031e+117
-5.8228047e+117
-5.8227256e+117
-5.8314465e+117
-5.8402148e+117
-5.8402253e+117
-5.8491392e+117
-5.8491078e+117
-5.8399949e+117
-5.8402089e+117
-5.849082e+117
-5.8488425e+117
-5.9014095e+117
-5.8907869e+117
-5.9017414e+117
-5.8903746e+117
-5.9128198e+117
-5.9125849e+117
-5.9241463e+117
-5.9240081e+117
-5.9009382e+117
-5.8900667e+117
-5.9011503e+117
-5.8898447e+117
-5.9238842e+117
-5.9123906e+117
-5.9121948e+117
-5.9237395e+117
-5.9006491e+117
-5.8896846e+117
-5.9008205e+117
-5.8895204e+117
-5.9237054e+117
-5.9121256e+117
-5.9119645e+117
-5.9235765e+117
-5.9002726e+117
-5.8893574e+117
-5.9004841e+117
-5.8891446e+117
-5.9234616e+117
-5.9118224e+117
-5.9116108e+117
-5.9232631e+117
-5.7980266e+117
-5.7892866e+117
-5.7883666e+117
-5.7971513e+117
-5.7809873e+117
-5.7723745e+117
-5.7714248e+117
-5.7800234e+117
-5.771007e+117
-5.7711284e+117
-5.7797138e+117
-5.7795567e+117
-5.7968278e+117
-5.7880123e+117
-5.7878021e+117
-5.796596e+117
-5.7718141e+117
-5.7713755e+117
-5.7800174e+117
-5.7804349e+117
-5.7711595e+117
-5.7710653e+117
-5.7795348e+117
-5.779693e+117
-5.7965131e+117
-5.7877114e+117
-5.7879074e+117
-5.7966789e+117
-5.7970451e+117
-5.7882891e+117
-5.7886498e+117
-5.7972976e+117
-5.7641455e+117
-5.7556762e+117
-5.7547784e+117
-5.7631883e+117
-5.7476995e+117
-5.7395487e+117
-5.7388231e+117
-5.7468511e+117
-5.738314e+117
-5.7386445e+117
-5.7466241e+117
-5.7463908e+117
-5.7628865e+117
-5.754475e+117
-5.7542976e+117
-5.7627538e+117
-5.7318466e+117
-5.7239214e+117
-5.7233761e+117
-5.7311765e+117
-5.7163351e+117
-5.7082819e+117
-5.7080192e+117
-5.7158834e+117
-5.7081667e+117
-5.7083861e+117
-5.716071e+117
-5.7157528e+117
-5.7310484e+117
-5.7233379e+117
-5.7229544e+117
-5.7306588e+117
-5.7069915e+117
-5.7073288e+117
-5.7149377e+117
-5.7145285e+117
-5.7300696e+117
-5.7222275e+117
-5.7218226e+117
-5.7297094e+117
-5.7628409e+117
-5.754269e+117
-5.7541883e+117
-5.7628508e+117
-5.7461492e+117
-5.737865e+117
-5.7375812e+117
-5.7459757e+117
-5.7380984e+117
-5.7376555e+117
-5.7460379e+117
-5.7464827e+117
-5.7629798e+117
-5.7542625e+117
-5.7547009e+117
-5.7634269e+117
-5.8528192e+117
-5.8518322e+117
-5.8660677e+117
-5.8649276e+117
-5.8642264e+117
-5.8638574e+117
-5.8511452e+117
-5.8507118e+117
-5.8089208e+117
-5.7875983e+117
-5.8078666e+117
-5.7869752e+117
-5.8342717e+117
-5.833069e+117
-5.8504925e+117
-5.8504926e+117
-5.8636817e+117
-5.8636848e+117
-5.8639806e+117
-5.8643096e+117
-5.8507033e+117
-5.8509893e+117
-5.7876189e+117
-5.7871153e+117
-5.8077606e+117
-5.8083277e+117
-5.8328e+117
-5.8325321e+117
-5.877746e+117
-5.8893958e+117
-5.8882632e+117
-5.876565e+117
-5.8758584e+117
-5.8875083e+117
-5.8871338e+117
-5.8754907e+117
-5.9126007e+117
-5.9014587e+117
-5.9137034e+117
-5.9003356e+117
-5.9115203e+117
-5.8996014e+117
-5.9118944e+117
-5.8992226e+117
-5.8753486e+117
-5.8870044e+117
-5.8869895e+117
-5.8753363e+117
-5.8755939e+117
-5.8871571e+117
-5.8874385e+117
-5.8758927e+117
-5.9112947e+117
-5.8990833e+117
-5.9113802e+117
-5.8990278e+117
-5.8994825e+117
-5.8992009e+117
-5.9114801e+117
-5.9117452e+117
-5.7674384e+117
-5.7476293e+117
-5.7476629e+117
-5.7671848e+117
-5.7675488e+117
-5.7482168e+117
-5.7488262e+117
-5.7680792e+117
-5.8544436e+117
-5.8549095e+117
-5.8681302e+117
-5.8685709e+117
-5.8692313e+117
-5.8699031e+117
-5.8555805e+117
-5.8561858e+117
-5.8166685e+117
-5.798354e+117
-5.7994988e+117
-5.8177467e+117
-5.8339267e+117
-5.8334248e+117
-5.8427705e+117
-5.8433396e+117
-5.8328392e+117
-5.8322591e+117
-5.8416004e+117
-5.8421365e+117
-5.8530483e+117
-5.8534208e+117
-5.8669889e+117
-5.8672967e+117
-5.8676175e+117
-5.8679099e+117
-5.8538336e+117
-5.8541636e+117
-5.79695e+117
-5.7960853e+117
-5.8145552e+117
-5.8153886e+117
-5.831847e+117
-5.8312857e+117
-5.8408082e+117
-5.8412469e+117
-5.8399678e+117
-5.8303768e+117
-5.8308008e+117
-5.8403557e+117
-5.8789197e+117
-5.8904521e+117
-5.8906506e+117
-5.8791675e+117
-5.879383e+117
-5.8908276e+117
-5.891048e+117
-5.8796245e+117
-5.9139616e+117
-5.9020879e+117
-5.9138416e+117
-5.9022473e+117
-5.9142887e+117
-5.9024058e+117
-5.914105e+117
-5.9026014e+117
-5.7609115e+117
-5.7606037e+117
-5.7778655e+117
-5.778575e+117
-5.7628531e+117
-5.7620108e+117
-5.7799273e+117
-5.7810483e+117
-5.8799044e+117
-5.8913553e+117
-5.8917556e+117
-5.8803243e+117
-5.8808992e+117
-5.8922887e+117
-5.8929396e+117
-5.8815623e+117
-5.9149388e+117
-5.902902e+117
-5.9145827e+117
-5.9032846e+117
-5.9044189e+117
-5.9037966e+117
-5.9154363e+117
-5.9160268e+117
-5.8567754e+117
-5.8574761e+117
-5.8705321e+117
-5.8712506e+117
-5.8720505e+117
-5.8729525e+117
-5.8582926e+117
-5.8591826e+117
-5.8013036e+117
-5.8002338e+117
-5.8186071e+117
-5.8198681e+117
-5.8368012e+117
-5.8358225e+117
-5.845368e+117
-5.8463104e+117
-5.8350239e+117
-5.8343511e+117
-5.8438551e+117
-5.8445657e+117
-5.8822545e+117
-5.8829667e+117
-5.8943016e+117
-5.8936241e+117
-5.9050803e+117
-5.9166722e+117
-5.9172765e+117
-5.9057224e+117
-5.8957945e+117
-5.8836846e+117
-5.894984e+117
-5.8845409e+117
-5.9063821e+117
-5.9178905e+117
-5.9071024e+117
-5.9185185e+117
-5.885431e+117
-5.8863281e+117
-5.8966235e+117
-5.8974107e+117
-5.9084733e+117
-5.9191311e+117
-5.919686e+117
-5.9078119e+117
-5.8870716e+117
-5.8876723e+117
-5.8985907e+117
-5.898056e+117
-5.909016e+117
-5.9095225e+117
-5.9201861e+117
-5.9206801e+117
-5.8601009e+117
-5.861062e+117
-5.8738241e+117
-5.8747458e+117
-5.8755709e+117
-5.8762475e+117
-5.8619678e+117
-5.862693e+117
-5.8051635e+117
-5.8029754e+117
-5.8216276e+117
-5.8237601e+117
-5.8406845e+117
-5.839687e+117
-5.8491565e+117
-5.8500068e+117
-5.8387424e+117
-5.8376677e+117
-5.8472073e+117
-5.8482409e+117
-5.7817256e+117
-5.763125e+117
-5.7634724e+117
-5.7823629e+117
-5.7672506e+117
-5.7650193e+117
-5.7839214e+117
-5.7861641e+117
-5.993245e+117
-5.9793819e+117
-5.9928635e+117
-5.9798062e+117
-6.006737e+117
-6.0208576e+117
-6.0210196e+117
-6.0069804e+117
-5.9804764e+117
-5.9938277e+117
-5.9801284e+117
-5.9935183e+117
-6.0073033e+117
-6.0213634e+117
-6.0076253e+117
-6.0217084e+117
-5.9308094e+117
-5.9426924e+117
-5.9431246e+117
-5.9312936e+117
-5.9322309e+117
-5.9317632e+117
-5.9435603e+117
-5.9439875e+117
-5.9680111e+117
-5.9550225e+117
-5.9676862e+117
-5.9553951e+117
-5.9561664e+117
-5.9686858e+117
-5.9557916e+117
-5.9683622e+117
-5.9412449e+117
-5.9286073e+117
-5.9407244e+117
-5.9291728e+117
-5.9532591e+117
-5.9661112e+117
-5.9665526e+117
-5.9537169e+117
-5.9422596e+117
-5.9297376e+117
-5.9417589e+117
-5.9302941e+117
-5.9541863e+117
-5.9669461e+117
-5.9546381e+117
-5.9673465e+117
-5.9807882e+117
-5.9941326e+117
-5.9944131e+117
-5.9810636e+117
-6.0220092e+117
-6.0079345e+117
-6.0081804e+117
-6.0222286e+117
-5.9813768e+117
-5.9816495e+117
-5.9946772e+117
-5.9948912e+117
-6.0224752e+117
-6.0086044e+117
-6.0226109e+117
-6.0084329e+117
-5.9265989e+117
-5.9387844e+117
-5.9269185e+117
-5.9390923e+117
-5.951675e+117
-5.9645766e+117
-5.9513793e+117
-5.9642946e+117
-5.927989e+117
-5.9274108e+117
-5.9395733e+117
-5.9401429e+117
-5.9527058e+117
-5.9655858e+117
-5.9521463e+117
-5.9650326e+117
-5.9776223e+117
-5.9911553e+117
-5.9778841e+117
-5.9914188e+117
-6.0053609e+117
-6.0195656e+117
-6.005065e+117
-6.0192272e+117
-5.9783276e+117
-5.9918577e+117
-5.9788645e+117
-5.992378e+117
-6.0063126e+117
-6.0205052e+117
-6.0058114e+117
-6.020025e+117
-5.9889645e+117
-5.9760373e+117
-5.9892582e+117
-5.9755317e+117
-6.0167904e+117
-6.0026634e+117
-6.0024532e+117
-6.0166537e+117
-5.9888501e+117
-5.9752736e+117
-5.9888261e+117
-5.9752174e+117
-6.0166816e+117
-6.0024186e+117
-6.0024714e+117
-6.0167735e+117
-5.9258688e+117
-5.9248529e+117
-5.9381122e+117
-5.9371862e+117
-5.9504397e+117
-5.9496044e+117
-5.9632718e+117
-5.9625711e+117
-5.9241847e+117
-5.9365884e+117
-5.9362532e+117
-5.9238222e+117
-5.9621847e+117
-5.9620465e+117
-5.9491133e+117
-5.948853e+117
-5.9236716e+117
-5.9361131e+117
-5.9235891e+117
-5.9360487e+117
-5.9486485e+117
-5.9487323e+117
-5.9619607e+117
-5.9618824e+117
-5.9239981e+117
-5.9364453e+117
-5.9237529e+117
-5.9362197e+117
-5.9620784e+117
-5.9488326e+117
-5.9490795e+117
-5.9623584e+117
-5.9889065e+117
-5.9751527e+117
-5.9888416e+117
-5.9751167e+117
-6.0170343e+117
-6.0025998e+117
-6.0027299e+117
-6.0172693e+117
-5.9756057e+117
-5.9894019e+117
-5.975333e+117
-5.9891531e+117
-6.0176455e+117
-6.0030475e+117
-6.0033444e+117
-6.0179933e+117
-5.9770407e+117
-5.9771146e+117
-5.99058e+117
-5.9906619e+117
-6.0046145e+117
-6.0188101e+117
-6.0045434e+117
-6.0187492e+117
-5.9772543e+117
-5.9908055e+117
-5.9909905e+117
-5.9774396e+117
-6.0189314e+117
-6.0047351e+117
-6.0188895e+117
-6.0048231e+117
-5.9259164e+117
-5.9259958e+117
-5.9381521e+117
-5.9382143e+117
-5.9508406e+117
-5.9637764e+117
-5.9507869e+117
-5.9637186e+117
-5.9261413e+117
-5.9383468e+117
-5.9385146e+117
-5.9263097e+117
-5.9640689e+117
-5.9509709e+117
-5.963901e+117
-5.9511239e+117
-5.6917904e+117
-5.7087812e+117
-5.7085635e+117
-5.6914851e+117
-5.6923809e+117
-5.7096345e+117
-5.7116602e+117
-5.6936506e+117
-5.729292e+117
-5.7273755e+117
-5.748055e+117
-5.7459121e+117
-5.725891e+117
-5.7261444e+117
-5.7443632e+117
-5.7443477e+117
-5.7110049e+117
-5.7289811e+117
-5.7093186e+117
-5.710226e+117
-5.7298013e+117
-5.7436111e+117
-5.7272342e+117
-5.7268587e+117
-5.7433922e+117
-5.7112579e+117
-5.7108537e+117
-5.7270645e+117
-5.7272215e+117
-5.7441908e+117
-5.7446412e+117
-5.7085553e+117
-5.7085395e+117
-5.728494e+117
-5.7283675e+117
-5.7266384e+117
-5.7062247e+117
-5.7077982e+117
-5.7280104e+117
-5.8113432e+117
-5.7888834e+117
-5.7872949e+117
-5.8094749e+117
-5.7676962e+117
-5.7466356e+117
-5.7459328e+117
-5.7664048e+117
-5.7472733e+117
-5.7461885e+117
-5.7664108e+117
-5.7672615e+117
-5.8092967e+117
-5.7871715e+117
-5.7877303e+117
-5.8095419e+117
-5.9912733e+117
-5.9785078e+117
-5.978093e+117
-5.990963e+117
-6.0038407e+117
-6.0173096e+117
-6.0041426e+117
-6.0176564e+117
-6.0170612e+117
-6.0036798e+117
-6.003435e+117
-6.0170744e+117
-5.9774822e+117
-5.9907556e+117
-5.9778078e+117
-5.9904035e+117
-5.9413338e+117
-5.9302564e+117
-5.9420088e+117
-5.9294163e+117
-5.9538211e+117
-5.9532317e+117
-5.9661565e+117
-5.9656299e+117
-5.9405092e+117
-5.9288545e+117
-5.9408469e+117
-5.9284599e+117
-5.9652942e+117
-5.9528335e+117
-5.9525165e+117
-5.9649825e+117
-5.9402871e+117
-5.9281736e+117
-5.9276435e+117
-5.9397761e+117
-5.951793e+117
-5.9642149e+117
-5.9522552e+117
-5.9646569e+117
-5.9637232e+117
-5.9515089e+117
-5.951055e+117
-5.9638935e+117
-5.9266546e+117
-5.9394452e+117
-5.9272549e+117
-5.9388534e+117
-5.9771358e+117
-5.9766799e+117
-5.9901077e+117
-5.9896977e+117
-6.0032125e+117
-6.0028478e+117
-6.016973e+117
-6.0167204e+117
-5.9893368e+117
-5.9763328e+117
-5.9894113e+117
-5.9762568e+117
-6.0166587e+117
-6.0026817e+117
-6.0026717e+117
-6.0167263e+117
-5.8574656e+117
-5.8562723e+117
-5.8711812e+117
-5.8698644e+117
-5.8692182e+117
-5.8688345e+117
-5.8555387e+117
-5.8551496e+117
-5.8381824e+117
-5.8367292e+117
-5.8549457e+117
-5.8546732e+117
-5.8684965e+117
-5.8681013e+117
-5.8678185e+117
-5.8671929e+117
-5.8543362e+117
-5.8537317e+117
-5.8363521e+117
-5.8357972e+117
-5.8934215e+117
-5.8830464e+117
-5.8946696e+117
-5.8816949e+117
-5.9065195e+117
-5.9054021e+117
-5.9184579e+117
-5.9174563e+117
-5.8922084e+117
-5.8810228e+117
-5.8926488e+117
-5.8806002e+117
-5.9168076e+117
-5.9046764e+117
-5.9042306e+117
-5.916374e+117
-5.891387e+117
-5.8801953e+117
-5.8918773e+117
-5.8797269e+117
-5.9160795e+117
-5.9038951e+117
-5.9033693e+117
-5.9155368e+117
-5.8903241e+117
-5.8794439e+117
-5.8909588e+117
-5.8788022e+117
-5.9151319e+117
-5.9029328e+117
-5.9023233e+117
-5.9145331e+117
-6.2881375e+117
-6.2603797e+117
-6.287762e+117
-6.2606441e+117
-6.317454e+117
-6.3176816e+117
-6.2615867e+117
-6.2890404e+117
-6.2610448e+117
-6.2884807e+117
-6.3181708e+117
-6.3188367e+117
-6.1714387e+117
-6.1917514e+117
-6.1922255e+117
-6.1718225e+117
-6.1720446e+117
-6.1719508e+117
-6.1923562e+117
-6.192457e+117
-6.2370548e+117
-6.2134243e+117
-6.2367646e+117
-6.2137725e+117
-6.2143152e+117
-6.2379012e+117
-6.2141136e+117
-6.2375666e+117
-6.1906698e+117
-6.1701903e+117
-6.1903911e+117
-6.1703794e+117
-6.2119654e+117
-6.2352104e+117
-6.2353499e+117
-6.2121546e+117
-6.1913371e+117
-6.1706635e+117
-6.1909308e+117
-6.1710503e+117
-6.2125365e+117
-6.2358031e+117
-6.2129462e+117
-6.236285e+117
-6.2620383e+117
-6.2895772e+117
-6.2900719e+117
-6.2624029e+117
-6.3195143e+117
-6.3201176e+117
-6.2629805e+117
-6.2634227e+117
-6.2907305e+117
-6.2912924e+117
-6.3216052e+117
-6.3208595e+117
-6.1683519e+117
-6.1884799e+117
-6.1687976e+117
-6.1889538e+117
-6.2104644e+117
-6.2336122e+117
-6.2099351e+117
-6.233016e+117
-6.1693341e+117
-6.189518e+117
-6.1698441e+117
-6.190027e+117
-6.2116017e+117
-6.2348483e+117
-6.2110701e+117
-6.2342688e+117
-6.2579856e+117
-6.2852277e+117
-6.2586409e+117
-6.285935e+117
-6.3155198e+117
-6.3148156e+117
-6.2593441e+117
-6.2599588e+117
-6.2866804e+117
-6.2873251e+117
-6.317036e+117
-6.3163065e+117
-6.1654783e+117
-6.1649756e+117
-6.185293e+117
-6.1857208e+117
-6.1673506e+117
-6.1675319e+117
-6.1873565e+117
-6.1875598e+117
-6.2060143e+117
-6.2054752e+117
-6.2288182e+117
-6.2294647e+117
-6.2089321e+117
-6.2319406e+117
-6.2087301e+117
-6.2317474e+117
-6.1677454e+117
-6.1878053e+117
-6.1881248e+117
-6.1679863e+117
-6.2324159e+117
-6.2091894e+117
-6.2321795e+117
-6.2094501e+117
-6.1638412e+117
-6.1840563e+117
-6.1847607e+117
-6.1644241e+117
-6.2042202e+117
-6.227433e+117
-6.2280509e+117
-6.2048245e+117
-6.1614207e+117
-6.1813518e+117
-6.1820819e+117
-6.1619702e+117
-6.1625438e+117
-6.1827052e+117
-6.1834895e+117
-6.1633009e+117
-6.2012287e+117
-6.2241311e+117
-6.2248097e+117
-6.2019083e+117
-6.2026957e+117
-6.2257017e+117
-6.2266517e+117
-6.2035375e+117
-6.2741181e+117
-6.2468147e+117
-6.2731987e+117
-6.2475777e+117
-6.3314099e+117
-6.3002299e+117
-6.3011076e+117
-6.332267e+117
-6.2761011e+117
-6.2485013e+117
-6.2750799e+117
-6.2495269e+117
-6.3332846e+117
-6.3021016e+117
-6.3033025e+117
-6.3346403e+117
-6.2779267e+117
-6.2503489e+117
-6.2769796e+117
-6.2510755e+117
-6.3356233e+117
-6.3042333e+117
-6.3051892e+117
-6.3366265e+117
-6.252633e+117
-6.2795706e+117
-6.2519065e+117
-6.27885e+117
-6.3377362e+117
-6.3062176e+117
-6.3071346e+117
-6.3388657e+117
-6.2566165e+117
-6.2568344e+117
-6.2837401e+117
-6.2840053e+117
-6.3134611e+117
-6.313183e+117
-6.2570872e+117
-6.2842754e+117
-6.2846076e+117
-6.257369e+117
-6.3137783e+117
-6.3142292e+117
-6.0337476e+117
-6.0484699e+117
-6.0341101e+117
-6.0488438e+117
-6.0639889e+117
-6.0796109e+117
-6.0636244e+117
-6.0792653e+117
-6.034572e+117
-6.0493017e+117
-6.0350218e+117
-6.0497278e+117
-6.0648655e+117
-6.080491e+117
-6.0644444e+117
-6.0800597e+117
-6.0957372e+117
-6.1128344e+117
-6.0960612e+117
-6.113164e+117
-6.1309375e+117
-6.1494242e+117
-6.1305609e+117
-6.1489949e+117
-6.0965078e+117
-6.1136191e+117
-6.0969487e+117
-6.1140693e+117
-6.1318857e+117
-6.1504314e+117
-6.1314255e+117
-6.1499432e+117
-6.0311325e+117
-6.0458556e+117
-6.0462479e+117
-6.0314393e+117
-6.0322135e+117
-6.0318506e+117
-6.0466773e+117
-6.0470296e+117
-6.0605523e+117
-6.0764257e+117
-6.0768214e+117
-6.0609329e+117
-6.0618044e+117
-6.0613941e+117
-6.0773038e+117
-6.0777634e+117
-6.030623e+117
-6.0450594e+117
-6.0451179e+117
-6.0305751e+117
-6.030655e+117
-6.0452404e+117
-6.0455169e+117
-6.0308374e+117
-6.0594943e+117
-6.0750964e+117
-6.0752167e+117
-6.0595764e+117
-6.0597953e+117
-6.0755103e+117
-6.0759998e+117
-6.060178e+117
-6.0906139e+117
-6.1075326e+117
-6.107886e+117
-6.0908221e+117
-6.0911761e+117
-6.1082854e+117
-6.1088174e+117
-6.0916997e+117
-6.1245325e+117
-6.1432719e+117
-6.1437083e+117
-6.1249076e+117
-6.1253885e+117
-6.1442482e+117
-6.1449231e+117
-6.1259835e+117
-6.0921465e+117
-6.1092949e+117
-6.1098296e+117
-6.0925835e+117
-6.0935651e+117
-6.0930924e+117
-6.1103466e+117
-6.1107694e+117
-6.1264932e+117
-6.1454703e+117
-6.1460014e+117
-6.1270006e+117
-6.1280357e+117
-6.1275628e+117
-6.1465837e+117
-6.1470794e+117
-6.0948873e+117
-6.0950485e+117
-6.1118737e+117
-6.1120692e+117
-6.1297693e+117
-6.1482112e+117
-6.1295704e+117
-6.1480322e+117
-6.0952481e+117
-6.1123104e+117
-6.1126124e+117
-6.0955127e+117
-6.1485741e+117
-6.1300137e+117
-6.1484205e+117
-6.1302072e+117
-6.0332607e+117
-6.0333252e+117
-6.0479358e+117
-6.0480144e+117
-6.063107e+117
-6.0786689e+117
-6.0630112e+117
-6.0785475e+117
-6.0333934e+117
-6.0480836e+117
-6.0481712e+117
-6.0334494e+117
-6.0790007e+117
-6.0632079e+117
-6.0788068e+117
-6.0633345e+117
-6.1147232e+117
-6.0972952e+117
-6.1144392e+117
-6.097551e+117
-6.1322435e+117
-6.1507599e+117
-6.150865e+117
-6.1324062e+117
-6.0979844e+117
-6.1150957e+117
-6.0977235e+117
-6.1148675e+117
-6.1326743e+117
-6.1511934e+117
-6.1329387e+117
-6.1515316e+117
-6.0501774e+117
-6.0353347e+117
-6.0500169e+117
-6.0354863e+117
-6.0651547e+117
-6.0807956e+117
-6.0809923e+117
-6.0653188e+117
-6.0508213e+117
-6.0358098e+117
-6.0504799e+117
-6.0361592e+117
-6.0655995e+117
-6.0812277e+117
-6.0659268e+117
-6.0815312e+117
-6.0368873e+117
-6.036983e+117
-6.0515817e+117
-6.0515189e+117
-6.0364535e+117
-6.0511082e+117
-6.0513355e+117
-6.0366728e+117
-6.0664198e+117
-6.0819937e+117
-6.0662084e+117
-6.0817958e+117
-6.0665912e+117
-6.0821611e+117
-6.0822218e+117
-6.066645e+117
-6.0982348e+117
-6.1153592e+117
-6.1155857e+117
-6.0984357e+117
-6.0986019e+117
-6.1157551e+117
-6.0986653e+117
-6.1158216e+117
-6.1518751e+117
-6.1521691e+117
-6.133237e+117
-6.1334801e+117
-6.1337394e+117
-6.1336639e+117
-6.1523455e+117
-6.1524395e+117
-6.178746e+117
-6.1581657e+117
-6.1777646e+117
-6.1589741e+117
-6.1598839e+117
-6.1797106e+117
-6.1807117e+117
-6.1608379e+117
-6.1974169e+117
-6.2200716e+117
-6.1983919e+117
-6.2210999e+117
-6.2222259e+117
-6.2232986e+117
-6.1994243e+117
-6.2004707e+117
-6.1558333e+117
-6.1749063e+117
-6.1563203e+117
-6.1755795e+117
-6.1948205e+117
-6.2171929e+117
-6.1941418e+117
-6.2164694e+117
-6.1770024e+117
-6.1568175e+117
-6.1762197e+117
-6.1574804e+117
-6.1956013e+117
-6.2180248e+117
-6.2190197e+117
-6.1964982e+117
-6.2387414e+117
-6.2647439e+117
-6.2656363e+117
-6.2395084e+117
-6.2403619e+117
-6.2664904e+117
-6.2414173e+117
-6.2674839e+117
-6.3222475e+117
-6.322975e+117
-6.2914501e+117
-6.29224e+117
-6.294251e+117
-6.2931071e+117
-6.3238482e+117
-6.3251424e+117
-6.2699251e+117
-6.2425065e+117
-6.2686206e+117
-6.243631e+117
-6.3262571e+117
-6.2953699e+117
-6.2966298e+117
-6.32752e+117
-6.2722719e+117
-6.2447895e+117
-6.2711098e+117
-6.2459383e+117
-6.3288934e+117
-6.297925e+117
-6.2992756e+117
-6.3304178e+117
-6.0883678e+117
-6.0883036e+117
-6.1045117e+117
-6.1046207e+117
-6.1207179e+117
-6.1385218e+117
-6.1388343e+117
-6.1208957e+117
-6.1052014e+117
-6.0883933e+117
-6.1048145e+117
-6.0887122e+117
-6.1212014e+117
-6.1392272e+117
-6.139749e+117
-6.1216328e+117
-6.0309212e+117
-6.030577e+117
-6.0447244e+117
-6.0444409e+117
-6.0583042e+117
-6.0732964e+117
-6.0585517e+117
-6.0734773e+117
-6.0442915e+117
-6.0303051e+117
-6.044222e+117
-6.0303759e+117
-6.0581954e+117
-6.0732749e+117
-6.0735068e+117
-6.0583346e+117
-6.0445539e+117
-6.0304492e+117
-6.0444883e+117
-6.0303363e+117
-6.0303847e+117
-6.0447007e+117
-6.0449154e+117
-6.0305226e+117
-6.0585864e+117
-6.0738281e+117
-6.0587195e+117
-6.0740455e+117
-6.0744054e+117
-6.0748469e+117
-6.0589819e+117
-6.0593038e+117
-6.1060307e+117
-6.089034e+117
-6.1055685e+117
-6.0893417e+117
-6.0897994e+117
-6.106581e+117
-6.1071525e+117
-6.0903063e+117
-6.1221513e+117
-6.1404044e+117
-6.1227039e+117
-6.1410967e+117
-6.1419099e+117
-6.1427454e+117
-6.1233914e+117
-6.1240814e+117
-5.9948998e+117
-5.981764e+117
-5.9949482e+117
-5.9817306e+117
-6.0085977e+117
-6.0225363e+117
-6.0223035e+117
-6.0084403e+117
-5.9819382e+117
-5.995025e+117
-5.9817878e+117
-5.9948905e+117
-6.0084588e+117
-6.022342e+117
-6.0086027e+117
-6.0225325e+117
-5.9335881e+117
-5.9450914e+117
-5.9454282e+117
-5.9338625e+117
-5.9345264e+117
-5.9341682e+117
-5.9458138e+117
-5.9462612e+117
-5.9697632e+117
-5.9570339e+117
-5.969372e+117
-5.9573798e+117
-5.9583971e+117
-5.9708781e+117
-5.9578561e+117
-5.9702648e+117
-5.9444926e+117
-5.9326483e+117
-5.9443221e+117
-5.932895e+117
-5.9564111e+117
-5.9688443e+117
-5.9688162e+117
-5.9564592e+117
-5.9448232e+117
-5.9330662e+117
-5.9446367e+117
-5.9332574e+117
-5.9566116e+117
-5.968942e+117
-5.9567573e+117
-5.9690944e+117
-5.982205e+117
-5.9953219e+117
-5.9957174e+117
-5.9825905e+117
-5.9831547e+117
-5.9963476e+117
-5.9838255e+117
-5.9970719e+117
-6.0229146e+117
-6.023403e+117
-6.0089492e+117
-6.0093805e+117
-6.0108183e+117
-6.0100476e+117
-6.0240852e+117
-6.0248817e+117
-5.8896238e+117
-5.8897709e+117
-5.9004525e+117
-5.9006016e+117
-5.911435e+117
-5.9222159e+117
-5.9224472e+117
-5.9112544e+117
-5.8899332e+117
-5.8899597e+117
-5.9008389e+117
-5.9007503e+117
-5.911595e+117
-5.9117697e+117
-5.9226742e+117
-5.9229489e+117
-5.8995475e+117
-5.8881225e+117
-5.899084e+117
-5.8886174e+117
-5.9100429e+117
-5.9211486e+117
-5.9214535e+117
-5.9104054e+117
-5.9002771e+117
-5.8891002e+117
-5.8999258e+117
-5.8894675e+117
-5.9106917e+117
-5.9216604e+117
-5.9109781e+117
-5.921861e+117
-5.86326e+117
-5.8638901e+117
-5.8766882e+117
-5.8772263e+117
-5.877821e+117
-5.8782362e+117
-5.8645874e+117
-5.8650278e+117
-5.8257096e+117
-5.8422317e+117
-5.8413829e+117
-5.850633e+117
-5.8513959e+117
-5.8073077e+117
-5.8088766e+117
-5.8270003e+117
-5.8436144e+117
-5.842984e+117
-5.8521335e+117
-5.8526784e+117
-5.8651646e+117
-5.8653244e+117
-5.8783483e+117
-5.8784967e+117
-5.8786754e+117
-5.8786392e+117
-5.8654839e+117
-5.8653458e+117
-5.8278676e+117
-5.8098547e+117
-5.8100089e+117
-5.8279691e+117
-5.8438141e+117
-5.8440917e+117
-5.853143e+117
-5.8529253e+117
-5.84402e+117
-5.8438339e+117
-5.8528604e+117
-5.853031e+117
-5.7731032e+117
-5.7729634e+117
-5.7913504e+117
-5.7915851e+117
-5.7717015e+117
-5.7696793e+117
-5.7884756e+117
-5.790258e+117
-5.8648287e+117
-5.8649345e+117
-5.8783269e+117
-5.8784528e+117
-5.8787517e+117
-5.8790255e+117
-5.8651613e+117
-5.8653195e+117
-5.8270245e+117
-5.8086113e+117
-5.8088297e+117
-5.8270725e+117
-5.8431083e+117
-5.8431058e+117
-5.852404e+117
-5.8525087e+117
-5.8430053e+117
-5.8429962e+117
-5.8522031e+117
-5.8522385e+117
-5.8649905e+117
-5.8649033e+117
-5.878385e+117
-5.8782846e+117
-5.8783573e+117
-5.8784024e+117
-5.8649815e+117
-5.8649707e+117
-5.8275359e+117
-5.8094237e+117
-5.8088867e+117
-5.8271091e+117
-5.8431447e+117
-5.843216e+117
-5.8524177e+117
-5.8523671e+117
-5.8431877e+117
-5.8434091e+117
-5.852537e+117
-5.8523636e+117
-5.8898338e+117
-5.8897416e+117
-5.900842e+117
-5.9008535e+117
-5.9119605e+117
-5.912056e+117
-5.92324e+117
-5.9234309e+117
-5.9010313e+117
-5.8897671e+117
-5.9008958e+117
-5.8898557e+117
-5.9236169e+117
-5.9121792e+117
-5.9123506e+117
-5.9238138e+117
-5.7910717e+117
-5.7724565e+117
-5.7717474e+117
-5.7902914e+117
-5.772573e+117
-5.771811e+117
-5.7899421e+117
-5.790481e+117
-5.9013473e+117
-5.889915e+117
-5.9011702e+117
-5.8900607e+117
-5.9240493e+117
-5.9125435e+117
-5.9127498e+117
-5.9242713e+117
-5.9019039e+117
-5.8903284e+117
-5.9015923e+117
-5.890648e+117
-5.9245178e+117
-5.9129896e+117
-5.9132585e+117
-5.9247287e+117
-5.9481673e+117
-5.9359052e+117
-5.9479305e+117
-5.9361359e+117
-5.9603678e+117
-5.9731054e+117
-5.9733315e+117
-5.9605949e+117
-5.9365375e+117
-5.9485004e+117
-5.9363696e+117
-5.9483743e+117
-5.9607801e+117
-5.9734916e+117
-5.9608551e+117
-5.9735218e+117
-5.9983689e+117
-5.9844822e+117
-5.9977697e+117
-5.9850395e+117
-6.0255924e+117
-6.0115364e+117
-6.0120874e+117
-6.0261323e+117
-5.9859354e+117
-5.999272e+117
-5.9855182e+117
-5.9988231e+117
-6.0266851e+117
-6.0125825e+117
-6.013076e+117
-6.0271948e+117
-5.947051e+117
-5.9348854e+117
-5.9467031e+117
-5.9351555e+117
-5.9589271e+117
-5.9593484e+117
-5.9714783e+117
-5.9719695e+117
-5.9476624e+117
-5.9354057e+117
-5.9473591e+117
-5.9356493e+117
-5.972407e+117
-5.9597276e+117
-5.9600775e+117
-5.9728001e+117
-5.9998876e+117
-5.9862559e+117
-5.9996367e+117
-5.9864713e+117
-6.0275967e+117
-6.0134737e+117
-6.0137167e+117
-6.0278282e+117
-5.9866026e+117
-5.999941e+117
-5.986617e+117
-6.0000042e+117
-6.0279614e+117
-6.0138397e+117
-6.0137443e+117
-6.0278451e+117
-5.6961156e+117
-5.6945718e+117
-5.7129326e+117
-5.7148882e+117
-5.7336041e+117
-5.731421e+117
-5.7526223e+117
-5.7504461e+117
-5.6992628e+117
-5.6981302e+117
-5.7166627e+117
-5.7168854e+117
-5.7351898e+117
-5.7351907e+117
-5.7540388e+117
-5.7540991e+117
-5.7024767e+117
-5.7000766e+117
-5.7172051e+117
-5.7194132e+117
-5.6994625e+117
-5.6994624e+117
-5.7165421e+117
-5.7163364e+117
-5.7341901e+117
-5.7345966e+117
-5.7533824e+117
-5.7527986e+117
-5.7532663e+117
-5.7349473e+117
-5.7367317e+117
-5.7544927e+117
-5.2807002e+117
-5.4968449e+117
-5.4877178e+117
-5.2864879e+117
-5.7127006e+117
-5.7000696e+117
-5.9172768e+117
-5.9353117e+117
-5.5047409e+117
-5.5023285e+117
-5.2936722e+117
-5.2970187e+117
-5.7218388e+117
-5.7196876e+117
-5.9426447e+117
-5.9429207e+117
-6.1184142e+117
-6.1191375e+117
-6.135864e+117
-6.1365556e+117
-6.1373048e+117
-6.1380794e+117
-6.1198809e+117
-6.1204128e+117
-6.0882034e+117
-6.103892e+117
-6.0877721e+117
-6.1042794e+117
-6.0871826e+117
-6.0866349e+117
-6.1024682e+117
-6.1031928e+117
-6.0293128e+117
-6.0293955e+117
-6.0425578e+117
-6.0427134e+117
-6.0558033e+117
-6.0559869e+117
-6.0701135e+117
-6.070349e+117
-6.0296418e+117
-6.0430384e+117
-6.0435128e+117
-6.0300345e+117
-6.0708341e+117
-6.0715183e+117
-6.0564164e+117
-6.0569844e+117
-6.1001748e+117
-6.0844963e+117
-6.0848127e+117
-6.1006168e+117
-6.1165079e+117
-6.1340116e+117
-6.1160513e+117
-6.1335524e+117
-6.1352751e+117
-6.1171142e+117
-6.1177639e+117
-6.1345848e+117
-6.1011686e+117
-6.0853368e+117
-6.0860328e+117
-6.1017974e+117
-6.0303668e+117
-6.0439162e+117
-6.0306003e+117
-6.0442324e+117
-6.0577741e+117
-6.0574427e+117
-6.0720454e+117
-6.072463e+117
-6.0310278e+117
-6.0447735e+117
-6.0308505e+117
-6.0445553e+117
-6.0729572e+117
-6.0581984e+117
-6.0585182e+117
-6.0733728e+117
-6.0829028e+117
-6.0985173e+117
-6.0828208e+117
-6.0985566e+117
-6.1143311e+117
-6.1142733e+117
-6.131792e+117
-6.1316927e+117
-6.0414753e+117
-6.0279615e+117
-6.0411799e+117
-6.0282033e+117
-6.0543058e+117
-6.0685831e+117
-6.0687956e+117
-6.0545805e+117
-6.04229e+117
-6.0286085e+117
-6.0418647e+117
-6.0290602e+117
-6.0550339e+117
-6.0692597e+117
-6.0698063e+117
-6.0555117e+117
-6.0987879e+117
-6.0829577e+117
-6.0985817e+117
-6.0831333e+117
-6.1318108e+117
-6.1143829e+117
-6.1145621e+117
-6.1319956e+117
-6.0997254e+117
-6.0835927e+117
-6.0992427e+117
-6.0841281e+117
-6.1324785e+117
-6.1150323e+117
-6.1155677e+117
-6.1330462e+117
-6.2314297e+117
-6.2567295e+117
-6.2565703e+117
-6.2310614e+117
-6.2309528e+117
-6.230921e+117
-6.256391e+117
-6.2563463e+117
-6.3118835e+117
-6.2825737e+117
-6.3123019e+117
-6.2822639e+117
-6.2823108e+117
-6.311885e+117
-6.2822099e+117
-6.3121857e+117
-6.1682572e+117
-6.1495961e+117
-6.1685103e+117
-6.1492215e+117
-6.1875396e+117
-6.2095563e+117
-6.2091045e+117
-6.1871696e+117
-6.1677431e+117
-6.1489106e+117
-6.1679377e+117
-6.1487855e+117
-6.1870136e+117
-6.2090165e+117
-6.1869251e+117
-6.2090349e+117
-6.1488865e+117
-6.16785e+117
-6.1681372e+117
-6.1490874e+117
-6.1501559e+117
-6.1495617e+117
-6.1686043e+117
-6.169154e+117
-6.2091886e+117
-6.187042e+117
-6.1872676e+117
-6.2094114e+117
-6.1883775e+117
-6.2099228e+117
-6.1877522e+117
-6.2105963e+117
-6.2569947e+117
-6.2311235e+117
-6.2565644e+117
-6.2313816e+117
-6.2825823e+117
-6.3125071e+117
-6.2829892e+117
-6.3129782e+117
-6.232623e+117
-6.2582192e+117
-6.2319221e+117
-6.2575778e+117
-6.3137334e+117
-6.2836718e+117
-6.2844524e+117
-6.3146666e+117
-6.2332174e+117
-6.2588092e+117
-6.2593829e+117
-6.2337693e+117
-6.3152065e+117
-6.3155939e+117
-6.2850163e+117
-6.2854163e+117
-6.2344197e+117
-6.2349885e+117
-6.2605048e+117
-6.2598404e+117
-6.2857803e+117
-6.2866747e+117
-6.3159943e+117
-6.3170032e+117
-6.1725217e+117
-6.1528473e+117
-6.1718242e+117
-6.1535251e+117
-6.1911024e+117
-6.2133869e+117
-6.2139431e+117
-6.1916833e+117
-6.1741242e+117
-6.1542422e+117
-6.1731996e+117
-6.1551655e+117
-6.1923907e+117
-6.2146968e+117
-6.1933448e+117
-6.2156425e+117
-6.1506712e+117
-6.1511331e+117
-6.1696905e+117
-6.1702388e+117
-6.1894597e+117
-6.2117196e+117
-6.1889346e+117
-6.2111699e+117
-6.2124092e+117
-6.1900793e+117
-6.1906514e+117
-6.2129373e+117
-6.1707899e+117
-6.1516596e+117
-6.1523245e+117
-6.1713198e+117
-6.2620521e+117
-6.2354897e+117
-6.2611579e+117
-6.2361139e+117
-6.3178838e+117
-6.2874939e+117
-6.2884195e+117
-6.3188872e+117
-6.2379163e+117
-6.2639127e+117
-6.2369257e+117
-6.262953e+117
-6.3200446e+117
-6.2894632e+117
-6.2906053e+117
-6.3213802e+117
-5.5084105e+117
-5.5078599e+117
-5.3019663e+117
-5.3043994e+117
-5.955204e+117
-5.9667744e+117
-5.9545424e+117
-5.9661689e+117
-6.0149772e+117
-6.0022084e+117
-6.0017825e+117
-6.0153045e+117
-5.9778973e+117
-5.978453e+117
-5.9901422e+117
-5.9906243e+117
-6.0157161e+117
-6.0031011e+117
-6.0161913e+117
-6.0026281e+117
-5.9787736e+117
-5.9909564e+117
-5.991052e+117
-5.9787564e+117
-5.9788647e+117
-5.9787981e+117
-5.9911075e+117
-5.9912126e+117
-6.0164614e+117
-6.0033773e+117
-6.0164362e+117
-6.0034307e+117
-6.0037572e+117
-6.0169747e+117
-6.0035668e+117
-6.0166582e+117
-5.9323378e+117
-5.9435861e+117
-5.9431334e+117
-5.9317061e+117
-5.9307828e+117
-5.9312386e+117
-5.9427748e+117
-5.9424265e+117
-5.9665596e+117
-5.9549245e+117
-5.9668156e+117
-5.9545719e+117
-5.9541184e+117
-5.9663568e+117
-5.954342e+117
-5.9664249e+117
-5.9442388e+117
-5.933374e+117
-5.9443596e+117
-5.9332902e+117
-5.9554271e+117
-5.9669934e+117
-5.9668641e+117
-5.9552582e+117
-5.9438195e+117
-5.9329791e+117
-5.9440554e+117
-5.9326393e+117
-5.9552244e+117
-5.9668884e+117
-5.9551085e+117
-5.9669095e+117
-5.9788169e+117
-5.9912675e+117
-5.9912127e+117
-5.9786423e+117
-5.9786199e+117
-5.9912938e+117
-5.9786261e+117
-5.9913478e+117
-6.0173991e+117
-6.0039315e+117
-6.0172574e+117
-6.0039612e+117
-6.0042342e+117
-6.0041278e+117
-6.0176181e+117
-6.0177792e+117
-5.8870377e+117
-5.8860798e+117
-5.8982839e+117
-5.8973756e+117
-5.9087283e+117
-5.9209705e+117
-5.9202236e+117
-5.9095786e+117
-5.8854554e+117
-5.8844311e+117
-5.8957962e+117
-5.8967037e+117
-5.9080696e+117
-5.9073189e+117
-5.9196699e+117
-5.9191139e+117
-5.9108478e+117
-5.9221998e+117
-5.9221075e+117
-5.9107178e+117
-5.8988954e+117
-5.8880754e+117
-5.8991636e+117
-5.8877965e+117
-5.9103902e+117
-5.9217076e+117
-5.9100631e+117
-5.9213314e+117
-5.8616714e+117
-5.8608735e+117
-5.8753669e+117
-5.8744582e+117
-5.8737495e+117
-5.8726575e+117
-5.8600126e+117
-5.8588174e+117
-5.8425457e+117
-5.8407628e+117
-5.6799686e+117
-5.6807946e+117
-5.6804945e+117
-5.661809e+117
-5.6812861e+117
-5.6647331e+117
-5.6838596e+117
-6.1157724e+117
-6.0986175e+117
-6.1158033e+117
-6.0985328e+117
-6.1337358e+117
-6.1524355e+117
-6.1523621e+117
-6.1336595e+117
-6.1162476e+117
-6.0986559e+117
-6.1158749e+117
-6.0990112e+117
-6.133758e+117
-6.1523634e+117
-6.1339762e+117
-6.152474e+117
-6.0512538e+117
-6.0368806e+117
-6.0514664e+117
-6.0366465e+117
-6.036685e+117
-6.0512977e+117
-6.0515489e+117
-6.0369107e+117
-6.0665392e+117
-6.0821332e+117
-6.0663487e+117
-6.0819757e+117
-6.082071e+117
-6.0823837e+117
-6.0664148e+117
-6.0666902e+117
-6.037315e+117
-6.0519672e+117
-6.0525118e+117
-6.0378297e+117
-6.0385309e+117
-6.0532187e+117
-6.0540152e+117
-6.0393356e+117
-6.067116e+117
-6.0827894e+117
-6.0833232e+117
-6.0676523e+117
-6.0683626e+117
-6.0840289e+117
-6.0848261e+117
-6.0691605e+117
-6.0993519e+117
-6.1165716e+117
-6.117114e+117
-6.0998675e+117
-6.1005824e+117
-6.1178515e+117
-6.1186638e+117
-6.1013668e+117
-6.1530929e+117
-6.1537895e+117
-6.1344688e+117
-6.135074e+117
-6.1358602e+117
-6.1546141e+117
-6.1554603e+117
-6.1366729e+117
-6.0421037e+117
-6.0568339e+117
-6.0571055e+117
-6.0423505e+117
-6.0423252e+117
-6.0424666e+117
-6.0572087e+117
-6.0570574e+117
-6.0720221e+117
-6.0877122e+117
-6.0879822e+117
-6.0722948e+117
-6.0722848e+117
-6.0724095e+117
-6.0881031e+117
-6.0880207e+117
-6.04003e+117
-6.0547097e+117
-6.0553052e+117
-6.0405967e+117
-6.0411536e+117
-6.0558428e+117
-6.0564143e+117
-6.0416954e+117
-6.0698565e+117
-6.0855173e+117
-6.0861124e+117
-6.0704539e+117
-6.0710159e+117
-6.0866985e+117
-6.087286e+117
-6.0715928e+117
-6.1020618e+117
-6.1193461e+117
-6.1199868e+117
-6.1026678e+117
-6.103269e+117
-6.1205784e+117
-6.1211572e+117
-6.1038436e+117
-6.1373865e+117
-6.156201e+117
-6.1568358e+117
-6.1380235e+117
-6.1386439e+117
-6.1574617e+117
-6.1580211e+117
-6.1391981e+117
-6.1042671e+117
-6.121553e+117
-6.1218162e+117
-6.1045257e+117
-6.1045548e+117
-6.1046419e+117
-6.1218804e+117
-6.1217057e+117
-6.1395995e+117
-6.1584242e+117
-6.1586372e+117
-6.1398258e+117
-6.1396373e+117
-6.1398754e+117
-6.1586878e+117
-6.1584573e+117
-6.1727318e+117
-6.1933129e+117
-6.1940814e+117
-6.1734671e+117
-6.1743257e+117
-6.1949626e+117
-6.1958455e+117
-6.1751994e+117
-6.2400214e+117
-6.2154198e+117
-6.2392555e+117
-6.2161803e+117
-6.241887e+117
-6.2170802e+117
-6.2409332e+117
-6.2179845e+117
-6.1923763e+117
-6.1720433e+117
-6.1924868e+117
-6.1719379e+117
-6.2144064e+117
-6.2380596e+117
-6.2380511e+117
-6.2143345e+117
-6.1927419e+117
-6.1719555e+117
-6.1924743e+117
-6.1721353e+117
-6.214486e+117
-6.2382299e+117
-6.2148303e+117
-6.2386419e+117
-6.3220957e+117
-6.322409e+117
-6.2918426e+117
-6.2636738e+117
-6.2916551e+117
-6.2637363e+117
-6.2644202e+117
-6.263969e+117
-6.292076e+117
-6.2925317e+117
-6.3230637e+117
-6.3225675e+117
-6.2650498e+117
-6.293147e+117
-6.29393e+117
-6.2658129e+117
-6.266733e+117
-6.2948406e+117
-6.2676946e+117
-6.2957969e+117
-6.3236527e+117
-6.3243925e+117
-6.3263282e+117
-6.3253018e+117
-6.2976059e+117
-6.2685908e+117
-6.2967344e+117
-6.2694239e+117
-6.3271754e+117
-6.3277759e+117
-6.2988613e+117
-6.2700375e+117
-6.2981666e+117
-6.2707105e+117
-6.3284401e+117
-6.3290521e+117
-6.1759635e+117
-6.1966206e+117
-6.1972963e+117
-6.1766043e+117
-6.1772361e+117
-6.1979415e+117
-6.198505e+117
-6.1778015e+117
-6.21879e+117
-6.2427171e+117
-6.2434422e+117
-6.2194773e+117
-6.2201446e+117
-6.2441077e+117
-6.2447337e+117
-6.2207232e+117
-6.1782058e+117
-6.1988941e+117
-6.1991082e+117
-6.1784155e+117
-6.1782694e+117
-6.1784701e+117
-6.1991446e+117
-6.1989335e+117
-6.2211056e+117
-6.2450707e+117
-6.2452137e+117
-6.2212828e+117
-6.2210863e+117
-6.2213047e+117
-6.24522e+117
-6.2450055e+117
-6.2992638e+117
-6.2709562e+117
-6.2990725e+117
-6.2710801e+117
-6.3295082e+117
-6.329781e+117
-6.2708897e+117
-6.2991558e+117
-6.2710989e+117
-6.2993218e+117
-6.3299272e+117
-6.3299104e+117
-5.999289e+117
-5.9864018e+117
-5.999696e+117
-5.9860002e+117
-6.0133774e+117
-6.0273825e+117
-6.0267886e+117
-6.0128691e+117
-5.9852486e+117
-5.9984165e+117
-5.9856102e+117
-5.9988268e+117
-6.0124237e+117
-6.0263532e+117
-6.011988e+117
-6.0259341e+117
-5.9363688e+117
-5.947915e+117
-5.9478924e+117
-5.9363321e+117
-5.936362e+117
-5.9363357e+117
-5.947902e+117
-5.9479306e+117
-5.9721408e+117
-5.9598642e+117
-5.9722201e+117
-5.9597944e+117
-5.9598537e+117
-5.9721405e+117
-5.9598245e+117
-5.9721288e+117
-5.9485024e+117
-5.9368701e+117
-5.948702e+117
-5.9367258e+117
-5.9608846e+117
-5.9734244e+117
-5.9730224e+117
-5.960568e+117
-5.9480196e+117
-5.9365535e+117
-5.9482539e+117
-5.9363609e+117
-5.9603003e+117
-5.972718e+117
-5.9599983e+117
-5.9723857e+117
-5.9850255e+117
-5.9981713e+117
-5.9979749e+117
-5.9848863e+117
-6.0256823e+117
-6.0115304e+117
-6.0117449e+117
-6.0254595e+117
-5.9848705e+117
-5.9848686e+117
-5.9979632e+117
-5.997951e+117
-6.0254072e+117
-6.0114698e+117
-6.0253502e+117
-6.0115005e+117
-5.8929351e+117
-5.8930178e+117
-5.9034951e+117
-5.9035008e+117
-5.9141163e+117
-5.9250631e+117
-5.9250264e+117
-5.914146e+117
-5.8931079e+117
-5.8931344e+117
-5.9035475e+117
-5.9035352e+117
-5.9141225e+117
-5.9141386e+117
-5.9250273e+117
-5.9250503e+117
-5.9033576e+117
-5.8923835e+117
-5.9031616e+117
-5.8926488e+117
-5.9141066e+117
-5.9253013e+117
-5.9252154e+117
-5.9141249e+117
-5.9034561e+117
-5.8927895e+117
-5.9034167e+117
-5.8928758e+117
-5.9141275e+117
-5.9251272e+117
-5.9140656e+117
-5.9249718e+117
-5.8633059e+117
-5.8636486e+117
-5.881673e+117
-5.8819684e+117
-5.8821981e+117
-5.8823523e+117
-5.8640126e+117
-5.864306e+117
-5.8106909e+117
-5.8097195e+117
-5.8183146e+117
-5.8192379e+117
-5.8173006e+117
-5.8086036e+117
-5.8089387e+117
-5.8175998e+117
-5.8344658e+117
-5.8256315e+117
-5.8259414e+117
-5.8347669e+117
-5.8353522e+117
-5.8265901e+117
-5.8274476e+117
-5.8360786e+117
-5.8522971e+117
-5.8432835e+117
-5.8435738e+117
-5.8525703e+117
-5.844673e+117
-5.8441047e+117
-5.8529902e+117
-5.8534201e+117
-5.8644732e+117
-5.8647669e+117
-5.8824221e+117
-5.8825734e+117
-5.8827497e+117
-5.8827863e+117
-5.8650845e+117
-5.8650978e+117
-5.8366353e+117
-5.8281641e+117
-5.8287425e+117
-5.8371153e+117
-5.8200091e+117
-5.8114746e+117
-5.8122571e+117
-5.8206765e+117
-5.812813e+117
-5.8128063e+117
-5.8211119e+117
-5.8211184e+117
-5.8374544e+117
-5.8290831e+117
-5.8290795e+117
-5.8374587e+117
-5.8458412e+117
-5.845851e+117
-5.8543992e+117
-5.8544053e+117
-5.8455247e+117
-5.8450968e+117
-5.8537318e+117
-5.8540945e+117
-5.8002851e+117
-5.7916973e+117
-5.7921329e+117
-5.8006425e+117
-5.7835839e+117
-5.7751743e+117
-5.7757499e+117
-5.7840692e+117
-5.7783651e+117
-5.7769079e+117
-5.7851212e+117
-5.7864188e+117
-5.8014868e+117
-5.7930417e+117
-5.7941803e+117
-5.8025205e+117
-5.7804372e+117
-5.7807405e+117
-5.7888182e+117
-5.7887163e+117
-5.780397e+117
-5.7795306e+117
-5.787406e+117
-5.7882825e+117
-5.8033083e+117
-5.795034e+117
-5.7959275e+117
-5.8041543e+117
-5.8048033e+117
-5.7965748e+117
-5.796553e+117
-5.8048171e+117
-5.9848621e+117
-5.9979349e+117
-5.9978758e+117
-5.9847692e+117
-5.9846711e+117
-5.9847029e+117
-5.9977893e+117
-5.9977765e+117
-6.0250704e+117
-6.011421e+117
-6.0252589e+117
-6.0112917e+117
-6.0112887e+117
-6.0251783e+117
-6.0112672e+117
-6.0250957e+117
-5.9360094e+117
-5.9475859e+117
-5.9476013e+117
-5.9359159e+117
-5.9357886e+117
-5.9358244e+117
-5.9476005e+117
-5.9476436e+117
-5.9720479e+117
-5.9595555e+117
-5.9719238e+117
-5.959611e+117
-5.9598341e+117
-5.9723619e+117
-5.959716e+117
-5.972188e+117
-5.9478894e+117
-5.9364119e+117
-5.9479675e+117
-5.9363176e+117
-5.9598693e+117
-5.9721342e+117
-5.9719889e+117
-5.959745e+117
-5.9476305e+117
-5.9361854e+117
-5.9477586e+117
-5.9360231e+117
-5.9596697e+117
-5.9719477e+117
-5.9595531e+117
-5.9718739e+117
-5.9847351e+117
-5.9978853e+117
-5.9980286e+117
-5.9848711e+117
-5.9850799e+117
-5.9983082e+117
-5.9853016e+117
-5.998573e+117
-6.0256386e+117
-6.0114629e+117
-6.0253943e+117
-6.0116513e+117
-6.0122632e+117
-6.0119636e+117
-6.0259618e+117
-6.0262806e+117
-5.8923973e+117
-5.892024e+117
-5.9030025e+117
-5.9026607e+117
-5.9134258e+117
-5.924667e+117
-5.9244759e+117
-5.9137072e+117
-5.891649e+117
-5.8912225e+117
-5.902009e+117
-5.9023294e+117
-5.9131593e+117
-5.9129437e+117
-5.9242946e+117
-5.9241767e+117
-5.9035742e+117
-5.8931239e+117
-5.9036042e+117
-5.8930674e+117
-5.914222e+117
-5.9251182e+117
-5.9250106e+117
-5.9141273e+117
-5.9032628e+117
-5.8929422e+117
-5.9034304e+117
-5.8927319e+117
-5.9140113e+117
-5.9248842e+117
-5.9138262e+117
-5.9246838e+117
-5.8648714e+117
-5.864787e+117
-5.8826908e+117
-5.882612e+117
-5.8825256e+117
-5.882282e+117
-5.8647658e+117
-5.8644534e+117
-5.8372465e+117
-5.8288405e+117
-5.8285687e+117
-5.837018e+117
-5.8207933e+117
-5.8124252e+117
-5.8120635e+117
-5.8204634e+117
-5.8112241e+117
-5.811859e+117
-5.8202983e+117
-5.8198043e+117
-5.8368987e+117
-5.8283951e+117
-5.8279663e+117
-5.836491e+117
-5.8454658e+117
-5.845621e+117
-5.8541916e+117
-5.8540731e+117
-5.844976e+117
-5.8453486e+117
-5.8539788e+117
-5.8536432e+117
-5.8638707e+117
-5.8633662e+117
-5.8818522e+117
-5.8814407e+117
-5.8810408e+117
-5.8805159e+117
-5.8628901e+117
-5.8621353e+117
-5.8359732e+117
-5.8274533e+117
-5.8266286e+117
-5.8352577e+117
-5.8191714e+117
-5.8104305e+117
-5.8095208e+117
-5.8182782e+117
-5.8075956e+117
-5.8087676e+117
-5.8174732e+117
-5.8163634e+117
-5.8345501e+117
-5.8258188e+117
-5.8247435e+117
-5.8335235e+117
-5.8438081e+117
-5.8443956e+117
-5.8530584e+117
-5.8525178e+117
-5.8421686e+117
-5.8431049e+117
-5.8519058e+117
-5.8510704e+117
-5.8043964e+117
-5.7961163e+117
-5.7956084e+117
-5.8039713e+117
-5.7882206e+117
-5.7798965e+117
-5.7791494e+117
-5.7875797e+117
-5.7776098e+117
-5.778499e+117
-5.787063e+117
-5.7861942e+117
-5.8036893e+117
-5.7951866e+117
-5.7943416e+117
-5.8029349e+117
-5.7737009e+117
-5.7750255e+117
-5.7835484e+117
-5.7822795e+117
-5.7758727e+117
-5.7767788e+117
-5.7852439e+117
-5.7843237e+117
-5.8019974e+117
-5.7933455e+117
-5.7924402e+117
-5.8010803e+117
-5.8003775e+117
-5.7917317e+117
-5.7904983e+117
-5.7991816e+117
-5.7671699e+117
-5.7589647e+117
-5.7597302e+117
-5.767803e+117
-5.7513237e+117
-5.7436291e+117
-5.7446534e+117
-5.7521888e+117
-5.7470583e+117
-5.7457801e+117
-5.7534307e+117
-5.7548998e+117
-5.7690319e+117
-5.7609621e+117
-5.7624728e+117
-5.7705639e+117
-5.7364969e+117
-5.729237e+117
-5.7304874e+117
-5.7375838e+117
-5.7222576e+117
-5.7146336e+117
-5.7161402e+117
-5.7236256e+117
-5.717254e+117
-5.7169179e+117
-5.7243707e+117
-5.724919e+117
-5.7384878e+117
-5.731198e+117
-5.7320143e+117
-5.7395896e+117
-5.7142054e+117
-5.7156956e+117
-5.7242279e+117
-5.7227947e+117
-5.7166413e+117
-5.7172424e+117
-5.7252968e+117
-5.7250337e+117
-5.7405848e+117
-5.732762e+117
-5.7327747e+117
-5.74086e+117
-5.740386e+117
-5.7321501e+117
-5.7307448e+117
-5.7391072e+117
-5.7718544e+117
-5.7637908e+117
-5.7645316e+117
-5.7726719e+117
-5.7560971e+117
-5.748129e+117
-5.7485752e+117
-5.7567222e+117
-5.7471481e+117
-5.7482516e+117
-5.7565502e+117
-5.7556746e+117
-5.7728452e+117
-5.7645288e+117
-5.7638318e+117
-5.7723712e+117
-5.7092112e+117
-5.7096681e+117
-5.7178339e+117
-5.7173156e+117
-5.709622e+117
-5.7095745e+117
-5.7179678e+117
-5.7177958e+117
-5.7342079e+117
-5.7258079e+117
-5.7255133e+117
-5.7337371e+117
-5.7336177e+117
-5.7255221e+117
-5.7249187e+117
-5.7328942e+117
-5.7099135e+117
-5.7105973e+117
-5.7193235e+117
-5.7186141e+117
-5.7114927e+117
-5.7128136e+117
-5.7212363e+117
-5.7199673e+117
-5.737594e+117
-5.7291368e+117
-5.727929e+117
-5.7364195e+117
-5.735932e+117
-5.7274179e+117
-5.7266531e+117
-5.7351251e+117
-5.7717107e+117
-5.7629883e+117
-5.76202e+117
-5.7708484e+117
-5.7545925e+117
-5.7458586e+117
-5.7447355e+117
-5.7535457e+117
-5.7433266e+117
-5.7441435e+117
-5.7528812e+117
-5.7520363e+117
-5.7701387e+117
-5.7613052e+117
-5.760436e+117
-5.7692514e+117
-5.7684639e+117
-5.7596452e+117
-5.7588427e+117
-5.767581e+117
-5.7511887e+117
-5.742455e+117
-5.7418641e+117
-5.7504826e+117
-5.7406609e+117
-5.7415134e+117
-5.7499309e+117
-5.7489027e+117
-5.7667592e+117
-5.7581266e+117
-5.7569499e+117
-5.765473e+117
-5.6905378e+117
-5.6816606e+117
-5.6825822e+117
-5.6917534e+117
-5.7068994e+117
-5.6985798e+117
-5.7000456e+117
-5.7084614e+117
-5.709168e+117
-5.7005896e+117
-5.7004382e+117
-5.7093035e+117
-6.1764482e+117
-6.1971376e+117
-6.1969763e+117
-6.1762451e+117
-6.1760265e+117
-6.1761165e+117
-6.1968165e+117
-6.1967295e+117
-6.2432643e+117
-6.2195197e+117
-6.2433832e+117
-6.2193449e+117
-6.2191099e+117
-6.2429994e+117
-6.2192125e+117
-6.2431073e+117
-6.1982623e+117
-6.1779223e+117
-6.1986143e+117
-6.1775495e+117
-6.2209421e+117
-6.2447265e+117
-6.2441139e+117
-6.2204615e+117
-6.1973998e+117
-6.1771238e+117
-6.1978073e+117
-6.1767178e+117
-6.2200791e+117
-6.2438197e+117
-6.2197147e+117
-6.2435137e+117
-6.2987677e+117
-6.270788e+117
-6.2993308e+117
-6.2701881e+117
-6.3302954e+117
-6.3297659e+117
-6.2696158e+117
-6.2982137e+117
-6.2698841e+117
-6.2984585e+117
-6.3294373e+117
-6.3292607e+117
-6.2695052e+117
-6.2980848e+117
-6.2979174e+117
-6.2693775e+117
-6.3289083e+117
-6.3290905e+117
-6.2692713e+117
-6.2691787e+117
-6.2978946e+117
-6.297825e+117
-6.3288891e+117
-6.3288981e+117
-6.2691208e+117
-6.2977628e+117
-6.2976941e+117
-6.2689803e+117
-6.2688675e+117
-6.2688663e+117
-6.2974887e+117
-6.297477e+117
-6.3287761e+117
-6.3285414e+117
-6.3284991e+117
-6.3284456e+117
-6.1758825e+117
-6.1966029e+117
-6.1968897e+117
-6.176146e+117
-6.176011e+117
-6.1761045e+117
-6.196747e+117
-6.1965877e+117
-6.2426937e+117
-6.2189504e+117
-6.242749e+117
-6.2190347e+117
-6.2188831e+117
-6.2426964e+117
-6.2190264e+117
-6.2428002e+117
-6.1967333e+117
-6.176031e+117
-6.1967435e+117
-6.1760304e+117
-6.2191047e+117
-6.2429431e+117
-6.2427095e+117
-6.2189665e+117
-6.1964354e+117
-6.1758327e+117
-6.1965276e+117
-6.1756797e+117
-6.2188537e+117
-6.2426835e+117
-6.2187946e+117
-6.2426579e+117
-6.2688774e+117
-6.2975108e+117
-6.2975009e+117
-6.268825e+117
-6.2689155e+117
-6.2975878e+117
-6.2688349e+117
-6.2975287e+117
-6.3286218e+117
-6.3286562e+117
-6.3287772e+117
-6.3287543e+117
-6.1189702e+117
-6.1015239e+117
-6.11903e+117
-6.1014383e+117
-6.1371584e+117
-6.1560343e+117
-6.1560239e+117
-6.1370943e+117
-6.119223e+117
-6.101513e+117
-6.1190265e+117
-6.1017156e+117
-6.13709e+117
-6.1558774e+117
-6.1370884e+117
-6.1557009e+117
-6.0395355e+117
-6.0393454e+117
-6.0541719e+117
-6.0539804e+117
-6.0692562e+117
-6.0690953e+117
-6.0848637e+117
-6.0847395e+117
-6.0393762e+117
-6.0540262e+117
-6.0541814e+117
-6.0395026e+117
-6.0847854e+117
-6.0849582e+117
-6.0691348e+117
-6.0692979e+117
-6.039743e+117
-6.0544244e+117
-6.0400036e+117
-6.0546739e+117
-6.0697672e+117
-6.0695276e+117
-6.0851387e+117
-6.0853498e+117
-6.0406581e+117
-6.0553122e+117
-6.0403391e+117
-6.0550151e+117
-6.0856111e+117
-6.0700757e+117
-6.0703331e+117
-6.085815e+117
-6.1017862e+117
-6.1192257e+117
-6.1193491e+117
-6.1019457e+117
-6.1022991e+117
-6.1021539e+117
-6.119512e+117
-6.1195974e+117
-6.155947e+117
-6.1561343e+117
-6.1372187e+117
-6.1373584e+117
-6.1375062e+117
-6.1374881e+117
-6.1562206e+117
-6.1561856e+117
-6.1041629e+117
-6.1209215e+117
-6.1212604e+117
-6.1035558e+117
-6.139069e+117
-6.1578906e+117
-6.1575199e+117
-6.1387685e+117
-6.1024719e+117
-6.1199095e+117
-6.1029445e+117
-6.1203488e+117
-6.1383395e+117
-6.1571291e+117
-6.1379292e+117
-6.1567363e+117
-6.0545589e+117
-6.0400529e+117
-6.0547716e+117
-6.0398354e+117
-6.0699049e+117
-6.085529e+117
-6.0853025e+117
-6.0696805e+117
-6.0543184e+117
-6.0397471e+117
-6.0544377e+117
-6.0396578e+117
-6.0695451e+117
-6.0851545e+117
-6.0850095e+117
-6.0694068e+117
-6.087586e+117
-6.0717998e+117
-6.0711557e+117
-6.0868839e+117
-6.0565579e+117
-6.0417916e+117
-6.0411803e+117
-6.0559262e+117
-6.05504e+117
-6.040723e+117
-6.0554495e+117
-6.0403127e+117
-6.0862813e+117
-6.0706168e+117
-6.0701848e+117
-6.0858197e+117
-6.1194505e+117
-6.1021763e+117
-6.1196409e+117
-6.1019515e+117
-6.1564979e+117
-6.1376997e+117
-6.1375094e+117
-6.1562783e+117
-6.119162e+117
-6.1018036e+117
-6.1192947e+117
-6.1016515e+117
-6.1561827e+117
-6.1373859e+117
-6.1372429e+117
-6.1560438e+117
-6.2667727e+117
-6.2659683e+117
-6.2844017e+117
-6.2850921e+117
-6.2676533e+117
-6.285955e+117
-6.2867222e+117
-6.2683955e+117
-6.2640935e+117
-6.2637318e+117
-6.2823034e+117
-6.2827377e+117
-6.2652884e+117
-6.264604e+117
-6.2832232e+117
-6.2837892e+117
-6.3496833e+117
-6.3327904e+117
-6.3322016e+117
-6.350159e+117
-6.3157342e+117
-6.2996064e+117
-6.3002848e+117
-6.3164522e+117
-6.3010652e+117
-6.3171776e+117
-6.3177404e+117
-6.3017974e+117
-6.3334366e+117
-6.3507924e+117
-6.3514114e+117
-6.3340487e+117
-6.2981122e+117
-6.2976362e+117
-6.3137128e+117
-6.3143323e+117
-6.33066e+117
-6.3300936e+117
-6.3475006e+117
-6.3480515e+117
-6.3317029e+117
-6.3311774e+117
-6.3485746e+117
-6.3491347e+117
-6.2985764e+117
-6.3148192e+117
-6.3152227e+117
-6.299068e+117
-6.3729116e+117
-6.3928004e+117
-6.3933438e+117
-6.3735526e+117
-6.3917325e+117
-6.3922694e+117
-6.3723552e+117
-6.3718955e+117
-6.4105642e+117
-6.4100876e+117
-6.4267566e+117
-6.4262707e+117
-6.4114859e+117
-6.4110603e+117
-6.4275958e+117
-6.4272746e+117
-6.3702598e+117
-6.3696905e+117
-6.3897036e+117
-6.3902996e+117
-6.4082805e+117
-6.4247199e+117
-6.4252835e+117
-6.4088498e+117
-6.3908548e+117
-6.3913861e+117
-6.4097389e+117
-6.4093537e+117
-6.4256252e+117
-6.425903e+117
-6.3708416e+117
-6.3714449e+117
-6.2695322e+117
-6.2688411e+117
-6.2871869e+117
-6.2877985e+117
-6.28869e+117
-6.2883946e+117
-6.2701523e+117
-6.2705882e+117
-6.3023183e+117
-6.302884e+117
-6.3188384e+117
-6.3182505e+117
-6.3522105e+117
-6.3518506e+117
-6.3345193e+117
-6.334975e+117
-6.3525441e+117
-6.3353472e+117
-6.33562e+117
-6.3527558e+117
-6.3033705e+117
-6.3192319e+117
-6.3194221e+117
-6.3036163e+117
-6.3739825e+117
-6.3937054e+117
-6.3940027e+117
-6.3743239e+117
-6.3943447e+117
-6.3941699e+117
-6.3746014e+117
-6.3748068e+117
-6.4122021e+117
-6.4123398e+117
-6.4282645e+117
-6.4281913e+117
-6.4120602e+117
-6.4118317e+117
-6.4280741e+117
-6.4279331e+117
-6.3943974e+117
-6.3946372e+117
-6.3750658e+117
-6.3749691e+117
-6.3752174e+117
-6.3948546e+117
-6.3951437e+117
-6.3755704e+117
-6.428971e+117
-6.412965e+117
-6.4131826e+117
-6.4290333e+117
-6.4284341e+117
-6.4124509e+117
-6.4126942e+117
-6.4286381e+117
-6.3988838e+117
-6.3990161e+117
-6.3835099e+117
-6.3832979e+117
-6.4141033e+117
-6.4139991e+117
-6.4363063e+117
-6.4363966e+117
-6.4492104e+117
-6.4493633e+117
-6.4710929e+117
-6.4708983e+117
-6.4820395e+117
-6.4822314e+117
-6.4495461e+117
-6.4494628e+117
-6.4711978e+117
-6.4712386e+117
-6.4823498e+117
-6.4823853e+117
-6.4496585e+117
-6.4498607e+117
-6.4824724e+117
-6.4713307e+117
-6.4715068e+117
-6.4826021e+117
-6.4501651e+117
-6.4500575e+117
-6.4716155e+117
-6.4716815e+117
-6.4827096e+117
-6.482687e+117
-6.4514631e+117
-6.4514105e+117
-6.4737207e+117
-6.463438e+117
-6.4736698e+117
-6.4633964e+117
-6.4819751e+117
-6.4819309e+117
-6.4918799e+117
-6.5000317e+117
-6.4919953e+117
-6.5001348e+117
-6.4920602e+117
-6.5001773e+117
-6.4920526e+117
-6.5001587e+117
-6.4905277e+117
-6.4991255e+117
-6.4904993e+117
-6.4990697e+117
-6.5047788e+117
-6.5080705e+117
-6.5044092e+117
-6.5074608e+117
-6.5044533e+117
-6.5075743e+117
-6.5057402e+117
-6.5047798e+117
-6.5080531e+117
-6.5056371e+117
-6.5044957e+117
-6.5075998e+117
-6.5044226e+117
-6.5075493e+117
-6.4871002e+117
-6.4869866e+117
-6.444961e+117
-6.4451162e+117
-6.5054271e+117
-6.5079257e+117
-6.5046661e+117
-6.5047285e+117
-6.5080322e+117
-6.5056072e+117
-6.4443826e+117
-6.4865806e+117
-6.4868075e+117
-6.4446547e+117
-6.4914642e+117
-6.4996267e+117
-6.4916564e+117
-6.4998094e+117
-6.491793e+117
-6.4999526e+117
-6.4917611e+117
-6.4999193e+117
-6.5045085e+117
-6.5076762e+117
-6.5045663e+117
-6.5078212e+117
-6.5050782e+117
-6.5053444e+117
-6.4865041e+117
-6.4861865e+117
-6.4431504e+117
-6.443899e+117
-6.5049242e+117
-6.5075191e+117
-6.5042826e+117
-6.5050957e+117
-6.5076591e+117
-6.5044244e+117
-6.4432583e+117
-6.485853e+117
-6.4434492e+117
-6.4860732e+117
-6.4463806e+117
-6.4468172e+117
-6.4683572e+117
-6.468769e+117
-6.4800483e+117
-6.4796642e+117
-6.4473811e+117
-6.4471041e+117
-6.4690527e+117
-6.469315e+117
-6.4803677e+117
-6.4806124e+117
-6.448158e+117
-6.4477252e+117
-6.4696209e+117
-6.4700261e+117
-6.4812475e+117
-6.4809059e+117
-6.4489312e+117
-6.4485817e+117
-6.4703727e+117
-6.4706525e+117
-6.4817957e+117
-6.4815617e+117
-6.4892106e+117
-6.4975031e+117
-6.4895726e+117
-6.4978612e+117
-6.4898923e+117
-6.4981827e+117
-6.4901327e+117
-6.4984041e+117
-6.4910106e+117
-6.4992101e+117
-6.491215e+117
-6.4994003e+117
-6.4904108e+117
-6.4986615e+117
-6.4907113e+117
-6.4989523e+117
-6.5033492e+117
-6.505707e+117
-6.5022808e+117
-6.5025855e+117
-6.5059699e+117
-6.5035667e+117
-6.5037713e+117
-6.5062367e+117
-6.5028899e+117
-6.5030903e+117
-6.5063841e+117
-6.5039383e+117
-6.4426968e+117
-6.4845886e+117
-6.4847558e+117
-6.4424051e+117
-6.4424451e+117
-6.4848908e+117
-6.4849504e+117
-6.4421339e+117
-6.5033292e+117
-6.5065518e+117
-6.5035892e+117
-6.5068963e+117
-6.5044165e+117
-6.5040222e+117
-6.4418541e+117
-6.4848868e+117
-6.4853155e+117
-6.4424418e+117
-6.5045724e+117
-6.5071201e+117
-6.5038576e+117
-6.504048e+117
-6.5072769e+117
-6.5047162e+117
-6.4427796e+117
-6.4854814e+117
-6.4856122e+117
-6.4426712e+117
-6.3532267e+117
-6.3713451e+117
-6.3717267e+117
-6.3533963e+117
-6.3535245e+117
-6.3718733e+117
-6.3718977e+117
-6.3535398e+117
-6.3997889e+117
-6.3992684e+117
-6.3536594e+117
-6.3721016e+117
-6.3725322e+117
-6.3538994e+117
-6.3545746e+117
-6.3542325e+117
-6.3728306e+117
-6.3730334e+117
-6.4011655e+117
-6.4004809e+117
-6.3547869e+117
-6.3732504e+117
-6.3734902e+117
-6.3548374e+117
-6.3548431e+117
-6.3735288e+117
-6.3735558e+117
-6.3549288e+117
-6.4019615e+117
-6.401668e+117
-6.3550689e+117
-6.373726e+117
-6.3740981e+117
-6.3552231e+117
-6.3555653e+117
-6.3744435e+117
-6.3747357e+117
-6.3560049e+117
-6.4031885e+117
-6.4024906e+117
-6.3271909e+117
-6.3445459e+117
-6.345211e+117
-6.3278945e+117
-6.3624309e+117
-6.3826344e+117
-6.3831054e+117
-6.362901e+117
-6.3636023e+117
-6.3836181e+117
-6.3842437e+117
-6.3644559e+117
-6.4026424e+117
-6.4022068e+117
-6.418996e+117
-6.418651e+117
-6.4018139e+117
-6.4013884e+117
-6.4182323e+117
-6.4178587e+117
-6.3652013e+117
-6.3848645e+117
-6.3856456e+117
-6.3659261e+117
-6.3665656e+117
-6.3861796e+117
-6.386617e+117
-6.3670918e+117
-6.4048061e+117
-6.4043827e+117
-6.4209657e+117
-6.4206349e+117
-6.4038516e+117
-6.4031929e+117
-6.4201027e+117
-6.4195355e+117
-6.2626021e+117
-6.2812195e+117
-6.280988e+117
-6.2629122e+117
-6.2632552e+117
-6.2634276e+117
-6.2815969e+117
-6.2814697e+117
-6.2634794e+117
-6.263487e+117
-6.2819203e+117
-6.2817876e+117
-6.297187e+117
-6.3129644e+117
-6.2969116e+117
-6.3132223e+117
-6.2964352e+117
-6.3122521e+117
-6.3126296e+117
-6.2966431e+117
-6.3286881e+117
-6.3283692e+117
-6.3454998e+117
-6.3458229e+117
-6.3290978e+117
-6.3295621e+117
-6.3468997e+117
-6.3463097e+117
-6.3120323e+117
-6.2959622e+117
-6.2962142e+117
-6.312256e+117
-6.3282733e+117
-6.3282638e+117
-6.3453165e+117
-6.3453521e+117
-6.3281635e+117
-6.3282415e+117
-6.3452834e+117
-6.3452888e+117
-6.2961845e+117
-6.312203e+117
-6.3121222e+117
-6.2962764e+117
-6.3869689e+117
-6.3870963e+117
-6.3672921e+117
-6.3672822e+117
-6.3871729e+117
-6.3673364e+117
-6.3674214e+117
-6.3873224e+117
-6.4057826e+117
-6.4055635e+117
-6.4218242e+117
-6.4221115e+117
-6.4051758e+117
-6.4213142e+117
-6.4053972e+117
-6.4215808e+117
-6.3880162e+117
-6.387609e+117
-6.3676143e+117
-6.3679393e+117
-6.3690682e+117
-6.3890988e+117
-6.3884898e+117
-6.3684227e+117
-6.4070971e+117
-6.4235407e+117
-6.4241359e+117
-6.4076659e+117
-6.4061551e+117
-6.4224907e+117
-6.423044e+117
-6.4066013e+117
-6.3892534e+117
-6.3926665e+117
-6.3828955e+117
-6.3860177e+117
-6.199618e+117
-6.1930558e+117
-6.2618344e+117
-6.2552015e+117
-6.3189045e+117
-6.3221625e+117
-6.3559186e+117
-6.3526121e+117
-6.3257526e+117
-6.3295865e+117
-6.3627646e+117
-6.3593606e+117
-6.4006211e+117
-6.4030296e+117
-6.3953174e+117
-6.3979983e+117
-6.2058035e+117
-6.2112883e+117
-6.2733042e+117
-6.2675936e+117
-6.3322836e+117
-6.3349607e+117
-6.3683119e+117
-6.3654982e+117
-6.3378967e+117
-6.3406974e+117
-6.3734698e+117
-6.3710986e+117
-6.2490213e+117
-6.2506239e+117
-6.2845829e+117
-6.2827139e+117
-6.31557e+117
-6.3175442e+117
-6.2788373e+117
-6.2804789e+117
-6.3134234e+117
-6.3119209e+117
-6.3443442e+117
-6.3619709e+117
-6.3627609e+117
-6.3449395e+117
-6.3642943e+117
-6.3634919e+117
-6.3456566e+117
-6.3466485e+117
-6.3908796e+117
-6.3893487e+117
-6.365121e+117
-6.3475596e+117
-6.3485007e+117
-6.3661509e+117
-6.3494627e+117
-6.3670674e+117
-6.3678238e+117
-6.3504171e+117
-6.3941953e+117
-6.3925001e+117
-6.3183139e+117
-6.3184893e+117
-6.3510556e+117
-6.3684624e+117
-6.3689571e+117
-6.3513019e+117
-6.3514463e+117
-6.3692128e+117
-6.3694229e+117
-6.3517586e+117
-6.3964087e+117
-6.3954872e+117
-6.3519918e+117
-6.3697579e+117
-6.3702647e+117
-6.3521361e+117
-6.3528792e+117
-6.3524559e+117
-6.3706509e+117
-6.3709729e+117
-6.398513e+117
-6.3974363e+117
-6.3690154e+117
-6.3706786e+117
-6.3669144e+117
-6.3677473e+117
-6.1802653e+117
-6.1816741e+117
-6.2426701e+117
-6.2407797e+117
-6.3370035e+117
-6.3041652e+117
-6.3038084e+117
-6.337766e+117
-6.3051448e+117
-6.3066833e+117
-6.3402894e+117
-6.3388716e+117
-6.3772575e+117
-6.3803536e+117
-6.3723706e+117
-6.3745412e+117
-6.1881908e+117
-6.1840514e+117
-6.2501982e+117
-6.2454827e+117
-6.3082706e+117
-6.3103514e+117
-6.3441865e+117
-6.3419533e+117
-6.3130409e+117
-6.3469249e+117
-6.3499653e+117
-6.3162435e+117
-6.379705e+117
-6.4205223e+117
-6.3787705e+117
-6.4191416e+117
-6.4402478e+117
-6.4411691e+117
-6.4419432e+117
-6.4425791e+117
-6.3810146e+117
-6.4220687e+117
-6.4443963e+117
-6.4433221e+117
-6.382662e+117
-6.4238171e+117
-6.4453183e+117
-6.4461265e+117
-6.3894592e+117
-6.4307603e+117
-6.3924518e+117
-6.4335606e+117
-6.4534336e+117
-6.4519239e+117
-6.4547289e+117
-6.4559115e+117
-6.3845038e+117
-6.4257956e+117
-6.3866971e+117
-6.4281881e+117
-6.4471192e+117
-6.4484984e+117
-6.4496826e+117
-6.4507452e+117
-6.4427623e+117
-6.443576e+117
-6.4443734e+117
-6.4450797e+117
-6.4458671e+117
-6.4468372e+117
-6.4477582e+117
-6.4486359e+117
-6.4409324e+117
-6.4446494e+117
-6.4454464e+117
-6.4416591e+117
-6.4425219e+117
-6.4462454e+117
-6.4469778e+117
-6.4430396e+117
-6.3912396e+117
-6.4251509e+117
-6.4258737e+117
-6.3915416e+117
-6.4269778e+117
-6.4265101e+117
-6.3920828e+117
-6.39246e+117
-6.4440695e+117
-6.4477799e+117
-6.4486883e+117
-6.4447112e+117
-6.450479e+117
-6.4495826e+117
-6.4456749e+117
-6.4464403e+117
-6.4301259e+117
-6.4292809e+117
-6.394467e+117
-6.3952849e+117
-6.3926869e+117
-6.4276037e+117
-6.3932581e+117
-6.4283107e+117
-6.4496527e+117
-6.4509046e+117
-6.4521039e+117
-6.4532496e+117
-6.4544433e+117
-6.455844e+117
-6.4571233e+117
-6.4583694e+117
-6.4476676e+117
-6.4515203e+117
-6.4527171e+117
-6.4486456e+117
-6.4550698e+117
-6.4539241e+117
-6.450932e+117
-6.450029e+117
-6.4331211e+117
-6.3974778e+117
-6.3983493e+117
-6.4340292e+117
-6.3957914e+117
-6.4309531e+117
-6.4319549e+117
-6.3964801e+117
-6.435392e+117
-6.436766e+117
-6.4010367e+117
-6.3997486e+117
-6.4022409e+117
-6.437923e+117
-6.439095e+117
-6.4034537e+117
-6.4576405e+117
-6.4563022e+117
-6.4536367e+117
-6.4523934e+117
-6.4601421e+117
-6.4589076e+117
-6.4559765e+117
-6.4549505e+117
-6.474181e+117
-6.4536371e+117
-6.4755492e+117
-6.4133212e+117
-6.4156458e+117
-6.4558516e+117
-6.4774706e+117
-6.4766004e+117
-6.410789e+117
-6.451215e+117
-6.408123e+117
-6.4484956e+117
-6.4689465e+117
-6.4705555e+117
-6.4718984e+117
-6.473032e+117
-6.4364763e+117
-6.4572648e+117
-6.4589693e+117
-6.4396556e+117
-6.4604799e+117
-6.4618541e+117
-6.459707e+117
-6.4613045e+117
-6.4628121e+117
-6.4642635e+117
-6.442692e+117
-6.4650027e+117
-6.4632819e+117
-6.4457953e+117
-6.4664321e+117
-6.4676514e+117
-6.4657075e+117
-6.4673226e+117
-6.4687352e+117
-6.4700427e+117
-6.4630273e+117
-6.4614932e+117
-6.4574991e+117
-6.4589834e+117
-6.4044449e+117
-6.4403346e+117
-6.4418437e+117
-6.4056867e+117
-6.4659906e+117
-6.4645446e+117
-6.4605353e+117
-6.4618449e+117
-6.4445e+117
-6.443261e+117
-6.4070084e+117
-6.4081914e+117
-6.4689877e+117
-6.4674565e+117
-6.4634614e+117
-6.4649399e+117
-6.4717333e+117
-6.4703974e+117
-6.4663327e+117
-6.4677039e+117
-6.4093013e+117
-6.445839e+117
-6.4474652e+117
-6.4109471e+117
-6.4502025e+117
-6.4489014e+117
-6.4125818e+117
-6.413714e+117
-6.474218e+117
-6.475444e+117
-6.4713725e+117
-6.4728812e+117
-6.4766138e+117
-6.4778784e+117
-6.4789546e+117
-6.4798906e+117
-6.4690286e+117
-6.4730839e+117
-6.4745405e+117
-6.470521e+117
-6.4149077e+117
-6.451408e+117
-6.4528638e+117
-6.4160525e+117
-6.4173984e+117
-6.4541455e+117
-6.4554272e+117
-6.4186756e+117
-6.4758811e+117
-6.477137e+117
-6.4730827e+117
-6.4718594e+117
-6.4198714e+117
-6.4566118e+117
-6.4580978e+117
-6.4211859e+117
-6.4225341e+117
-6.4591501e+117
-6.4603213e+117
-6.4234354e+117
-6.4795706e+117
-6.4783333e+117
-6.4757461e+117
-6.4743611e+117
-6.4816247e+117
-6.4806543e+117
-6.4778856e+117
-6.4767868e+117
-6.4052583e+117
-6.4018891e+117
-6.3954021e+117
-6.3985628e+117
-6.4200987e+117
-6.4193176e+117
-6.4349863e+117
-6.435729e+117
-6.4404697e+117
-6.4412999e+117
-6.4563084e+117
-6.4684765e+117
-6.4692769e+117
-6.4571467e+117
-6.4177503e+117
-6.4185669e+117
-6.4341977e+117
-6.4332508e+117
-6.4387844e+117
-6.4396622e+117
-6.4544791e+117
-6.4664657e+117
-6.4675902e+117
-6.4554489e+117
-6.4365818e+117
-6.4209371e+117
-6.4219747e+117
-6.4376714e+117
-6.4580259e+117
-6.4421607e+117
-6.4431372e+117
-6.4590107e+117
-6.4712314e+117
-6.4701388e+117
-6.4385527e+117
-6.439227e+117
-6.4440173e+117
-6.4447697e+117
-6.472149e+117
-6.4598952e+117
-6.4606711e+117
-6.4728524e+117
-6.4227931e+117
-6.4235247e+117
-6.4418997e+117
-6.4413838e+117
-6.4253719e+117
-6.4258679e+117
-6.4474565e+117
-6.4468634e+117
-6.4629483e+117
-6.4635854e+117
-6.4759603e+117
-6.4753519e+117
-6.4736918e+117
-6.4399474e+117
-6.4407507e+117
-6.4455005e+117
-6.4462184e+117
-6.4622492e+117
-6.4614506e+117
-6.4746e+117
-6.4248072e+117
-6.4241859e+117
-6.4433524e+117
-6.4425092e+117
-6.4264605e+117
-6.4271659e+117
-6.4480852e+117
-6.4767002e+117
-6.4488234e+117
-6.4642656e+117
-6.4650249e+117
-6.4775568e+117
-6.4440195e+117
-6.4278305e+117
-6.4444811e+117
-6.4283476e+117
-6.449498e+117
-6.4500616e+117
-6.4782544e+117
-6.4656986e+117
-6.4662612e+117
-6.4787308e+117
-6.4708864e+117
-6.4719314e+117
-6.4728505e+117
-6.4737186e+117
-6.4746118e+117
-6.4756094e+117
-6.4765216e+117
-6.4773196e+117
-6.477943e+117
-6.4811046e+117
-6.4769374e+117
-6.4800545e+117
-6.4770629e+117
-6.4781551e+117
-6.4196972e+117
-6.4594091e+117
-6.4605863e+117
-6.4204554e+117
-6.4798071e+117
-6.4829562e+117
-6.4789056e+117
-6.4820934e+117
-6.4791078e+117
-6.4798843e+117
-6.4621948e+117
-6.4614448e+117
-6.4213529e+117
-6.4218351e+117
-6.4826369e+117
-6.4858466e+117
-6.4827858e+117
-6.4836148e+117
-6.4867039e+117
-6.4835118e+117
-6.4816951e+117
-6.484893e+117
-6.4807496e+117
-6.4839151e+117
-6.4808385e+117
-6.481849e+117
-6.4225534e+117
-6.4628708e+117
-6.4639755e+117
-6.4234041e+117
-6.465716e+117
-6.4648631e+117
-6.4244608e+117
-6.4251153e+117
-6.4812059e+117
-6.4819643e+117
-6.4826596e+117
-6.4832293e+117
-6.4852913e+117
-6.4884216e+117
-6.4844534e+117
-6.4875531e+117
-6.4843331e+117
-6.4852594e+117
-6.4867631e+117
-6.4899442e+117
-6.4860782e+117
-6.4892434e+117
-6.4860731e+117
-6.4867979e+117
-6.467187e+117
-6.4663316e+117
-6.4258502e+117
-6.4263696e+117
-6.4687347e+117
-6.4679618e+117
-6.4272803e+117
-6.4278528e+117
-6.4781974e+117
-6.4790467e+117
-6.4798075e+117
-6.4804765e+117
-6.4881801e+117
-6.4915124e+117
-6.4874578e+117
-6.4907e+117
-6.4875686e+117
-6.4885011e+117
-6.4895351e+117
-6.492891e+117
-6.4888943e+117
-6.4922368e+117
-6.4892079e+117
-6.4898895e+117
-6.4287023e+117
-6.469345e+117
-6.4704195e+117
-6.4295481e+117
-6.4720019e+117
-6.4712376e+117
-6.430627e+117
-6.4312487e+117
-6.4462107e+117
-6.4458893e+117
-6.4298317e+117
-6.4294908e+117
-6.4514463e+117
-6.4518641e+117
-6.4806328e+117
-6.4678892e+117
-6.468337e+117
-6.4810153e+117
-6.4287522e+117
-6.4454634e+117
-6.4449015e+117
-6.4291255e+117
-6.4505264e+117
-6.4509948e+117
-6.4793606e+117
-6.4668161e+117
-6.4673829e+117
-6.4800574e+117
-6.4472792e+117
-6.4466491e+117
-6.430265e+117
-6.4307264e+117
-6.4815851e+117
-6.4523181e+117
-6.4528557e+117
-6.4688383e+117
-6.4694267e+117
-6.4822808e+117
-6.4480644e+117
-6.4477462e+117
-6.4315406e+117
-6.4311686e+117
-6.4533355e+117
-6.4537479e+117
-6.4828369e+117
-6.4699381e+117
-6.4703535e+117
-6.4831789e+117
-6.4487959e+117
-6.4483739e+117
-6.4318481e+117
-6.4321067e+117
-6.4836711e+117
-6.4541034e+117
-6.4544523e+117
-6.4707892e+117
-6.4712362e+117
-6.484241e+117
-6.4492296e+117
-6.4490648e+117
-6.4325067e+117
-6.4323338e+117
-6.4547507e+117
-6.4550046e+117
-6.4846794e+117
-6.4715945e+117
-6.4718748e+117
-6.4848871e+117
-6.4500324e+117
-6.4495244e+117
-6.4328075e+117
-6.4331939e+117
-6.4852845e+117
-6.4553059e+117
-6.4557086e+117
-6.4858106e+117
-6.4726279e+117
-6.4722092e+117
-6.4503812e+117
-6.4338761e+117
-6.433571e+117
-6.4506236e+117
-6.456059e+117
-6.4563939e+117
-6.4732859e+117
-6.4729712e+117
-6.4861364e+117
-6.4863571e+117
-6.4911459e+117
-6.4908449e+117
-6.4900926e+117
-6.4905112e+117
-6.4957371e+117
-6.4993961e+117
-6.4951528e+117
-6.498738e+117
-6.4958436e+117
-6.4965935e+117
-6.4788485e+117
-6.4780681e+117
-6.4377617e+117
-6.4381755e+117
-6.4390116e+117
-6.4792659e+117
-6.4798249e+117
-6.439188e+117
-6.4965722e+117
-6.5002918e+117
-6.4962282e+117
-6.4999082e+117
-6.4975054e+117
-6.4970567e+117
-6.488427e+117
-6.4889674e+117
-6.4894229e+117
-6.4897165e+117
-6.4969014e+117
-6.5006684e+117
-6.4972845e+117
-6.5011671e+117
-6.4985264e+117
-6.4978776e+117
-6.4398643e+117
-6.4801615e+117
-6.4809692e+117
-6.4405889e+117
-6.4988655e+117
-6.5015592e+117
-6.4976676e+117
-6.4980089e+117
-6.5019137e+117
-6.4992871e+117
-6.44123e+117
-6.4813407e+117
-6.4817306e+117
-6.4411448e+117
-6.4838938e+117
-6.4845373e+117
-6.4851186e+117
-6.4855989e+117
-6.4861842e+117
-6.4868126e+117
-6.487386e+117
-6.4878474e+117
-6.4905168e+117
-6.4935871e+117
-6.4902367e+117
-6.4908669e+117
-6.4942402e+117
-6.4912106e+117
-6.4920169e+117
-6.4954552e+117
-6.4914548e+117
-6.4948255e+117
-6.4924629e+117
-6.4917298e+117
-6.47382e+117
-6.4331987e+117
-6.4335783e+117
-6.4743353e+117
-6.4321769e+117
-6.4724969e+117
-6.473204e+117
-6.4322379e+117
-6.4750398e+117
-6.4759363e+117
-6.4351315e+117
-6.4344133e+117
-6.4774228e+117
-6.4766509e+117
-6.4361352e+117
-6.436873e+117
-6.4932571e+117
-6.4967753e+117
-6.4926313e+117
-6.4960771e+117
-6.4938452e+117
-6.493047e+117
-6.4944492e+117
-6.4980366e+117
-6.4938681e+117
-6.4974108e+117
-6.4951697e+117
-6.4944945e+117
-6.4409376e+117
-6.4405424e+117
-6.463014e+117
-6.4634172e+117
-6.4746286e+117
-6.47498e+117
-6.440163e+117
-6.4398029e+117
-6.4622013e+117
-6.4626298e+117
-6.4738108e+117
-6.4742284e+117
-6.44232e+117
-6.4426609e+117
-6.4648608e+117
-6.4645783e+117
-6.4760635e+117
-6.4763406e+117
-6.4753322e+117
-6.463876e+117
-6.4643054e+117
-6.4418907e+117
-6.4414032e+117
-6.4757084e+117
-6.4435491e+117
-6.4438765e+117
-6.4657838e+117
-6.4661107e+117
-6.4775744e+117
-6.47729e+117
-6.4429607e+117
-6.443253e+117
-6.4654637e+117
-6.4651389e+117
-6.4766451e+117
-6.4769688e+117
-6.4442503e+117
-6.444723e+117
-6.4669144e+117
-6.4664487e+117
-6.4783572e+117
-6.4779283e+117
-6.445825e+117
-6.4452544e+117
-6.467384e+117
-6.4788102e+117
-6.4678814e+117
-6.479222e+117
-6.4836116e+117
-6.4921706e+117
-6.4840484e+117
-6.4926059e+117
-6.4844174e+117
-6.4929853e+117
-6.4847309e+117
-6.4932605e+117
-6.4849806e+117
-6.4935163e+117
-6.4853312e+117
-6.4938583e+117
-6.4860453e+117
-6.4945143e+117
-6.4857535e+117
-6.4942268e+117
-6.4990477e+117
-6.5009581e+117
-6.4971678e+117
-6.4975606e+117
-6.5013436e+117
-6.4994266e+117
-6.4997582e+117
-6.5017182e+117
-6.497935e+117
-6.4982006e+117
-6.5019469e+117
-6.4999878e+117
-6.4416416e+117
-6.4815593e+117
-6.4819444e+117
-6.4416259e+117
-6.4822889e+117
-6.4822482e+117
-6.4418607e+117
-6.4415422e+117
-6.50022e+117
-6.5022278e+117
-6.4984769e+117
-6.4987629e+117
-6.5025053e+117
-6.5005062e+117
-6.4991092e+117
-6.5027912e+117
-6.4994002e+117
-6.5030291e+117
-6.5009327e+117
-6.5007349e+117
-6.4416554e+117
-6.4822873e+117
-6.4825e+117
-6.4415769e+117
-6.4416371e+117
-6.4825724e+117
-6.4828363e+117
-6.441506e+117
-6.4887839e+117
-6.4971182e+117
-6.4884388e+117
-6.496789e+117
-6.4875853e+117
-6.4959999e+117
-6.4879877e+117
-6.4963976e+117
-6.4863559e+117
-6.4948389e+117
-6.4866851e+117
-6.4951588e+117
-6.4869735e+117
-6.4954357e+117
-6.4872192e+117
-6.4956663e+117
-6.5011521e+117
-6.5033367e+117
-6.4997333e+117
-6.5000057e+117
-6.5035847e+117
-6.5013778e+117
-6.5015499e+117
-6.5038114e+117
-6.5002735e+117
-6.5004931e+117
-6.5040153e+117
-6.5018185e+117
-6.4416126e+117
-6.4828404e+117
-6.4830639e+117
-6.4412505e+117
-6.4834253e+117
-6.4832951e+117
-6.4415489e+117
-6.4415364e+117
-6.5011791e+117
-6.5046979e+117
-6.5008139e+117
-6.5042896e+117
-6.5020267e+117
-6.5024487e+117
-6.4415964e+117
-6.4834568e+117
-6.4839763e+117
-6.4421574e+117
-6.5027491e+117
-6.5050537e+117
-6.5015751e+117
-6.5018972e+117
-6.5053445e+117
-6.5030482e+117
-6.4844281e+117
-6.4843059e+117
-6.4425929e+117
-6.4424157e+117
-6.4003129e+117
-6.3649e+117
-6.3646444e+117
-6.3999978e+117
-6.4005062e+117
-6.3652109e+117
-6.365087e+117
-6.4004431e+117
-6.3630956e+117
-6.3986369e+117
-6.3990146e+117
-6.3635157e+117
-6.3995937e+117
-6.3643367e+117
-6.3638946e+117
-6.3990855e+117
-6.3639824e+117
-6.3642457e+117
-6.3632004e+117
-6.3635416e+117
-6.3620157e+117
-6.3977073e+117
-6.3974888e+117
-6.36174e+117
-6.3615475e+117
-6.3973987e+117
-6.3972182e+117
-6.3614677e+117
-6.3615391e+117
-6.3971904e+117
-6.3975906e+117
-6.3617788e+117
-6.3620943e+117
-6.397856e+117
-6.3980793e+117
-6.3625573e+117
-6.3970275e+117
-6.3616554e+117
-6.3618903e+117
-6.3972031e+117
-6.3971892e+117
-6.3617781e+117
-6.3616919e+117
-6.3971172e+117
-6.3976546e+117
-6.3620809e+117
-6.3619148e+117
-6.3973063e+117
-6.3621327e+117
-6.3977528e+117
-6.3976778e+117
-6.3621194e+117
-6.3976986e+117
-6.3627705e+117
-6.4008474e+117
-6.3644431e+117
-6.3630505e+117
-6.3977286e+117
-6.3644223e+117
-6.4008446e+117
-6.3974062e+117
-6.3623293e+117
-6.3624928e+117
-6.3975823e+117
-6.4006076e+117
-6.3642738e+117
-6.3638643e+117
-6.4000382e+117
-6.3974314e+117
-6.3621215e+117
-6.3622067e+117
-6.3974199e+117
-6.3971917e+117
-6.3619756e+117
-6.3620319e+117
-6.3973287e+117
-6.398328e+117
-6.3620572e+117
-6.3615051e+117
-6.3977337e+117
-6.3994911e+117
-6.3632783e+117
-6.3627587e+117
-6.3990663e+117
-6.3581164e+117
-6.394483e+117
-6.395331e+117
-6.3589063e+117
-6.3969595e+117
-6.3607034e+117
-6.3597693e+117
-6.3961535e+117
-6.3928903e+117
-6.3569032e+117
-6.3563764e+117
-6.3924844e+117
-6.3937599e+117
-6.3574849e+117
-6.3570419e+117
-6.3933078e+117
-6.3771103e+117
-6.3384223e+117
-6.3759137e+117
-6.3373895e+117
-6.3794635e+117
-6.340677e+117
-6.378325e+117
-6.3394827e+117
-6.3817629e+117
-6.3427538e+117
-6.3805921e+117
-6.3416974e+117
-6.3837232e+117
-6.3448251e+117
-6.3828352e+117
-6.3437934e+117
-6.3721107e+117
-6.3336086e+117
-6.3706264e+117
-6.3322737e+117
-6.3747055e+117
-6.3362856e+117
-6.3735088e+117
-6.3349238e+117
-6.3670403e+117
-6.3289664e+117
-6.3659133e+117
-6.328069e+117
-6.368152e+117
-6.3299011e+117
-6.3692875e+117
-6.3310665e+117
-6.3816627e+117
-6.3467086e+117
-6.3462327e+117
-6.3809806e+117
-6.3471387e+117
-6.3822913e+117
-6.382849e+117
-6.347653e+117
-6.3842867e+117
-6.348969e+117
-6.3482279e+117
-6.3834949e+117
-6.3857945e+117
-6.3504796e+117
-6.3497672e+117
-6.3851222e+117
-6.3869717e+117
-6.3513242e+117
-6.3510093e+117
-6.3864529e+117
-6.3884377e+117
-6.3526899e+117
-6.351981e+117
-6.3877465e+117
-6.3900848e+117
-6.3541541e+117
-6.3534125e+117
-6.389233e+117
-6.3915876e+117
-6.3556653e+117
-6.3548875e+117
-6.3908546e+117
-6.3543164e+117
-6.3176257e+117
-6.3542434e+117
-6.3179162e+117
-6.3546262e+117
-6.3177326e+117
-6.3548472e+117
-6.3179751e+117
-6.3552607e+117
-6.3182964e+117
-6.3558921e+117
-6.3188236e+117
-6.3573639e+117
-6.3203083e+117
-6.3566733e+117
-6.3195043e+117
-6.358766e+117
-6.3214379e+117
-6.3580935e+117
-6.3209289e+117
-6.360313e+117
-6.3227823e+117
-6.3594528e+117
-6.3218534e+117
-6.3614153e+117
-6.3236998e+117
-6.3626008e+117
-6.3247296e+117
-6.363737e+117
-6.3258122e+117
-6.3648136e+117
-6.3270325e+117
-6.2003982e+117
-6.179328e+117
-6.1999351e+117
-6.1797224e+117
-6.2222231e+117
-6.2457937e+117
-6.2459747e+117
-6.222537e+117
-6.1800888e+117
-6.2006361e+117
-6.1798764e+117
-6.2004604e+117
-6.222741e+117
-6.2463143e+117
-6.2229317e+117
-6.2465228e+117
-6.1804135e+117
-6.200898e+117
-6.2011101e+117
-6.1805948e+117
-6.1804013e+117
-6.2007779e+117
-6.1802713e+117
-6.2005027e+117
-6.2464249e+117
-6.223246e+117
-6.2466336e+117
-6.2232349e+117
-6.2226245e+117
-6.2459312e+117
-6.2229834e+117
-6.2462509e+117
-6.2724779e+117
-6.3008499e+117
-6.2722807e+117
-6.3006731e+117
-6.2725083e+117
-6.3007388e+117
-6.3004367e+117
-6.2722557e+117
-6.3314027e+117
-6.331591e+117
-6.3311331e+117
-6.3307864e+117
-6.272017e+117
-6.2717081e+117
-6.3001386e+117
-6.2998161e+117
-6.3304126e+117
-6.3300868e+117
-6.3003633e+117
-6.2717605e+117
-6.3001586e+117
-6.2719551e+117
-6.3309218e+117
-6.3311263e+117
-6.1986163e+117
-6.1774654e+117
-6.1980083e+117
-6.1780242e+117
-6.2203696e+117
-6.220943e+117
-6.2440158e+117
-6.2445451e+117
-6.1994661e+117
-6.1784967e+117
-6.1990485e+117
-6.1789038e+117
-6.2450727e+117
-6.2213904e+117
-6.2218164e+117
-6.2454579e+117
-6.299e+117
-6.2700359e+117
-6.2984737e+117
-6.2705657e+117
-6.3292806e+117
-6.3297398e+117
-6.271445e+117
-6.2998441e+117
-6.2710554e+117
-6.2994083e+117
-6.3301492e+117
-6.3306045e+117
-6.0440104e+117
-6.0440507e+117
-6.0589053e+117
-6.0588911e+117
-6.0440148e+117
-6.0440315e+117
-6.0589278e+117
-6.0589783e+117
-6.0741301e+117
-6.073981e+117
-6.0892869e+117
-6.0739055e+117
-6.0894561e+117
-6.0896315e+117
-6.074049e+117
-6.0895256e+117
-6.0591806e+117
-6.0440811e+117
-6.0590688e+117
-6.0441554e+117
-6.0742162e+117
-6.0896937e+117
-6.0896114e+117
-6.0742146e+117
-6.043822e+117
-6.0586871e+117
-6.0588895e+117
-6.0440469e+117
-6.0889412e+117
-6.0736563e+117
-6.0737782e+117
-6.0890064e+117
-6.1228744e+117
-6.105343e+117
-6.1054839e+117
-6.1226544e+117
-6.1059976e+117
-6.1233928e+117
-6.1057731e+117
-6.1231421e+117
-6.1593348e+117
-6.1596268e+117
-6.140587e+117
-6.1408423e+117
-6.1411046e+117
-6.1598805e+117
-6.1413577e+117
-6.1601262e+117
-6.0421374e+117
-6.0569432e+117
-6.0575159e+117
-6.042646e+117
-6.0431446e+117
-6.0580163e+117
-6.0584712e+117
-6.04357e+117
-6.0873236e+117
-6.0719667e+117
-6.0725314e+117
-6.0878787e+117
-6.0883803e+117
-6.0730161e+117
-6.0733603e+117
-6.0885814e+117
-6.1216462e+117
-6.1037564e+117
-6.1210678e+117
-6.1043261e+117
-6.1389615e+117
-6.1395244e+117
-6.1576093e+117
-6.1581512e+117
-6.1050281e+117
-6.1223637e+117
-6.1047844e+117
-6.1220473e+117
-6.1586203e+117
-6.1399492e+117
-6.1402898e+117
-6.1589918e+117
-6.1061665e+117
-6.1236665e+117
-6.1237912e+117
-6.1062884e+117
-6.1605155e+117
-6.1416553e+117
-6.1603945e+117
-6.1417797e+117
-6.123735e+117
-6.1063327e+117
-6.1238145e+117
-6.1062563e+117
-6.1417868e+117
-6.1604675e+117
-6.1603682e+117
-6.1417025e+117
-6.1964194e+117
-6.1755953e+117
-6.1961113e+117
-6.1758619e+117
-6.2184826e+117
-6.2421642e+117
-6.2424676e+117
-6.2187626e+117
-6.1768265e+117
-6.1973409e+117
-6.1762727e+117
-6.1968018e+117
-6.2191408e+117
-6.2428139e+117
-6.2196899e+117
-6.2433572e+117
-6.2968767e+117
-6.2682129e+117
-6.2966729e+117
-6.2684836e+117
-6.2693995e+117
-6.2688547e+117
-6.2973088e+117
-6.2978559e+117
-6.3275655e+117
-6.3277332e+117
-6.328702e+117
-6.3281383e+117
-6.1758678e+117
-6.1756306e+117
-6.1963661e+117
-6.1961268e+117
-6.2184756e+117
-6.2421568e+117
-6.2187191e+117
-6.2424113e+117
-6.1959663e+117
-6.1754762e+117
-6.1959774e+117
-6.1754451e+117
-6.2183367e+117
-6.2183168e+117
-6.2420094e+117
-6.2419757e+117
-6.2685218e+117
-6.2970874e+117
-6.2682576e+117
-6.2968094e+117
-6.32775e+117
-6.3280716e+117
-6.2680432e+117
-6.2965499e+117
-6.2680891e+117
-6.2966148e+117
-6.3275227e+117
-6.327478e+117
-6.1023059e+117
-6.102232e+117
-6.1196129e+117
-6.1195057e+117
-6.1373014e+117
-6.1558495e+117
-6.1374522e+117
-6.1560471e+117
-6.1021892e+117
-6.1194055e+117
-6.1021844e+117
-6.1194283e+117
-6.1371996e+117
-6.137151e+117
-6.1557204e+117
-6.1556747e+117
-6.0408723e+117
-6.0409874e+117
-6.0554809e+117
-6.0554854e+117
-6.0703561e+117
-6.0857428e+117
-6.0704198e+117
-6.0858174e+117
-6.0555411e+117
-6.0409684e+117
-6.0554964e+117
-6.040929e+117
-6.070367e+117
-6.0704222e+117
-6.0857219e+117
-6.0857419e+117
-6.0558218e+117
-6.0410379e+117
-6.0556414e+117
-6.0411524e+117
-6.0705328e+117
-6.0858849e+117
-6.0861335e+117
-6.0707573e+117
-6.0564998e+117
-6.0413645e+117
-6.0560914e+117
-6.0416858e+117
-6.0710457e+117
-6.0863706e+117
-6.0714123e+117
-6.086659e+117
-6.1196742e+117
-6.102298e+117
-6.1195167e+117
-6.1025003e+117
-6.1558345e+117
-6.1373069e+117
-6.1374873e+117
-6.1560422e+117
-6.1031174e+117
-6.1204527e+117
-6.1027668e+117
-6.1200235e+117
-6.1564692e+117
-6.1378753e+117
-6.1383574e+117
-6.1569957e+117
-5.858193e+117
-5.868104e+117
-5.8677727e+117
-5.8578614e+117
-5.8795088e+117
-5.8791773e+117
-5.8675723e+117
-5.8789999e+117
-5.8790764e+117
-5.8676028e+117
-5.8576213e+117
-5.857616e+117
-5.8310685e+117
-5.8228062e+117
-5.822534e+117
-5.8307309e+117
-5.8144247e+117
-5.8061442e+117
-5.8060776e+117
-5.8142202e+117
-5.8304551e+117
-5.8222437e+117
-5.8220162e+117
-5.8302394e+117
-5.805554e+117
-5.8059183e+117
-5.8139787e+117
-5.8137041e+117
-5.8391794e+117
-5.8395141e+117
-5.8482781e+117
-5.847948e+117
-5.8387491e+117
-5.8389295e+117
-5.8477008e+117
-5.8476022e+117
-5.8577393e+117
-5.8677846e+117
-5.8680714e+117
-5.8579459e+117
-5.8793186e+117
-5.8796082e+117
-5.8683112e+117
-5.8798945e+117
-5.8801639e+117
-5.8685662e+117
-5.8581581e+117
-5.8584129e+117
-5.8133955e+117
-5.8050337e+117
-5.8044482e+117
-5.8129331e+117
-5.8301096e+117
-5.8217952e+117
-5.8214891e+117
-5.8299646e+117
-5.8388682e+117
-5.8386896e+117
-5.8478518e+117
-5.8480983e+117
-5.8386718e+117
-5.8386946e+117
-5.8476281e+117
-5.8477345e+117
-5.8896243e+117
-5.9004269e+117
-5.9001706e+117
-5.8893236e+117
-5.8891611e+117
-5.9000416e+117
-5.9001097e+117
-5.889244e+117
-5.9229944e+117
-5.9116217e+117
-5.9231961e+117
-5.9113803e+117
-5.9229874e+117
-5.9113002e+117
-5.9229347e+117
-5.9113427e+117
-5.8895155e+117
-5.9003716e+117
-5.9006523e+117
-5.8898037e+117
-5.8900768e+117
-5.9009231e+117
-5.9011632e+117
-5.8903379e+117
-5.9234509e+117
-5.9116146e+117
-5.923228e+117
-5.9118549e+117
-5.9121381e+117
-5.9237086e+117
-5.9238677e+117
-5.9123237e+117
-5.7978159e+117
-5.7896328e+117
-5.7898603e+117
-5.7978756e+117
-5.7814054e+117
-5.7732556e+117
-5.7737083e+117
-5.781717e+117
-5.7978e+117
-5.7898672e+117
-5.7893468e+117
-5.7973253e+117
-5.7734314e+117
-5.7738572e+117
-5.7817835e+117
-5.7813193e+117
-5.8591087e+117
-5.8710924e+117
-5.87162e+117
-5.8595797e+117
-5.8814522e+117
-5.8818343e+117
-5.8484292e+117
-5.8391958e+117
-5.8396772e+117
-5.8488519e+117
-5.8910739e+117
-5.9016406e+117
-5.9018791e+117
-5.8913976e+117
-5.8916947e+117
-5.9020278e+117
-5.9021951e+117
-5.8918777e+117
-5.9126582e+117
-5.9240783e+117
-5.9241022e+117
-5.9127694e+117
-5.9128365e+117
-5.9241034e+117
-5.9241371e+117
-5.9129259e+117
-5.9351481e+117
-5.9349572e+117
-5.9474087e+117
-5.9472535e+117
-5.9599979e+117
-5.9598995e+117
-5.9728914e+117
-5.9728631e+117
-5.9349376e+117
-5.9472558e+117
-5.9473338e+117
-5.934984e+117
-5.9729335e+117
-5.9730616e+117
-5.9599293e+117
-5.960024e+117
-5.9998001e+117
-5.9861344e+117
-5.9996286e+117
-5.986187e+117
-5.9863169e+117
-6.0000116e+117
-6.0002329e+117
-5.986481e+117
-6.0134457e+117
-6.0276029e+117
-6.0137587e+117
-6.028029e+117
-6.0284433e+117
-6.028798e+117
-6.014074e+117
-6.0143568e+117
-5.9866933e+117
-6.0004735e+117
-6.0006754e+117
-5.9868872e+117
-5.9870636e+117
-5.9870343e+117
-6.0007787e+117
-6.0007982e+117
-6.0146299e+117
-6.0290888e+117
-6.0293121e+117
-6.0148162e+117
-6.0148952e+117
-6.0148887e+117
-6.0293262e+117
-6.0293063e+117
-5.93521e+117
-5.9475248e+117
-5.9353954e+117
-5.9476959e+117
-5.960383e+117
-5.9602099e+117
-5.9732518e+117
-5.9734307e+117
-5.9480209e+117
-5.9356429e+117
-5.9479158e+117
-5.9357604e+117
-5.9735944e+117
-5.9605731e+117
-5.9606429e+117
-5.9736296e+117
-5.9360935e+117
-5.9483835e+117
-5.9481717e+117
-5.9362545e+117
-5.9606291e+117
-5.9734826e+117
-5.9607447e+117
-5.9735004e+117
-6.0006132e+117
-5.9868185e+117
-6.0005703e+117
-5.9868426e+117
-5.9358462e+117
-5.9358198e+117
-5.9479421e+117
-5.9479366e+117
-5.9358465e+117
-5.9358904e+117
-5.9480746e+117
-5.947985e+117
-5.9605491e+117
-5.9735123e+117
-5.9606524e+117
-5.9736177e+117
-5.9604825e+117
-5.9734355e+117
-5.9734128e+117
-5.9604774e+117
-5.9870254e+117
-5.9869213e+117
-6.0007766e+117
-6.0006919e+117
-6.014842e+117
-6.0292917e+117
-6.0148941e+117
-6.0293093e+117
-6.0005671e+117
-5.9868407e+117
-6.0006203e+117
-5.9867956e+117
-6.0147953e+117
-6.0292859e+117
-6.0292864e+117
-6.0147492e+117
-5.9854951e+117
-5.9987961e+117
-5.9989323e+117
-5.9856213e+117
-5.9856465e+117
-5.9856776e+117
-5.9989297e+117
-5.9989178e+117
-6.0266382e+117
-6.0124882e+117
-6.0265133e+117
-6.0125835e+117
-6.0125472e+117
-6.0266169e+117
-6.0125748e+117
-6.0265587e+117
-5.9856313e+117
-5.9857422e+117
-5.9989429e+117
-5.9990391e+117
-6.0127147e+117
-6.0266432e+117
-6.012613e+117
-6.026746e+117
-5.9994537e+117
-5.9858272e+117
-5.9991783e+117
-5.986123e+117
-6.0128513e+117
-6.0269064e+117
-6.0271344e+117
-6.0130581e+117
-5.9477498e+117
-5.9358321e+117
-5.9477283e+117
-5.9357882e+117
-5.9599579e+117
-5.9599979e+117
-5.9725236e+117
-5.972593e+117
-5.9477669e+117
-5.9357398e+117
-5.9477258e+117
-5.9356792e+117
-5.9726666e+117
-5.9600276e+117
-5.9600523e+117
-5.9726285e+117
-5.9478729e+117
-5.9356991e+117
-5.9355994e+117
-5.9477907e+117
-5.9601811e+117
-5.9727633e+117
-5.9601413e+117
-5.9726195e+117
-5.9729575e+117
-5.9602393e+117
-5.9601327e+117
-5.972794e+117
-5.9353162e+117
-5.9477962e+117
-5.9355188e+117
-5.9475753e+117
-5.8601553e+117
-5.8700708e+117
-5.8696759e+117
-5.8597577e+117
-5.8815044e+117
-5.8810837e+117
-5.8695465e+117
-5.8808149e+117
-5.880585e+117
-5.8693111e+117
-5.8595971e+117
-5.8593731e+117
-5.832631e+117
-5.8241968e+117
-5.8235681e+117
-5.8320541e+117
-5.8156027e+117
-5.8070845e+117
-5.8063552e+117
-5.8149069e+117
-5.8058118e+117
-5.8059993e+117
-5.8145648e+117
-5.8144478e+117
-5.8318052e+117
-5.8232466e+117
-5.8231326e+117
-5.8316521e+117
-5.8407393e+117
-5.8412335e+117
-5.8501293e+117
-5.8496916e+117
-5.8403215e+117
-5.8405083e+117
-5.8494797e+117
-5.8492868e+117
-5.8590828e+117
-5.8690078e+117
-5.8689135e+117
-5.8590244e+117
-5.8803652e+117
-5.8802213e+117
-5.8688812e+117
-5.8801023e+117
-5.8798693e+117
-5.8686062e+117
-5.8590027e+117
-5.8587231e+117
-5.8315615e+117
-5.8231445e+117
-5.8231388e+117
-5.8315427e+117
-5.8144701e+117
-5.8057806e+117
-5.8058938e+117
-5.8145089e+117
-5.8062466e+117
-5.8061194e+117
-5.8145922e+117
-5.8146146e+117
-5.8315629e+117
-5.8231467e+117
-5.8230683e+117
-5.831405e+117
-5.8401428e+117
-5.8401522e+117
-5.8490483e+117
-5.8490223e+117
-5.8399096e+117
-5.8401303e+117
-5.8489859e+117
-5.8487424e+117
-5.9018017e+117
-5.8915357e+117
-5.9021124e+117
-5.8911395e+117
-5.9129959e+117
-5.9127662e+117
-5.9242273e+117
-5.9240962e+117
-5.9013359e+117
-5.8908394e+117
-5.9015498e+117
-5.8906128e+117
-5.9239911e+117
-5.9125927e+117
-5.9123866e+117
-5.923841e+117
-5.9010508e+117
-5.8904584e+117
-5.9012221e+117
-5.8902927e+117
-5.9238178e+117
-5.9123326e+117
-5.9121573e+117
-5.9236777e+117
-5.9006569e+117
-5.890125e+117
-5.9008796e+117
-5.8899011e+117
-5.9235672e+117
-5.9120225e+117
-5.9117891e+117
-5.92335e+117
-5.7985084e+117
-5.7900941e+117
-5.7892576e+117
-5.7977114e+117
-5.7816614e+117
-5.7733731e+117
-5.7725146e+117
-5.7807833e+117
-5.7720165e+117
-5.7721362e+117
-5.7803721e+117
-5.7802369e+117
-5.7973364e+117
-5.7888308e+117
-5.7886327e+117
-5.7971137e+117
-5.772819e+117
-5.7723799e+117
-5.7806672e+117
-5.7810967e+117
-5.7721452e+117
-5.7720103e+117
-5.7801589e+117
-5.7803465e+117
-5.7970441e+117
-5.7885351e+117
-5.7887466e+117
-5.7972089e+117
-5.7975389e+117
-5.7890985e+117
-5.7894537e+117
-5.7977848e+117
-5.7650671e+117
-5.756945e+117
-5.7561351e+117
-5.7642048e+117
-5.7489074e+117
-5.7411063e+117
-5.7404601e+117
-5.7481448e+117
-5.7398636e+117
-5.7401484e+117
-5.7477785e+117
-5.7475982e+117
-5.7638522e+117
-5.7557468e+117
-5.7556005e+117
-5.7637277e+117
-5.7333779e+117
-5.7258054e+117
-5.7253324e+117
-5.7327964e+117
-5.7182116e+117
-5.7105508e+117
-5.7103246e+117
-5.717822e+117
-5.7103025e+117
-5.7104741e+117
-5.7177601e+117
-5.7175212e+117
-5.7325649e+117
-5.7251335e+117
-5.7248051e+117
-5.732221e+117
-5.7092977e+117
-5.7095516e+117
-5.7167877e+117
-5.7164748e+117
-5.7316908e+117
-5.7241473e+117
-5.72381e+117
-5.7313724e+117
-5.7637448e+117
-5.7555454e+117
-5.7554934e+117
-5.7637904e+117
-5.7474027e+117
-5.7394758e+117
-5.7392315e+117
-5.7472488e+117
-5.7396967e+117
-5.7392441e+117
-5.747242e+117
-5.7477196e+117
-5.7639403e+117
-5.7555573e+117
-5.7560132e+117
-5.764389e+117
-5.8546495e+117
-5.8536724e+117
-5.8686697e+117
-5.8676367e+117
-5.8668618e+117
-5.8664358e+117
-5.8529379e+117
-5.8524991e+117
-5.8154172e+117
-5.7967307e+117
-5.8144709e+117
-5.7961686e+117
-5.831154e+117
-5.8319866e+117
-5.8415126e+117
-5.8406002e+117
-5.8300869e+117
-5.83061e+117
-5.8399653e+117
-5.8394803e+117
-5.8523292e+117
-5.8523764e+117
-5.8663004e+117
-5.866346e+117
-5.8664994e+117
-5.8667344e+117
-5.8525182e+117
-5.8527275e+117
-5.7958207e+117
-5.7956477e+117
-5.8138372e+117
-5.8140632e+117
-5.8300557e+117
-5.8298448e+117
-5.8393864e+117
-5.8396112e+117
-5.8297097e+117
-5.8298081e+117
-5.8392792e+117
-5.8392465e+117
-5.8806743e+117
-5.8922537e+117
-5.8912324e+117
-5.8796188e+117
-5.87881e+117
-5.8904341e+117
-5.8900024e+117
-5.8783809e+117
-5.9147065e+117
-5.9039042e+117
-5.9156298e+117
-5.9029313e+117
-5.9135657e+117
-5.9021679e+117
-5.9139923e+117
-5.9017334e+117
-5.8782842e+117
-5.8898888e+117
-5.8898919e+117
-5.878308e+117
-5.8784157e+117
-5.8899857e+117
-5.8901905e+117
-5.8786374e+117
-5.9133787e+117
-5.9015968e+117
-5.9134101e+117
-5.9015839e+117
-5.9018534e+117
-5.9016729e+117
-5.9134679e+117
-5.9136229e+117
-5.7784823e+117
-5.7609727e+117
-5.7611192e+117
-5.778163e+117
-5.7778879e+117
-5.7610273e+117
-5.7610417e+117
-5.7779178e+117
-5.8522206e+117
-5.8527301e+117
-5.8705981e+117
-5.8710527e+117
-5.8716725e+117
-5.8723312e+117
-5.8533988e+117
-5.8540197e+117
-5.8237271e+117
-5.8149825e+117
-5.8155835e+117
-5.8243006e+117
-5.8065431e+117
-5.7976551e+117
-5.7983305e+117
-5.8071711e+117
-5.7992568e+117
-5.7988591e+117
-5.8076659e+117
-5.8080571e+117
-5.824838e+117
-5.8160604e+117
-5.8164465e+117
-5.8252768e+117
-5.8339942e+117
-5.833528e+117
-5.842398e+117
-5.8429438e+117
-5.8329255e+117
-5.8323679e+117
-5.8412306e+117
-5.8417697e+117
-5.8507012e+117
-5.8511432e+117
-5.8694074e+117
-5.8697486e+117
-5.8700556e+117
-5.8703281e+117
-5.8515886e+117
-5.8519473e+117
-5.7969317e+117
-5.7961548e+117
-5.8050393e+117
-5.8058108e+117
-5.8041264e+117
-5.795238e+117
-5.7955485e+117
-5.8044814e+117
-5.8215692e+117
-5.8126193e+117
-5.8130231e+117
-5.8220038e+117
-5.8225254e+117
-5.8135578e+117
-5.814294e+117
-5.8231727e+117
-5.8319127e+117
-5.8313773e+117
-5.8404079e+117
-5.8408513e+117
-5.8395318e+117
-5.8304004e+117
-5.8308241e+117
-5.8399238e+117
-5.8803719e+117
-5.8915006e+117
-5.8917267e+117
-5.8806477e+117
-5.8808758e+117
-5.8919457e+117
-5.892154e+117
-5.8811106e+117
-5.9145036e+117
-5.9028028e+117
-5.9143527e+117
-5.9029806e+117
-5.9148638e+117
-5.9031865e+117
-5.9146887e+117
-5.9033644e+117
-5.7629346e+117
-5.7623991e+117
-5.7707795e+117
-5.7714433e+117
-5.7702738e+117
-5.7621574e+117
-5.7620317e+117
-5.7702864e+117
-5.7867757e+117
-5.7781925e+117
-5.778345e+117
-5.7870327e+117
-5.7876531e+117
-5.7789326e+117
-5.7796532e+117
-5.7884236e+117
-5.7645543e+117
-5.7643152e+117
-5.7730588e+117
-5.7734291e+117
-5.7639642e+117
-5.7634775e+117
-5.7720512e+117
-5.7726283e+117
-5.7891313e+117
-5.7803283e+117
-5.780964e+117
-5.7898075e+117
-5.7903372e+117
-5.7814704e+117
-5.7818845e+117
-5.7907578e+117
-5.8814386e+117
-5.8925038e+117
-5.8928995e+117
-5.8818625e+117
-5.8824125e+117
-5.8934295e+117
-5.8940414e+117
-5.8830533e+117
-5.9155445e+117
-5.9037177e+117
-5.9151934e+117
-5.9040863e+117
-5.9051764e+117
-5.9046052e+117
-5.9160417e+117
-5.9165926e+117
-5.8546144e+117
-5.8553643e+117
-5.8730169e+117
-5.873767e+117
-5.8745575e+117
-5.8754324e+117
-5.8561718e+117
-5.8571056e+117
-5.8014527e+117
-5.8006441e+117
-5.8095669e+117
-5.8105027e+117
-5.8083142e+117
-5.7995231e+117
-5.7999968e+117
-5.8088286e+117
-5.8256216e+117
-5.8167273e+117
-5.8172999e+117
-5.8262483e+117
-5.8270554e+117
-5.818085e+117
-5.8190617e+117
-5.8280304e+117
-5.8368926e+117
-5.8359647e+117
-5.8450155e+117
-5.8459386e+117
-5.8351093e+117
-5.83446e+117
-5.8434825e+117
-5.8441871e+117
-5.8837927e+117
-5.884522e+117
-5.8954682e+117
-5.8947723e+117
-5.9058983e+117
-5.9172845e+117
-5.9179265e+117
-5.9065698e+117
-5.8969237e+117
-5.8852482e+117
-5.8961752e+117
-5.8860685e+117
-5.9072429e+117
-5.9185511e+117
-5.9078876e+117
-5.9191187e+117
-5.8869558e+117
-5.8878097e+117
-5.8977068e+117
-5.8984255e+117
-5.9091758e+117
-5.9197193e+117
-5.9202197e+117
-5.9085829e+117
-5.8884996e+117
-5.8890684e+117
-5.8995445e+117
-5.8990318e+117
-5.9097088e+117
-5.9101916e+117
-5.9207022e+117
-5.9211602e+117
-5.8580047e+117
-5.859021e+117
-5.87632e+117
-5.877226e+117
-5.8780017e+117
-5.8786372e+117
-5.8598731e+117
-5.8606185e+117
-5.8055379e+117
-5.8043277e+117
-5.8133866e+117
-5.8145874e+117
-5.8113888e+117
-5.8022842e+117
-5.8033208e+117
-5.812405e+117
-5.8288934e+117
-5.8199366e+117
-5.8209799e+117
-5.8299694e+117
-5.8309539e+117
-5.8219643e+117
-5.8231379e+117
-5.8320457e+117
-5.8407913e+117
-5.8398547e+117
-5.8488266e+117
-5.8496594e+117
-5.8388382e+117
-5.8378124e+117
-5.8468631e+117
-5.8478822e+117
-5.7910856e+117
-5.7822655e+117
-5.7825586e+117
-5.7914697e+117
-5.7737563e+117
-5.7647789e+117
-5.7648607e+117
-5.7739477e+117
-5.7655188e+117
-5.7650142e+117
-5.7741819e+117
-5.7747422e+117
-5.7919758e+117
-5.7828954e+117
-5.7834896e+117
-5.7926816e+117
-5.7694719e+117
-5.7682058e+117
-5.7774584e+117
-5.7787622e+117
-5.7672527e+117
-5.7662807e+117
-5.7754802e+117
-5.7764775e+117
-5.7934715e+117
-5.7842421e+117
-5.785258e+117
-5.7945007e+117
-5.7955149e+117
-5.7862686e+117
-5.7875444e+117
-5.7967548e+117
-5.9934404e+117
-5.979538e+117
-5.9930242e+117
-5.9799986e+117
-6.006829e+117
-6.0209009e+117
-6.021098e+117
-6.0071102e+117
-5.9806236e+117
-5.9939755e+117
-5.9803186e+117
-5.9937084e+117
-6.0074245e+117
-6.0214382e+117
-6.007703e+117
-6.021736e+117
-5.9312208e+117
-5.9430497e+117
-5.9434593e+117
-5.9316723e+117
-5.9325479e+117
-5.9321192e+117
-5.943869e+117
-5.9442564e+117
-5.9682141e+117
-5.9552913e+117
-5.9679014e+117
-5.9556479e+117
-5.9563534e+117
-5.9688188e+117
-5.9560187e+117
-5.9685391e+117
-5.9416435e+117
-5.9290365e+117
-5.9410918e+117
-5.9296359e+117
-5.9535359e+117
-5.9663315e+117
-5.966806e+117
-5.9540223e+117
-5.9426229e+117
-5.9302118e+117
-5.9421669e+117
-5.9307172e+117
-5.9545002e+117
-5.9672049e+117
-5.9549101e+117
-5.9675601e+117
-5.9809348e+117
-5.9942787e+117
-5.9945426e+117
-5.9811989e+117
-6.0220328e+117
-6.0080078e+117
-6.0082377e+117
-6.0222327e+117
-5.9814833e+117
-5.9817161e+117
-5.9947752e+117
-5.994955e+117
-6.0224478e+117
-6.0085943e+117
-6.022549e+117
-6.008456e+117
-5.9270229e+117
-5.9391496e+117
-5.9273367e+117
-5.9394514e+117
-5.9519531e+117
-5.9648025e+117
-5.9516545e+117
-5.9645144e+117
-5.9283796e+117
-5.9278342e+117
-5.9399349e+117
-5.9404753e+117
-5.9529522e+117
-5.9657729e+117
-5.9524208e+117
-5.9652527e+117
-5.9777795e+117
-5.9913168e+117
-5.9780453e+117
-5.9915755e+117
-6.0054506e+117
-6.0196072e+117
-6.0051603e+117
-6.0192742e+117
-5.9784798e+117
-5.9920041e+117
-5.9789879e+117
-5.9925003e+117
-6.0063659e+117
-6.0205072e+117
-6.0058889e+117
-6.0200556e+117
-5.9900924e+117
-5.9773284e+117
-5.9903212e+117
-5.976948e+117
-6.0174453e+117
-6.0037423e+117
-6.0035963e+117
-6.0173988e+117
-5.9899503e+117
-5.9766899e+117
-5.9899375e+117
-5.9765794e+117
-6.0174237e+117
-6.0035623e+117
-6.0035524e+117
-6.0174012e+117
-5.9276064e+117
-5.9267347e+117
-5.939662e+117
-5.9388632e+117
-5.9519945e+117
-5.9512991e+117
-5.9645116e+117
-5.9639587e+117
-5.9260944e+117
-5.9382837e+117
-5.93791e+117
-5.9256753e+117
-5.9635692e+117
-5.9633432e+117
-5.9508058e+117
-5.9504854e+117
-5.9255209e+117
-5.9377575e+117
-5.9254661e+117
-5.9377081e+117
-5.9503306e+117
-5.9503662e+117
-5.9632485e+117
-5.9632383e+117
-5.9257221e+117
-5.9379816e+117
-5.9255701e+117
-5.937821e+117
-5.9633775e+117
-5.950457e+117
-5.9506259e+117
-5.9635607e+117
-5.9900128e+117
-5.9765077e+117
-5.98994e+117
-5.9765255e+117
-6.0176934e+117
-6.0037098e+117
-6.0038748e+117
-6.0179657e+117
-5.976874e+117
-5.99041e+117
-5.9766836e+117
-5.9902037e+117
-6.0182835e+117
-6.0041289e+117
-6.0043654e+117
-6.01856e+117
-5.9771133e+117
-5.9772362e+117
-5.990656e+117
-5.990786e+117
-6.0046771e+117
-6.018833e+117
-6.0045514e+117
-6.0187113e+117
-5.9774032e+117
-5.9909608e+117
-5.9911514e+117
-5.9775889e+117
-6.0189761e+117
-6.0048259e+117
-6.0189423e+117
-6.0049197e+117
-5.926248e+117
-5.9263554e+117
-5.9384282e+117
-5.9385219e+117
-5.9510714e+117
-5.9639598e+117
-5.9509774e+117
-5.9638547e+117
-5.9265422e+117
-5.9386929e+117
-5.938859e+117
-5.9267012e+117
-5.9642742e+117
-5.9512303e+117
-5.9641136e+117
-5.9513813e+117
-5.6998654e+117
-5.7008614e+117
-5.7085443e+117
-5.7075939e+117
-5.7234848e+117
-5.7158264e+117
-5.7149494e+117
-5.7227619e+117
-5.7227037e+117
-5.7150574e+117
-5.715421e+117
-5.7230526e+117
-5.700358e+117
-5.6999719e+117
-5.7077203e+117
-5.7081419e+117
-5.7014758e+117
-5.7008303e+117
-5.708553e+117
-5.7093129e+117
-5.7235817e+117
-5.7158045e+117
-5.7166792e+117
-5.7245098e+117
-5.7254754e+117
-5.7177211e+117
-5.7183539e+117
-5.7262815e+117
-5.7023289e+117
-5.7020255e+117
-5.7101254e+117
-5.7106511e+117
-5.7340691e+117
-5.7331187e+117
-5.7415582e+117
-5.7426306e+117
-5.7398704e+117
-5.7313926e+117
-5.7323338e+117
-5.7408348e+117
-5.7592981e+117
-5.7501159e+117
-5.7512539e+117
-5.7605254e+117
-5.7574457e+117
-5.7483348e+117
-5.7492992e+117
-5.7584155e+117
-5.7306673e+117
-5.7302949e+117
-5.7386598e+117
-5.7390581e+117
-5.7391978e+117
-5.7310348e+117
-5.7304781e+117
-5.7388632e+117
-5.7561942e+117
-5.7471089e+117
-5.7475235e+117
-5.7566631e+117
-5.7561925e+117
-5.7473723e+117
-5.7471901e+117
-5.7561649e+117
-5.7248026e+117
-5.7179253e+117
-5.7183327e+117
-5.7250596e+117
-5.7444078e+117
-5.7281312e+117
-5.7282009e+117
-5.7442795e+117
-5.7544918e+117
-5.7467317e+117
-5.746309e+117
-5.754225e+117
-5.7395129e+117
-5.7321581e+117
-5.7316023e+117
-5.7389761e+117
-5.7317332e+117
-5.7315363e+117
-5.7388991e+117
-5.7391283e+117
-5.7544382e+117
-5.7463633e+117
-5.7466516e+117
-5.754866e+117
-5.7251357e+117
-5.7184126e+117
-5.7185003e+117
-5.7252611e+117
-5.7252461e+117
-5.7184165e+117
-5.7173128e+117
-5.7245055e+117
-5.7315703e+117
-5.7320016e+117
-5.7395663e+117
-5.7393904e+117
-5.7393729e+117
-5.7318921e+117
-5.7320334e+117
-5.7395713e+117
-5.7553044e+117
-5.7470136e+117
-5.7472947e+117
-5.7557115e+117
-5.7559492e+117
-5.7474257e+117
-5.7473871e+117
-5.7560778e+117
-5.7279155e+117
-5.727346e+117
-5.7437995e+117
-5.7441383e+117
-5.7425435e+117
-5.7256877e+117
-5.727082e+117
-5.743584e+117
-5.818274e+117
-5.7983714e+117
-5.7970971e+117
-5.8167895e+117
-5.7787784e+117
-5.7599172e+117
-5.7593681e+117
-5.7777047e+117
-5.7607863e+117
-5.7597833e+117
-5.777883e+117
-5.778567e+117
-5.816693e+117
-5.7970245e+117
-5.7972846e+117
-5.8165212e+117
-5.9923291e+117
-5.9797885e+117
-5.97949e+117
-5.9921103e+117
-6.005036e+117
-6.018136e+117
-6.0052037e+117
-6.018325e+117
-6.0178614e+117
-6.004891e+117
-6.0046264e+117
-6.0178923e+117
-5.9788532e+117
-5.9919284e+117
-5.9792289e+117
-5.9915631e+117
-5.9430228e+117
-5.9320273e+117
-5.9435801e+117
-5.9313597e+117
-5.9553795e+117
-5.9548826e+117
-5.9674099e+117
-5.9669961e+117
-5.9422191e+117
-5.9308265e+117
-5.9425426e+117
-5.9304056e+117
-5.9666887e+117
-5.9545086e+117
-5.9541523e+117
-5.9663024e+117
-5.9419705e+117
-5.9300901e+117
-5.9296232e+117
-5.9415133e+117
-5.9535407e+117
-5.9656482e+117
-5.9539007e+117
-5.9659446e+117
-5.9649699e+117
-5.9531618e+117
-5.9526428e+117
-5.9652211e+117
-5.9284146e+117
-5.9410866e+117
-5.9291214e+117
-5.9404191e+117
-5.9784687e+117
-5.9781307e+117
-5.9912261e+117
-5.9908858e+117
-6.0043721e+117
-6.0040813e+117
-6.0177433e+117
-6.0175519e+117
-5.9904283e+117
-5.9777211e+117
-5.9905597e+117
-5.9775612e+117
-6.0174289e+117
-6.0038599e+117
-6.0037632e+117
-6.0173775e+117
-5.8595605e+117
-5.8584569e+117
-5.8740296e+117
-5.8728776e+117
-5.872204e+117
-5.8717373e+117
-5.8578407e+117
-5.8574046e+117
-5.8348694e+117
-5.8360361e+117
-5.8459942e+117
-5.8448659e+117
-5.8340386e+117
-5.8343369e+117
-5.8443245e+117
-5.8439626e+117
-5.8570299e+117
-5.8567991e+117
-5.8713257e+117
-5.8709772e+117
-5.8705408e+117
-5.8697877e+117
-5.8565262e+117
-5.8558028e+117
-5.8338523e+117
-5.8339689e+117
-5.8437355e+117
-5.8435651e+117
-5.8328969e+117
-5.8335936e+117
-5.8432888e+117
-5.842531e+117
-5.8966072e+117
-5.8861821e+117
-5.8976964e+117
-5.8850073e+117
-5.909089e+117
-5.9081523e+117
-5.9204745e+117
-5.9196738e+117
-5.8953307e+117
-5.8842363e+117
-5.8958331e+117
-5.8837455e+117
-5.9190407e+117
-5.9074339e+117
-5.9069286e+117
-5.9185524e+117
-5.8944997e+117
-5.8833739e+117
-5.8949649e+117
-5.8829461e+117
-5.9182141e+117
-5.9065641e+117
-5.9060868e+117
-5.917737e+117
-5.8931898e+117
-5.8824097e+117
-5.8939286e+117
-5.8816582e+117
-5.9171874e+117
-5.9055106e+117
-5.904781e+117
-5.9164585e+117
-6.2888634e+117
-6.2607862e+117
-6.2884242e+117
-6.2611228e+117
-6.3182564e+117
-6.3185611e+117
-6.2620165e+117
-6.2897218e+117
-6.2615135e+117
-6.289202e+117
-6.3190255e+117
-6.3196481e+117
-6.1715342e+117
-6.1918828e+117
-6.1923516e+117
-6.1719236e+117
-6.1720636e+117
-6.1720076e+117
-6.1924164e+117
-6.1924777e+117
-6.237311e+117
-6.2137808e+117
-6.2370293e+117
-6.2141262e+117
-6.2145513e+117
-6.2380496e+117
-6.2143985e+117
-6.2377745e+117
-6.1908261e+117
-6.1702959e+117
-6.1904992e+117
-6.1705304e+117
-6.2122877e+117
-6.2354465e+117
-6.2356496e+117
-6.2125383e+117
-6.1914392e+117
-6.1707991e+117
-6.1910662e+117
-6.1711377e+117
-6.2128992e+117
-6.2361017e+117
-6.2132973e+117
-6.236552e+117
-6.2624683e+117
-6.2902497e+117
-6.2907211e+117
-6.2628255e+117
-6.3203108e+117
-6.320887e+117
-6.2633578e+117
-6.2637449e+117
-6.2913385e+117
-6.2918516e+117
-6.3222988e+117
-6.321595e+117
-6.1684633e+117
-6.1885874e+117
-6.1688955e+117
-6.1890395e+117
-6.2107646e+117
-6.2338307e+117
-6.2102522e+117
-6.2332443e+117
-6.1694234e+117
-6.1895946e+117
-6.1699031e+117
-6.1900806e+117
-6.2118669e+117
-6.2350218e+117
-6.2113615e+117
-6.2344794e+117
-6.2583865e+117
-6.2858665e+117
-6.2590314e+117
-6.286558e+117
-6.3162724e+117
-6.3155779e+117
-6.2597288e+117
-6.2603089e+117
-6.2873006e+117
-6.287917e+117
-6.3177638e+117
-6.3170583e+117
-6.167009e+117
-6.1665848e+117
-6.1865961e+117
-6.1870113e+117
-6.1673989e+117
-6.1676403e+117
-6.1874078e+117
-6.1876669e+117
-6.2083514e+117
-6.2078623e+117
-6.2307245e+117
-6.2313251e+117
-6.209266e+117
-6.232206e+117
-6.2090001e+117
-6.2319345e+117
-6.1678789e+117
-6.1879408e+117
-6.1882585e+117
-6.1681073e+117
-6.2326647e+117
-6.209545e+117
-6.2324673e+117
-6.2098005e+117
-6.1655409e+117
-6.1855145e+117
-6.1861564e+117
-6.1661337e+117
-6.2066905e+117
-6.229379e+117
-6.2299466e+117
-6.2072496e+117
-6.1630713e+117
-6.1827904e+117
-6.1835406e+117
-6.1637091e+117
-6.164282e+117
-6.1841758e+117
-6.1849373e+117
-6.1649851e+117
-6.2036907e+117
-6.2260996e+117
-6.2268045e+117
-6.204399e+117
-6.2052251e+117
-6.2277531e+117
-6.2285227e+117
-6.2059488e+117
-6.2777146e+117
-6.250342e+117
-6.27682e+117
-6.2511435e+117
-6.3056432e+117
-6.3065779e+117
-6.2796848e+117
-6.2521247e+117
-6.2787249e+117
-6.2529953e+117
-6.3076101e+117
-6.3087027e+117
-6.2814714e+117
-6.2538936e+117
-6.2806269e+117
-6.2545921e+117
-6.3097007e+117
-6.310639e+117
-6.2561314e+117
-6.2831873e+117
-6.2554456e+117
-6.2824131e+117
-6.3116557e+117
-6.3125685e+117
-6.2569899e+117
-6.2572873e+117
-6.2843615e+117
-6.2846984e+117
-6.3142964e+117
-6.3139553e+117
-6.2575549e+117
-6.2849817e+117
-6.2852657e+117
-6.2577931e+117
-6.3146115e+117
-6.3150157e+117
-6.0337417e+117
-6.0484873e+117
-6.0340996e+117
-6.0488544e+117
-6.063942e+117
-6.0794661e+117
-6.0635803e+117
-6.0791209e+117
-6.0345515e+117
-6.0493043e+117
-6.034975e+117
-6.0497078e+117
-6.0647874e+117
-6.0803114e+117
-6.0643899e+117
-6.0799091e+117
-6.0956419e+117
-6.1128927e+117
-6.0959616e+117
-6.1132063e+117
-6.1309573e+117
-6.1493938e+117
-6.1305979e+117
-6.1489792e+117
-6.0964002e+117
-6.1136513e+117
-6.0968136e+117
-6.1140783e+117
-6.1318654e+117
-6.1503565e+117
-6.1314329e+117
-6.1499024e+117
-6.0320327e+117
-6.0465756e+117
-6.0469721e+117
-6.0323798e+117
-6.0330489e+117
-6.0327431e+117
-6.0473694e+117
-6.0477001e+117
-6.0615393e+117
-6.0769704e+117
-6.0774212e+117
-6.0619596e+117
-6.0627488e+117
-6.062389e+117
-6.0778687e+117
-6.0782581e+117
-6.0315064e+117
-6.0457879e+117
-6.045908e+117
-6.0315524e+117
-6.0316171e+117
-6.0460042e+117
-6.0462271e+117
-6.0317089e+117
-6.0604951e+117
-6.075677e+117
-6.0758904e+117
-6.0606616e+117
-6.0608467e+117
-6.0761607e+117
-6.0765399e+117
-6.0611515e+117
-6.0916961e+117
-6.1084074e+117
-6.1087942e+117
-6.0919788e+117
-6.0923286e+117
-6.1091946e+117
-6.1096867e+117
-6.0927554e+117
-6.125833e+117
-6.1440121e+117
-6.14453e+117
-6.1262789e+117
-6.126769e+117
-6.1450771e+117
-6.1456781e+117
-6.127295e+117
-6.0932256e+117
-6.1101693e+117
-6.1106765e+117
-6.0936936e+117
-6.09457e+117
-6.0941647e+117
-6.1111424e+117
-6.1115434e+117
-6.1278241e+117
-6.1462384e+117
-6.1467672e+117
-6.1283279e+117
-6.1292302e+117
-6.1288188e+117
-6.1472647e+117
-6.1476963e+117
-6.0947192e+117
-6.0949383e+117
-6.1118497e+117
-6.1121025e+117
-6.1297811e+117
-6.1481813e+117
-6.1295224e+117
-6.1479401e+117
-6.095167e+117
-6.1123797e+117
-6.1126894e+117
-6.0954265e+117
-6.1485589e+117
-6.1300613e+117
-6.1484249e+117
-6.130256e+117
-6.0331764e+117
-6.0333012e+117
-6.0478801e+117
-6.0480145e+117
-6.0630514e+117
-6.0785157e+117
-6.062898e+117
-6.0783347e+117
-6.0333948e+117
-6.0481095e+117
-6.0481885e+117
-6.0334431e+117
-6.0788573e+117
-6.0631735e+117
-6.0786799e+117
-6.0632908e+117
-6.114819e+117
-6.0971949e+117
-6.1144901e+117
-6.0974929e+117
-6.1322685e+117
-6.1507347e+117
-6.150882e+117
-6.1324798e+117
-6.0978607e+117
-6.1151285e+117
-6.0976479e+117
-6.114944e+117
-6.132735e+117
-6.1512092e+117
-6.1329525e+117
-6.1514959e+117
-6.0502207e+117
-6.0353247e+117
-6.050031e+117
-6.0355106e+117
-6.0651082e+117
-6.0806496e+117
-6.0808818e+117
-6.065305e+117
-6.050817e+117
-6.0358277e+117
-6.0505176e+117
-6.0361319e+117
-6.0655759e+117
-6.0811075e+117
-6.0658597e+117
-6.0813613e+117
-6.0368067e+117
-6.0368723e+117
-6.0515006e+117
-6.0514616e+117
-6.0364225e+117
-6.0511004e+117
-6.0513061e+117
-6.036622e+117
-6.0663324e+117
-6.0818104e+117
-6.0661366e+117
-6.0816241e+117
-6.0664782e+117
-6.0819562e+117
-6.0819881e+117
-6.066508e+117
-6.0981083e+117
-6.1153836e+117
-6.1155893e+117
-6.0982967e+117
-6.0984407e+117
-6.1157356e+117
-6.0984778e+117
-6.1157805e+117
-6.1518347e+117
-6.1521152e+117
-6.1332419e+117
-6.1334674e+117
-6.1336715e+117
-6.1336231e+117
-6.1522636e+117
-6.1523217e+117
-6.1801195e+117
-6.1597945e+117
-6.1791508e+117
-6.1606384e+117
-6.1615295e+117
-6.1810607e+117
-6.1820556e+117
-6.162415e+117
-6.1998031e+117
-6.221988e+117
-6.2007884e+117
-6.2230337e+117
-6.2241746e+117
-6.2250999e+117
-6.2018284e+117
-6.2027844e+117
-6.1573795e+117
-6.1762294e+117
-6.1579369e+117
-6.1768872e+117
-6.1971912e+117
-6.2191503e+117
-6.1964682e+117
-6.2183586e+117
-6.1783389e+117
-6.1584581e+117
-6.1775756e+117
-6.1590581e+117
-6.1980127e+117
-6.2200061e+117
-6.2208455e+117
-6.198805e+117
-6.242177e+117
-6.2682848e+117
-6.2691778e+117
-6.2430246e+117
-6.2439052e+117
-6.2700598e+117
-6.2448154e+117
-6.2710028e+117
-6.2967561e+117
-6.2976222e+117
-6.299578e+117
-6.2985178e+117
-6.2734837e+117
-6.2459996e+117
-6.2722286e+117
-6.247153e+117
-6.3007762e+117
-6.3020495e+117
-6.2757596e+117
-6.2482995e+117
-6.2746307e+117
-6.2493151e+117
-6.3032892e+117
-6.3045449e+117
-6.0893854e+117
-6.0894408e+117
-6.1053404e+117
-6.105512e+117
-6.121954e+117
-6.1392454e+117
-6.1396462e+117
-6.1222325e+117
-6.1061519e+117
-6.0895766e+117
-6.1057681e+117
-6.0898487e+117
-6.1225838e+117
-6.1400673e+117
-6.1404957e+117
-6.1229539e+117
-6.0317909e+117
-6.0315888e+117
-6.0454405e+117
-6.0452677e+117
-6.0593894e+117
-6.0739964e+117
-6.0595073e+117
-6.074039e+117
-6.0451449e+117
-6.0313314e+117
-6.0450839e+117
-6.0313771e+117
-6.0593067e+117
-6.0740075e+117
-6.0741585e+117
-6.0593981e+117
-6.0453849e+117
-6.0314316e+117
-6.0453124e+117
-6.0313698e+117
-6.0313585e+117
-6.045483e+117
-6.0456288e+117
-6.031398e+117
-6.0596444e+117
-6.0744743e+117
-6.0598222e+117
-6.0747472e+117
-6.0750631e+117
-6.0753998e+117
-6.060036e+117
-6.0602761e+117
-6.1069619e+117
-6.0901694e+117
-6.1065168e+117
-6.0905205e+117
-6.0909304e+117
-6.1074727e+117
-6.1079935e+117
-6.0913446e+117
-6.1235145e+117
-6.1412011e+117
-6.1240865e+117
-6.1419146e+117
-6.1426882e+117
-6.1434219e+117
-6.1247283e+117
-6.125329e+117
-5.9950489e+117
-5.981857e+117
-5.9950483e+117
-5.9818696e+117
-6.0086291e+117
-6.0225241e+117
-6.0223496e+117
-6.0085282e+117
-5.9820603e+117
-5.9951604e+117
-5.9819283e+117
-5.9950443e+117
-6.0085517e+117
-6.0224034e+117
-6.0086762e+117
-6.022572e+117
-5.9339364e+117
-5.9453875e+117
-5.9457343e+117
-5.9342169e+117
-5.934861e+117
-5.9345148e+117
-5.9461144e+117
-5.9465468e+117
-5.9699658e+117
-5.9572628e+117
-5.9695654e+117
-5.9576166e+117
-5.9586051e+117
-5.9710384e+117
-5.9580844e+117
-5.9704574e+117
-5.9447896e+117
-5.9329669e+117
-5.9446009e+117
-5.9332052e+117
-5.9566121e+117
-5.9690016e+117
-5.9690124e+117
-5.9566948e+117
-5.9451225e+117
-5.9334085e+117
-5.9449406e+117
-5.9335978e+117
-5.9568476e+117
-5.9691446e+117
-5.9569848e+117
-5.9692771e+117
-5.9823369e+117
-5.9954609e+117
-5.9958544e+117
-5.9827309e+117
-5.983282e+117
-5.9964725e+117
-5.9839184e+117
-5.9971629e+117
-6.0229575e+117
-6.0234412e+117
-6.009027e+117
-6.0094559e+117
-6.0108396e+117
-6.0101064e+117
-6.0241051e+117
-6.0248583e+117
-5.8910993e+117
-5.891263e+117
-5.9014728e+117
-5.9016236e+117
-5.9121394e+117
-5.9227465e+117
-5.9229703e+117
-5.9119645e+117
-5.8913638e+117
-5.8913736e+117
-5.9018178e+117
-5.9017356e+117
-5.9122948e+117
-5.9124673e+117
-5.9231924e+117
-5.9234563e+117
-5.9005641e+117
-5.8895853e+117
-5.9000896e+117
-5.8900973e+117
-5.9107226e+117
-5.921634e+117
-5.921914e+117
-5.9110669e+117
-5.9012332e+117
-5.8905366e+117
-5.9009152e+117
-5.8908814e+117
-5.9113887e+117
-5.922175e+117
-5.9116388e+117
-5.9223673e+117
-5.8611496e+117
-5.8618642e+117
-5.8791286e+117
-5.879679e+117
-5.8802269e+117
-5.8806196e+117
-5.8625974e+117
-5.8630836e+117
-5.8329174e+117
-5.8241593e+117
-5.8251569e+117
-5.8337979e+117
-5.8423574e+117
-5.8415356e+117
-5.8503107e+117
-5.8510771e+117
-5.8156871e+117
-5.8066616e+117
-5.8078757e+117
-5.816773e+117
-5.8096718e+117
-5.8088068e+117
-5.8176054e+117
-5.8184171e+117
-5.8345564e+117
-5.8259147e+117
-5.826674e+117
-5.8352514e+117
-5.8437774e+117
-5.8431707e+117
-5.8518348e+117
-5.8523836e+117
-5.8632073e+117
-5.8633774e+117
-5.8807898e+117
-5.8809523e+117
-5.8810732e+117
-5.8810255e+117
-5.8635066e+117
-5.8633167e+117
-5.8355884e+117
-5.8271306e+117
-5.8273014e+117
-5.8357514e+117
-5.818915e+117
-5.8101765e+117
-5.810418e+117
-5.8190952e+117
-5.810021e+117
-5.8103826e+117
-5.819033e+117
-5.8186781e+117
-5.8357579e+117
-5.8272266e+117
-5.8268779e+117
-5.8354467e+117
-5.8439595e+117
-5.8442434e+117
-5.8528327e+117
-5.852605e+117
-5.8442142e+117
-5.8440306e+117
-5.8525913e+117
-5.8527714e+117
-5.775188e+117
-5.775565e+117
-5.7845466e+117
-5.7842446e+117
-5.7756867e+117
-5.7754016e+117
-5.7843156e+117
-5.7846087e+117
-5.8016832e+117
-5.7927755e+117
-5.7930747e+117
-5.8019537e+117
-5.8019399e+117
-5.7930566e+117
-5.7927582e+117
-5.8016137e+117
-5.7747282e+117
-5.7735326e+117
-5.7826182e+117
-5.7836997e+117
-5.7800832e+117
-5.7708057e+117
-5.7722946e+117
-5.7814865e+117
-5.7979315e+117
-5.7887745e+117
-5.7901371e+117
-5.7992272e+117
-5.8002299e+117
-5.7912074e+117
-5.7922045e+117
-5.8011496e+117
-5.8626866e+117
-5.8627714e+117
-5.8807889e+117
-5.8809205e+117
-5.8811803e+117
-5.8814396e+117
-5.8629897e+117
-5.8631449e+117
-5.8345603e+117
-5.8258837e+117
-5.8258077e+117
-5.8345141e+117
-5.8174398e+117
-5.8084942e+117
-5.8084833e+117
-5.8173723e+117
-5.8086898e+117
-5.8086523e+117
-5.8174199e+117
-5.8173823e+117
-5.8345407e+117
-5.8257844e+117
-5.8257005e+117
-5.8344767e+117
-5.8431895e+117
-5.8431982e+117
-5.8520291e+117
-5.8521215e+117
-5.8431278e+117
-5.8431061e+117
-5.8518454e+117
-5.8518964e+117
-5.862927e+117
-5.8628177e+117
-5.8808429e+117
-5.880759e+117
-5.8807872e+117
-5.8808123e+117
-5.8629004e+117
-5.8628702e+117
-5.8350449e+117
-5.8264548e+117
-5.8261351e+117
-5.834764e+117
-5.8181894e+117
-5.8095342e+117
-5.8091673e+117
-5.8178275e+117
-5.8087245e+117
-5.8089968e+117
-5.8177197e+117
-5.817563e+117
-5.8347346e+117
-5.8260386e+117
-5.8259369e+117
-5.834649e+117
-5.8432535e+117
-5.8433242e+117
-5.8520569e+117
-5.8520112e+117
-5.8433306e+117
-5.8435355e+117
-5.8521995e+117
-5.8520415e+117
-5.8913336e+117
-5.8912782e+117
-5.9019805e+117
-5.9019462e+117
-5.9127294e+117
-5.9128741e+117
-5.923807e+117
-5.9240477e+117
-5.9021343e+117
-5.8912806e+117
-5.9020433e+117
-5.891337e+117
-5.9242348e+117
-5.9129993e+117
-5.9131128e+117
-5.9243895e+117
-5.8012017e+117
-5.7924292e+117
-5.7919783e+117
-5.8007757e+117
-5.7839038e+117
-5.774801e+117
-5.7743442e+117
-5.7834249e+117
-5.7739663e+117
-5.7740595e+117
-5.7830878e+117
-5.7828469e+117
-5.8005222e+117
-5.791632e+117
-5.7912869e+117
-5.8001794e+117
-5.7751386e+117
-5.7748195e+117
-5.7833243e+117
-5.7835798e+117
-5.7743913e+117
-5.7740406e+117
-5.7827072e+117
-5.7829218e+117
-5.799872e+117
-5.7909961e+117
-5.7911355e+117
-5.7999149e+117
-5.8002171e+117
-5.7915133e+117
-5.7917039e+117
-5.8003343e+117
-5.9024695e+117
-5.891432e+117
-5.9023045e+117
-5.8915786e+117
-5.9246389e+117
-5.9133407e+117
-5.9135185e+117
-5.9248374e+117
-5.9029122e+117
-5.8918073e+117
-5.9026853e+117
-5.8920791e+117
-5.9250595e+117
-5.9137431e+117
-5.9139146e+117
-5.9251929e+117
-5.9484779e+117
-5.9362971e+117
-5.9482573e+117
-5.9365115e+117
-5.9605942e+117
-5.9732709e+117
-5.9734874e+117
-5.9608087e+117
-5.9368219e+117
-5.9487288e+117
-5.9367145e+117
-5.9486548e+117
-5.9609659e+117
-5.9736198e+117
-5.9609966e+117
-5.9736062e+117
-5.9985032e+117
-5.9845931e+117
-5.9978836e+117
-5.9851735e+117
-6.0256005e+117
-6.011585e+117
-6.0121654e+117
-6.0261666e+117
-5.9860275e+117
-5.999363e+117
-5.985652e+117
-5.9989552e+117
-6.0267134e+117
-6.012648e+117
-6.0130949e+117
-6.0271694e+117
-5.9474094e+117
-5.9352688e+117
-5.9470259e+117
-5.9355829e+117
-5.9591608e+117
-5.9596129e+117
-5.9716573e+117
-5.9721761e+117
-5.9479845e+117
-5.935828e+117
-5.9477179e+117
-5.9360369e+117
-5.9726139e+117
-5.9599904e+117
-5.9603016e+117
-5.9729634e+117
-5.9999633e+117
-5.986348e+117
-5.9997254e+117
-5.9865543e+117
-6.0275685e+117
-6.0134895e+117
-6.0137221e+117
-6.0277866e+117
-5.9866202e+117
-5.9999577e+117
-5.9866711e+117
-6.0000496e+117
-6.0278911e+117
-6.0138128e+117
-6.013691e+117
-6.0277464e+117
-5.7057148e+117
-5.7042138e+117
-5.7128658e+117
-5.71442e+117
-5.7108551e+117
-5.7024714e+117
-5.7031214e+117
-5.7116235e+117
-5.726925e+117
-5.7186342e+117
-5.7195919e+117
-5.7281132e+117
-5.7295756e+117
-5.7209812e+117
-5.7225311e+117
-5.7311293e+117
-5.7394441e+117
-5.7379228e+117
-5.746861e+117
-5.7483224e+117
-5.7438998e+117
-5.7350941e+117
-5.7364678e+117
-5.7454374e+117
-5.764751e+117
-5.7555406e+117
-5.7569204e+117
-5.7660421e+117
-5.761884e+117
-5.7525825e+117
-5.7541552e+117
-5.763437e+117
-5.7082109e+117
-5.7081107e+117
-5.7161687e+117
-5.7160095e+117
-5.7078849e+117
-5.7069227e+117
-5.7155313e+117
-5.7162693e+117
-5.7321102e+117
-5.7235787e+117
-5.7241287e+117
-5.7325124e+117
-5.7320684e+117
-5.7237797e+117
-5.7234691e+117
-5.7316177e+117
-5.7398086e+117
-5.7403078e+117
-5.7491315e+117
-5.7486402e+117
-5.7491482e+117
-5.7403435e+117
-5.7406944e+117
-5.7494657e+117
-5.7667575e+117
-5.7576901e+117
-5.7579945e+117
-5.7670462e+117
-5.7668601e+117
-5.7577497e+117
-5.7572697e+117
-5.7664399e+117
-5.712869e+117
-5.7109766e+117
-5.7188924e+117
-5.7206405e+117
-5.7097365e+117
-5.708816e+117
-5.716678e+117
-5.7177117e+117
-5.7320222e+117
-5.7240544e+117
-5.7251177e+117
-5.7330606e+117
-5.7341157e+117
-5.7262679e+117
-5.7278513e+117
-5.7354469e+117
-5.7085509e+117
-5.7084289e+117
-5.7159678e+117
-5.7161531e+117
-5.7083745e+117
-5.7082573e+117
-5.7159615e+117
-5.7159735e+117
-5.7312976e+117
-5.7232467e+117
-5.7231687e+117
-5.7310898e+117
-5.7309967e+117
-5.7231039e+117
-5.7233963e+117
-5.7313016e+117
-5.7392959e+117
-5.7390227e+117
-5.7477061e+117
-5.7479117e+117
-5.7482125e+117
-5.7394184e+117
-5.7391402e+117
-5.7478681e+117
-5.7660157e+117
-5.7568335e+117
-5.7564475e+117
-5.7655829e+117
-5.7653413e+117
-5.7562562e+117
-5.7563825e+117
-5.765366e+117
-5.7656316e+117
-5.7567925e+117
-5.7574637e+117
-5.7661072e+117
-5.7484438e+117
-5.7399149e+117
-5.7408802e+117
-5.7492751e+117
-5.7429001e+117
-5.7418085e+117
-5.7500508e+117
-5.7508802e+117
-5.766625e+117
-5.7580959e+117
-5.7587078e+117
-5.7670653e+117
-5.2821876e+117
-5.4958319e+117
-5.4868537e+117
-5.2881549e+117
-5.7124156e+117
-5.6998828e+117
-5.9173253e+117
-5.9354054e+117
-5.5046625e+117
-5.5022567e+117
-5.2938259e+117
-5.2971487e+117
-6.119752e+117
-6.1204867e+117
-6.1366783e+117
-6.1373943e+117
-6.1380712e+117
-6.1387771e+117
-6.1211926e+117
-6.121635e+117
-6.0891923e+117
-6.1047736e+117
-6.0888541e+117
-6.105091e+117
-6.0882911e+117
-6.0877265e+117
-6.1033916e+117
-6.104089e+117
-6.0302739e+117
-6.0304134e+117
-6.043359e+117
-6.0435295e+117
-6.0568289e+117
-6.0570617e+117
-6.0707886e+117
-6.0710959e+117
-6.0306814e+117
-6.0438907e+117
-6.0443142e+117
-6.0310009e+117
-6.0715991e+117
-6.0721832e+117
-6.0575109e+117
-6.0579942e+117
-6.101102e+117
-6.0856016e+117
-6.0859887e+117
-6.1015709e+117
-6.1178754e+117
-6.1348617e+117
-6.11734e+117
-6.1343108e+117
-6.136056e+117
-6.1185009e+117
-6.1190625e+117
-6.1354212e+117
-6.1021427e+117
-6.086525e+117
-6.0871278e+117
-6.1027028e+117
-6.0313177e+117
-6.0446998e+117
-6.0315714e+117
-6.044981e+117
-6.0587776e+117
-6.0584523e+117
-6.0726813e+117
-6.0731046e+117
-6.0318623e+117
-6.0454472e+117
-6.0317637e+117
-6.0452767e+117
-6.0735754e+117
-6.0591823e+117
-6.0594396e+117
-6.0739024e+117
-6.0840666e+117
-6.0995041e+117
-6.0840314e+117
-6.0995285e+117
-6.1157365e+117
-6.1156532e+117
-6.1327154e+117
-6.1325894e+117
-6.0423885e+117
-6.0290524e+117
-6.0421096e+117
-6.0293031e+117
-6.0554174e+117
-6.0693278e+117
-6.069596e+117
-6.0557146e+117
-6.0430817e+117
-6.0296551e+117
-6.0427043e+117
-6.0300146e+117
-6.0561155e+117
-6.0700099e+117
-6.0704637e+117
-6.0565055e+117
-6.0997622e+117
-6.0841291e+117
-6.0995797e+117
-6.0843403e+117
-6.1326725e+117
-6.1157582e+117
-6.1159357e+117
-6.132852e+117
-6.100608e+117
-6.0847591e+117
-6.1001835e+117
-6.0852035e+117
-6.1332704e+117
-6.1163571e+117
-6.1167966e+117
-6.1337425e+117
-6.2348056e+117
-6.260191e+117
-6.26007e+117
-6.2345601e+117
-6.2343736e+117
-6.2344261e+117
-6.2599065e+117
-6.2598658e+117
-6.2877245e+117
-6.2874725e+117
-6.2875437e+117
-6.287465e+117
-6.1697419e+117
-6.1511786e+117
-6.1698862e+117
-6.1509642e+117
-6.1898962e+117
-6.211463e+117
-6.2111139e+117
-6.1896405e+117
-6.1692132e+117
-6.1506586e+117
-6.169412e+117
-6.1504913e+117
-6.1894645e+117
-6.2110277e+117
-6.1893105e+117
-6.2109575e+117
-6.1505462e+117
-6.1692654e+117
-6.1694942e+117
-6.1507432e+117
-6.1516596e+117
-6.1511511e+117
-6.1699051e+117
-6.1704312e+117
-6.2110723e+117
-6.1893904e+117
-6.1896175e+117
-6.2113093e+117
-6.1906151e+117
-6.2117792e+117
-6.1900552e+117
-6.2123866e+117
-6.2604238e+117
-6.2345187e+117
-6.2600655e+117
-6.2347977e+117
-6.2878027e+117
-6.2882128e+117
-6.2359311e+117
-6.2616319e+117
-6.2353011e+117
-6.2609787e+117
-6.2888446e+117
-6.2895745e+117
-6.2366075e+117
-6.2622879e+117
-6.2628584e+117
-6.2372432e+117
-6.2902038e+117
-6.2906261e+117
-6.237879e+117
-6.2383276e+117
-6.2639282e+117
-6.2632294e+117
-6.2909635e+117
-6.2918674e+117
-6.173882e+117
-6.1544875e+117
-6.1732212e+117
-6.1551883e+117
-6.1934478e+117
-6.2152664e+117
-6.2158296e+117
-6.1940317e+117
-6.1753945e+117
-6.1558038e+117
-6.1744608e+117
-6.1566742e+117
-6.1946672e+117
-6.2165199e+117
-6.195566e+117
-6.217387e+117
-6.1522345e+117
-6.1527763e+117
-6.1710272e+117
-6.1715963e+117
-6.1918405e+117
-6.2136803e+117
-6.1912435e+117
-6.2130448e+117
-6.2143744e+117
-6.1924585e+117
-6.1929479e+117
-6.2147839e+117
-6.1721401e+117
-6.1532769e+117
-6.1538781e+117
-6.1726449e+117
-6.2654651e+117
-6.2388912e+117
-6.2646623e+117
-6.2395168e+117
-6.292743e+117
-6.2936412e+117
-6.2411944e+117
-6.2672901e+117
-6.2402838e+117
-6.2663176e+117
-6.2946289e+117
-6.2957345e+117
-5.7805012e+117
-5.8004935e+117
-5.8207011e+117
-5.9570235e+117
-5.9682764e+117
-5.9564692e+117
-5.9677809e+117
-6.0159122e+117
-6.0035466e+117
-6.0030957e+117
-6.0162549e+117
-5.9795174e+117
-5.9799722e+117
-5.9915142e+117
-5.991933e+117
-6.0166519e+117
-6.0043538e+117
-6.0170308e+117
-6.0039634e+117
-5.9802748e+117
-5.9922321e+117
-5.9923542e+117
-5.9803248e+117
-5.9803224e+117
-5.9803586e+117
-5.9924074e+117
-5.9924432e+117
-6.0173649e+117
-6.0046263e+117
-6.017283e+117
-6.0047178e+117
-6.004985e+117
-6.0178167e+117
-6.004869e+117
-6.01759e+117
-5.9343783e+117
-5.9453638e+117
-5.9449674e+117
-5.9338033e+117
-5.9326091e+117
-5.9331965e+117
-5.9445064e+117
-5.9440498e+117
-5.9680828e+117
-5.9566569e+117
-5.9682582e+117
-5.9563589e+117
-5.9557482e+117
-5.967681e+117
-5.9560837e+117
-5.9678937e+117
-5.9461808e+117
-5.9355081e+117
-5.9462484e+117
-5.9355134e+117
-5.9572702e+117
-5.9685493e+117
-5.9685025e+117
-5.9571579e+117
-5.9457005e+117
-5.9352173e+117
-5.9460419e+117
-5.9347546e+117
-5.9571286e+117
-5.9685174e+117
-5.9568835e+117
-5.9683924e+117
-5.9802534e+117
-5.9924749e+117
-5.9924272e+117
-5.9801413e+117
-5.9800756e+117
-5.9924675e+117
-5.979963e+117
-5.9924406e+117
-6.0182104e+117
-6.0051246e+117
-6.0180531e+117
-6.0051691e+117
-6.0053105e+117
-6.0052863e+117
-6.0183643e+117
-6.0184292e+117
-5.8906124e+117
-5.8896553e+117
-5.9017062e+117
-5.9007744e+117
-5.9116992e+117
-5.9233567e+117
-5.9226413e+117
-5.9125442e+117
-5.8886523e+117
-5.8874799e+117
-5.8988034e+117
-5.8998223e+117
-5.9108188e+117
-5.9099462e+117
-5.921891e+117
-5.9211751e+117
-5.9139143e+117
-5.9246645e+117
-5.9247049e+117
-5.9139122e+117
-5.9024228e+117
-5.8918173e+117
-5.9028048e+117
-5.8913789e+117
-5.9135604e+117
-5.924312e+117
-5.9131077e+117
-5.923784e+117
-5.8644043e+117
-5.8635315e+117
-5.8787786e+117
-5.8778395e+117
-5.8768059e+117
-5.8755134e+117
-5.8625256e+117
-5.8611569e+117
-5.8401229e+117
-5.850117e+117
-5.8375042e+117
-5.8390901e+117
-5.8490783e+117
-5.8475302e+117
-5.7000265e+117
-5.6911976e+117
-5.6915733e+117
-5.7002771e+117
-5.7006878e+117
-5.6921624e+117
-5.6923542e+117
-5.7007983e+117
-5.7003871e+117
-5.6916208e+117
-5.6918784e+117
-5.7005589e+117
-5.6840655e+117
-5.6749073e+117
-5.675942e+117
-5.6850065e+117
-5.7009094e+117
-5.6923702e+117
-5.6932498e+117
-5.7017848e+117
-5.6798941e+117
-5.6776537e+117
-5.6865004e+117
-5.6886581e+117
-5.7030572e+117
-5.6946199e+117
-5.6967041e+117
-5.7050305e+117
-6.1158346e+117
-6.0984646e+117
-6.115801e+117
-6.0984413e+117
-6.1337139e+117
-6.1523698e+117
-6.1523816e+117
-6.1337232e+117
-6.1163349e+117
-6.0985862e+117
-6.1159701e+117
-6.0989307e+117
-6.133845e+117
-6.152402e+117
-6.1340431e+117
-6.1524737e+117
-6.0512698e+117
-6.0368143e+117
-6.051427e+117
-6.0366397e+117
-6.0366918e+117
-6.0513298e+117
-6.0515647e+117
-6.0368978e+117
-6.0664401e+117
-6.0819383e+117
-6.0663088e+117
-6.0818418e+117
-6.081956e+117
-6.0822482e+117
-6.0663879e+117
-6.0666463e+117
-6.0373084e+117
-6.0519903e+117
-6.0525249e+117
-6.037818e+117
-6.0384997e+117
-6.0532135e+117
-6.0539736e+117
-6.0392633e+117
-6.0670814e+117
-6.0826613e+117
-6.0831894e+117
-6.0676116e+117
-6.0683028e+117
-6.0838761e+117
-6.0846305e+117
-6.0690626e+117
-6.0992705e+117
-6.1166414e+117
-6.1171641e+117
-6.0997776e+117
-6.1004726e+117
-6.1178852e+117
-6.1186667e+117
-6.1012208e+117
-6.1531032e+117
-6.1537826e+117
-6.1345235e+117
-6.1351108e+117
-6.1358792e+117
-6.1545921e+117
-6.1553899e+117
-6.1366553e+117
-6.0420293e+117
-6.0567917e+117
-6.0570472e+117
-6.042262e+117
-6.0421849e+117
-6.0423511e+117
-6.0571254e+117
-6.0569541e+117
-6.0719222e+117
-6.0875158e+117
-6.0877808e+117
-6.0721844e+117
-6.0721334e+117
-6.0722759e+117
-6.087881e+117
-6.087782e+117
-6.0399928e+117
-6.0547028e+117
-6.0553166e+117
-6.040581e+117
-6.0411321e+117
-6.0558466e+117
-6.0563725e+117
-6.0416221e+117
-6.0697938e+117
-6.0853564e+117
-6.0859759e+117
-6.0704115e+117
-6.0709642e+117
-6.0865552e+117
-6.0870895e+117
-6.0714936e+117
-6.1019445e+117
-6.1193765e+117
-6.1200347e+117
-6.1025749e+117
-6.1031678e+117
-6.1206207e+117
-6.121162e+117
-6.1036978e+117
-6.1373947e+117
-6.1561641e+117
-6.1568246e+117
-6.1380564e+117
-6.1386741e+117
-6.1574536e+117
-6.1579669e+117
-6.1391901e+117
-6.1041191e+117
-6.1215576e+117
-6.1218091e+117
-6.1043754e+117
-6.1043628e+117
-6.1044648e+117
-6.1218439e+117
-6.1216564e+117
-6.1395874e+117
-6.158373e+117
-6.1585713e+117
-6.1398028e+117
-6.1395539e+117
-6.1398127e+117
-6.1585843e+117
-6.1583202e+117
-6.1728602e+117
-6.1934257e+117
-6.1941861e+117
-6.1735879e+117
-6.1744313e+117
-6.1950534e+117
-6.195902e+117
-6.1752662e+117
-6.2402579e+117
-6.2157324e+117
-6.2394814e+117
-6.2164969e+117
-6.2420657e+117
-6.2173836e+117
-6.241159e+117
-6.2182544e+117
-6.1924924e+117
-6.17211e+117
-6.1925448e+117
-6.1720805e+117
-6.214674e+117
-6.2382451e+117
-6.2383058e+117
-6.2146664e+117
-6.1928361e+117
-6.1721014e+117
-6.1926008e+117
-6.1722452e+117
-6.2148196e+117
-6.2384853e+117
-6.2151247e+117
-6.2388438e+117
-6.3228359e+117
-6.3232185e+117
-6.2925113e+117
-6.2640364e+117
-6.2922595e+117
-6.2641704e+117
-6.264791e+117
-6.2643924e+117
-6.2927334e+117
-6.2931425e+117
-6.3238061e+117
-6.323351e+117
-6.2654471e+117
-6.2937881e+117
-6.2945778e+117
-6.2662263e+117
-6.2671335e+117
-6.2954749e+117
-6.2680554e+117
-6.2963929e+117
-6.3244174e+117
-6.3251622e+117
-6.3270462e+117
-6.3260598e+117
-6.2983292e+117
-6.2690016e+117
-6.2973981e+117
-6.2698916e+117
-6.3279643e+117
-6.3286362e+117
-6.2995284e+117
-6.270487e+117
-6.2988724e+117
-6.2711142e+117
-6.3292726e+117
-6.3298647e+117
-6.176062e+117
-6.1967152e+117
-6.1974126e+117
-6.1767288e+117
-6.1773561e+117
-6.1980538e+117
-6.1985819e+117
-6.1778849e+117
-6.2190957e+117
-6.2429432e+117
-6.2437128e+117
-6.2198147e+117
-6.2204723e+117
-6.2443696e+117
-6.2449394e+117
-6.2210116e+117
-6.1782909e+117
-6.1989772e+117
-6.1991751e+117
-6.1784924e+117
-6.1782683e+117
-6.1785063e+117
-6.1991738e+117
-6.1989311e+117
-6.2213938e+117
-6.2452772e+117
-6.2454188e+117
-6.2215665e+117
-6.2212937e+117
-6.221547e+117
-6.2453851e+117
-6.2451245e+117
-6.2998921e+117
-6.271346e+117
-6.2997196e+117
-6.2714701e+117
-6.3302901e+117
-6.3305388e+117
-6.2711901e+117
-6.2997011e+117
-6.2714427e+117
-6.299906e+117
-6.3306435e+117
-6.330595e+117
-5.999311e+117
-5.9863841e+117
-5.9996881e+117
-5.9860086e+117
-6.0133577e+117
-6.0273549e+117
-6.0267878e+117
-6.0128801e+117
-5.9852621e+117
-5.9984376e+117
-5.9856176e+117
-5.9988468e+117
-6.0124335e+117
-6.0263564e+117
-6.0119955e+117
-6.0259335e+117
-5.9364037e+117
-5.9479476e+117
-5.9479136e+117
-5.936361e+117
-5.9363801e+117
-5.9363617e+117
-5.9479171e+117
-5.9479374e+117
-5.9721636e+117
-5.9598878e+117
-5.972242e+117
-5.9598182e+117
-5.9598491e+117
-5.9721341e+117
-5.9598307e+117
-5.9721353e+117
-5.9485236e+117
-5.9368829e+117
-5.9487053e+117
-5.9367379e+117
-5.9608757e+117
-5.9734133e+117
-5.9730347e+117
-5.9605847e+117
-5.9480458e+117
-5.936578e+117
-5.9482715e+117
-5.9363954e+117
-5.9603107e+117
-5.9727301e+117
-5.9600238e+117
-5.9724069e+117
-5.9850385e+117
-5.9981895e+117
-5.9979911e+117
-5.9849015e+117
-6.0256792e+117
-6.0115362e+117
-6.0117504e+117
-6.0254551e+117
-5.9848695e+117
-5.9848549e+117
-5.9979673e+117
-5.9979436e+117
-6.0253911e+117
-6.0114504e+117
-6.0253238e+117
-6.0114923e+117
-5.8936909e+117
-5.8937707e+117
-5.9038423e+117
-5.9038457e+117
-5.9142784e+117
-5.9251549e+117
-5.9251089e+117
-5.9143164e+117
-5.8938516e+117
-5.8938651e+117
-5.9038826e+117
-5.903879e+117
-5.9142852e+117
-5.9142943e+117
-5.9251089e+117
-5.9251239e+117
-5.9036954e+117
-5.8931239e+117
-5.903499e+117
-5.8933966e+117
-5.9142613e+117
-5.9253697e+117
-5.9252742e+117
-5.914267e+117
-5.9038019e+117
-5.8935485e+117
-5.9037649e+117
-5.8936267e+117
-5.9142884e+117
-5.925206e+117
-5.9142224e+117
-5.9250583e+117
-5.862218e+117
-5.8719066e+117
-5.8723203e+117
-5.8625598e+117
-5.8832248e+117
-5.883523e+117
-5.8726663e+117
-5.8837506e+117
-5.8838896e+117
-5.8728723e+117
-5.8629412e+117
-5.8632458e+117
-5.8114069e+117
-5.8104677e+117
-5.8186957e+117
-5.8196025e+117
-5.8176721e+117
-5.8093203e+117
-5.8096762e+117
-5.8179906e+117
-5.8345198e+117
-5.8260934e+117
-5.8264241e+117
-5.8348373e+117
-5.8354625e+117
-5.8270906e+117
-5.8279225e+117
-5.8361685e+117
-5.8522261e+117
-5.8432314e+117
-5.8435258e+117
-5.8525013e+117
-5.8446249e+117
-5.8440668e+117
-5.8529255e+117
-5.8533525e+117
-5.8634646e+117
-5.872995e+117
-5.8732256e+117
-5.8637638e+117
-5.8839757e+117
-5.8841142e+117
-5.8734829e+117
-5.8842672e+117
-5.8842909e+117
-5.8734742e+117
-5.864066e+117
-5.864051e+117
-5.8367536e+117
-5.8286869e+117
-5.8292317e+117
-5.8372185e+117
-5.8204533e+117
-5.8122768e+117
-5.8130086e+117
-5.8210875e+117
-5.813509e+117
-5.8135027e+117
-5.8214674e+117
-5.8214819e+117
-5.8375635e+117
-5.8295568e+117
-5.8295518e+117
-5.8375548e+117
-5.8457914e+117
-5.8458106e+117
-5.8543375e+117
-5.854337e+117
-5.84549e+117
-5.8450673e+117
-5.8536791e+117
-5.8540431e+117
-5.8009132e+117
-5.7926631e+117
-5.7931212e+117
-5.8012959e+117
-5.78444e+117
-5.7763677e+117
-5.77696e+117
-5.7849488e+117
-5.7795345e+117
-5.7781402e+117
-5.7859815e+117
-5.7872468e+117
-5.8021741e+117
-5.7940425e+117
-5.7951434e+117
-5.8031719e+117
-5.7815916e+117
-5.7818527e+117
-5.7895964e+117
-5.7895306e+117
-5.7815123e+117
-5.7806696e+117
-5.7882461e+117
-5.7890936e+117
-5.8040597e+117
-5.7960653e+117
-5.796916e+117
-5.8048561e+117
-5.8054325e+117
-5.7974913e+117
-5.7974881e+117
-5.8054437e+117
-5.9848531e+117
-5.9979367e+117
-5.9978974e+117
-5.9847772e+117
-5.9846715e+117
-5.9847033e+117
-5.997802e+117
-5.9977847e+117
-6.0250718e+117
-6.011413e+117
-6.0252454e+117
-6.011303e+117
-6.0112842e+117
-6.0251668e+117
-6.0112709e+117
-6.0250944e+117
-5.9360248e+117
-5.9476018e+117
-5.9476024e+117
-5.9359241e+117
-5.935793e+117
-5.9358299e+117
-5.9475954e+117
-5.9476352e+117
-5.9720537e+117
-5.9595632e+117
-5.9719305e+117
-5.9596161e+117
-5.9598134e+117
-5.9723392e+117
-5.9597023e+117
-5.9721757e+117
-5.9479124e+117
-5.9364273e+117
-5.9479746e+117
-5.9363327e+117
-5.959866e+117
-5.9721308e+117
-5.9720018e+117
-5.9597628e+117
-5.947644e+117
-5.9362056e+117
-5.9477718e+117
-5.9360437e+117
-5.9596755e+117
-5.9719544e+117
-5.959567e+117
-5.9718831e+117
-5.9847334e+117
-5.9978902e+117
-5.9980293e+117
-5.9848701e+117
-5.9850614e+117
-5.998296e+117
-5.9852721e+117
-5.9985509e+117
-6.0256207e+117
-6.0114563e+117
-6.0253803e+117
-6.0116423e+117
-6.0122296e+117
-6.0119398e+117
-6.0259308e+117
-6.0262402e+117
-5.8931304e+117
-5.8927665e+117
-5.903325e+117
-5.9029877e+117
-5.9135663e+117
-5.9247375e+117
-5.9245373e+117
-5.9138533e+117
-5.892388e+117
-5.8919599e+117
-5.9023376e+117
-5.9026569e+117
-5.9133011e+117
-5.9130877e+117
-5.9243552e+117
-5.9242372e+117
-5.9039131e+117
-5.8938574e+117
-5.903934e+117
-5.8938126e+117
-5.9143745e+117
-5.9251881e+117
-5.9250736e+117
-5.9142737e+117
-5.9035882e+117
-5.8936847e+117
-5.9037693e+117
-5.8934625e+117
-5.9141659e+117
-5.9249586e+117
-5.9139646e+117
-5.9247548e+117
-5.8638404e+117
-5.8732945e+117
-5.8732324e+117
-5.8637605e+117
-5.8842208e+117
-5.8841459e+117
-5.8732157e+117
-5.884046e+117
-5.8837961e+117
-5.8729198e+117
-5.8636999e+117
-5.8633737e+117
-5.8373287e+117
-5.8293088e+117
-5.8290674e+117
-5.8371208e+117
-5.8211773e+117
-5.8131336e+117
-5.8128102e+117
-5.8208789e+117
-5.811915e+117
-5.8125103e+117
-5.8206148e+117
-5.8201556e+117
-5.8369671e+117
-5.8288359e+117
-5.8284316e+117
-5.8365745e+117
-5.8454294e+117
-5.84558e+117
-5.8541285e+117
-5.8540165e+117
-5.8449203e+117
-5.8452959e+117
-5.8539064e+117
-5.8535699e+117
-5.8627888e+117
-5.8724063e+117
-5.8719502e+117
-5.8622902e+117
-5.8833926e+117
-5.8829859e+117
-5.8714983e+117
-5.882577e+117
-5.8820569e+117
-5.8708129e+117
-5.8617661e+117
-5.8609837e+117
-5.8360003e+117
-5.8278812e+117
-5.8270909e+117
-5.8353182e+117
-5.8195094e+117
-5.8111148e+117
-5.8102328e+117
-5.8186466e+117
-5.8082048e+117
-5.8093287e+117
-5.8176937e+117
-5.8166381e+117
-5.8345251e+117
-5.8261706e+117
-5.8251401e+117
-5.833526e+117
-5.8437588e+117
-5.8443412e+117
-5.8529844e+117
-5.852451e+117
-5.8420918e+117
-5.8430286e+117
-5.8518138e+117
-5.8509774e+117
-5.8050155e+117
-5.7970285e+117
-5.796584e+117
-5.8046322e+117
-5.7889816e+117
-5.7809896e+117
-5.7803382e+117
-5.7884124e+117
-5.7787535e+117
-5.7796115e+117
-5.7878054e+117
-5.7869981e+117
-5.8042649e+117
-5.7960667e+117
-5.7952769e+117
-5.8035499e+117
-5.7747234e+117
-5.7759935e+117
-5.7841761e+117
-5.782982e+117
-5.7769762e+117
-5.7778242e+117
-5.7859565e+117
-5.7850947e+117
-5.8026101e+117
-5.7942483e+117
-5.793388e+117
-5.801722e+117
-5.8008557e+117
-5.7925118e+117
-5.7913392e+117
-5.7997027e+117
-5.76831e+117
-5.7604508e+117
-5.7612216e+117
-5.7689615e+117
-5.7527527e+117
-5.7453628e+117
-5.7463919e+117
-5.7536266e+117
-5.74888e+117
-5.7476157e+117
-5.7548914e+117
-5.7563291e+117
-5.7702446e+117
-5.7624953e+117
-5.7639594e+117
-5.7717106e+117
-5.7381478e+117
-5.7311689e+117
-5.7324366e+117
-5.7392598e+117
-5.7241447e+117
-5.7169218e+117
-5.718433e+117
-5.7255311e+117
-5.7197459e+117
-5.719305e+117
-5.7263787e+117
-5.7269805e+117
-5.7403839e+117
-5.7333381e+117
-5.7341921e+117
-5.7414634e+117
-5.7166345e+117
-5.7181032e+117
-5.7261412e+117
-5.7248037e+117
-5.7191776e+117
-5.7196984e+117
-5.7273005e+117
-5.7271028e+117
-5.742323e+117
-5.7347981e+117
-5.7348402e+117
-5.7425609e+117
-5.7420076e+117
-5.7340992e+117
-5.7328125e+117
-5.7408363e+117
-5.7729549e+117
-5.7652407e+117
-5.7659473e+117
-5.7737435e+117
-5.7575227e+117
-5.749894e+117
-5.750307e+117
-5.7580986e+117
-5.7489311e+117
-5.7499266e+117
-5.7578898e+117
-5.7570912e+117
-5.7739186e+117
-5.7659283e+117
-5.7653013e+117
-5.7734763e+117
-5.7114203e+117
-5.7118314e+117
-5.7195466e+117
-5.7191245e+117
-5.711845e+117
-5.7117884e+117
-5.7198072e+117
-5.7196554e+117
-5.7359347e+117
-5.7278234e+117
-5.7275181e+117
-5.7354539e+117
-5.7351005e+117
-5.7273006e+117
-5.7267568e+117
-5.734411e+117
-5.7123068e+117
-5.7129618e+117
-5.7211933e+117
-5.720574e+117
-5.7138707e+117
-5.7150371e+117
-5.7230979e+117
-5.7219492e+117
-5.73936e+117
-5.7311838e+117
-5.730062e+117
-5.7382483e+117
-5.7375574e+117
-5.7293644e+117
-5.7286725e+117
-5.7368041e+117
-5.7727636e+117
-5.764435e+117
-5.7635422e+117
-5.7719933e+117
-5.756013e+117
-5.7476557e+117
-5.7465952e+117
-5.7550208e+117
-5.7450614e+117
-5.745837e+117
-5.7542175e+117
-5.7534117e+117
-5.7712013e+117
-5.7627211e+117
-5.76188e+117
-5.7703357e+117
-5.7694663e+117
-5.7610399e+117
-5.7602533e+117
-5.7686303e+117
-5.7525592e+117
-5.7442044e+117
-5.7435996e+117
-5.75185e+117
-5.742214e+117
-5.7430437e+117
-5.7511147e+117
-5.7501228e+117
-5.7676687e+117
-5.7593748e+117
-5.7582303e+117
-5.766422e+117
-5.6934364e+117
-5.6850924e+117
-5.6861387e+117
-5.6947791e+117
-5.7092981e+117
-5.7013799e+117
-5.7029516e+117
-5.7109046e+117
-5.7117417e+117
-5.7036862e+117
-5.7036228e+117
-5.7119501e+117
-6.1764749e+117
-6.1971242e+117
-6.1969496e+117
-6.1762688e+117
-6.1760375e+117
-6.176133e+117
-6.1967928e+117
-6.1966897e+117
-6.2431995e+117
-6.219574e+117
-6.2433143e+117
-6.2194019e+117
-6.2191351e+117
-6.2428987e+117
-6.2192565e+117
-6.2430263e+117
-6.198261e+117
-6.1779393e+117
-6.1985798e+117
-6.1775967e+117
-6.2209745e+117
-6.2446333e+117
-6.2440575e+117
-6.2205333e+117
-6.1973792e+117
-6.177168e+117
-6.1977965e+117
-6.1767469e+117
-6.2201353e+117
-6.2437569e+117
-6.2197749e+117
-6.2434499e+117
-6.2985311e+117
-6.2706582e+117
-6.2990673e+117
-6.2700944e+117
-6.3297636e+117
-6.3292698e+117
-6.2695095e+117
-6.2979667e+117
-6.2697815e+117
-6.2982149e+117
-6.3289366e+117
-6.3287464e+117
-6.2693948e+117
-6.2978339e+117
-6.2976653e+117
-6.2692739e+117
-6.3284028e+117
-6.3285792e+117
-6.269145e+117
-6.2690352e+117
-6.297623e+117
-6.2975413e+117
-6.3283394e+117
-6.3283697e+117
-6.2689955e+117
-6.2975037e+117
-6.2974655e+117
-6.2688836e+117
-6.2687464e+117
-6.2687534e+117
-6.2972368e+117
-6.297218e+117
-6.3282589e+117
-6.3280762e+117
-6.3279773e+117
-6.3279439e+117
-6.1759103e+117
-6.1965931e+117
-6.1968727e+117
-6.1761705e+117
-6.176008e+117
-6.1761102e+117
-6.1966988e+117
-6.1965311e+117
-6.2426163e+117
-6.2190024e+117
-6.2426738e+117
-6.2190863e+117
-6.2188893e+117
-6.2425797e+117
-6.2190428e+117
-6.2426954e+117
-6.1967353e+117
-6.1760559e+117
-6.1967195e+117
-6.1760794e+117
-6.219147e+117
-6.2428614e+117
-6.2426555e+117
-6.2190398e+117
-6.1964144e+117
-6.1758759e+117
-6.1965178e+117
-6.1757086e+117
-6.2189082e+117
-6.2426174e+117
-6.2188483e+117
-6.2425845e+117
-6.268756e+117
-6.2972459e+117
-6.2972289e+117
-6.2687039e+117
-6.2687681e+117
-6.2972948e+117
-6.268678e+117
-6.2972313e+117
-6.328095e+117
-6.328129e+117
-6.328211e+117
-6.3282027e+117
-6.1190104e+117
-6.101493e+117
-6.1190605e+117
-6.101416e+117
-6.1371757e+117
-6.156024e+117
-6.1560394e+117
-6.137136e+117
-6.1192735e+117
-6.101493e+117
-6.1190826e+117
-6.1016927e+117
-6.1371369e+117
-6.1558919e+117
-6.1371241e+117
-6.1556992e+117
-6.0395077e+117
-6.0393318e+117
-6.0541499e+117
-6.0539696e+117
-6.0692142e+117
-6.0690641e+117
-6.0847881e+117
-6.0846748e+117
-6.0393593e+117
-6.0540141e+117
-6.054159e+117
-6.0394751e+117
-6.0847207e+117
-6.0848833e+117
-6.0691025e+117
-6.0692559e+117
-6.039714e+117
-6.0544012e+117
-6.0399721e+117
-6.0546455e+117
-6.0697187e+117
-6.0694848e+117
-6.0850634e+117
-6.0852686e+117
-6.0406039e+117
-6.0552659e+117
-6.0402938e+117
-6.0549758e+117
-6.0855222e+117
-6.0700181e+117
-6.0702693e+117
-6.0857197e+117
-6.1017567e+117
-6.119259e+117
-6.1193713e+117
-6.1019086e+117
-6.1022495e+117
-6.1021101e+117
-6.1195272e+117
-6.1196083e+117
-6.1559382e+117
-6.1561133e+117
-6.1372381e+117
-6.1373651e+117
-6.137501e+117
-6.1374869e+117
-6.1561906e+117
-6.156149e+117
-6.1041399e+117
-6.1209738e+117
-6.1212938e+117
-6.1035398e+117
-6.1390839e+117
-6.1578731e+117
-6.1575308e+117
-6.138812e+117
-6.1024484e+117
-6.119951e+117
-6.1029273e+117
-6.1204037e+117
-6.1383798e+117
-6.1571394e+117
-6.1379556e+117
-6.1567313e+117
-6.0545406e+117
-6.0400341e+117
-6.0547572e+117
-6.0398137e+117
-6.0698699e+117
-6.0854601e+117
-6.0852317e+117
-6.0696431e+117
-6.0542851e+117
-6.0397159e+117
-6.0544119e+117
-6.0396178e+117
-6.0695004e+117
-6.0850778e+117
-6.0849248e+117
-6.0693549e+117
-6.0875165e+117
-6.0717467e+117
-6.0711221e+117
-6.0868206e+117
-6.0565219e+117
-6.0417495e+117
-6.041164e+117
-6.0559119e+117
-6.0550273e+117
-6.0407096e+117
-6.0554402e+117
-6.0402957e+117
-6.0862184e+117
-6.0705867e+117
-6.0701512e+117
-6.0857515e+117
-6.1194889e+117
-6.1021527e+117
-6.1196785e+117
-6.1019298e+117
-6.1564892e+117
-6.1377211e+117
-6.1375339e+117
-6.1562694e+117
-6.1191892e+117
-6.1017728e+117
-6.1193242e+117
-6.1016177e+117
-6.156166e+117
-6.1373996e+117
-6.1372552e+117
-6.1560218e+117
-6.2752363e+117
-6.2746118e+117
-6.2891168e+117
-6.2897552e+117
-6.2761201e+117
-6.2905648e+117
-6.2913426e+117
-6.2768285e+117
-6.2726193e+117
-6.2721958e+117
-6.2869507e+117
-6.2874054e+117
-6.2739024e+117
-6.2732318e+117
-6.2879593e+117
-6.2885159e+117
-6.3531075e+117
-6.336416e+117
-6.3359159e+117
-6.3535315e+117
-6.3194844e+117
-6.3039452e+117
-6.3045606e+117
-6.3200589e+117
-6.3052932e+117
-6.3207256e+117
-6.3213892e+117
-6.3060333e+117
-6.3370101e+117
-6.3541108e+117
-6.3547421e+117
-6.3376419e+117
-6.3023436e+117
-6.3018466e+117
-6.3173426e+117
-6.3178878e+117
-6.3342423e+117
-6.3336759e+117
-6.3508135e+117
-6.3513778e+117
-6.3353936e+117
-6.3348234e+117
-6.3519633e+117
-6.3525555e+117
-6.3028765e+117
-6.3184383e+117
-6.31897e+117
-6.3034066e+117
-6.3804008e+117
-6.3962473e+117
-6.3967156e+117
-6.3809033e+117
-6.3951759e+117
-6.3957297e+117
-6.3798531e+117
-6.3792635e+117
-6.4111429e+117
-6.4106734e+117
-6.4339893e+117
-6.433553e+117
-6.4120437e+117
-6.4116339e+117
-6.4347918e+117
-6.4344489e+117
-6.377859e+117
-6.3772126e+117
-6.3932395e+117
-6.3938638e+117
-6.4089024e+117
-6.4320833e+117
-6.4325845e+117
-6.4094694e+117
-6.3944159e+117
-6.3948398e+117
-6.4103074e+117
-6.4099604e+117
-6.4329094e+117
-6.4331862e+117
-6.378436e+117
-6.3788988e+117
-6.2779786e+117
-6.2772893e+117
-6.2918957e+117
-6.2924915e+117
-6.2934136e+117
-6.2931176e+117
-6.2786615e+117
-6.2790523e+117
-6.3066353e+117
-6.3071805e+117
-6.3224954e+117
-6.3219916e+117
-6.3556437e+117
-6.3552516e+117
-6.3382043e+117
-6.3386598e+117
-6.3560133e+117
-6.3390666e+117
-6.3394012e+117
-6.356279e+117
-6.3076891e+117
-6.3229134e+117
-6.3232393e+117
-6.3079902e+117
-6.3813511e+117
-6.3970773e+117
-6.3974231e+117
-6.381764e+117
-6.3977519e+117
-6.3975947e+117
-6.3820252e+117
-6.382169e+117
-6.4128183e+117
-6.4129243e+117
-6.4354824e+117
-6.4354045e+117
-6.4126578e+117
-6.4124001e+117
-6.4352772e+117
-6.4351283e+117
-6.397836e+117
-6.3981486e+117
-6.382617e+117
-6.3823132e+117
-6.3828053e+117
-6.3983929e+117
-6.3986426e+117
-6.3830509e+117
-6.4360843e+117
-6.4135698e+117
-6.4137764e+117
-6.4361733e+117
-6.4356395e+117
-6.4130537e+117
-6.4132993e+117
-6.4358145e+117
-6.4009184e+117
-6.4010733e+117
-6.3729243e+117
-6.387392e+117
-6.3726722e+117
-6.3871349e+117
-6.413416e+117
-6.4271191e+117
-6.4133085e+117
-6.4270377e+117
-6.4392878e+117
-6.4393839e+117
-6.4503959e+117
-6.4505418e+117
-6.4730373e+117
-6.4626414e+117
-6.4728661e+117
-6.4625034e+117
-6.4811939e+117
-6.4813713e+117
-6.450723e+117
-6.4506529e+117
-6.4731601e+117
-6.4627513e+117
-6.4731905e+117
-6.4627996e+117
-6.4814933e+117
-6.4815344e+117
-6.4508409e+117
-6.4510211e+117
-6.4733019e+117
-6.4816296e+117
-6.462923e+117
-6.4734352e+117
-6.4630793e+117
-6.4817441e+117
-6.4513193e+117
-6.4512199e+117
-6.4735562e+117
-6.4632492e+117
-6.4735889e+117
-6.463312e+117
-6.4818608e+117
-6.4818358e+117
-6.4509238e+117
-6.4508763e+117
-6.4732466e+117
-6.4619829e+117
-6.4732e+117
-6.4619564e+117
-6.4815318e+117
-6.4814969e+117
-6.4902398e+117
-6.4988733e+117
-6.4903319e+117
-6.4989567e+117
-6.4904158e+117
-6.4990096e+117
-6.4904246e+117
-6.4989997e+117
-6.4897488e+117
-6.4984825e+117
-6.4897309e+117
-6.4984405e+117
-6.5043369e+117
-6.5073811e+117
-6.5043303e+117
-6.507351e+117
-6.5072281e+117
-6.5042159e+117
-6.5042659e+117
-6.5073156e+117
-6.4898265e+117
-6.4984669e+117
-6.4899884e+117
-6.4986321e+117
-6.4901435e+117
-6.498785e+117
-6.4901029e+117
-6.4987472e+117
-6.504049e+117
-6.5069588e+117
-6.5041125e+117
-6.5071119e+117
-6.5068349e+117
-6.5038407e+117
-6.5069511e+117
-6.5039658e+117
-6.4476232e+117
-6.4480333e+117
-6.4703998e+117
-6.4599025e+117
-6.4707815e+117
-6.4602759e+117
-6.4792009e+117
-6.4788295e+117
-6.4486042e+117
-6.4483386e+117
-6.4710921e+117
-6.4605584e+117
-6.4713244e+117
-6.4608084e+117
-6.4795204e+117
-6.4797655e+117
-6.449352e+117
-6.4489453e+117
-6.4716427e+117
-6.461141e+117
-6.4719949e+117
-6.4615204e+117
-6.4803875e+117
-6.4800622e+117
-6.4501093e+117
-6.4497715e+117
-6.4723467e+117
-6.461925e+117
-6.4725928e+117
-6.4622128e+117
-6.4809422e+117
-6.4807044e+117
-6.4875768e+117
-6.4963478e+117
-6.4879166e+117
-6.4966888e+117
-6.488236e+117
-6.4970108e+117
-6.4884779e+117
-6.4972298e+117
-6.4893558e+117
-6.4980334e+117
-6.489576e+117
-6.4982298e+117
-6.4887632e+117
-6.4974921e+117
-6.4890467e+117
-6.4977657e+117
-6.5050295e+117
-6.5018437e+117
-6.5021294e+117
-6.5052627e+117
-6.5055265e+117
-6.5024348e+117
-6.502633e+117
-6.5056675e+117
-6.5028711e+117
-6.5058348e+117
-6.5031229e+117
-6.5061705e+117
-6.5064137e+117
-6.5034042e+117
-6.5035992e+117
-6.5065781e+117
-6.3591683e+117
-6.3787401e+117
-6.3790081e+117
-6.3593647e+117
-6.3595353e+117
-6.3791758e+117
-6.3794143e+117
-6.3596435e+117
-6.397723e+117
-6.3973559e+117
-6.4134305e+117
-6.4137399e+117
-6.3971361e+117
-6.3968696e+117
-6.4130968e+117
-6.4128182e+117
-6.359777e+117
-6.3796603e+117
-6.3799259e+117
-6.3600191e+117
-6.3605659e+117
-6.3602783e+117
-6.3801705e+117
-6.3805e+117
-6.3989506e+117
-6.3986055e+117
-6.4149438e+117
-6.4152897e+117
-6.3983048e+117
-6.3980436e+117
-6.4141691e+117
-6.4145213e+117
-6.3607847e+117
-6.3807541e+117
-6.3809013e+117
-6.360855e+117
-6.3609291e+117
-6.3809608e+117
-6.3811245e+117
-6.3610598e+117
-6.3997313e+117
-6.3995632e+117
-6.4159643e+117
-6.4160883e+117
-6.3994492e+117
-6.3992483e+117
-6.4155722e+117
-6.4157624e+117
-6.3612064e+117
-6.3812813e+117
-6.3815628e+117
-6.3613268e+117
-6.3616235e+117
-6.3818834e+117
-6.3822637e+117
-6.3620762e+117
-6.4009544e+117
-6.4006181e+117
-6.4171327e+117
-6.41741e+117
-6.4002901e+117
-6.3999402e+117
-6.4163918e+117
-6.4167438e+117
-6.3308682e+117
-6.3479419e+117
-6.3485653e+117
-6.3315586e+117
-6.3701949e+117
-6.3863126e+117
-6.3868144e+117
-6.3707421e+117
-6.3713694e+117
-6.3872531e+117
-6.3877413e+117
-6.3719524e+117
-6.4032447e+117
-6.4028527e+117
-6.4264438e+117
-6.4260917e+117
-6.4024625e+117
-6.4020308e+117
-6.425684e+117
-6.42533e+117
-6.3726402e+117
-6.3883202e+117
-6.3891245e+117
-6.3734634e+117
-6.3739933e+117
-6.3896411e+117
-6.3900327e+117
-6.3743144e+117
-6.4054138e+117
-6.4050022e+117
-6.4283206e+117
-6.4279646e+117
-6.4044518e+117
-6.4037923e+117
-6.4274649e+117
-6.4269514e+117
-6.2710162e+117
-6.2857673e+117
-6.2856088e+117
-6.2712595e+117
-6.2716455e+117
-6.2716762e+117
-6.2860349e+117
-6.2859299e+117
-6.2717746e+117
-6.2717472e+117
-6.2864382e+117
-6.2862489e+117
-6.3013184e+117
-6.3163641e+117
-6.3009764e+117
-6.3167859e+117
-6.3005356e+117
-6.3158009e+117
-6.3160317e+117
-6.3007025e+117
-6.3321728e+117
-6.3319288e+117
-6.3488443e+117
-6.3491127e+117
-6.3325598e+117
-6.3330845e+117
-6.3501858e+117
-6.3495688e+117
-6.3156995e+117
-6.3002897e+117
-6.300479e+117
-6.3158035e+117
-6.3318647e+117
-6.3318561e+117
-6.3486847e+117
-6.3487173e+117
-6.3318069e+117
-6.3318589e+117
-6.3486758e+117
-6.3486689e+117
-6.3003977e+117
-6.3157451e+117
-6.3157222e+117
-6.3004388e+117
-6.3904268e+117
-6.390618e+117
-6.3748073e+117
-6.3746719e+117
-6.3907126e+117
-6.3748613e+117
-6.3748822e+117
-6.3908193e+117
-6.4064146e+117
-6.4062174e+117
-6.4292268e+117
-6.4295249e+117
-6.4057894e+117
-6.4286691e+117
-6.4060297e+117
-6.4289423e+117
-6.3915719e+117
-6.3911463e+117
-6.3751382e+117
-6.3755248e+117
-6.3765494e+117
-6.3926181e+117
-6.392053e+117
-6.375999e+117
-6.4077306e+117
-6.4309061e+117
-6.4314836e+117
-6.4082718e+117
-6.4067861e+117
-6.4299167e+117
-6.430406e+117
-6.407225e+117
-6.2051425e+117
-6.2006933e+117
-6.2311386e+117
-6.2352772e+117
-6.2239702e+117
-6.1938002e+117
-6.1967683e+117
-6.227166e+117
-6.2652807e+117
-6.2611762e+117
-6.2947603e+117
-6.2988109e+117
-6.2572928e+117
-6.2539884e+117
-6.2909508e+117
-6.2876754e+117
-6.319889e+117
-6.3380866e+117
-6.3397423e+117
-6.321413e+117
-6.3231143e+117
-6.3414299e+117
-6.3432251e+117
-6.3251382e+117
-6.3700085e+117
-6.3667136e+117
-6.3269295e+117
-6.344929e+117
-6.3470231e+117
-6.3289804e+117
-6.330986e+117
-6.3489511e+117
-6.3506201e+117
-6.3328538e+117
-6.3770545e+117
-6.3735204e+117
-6.2080597e+117
-6.2380682e+117
-6.2411249e+117
-6.2109379e+117
-6.2171525e+117
-6.2141418e+117
-6.2443454e+117
-6.2473079e+117
-6.2771052e+117
-6.2740366e+117
-6.3072889e+117
-6.3103322e+117
-6.2708249e+117
-6.2680292e+117
-6.3041093e+117
-6.3015129e+117
-6.3519286e+117
-6.3533238e+117
-6.335338e+117
-6.3341061e+117
-6.35464e+117
-6.3366363e+117
-6.3382005e+117
-6.3560022e+117
-6.3826631e+117
-6.3799947e+117
-6.3395958e+117
-6.3573191e+117
-6.3589088e+117
-6.3411414e+117
-6.3425618e+117
-6.3602423e+117
-6.3612445e+117
-6.3436951e+117
-6.3877121e+117
-6.3853035e+117
-6.2481468e+117
-6.2487522e+117
-6.2665953e+117
-6.2660466e+117
-6.2494986e+117
-6.2504761e+117
-6.2684014e+117
-6.2673592e+117
-6.2514824e+117
-6.2696181e+117
-6.2867287e+117
-6.3021159e+117
-6.3027642e+117
-6.2872985e+117
-6.2999359e+117
-6.2845058e+117
-6.2857958e+117
-6.3012261e+117
-6.3318382e+117
-6.3165295e+117
-6.3154055e+117
-6.3328641e+117
-6.3174367e+117
-6.3338244e+117
-6.3347607e+117
-6.3182906e+117
-6.2962703e+117
-6.2808014e+117
-6.2813365e+117
-6.2968772e+117
-6.282105e+117
-6.2976436e+117
-6.2986533e+117
-6.2831859e+117
-6.3132666e+117
-6.3298362e+117
-6.3308304e+117
-6.3143055e+117
-6.311987e+117
-6.3291209e+117
-6.3285771e+117
-6.312539e+117
-6.3502125e+117
-6.3693217e+117
-6.3700096e+117
-6.3508463e+117
-6.3716587e+117
-6.3707854e+117
-6.3515949e+117
-6.3525781e+117
-6.3893776e+117
-6.3886046e+117
-6.4046877e+117
-6.4039569e+117
-6.3878227e+117
-6.3870556e+117
-6.4031801e+117
-6.4024213e+117
-6.3724451e+117
-6.3534615e+117
-6.3543209e+117
-6.3733165e+117
-6.3552409e+117
-6.3741952e+117
-6.375006e+117
-6.3561431e+117
-6.3918427e+117
-6.4073343e+117
-6.4080506e+117
-6.3925774e+117
-6.3901639e+117
-6.4055135e+117
-6.4065255e+117
-6.3910187e+117
-6.3188223e+117
-6.3356289e+117
-6.3358132e+117
-6.3187611e+117
-6.318892e+117
-6.3189604e+117
-6.3356148e+117
-6.3354591e+117
-6.3567449e+117
-6.3756036e+117
-6.3760086e+117
-6.3570418e+117
-6.3572901e+117
-6.3763305e+117
-6.3766542e+117
-6.3576224e+117
-6.3944493e+117
-6.3940764e+117
-6.4097023e+117
-6.4101046e+117
-6.3936765e+117
-6.3931787e+117
-6.408664e+117
-6.4091928e+117
-6.3579157e+117
-6.3770554e+117
-6.3775444e+117
-6.358144e+117
-6.3588255e+117
-6.3584221e+117
-6.3779631e+117
-6.3783974e+117
-6.3965092e+117
-6.3960535e+117
-6.4119726e+117
-6.4124521e+117
-6.3955095e+117
-6.3949092e+117
-6.4106653e+117
-6.4113078e+117
-6.1250884e+117
-6.126341e+117
-6.1815541e+117
-6.2107519e+117
-6.2108892e+117
-6.1813604e+117
-6.1826578e+117
-6.1816166e+117
-6.2113006e+117
-6.2122461e+117
-6.2420981e+117
-6.2409038e+117
-6.2741131e+117
-6.2755822e+117
-6.2401216e+117
-6.2401943e+117
-6.2732015e+117
-6.2731186e+117
-6.3505818e+117
-6.3237029e+117
-6.3055159e+117
-6.3056931e+117
-6.3238147e+117
-6.3052792e+117
-6.3235308e+117
-6.3231612e+117
-6.3054193e+117
-6.3512201e+117
-6.3060856e+117
-6.3242498e+117
-6.3250624e+117
-6.3067309e+117
-6.3083694e+117
-6.3265397e+117
-6.3258565e+117
-6.3075322e+117
-6.3538338e+117
-6.35231e+117
-6.1283582e+117
-6.1882796e+117
-6.1914674e+117
-6.2213929e+117
-6.2184432e+117
-6.1838738e+117
-6.2135683e+117
-6.2157404e+117
-6.1855719e+117
-6.2514211e+117
-6.2483289e+117
-6.2818894e+117
-6.2851001e+117
-6.2435275e+117
-6.2770834e+117
-6.279116e+117
-6.2455852e+117
-6.3091314e+117
-6.32734e+117
-6.3284169e+117
-6.3100366e+117
-6.311062e+117
-6.3294344e+117
-6.3305329e+117
-6.3123201e+117
-6.3577486e+117
-6.3556074e+117
-6.3153049e+117
-6.313628e+117
-6.3318423e+117
-6.3336426e+117
-6.3605789e+117
-6.3638018e+117
-6.3169984e+117
-6.3353474e+117
-6.3368027e+117
-6.3186257e+117
-6.3799331e+117
-6.3804919e+117
-6.3964391e+117
-6.3959075e+117
-6.4012579e+117
-6.4018927e+117
-6.4172346e+117
-6.4296225e+117
-6.4302539e+117
-6.4178909e+117
-6.3947307e+117
-6.3790141e+117
-6.3794706e+117
-6.3953467e+117
-6.4001351e+117
-6.4006653e+117
-6.4159345e+117
-6.4280925e+117
-6.4289322e+117
-6.4165942e+117
-6.3971477e+117
-6.3811272e+117
-6.3980546e+117
-6.3818895e+117
-6.4186331e+117
-6.4026172e+117
-6.4034114e+117
-6.4194893e+117
-6.4319653e+117
-6.4309804e+117
-6.3826599e+117
-6.3835433e+117
-6.3996395e+117
-6.398833e+117
-6.4042089e+117
-6.4051111e+117
-6.4212181e+117
-6.4203271e+117
-6.4328409e+117
-6.4336644e+117
-6.4053754e+117
-6.3892424e+117
-6.3908399e+117
-6.406989e+117
-6.4395394e+117
-6.4109263e+117
-6.412418e+117
-6.4270858e+117
-6.4285202e+117
-6.4410049e+117
-6.4083555e+117
-6.4097323e+117
-6.3937174e+117
-6.3922416e+117
-6.4137807e+117
-6.4152357e+117
-6.4423534e+117
-6.4298905e+117
-6.431276e+117
-6.4435861e+117
-6.3855255e+117
-6.3844666e+117
-6.4005763e+117
-6.4017553e+117
-6.407203e+117
-6.4060967e+117
-6.4222394e+117
-6.4360213e+117
-6.4346909e+117
-6.4234197e+117
-6.3878661e+117
-6.3866348e+117
-6.4028777e+117
-6.4040445e+117
-6.4083468e+117
-6.4095897e+117
-6.4371971e+117
-6.4245833e+117
-6.4257823e+117
-6.4382684e+117
-6.4326131e+117
-6.4333737e+117
-6.4340855e+117
-6.4347832e+117
-6.435535e+117
-6.4364302e+117
-6.4373132e+117
-6.4382083e+117
-6.4393869e+117
-6.4421234e+117
-6.438897e+117
-6.4396184e+117
-6.4428473e+117
-6.4400133e+117
-6.4408705e+117
-6.4436709e+117
-6.440369e+117
-6.44109e+117
-6.4443163e+117
-6.4413312e+117
-6.3865706e+117
-6.4237035e+117
-6.4243748e+117
-6.3867133e+117
-6.4254241e+117
-6.425007e+117
-6.3873499e+117
-6.3876724e+117
-6.4424029e+117
-6.4452187e+117
-6.4418874e+117
-6.4427192e+117
-6.4459689e+117
-6.4429565e+117
-6.4445344e+117
-6.4477672e+117
-6.4436113e+117
-6.4468913e+117
-6.4439544e+117
-6.4447422e+117
-6.4285531e+117
-6.4276929e+117
-6.389674e+117
-6.390441e+117
-6.3878696e+117
-6.4260506e+117
-6.3883296e+117
-6.4267665e+117
-6.4392715e+117
-6.4405103e+117
-6.4416907e+117
-6.4428336e+117
-6.444101e+117
-6.4454671e+117
-6.4467982e+117
-6.4480899e+117
-6.4459935e+117
-6.4489125e+117
-6.4456221e+117
-6.4467695e+117
-6.4499836e+117
-6.4469169e+117
-6.4491204e+117
-6.452308e+117
-6.4479572e+117
-6.4512328e+117
-6.4491821e+117
-6.4482806e+117
-6.4314995e+117
-6.3925728e+117
-6.3934126e+117
-6.4324324e+117
-6.3909887e+117
-6.429375e+117
-6.4303954e+117
-6.3915774e+117
-6.4337578e+117
-6.43514e+117
-6.3961081e+117
-6.3948783e+117
-6.3972992e+117
-6.4362618e+117
-6.4375003e+117
-6.3984789e+117
-6.4516948e+117
-6.4549111e+117
-6.4503945e+117
-6.4536351e+117
-6.4518982e+117
-6.4506531e+117
-6.4542926e+117
-6.4574075e+117
-6.4530058e+117
-6.456213e+117
-6.454283e+117
-6.4532202e+117
-6.4622585e+117
-6.43046e+117
-6.4290638e+117
-6.4345724e+117
-6.4358436e+117
-6.4502639e+117
-6.4635874e+117
-6.451514e+117
-6.4134848e+117
-6.4148013e+117
-6.4315612e+117
-6.4159398e+117
-6.4324357e+117
-6.4168993e+117
-6.4369336e+117
-6.4379054e+117
-6.4525841e+117
-6.4646222e+117
-6.4655287e+117
-6.4535506e+117
-6.4266307e+117
-6.4109784e+117
-6.4122635e+117
-6.4278664e+117
-6.4320341e+117
-6.4333579e+117
-6.4598894e+117
-6.4477678e+117
-6.4490329e+117
-6.4610372e+117
-6.4238082e+117
-6.4253563e+117
-6.4096823e+117
-6.4082407e+117
-6.4293001e+117
-6.4307544e+117
-6.4464394e+117
-6.4449901e+117
-6.4569721e+117
-6.4585188e+117
-6.4129396e+117
-6.4112118e+117
-6.4167504e+117
-6.4183941e+117
-6.4450503e+117
-6.4327739e+117
-6.4343941e+117
-6.4467078e+117
-6.4199713e+117
-6.4145041e+117
-6.4160277e+117
-6.4215623e+117
-6.4482578e+117
-6.4359413e+117
-6.4374795e+117
-6.4496613e+117
-6.4495452e+117
-6.4511089e+117
-6.4526401e+117
-6.4541013e+117
-6.4511885e+117
-6.4175804e+117
-6.4194294e+117
-6.4231329e+117
-6.4248555e+117
-6.4390308e+117
-6.4406796e+117
-6.4528713e+117
-6.4210167e+117
-6.4224721e+117
-6.4279315e+117
-6.4264157e+117
-6.4543577e+117
-6.4421895e+117
-6.4436058e+117
-6.4556192e+117
-6.4556257e+117
-6.4572006e+117
-6.4586582e+117
-6.4599863e+117
-6.4572166e+117
-6.4603325e+117
-6.4557213e+117
-6.4588501e+117
-6.4558144e+117
-6.4572704e+117
-6.3995167e+117
-6.4387037e+117
-6.4402232e+117
-6.4007114e+117
-6.4601996e+117
-6.4632669e+117
-6.4587282e+117
-6.4618566e+117
-6.4587901e+117
-6.4601025e+117
-6.4428242e+117
-6.441586e+117
-6.4020774e+117
-6.4032479e+117
-6.4631992e+117
-6.4662875e+117
-6.461711e+117
-6.4648139e+117
-6.4617446e+117
-6.4632112e+117
-6.4660018e+117
-6.4690753e+117
-6.4646336e+117
-6.4677099e+117
-6.4646124e+117
-6.4660028e+117
-6.4043287e+117
-6.4441516e+117
-6.445747e+117
-6.4060096e+117
-6.448495e+117
-6.4471836e+117
-6.4076921e+117
-6.4087625e+117
-6.4641887e+117
-6.4654073e+117
-6.4613669e+117
-6.4628307e+117
-6.4666426e+117
-6.4678686e+117
-6.4689226e+117
-6.4699e+117
-6.4673589e+117
-6.470462e+117
-6.467405e+117
-6.4687968e+117
-6.4718649e+117
-6.4688152e+117
-6.4099955e+117
-6.4497469e+117
-6.4511446e+117
-6.4110196e+117
-6.4123364e+117
-6.4523986e+117
-6.4536713e+117
-6.4136545e+117
-6.4701309e+117
-6.4732018e+117
-6.4713932e+117
-6.4744506e+117
-6.4713661e+117
-6.4701391e+117
-6.4148362e+117
-6.4548596e+117
-6.4562938e+117
-6.4161011e+117
-6.4174746e+117
-6.457329e+117
-6.4585524e+117
-6.4182249e+117
-6.4738204e+117
-6.4769714e+117
-6.4726367e+117
-6.4757164e+117
-6.4740482e+117
-6.4726732e+117
-6.4759207e+117
-6.4790972e+117
-6.4749166e+117
-6.4780596e+117
-6.4762182e+117
-6.4750783e+117
-6.4052276e+117
-6.4068188e+117
-6.4035634e+117
-6.4017505e+117
-6.3952306e+117
-6.3968856e+117
-6.400114e+117
-6.3984847e+117
-6.4254213e+117
-6.4246081e+117
-6.4456207e+117
-6.4464649e+117
-6.4564295e+117
-6.457276e+117
-6.4230337e+117
-6.4238354e+117
-6.4438914e+117
-6.4448028e+117
-6.454614e+117
-6.4555441e+117
-6.4262841e+117
-6.4272135e+117
-6.4581807e+117
-6.4473238e+117
-6.448299e+117
-6.4591184e+117
-6.4280639e+117
-6.4491467e+117
-6.4288135e+117
-6.4499215e+117
-6.4600015e+117
-6.4607872e+117
-6.4306758e+117
-6.4312083e+117
-6.4526666e+117
-6.4520489e+117
-6.46306e+117
-6.4636969e+117
-6.4295011e+117
-6.4506612e+117
-6.4301051e+117
-6.4513984e+117
-6.4623484e+117
-6.4615892e+117
-6.4318024e+117
-6.4324613e+117
-6.4533099e+117
-6.4540331e+117
-6.4643829e+117
-6.465087e+117
-6.4331389e+117
-6.4337004e+117
-6.4546942e+117
-6.455274e+117
-6.465766e+117
-6.4663442e+117
-6.4636252e+117
-6.4713661e+117
-6.4645986e+117
-6.4723599e+117
-6.4654918e+117
-6.4733068e+117
-6.4663597e+117
-6.4741886e+117
-6.4672653e+117
-6.475114e+117
-6.4681995e+117
-6.4760651e+117
-6.4691208e+117
-6.4769819e+117
-6.469919e+117
-6.4778293e+117
-6.4767477e+117
-6.4797193e+117
-6.4757733e+117
-6.4787016e+117
-6.4765238e+117
-6.4775352e+117
-6.4202047e+117
-6.4591776e+117
-6.4603646e+117
-6.4209869e+117
-6.478609e+117
-6.4815533e+117
-6.4777067e+117
-6.4806997e+117
-6.4784811e+117
-6.4793089e+117
-6.4619815e+117
-6.4611875e+117
-6.4218282e+117
-6.4223258e+117
-6.4814355e+117
-6.4844588e+117
-6.4821871e+117
-6.4830482e+117
-6.485337e+117
-6.482326e+117
-6.4804833e+117
-6.4834868e+117
-6.4795576e+117
-6.4825259e+117
-6.4802601e+117
-6.4812326e+117
-6.4230033e+117
-6.4626095e+117
-6.4637163e+117
-6.4238329e+117
-6.4655143e+117
-6.4645843e+117
-6.4248294e+117
-6.4255336e+117
-6.4736799e+117
-6.4816942e+117
-6.4743718e+117
-6.4824075e+117
-6.4750779e+117
-6.4831035e+117
-6.4756512e+117
-6.4837167e+117
-6.4840716e+117
-6.4795846e+117
-6.4870087e+117
-6.483255e+117
-6.4787538e+117
-6.4861705e+117
-6.4837763e+117
-6.4846381e+117
-6.4855342e+117
-6.4810179e+117
-6.4885219e+117
-6.4848525e+117
-6.4803525e+117
-6.4878235e+117
-6.4854372e+117
-6.4861778e+117
-6.4669116e+117
-6.4660871e+117
-6.4262336e+117
-6.4267826e+117
-6.4684591e+117
-6.4676522e+117
-6.4276105e+117
-6.4281826e+117
-6.4707892e+117
-6.471573e+117
-6.4723061e+117
-6.4729587e+117
-6.4869348e+117
-6.4900914e+117
-6.4862336e+117
-6.4892901e+117
-6.486972e+117
-6.4878397e+117
-6.4883128e+117
-6.4915028e+117
-6.4876591e+117
-6.4908351e+117
-6.488594e+117
-6.4893141e+117
-6.4289733e+117
-6.4690199e+117
-6.4700978e+117
-6.4298775e+117
-6.4717295e+117
-6.4709117e+117
-6.4308414e+117
-6.4314972e+117
-6.4352638e+117
-6.4348687e+117
-6.4567344e+117
-6.4571756e+117
-6.4679796e+117
-6.4684441e+117
-6.4341265e+117
-6.4344795e+117
-6.4557893e+117
-6.4562721e+117
-6.466925e+117
-6.4674568e+117
-6.4357045e+117
-6.4361348e+117
-6.4576443e+117
-6.4581812e+117
-6.4689657e+117
-6.4695093e+117
-6.4369966e+117
-6.4365856e+117
-6.4586631e+117
-6.4590912e+117
-6.4700314e+117
-6.4704709e+117
-6.4373337e+117
-6.437578e+117
-6.459496e+117
-6.4598699e+117
-6.4709431e+117
-6.4713631e+117
-6.4380488e+117
-6.4378257e+117
-6.4601841e+117
-6.4604566e+117
-6.4717426e+117
-6.4720347e+117
-6.4383469e+117
-6.4386901e+117
-6.4607678e+117
-6.4611485e+117
-6.472741e+117
-6.4723729e+117
-6.4394058e+117
-6.4390599e+117
-6.4614891e+117
-6.461834e+117
-6.4734135e+117
-6.4730879e+117
-6.4831886e+117
-6.4917462e+117
-6.4828713e+117
-6.4914164e+117
-6.4821633e+117
-6.4906929e+117
-6.4825225e+117
-6.491064e+117
-6.4944614e+117
-6.4896021e+117
-6.497988e+117
-6.4938976e+117
-6.4890602e+117
-6.497353e+117
-6.4952427e+117
-6.4959273e+117
-6.4784667e+117
-6.4777072e+117
-6.4378356e+117
-6.4382966e+117
-6.4390538e+117
-6.4788291e+117
-6.4794255e+117
-6.4392702e+117
-6.4952899e+117
-6.4903791e+117
-6.4988642e+117
-6.494944e+117
-6.4900642e+117
-6.4984779e+117
-6.4968244e+117
-6.4963911e+117
-6.4806269e+117
-6.4810892e+117
-6.4815126e+117
-6.4818027e+117
-6.4956185e+117
-6.4992421e+117
-6.4959857e+117
-6.4997316e+117
-6.4978071e+117
-6.4972239e+117
-6.439778e+117
-6.4796846e+117
-6.4805087e+117
-6.4405754e+117
-6.498219e+117
-6.5001515e+117
-6.4963846e+117
-6.4967306e+117
-6.5005094e+117
-6.4986275e+117
-6.4411335e+117
-6.4809014e+117
-6.481307e+117
-6.4410628e+117
-6.4762982e+117
-6.4843845e+117
-6.4768668e+117
-6.4849993e+117
-6.4774186e+117
-6.4855816e+117
-6.4778917e+117
-6.4861051e+117
-6.4784574e+117
-6.4866915e+117
-6.4790163e+117
-6.4872934e+117
-6.4795903e+117
-6.4878754e+117
-6.4800459e+117
-6.4884091e+117
-6.4899702e+117
-6.4922087e+117
-6.4890139e+117
-6.4896122e+117
-6.4928178e+117
-6.4905731e+117
-6.4907611e+117
-6.494022e+117
-6.4901935e+117
-6.493389e+117
-6.4918248e+117
-6.4911169e+117
-6.4734392e+117
-6.4332436e+117
-6.4337055e+117
-6.4739598e+117
-6.4325034e+117
-6.472198e+117
-6.4728627e+117
-6.4325223e+117
-6.4746646e+117
-6.475547e+117
-6.4352693e+117
-6.4344919e+117
-6.4770767e+117
-6.4762409e+117
-6.4361543e+117
-6.436963e+117
-6.4919755e+117
-6.4953231e+117
-6.4913698e+117
-6.4946461e+117
-6.493155e+117
-6.4924077e+117
-6.4931946e+117
-6.4966224e+117
-6.4925961e+117
-6.4959753e+117
-6.4945497e+117
-6.4938312e+117
-6.4422232e+117
-6.4418315e+117
-6.4651432e+117
-6.454342e+117
-6.4655198e+117
-6.4547396e+117
-6.4737838e+117
-6.4741389e+117
-6.4414355e+117
-6.4410853e+117
-6.4643327e+117
-6.4535803e+117
-6.4647245e+117
-6.4539385e+117
-6.4729771e+117
-6.4733777e+117
-6.4435871e+117
-6.443913e+117
-6.4669173e+117
-6.4562669e+117
-6.4666635e+117
-6.455991e+117
-6.4752128e+117
-6.4754926e+117
-6.4660196e+117
-6.4744961e+117
-6.4553011e+117
-6.46639e+117
-6.4556995e+117
-6.4431882e+117
-6.4427286e+117
-6.4748529e+117
-6.4448242e+117
-6.445145e+117
-6.467872e+117
-6.4571891e+117
-6.4681724e+117
-6.4575157e+117
-6.4767309e+117
-6.4764404e+117
-6.4442235e+117
-6.4445061e+117
-6.4675299e+117
-6.4568499e+117
-6.4672264e+117
-6.4565625e+117
-6.4758027e+117
-6.4761143e+117
-6.4455248e+117
-6.4459671e+117
-6.4689599e+117
-6.45831e+117
-6.4685403e+117
-6.4578855e+117
-6.4775023e+117
-6.4770899e+117
-6.4470618e+117
-6.4465017e+117
-6.46944e+117
-6.4588352e+117
-6.4779579e+117
-6.469896e+117
-6.4593597e+117
-6.4783774e+117
-6.4819591e+117
-6.4910088e+117
-6.4823617e+117
-6.4914218e+117
-6.4827417e+117
-6.491806e+117
-6.4830612e+117
-6.4920824e+117
-6.4833204e+117
-6.4923462e+117
-6.4836518e+117
-6.4926679e+117
-6.4843796e+117
-6.4933341e+117
-6.4840865e+117
-6.4930445e+117
-6.5002587e+117
-6.4967156e+117
-6.4970839e+117
-6.500609e+117
-6.5009874e+117
-6.4974619e+117
-6.4977279e+117
-6.5012132e+117
-6.5015076e+117
-6.498015e+117
-6.4982883e+117
-6.5017639e+117
-6.4986455e+117
-6.5020662e+117
-6.4989379e+117
-6.5023109e+117
-6.4871447e+117
-6.4959492e+117
-6.4867713e+117
-6.4956099e+117
-6.4859336e+117
-6.4948318e+117
-6.4863146e+117
-6.4952097e+117
-6.4846972e+117
-6.4936664e+117
-6.4849997e+117
-6.4939686e+117
-6.4853007e+117
-6.4942544e+117
-6.4855635e+117
-6.4944904e+117
-6.5026251e+117
-6.499272e+117
-6.4995265e+117
-6.5028425e+117
-6.5030734e+117
-6.4997979e+117
-6.5000234e+117
-6.5032803e+117
-6.5007057e+117
-6.5039639e+117
-6.5003516e+117
-6.5035658e+117
-6.504346e+117
-6.501117e+117
-6.5014498e+117
-6.504649e+117
-6.3640324e+117
-6.3637751e+117
-6.364329e+117
-6.3642112e+117
-6.362218e+117
-6.3626492e+117
-6.3634564e+117
-6.3630198e+117
-6.3611521e+117
-6.3608821e+117
-6.360691e+117
-6.3606079e+117
-6.3606775e+117
-6.3609142e+117
-6.3612157e+117
-6.3616647e+117
-6.3608533e+117
-6.361061e+117
-6.3609287e+117
-6.3608573e+117
-6.361224e+117
-6.3610635e+117
-6.361263e+117
-6.3612436e+117
-6.361972e+117
-6.3976091e+117
-6.3631912e+117
-6.3622436e+117
-6.363187e+117
-6.3976199e+117
-6.3615127e+117
-6.3616846e+117
-6.3974251e+117
-6.3630626e+117
-6.362662e+117
-6.3968722e+117
-6.3613014e+117
-6.3613885e+117
-6.3611296e+117
-6.3611995e+117
-6.3951982e+117
-6.3609108e+117
-6.3603105e+117
-6.3945732e+117
-6.3963649e+117
-6.3621153e+117
-6.3615883e+117
-6.395919e+117
-6.3569052e+117
-6.3912979e+117
-6.3921602e+117
-6.3577052e+117
-6.3937815e+117
-6.35948e+117
-6.3585522e+117
-6.3929576e+117
-6.3898016e+117
-6.3557403e+117
-6.3551722e+117
-6.3893557e+117
-6.3905719e+117
-6.3562661e+117
-6.3558389e+117
-6.3901239e+117
-6.3735372e+117
-6.3392382e+117
-6.3381501e+117
-6.3723413e+117
-6.3758897e+117
-6.3414355e+117
-6.3403039e+117
-6.3747249e+117
-6.3781605e+117
-6.3435327e+117
-6.3424707e+117
-6.3769932e+117
-6.3800745e+117
-6.3454973e+117
-6.3445444e+117
-6.3792019e+117
-6.368552e+117
-6.3344077e+117
-6.3330508e+117
-6.3670588e+117
-6.3711535e+117
-6.3370049e+117
-6.335723e+117
-6.369938e+117
-6.3635184e+117
-6.3297851e+117
-6.3288092e+117
-6.3623881e+117
-6.3307321e+117
-6.3646031e+117
-6.3657383e+117
-6.3318257e+117
-6.3786461e+117
-6.3455872e+117
-6.3450966e+117
-6.3779847e+117
-6.3460179e+117
-6.3792605e+117
-6.3798269e+117
-6.3465189e+117
-6.3812211e+117
-6.3478055e+117
-6.3470749e+117
-6.3804496e+117
-6.3827301e+117
-6.3493091e+117
-6.3486024e+117
-6.3820541e+117
-6.3839409e+117
-6.3502286e+117
-6.3498705e+117
-6.3834063e+117
-6.38535e+117
-6.351541e+117
-6.3508555e+117
-6.3846723e+117
-6.3869798e+117
-6.3529843e+117
-6.3522524e+117
-6.3861364e+117
-6.3884446e+117
-6.3544509e+117
-6.3536928e+117
-6.3877117e+117
-6.350956e+117
-6.3185159e+117
-6.3186753e+117
-6.3508796e+117
-6.3186138e+117
-6.3512329e+117
-6.3514413e+117
-6.3187785e+117
-6.3190883e+117
-6.3518303e+117
-6.352431e+117
-6.319605e+117
-6.3538797e+117
-6.3209837e+117
-6.320255e+117
-6.3531851e+117
-6.3553099e+117
-6.3222497e+117
-6.3216643e+117
-6.3546368e+117
-6.3568176e+117
-6.3235474e+117
-6.322678e+117
-6.3559589e+117
-6.3244829e+117
-6.3579187e+117
-6.3590994e+117
-6.3255265e+117
-6.3265795e+117
-6.3602035e+117
-6.3612745e+117
-6.3277203e+117
-6.2004118e+117
-6.1794026e+117
-6.1999485e+117
-6.1798004e+117
-6.2223367e+117
-6.2457841e+117
-6.245969e+117
-6.2226566e+117
-6.1801494e+117
-6.2006246e+117
-6.1799439e+117
-6.2004558e+117
-6.222839e+117
-6.2462917e+117
-6.2230215e+117
-6.2464906e+117
-6.2724327e+117
-6.3007285e+117
-6.2722447e+117
-6.3005592e+117
-6.331016e+117
-6.33119e+117
-6.3002641e+117
-6.2717365e+117
-6.3000569e+117
-6.2719374e+117
-6.3305448e+117
-6.3307568e+117
-6.1986204e+117
-6.1775355e+117
-6.1980059e+117
-6.178097e+117
-6.2204697e+117
-6.2210604e+117
-6.243995e+117
-6.2445399e+117
-6.1994646e+117
-6.1785699e+117
-6.1990589e+117
-6.1789717e+117
-6.2450662e+117
-6.2215035e+117
-6.2219293e+117
-6.2454475e+117
-6.2989003e+117
-6.2700016e+117
-6.2983626e+117
-6.2705449e+117
-6.3288941e+117
-6.3293718e+117
-6.2714191e+117
-6.2997392e+117
-6.2710383e+117
-6.2993109e+117
-6.3297753e+117
-6.3302213e+117
-6.0439792e+117
-6.0440277e+117
-6.058884e+117
-6.0588636e+117
-6.0739254e+117
-6.0891751e+117
-6.0738559e+117
-6.0893378e+117
-6.0437968e+117
-6.0586702e+117
-6.0588778e+117
-6.0440277e+117
-6.0888348e+117
-6.0736137e+117
-6.0737366e+117
-6.0888995e+117
-6.1228923e+117
-6.1052877e+117
-6.105427e+117
-6.1226737e+117
-6.1059304e+117
-6.1234013e+117
-6.1057136e+117
-6.1231574e+117
-6.1593365e+117
-6.1596281e+117
-6.1406091e+117
-6.1408635e+117
-6.1411235e+117
-6.1598786e+117
-6.1413718e+117
-6.1601192e+117
-6.0421105e+117
-6.0569208e+117
-6.0574966e+117
-6.0426182e+117
-6.0431202e+117
-6.0580062e+117
-6.0584592e+117
-6.0435484e+117
-6.0872154e+117
-6.0719198e+117
-6.0724944e+117
-6.0877784e+117
-6.0882798e+117
-6.0729797e+117
-6.0733186e+117
-6.0884739e+117
-6.1216678e+117
-6.1037014e+117
-6.1210876e+117
-6.1042743e+117
-6.1389841e+117
-6.139548e+117
-6.1576106e+117
-6.1581542e+117
-6.1049699e+117
-6.1223799e+117
-6.1047301e+117
-6.1220662e+117
-6.1586217e+117
-6.1399705e+117
-6.1403088e+117
-6.1589902e+117
-6.1964287e+117
-6.1756784e+117
-6.1961305e+117
-6.1759427e+117
-6.2186034e+117
-6.2421625e+117
-6.2424663e+117
-6.218884e+117
-6.1768931e+117
-6.1973339e+117
-6.1763471e+117
-6.1968116e+117
-6.2192511e+117
-6.2428012e+117
-6.2197839e+117
-6.2433291e+117
-6.2967847e+117
-6.2681972e+117
-6.2965802e+117
-6.2684731e+117
-6.269357e+117
-6.2688261e+117
-6.2972004e+117
-6.2977356e+117
-6.3271961e+117
-6.327371e+117
-6.3283005e+117
-6.327757e+117
-6.1759382e+117
-6.175711e+117
-6.1963637e+117
-6.1961339e+117
-6.2185859e+117
-6.2421464e+117
-6.2188192e+117
-6.2423888e+117
-6.1959776e+117
-6.1755598e+117
-6.1959881e+117
-6.1755275e+117
-6.218451e+117
-6.2184401e+117
-6.242004e+117
-6.2419754e+117
-6.268487e+117
-6.296978e+117
-6.2682345e+117
-6.2967101e+117
-6.3273774e+117
-6.3276837e+117
-6.2680276e+117
-6.2964568e+117
-6.2680706e+117
-6.2965197e+117
-6.327158e+117
-6.3271057e+117
-6.1022442e+117
-6.1021818e+117
-6.1196298e+117
-6.1195317e+117
-6.1373312e+117
-6.1558603e+117
-6.1374733e+117
-6.1560481e+117
-6.1021447e+117
-6.1194347e+117
-6.1021388e+117
-6.119458e+117
-6.1372321e+117
-6.1371828e+117
-6.1557341e+117
-6.1556876e+117
-6.0408443e+117
-6.0409719e+117
-6.055459e+117
-6.0554764e+117
-6.0703202e+117
-6.0856429e+117
-6.0703702e+117
-6.0857047e+117
-6.055528e+117
-6.0409527e+117
-6.0554904e+117
-6.040909e+117
-6.0703362e+117
-6.0703918e+117
-6.0856275e+117
-6.0856488e+117
-6.0558088e+117
-6.0410191e+117
-6.0556339e+117
-6.041133e+117
-6.0705001e+117
-6.0857903e+117
-6.0860417e+117
-6.0707272e+117
-6.0564874e+117
-6.0413472e+117
-6.0560788e+117
-6.0416656e+117
-6.0710073e+117
-6.0862701e+117
-6.0713707e+117
-6.0865532e+117
-6.1197006e+117
-6.1022523e+117
-6.1195456e+117
-6.1024532e+117
-6.1558472e+117
-6.1373386e+117
-6.1375186e+117
-6.1560539e+117
-6.103061e+117
-6.1204706e+117
-6.102715e+117
-6.1200464e+117
-6.1564742e+117
-6.1379003e+117
-6.1383775e+117
-6.1569947e+117
-5.8585325e+117
-5.8703277e+117
-5.8700018e+117
-5.8582063e+117
-5.880507e+117
-5.8801801e+117
-5.8698196e+117
-5.8800085e+117
-5.8800835e+117
-5.8698525e+117
-5.8579611e+117
-5.8579604e+117
-5.831063e+117
-5.8228365e+117
-5.8225721e+117
-5.8307357e+117
-5.8145181e+117
-5.8062574e+117
-5.806195e+117
-5.8143235e+117
-5.8304617e+117
-5.8222791e+117
-5.8220578e+117
-5.8302451e+117
-5.805675e+117
-5.8060308e+117
-5.8140796e+117
-5.8138129e+117
-5.8390989e+117
-5.8394289e+117
-5.8481836e+117
-5.8478608e+117
-5.8386676e+117
-5.8388513e+117
-5.8476135e+117
-5.8475136e+117
-5.8580808e+117
-5.8700348e+117
-5.8703331e+117
-5.8582949e+117
-5.8803266e+117
-5.8806172e+117
-5.8706007e+117
-5.8809103e+117
-5.8811717e+117
-5.8708424e+117
-5.8585237e+117
-5.858777e+117
-5.8134947e+117
-5.8051602e+117
-5.8045851e+117
-5.8130434e+117
-5.8300954e+117
-5.8218256e+117
-5.8215328e+117
-5.8299625e+117
-5.8387852e+117
-5.8386101e+117
-5.8477627e+117
-5.8480078e+117
-5.838585e+117
-5.838605e+117
-5.847531e+117
-5.8476406e+117
-5.8900487e+117
-5.9006012e+117
-5.9003508e+117
-5.8897517e+117
-5.8895948e+117
-5.9002232e+117
-5.900292e+117
-5.8896743e+117
-5.923005e+117
-5.9116802e+117
-5.9232048e+117
-5.9114431e+117
-5.9230006e+117
-5.9113662e+117
-5.9229515e+117
-5.9114087e+117
-5.8899432e+117
-5.900549e+117
-5.9008315e+117
-5.8902307e+117
-5.8905111e+117
-5.9011055e+117
-5.9013452e+117
-5.8907676e+117
-5.9234617e+117
-5.911677e+117
-5.9232416e+117
-5.9119173e+117
-5.9122043e+117
-5.9237244e+117
-5.9238796e+117
-5.9123889e+117
-5.7979801e+117
-5.7898079e+117
-5.7900358e+117
-5.7980445e+117
-5.7816068e+117
-5.7734776e+117
-5.7739369e+117
-5.7819256e+117
-5.7979566e+117
-5.7900214e+117
-5.7895143e+117
-5.7974884e+117
-5.7736643e+117
-5.7740833e+117
-5.7819695e+117
-5.7815233e+117
-5.8593685e+117
-5.8723738e+117
-5.8728854e+117
-5.8598415e+117
-5.9351306e+117
-5.9349558e+117
-5.9473859e+117
-5.9472408e+117
-5.9599678e+117
-5.959877e+117
-5.972861e+117
-5.9728376e+117
-5.9349282e+117
-5.94724e+117
-5.9473233e+117
-5.9349847e+117
-5.9729081e+117
-5.9730414e+117
-5.9599055e+117
-5.9600092e+117
-5.9997791e+117
-5.9861082e+117
-5.9996076e+117
-5.9861635e+117
-5.9862944e+117
-5.9999922e+117
-6.0002173e+117
-5.986465e+117
-6.0134222e+117
-6.0275789e+117
-6.0137337e+117
-6.0280036e+117
-6.0284193e+117
-6.0287773e+117
-6.0140505e+117
-6.0143385e+117
-5.986669e+117
-6.0004538e+117
-6.0006572e+117
-5.9868627e+117
-5.9870427e+117
-5.9870088e+117
-6.0007707e+117
-6.0007828e+117
-6.0146076e+117
-6.0290659e+117
-6.0292992e+117
-6.0148057e+117
-6.0148727e+117
-6.0148746e+117
-6.0293078e+117
-6.0292794e+117
-5.9351984e+117
-5.9475073e+117
-5.9353948e+117
-5.9476839e+117
-5.9603605e+117
-5.9601842e+117
-5.9732242e+117
-5.9734043e+117
-5.9480091e+117
-5.9356323e+117
-5.9478985e+117
-5.9357592e+117
-5.9735661e+117
-5.9605475e+117
-5.9606269e+117
-5.9736075e+117
-5.9854651e+117
-5.998775e+117
-5.998923e+117
-5.9856068e+117
-5.9856373e+117
-5.9856655e+117
-5.9989296e+117
-5.998912e+117
-6.0266303e+117
-6.0124639e+117
-6.0264881e+117
-6.0125773e+117
-6.0125347e+117
-6.0266091e+117
-6.0125697e+117
-6.0265434e+117
-5.9856176e+117
-5.9857242e+117
-5.9989336e+117
-5.9990286e+117
-6.0127009e+117
-6.0266265e+117
-6.0125983e+117
-6.0267306e+117
-5.99945e+117
-5.9858178e+117
-5.9991741e+117
-5.9861162e+117
-6.0128415e+117
-6.0268938e+117
-6.0271192e+117
-6.0130473e+117
-5.9477339e+117
-5.9358078e+117
-5.9476996e+117
-5.9357692e+117
-5.959923e+117
-5.9599883e+117
-5.9724888e+117
-5.9725777e+117
-5.9477586e+117
-5.9357273e+117
-5.9477286e+117
-5.9356661e+117
-5.9726528e+117
-5.9600179e+117
-5.9600493e+117
-5.9726187e+117
-5.9478801e+117
-5.9356883e+117
-5.9355857e+117
-5.947782e+117
-5.9601634e+117
-5.9727436e+117
-5.9601366e+117
-5.9726058e+117
-5.9729406e+117
-5.9602334e+117
-5.9601077e+117
-5.9727847e+117
-5.9352966e+117
-5.9478007e+117
-5.9355046e+117
-5.9475595e+117
-5.8604928e+117
-5.8722912e+117
-5.8719029e+117
-5.8601064e+117
-5.8824962e+117
-5.8820795e+117
-5.8717701e+117
-5.8818072e+117
-5.8815726e+117
-5.8715271e+117
-5.8599346e+117
-5.8597084e+117
-5.832626e+117
-5.8242293e+117
-5.8236185e+117
-5.8320656e+117
-5.815699e+117
-5.8072001e+117
-5.8064953e+117
-5.8150248e+117
-5.8059249e+117
-5.8061176e+117
-5.8146564e+117
-5.8145408e+117
-5.8318035e+117
-5.8232787e+117
-5.8231638e+117
-5.8316463e+117
-5.8406598e+117
-5.8411477e+117
-5.850034e+117
-5.8496042e+117
-5.8402347e+117
-5.8404242e+117
-5.8493872e+117
-5.8491937e+117
-5.8594251e+117
-5.8712437e+117
-5.8711418e+117
-5.8593692e+117
-5.8813675e+117
-5.8812203e+117
-5.8710969e+117
-5.8810933e+117
-5.8808532e+117
-5.8708103e+117
-5.8593397e+117
-5.8590544e+117
-5.8315577e+117
-5.8231789e+117
-5.8231689e+117
-5.8315408e+117
-5.8145688e+117
-5.8059009e+117
-5.8060075e+117
-5.8146023e+117
-5.8063456e+117
-5.8062257e+117
-5.8146723e+117
-5.8146932e+117
-5.8315559e+117
-5.823171e+117
-5.8230894e+117
-5.8313915e+117
-5.8400605e+117
-5.8400682e+117
-5.8489561e+117
-5.8489341e+117
-5.8398205e+117
-5.8400453e+117
-5.848893e+117
-5.848647e+117
-5.9019768e+117
-5.8919525e+117
-5.902278e+117
-5.8915608e+117
-5.9130466e+117
-5.9128247e+117
-5.9242289e+117
-5.9241015e+117
-5.901514e+117
-5.8912649e+117
-5.9017255e+117
-5.8910371e+117
-5.9240046e+117
-5.9126543e+117
-5.9124505e+117
-5.9238527e+117
-5.9012301e+117
-5.8908888e+117
-5.9014e+117
-5.8907195e+117
-5.923832e+117
-5.9123956e+117
-5.9122201e+117
-5.9236876e+117
-5.9008302e+117
-5.8905489e+117
-5.9010544e+117
-5.8903198e+117
-5.9235788e+117
-5.9120825e+117
-5.9118469e+117
-5.9233548e+117
-5.7986751e+117
-5.7902764e+117
-5.7894674e+117
-5.7979057e+117
-5.7818817e+117
-5.7736143e+117
-5.7727855e+117
-5.7810326e+117
-5.7722493e+117
-5.7723788e+117
-5.7805839e+117
-5.7804481e+117
-5.797507e+117
-5.7890114e+117
-5.7888106e+117
-5.7972787e+117
-5.7730523e+117
-5.7726171e+117
-5.7808701e+117
-5.7813033e+117
-5.7723733e+117
-5.7722232e+117
-5.7803553e+117
-5.7805558e+117
-5.7972163e+117
-5.7887111e+117
-5.7889281e+117
-5.7973782e+117
-5.7976982e+117
-5.7892707e+117
-5.7896252e+117
-5.797938e+117
-5.7653563e+117
-5.7572616e+117
-5.7564805e+117
-5.7645256e+117
-5.74927e+117
-5.7415108e+117
-5.7408914e+117
-5.7485356e+117
-5.7402497e+117
-5.7405318e+117
-5.7481165e+117
-5.7479491e+117
-5.7641435e+117
-5.7560539e+117
-5.755914e+117
-5.7640138e+117
-5.7338312e+117
-5.726301e+117
-5.7258527e+117
-5.7332799e+117
-5.7187586e+117
-5.7111529e+117
-5.7109376e+117
-5.7183891e+117
-5.7108339e+117
-5.711005e+117
-5.7182299e+117
-5.7180089e+117
-5.7329922e+117
-5.7255822e+117
-5.7252677e+117
-5.7326548e+117
-5.7099186e+117
-5.7101474e+117
-5.7173264e+117
-5.7170509e+117
-5.7321652e+117
-5.7246513e+117
-5.7243403e+117
-5.7318623e+117
-5.7640098e+117
-5.7558557e+117
-5.7558117e+117
-5.7640713e+117
-5.747769e+117
-5.7398938e+117
-5.7396622e+117
-5.7476212e+117
-5.7401128e+117
-5.7396629e+117
-5.7475999e+117
-5.7480896e+117
-5.7642296e+117
-5.7558715e+117
-5.7563361e+117
-5.7646775e+117
-5.8523453e+117
-5.8513471e+117
-5.8711689e+117
-5.8701667e+117
-5.8693784e+117
-5.8689349e+117
-5.8506359e+117
-5.8501877e+117
-5.8232346e+117
-5.814248e+117
-5.8136189e+117
-5.8224778e+117
-5.8056407e+117
-5.7967534e+117
-5.7963738e+117
-5.8051106e+117
-5.8220277e+117
-5.8132577e+117
-5.8127632e+117
-5.8214892e+117
-5.7957751e+117
-5.7961538e+117
-5.804836e+117
-5.804417e+117
-5.8312696e+117
-5.8320472e+117
-5.8410893e+117
-5.840233e+117
-5.8301764e+117
-5.8306838e+117
-5.8395725e+117
-5.8390923e+117
-5.8500446e+117
-5.8500755e+117
-5.8688053e+117
-5.8688424e+117
-5.8689601e+117
-5.8691581e+117
-5.8502056e+117
-5.8504132e+117
-5.7951691e+117
-5.7951911e+117
-5.8038276e+117
-5.8039288e+117
-5.8039775e+117
-5.7953551e+117
-5.7951145e+117
-5.8037265e+117
-5.8211095e+117
-5.8123026e+117
-5.8121031e+117
-5.8209635e+117
-5.8210993e+117
-5.81222e+117
-5.8123698e+117
-5.8212844e+117
-5.8300691e+117
-5.8298881e+117
-5.8389514e+117
-5.8391661e+117
-5.8297666e+117
-5.8298624e+117
-5.8388545e+117
-5.8388274e+117
-5.8821677e+117
-5.8933235e+117
-5.8923665e+117
-5.8811784e+117
-5.8803753e+117
-5.891603e+117
-5.8911359e+117
-5.879919e+117
-5.915273e+117
-5.9046229e+117
-5.916135e+117
-5.9037048e+117
-5.9141383e+117
-5.9029858e+117
-5.9145958e+117
-5.9025085e+117
-5.8798126e+117
-5.8910152e+117
-5.8910022e+117
-5.8798249e+117
-5.8799078e+117
-5.891086e+117
-5.8912335e+117
-5.8800869e+117
-5.9139361e+117
-5.9023823e+117
-5.9139872e+117
-5.9023426e+117
-5.902547e+117
-5.9024311e+117
-5.9140174e+117
-5.9141238e+117
-5.7883851e+117
-5.7798041e+117
-5.7796384e+117
-5.7880844e+117
-5.7717112e+117
-5.7633525e+117
-5.7634215e+117
-5.7716585e+117
-5.7635598e+117
-5.7635625e+117
-5.771639e+117
-5.7714753e+117
-5.7878941e+117
-5.7794891e+117
-5.7792185e+117
-5.7875578e+117
-5.7871522e+117
-5.778852e+117
-5.7786431e+117
-5.7869231e+117
-5.7631428e+117
-5.7633044e+117
-5.7711233e+117
-5.7709241e+117
-5.7626126e+117
-5.7630479e+117
-5.7709027e+117
-5.7706083e+117
-5.7869656e+117
-5.778636e+117
-5.7784033e+117
-5.7868481e+117
-5.851149e+117
-5.8609061e+117
-5.8613909e+117
-5.8516623e+117
-5.8721859e+117
-5.8726343e+117
-5.8620601e+117
-5.8732429e+117
-5.8738918e+117
-5.8626886e+117
-5.8523348e+117
-5.852918e+117
-5.8237616e+117
-5.8154129e+117
-5.8159803e+117
-5.8243111e+117
-5.8068518e+117
-5.7982963e+117
-5.7989372e+117
-5.8074493e+117
-5.7998675e+117
-5.7994815e+117
-5.8079463e+117
-5.8083325e+117
-5.8248806e+117
-5.8164773e+117
-5.8168519e+117
-5.8252884e+117
-5.833929e+117
-5.8334742e+117
-5.8423244e+117
-5.8428607e+117
-5.8328681e+117
-5.8323175e+117
-5.8411586e+117
-5.8416972e+117
-5.8495547e+117
-5.8594299e+117
-5.8599071e+117
-5.8499932e+117
-5.8709821e+117
-5.8713209e+117
-5.8603438e+117
-5.8716295e+117
-5.87189e+117
-5.8606403e+117
-5.8504711e+117
-5.8508291e+117
-5.7975393e+117
-5.7967968e+117
-5.8053305e+117
-5.8060808e+117
-5.8043942e+117
-5.7958546e+117
-5.7961797e+117
-5.8047607e+117
-5.8215251e+117
-5.8129888e+117
-5.8134107e+117
-5.8219729e+117
-5.8225615e+117
-5.8139859e+117
-5.8146957e+117
-5.8231874e+117
-5.8318459e+117
-5.83132e+117
-5.8403276e+117
-5.8407671e+117
-5.8394404e+117
-5.8303221e+117
-5.8307478e+117
-5.8398325e+117
-5.8811349e+117
-5.891897e+117
-5.8921288e+117
-5.8814144e+117
-5.8816625e+117
-5.8923631e+117
-5.8925747e+117
-5.8818947e+117
-5.914611e+117
-5.9030058e+117
-5.9144598e+117
-5.9031779e+117
-5.9149902e+117
-5.9034087e+117
-5.9148166e+117
-5.9035827e+117
-5.7639398e+117
-5.7634238e+117
-5.7714602e+117
-5.7721091e+117
-5.7709486e+117
-5.7631281e+117
-5.7630704e+117
-5.7710034e+117
-5.7872936e+117
-5.7790085e+117
-5.7792045e+117
-5.787573e+117
-5.7881941e+117
-5.7797711e+117
-5.7804662e+117
-5.7889219e+117
-5.7655538e+117
-5.7653043e+117
-5.7737011e+117
-5.774085e+117
-5.76495e+117
-5.7644718e+117
-5.7727037e+117
-5.7732767e+117
-5.7896562e+117
-5.781146e+117
-5.7817673e+117
-5.7902991e+117
-5.7908506e+117
-5.7822826e+117
-5.7826941e+117
-5.7912538e+117
-5.8822337e+117
-5.8929328e+117
-5.8933285e+117
-5.8826549e+117
-5.8832082e+117
-5.8938591e+117
-5.894464e+117
-5.8838402e+117
-5.9156787e+117
-5.9039547e+117
-5.9153352e+117
-5.9043113e+117
-5.9053973e+117
-5.9048424e+117
-5.9161833e+117
-5.9167203e+117
-5.8535328e+117
-5.8633369e+117
-5.8641061e+117
-5.8542662e+117
-5.8745966e+117
-5.8753476e+117
-5.8649428e+117
-5.8761406e+117
-5.8769988e+117
-5.8658401e+117
-5.8551089e+117
-5.8560083e+117
-5.8021052e+117
-5.8013178e+117
-5.8098945e+117
-5.8108025e+117
-5.8086358e+117
-5.8001538e+117
-5.8006379e+117
-5.8091488e+117
-5.8256657e+117
-5.8171639e+117
-5.8177347e+117
-5.8262775e+117
-5.8271371e+117
-5.8185527e+117
-5.819497e+117
-5.8280692e+117
-5.8368329e+117
-5.83592e+117
-5.8449487e+117
-5.8458613e+117
-5.8350532e+117
-5.8344083e+117
-5.8434099e+117
-5.8441121e+117
-5.8845824e+117
-5.8853131e+117
-5.8958981e+117
-5.8951997e+117
-5.9061371e+117
-5.9174287e+117
-5.9180801e+117
-5.9068147e+117
-5.8973496e+117
-5.8860551e+117
-5.8966169e+117
-5.8868607e+117
-5.9074941e+117
-5.9187082e+117
-5.9081127e+117
-5.9192528e+117
-5.8877345e+117
-5.8885706e+117
-5.8980849e+117
-5.8987793e+117
-5.9093477e+117
-5.9198408e+117
-5.9203158e+117
-5.9087842e+117
-5.8892587e+117
-5.8898151e+117
-5.8998969e+117
-5.8993872e+117
-5.9098834e+117
-5.9103642e+117
-5.920797e+117
-5.9212498e+117
-5.8569394e+117
-5.8667452e+117
-5.8677223e+117
-5.8579287e+117
-5.8778925e+117
-5.8787821e+117
-5.8685328e+117
-5.8795476e+117
-5.8801626e+117
-5.8691851e+117
-5.8588333e+117
-5.8595513e+117
-5.806183e+117
-5.80503e+117
-5.8137328e+117
-5.8148831e+117
-5.811745e+117
-5.8029837e+117
-5.8039642e+117
-5.8127122e+117
-5.828978e+117
-5.8204248e+117
-5.8214247e+117
-5.8300136e+117
-5.8310647e+117
-5.8224607e+117
-5.8235763e+117
-5.8320983e+117
-5.8407354e+117
-5.8398174e+117
-5.8487656e+117
-5.849587e+117
-5.8387787e+117
-5.8377665e+117
-5.8467973e+117
-5.8478065e+117
-5.7915585e+117
-5.783053e+117
-5.7833852e+117
-5.7919594e+117
-5.7744081e+117
-5.765777e+117
-5.7659141e+117
-5.7746461e+117
-5.7666033e+117
-5.7661141e+117
-5.7749023e+117
-5.7754648e+117
-5.7925428e+117
-5.783779e+117
-5.7843691e+117
-5.7932233e+117
-5.7704972e+117
-5.7692768e+117
-5.7781632e+117
-5.7794341e+117
-5.768263e+117
-5.7673384e+117
-5.776179e+117
-5.7771434e+117
-5.794042e+117
-5.785121e+117
-5.7860958e+117
-5.7950181e+117
-5.7960972e+117
-5.7871616e+117
-5.7883916e+117
-5.7972773e+117
-5.9934895e+117
-5.9795613e+117
-5.9930537e+117
-5.980038e+117
-6.0068448e+117
-6.0209055e+117
-6.0211172e+117
-6.0071447e+117
-5.9806437e+117
-5.9940024e+117
-5.9803524e+117
-5.993748e+117
-6.0074501e+117
-6.0214523e+117
-6.0077149e+117
-6.0217352e+117
-5.9312848e+117
-5.9430988e+117
-5.943495e+117
-5.9317184e+117
-5.9325825e+117
-5.9321612e+117
-5.9438986e+117
-5.9442769e+117
-5.9682323e+117
-5.9553241e+117
-5.9679282e+117
-5.95567e+117
-5.9563584e+117
-5.9688181e+117
-5.9560338e+117
-5.9685496e+117
-5.9417106e+117
-5.9291159e+117
-5.9411512e+117
-5.9297222e+117
-5.953576e+117
-5.9663635e+117
-5.9668506e+117
-5.954074e+117
-5.9426793e+117
-5.9303035e+117
-5.942238e+117
-5.9307912e+117
-5.9545513e+117
-5.9672483e+117
-5.9549476e+117
-5.9675897e+117
-5.9809525e+117
-5.9943009e+117
-5.9945606e+117
-5.9812139e+117
-6.0220284e+117
-6.0080151e+117
-6.0082426e+117
-6.0222232e+117
-5.9814849e+117
-5.9817063e+117
-5.9947796e+117
-5.9949487e+117
-6.022425e+117
-6.0085726e+117
-6.0225159e+117
-6.0084451e+117
-5.9270998e+117
-5.939208e+117
-5.92741e+117
-5.9395084e+117
-5.9519936e+117
-5.9648351e+117
-5.9516944e+117
-5.9645468e+117
-5.9284466e+117
-5.9279114e+117
-5.9399923e+117
-5.9405239e+117
-5.9529823e+117
-5.9657942e+117
-5.9524592e+117
-5.965283e+117
-5.9778037e+117
-5.9913474e+117
-5.9780679e+117
-5.9916013e+117
-6.0054629e+117
-6.0196079e+117
-6.0051778e+117
-6.0192802e+117
-5.9784996e+117
-5.9920268e+117
-5.9789998e+117
-5.9925159e+117
-6.0063671e+117
-6.0204965e+117
-6.0058975e+117
-6.0200528e+117
-5.9902093e+117
-5.9774079e+117
-5.9904129e+117
-5.977061e+117
-6.0174396e+117
-6.0037745e+117
-6.0036633e+117
-6.0174262e+117
-5.9900754e+117
-5.9768194e+117
-5.9900694e+117
-5.9766978e+117
-6.0174565e+117
-6.0036298e+117
-6.0036071e+117
-6.0173989e+117
-5.9279246e+117
-5.9271035e+117
-5.9399226e+117
-5.9391705e+117
-5.9521739e+117
-5.9515262e+117
-5.9646466e+117
-5.9641371e+117
-5.9265003e+117
-5.9386246e+117
-5.9382362e+117
-5.9260547e+117
-5.9637659e+117
-5.963522e+117
-5.9510537e+117
-5.95072e+117
-5.9259073e+117
-5.9380833e+117
-5.9258315e+117
-5.9380161e+117
-5.9505572e+117
-5.9505993e+117
-5.9634247e+117
-5.9634132e+117
-5.9260461e+117
-5.93825e+117
-5.9259323e+117
-5.9381225e+117
-5.9635382e+117
-5.9506709e+117
-5.9508091e+117
-5.963686e+117
-5.9901127e+117
-5.9766174e+117
-5.9900515e+117
-5.9766326e+117
-6.0176827e+117
-6.00375e+117
-6.0039028e+117
-6.0179432e+117
-5.9769344e+117
-5.9904682e+117
-5.9767749e+117
-5.9902875e+117
-6.0182443e+117
-6.004138e+117
-6.0043504e+117
-6.0184926e+117
-5.9771063e+117
-5.9772427e+117
-5.990655e+117
-5.9907993e+117
-6.0046791e+117
-6.0188265e+117
-6.0045372e+117
-6.0186871e+117
-5.9774206e+117
-5.9909859e+117
-5.9911899e+117
-5.9776153e+117
-6.0189856e+117
-6.0048396e+117
-6.0189481e+117
-6.0049444e+117
-5.9262916e+117
-5.9264042e+117
-5.938454e+117
-5.9385568e+117
-5.951092e+117
-5.9639746e+117
-5.9509856e+117
-5.9638561e+117
-5.9266067e+117
-5.9387407e+117
-5.9389104e+117
-5.9267657e+117
-5.9643049e+117
-5.9512609e+117
-5.9641391e+117
-5.9514192e+117
-5.702299e+117
-5.7031825e+117
-5.7104631e+117
-5.7096196e+117
-5.7250948e+117
-5.7177543e+117
-5.7169867e+117
-5.7244551e+117
-5.7242748e+117
-5.7169336e+117
-5.7172697e+117
-5.7245853e+117
-5.702601e+117
-5.7022503e+117
-5.7095621e+117
-5.7099635e+117
-5.7036565e+117
-5.7029795e+117
-5.7103217e+117
-5.7110688e+117
-5.7252065e+117
-5.7177031e+117
-5.7185306e+117
-5.7260641e+117
-5.7268919e+117
-5.7194176e+117
-5.7200496e+117
-5.7276541e+117
-5.7044483e+117
-5.7041605e+117
-5.7118012e+117
-5.7123414e+117
-5.7355912e+117
-5.7346585e+117
-5.7428188e+117
-5.7438407e+117
-5.7411459e+117
-5.733023e+117
-5.7339005e+117
-5.7420421e+117
-5.7602742e+117
-5.7514363e+117
-5.752525e+117
-5.7614375e+117
-5.7584153e+117
-5.7496524e+117
-5.7505637e+117
-5.7593224e+117
-5.7322966e+117
-5.7319313e+117
-5.7399878e+117
-5.7403642e+117
-5.7404438e+117
-5.7326366e+117
-5.7321641e+117
-5.7401626e+117
-5.7572193e+117
-5.7484871e+117
-5.7488819e+117
-5.7576559e+117
-5.7571105e+117
-5.7486355e+117
-5.7485279e+117
-5.7571298e+117
-5.7263065e+117
-5.719719e+117
-5.7200861e+117
-5.7265366e+117
-5.755924e+117
-5.7484027e+117
-5.7482646e+117
-5.7557558e+117
-5.7412759e+117
-5.7338471e+117
-5.7337818e+117
-5.7411537e+117
-5.7330794e+117
-5.7337236e+117
-5.7409633e+117
-5.7403258e+117
-5.7555666e+117
-5.7480174e+117
-5.74739e+117
-5.7550373e+117
-5.7553901e+117
-5.7479394e+117
-5.7476107e+117
-5.755189e+117
-5.7406726e+117
-5.7336555e+117
-5.733198e+117
-5.7402287e+117
-5.7332813e+117
-5.7330721e+117
-5.7401574e+117
-5.74038e+117
-5.7554151e+117
-5.7476551e+117
-5.7479358e+117
-5.7558097e+117
-5.7266926e+117
-5.7202166e+117
-5.7203038e+117
-5.7267918e+117
-5.726619e+117
-5.7200476e+117
-5.7190764e+117
-5.725942e+117
-5.7331333e+117
-5.7334815e+117
-5.7408022e+117
-5.7406539e+117
-5.7406376e+117
-5.733451e+117
-5.7335983e+117
-5.7408257e+117
-5.7562455e+117
-5.748284e+117
-5.7485619e+117
-5.75663e+117
-5.7568723e+117
-5.7486804e+117
-5.7486649e+117
-5.7569974e+117
-5.7340162e+117
-5.7337646e+117
-5.7410528e+117
-5.7413375e+117
-5.7404551e+117
-5.7331039e+117
-5.7333061e+117
-5.7405983e+117
-5.7555019e+117
-5.7476249e+117
-5.7477763e+117
-5.7556232e+117
-5.7558965e+117
-5.7481607e+117
-5.748412e+117
-5.7560302e+117
-5.7540652e+117
-5.7461645e+117
-5.7469892e+117
-5.7547533e+117
-5.7387352e+117
-5.7310885e+117
-5.7319933e+117
-5.7396426e+117
-5.7332151e+117
-5.7327812e+117
-5.7402928e+117
-5.7406157e+117
-5.755299e+117
-5.7475286e+117
-5.7477825e+117
-5.7555757e+117
-5.8268063e+117
-5.8172586e+117
-5.8160961e+117
-5.825621e+117
-5.8080732e+117
-5.7985077e+117
-5.7974231e+117
-5.806929e+117
-5.7967755e+117
-5.7969625e+117
-5.8064312e+117
-5.8062289e+117
-5.8250809e+117
-5.8155369e+117
-5.8153168e+117
-5.8248241e+117
-5.7894473e+117
-5.7801087e+117
-5.7791334e+117
-5.788386e+117
-5.7713247e+117
-5.7622563e+117
-5.7615435e+117
-5.7704396e+117
-5.7615773e+117
-5.7613812e+117
-5.770174e+117
-5.7701876e+117
-5.7879619e+117
-5.7787521e+117
-5.7786588e+117
-5.7878046e+117
-5.7633618e+117
-5.7630459e+117
-5.7714082e+117
-5.7717193e+117
-5.7624589e+117
-5.7618471e+117
-5.7703397e+117
-5.7708535e+117
-5.7879264e+117
-5.7787992e+117
-5.7792264e+117
-5.7882583e+117
-5.788576e+117
-5.7796779e+117
-5.7799044e+117
-5.7886424e+117
-5.8248852e+117
-5.8154164e+117
-5.8154713e+117
-5.824824e+117
-5.8063072e+117
-5.7968535e+117
-5.7970937e+117
-5.8064642e+117
-5.7971785e+117
-5.7972773e+117
-5.8065099e+117
-5.8062212e+117
-5.8246419e+117
-5.815396e+117
-5.8149561e+117
-5.8240524e+117
-5.9924227e+117
-5.9798614e+117
-5.9796185e+117
-5.9922543e+117
-6.0051311e+117
-6.0182039e+117
-6.0052525e+117
-6.0183355e+117
-6.0179391e+117
-6.0050079e+117
-6.0047208e+117
-6.0179853e+117
-5.9789861e+117
-5.9920984e+117
-5.9793773e+117
-5.9917144e+117
-5.9433225e+117
-5.9323277e+117
-5.9438229e+117
-5.931729e+117
-5.9555486e+117
-5.9551071e+117
-5.9675372e+117
-5.9671787e+117
-5.9425336e+117
-5.9312152e+117
-5.9428598e+117
-5.9307799e+117
-5.9668897e+117
-5.9547462e+117
-5.9543902e+117
-5.9664887e+117
-5.9422725e+117
-5.9304526e+117
-5.9299751e+117
-5.9418109e+117
-5.9537676e+117
-5.9658346e+117
-5.9541244e+117
-5.9661153e+117
-5.9651333e+117
-5.9533783e+117
-5.9528284e+117
-5.9654096e+117
-5.9287108e+117
-5.9413649e+117
-5.9294429e+117
-5.940667e+117
-5.9785833e+117
-5.978261e+117
-5.9913486e+117
-5.9910183e+117
-6.0044376e+117
-6.0041552e+117
-6.0177755e+117
-6.0175858e+117
-5.9905472e+117
-5.9778532e+117
-5.9906999e+117
-5.9776748e+117
-6.0174612e+117
-6.0039342e+117
-6.0038135e+117
-6.017376e+117
-5.8572298e+117
-5.8561137e+117
-5.8766371e+117
-5.8755262e+117
-5.8748029e+117
-5.8742937e+117
-5.8555871e+117
-5.8551635e+117
-5.8349987e+117
-5.8360734e+117
-5.8455389e+117
-5.8444802e+117
-5.8341469e+117
-5.834427e+117
-5.8439062e+117
-5.8435759e+117
-5.8547672e+117
-5.8545752e+117
-5.8738629e+117
-5.8734949e+117
-5.8730032e+117
-5.872218e+117
-5.8543271e+117
-5.853523e+117
-5.8339391e+117
-5.834051e+117
-5.8433178e+117
-5.8431772e+117
-5.8329767e+117
-5.833662e+117
-5.8428716e+117
-5.8421264e+117
-5.8977834e+117
-5.8877153e+117
-5.8987703e+117
-5.8866349e+117
-5.909808e+117
-5.9089481e+117
-5.9209653e+117
-5.9202404e+117
-5.8964706e+117
-5.8858421e+117
-5.8970306e+117
-5.8852999e+117
-5.9196422e+117
-5.9082665e+117
-5.9077029e+117
-5.9191231e+117
-5.8955941e+117
-5.8849086e+117
-5.8960847e+117
-5.8844655e+117
-5.9187663e+117
-5.9073358e+117
-5.9068249e+117
-5.9182676e+117
-5.8942158e+117
-5.8838795e+117
-5.8949947e+117
-5.8830989e+117
-5.9176953e+117
-5.9062326e+117
-5.9054518e+117
-5.9169334e+117
-6.2886728e+117
-6.2606834e+117
-6.2882012e+117
-6.2610489e+117
-6.3177837e+117
-6.3181444e+117
-6.261924e+117
-6.2895055e+117
-6.2614271e+117
-6.2889914e+117
-6.3185797e+117
-6.3191781e+117
-6.1715687e+117
-6.1918839e+117
-6.192349e+117
-6.1719606e+117
-6.1720703e+117
-6.1720258e+117
-6.1923815e+117
-6.1924308e+117
-6.2372534e+117
-6.213854e+117
-6.2369748e+117
-6.2141996e+117
-6.2145727e+117
-6.2379443e+117
-6.2144351e+117
-6.2376879e+117
-6.1908329e+117
-6.1703341e+117
-6.1904851e+117
-6.1705842e+117
-6.2123434e+117
-6.2353773e+117
-6.2356072e+117
-6.2126224e+117
-6.1914231e+117
-6.1708451e+117
-6.1910597e+117
-6.1711685e+117
-6.2129676e+117
-6.2360516e+117
-6.2133694e+117
-6.2364983e+117
-6.2623748e+117
-6.2900256e+117
-6.2904865e+117
-6.26273e+117
-6.3198332e+117
-6.3204043e+117
-6.2632339e+117
-6.2636038e+117
-6.2910788e+117
-6.2915771e+117
-6.321761e+117
-6.321084e+117
-6.1685024e+117
-6.1885712e+117
-6.1689251e+117
-6.1890111e+117
-6.2108052e+117
-6.2337469e+117
-6.2103049e+117
-6.2331716e+117
-6.1694504e+117
-6.1895629e+117
-6.1699218e+117
-6.1900433e+117
-6.2118982e+117
-6.2349267e+117
-6.2113987e+117
-6.2343927e+117
-6.2582794e+117
-6.2856308e+117
-6.2589128e+117
-6.2863087e+117
-6.3157785e+117
-6.3150914e+117
-6.2596082e+117
-6.2601814e+117
-6.28705e+117
-6.2876627e+117
-6.3172534e+117
-6.316562e+117
-6.1670235e+117
-6.1666491e+117
-6.1866552e+117
-6.1870223e+117
-6.1674161e+117
-6.1676745e+117
-6.1873734e+117
-6.1876482e+117
-6.2085792e+117
-6.208145e+117
-6.2309277e+117
-6.2314641e+117
-6.2093212e+117
-6.2321419e+117
-6.2090375e+117
-6.231849e+117
-6.1679247e+117
-6.1879341e+117
-6.1882592e+117
-6.1681534e+117
-6.2326091e+117
-6.2096102e+117
-6.2324134e+117
-6.2098755e+117
-6.1656631e+117
-6.185648e+117
-6.1862826e+117
-6.1662478e+117
-6.2070318e+117
-6.2296224e+117
-6.2301908e+117
-6.2075968e+117
-6.1631925e+117
-6.1829167e+117
-6.1837069e+117
-6.1638656e+117
-6.1644324e+117
-6.1843292e+117
-6.1850765e+117
-6.1651079e+117
-6.2040285e+117
-6.2263436e+117
-6.227093e+117
-6.2047854e+117
-6.2055919e+117
-6.2280361e+117
-6.2287568e+117
-6.2062986e+117
-6.2783939e+117
-6.2507527e+117
-6.2774654e+117
-6.2515974e+117
-6.3064233e+117
-6.3073869e+117
-6.2803125e+117
-6.2525713e+117
-6.2794007e+117
-6.2533931e+117
-6.3084177e+117
-6.3094641e+117
-6.2821115e+117
-6.254303e+117
-6.2812763e+117
-6.2550042e+117
-6.3104813e+117
-6.3114102e+117
-6.2564534e+117
-6.2837558e+117
-6.2558235e+117
-6.2830253e+117
-6.3124096e+117
-6.3132953e+117
-6.2568762e+117
-6.2571944e+117
-6.2841271e+117
-6.2844803e+117
-6.3138309e+117
-6.3134667e+117
-6.2574703e+117
-6.2847699e+117
-6.2850476e+117
-6.257706e+117
-6.3141534e+117
-6.3145409e+117
-6.0337309e+117
-6.0484801e+117
-6.0340835e+117
-6.0488416e+117
-6.0639095e+117
-6.0793991e+117
-6.0635524e+117
-6.0790581e+117
-6.0345323e+117
-6.0492891e+117
-6.0349489e+117
-6.0496864e+117
-6.0647459e+117
-6.0802343e+117
-6.064355e+117
-6.0798398e+117
-6.0956284e+117
-6.1129434e+117
-6.0959424e+117
-6.1132483e+117
-6.1309836e+117
-6.1493872e+117
-6.1306332e+117
-6.1489815e+117
-6.096378e+117
-6.1136899e+117
-6.0967841e+117
-6.1141103e+117
-6.1318812e+117
-6.1503381e+117
-6.131455e+117
-6.1498923e+117
-6.0319697e+117
-6.0465399e+117
-6.0469242e+117
-6.0323059e+117
-6.0329353e+117
-6.0326545e+117
-6.0473083e+117
-6.0476171e+117
-6.0614466e+117
-6.0767818e+117
-6.077231e+117
-6.0618601e+117
-6.0626092e+117
-6.0622749e+117
-6.0776628e+117
-6.078019e+117
-6.03146e+117
-6.045773e+117
-6.0459179e+117
-6.0315353e+117
-6.0316006e+117
-6.0460108e+117
-6.0461994e+117
-6.0316539e+117
-6.0604285e+117
-6.0755157e+117
-6.0757543e+117
-6.0606193e+117
-6.0607963e+117
-6.0760193e+117
-6.0763553e+117
-6.0610654e+117
-6.0915844e+117
-6.1084488e+117
-6.1088542e+117
-6.0918927e+117
-6.0922351e+117
-6.1092496e+117
-6.1097094e+117
-6.0926252e+117
-6.1258515e+117
-6.1439881e+117
-6.1445349e+117
-6.1263228e+117
-6.1268095e+117
-6.1450853e+117
-6.1456453e+117
-6.1273032e+117
-6.0930906e+117
-6.1101896e+117
-6.1106863e+117
-6.0935589e+117
-6.0943765e+117
-6.0940069e+117
-6.1111259e+117
-6.1114911e+117
-6.1278291e+117
-6.1462084e+117
-6.1467237e+117
-6.1283238e+117
-6.1291545e+117
-6.1287791e+117
-6.1471854e+117
-6.1475719e+117
-6.0946792e+117
-6.0949146e+117
-6.1118717e+117
-6.1121414e+117
-6.1298074e+117
-6.1481776e+117
-6.1295327e+117
-6.1479196e+117
-6.0951557e+117
-6.1124325e+117
-6.1127509e+117
-6.0954177e+117
-6.1485659e+117
-6.1300998e+117
-6.1484331e+117
-6.1303012e+117
-6.0331378e+117
-6.03328e+117
-6.0478467e+117
-6.0479976e+117
-6.0630148e+117
-6.0784443e+117
-6.0628439e+117
-6.0782463e+117
-6.033385e+117
-6.048104e+117
-6.0481836e+117
-6.0334363e+117
-6.0787966e+117
-6.0631474e+117
-6.0786203e+117
-6.0632659e+117
-6.114886e+117
-6.0971788e+117
-6.114538e+117
-6.0974914e+117
-6.1323005e+117
-6.1507348e+117
-6.1508963e+117
-6.1325306e+117
-6.0978365e+117
-6.115171e+117
-6.0976392e+117
-6.1150003e+117
-6.1327766e+117
-6.1512197e+117
-6.1329801e+117
-6.1514907e+117
-6.0502238e+117
-6.0353129e+117
-6.0500233e+117
-6.0355126e+117
-6.0650795e+117
-6.0805855e+117
-6.0808296e+117
-6.0652885e+117
-6.0508018e+117
-6.035824e+117
-6.0505168e+117
-6.0361134e+117
-6.0655541e+117
-6.081051e+117
-6.0658236e+117
-6.0812893e+117
-6.0367677e+117
-6.0368245e+117
-6.0514589e+117
-6.0514272e+117
-6.0364016e+117
-6.0510834e+117
-6.0512814e+117
-6.0365944e+117
-6.0662883e+117
-6.0817315e+117
-6.0660984e+117
-6.081551e+117
-6.0664249e+117
-6.0818693e+117
-6.0818927e+117
-6.066447e+117
-6.0980828e+117
-6.1154215e+117
-6.1156178e+117
-6.0982645e+117
-6.0984008e+117
-6.1157561e+117
-6.0984304e+117
-6.1157947e+117
-6.1518272e+117
-6.1521016e+117
-6.1332645e+117
-6.1334824e+117
-6.1336707e+117
-6.1336286e+117
-6.1522408e+117
-6.1522896e+117
-6.1802511e+117
-6.1599326e+117
-6.1792821e+117
-6.1607728e+117
-6.1616641e+117
-6.1812026e+117
-6.1821692e+117
-6.1625164e+117
-6.2001411e+117
-6.2222373e+117
-6.2011479e+117
-6.2233037e+117
-6.2244418e+117
-6.2253163e+117
-6.2021816e+117
-6.203113e+117
-6.1574954e+117
-6.1763486e+117
-6.1580852e+117
-6.1770403e+117
-6.1975519e+117
-6.2194318e+117
-6.1967921e+117
-6.2185941e+117
-6.1784793e+117
-6.1586139e+117
-6.1777313e+117
-6.1591928e+117
-6.198377e+117
-6.2202942e+117
-6.2210886e+117
-6.1991529e+117
-6.2425804e+117
-6.2689273e+117
-6.2698611e+117
-6.2434748e+117
-6.2443579e+117
-6.2707443e+117
-6.2452207e+117
-6.2716403e+117
-6.2975515e+117
-6.2984539e+117
-6.3003552e+117
-6.2993398e+117
-6.2741425e+117
-6.2464134e+117
-6.27288e+117
-6.2475826e+117
-6.3015552e+117
-6.3028358e+117
-6.2763662e+117
-6.2487337e+117
-6.2752873e+117
-6.2496961e+117
-6.3040735e+117
-6.3052857e+117
-6.0892671e+117
-6.0893728e+117
-6.1053713e+117
-6.1055876e+117
-6.1219658e+117
-6.1392248e+117
-6.1396606e+117
-6.1222875e+117
-6.1062489e+117
-6.0895325e+117
-6.1058742e+117
-6.0897873e+117
-6.1226681e+117
-6.1401044e+117
-6.1405078e+117
-6.1230267e+117
-6.0317511e+117
-6.0316075e+117
-6.0454275e+117
-6.0453105e+117
-6.059376e+117
-6.0738902e+117
-6.0594381e+117
-6.073878e+117
-6.0452071e+117
-6.0313745e+117
-6.0451575e+117
-6.0314123e+117
-6.0593179e+117
-6.0739267e+117
-6.0740521e+117
-6.0593928e+117
-6.0453973e+117
-6.031423e+117
-6.0453371e+117
-6.0313561e+117
-6.0313378e+117
-6.0454883e+117
-6.0456059e+117
-6.0313459e+117
-6.0596132e+117
-6.0743501e+117
-6.0597831e+117
-6.0746185e+117
-6.0749279e+117
-6.0752289e+117
-6.0599876e+117
-6.0601998e+117
-6.107023e+117
-6.0900919e+117
-6.1065893e+117
-6.0904373e+117
-6.0908421e+117
-6.1075307e+117
-6.1080251e+117
-6.0912265e+117
-6.1235747e+117
-6.1412192e+117
-6.1241366e+117
-6.1419239e+117
-6.1426917e+117
-6.1433797e+117
-6.1247714e+117
-6.1253394e+117
-5.9950826e+117
-5.9818584e+117
-5.9950577e+117
-5.9818915e+117
-6.0086249e+117
-6.0225103e+117
-6.0223579e+117
-6.0085491e+117
-5.98208e+117
-5.9951872e+117
-5.9819461e+117
-5.9950733e+117
-6.0085697e+117
-6.0224143e+117
-6.0086891e+117
-6.0225769e+117
-5.9339835e+117
-5.9454313e+117
-5.9457676e+117
-5.9342592e+117
-5.9349061e+117
-5.9345583e+117
-5.9461458e+117
-5.946577e+117
-5.969998e+117
-5.9572964e+117
-5.9695959e+117
-5.9576505e+117
-5.9586207e+117
-5.9710488e+117
-5.9581048e+117
-5.9704767e+117
-5.9448295e+117
-5.9330006e+117
-5.9446247e+117
-5.9332386e+117
-5.9566234e+117
-5.9690107e+117
-5.9690401e+117
-5.9567281e+117
-5.9451595e+117
-5.9334504e+117
-5.9449741e+117
-5.9336436e+117
-5.9568727e+117
-5.9691692e+117
-5.9570197e+117
-5.9693057e+117
-5.9823581e+117
-5.9954873e+117
-5.9958788e+117
-5.9827548e+117
-5.9832931e+117
-5.9964879e+117
-5.9839191e+117
-5.9971672e+117
-6.0229639e+117
-6.0234465e+117
-6.009041e+117
-6.0094698e+117
-6.0108302e+117
-6.0101093e+117
-6.0241003e+117
-6.0248401e+117
-5.8918516e+117
-5.8920198e+117
-5.9018269e+117
-5.9019789e+117
-5.9123141e+117
-5.9228503e+117
-5.9230663e+117
-5.9121455e+117
-5.8921179e+117
-5.8921254e+117
-5.9021822e+117
-5.9020959e+117
-5.9124754e+117
-5.9126537e+117
-5.9232919e+117
-5.923559e+117
-5.9009174e+117
-5.8903385e+117
-5.9004403e+117
-5.8908541e+117
-5.9108949e+117
-5.9217228e+117
-5.9219953e+117
-5.9112306e+117
-5.9015847e+117
-5.8912901e+117
-5.9012722e+117
-5.8916251e+117
-5.9115651e+117
-5.9222713e+117
-5.9118059e+117
-5.9224651e+117
-5.8601179e+117
-5.8696844e+117
-5.8703434e+117
-5.860833e+117
-5.8806737e+117
-5.881217e+117
-5.8710159e+117
-5.8817451e+117
-5.8821233e+117
-5.8714461e+117
-5.8615868e+117
-5.8620641e+117
-5.832992e+117
-5.8246278e+117
-5.8255865e+117
-5.8338489e+117
-5.8423111e+117
-5.8414965e+117
-5.8502527e+117
-5.8510178e+117
-5.8160252e+117
-5.8073417e+117
-5.808516e+117
-5.8170825e+117
-5.8103848e+117
-5.8095459e+117
-5.8179928e+117
-5.818795e+117
-5.8347048e+117
-5.8264382e+117
-5.8271804e+117
-5.8353811e+117
-5.8437371e+117
-5.8431389e+117
-5.8517799e+117
-5.8523245e+117
-5.8622387e+117
-5.8715845e+117
-5.8717545e+117
-5.8624064e+117
-5.8823213e+117
-5.8824843e+117
-5.8718732e+117
-5.8825906e+117
-5.8825421e+117
-5.8717119e+117
-5.8625085e+117
-5.8622927e+117
-5.8357237e+117
-5.8276528e+117
-5.8278081e+117
-5.835881e+117
-5.8193266e+117
-5.8109246e+117
-5.8111461e+117
-5.8194954e+117
-5.810737e+117
-5.8110826e+117
-5.8193859e+117
-5.819056e+117
-5.8358684e+117
-5.8277061e+117
-5.8273724e+117
-5.8355539e+117
-5.8439144e+117
-5.8442054e+117
-5.8527748e+117
-5.8525419e+117
-5.8441864e+117
-5.8440064e+117
-5.8525463e+117
-5.8527282e+117
-5.7763376e+117
-5.7766796e+117
-5.7852945e+117
-5.7850349e+117
-5.7767905e+117
-5.7764992e+117
-5.7850705e+117
-5.7853796e+117
-5.8023207e+117
-5.7937117e+117
-5.7940102e+117
-5.8025806e+117
-5.8025441e+117
-5.7939706e+117
-5.7936957e+117
-5.8022271e+117
-5.7758045e+117
-5.7746534e+117
-5.7833719e+117
-5.7844377e+117
-5.7807866e+117
-5.7718686e+117
-5.773312e+117
-5.7821635e+117
-5.7984736e+117
-5.7896433e+117
-5.7909802e+117
-5.7997467e+117
-5.8008602e+117
-5.7921455e+117
-5.7931154e+117
-5.8017526e+117
-5.8616157e+117
-5.871285e+117
-5.8714048e+117
-5.8616996e+117
-5.8823579e+117
-5.8824896e+117
-5.8716353e+117
-5.8827406e+117
-5.8829899e+117
-5.8718032e+117
-5.8619243e+117
-5.862049e+117
-5.8346088e+117
-5.8263435e+117
-5.8262682e+117
-5.8345695e+117
-5.817808e+117
-5.8092208e+117
-5.8092025e+117
-5.8177398e+117
-5.8093594e+117
-5.809317e+117
-5.8177215e+117
-5.8177061e+117
-5.8345858e+117
-5.8262137e+117
-5.8261431e+117
-5.834516e+117
-5.8431291e+117
-5.8431451e+117
-5.8519569e+117
-5.852044e+117
-5.8430827e+117
-5.8430597e+117
-5.8517789e+117
-5.8518345e+117
-5.861902e+117
-5.871395e+117
-5.8713208e+117
-5.8617951e+117
-5.8823961e+117
-5.882315e+117
-5.8714099e+117
-5.8823319e+117
-5.8823497e+117
-5.8713918e+117
-5.861846e+117
-5.8618002e+117
-5.835116e+117
-5.8269189e+117
-5.8266198e+117
-5.8348502e+117
-5.8185549e+117
-5.8102131e+117
-5.8098772e+117
-5.8182176e+117
-5.8094119e+117
-5.8096521e+117
-5.818035e+117
-5.8179051e+117
-5.8348e+117
-5.8264831e+117
-5.8263974e+117
-5.8347192e+117
-5.8431982e+117
-5.8432736e+117
-5.8519863e+117
-5.8519381e+117
-5.8432929e+117
-5.843496e+117
-5.8521386e+117
-5.8519854e+117
-5.8921022e+117
-5.892057e+117
-5.9024027e+117
-5.9023552e+117
-5.9129532e+117
-5.913112e+117
-5.923937e+117
-5.9241921e+117
-5.9025549e+117
-5.8920664e+117
-5.9024718e+117
-5.8921134e+117
-5.9243803e+117
-5.9132389e+117
-5.9133335e+117
-5.9245179e+117
-5.8017321e+117
-5.7932862e+117
-5.7928771e+117
-5.8013426e+117
-5.7846306e+117
-5.7758943e+117
-5.7754715e+117
-5.7842012e+117
-5.7750899e+117
-5.7751818e+117
-5.7838192e+117
-5.7836223e+117
-5.8010806e+117
-5.7925101e+117
-5.7922055e+117
-5.8007718e+117
-5.7762698e+117
-5.7759429e+117
-5.7840688e+117
-5.7843651e+117
-5.7754744e+117
-5.7751114e+117
-5.783447e+117
-5.7836818e+117
-5.8005167e+117
-5.7919415e+117
-5.7920836e+117
-5.8005571e+117
-5.8007954e+117
-5.7924012e+117
-5.7926076e+117
-5.8009149e+117
-5.9028907e+117
-5.8922167e+117
-5.9027287e+117
-5.8923624e+117
-5.924774e+117
-5.9135723e+117
-5.9137317e+117
-5.9249564e+117
-5.9033028e+117
-5.8925895e+117
-5.9031004e+117
-5.8928407e+117
-5.9251799e+117
-5.9139625e+117
-5.9140986e+117
-5.925282e+117
-5.9485132e+117
-5.9363608e+117
-5.9483003e+117
-5.9365663e+117
-5.9606159e+117
-5.9732834e+117
-5.9734943e+117
-5.9608239e+117
-5.936849e+117
-5.9487387e+117
-5.936763e+117
-5.9486818e+117
-5.9609726e+117
-5.9736178e+117
-5.9609885e+117
-5.9735902e+117
-5.9985249e+117
-5.9846007e+117
-5.9978963e+117
-5.985187e+117
-6.0255931e+117
-6.0115856e+117
-6.0121832e+117
-6.0261735e+117
-5.9860299e+117
-5.999372e+117
-5.9856666e+117
-5.9989827e+117
-6.0267181e+117
-6.0126619e+117
-6.0130888e+117
-6.0271529e+117
-5.9474657e+117
-5.9353342e+117
-5.9470715e+117
-5.9356611e+117
-5.9591869e+117
-5.9596475e+117
-5.9716754e+117
-5.9722014e+117
-5.9480285e+117
-5.9359037e+117
-5.9477726e+117
-5.9361012e+117
-5.972639e+117
-5.9600243e+117
-5.9603243e+117
-5.9729767e+117
-5.9999652e+117
-5.986349e+117
-5.9997296e+117
-5.9865544e+117
-6.0275485e+117
-6.0134788e+117
-6.0137117e+117
-6.0277638e+117
-5.9865943e+117
-5.9999358e+117
-5.9866573e+117
-6.0000379e+117
-6.0278557e+117
-6.013787e+117
-6.0136555e+117
-6.0277017e+117
-5.7079065e+117
-5.7064496e+117
-5.7146361e+117
-5.7161692e+117
-5.7125801e+117
-5.7045862e+117
-5.7053082e+117
-5.7133942e+117
-5.7284467e+117
-5.7204595e+117
-5.721467e+117
-5.7296423e+117
-5.7311184e+117
-5.7228389e+117
-5.7243439e+117
-5.7326001e+117
-5.740989e+117
-5.7395348e+117
-5.7481157e+117
-5.7495134e+117
-5.7451149e+117
-5.73666e+117
-5.7380288e+117
-5.7466124e+117
-5.7657672e+117
-5.7569013e+117
-5.7582204e+117
-5.7670024e+117
-5.7628271e+117
-5.7538752e+117
-5.7554128e+117
-5.7643341e+117
-5.7104524e+117
-5.7103335e+117
-5.7180156e+117
-5.7179e+117
-5.7101029e+117
-5.7091457e+117
-5.7172858e+117
-5.718076e+117
-5.7336076e+117
-5.7253974e+117
-5.7259919e+117
-5.7340508e+117
-5.7337367e+117
-5.7257472e+117
-5.7254945e+117
-5.7333518e+117
-5.7415606e+117
-5.7420003e+117
-5.7504536e+117
-5.7500076e+117
-5.750384e+117
-5.7419265e+117
-5.7423011e+117
-5.7507217e+117
-5.7677541e+117
-5.7590155e+117
-5.7593381e+117
-5.7680474e+117
-5.7678947e+117
-5.7591412e+117
-5.7587004e+117
-5.7674972e+117
-5.7152023e+117
-5.7134211e+117
-5.7208714e+117
-5.7225729e+117
-5.7121141e+117
-5.7111253e+117
-5.7185724e+117
-5.7196551e+117
-5.7337245e+117
-5.7260526e+117
-5.7271273e+117
-5.7347433e+117
-5.735863e+117
-5.7283235e+117
-5.7298263e+117
-5.7371311e+117
-5.7107865e+117
-5.7106027e+117
-5.7177986e+117
-5.7180299e+117
-5.7105792e+117
-5.7104018e+117
-5.7177409e+117
-5.7177999e+117
-5.7329858e+117
-5.7252055e+117
-5.7251493e+117
-5.7327981e+117
-5.732725e+117
-5.7250894e+117
-5.7254082e+117
-5.7330326e+117
-5.7410281e+117
-5.7407591e+117
-5.7490731e+117
-5.7492753e+117
-5.749541e+117
-5.741131e+117
-5.7408625e+117
-5.7492139e+117
-5.7670246e+117
-5.7582104e+117
-5.7578529e+117
-5.7666206e+117
-5.7663995e+117
-5.757683e+117
-5.7577996e+117
-5.76642e+117
-5.766638e+117
-5.7581927e+117
-5.7588416e+117
-5.7671258e+117
-5.7498075e+117
-5.741647e+117
-5.7425803e+117
-5.7506107e+117
-5.7446002e+117
-5.7435628e+117
-5.7514393e+117
-5.7522463e+117
-5.7677059e+117
-5.7595303e+117
-5.7601231e+117
-5.768144e+117
-5.282322e+117
-5.4957502e+117
-5.4868025e+117
-5.2883054e+117
-6.1198351e+117
-6.1205704e+117
-6.1367409e+117
-6.1374661e+117
-6.1381359e+117
-6.1387849e+117
-6.1212762e+117
-6.121657e+117
-6.089061e+117
-6.1048567e+117
-6.088765e+117
-6.1051219e+117
-6.0882122e+117
-6.0876609e+117
-6.1034859e+117
-6.1041733e+117
-6.030293e+117
-6.0304608e+117
-6.0434061e+117
-6.0436005e+117
-6.0568229e+117
-6.0570776e+117
-6.0707001e+117
-6.0710315e+117
-6.0307195e+117
-6.0439579e+117
-6.0443482e+117
-6.0310009e+117
-6.0715398e+117
-6.0720914e+117
-6.0575253e+117
-6.0579855e+117
-6.1011945e+117
-6.0855561e+117
-6.0859657e+117
-6.101683e+117
-6.117969e+117
-6.1349122e+117
-6.1174058e+117
-6.1343258e+117
-6.1360852e+117
-6.1186105e+117
-6.119128e+117
-6.1354947e+117
-6.1022662e+117
-6.0865103e+117
-6.0870784e+117
-6.1027891e+117
-6.0313046e+117
-6.0447191e+117
-6.0315566e+117
-6.0449936e+117
-6.0587372e+117
-6.0584236e+117
-6.0725684e+117
-6.0729785e+117
-6.0317876e+117
-6.0454064e+117
-6.0317164e+117
-6.0452626e+117
-6.0734332e+117
-6.0591207e+117
-6.0593491e+117
-6.0737238e+117
-6.0840525e+117
-6.0996391e+117
-6.0840264e+117
-6.0996717e+117
-6.1158582e+117
-6.115762e+117
-6.1328032e+117
-6.1326541e+117
-6.0424927e+117
-6.0291183e+117
-6.0422095e+117
-6.0293711e+117
-6.0554576e+117
-6.0692812e+117
-6.069562e+117
-6.0557679e+117
-6.0431209e+117
-6.0297038e+117
-6.0427784e+117
-6.0300235e+117
-6.0561369e+117
-6.0699533e+117
-6.0703704e+117
-6.0564999e+117
-6.0998971e+117
-6.0841242e+117
-6.0997158e+117
-6.0843449e+117
-6.1327336e+117
-6.1158669e+117
-6.1160448e+117
-6.1329095e+117
-6.1006895e+117
-6.0847434e+117
-6.1003015e+117
-6.085153e+117
-6.1333103e+117
-6.116447e+117
-6.1168466e+117
-6.1337343e+117
-6.2351976e+117
-6.2608332e+117
-6.2608067e+117
-6.2350654e+117
-6.2347943e+117
-6.2349066e+117
-6.2606251e+117
-6.2605311e+117
-6.2885359e+117
-6.2883756e+117
-6.2883584e+117
-6.2883199e+117
-6.1699547e+117
-6.151282e+117
-6.1699963e+117
-6.1511653e+117
-6.1902123e+117
-6.2116873e+117
-6.2114491e+117
-6.1900705e+117
-6.16938e+117
-6.1508685e+117
-6.1696103e+117
-6.1506746e+117
-6.1898636e+117
-6.211346e+117
-6.1896675e+117
-6.2112157e+117
-6.1507222e+117
-6.1694207e+117
-6.1696373e+117
-6.1509135e+117
-6.1517652e+117
-6.1513021e+117
-6.1700288e+117
-6.1705156e+117
-6.2113191e+117
-6.1897345e+117
-6.1899577e+117
-6.2115577e+117
-6.1908919e+117
-6.2120096e+117
-6.1903744e+117
-6.212564e+117
-6.261057e+117
-6.234927e+117
-6.2607116e+117
-6.2352066e+117
-6.288588e+117
-6.2889832e+117
-6.2362698e+117
-6.2621996e+117
-6.2356916e+117
-6.2615926e+117
-6.2895897e+117
-6.2902864e+117
-6.2369812e+117
-6.2628947e+117
-6.263515e+117
-6.2376754e+117
-6.2909497e+117
-6.2914125e+117
-6.2383519e+117
-6.2387296e+117
-6.2645797e+117
-6.2639218e+117
-6.2917738e+117
-6.29265e+117
-6.1740518e+117
-6.1546736e+117
-6.1733945e+117
-6.1553789e+117
-6.1938074e+117
-6.2155325e+117
-6.216106e+117
-6.1943971e+117
-6.1755181e+117
-6.1559888e+117
-6.1746185e+117
-6.1568177e+117
-6.1950168e+117
-6.2167782e+117
-6.1958798e+117
-6.217592e+117
-6.1523637e+117
-6.152939e+117
-6.1711373e+117
-6.1717369e+117
-6.1921841e+117
-6.2139469e+117
-6.1915485e+117
-6.2132572e+117
-6.2146818e+117
-6.1928243e+117
-6.1932817e+117
-6.2150294e+117
-6.172303e+117
-6.1534596e+117
-6.1540423e+117
-6.1727914e+117
-6.2661216e+117
-6.2393147e+117
-6.2653234e+117
-6.2399524e+117
-6.2935307e+117
-6.2944255e+117
-6.241553e+117
-6.2678765e+117
-6.2406932e+117
-6.2669466e+117
-6.2953928e+117
-6.2964691e+117
-5.7917181e+117
-5.7820812e+117
-5.781271e+117
-5.7907011e+117
-5.7998184e+117
-5.8009711e+117
-5.8107505e+117
-5.8094381e+117
-5.829789e+117
-5.8200932e+117
-5.8186667e+117
-5.8282555e+117
-5.957292e+117
-5.9685171e+117
-5.9567711e+117
-5.9680576e+117
-6.0160176e+117
-6.0036965e+117
-6.003231e+117
-6.016372e+117
-5.9797343e+117
-5.9801564e+117
-5.9917315e+117
-5.9921227e+117
-6.0167586e+117
-6.0044735e+117
-6.0170994e+117
-6.004113e+117
-5.9804561e+117
-5.9924219e+117
-5.9925692e+117
-5.9805388e+117
-5.98048e+117
-5.9805517e+117
-5.9926078e+117
-5.9926074e+117
-6.0174703e+117
-6.0047503e+117
-6.0173618e+117
-6.0048698e+117
-6.0050845e+117
-6.0178741e+117
-6.0050057e+117
-6.0176883e+117
-5.9347199e+117
-5.9456585e+117
-5.945264e+117
-5.9341443e+117
-5.9328899e+117
-5.9335006e+117
-5.9447698e+117
-5.9442844e+117
-5.968292e+117
-5.9568946e+117
-5.968461e+117
-5.9565998e+117
-5.9559187e+117
-5.9678121e+117
-5.9562876e+117
-5.9680688e+117
-5.9465635e+117
-5.9359159e+117
-5.9466033e+117
-5.9359217e+117
-5.9575515e+117
-5.9687919e+117
-5.9687808e+117
-5.9574791e+117
-5.9460347e+117
-5.9356297e+117
-5.9464092e+117
-5.9351329e+117
-5.9574267e+117
-5.9687772e+117
-5.9571518e+117
-5.9686123e+117
-5.9803967e+117
-5.9926199e+117
-5.9925701e+117
-5.9802922e+117
-5.9801915e+117
-5.9925822e+117
-5.9800367e+117
-5.9925188e+117
-6.0182449e+117
-6.005206e+117
-6.0180919e+117
-6.0052484e+117
-6.0053288e+117
-6.0053349e+117
-6.0183698e+117
-6.018404e+117
-5.8921395e+117
-5.8911903e+117
-5.902732e+117
-5.9018085e+117
-5.9124054e+117
-5.923881e+117
-5.9231513e+117
-5.9132582e+117
-5.8901073e+117
-5.888916e+117
-5.8997655e+117
-5.9007975e+117
-5.9114931e+117
-5.910612e+117
-5.9223664e+117
-5.9216297e+117
-5.9147566e+117
-5.9252622e+117
-5.9252957e+117
-5.9147629e+117
-5.9034404e+117
-5.8934279e+117
-5.9039298e+117
-5.8929167e+117
-5.914374e+117
-5.924912e+117
-5.913822e+117
-5.9243318e+117
-5.8614236e+117
-5.8814002e+117
-5.8804392e+117
-5.8793396e+117
-5.8780285e+117
-5.8603938e+117
-5.8588617e+117
-5.8403125e+117
-5.8498093e+117
-5.8376074e+117
-5.8391554e+117
-5.848664e+117
-5.847126e+117
-5.7023253e+117
-5.6939525e+117
-5.6943524e+117
-5.7025881e+117
-5.7029903e+117
-5.6949463e+117
-5.6951451e+117
-5.703135e+117
-5.7026503e+117
-5.6944553e+117
-5.6947196e+117
-5.7028847e+117
-5.6870521e+117
-5.6784672e+117
-5.6794874e+117
-5.6880352e+117
-5.7033327e+117
-5.6952718e+117
-5.6962283e+117
-5.7042855e+117
-5.6832579e+117
-5.681138e+117
-5.6894616e+117
-5.6915487e+117
-5.7056332e+117
-5.6976006e+117
-5.6995727e+117
-5.707501e+117
-6.1158867e+117
-6.0984316e+117
-6.1158313e+117
-6.0984282e+117
-6.1337309e+117
-6.152358e+117
-6.1524024e+117
-6.1337733e+117
-6.116402e+117
-6.0985795e+117
-6.1160395e+117
-6.0989248e+117
-6.1339045e+117
-6.1524291e+117
-6.1340961e+117
-6.1524882e+117
-6.0512648e+117
-6.0367848e+117
-6.0514026e+117
-6.0366318e+117
-6.0366864e+117
-6.0513294e+117
-6.051559e+117
-6.036887e+117
-6.0663951e+117
-6.0818587e+117
-6.0662853e+117
-6.0817832e+117
-6.0819026e+117
-6.0821892e+117
-6.0663676e+117
-6.0666207e+117
-6.0373004e+117
-6.0519877e+117
-6.0525195e+117
-6.0378095e+117
-6.0384801e+117
-6.0531985e+117
-6.0539467e+117
-6.0392308e+117
-6.0670591e+117
-6.0826055e+117
-6.083131e+117
-6.0675884e+117
-6.0682688e+117
-6.0838079e+117
-6.084549e+117
-6.0690165e+117
-6.0992623e+117
-6.1166974e+117
-6.1172144e+117
-6.0997667e+117
-6.1004528e+117
-6.1179287e+117
-6.1187041e+117
-6.1011935e+117
-6.1531172e+117
-6.1537899e+117
-6.1345672e+117
-6.1351497e+117
-6.1359084e+117
-6.1545912e+117
-6.1553787e+117
-6.136679e+117
-6.0419956e+117
-6.0567643e+117
-6.0570139e+117
-6.0422238e+117
-6.0421276e+117
-6.0423019e+117
-6.0570828e+117
-6.0569047e+117
-6.0718749e+117
-6.0874338e+117
-6.0876947e+117
-6.0721326e+117
-6.0720671e+117
-6.0722153e+117
-6.0877876e+117
-6.0876848e+117
-6.0399743e+117
-6.0546904e+117
-6.0553114e+117
-6.0405718e+117
-6.0411203e+117
-6.0558376e+117
-6.0563466e+117
-6.0415908e+117
-6.0697615e+117
-6.0852879e+117
-6.0859143e+117
-6.0703862e+117
-6.0709352e+117
-6.0864913e+117
-6.0870081e+117
-6.0714479e+117
-6.1019239e+117
-6.1194201e+117
-6.1200845e+117
-6.1025625e+117
-6.1031509e+117
-6.1206666e+117
-6.121199e+117
-6.1036698e+117
-6.1374239e+117
-6.1561618e+117
-6.1568305e+117
-6.1380944e+117
-6.1387063e+117
-6.1574569e+117
-6.1579595e+117
-6.1392154e+117
-6.1040868e+117
-6.121591e+117
-6.1218387e+117
-6.1043421e+117
-6.1043138e+117
-6.1044192e+117
-6.1218602e+117
-6.1216687e+117
-6.1396078e+117
-6.1583641e+117
-6.1585575e+117
-6.139821e+117
-6.139551e+117
-6.1398146e+117
-6.1585559e+117
-6.1582837e+117
-6.1729083e+117
-6.1934133e+117
-6.1941703e+117
-6.173633e+117
-6.174467e+117
-6.1950293e+117
-6.1958711e+117
-6.1752943e+117
-6.2401848e+117
-6.2157828e+117
-6.2394048e+117
-6.2165497e+117
-6.2419757e+117
-6.2174261e+117
-6.2410772e+117
-6.2182931e+117
-6.1924839e+117
-6.1721372e+117
-6.1925149e+117
-6.1721361e+117
-6.2147101e+117
-6.238156e+117
-6.2382414e+117
-6.2147268e+117
-6.1928198e+117
-6.1721587e+117
-6.1925959e+117
-6.1722901e+117
-6.2148781e+117
-6.2384182e+117
-6.2151711e+117
-6.2387608e+117
-6.3223194e+117
-6.3227339e+117
-6.2922754e+117
-6.2639117e+117
-6.2920024e+117
-6.264072e+117
-6.264668e+117
-6.2642845e+117
-6.2924867e+117
-6.2928833e+117
-6.323285e+117
-6.3228517e+117
-6.2653317e+117
-6.2935378e+117
-6.2943308e+117
-6.2661184e+117
-6.2670139e+117
-6.2952183e+117
-6.2679334e+117
-6.2961335e+117
-6.323911e+117
-6.3246681e+117
-6.3265208e+117
-6.3255498e+117
-6.2981197e+117
-6.268889e+117
-6.2971569e+117
-6.2697995e+117
-6.3274681e+117
-6.3281965e+117
-6.2993039e+117
-6.2703817e+117
-6.2986392e+117
-6.2710043e+117
-6.328802e+117
-6.329403e+117
-6.1760975e+117
-6.1966946e+117
-6.1973996e+117
-6.1767742e+117
-6.1773966e+117
-6.1980366e+117
-6.1985566e+117
-6.1779172e+117
-6.2191416e+117
-6.2428649e+117
-6.2436485e+117
-6.2198727e+117
-6.220522e+117
-6.2442987e+117
-6.2448562e+117
-6.2210548e+117
-6.1783203e+117
-6.1989514e+117
-6.1991439e+117
-6.1785195e+117
-6.1782673e+117
-6.178516e+117
-6.1991269e+117
-6.1988756e+117
-6.2214326e+117
-6.2451913e+117
-6.2453324e+117
-6.2216053e+117
-6.2213041e+117
-6.2215664e+117
-6.2452803e+117
-6.2450078e+117
-6.2996359e+117
-6.2712254e+117
-6.2994704e+117
-6.2713515e+117
-6.3297869e+117
-6.3300338e+117
-6.2710381e+117
-6.2994157e+117
-6.2713012e+117
-6.2996287e+117
-6.3301105e+117
-6.3300399e+117
-5.9993084e+117
-5.9863553e+117
-5.9996672e+117
-5.985996e+117
-6.013332e+117
-6.0273273e+117
-6.0267742e+117
-6.0128712e+117
-5.9852534e+117
-5.9984327e+117
-5.9856014e+117
-5.9988395e+117
-6.0124222e+117
-6.0263432e+117
-6.0119843e+117
-6.0259195e+117
-5.9363952e+117
-5.9479506e+117
-5.947898e+117
-5.9363427e+117
-5.9363576e+117
-5.9363417e+117
-5.9478973e+117
-5.9479148e+117
-5.9721545e+117
-5.9598807e+117
-5.9722309e+117
-5.9598133e+117
-5.9598194e+117
-5.972104e+117
-5.9598057e+117
-5.9721107e+117
-5.9485184e+117
-5.9368579e+117
-5.9486803e+117
-5.936724e+117
-5.9608432e+117
-5.9733805e+117
-5.9730182e+117
-5.960574e+117
-5.9480359e+117
-5.9365593e+117
-5.9482546e+117
-5.9363864e+117
-5.9602889e+117
-5.9727091e+117
-5.9600201e+117
-5.9723975e+117
-5.9850281e+117
-5.998182e+117
-5.9979832e+117
-5.9848931e+117
-6.0256635e+117
-6.011525e+117
-6.0117374e+117
-6.0254402e+117
-5.9848483e+117
-5.9848283e+117
-5.9979504e+117
-5.997922e+117
-6.025368e+117
-6.0114247e+117
-6.0252968e+117
-6.0114711e+117
-5.8941099e+117
-5.8941873e+117
-5.9040075e+117
-5.904009e+117
-5.9143237e+117
-5.9251655e+117
-5.925112e+117
-5.9143699e+117
-5.894264e+117
-5.8942717e+117
-5.9040433e+117
-5.9040423e+117
-5.9143314e+117
-5.9143386e+117
-5.9251119e+117
-5.9251245e+117
-5.9038582e+117
-5.8935367e+117
-5.9036599e+117
-5.8938121e+117
-5.9143064e+117
-5.9253681e+117
-5.9252783e+117
-5.9143287e+117
-5.90397e+117
-5.8939694e+117
-5.9039306e+117
-5.8940433e+117
-5.9143356e+117
-5.9252094e+117
-5.9142924e+117
-5.9250756e+117
-5.8625646e+117
-5.8740977e+117
-5.8745052e+117
-5.8629075e+117
-5.8842064e+117
-5.8845021e+117
-5.8748602e+117
-5.8847313e+117
-5.884858e+117
-5.8750404e+117
-5.8632913e+117
-5.8635874e+117
-5.8115572e+117
-5.8106325e+117
-5.8188254e+117
-5.8197257e+117
-5.8178025e+117
-5.8094752e+117
-5.8098431e+117
-5.8181329e+117
-5.8345438e+117
-5.8261594e+117
-5.8265004e+117
-5.8348695e+117
-5.8355005e+117
-5.827165e+117
-5.8279887e+117
-5.836196e+117
-5.852141e+117
-5.843156e+117
-5.843453e+117
-5.852419e+117
-5.8445527e+117
-5.8439985e+117
-5.8528453e+117
-5.8532713e+117
-5.8638164e+117
-5.8751752e+117
-5.8753852e+117
-5.8641128e+117
-5.8849541e+117
-5.8850835e+117
-5.8756221e+117
-5.8852255e+117
-5.8852397e+117
-5.875602e+117
-5.8644061e+117
-5.8643844e+117
-5.8367942e+117
-5.8287676e+117
-5.8293012e+117
-5.8372545e+117
-5.8205976e+117
-5.8124529e+117
-5.8131668e+117
-5.8212187e+117
-5.8136422e+117
-5.8136422e+117
-5.8215818e+117
-5.8215944e+117
-5.8375946e+117
-5.8296194e+117
-5.8296107e+117
-5.8375776e+117
-5.8457183e+117
-5.8457425e+117
-5.8542595e+117
-5.8542556e+117
-5.8454241e+117
-5.8450024e+117
-5.8536033e+117
-5.8539692e+117
-5.801121e+117
-5.7928932e+117
-5.7933664e+117
-5.8015191e+117
-5.7847128e+117
-5.776669e+117
-5.777276e+117
-5.7852374e+117
-5.7798214e+117
-5.7784531e+117
-5.7862475e+117
-5.7875006e+117
-5.8023919e+117
-5.7942784e+117
-5.7953663e+117
-5.8033742e+117
-5.7818528e+117
-5.7821057e+117
-5.7898171e+117
-5.7897617e+117
-5.7817679e+117
-5.7809357e+117
-5.7884978e+117
-5.7893377e+117
-5.8042907e+117
-5.7963032e+117
-5.7971405e+117
-5.8050693e+117
-5.8056177e+117
-5.7976867e+117
-5.7976891e+117
-5.8056242e+117
-5.9848283e+117
-5.9979203e+117
-5.9978947e+117
-5.9847643e+117
-5.9846569e+117
-5.9846837e+117
-5.9977913e+117
-5.9977738e+117
-6.0250593e+117
-6.0113928e+117
-6.0252243e+117
-6.0112943e+117
-6.0112675e+117
-6.0251482e+117
-6.0112568e+117
-6.0250794e+117
-5.9360071e+117
-5.9475972e+117
-5.9475767e+117
-5.9358954e+117
-5.9357632e+117
-5.9357996e+117
-5.9475654e+117
-5.9476048e+117
-5.9720373e+117
-5.9595489e+117
-5.9719122e+117
-5.9596031e+117
-5.9597758e+117
-5.9723015e+117
-5.9596674e+117
-5.9721419e+117
-5.947909e+117
-5.9364043e+117
-5.9479519e+117
-5.9363211e+117
-5.9598367e+117
-5.9721019e+117
-5.9719857e+117
-5.9597531e+117
-5.9476281e+117
-5.9361854e+117
-5.9477532e+117
-5.9360285e+117
-5.9596517e+117
-5.9719307e+117
-5.9595579e+117
-5.9718683e+117
-5.984716e+117
-5.9978764e+117
-5.9980143e+117
-5.9848545e+117
-5.9850318e+117
-5.9982714e+117
-5.9852385e+117
-5.9985224e+117
-6.0255993e+117
-6.0114378e+117
-6.0253595e+117
-6.0116244e+117
-6.012197e+117
-6.011911e+117
-6.0259006e+117
-6.0262069e+117
-5.8935397e+117
-5.8931801e+117
-5.90348e+117
-5.9031438e+117
-5.9136013e+117
-5.9247383e+117
-5.92453e+117
-5.913896e+117
-5.8927995e+117
-5.8923723e+117
-5.9024955e+117
-5.9028136e+117
-5.9133368e+117
-5.913125e+117
-5.9243474e+117
-5.9242303e+117
-5.9040769e+117
-5.8942656e+117
-5.9040915e+117
-5.8942262e+117
-5.9144193e+117
-5.9251879e+117
-5.9250807e+117
-5.9143375e+117
-5.9037478e+117
-5.8940974e+117
-5.9039313e+117
-5.8938704e+117
-5.9142108e+117
-5.9249605e+117
-5.9140268e+117
-5.9247653e+117
-5.8641826e+117
-5.8754477e+117
-5.8753858e+117
-5.8641062e+117
-5.8851848e+117
-5.8851125e+117
-5.8753645e+117
-5.8850075e+117
-5.8847521e+117
-5.875066e+117
-5.8640348e+117
-5.8637058e+117
-5.8373602e+117
-5.8293778e+117
-5.8291447e+117
-5.8371596e+117
-5.8213079e+117
-5.8132841e+117
-5.8129714e+117
-5.8210197e+117
-5.8120457e+117
-5.8126382e+117
-5.8207205e+117
-5.8202661e+117
-5.8369877e+117
-5.828889e+117
-5.8284865e+117
-5.8365929e+117
-5.8453629e+117
-5.8455114e+117
-5.854049e+117
-5.8539409e+117
-5.8448441e+117
-5.8452226e+117
-5.8538241e+117
-5.8534864e+117
-5.8631267e+117
-5.8745825e+117
-5.8741342e+117
-5.862634e+117
-5.8843648e+117
-5.8839618e+117
-5.8736804e+117
-5.8835478e+117
-5.8830302e+117
-5.8730081e+117
-5.8620998e+117
-5.8613193e+117
-5.836016e+117
-5.8279348e+117
-5.827148e+117
-5.8353402e+117
-5.8196274e+117
-5.8112579e+117
-5.8103761e+117
-5.8187665e+117
-5.8083095e+117
-5.8094302e+117
-5.8177758e+117
-5.8167278e+117
-5.8345225e+117
-5.8261982e+117
-5.8251739e+117
-5.8335234e+117
-5.8436861e+117
-5.8442667e+117
-5.8529007e+117
-5.8523712e+117
-5.842005e+117
-5.842945e+117
-5.8517231e+117
-5.8508846e+117
-5.805214e+117
-5.7972363e+117
-5.7968088e+117
-5.8048442e+117
-5.7892159e+117
-5.7812461e+117
-5.7806245e+117
-5.7886701e+117
-5.779013e+117
-5.7798731e+117
-5.7880258e+117
-5.7872296e+117
-5.8044397e+117
-5.7962551e+117
-5.7954766e+117
-5.8037298e+117
-5.7749455e+117
-5.7762129e+117
-5.7843662e+117
-5.7831857e+117
-5.7772333e+117
-5.7780695e+117
-5.7861809e+117
-5.7853321e+117
-5.8028076e+117
-5.7944514e+117
-5.7935981e+117
-5.8019202e+117
-5.8010063e+117
-5.7926716e+117
-5.7915105e+117
-5.7998564e+117
-5.7686617e+117
-5.7608306e+117
-5.7616128e+117
-5.7693278e+117
-5.7531709e+117
-5.745806e+117
-5.7468447e+117
-5.7540565e+117
-5.7493535e+117
-5.7480982e+117
-5.7553132e+117
-5.7567442e+117
-5.7706043e+117
-5.7628815e+117
-5.7643341e+117
-5.7720486e+117
-5.7386104e+117
-5.7316419e+117
-5.7329214e+117
-5.7397397e+117
-5.7246417e+117
-5.7174764e+117
-5.718992e+117
-5.7260386e+117
-5.7203725e+117
-5.7199049e+117
-5.7269283e+117
-5.7275564e+117
-5.7409139e+117
-5.7338816e+117
-5.7347474e+117
-5.7419892e+117
-5.7172229e+117
-5.7187047e+117
-5.7266478e+117
-5.725328e+117
-5.7197997e+117
-5.7203048e+117
-5.7278187e+117
-5.7276397e+117
-5.7427816e+117
-5.735285e+117
-5.73533e+117
-5.7430005e+117
-5.742438e+117
-5.7345632e+117
-5.7333075e+117
-5.7412931e+117
-5.7732625e+117
-5.7655854e+117
-5.7662719e+117
-5.7740385e+117
-5.7579057e+117
-5.7503246e+117
-5.7507142e+117
-5.7584575e+117
-5.7493599e+117
-5.7503299e+117
-5.7582488e+117
-5.7574727e+117
-5.7742146e+117
-5.766253e+117
-5.765645e+117
-5.7737814e+117
-5.711961e+117
-5.7123668e+117
-5.7200027e+117
-5.7196103e+117
-5.7124042e+117
-5.7123543e+117
-5.7203337e+117
-5.7201833e+117
-5.7364367e+117
-5.7283406e+117
-5.7280236e+117
-5.7359402e+117
-5.7355051e+117
-5.7277247e+117
-5.7272003e+117
-5.7348189e+117
-5.7129122e+117
-5.713572e+117
-5.721706e+117
-5.7211111e+117
-5.71447e+117
-5.7155964e+117
-5.7236226e+117
-5.7225127e+117
-5.7398665e+117
-5.7317038e+117
-5.7306044e+117
-5.7387688e+117
-5.7380098e+117
-5.7298433e+117
-5.7291723e+117
-5.7372645e+117
-5.773072e+117
-5.7647945e+117
-5.7639194e+117
-5.7723307e+117
-5.7564265e+117
-5.7481197e+117
-5.7470723e+117
-5.7554452e+117
-5.7454884e+117
-5.7462619e+117
-5.7545955e+117
-5.7537925e+117
-5.771511e+117
-5.7630631e+117
-5.7622215e+117
-5.7706411e+117
-5.769766e+117
-5.761387e+117
-5.7605947e+117
-5.7689378e+117
-5.7529636e+117
-5.7446598e+117
-5.7440391e+117
-5.7522407e+117
-5.7425838e+117
-5.7434181e+117
-5.7514464e+117
-5.7504525e+117
-5.7679346e+117
-5.7596673e+117
-5.7585216e+117
-5.7666864e+117
-5.6941731e+117
-5.6859321e+117
-5.6870415e+117
-5.6955691e+117
-5.7099018e+117
-5.7020628e+117
-5.7036714e+117
-5.7115278e+117
-5.7124159e+117
-5.704465e+117
-5.7044323e+117
-5.712651e+117
-6.1765528e+117
-6.1971388e+117
-6.1969554e+117
-6.1763463e+117
-6.1761086e+117
-6.1762062e+117
-6.1968026e+117
-6.1966883e+117
-6.2431992e+117
-6.2196949e+117
-6.2433106e+117
-6.2195256e+117
-6.2192387e+117
-6.242877e+117
-6.219372e+117
-6.2430165e+117
-6.1982795e+117
-6.1780107e+117
-6.1985776e+117
-6.1776853e+117
-6.2210791e+117
-6.2446136e+117
-6.2440612e+117
-6.2206638e+117
-6.1973871e+117
-6.1772558e+117
-6.1978088e+117
-6.1768263e+117
-6.2202555e+117
-6.2437549e+117
-6.2198998e+117
-6.2434491e+117
-6.298456e+117
-6.2706316e+117
-6.2989731e+117
-6.2700919e+117
-6.3293941e+117
-6.328926e+117
-6.269498e+117
-6.2978838e+117
-6.2697708e+117
-6.2981341e+117
-6.3285891e+117
-6.3283871e+117
-6.2693811e+117
-6.297749e+117
-6.2975832e+117
-6.2692683e+117
-6.3280563e+117
-6.3282246e+117
-6.2691226e+117
-6.2690019e+117
-6.2975266e+117
-6.297436e+117
-6.3279572e+117
-6.3280055e+117
-6.2689697e+117
-6.2974101e+117
-6.2973931e+117
-6.2688772e+117
-6.2687252e+117
-6.2687356e+117
-6.2971475e+117
-6.2971275e+117
-6.3278963e+117
-6.3277574e+117
-6.3276097e+117
-6.3275912e+117
-6.1759871e+117
-6.1966082e+117
-6.196884e+117
-6.176248e+117
-6.1760698e+117
-6.1761757e+117
-6.1966906e+117
-6.1965187e+117
-6.2426082e+117
-6.2191193e+117
-6.2426652e+117
-6.2192054e+117
-6.2189797e+117
-6.2425468e+117
-6.2191391e+117
-6.2426694e+117
-6.1967559e+117
-6.176132e+117
-6.1967241e+117
-6.1761699e+117
-6.219257e+117
-6.2428471e+117
-6.242659e+117
-6.2191701e+117
-6.1964217e+117
-6.1759627e+117
-6.1965304e+117
-6.1757874e+117
-6.2190257e+117
-6.2426126e+117
-6.218968e+117
-6.2425779e+117
-6.2687335e+117
-6.2971483e+117
-6.2971302e+117
-6.2686849e+117
-6.26873e+117
-6.2971806e+117
-6.2686336e+117
-6.2971124e+117
-6.3277227e+117
-6.3277606e+117
-6.3278096e+117
-6.3278156e+117
-6.1190309e+117
-6.1014296e+117
-6.119075e+117
-6.1013577e+117
-6.1371968e+117
-6.1560275e+117
-6.1560595e+117
-6.1371742e+117
-6.1193026e+117
-6.1014348e+117
-6.1191155e+117
-6.1016374e+117
-6.1371761e+117
-6.155909e+117
-6.1371546e+117
-6.1557072e+117
-6.0394831e+117
-6.0393152e+117
-6.0541272e+117
-6.0539535e+117
-6.0691627e+117
-6.0690192e+117
-6.084673e+117
-6.0845665e+117
-6.0393399e+117
-6.0539963e+117
-6.0541372e+117
-6.0394519e+117
-6.0846112e+117
-6.0847705e+117
-6.0690559e+117
-6.069206e+117
-6.0396891e+117
-6.0543785e+117
-6.0399482e+117
-6.054623e+117
-6.0696677e+117
-6.069434e+117
-6.0849509e+117
-6.0851548e+117
-6.0405684e+117
-6.0552342e+117
-6.040261e+117
-6.0549463e+117
-6.085403e+117
-6.0699611e+117
-6.0702101e+117
-6.0855985e+117
-6.1016959e+117
-6.1192763e+117
-6.1193841e+117
-6.1018453e+117
-6.1021798e+117
-6.1020421e+117
-6.1195356e+117
-6.1196156e+117
-6.1559417e+117
-6.1561116e+117
-6.1372601e+117
-6.137382e+117
-6.137513e+117
-6.1374992e+117
-6.1561839e+117
-6.1561406e+117
-6.1040786e+117
-6.1210022e+117
-6.1213096e+117
-6.1034845e+117
-6.1391054e+117
-6.1578733e+117
-6.1575475e+117
-6.1388502e+117
-6.1023889e+117
-6.1199733e+117
-6.1028696e+117
-6.1204355e+117
-6.1384163e+117
-6.157155e+117
-6.1379835e+117
-6.1567388e+117
-6.0545204e+117
-6.0400136e+117
-6.0547379e+117
-6.0397932e+117
-6.0698214e+117
-6.0853476e+117
-6.085119e+117
-6.0695945e+117
-6.0542574e+117
-6.039689e+117
-6.0543868e+117
-6.0395876e+117
-6.0694472e+117
-6.0849616e+117
-6.0848056e+117
-6.0692992e+117
-6.0874076e+117
-6.0716894e+117
-6.0710752e+117
-6.0867119e+117
-6.0564922e+117
-6.041718e+117
-6.0411457e+117
-6.0558936e+117
-6.0550094e+117
-6.0406914e+117
-6.0554232e+117
-6.0402767e+117
-6.0861082e+117
-6.0705404e+117
-6.0701041e+117
-6.08564e+117
-6.1195099e+117
-6.1020923e+117
-6.1196969e+117
-6.1018726e+117
-6.156493e+117
-6.1377443e+117
-6.1375605e+117
-6.1562751e+117
-6.1192049e+117
-6.101709e+117
-6.1193386e+117
-6.1015556e+117
-6.1561663e+117
-6.1374189e+117
-6.1372766e+117
-6.156022e+117
-6.2666252e+117
-6.265973e+117
-6.2650255e+117
-6.2643882e+117
-6.2799708e+117
-6.2793238e+117
-6.2918796e+117
-6.2925369e+117
-6.2808241e+117
-6.2933036e+117
-6.2939795e+117
-6.2814109e+117
-6.2621232e+117
-6.2617809e+117
-6.2773298e+117
-6.2767679e+117
-6.2896006e+117
-6.2901543e+117
-6.2635891e+117
-6.2785952e+117
-6.2627907e+117
-6.2779903e+117
-6.2907525e+117
-6.2912641e+117
-6.3529048e+117
-6.3377449e+117
-6.3372401e+117
-6.3533994e+117
-6.3209192e+117
-6.305867e+117
-6.3064925e+117
-6.3214996e+117
-6.3071926e+117
-6.3221347e+117
-6.322735e+117
-6.3078493e+117
-6.3383236e+117
-6.3539662e+117
-6.354521e+117
-6.3389011e+117
-6.3042373e+117
-6.303661e+117
-6.3186859e+117
-6.3192966e+117
-6.3355656e+117
-6.3349457e+117
-6.3506225e+117
-6.3512487e+117
-6.336695e+117
-6.3361648e+117
-6.351842e+117
-6.3523431e+117
-6.3048108e+117
-6.3198798e+117
-6.320384e+117
-6.3053086e+117
-6.3696023e+117
-6.3843468e+117
-6.3983025e+117
-6.3987186e+117
-6.3701202e+117
-6.3847465e+117
-6.3972388e+117
-6.3977811e+117
-6.3690241e+117
-6.3838118e+117
-6.368423e+117
-6.3831669e+117
-6.4104165e+117
-6.4244924e+117
-6.4099461e+117
-6.4240534e+117
-6.4370475e+117
-6.4366186e+117
-6.4113242e+117
-6.4253415e+117
-6.4109141e+117
-6.424968e+117
-6.437818e+117
-6.4374869e+117
-6.3669923e+117
-6.3818862e+117
-6.366371e+117
-6.3812073e+117
-6.3953687e+117
-6.3959795e+117
-6.4081993e+117
-6.4224859e+117
-6.4351894e+117
-6.4229924e+117
-6.4356634e+117
-6.4087561e+117
-6.3965191e+117
-6.3968837e+117
-6.4095762e+117
-6.4236911e+117
-6.4092368e+117
-6.4234006e+117
-6.4360077e+117
-6.4362598e+117
-6.3675578e+117
-6.3824438e+117
-6.3680022e+117
-6.3828152e+117
-6.2669386e+117
-6.267727e+117
-6.2826534e+117
-6.2818865e+117
-6.2945712e+117
-6.2952319e+117
-6.2961256e+117
-6.295864e+117
-6.2684672e+117
-6.283355e+117
-6.2690017e+117
-6.2836755e+117
-6.3084834e+117
-6.3090854e+117
-6.3239296e+117
-6.3233708e+117
-6.3555363e+117
-6.3550733e+117
-6.3394996e+117
-6.3400101e+117
-6.3559105e+117
-6.3404348e+117
-6.340742e+117
-6.3561237e+117
-6.3096097e+117
-6.3243749e+117
-6.3246775e+117
-6.3098875e+117
-6.3706413e+117
-6.3852115e+117
-6.3991136e+117
-6.3994636e+117
-6.3710569e+117
-6.3856516e+117
-6.3997769e+117
-6.3996556e+117
-6.3713721e+117
-6.3858931e+117
-6.3714912e+117
-6.3860099e+117
-6.4121156e+117
-6.4260168e+117
-6.4122172e+117
-6.4260966e+117
-6.4385041e+117
-6.4384501e+117
-6.411951e+117
-6.4258732e+117
-6.4116922e+117
-6.4256998e+117
-6.4383222e+117
-6.4381554e+117
-6.3998756e+117
-6.4001902e+117
-6.372004e+117
-6.3864959e+117
-6.3717633e+117
-6.3861428e+117
-6.3721653e+117
-6.3866951e+117
-6.4004409e+117
-6.400658e+117
-6.372419e+117
-6.3868617e+117
-6.4267327e+117
-6.4390646e+117
-6.4128731e+117
-6.4130816e+117
-6.4268496e+117
-6.4391498e+117
-6.426239e+117
-6.4386385e+117
-6.4123517e+117
-6.4126004e+117
-6.426421e+117
-6.4388258e+117
-6.4012583e+117
-6.4014188e+117
-6.3705682e+117
-6.3870951e+117
-6.370319e+117
-6.3868199e+117
-6.4132415e+117
-6.425201e+117
-6.4131401e+117
-6.425129e+117
-6.438851e+117
-6.4389497e+117
-6.4498654e+117
-6.4499994e+117
-6.472562e+117
-6.4611756e+117
-6.4723988e+117
-6.4610598e+117
-6.4807589e+117
-6.4809235e+117
-6.4501787e+117
-6.4501129e+117
-6.4726876e+117
-6.4612885e+117
-6.4727169e+117
-6.4613392e+117
-6.4810464e+117
-6.4810906e+117
-6.4503e+117
-6.4504735e+117
-6.4728338e+117
-6.4811901e+117
-6.4614671e+117
-6.4729587e+117
-6.461614e+117
-6.4812958e+117
-6.4507789e+117
-6.4506864e+117
-6.473086e+117
-6.4618063e+117
-6.4731127e+117
-6.4618692e+117
-6.4814242e+117
-6.4813969e+117
-6.4508215e+117
-6.4507843e+117
-6.4731366e+117
-6.4614928e+117
-6.4730969e+117
-6.4614764e+117
-6.4894625e+117
-6.4982334e+117
-6.4895459e+117
-6.4983063e+117
-6.4896409e+117
-6.4983701e+117
-6.4896559e+117
-6.4983664e+117
-6.4890531e+117
-6.4978301e+117
-6.489201e+117
-6.4979824e+117
-6.4893633e+117
-6.4981408e+117
-6.4893182e+117
-6.4980992e+117
-6.4470998e+117
-6.4474981e+117
-6.4699403e+117
-6.4584596e+117
-6.4703152e+117
-6.4588141e+117
-6.4787617e+117
-6.4784015e+117
-6.4480652e+117
-6.4478045e+117
-6.4706288e+117
-6.459098e+117
-6.4708557e+117
-6.4593479e+117
-6.47908e+117
-6.4793241e+117
-6.4488033e+117
-6.4484062e+117
-6.4711765e+117
-6.4596829e+117
-6.4715175e+117
-6.4600468e+117
-6.4799372e+117
-6.4796217e+117
-6.4495656e+117
-6.4492351e+117
-6.4718738e+117
-6.4604717e+117
-6.4721165e+117
-6.460761e+117
-6.4805018e+117
-6.4802608e+117
-6.4868064e+117
-6.4957127e+117
-6.4871361e+117
-6.4960407e+117
-6.4874542e+117
-6.4963615e+117
-6.487696e+117
-6.4965802e+117
-6.4885739e+117
-6.4973858e+117
-6.4888e+117
-6.4975874e+117
-6.4879813e+117
-6.4968443e+117
-6.4882586e+117
-6.4971085e+117
-6.366679e+117
-6.3822649e+117
-6.382565e+117
-6.366991e+117
-6.3671584e+117
-6.3826919e+117
-6.3830313e+117
-6.367309e+117
-6.3983663e+117
-6.3980088e+117
-6.4207642e+117
-6.4211031e+117
-6.3977677e+117
-6.3974934e+117
-6.4203941e+117
-6.4201132e+117
-6.3674811e+117
-6.3832854e+117
-6.3835359e+117
-6.3677527e+117
-6.3681604e+117
-6.3679481e+117
-6.3837488e+117
-6.3840665e+117
-6.3995473e+117
-6.3992351e+117
-6.4223022e+117
-6.4226702e+117
-6.3989467e+117
-6.3986902e+117
-6.4215446e+117
-6.4218871e+117
-6.368431e+117
-6.3843414e+117
-6.3845512e+117
-6.3686113e+117
-6.3687024e+117
-6.3846183e+117
-6.3847528e+117
-6.3687879e+117
-6.4003768e+117
-6.4002336e+117
-6.4234422e+117
-6.4235929e+117
-6.4000982e+117
-6.3998772e+117
-6.4230144e+117
-6.4232052e+117
-6.3689411e+117
-6.3848953e+117
-6.3852579e+117
-6.3691695e+117
-6.3694546e+117
-6.3855603e+117
-6.3858868e+117
-6.3697907e+117
-6.401583e+117
-6.4012635e+117
-6.4245768e+117
-6.4248796e+117
-6.4009344e+117
-6.4005897e+117
-6.4238911e+117
-6.4242037e+117
-6.3322134e+117
-6.3478268e+117
-6.3483134e+117
-6.3328129e+117
-6.3592221e+117
-6.3741949e+117
-6.3884364e+117
-6.3889418e+117
-6.3597713e+117
-6.3747881e+117
-6.3605226e+117
-6.3753705e+117
-6.3893755e+117
-6.3897977e+117
-6.361231e+117
-6.375848e+117
-6.4025272e+117
-6.4167604e+117
-6.4021398e+117
-6.4164232e+117
-6.4296066e+117
-6.4292705e+117
-6.4017512e+117
-6.4160243e+117
-6.4013195e+117
-6.4156696e+117
-6.4288585e+117
-6.4284925e+117
-6.3619913e+117
-6.3765129e+117
-6.3903839e+117
-6.3911678e+117
-6.3627457e+117
-6.3773486e+117
-6.3633455e+117
-6.3778921e+117
-6.391728e+117
-6.3920867e+117
-6.3636508e+117
-6.3781474e+117
-6.4047096e+117
-6.4188043e+117
-6.4043008e+117
-6.4184148e+117
-6.4314425e+117
-6.4311082e+117
-6.4037373e+117
-6.417849e+117
-6.4030745e+117
-6.4172973e+117
-6.4306282e+117
-6.4301236e+117
-6.2607142e+117
-6.2757338e+117
-6.2884295e+117
-6.2883707e+117
-6.2610086e+117
-6.2758577e+117
-6.2615578e+117
-6.276213e+117
-6.2615852e+117
-6.2762826e+117
-6.2887233e+117
-6.2885823e+117
-6.2613709e+117
-6.2615085e+117
-6.2763716e+117
-6.2762775e+117
-6.2890582e+117
-6.2889205e+117
-6.3031069e+117
-6.3177221e+117
-6.3028097e+117
-6.3181075e+117
-6.3023589e+117
-6.3171668e+117
-6.3174048e+117
-6.3025493e+117
-6.3334742e+117
-6.3332173e+117
-6.3486959e+117
-6.348995e+117
-6.3338522e+117
-6.3343283e+117
-6.349982e+117
-6.3494375e+117
-6.317046e+117
-6.3021261e+117
-6.302353e+117
-6.3171951e+117
-6.3331498e+117
-6.3331798e+117
-6.3485814e+117
-6.3485315e+117
-6.3330636e+117
-6.3331741e+117
-6.3485684e+117
-6.3484724e+117
-6.3022944e+117
-6.3171585e+117
-6.3170938e+117
-6.3022697e+117
-6.3924981e+117
-6.3927172e+117
-6.3640557e+117
-6.3788058e+117
-6.3639482e+117
-6.3785841e+117
-6.3928299e+117
-6.364083e+117
-6.3788665e+117
-6.3640261e+117
-6.378851e+117
-6.3929192e+117
-6.4057055e+117
-6.4199233e+117
-6.4055126e+117
-6.4196786e+117
-6.4323868e+117
-6.4326708e+117
-6.4050824e+117
-6.4191732e+117
-6.4317957e+117
-6.4053212e+117
-6.4194238e+117
-6.4320838e+117
-6.3936871e+117
-6.3932666e+117
-6.3643078e+117
-6.3791513e+117
-6.3646506e+117
-6.3795734e+117
-6.365697e+117
-6.3805332e+117
-6.3947107e+117
-6.3941849e+117
-6.3651357e+117
-6.3800402e+117
-6.407015e+117
-6.4213098e+117
-6.4340277e+117
-6.4218513e+117
-6.4345718e+117
-6.4075621e+117
-6.4060712e+117
-6.4203438e+117
-6.4330635e+117
-6.4207932e+117
-6.433515e+117
-6.406501e+117
-6.2025115e+117
-6.2174753e+117
-6.2194286e+117
-6.2046633e+117
-6.1978071e+117
-6.2127685e+117
-6.2152938e+117
-6.2002674e+117
-6.2314147e+117
-6.2290349e+117
-6.2494806e+117
-6.2471897e+117
-6.2336091e+117
-6.2354687e+117
-6.253503e+117
-6.2516718e+117
-6.2220051e+117
-6.2235467e+117
-6.2414246e+117
-6.2398996e+117
-6.2073095e+117
-6.2057786e+117
-6.1910686e+117
-6.192376e+117
-6.1938468e+117
-6.2107451e+117
-6.2088556e+117
-6.1958068e+117
-6.22506e+117
-6.2269432e+117
-6.2450666e+117
-6.243078e+117
-6.2666407e+117
-6.2824471e+117
-6.2842084e+117
-6.2685086e+117
-6.2779938e+117
-6.2622423e+117
-6.264522e+117
-6.2803549e+117
-6.3108633e+117
-6.2962088e+117
-6.2939427e+117
-6.3130345e+117
-6.2982656e+117
-6.3150911e+117
-6.3169479e+117
-6.3001177e+117
-6.2581458e+117
-6.2740302e+117
-6.2760135e+117
-6.2602132e+117
-6.2705892e+117
-6.2548234e+117
-6.2563681e+117
-6.2722299e+117
-6.2899659e+117
-6.3069307e+117
-6.3089604e+117
-6.2920176e+117
-6.2866524e+117
-6.288226e+117
-6.3052068e+117
-6.3036685e+117
-6.3256474e+117
-6.3453413e+117
-6.3469365e+117
-6.3272029e+117
-6.3290118e+117
-6.3486927e+117
-6.3505892e+117
-6.3310515e+117
-6.3686647e+117
-6.3668985e+117
-6.3827595e+117
-6.3844053e+117
-6.3652185e+117
-6.3635814e+117
-6.3794616e+117
-6.3810964e+117
-6.3328919e+117
-6.3523002e+117
-6.3542771e+117
-6.3348615e+117
-6.3368466e+117
-6.3561891e+117
-6.3579654e+117
-6.3387129e+117
-6.3758236e+117
-6.3741e+117
-6.3897245e+117
-6.3913377e+117
-6.3723094e+117
-6.3704142e+117
-6.3861465e+117
-6.3879848e+117
-6.2059845e+117
-6.207339e+117
-6.2221896e+117
-6.2207263e+117
-6.23683e+117
-6.2548706e+117
-6.2562913e+117
-6.2383003e+117
-6.257715e+117
-6.2398051e+117
-6.2414286e+117
-6.2592277e+117
-6.2087365e+117
-6.223665e+117
-6.2253283e+117
-6.2104884e+117
-6.2151714e+117
-6.2312265e+117
-6.2300998e+117
-6.2163827e+117
-6.2286852e+117
-6.2268943e+117
-6.2120671e+117
-6.2137571e+117
-6.2446832e+117
-6.2429869e+117
-6.260888e+117
-6.2626003e+117
-6.2462235e+117
-6.2642101e+117
-6.2654325e+117
-6.247415e+117
-6.2790484e+117
-6.2946888e+117
-6.2956968e+117
-6.2802305e+117
-6.2912697e+117
-6.2757109e+117
-6.2774746e+117
-6.2931413e+117
-6.3237623e+117
-6.3088203e+117
-6.3070392e+117
-6.3254403e+117
-6.3103329e+117
-6.3114165e+117
-6.3280231e+117
-6.3269339e+117
-6.2725399e+117
-6.2881626e+117
-6.2896425e+117
-6.274052e+117
-6.2855547e+117
-6.2698773e+117
-6.2712565e+117
-6.2869377e+117
-6.3039296e+117
-6.3206909e+117
-6.3222463e+117
-6.3054822e+117
-6.3014265e+117
-6.3027077e+117
-6.319439e+117
-6.3182256e+117
-6.3593595e+117
-6.3606885e+117
-6.3413372e+117
-6.3400736e+117
-6.3620178e+117
-6.3426868e+117
-6.344202e+117
-6.3634053e+117
-6.3955891e+117
-6.3800155e+117
-6.3812756e+117
-6.396822e+117
-6.3928652e+117
-6.3773422e+117
-6.3787191e+117
-6.3942418e+117
-6.3455961e+117
-6.3647094e+117
-6.3661592e+117
-6.3470373e+117
-6.3483729e+117
-6.3674326e+117
-6.3685439e+117
-6.3494853e+117
-6.3862071e+117
-6.3851382e+117
-6.400588e+117
-6.4015609e+117
-6.3839437e+117
-6.3825833e+117
-6.3980892e+117
-6.3994085e+117
-6.256594e+117
-6.2571454e+117
-6.2713345e+117
-6.2708431e+117
-6.2579624e+117
-6.258933e+117
-6.2731283e+117
-6.2721185e+117
-6.260044e+117
-6.274425e+117
-6.2910131e+117
-6.3057868e+117
-6.3065321e+117
-6.291638e+117
-6.3037152e+117
-6.2888353e+117
-6.2901058e+117
-6.3048713e+117
-6.3355232e+117
-6.3203012e+117
-6.3192561e+117
-6.3364793e+117
-6.3212169e+117
-6.337413e+117
-6.3382962e+117
-6.32205e+117
-6.3001499e+117
-6.285215e+117
-6.285711e+117
-6.300664e+117
-6.2864768e+117
-6.3014237e+117
-6.3024852e+117
-6.2875387e+117
-6.3171286e+117
-6.3335405e+117
-6.334532e+117
-6.3181524e+117
-6.3158307e+117
-6.3327896e+117
-6.3322114e+117
-6.3163739e+117
-6.3575744e+117
-6.372828e+117
-6.3736006e+117
-6.3583319e+117
-6.3751901e+117
-6.3743872e+117
-6.3591173e+117
-6.3599709e+117
-6.3900578e+117
-6.3893005e+117
-6.4118862e+117
-6.4111311e+117
-6.3885118e+117
-6.3877162e+117
-6.4103447e+117
-6.4095677e+117
-6.3759753e+117
-6.3608245e+117
-6.361695e+117
-6.3768404e+117
-6.3625614e+117
-6.3776755e+117
-6.3784107e+117
-6.3632775e+117
-6.3925102e+117
-6.4144748e+117
-6.415198e+117
-6.3932098e+117
-6.390864e+117
-6.4127374e+117
-6.4136693e+117
-6.3916921e+117
-6.3226716e+117
-6.3392479e+117
-6.3395127e+117
-6.3227109e+117
-6.3226235e+117
-6.3227114e+117
-6.3391018e+117
-6.3388858e+117
-6.3638997e+117
-6.3789948e+117
-6.3794864e+117
-6.3643468e+117
-6.3646469e+117
-6.3798097e+117
-6.3801008e+117
-6.3648582e+117
-6.3950902e+117
-6.3947502e+117
-6.4169168e+117
-6.4173503e+117
-6.3943375e+117
-6.3938218e+117
-6.4158446e+117
-6.4163854e+117
-6.3652227e+117
-6.3804777e+117
-6.3810886e+117
-6.3657026e+117
-6.3663284e+117
-6.3660207e+117
-6.3815386e+117
-6.3819328e+117
-6.3971172e+117
-6.3966882e+117
-6.4191937e+117
-6.4197019e+117
-6.3961316e+117
-6.3955347e+117
-6.4179146e+117
-6.41852e+117
-6.0982705e+117
-6.0988742e+117
-6.1255194e+117
-6.1545682e+117
-6.154229e+117
-6.1250864e+117
-6.1266277e+117
-6.1256415e+117
-6.154564e+117
-6.1556299e+117
-6.09959e+117
-6.0987196e+117
-6.1792128e+117
-6.1790334e+117
-6.1935222e+117
-6.1935448e+117
-6.2093156e+117
-6.2093199e+117
-6.2269229e+117
-6.2269349e+117
-6.2092213e+117
-6.209307e+117
-6.22682e+117
-6.2268563e+117
-6.178906e+117
-6.1934436e+117
-6.193299e+117
-6.1788137e+117
-6.1796377e+117
-6.1942828e+117
-6.1949048e+117
-6.1803879e+117
-6.1788297e+117
-6.1933523e+117
-6.1937291e+117
-6.1790674e+117
-6.2096375e+117
-6.2093026e+117
-6.2274481e+117
-6.2270641e+117
-6.210194e+117
-6.2107696e+117
-6.2285642e+117
-6.228017e+117
-6.2587323e+117
-6.242963e+117
-6.2435837e+117
-6.2592899e+117
-6.2418975e+117
-6.2574109e+117
-6.2580828e+117
-6.2423653e+117
-6.2732064e+117
-6.2738408e+117
-6.2906246e+117
-6.2899799e+117
-6.2745603e+117
-6.2921963e+117
-6.2914109e+117
-6.2752723e+117
-6.2571592e+117
-6.2570702e+117
-6.2416642e+117
-6.241632e+117
-6.2570668e+117
-6.2415224e+117
-6.2415284e+117
-6.257002e+117
-6.2894432e+117
-6.2727427e+117
-6.2895766e+117
-6.2728126e+117
-6.2727571e+117
-6.2893779e+117
-6.2894292e+117
-6.2727789e+117
-6.3302694e+117
-6.3304859e+117
-6.3482604e+117
-6.3480157e+117
-6.3635001e+117
-6.3638497e+117
-6.3306942e+117
-6.3111753e+117
-6.3113619e+117
-6.3309282e+117
-6.3108751e+117
-6.3110286e+117
-6.3485344e+117
-6.3489164e+117
-6.364729e+117
-6.3642315e+117
-6.3117173e+117
-6.3313656e+117
-6.3320119e+117
-6.3122867e+117
-6.3138848e+117
-6.3335559e+117
-6.3327654e+117
-6.3130362e+117
-6.3516413e+117
-6.3508526e+117
-6.3667883e+117
-6.3676278e+117
-6.3501302e+117
-6.3494523e+117
-6.3653206e+117
-6.3660389e+117
-6.1274906e+117
-6.1285087e+117
-6.1566866e+117
-6.1579783e+117
-6.1603459e+117
-6.1636353e+117
-6.1849983e+117
-6.2016368e+117
-6.1997946e+117
-6.1868067e+117
-6.1899967e+117
-6.1885079e+117
-6.203154e+117
-6.2044721e+117
-6.2205138e+117
-6.2190381e+117
-6.2370388e+117
-6.2385409e+117
-6.2159702e+117
-6.233967e+117
-6.2355465e+117
-6.2176039e+117
-6.1809689e+117
-6.1815803e+117
-6.1962731e+117
-6.1954565e+117
-6.2114242e+117
-6.2123123e+117
-6.2302363e+117
-6.229298e+117
-6.2133822e+117
-6.2146757e+117
-6.2325761e+117
-6.2312969e+117
-6.1823697e+117
-6.1972082e+117
-6.1984341e+117
-6.1836073e+117
-6.2520738e+117
-6.2679496e+117
-6.2693556e+117
-6.253585e+117
-6.2646415e+117
-6.2489559e+117
-6.2505468e+117
-6.2663474e+117
-6.2822382e+117
-6.280572e+117
-6.2974572e+117
-6.299158e+117
-6.2838676e+117
-6.300843e+117
-6.3024131e+117
-6.2853983e+117
-6.2443305e+117
-6.2600424e+117
-6.2610776e+117
-6.2452586e+117
-6.2760224e+117
-6.2769695e+117
-6.2938554e+117
-6.2929479e+117
-6.2792498e+117
-6.2779907e+117
-6.2961309e+117
-6.294888e+117
-6.2462573e+117
-6.2620668e+117
-6.2632344e+117
-6.2475135e+117
-6.3147144e+117
-6.3344354e+117
-6.3354049e+117
-6.3156306e+117
-6.3167191e+117
-6.3364452e+117
-6.3376967e+117
-6.3179972e+117
-6.3559268e+117
-6.354654e+117
-6.3719047e+117
-6.3706833e+117
-6.3535873e+117
-6.3525789e+117
-6.3695673e+117
-6.368552e+117
-6.3209225e+117
-6.3193313e+117
-6.3390336e+117
-6.3406733e+117
-6.3589311e+117
-6.3573262e+117
-6.3733456e+117
-6.3749722e+117
-6.3423807e+117
-6.3439512e+117
-6.3620527e+117
-6.3605429e+117
-6.3764597e+117
-6.3779048e+117
-6.3226093e+117
-6.3242637e+117
-6.3850956e+117
-6.3856968e+117
-6.4064085e+117
-6.4070616e+117
-6.4173525e+117
-6.4180202e+117
-6.3841794e+117
-6.3845891e+117
-6.4052293e+117
-6.4058043e+117
-6.4160736e+117
-6.4166929e+117
-6.3863686e+117
-6.3870945e+117
-6.4187721e+117
-6.4077816e+117
-6.408578e+117
-6.4195747e+117
-6.3878785e+117
-6.3887815e+117
-6.4093863e+117
-6.4103005e+117
-6.4213286e+117
-6.4204251e+117
-6.3945815e+117
-6.3960811e+117
-6.4161532e+117
-6.4176174e+117
-6.427235e+117
-6.4286075e+117
-6.3990015e+117
-6.3975009e+117
-6.4189574e+117
-6.420413e+117
-6.4299854e+117
-6.4313743e+117
-6.3907918e+117
-6.3897459e+117
-6.4124448e+117
-6.411309e+117
-6.4223803e+117
-6.4235193e+117
-6.3931945e+117
-6.3919252e+117
-6.4135852e+117
-6.414836e+117
-6.4247058e+117
-6.4259109e+117
-6.4252316e+117
-6.4331821e+117
-6.4259087e+117
-6.4338858e+117
-6.4265795e+117
-6.434616e+117
-6.427269e+117
-6.4353202e+117
-6.4280247e+117
-6.4360962e+117
-6.4288471e+117
-6.4369319e+117
-6.4297236e+117
-6.4378154e+117
-6.4306254e+117
-6.4387308e+117
-6.4388339e+117
-6.4407511e+117
-6.4377382e+117
-6.4384235e+117
-6.4414206e+117
-6.4393806e+117
-6.4402106e+117
-6.442259e+117
-6.4391659e+117
-6.4398839e+117
-6.4428672e+117
-6.4407392e+117
-6.3875502e+117
-6.4237054e+117
-6.4243472e+117
-6.3876481e+117
-6.425406e+117
-6.424963e+117
-6.3883122e+117
-6.3885882e+117
-6.4417579e+117
-6.44381e+117
-6.4406861e+117
-6.4414818e+117
-6.4444866e+117
-6.4423078e+117
-6.4433125e+117
-6.4463092e+117
-6.4423768e+117
-6.4454276e+117
-6.4433303e+117
-6.4442065e+117
-6.4285486e+117
-6.4276192e+117
-6.3905345e+117
-6.3913107e+117
-6.3888786e+117
-6.4260194e+117
-6.3892931e+117
-6.4267582e+117
-6.4317062e+117
-6.4398108e+117
-6.4328811e+117
-6.4409808e+117
-6.4340644e+117
-6.4421734e+117
-6.435236e+117
-6.4433424e+117
-6.4365551e+117
-6.44462e+117
-6.4378883e+117
-6.44594e+117
-6.4392686e+117
-6.4472663e+117
-6.4406041e+117
-6.4485824e+117
-6.4454029e+117
-6.447508e+117
-6.4444135e+117
-6.4455255e+117
-6.4485157e+117
-6.4463106e+117
-6.4478831e+117
-6.4508273e+117
-6.44671e+117
-6.4497654e+117
-6.4486253e+117
-6.4476043e+117
-6.431391e+117
-6.3934041e+117
-6.3942369e+117
-6.4324127e+117
-6.3919771e+117
-6.4293552e+117
-6.4303696e+117
-6.3924798e+117
-6.433679e+117
-6.4350836e+117
-6.3969284e+117
-6.3957025e+117
-6.3980515e+117
-6.4361738e+117
-6.4374882e+117
-6.3992016e+117
-6.4504495e+117
-6.4534309e+117
-6.4491678e+117
-6.4521919e+117
-6.4513028e+117
-6.4500319e+117
-6.4530808e+117
-6.4559609e+117
-6.4517764e+117
-6.4547555e+117
-6.4537698e+117
-6.4526302e+117
-6.418769e+117
-6.4396659e+117
-6.4200174e+117
-6.4409126e+117
-6.450393e+117
-6.451584e+117
-6.4211402e+117
-6.4221446e+117
-6.4419811e+117
-6.4429725e+117
-6.4526673e+117
-6.453646e+117
-6.4162113e+117
-6.4175226e+117
-6.4371161e+117
-6.4384501e+117
-6.4478701e+117
-6.4491393e+117
-6.4149277e+117
-6.4135165e+117
-6.4343711e+117
-6.4358223e+117
-6.4465146e+117
-6.445111e+117
-6.4005535e+117
-6.4219302e+117
-6.4021761e+117
-6.4235814e+117
-6.4328983e+117
-6.4344703e+117
-6.403785e+117
-6.4251334e+117
-6.4054405e+117
-6.4267237e+117
-6.4360434e+117
-6.4375825e+117
-6.4421205e+117
-6.4500391e+117
-6.4436572e+117
-6.4515591e+117
-6.4452075e+117
-6.4530917e+117
-6.4467042e+117
-6.454575e+117
-6.4070935e+117
-6.4282845e+117
-6.4088333e+117
-6.429971e+117
-6.4391677e+117
-6.4407553e+117
-6.4120763e+117
-6.4329881e+117
-6.4104766e+117
-6.4314875e+117
-6.4422732e+117
-6.4436909e+117
-6.4482746e+117
-6.4561053e+117
-6.4498165e+117
-6.457628e+117
-6.451317e+117
-6.4590793e+117
-6.4526882e+117
-6.4604459e+117
-6.4559969e+117
-6.4589008e+117
-6.4545258e+117
-6.4574473e+117
-6.4552548e+117
-6.4566656e+117
-6.400301e+117
-6.4386327e+117
-6.4401499e+117
-6.4015004e+117
-6.4589897e+117
-6.4618292e+117
-6.4575092e+117
-6.4604244e+117
-6.4581592e+117
-6.4595347e+117
-6.4427347e+117
-6.4414554e+117
-6.4028041e+117
-6.4039629e+117
-6.4619894e+117
-6.4648616e+117
-6.4605161e+117
-6.4634147e+117
-6.4611506e+117
-6.4625967e+117
-6.4648212e+117
-6.4676767e+117
-6.4634384e+117
-6.4663003e+117
-6.4640351e+117
-6.4654305e+117
-6.4051219e+117
-6.4440473e+117
-6.4456051e+117
-6.4067811e+117
-6.448386e+117
-6.4470453e+117
-6.408411e+117
-6.4095294e+117
-6.45687e+117
-6.4646084e+117
-6.4581105e+117
-6.4658604e+117
-6.454105e+117
-6.4618445e+117
-6.4555116e+117
-6.4632552e+117
-6.4593822e+117
-6.4671031e+117
-6.4605649e+117
-6.4682883e+117
-6.4616434e+117
-6.4693662e+117
-6.4626337e+117
-6.4703616e+117
-6.466812e+117
-6.4690984e+117
-6.4662382e+117
-6.4675993e+117
-6.4704552e+117
-6.4681651e+117
-6.4107447e+117
-6.4496599e+117
-6.4509852e+117
-6.4117604e+117
-6.4130246e+117
-6.4522276e+117
-6.4535169e+117
-6.4143799e+117
-6.4689321e+117
-6.4717811e+117
-6.4702013e+117
-6.4730304e+117
-6.4707544e+117
-6.4694964e+117
-6.4155424e+117
-6.4547047e+117
-6.4560851e+117
-6.4168493e+117
-6.4181089e+117
-6.4571257e+117
-6.4583934e+117
-6.4189118e+117
-6.4726258e+117
-6.4755772e+117
-6.4714587e+117
-6.474336e+117
-6.4733862e+117
-6.4720885e+117
-6.4747507e+117
-6.4777372e+117
-6.473737e+117
-6.4766806e+117
-6.4756031e+117
-6.474482e+117
-6.4266877e+117
-6.4258875e+117
-6.4476384e+117
-6.4375796e+117
-6.4484502e+117
-6.4383915e+117
-6.4556449e+117
-6.4564934e+117
-6.4242923e+117
-6.4250893e+117
-6.4458921e+117
-6.4359397e+117
-6.4467694e+117
-6.4367617e+117
-6.4538431e+117
-6.4547571e+117
-6.4275679e+117
-6.4284719e+117
-6.4493638e+117
-6.4574056e+117
-6.4392846e+117
-6.4502878e+117
-6.4402039e+117
-6.4583277e+117
-6.4293219e+117
-6.4511614e+117
-6.4410766e+117
-6.4300597e+117
-6.4519058e+117
-6.441811e+117
-6.4592098e+117
-6.4599977e+117
-6.4319393e+117
-6.4324594e+117
-6.4546711e+117
-6.4443941e+117
-6.4540837e+117
-6.4438361e+117
-6.4622561e+117
-6.462891e+117
-6.4307591e+117
-6.4526913e+117
-6.4425588e+117
-6.4313588e+117
-6.4533953e+117
-6.4431992e+117
-6.4615462e+117
-6.4608031e+117
-6.4330528e+117
-6.4336882e+117
-6.4553489e+117
-6.4450493e+117
-6.4560207e+117
-6.4456963e+117
-6.4635761e+117
-6.4642603e+117
-6.4343759e+117
-6.4349349e+117
-6.4567101e+117
-6.4464003e+117
-6.4572698e+117
-6.4469621e+117
-6.4649414e+117
-6.4655257e+117
-6.4621046e+117
-6.4702884e+117
-6.4630414e+117
-6.4712581e+117
-6.4639415e+117
-6.4722074e+117
-6.4648099e+117
-6.4730873e+117
-6.465728e+117
-6.4740235e+117
-6.4666377e+117
-6.474953e+117
-6.4675593e+117
-6.475876e+117
-6.4683728e+117
-6.476731e+117
-6.4763165e+117
-6.4790169e+117
-6.4753685e+117
-6.4780344e+117
-6.4781804e+117
-6.4808453e+117
-6.477277e+117
-6.4799937e+117
-6.4810088e+117
-6.4837643e+117
-6.48466e+117
-6.4819061e+117
-6.4800471e+117
-6.4827766e+117
-6.4791347e+117
-6.4818319e+117
-6.4720928e+117
-6.4805749e+117
-6.4727648e+117
-6.4812656e+117
-6.4734709e+117
-6.4819674e+117
-6.4740628e+117
-6.4825868e+117
-6.4836201e+117
-6.4784829e+117
-6.4862823e+117
-6.4828231e+117
-6.4776672e+117
-6.4854739e+117
-6.4850815e+117
-6.479908e+117
-6.4877874e+117
-6.4844012e+117
-6.4792504e+117
-6.4870917e+117
-6.4692396e+117
-6.4700038e+117
-6.4707348e+117
-6.4713873e+117
-6.4864836e+117
-6.4893715e+117
-6.4857954e+117
-6.4885835e+117
-6.4878855e+117
-6.4908198e+117
-6.4872229e+117
-6.4901375e+117
-6.4365247e+117
-6.4361282e+117
-6.4587917e+117
-6.4483065e+117
-6.4592186e+117
-6.4487164e+117
-6.4671483e+117
-6.4676168e+117
-6.435383e+117
-6.4357221e+117
-6.4578303e+117
-6.4474671e+117
-6.4582946e+117
-6.4478582e+117
-6.4661103e+117
-6.4666265e+117
-6.4369732e+117
-6.4373852e+117
-6.459726e+117
-6.4491934e+117
-6.4602237e+117
-6.4496489e+117
-6.4681412e+117
-6.4686683e+117
-6.4382472e+117
-6.4378411e+117
-6.4607317e+117
-6.4501495e+117
-6.4611464e+117
-6.4505603e+117
-6.4691926e+117
-6.4696395e+117
-6.4386118e+117
-6.4388542e+117
-6.4616068e+117
-6.4509826e+117
-6.461966e+117
-6.4512685e+117
-6.470123e+117
-6.4705305e+117
-6.4393417e+117
-6.4391194e+117
-6.4623146e+117
-6.451572e+117
-6.4625728e+117
-6.4518151e+117
-6.4709105e+117
-6.4712057e+117
-6.4396421e+117
-6.4399673e+117
-6.4629078e+117
-6.452142e+117
-6.4632496e+117
-6.452465e+117
-6.4718933e+117
-6.4715434e+117
-6.4406803e+117
-6.4403387e+117
-6.4636082e+117
-6.4528434e+117
-6.4639231e+117
-6.4531693e+117
-6.472572e+117
-6.4722438e+117
-6.4815383e+117
-6.4905798e+117
-6.4812088e+117
-6.4902467e+117
-6.4805078e+117
-6.4895334e+117
-6.4808436e+117
-6.4898835e+117
-6.4939899e+117
-6.4884587e+117
-6.4972565e+117
-6.4934471e+117
-6.4879298e+117
-6.4966493e+117
-6.4948166e+117
-6.4892321e+117
-6.4981156e+117
-6.4944692e+117
-6.4889175e+117
-6.4977262e+117
-6.4790013e+117
-6.4794458e+117
-6.479861e+117
-6.4801649e+117
-6.4951542e+117
-6.4985131e+117
-6.4955103e+117
-6.4989893e+117
-6.4994326e+117
-6.4959243e+117
-6.4962745e+117
-6.4997971e+117
-6.4746975e+117
-6.4832562e+117
-6.4752436e+117
-6.4838514e+117
-6.4757852e+117
-6.484432e+117
-6.4762738e+117
-6.4849577e+117
-6.4768306e+117
-6.4855436e+117
-6.4773712e+117
-6.4861267e+117
-6.4779444e+117
-6.4867142e+117
-6.4784213e+117
-6.4872592e+117
-6.4915326e+117
-6.488586e+117
-6.4891575e+117
-6.4921016e+117
-6.4903085e+117
-6.4932985e+117
-6.4897382e+117
-6.4926645e+117
-6.4915025e+117
-6.4945719e+117
-6.4909143e+117
-6.493918e+117
-6.4927451e+117
-6.4959078e+117
-6.492134e+117
-6.4952405e+117
-6.4416832e+117
-6.4413011e+117
-6.4646816e+117
-6.4528645e+117
-6.4650545e+117
-6.4532586e+117
-6.4733421e+117
-6.4736984e+117
-6.4408948e+117
-6.4405566e+117
-6.4638756e+117
-6.452118e+117
-6.4642573e+117
-6.4524526e+117
-6.4725458e+117
-6.4729328e+117
-6.4430605e+117
-6.4433767e+117
-6.466449e+117
-6.4548018e+117
-6.4661996e+117
-6.4545279e+117
-6.4747726e+117
-6.4750525e+117
-6.4655575e+117
-6.4740567e+117
-6.4538152e+117
-6.4659149e+117
-6.4541958e+117
-6.4426466e+117
-6.442201e+117
-6.4744011e+117
-6.4442929e+117
-6.444617e+117
-6.4674096e+117
-6.4557191e+117
-6.467707e+117
-6.456051e+117
-6.4762889e+117
-6.4759949e+117
-6.4436905e+117
-6.4439666e+117
-6.4670644e+117
-6.4553742e+117
-6.4667638e+117
-6.4550995e+117
-6.4753658e+117
-6.4756675e+117
-6.4449942e+117
-6.4454201e+117
-6.4684905e+117
-6.4568285e+117
-6.4680819e+117
-6.4564232e+117
-6.4770533e+117
-6.4766534e+117
-6.4465289e+117
-6.4459617e+117
-6.4689742e+117
-6.4573721e+117
-6.4775164e+117
-6.4694282e+117
-6.4579113e+117
-6.4779418e+117
-6.4811732e+117
-6.4903594e+117
-6.4815572e+117
-6.4907555e+117
-6.481944e+117
-6.4911418e+117
-6.4822649e+117
-6.4914205e+117
-6.482557e+117
-6.4916982e+117
-6.4828802e+117
-6.4920087e+117
-6.4835889e+117
-6.4926772e+117
-6.4832972e+117
-6.4923873e+117
-6.4863674e+117
-6.4953044e+117
-6.4859798e+117
-6.4949565e+117
-6.4851476e+117
-6.4941808e+117
-6.4855194e+117
-6.4945462e+117
-6.4839086e+117
-6.4930118e+117
-6.4841982e+117
-6.4933014e+117
-6.484504e+117
-6.4935916e+117
-6.4847746e+117
-6.4938326e+117
-6.3623766e+117
-6.3623891e+117
-6.3622814e+117
-6.3618866e+117
-6.3601796e+117
-6.3595427e+117
-6.3613719e+117
-6.360838e+117
-6.3561276e+117
-6.3569351e+117
-6.3586936e+117
-6.3577713e+117
-6.3549955e+117
-6.3544041e+117
-6.3554832e+117
-6.3550675e+117
-6.3706382e+117
-6.3381545e+117
-6.3370545e+117
-6.3694318e+117
-6.3729805e+117
-6.3403329e+117
-6.3392113e+117
-6.3718014e+117
-6.3752326e+117
-6.3424244e+117
-6.3413645e+117
-6.3740614e+117
-6.3770967e+117
-6.3443465e+117
-6.3434156e+117
-6.3762341e+117
-6.3656683e+117
-6.3333253e+117
-6.3319666e+117
-6.3641726e+117
-6.3682617e+117
-6.3359043e+117
-6.3346374e+117
-6.3670332e+117
-6.3606506e+117
-6.3287193e+117
-6.3277311e+117
-6.3595224e+117
-6.329666e+117
-6.3617139e+117
-6.3628468e+117
-6.330741e+117
-6.3448964e+117
-6.3444014e+117
-6.3453289e+117
-6.3458195e+117
-6.3470852e+117
-6.3463639e+117
-6.3485806e+117
-6.3478808e+117
-6.3495512e+117
-6.3491615e+117
-6.3508177e+117
-6.3501505e+117
-6.3522469e+117
-6.3515241e+117
-6.3536761e+117
-6.3529357e+117
-6.3482637e+117
-6.3175438e+117
-6.3176526e+117
-6.3481615e+117
-6.3176157e+117
-6.3484944e+117
-6.3486956e+117
-6.3177525e+117
-6.3180531e+117
-6.3490675e+117
-6.3496535e+117
-6.318554e+117
-6.3510707e+117
-6.3198993e+117
-6.3191908e+117
-6.3503779e+117
-6.3525386e+117
-6.3212154e+117
-6.320602e+117
-6.3518482e+117
-6.3539971e+117
-6.3224949e+117
-6.3216481e+117
-6.35315e+117
-6.3234297e+117
-6.3550843e+117
-6.3562639e+117
-6.3244717e+117
-6.3255047e+117
-6.3573302e+117
-6.3583987e+117
-6.3266228e+117
-5.8587863e+117
-5.8715859e+117
-5.8712618e+117
-5.8584631e+117
-5.8710911e+117
-5.8711231e+117
-5.8582178e+117
-5.858219e+117
-5.8310197e+117
-5.8228212e+117
-5.82256e+117
-5.8306974e+117
-5.8145356e+117
-5.8062854e+117
-5.8062244e+117
-5.8143448e+117
-5.8304242e+117
-5.8222658e+117
-5.8220466e+117
-5.8302066e+117
-5.8057048e+117
-5.8060591e+117
-5.8140993e+117
-5.8138355e+117
-5.8583376e+117
-5.8713081e+117
-5.8716056e+117
-5.858557e+117
-5.8718876e+117
-5.8721164e+117
-5.8587921e+117
-5.8590438e+117
-5.8135173e+117
-5.8051955e+117
-5.8046238e+117
-5.8130686e+117
-5.8300481e+117
-5.8218097e+117
-5.8215225e+117
-5.8299199e+117
-5.7980352e+117
-5.7898693e+117
-5.7900966e+117
-5.7981009e+117
-5.7816792e+117
-5.7735567e+117
-5.7740175e+117
-5.7819997e+117
-5.7980081e+117
-5.7900739e+117
-5.7895706e+117
-5.7975418e+117
-5.7737451e+117
-5.7741629e+117
-5.7820359e+117
-5.781594e+117
-5.8607462e+117
-5.8735492e+117
-5.8731623e+117
-5.8603644e+117
-5.8730241e+117
-5.8727738e+117
-5.8601902e+117
-5.8599622e+117
-5.832583e+117
-5.8242154e+117
-5.8236117e+117
-5.8320298e+117
-5.8157189e+117
-5.807231e+117
-5.806536e+117
-5.8150534e+117
-5.8059525e+117
-5.8061498e+117
-5.814675e+117
-5.8145572e+117
-5.8317626e+117
-5.8232644e+117
-5.8231474e+117
-5.8316018e+117
-5.8596812e+117
-5.8725072e+117
-5.8723964e+117
-5.8596256e+117
-5.8723464e+117
-5.8720518e+117
-5.8595935e+117
-5.8593049e+117
-5.8315144e+117
-5.8231646e+117
-5.8231533e+117
-5.8314994e+117
-5.8145904e+117
-5.8059324e+117
-5.8060362e+117
-5.8146198e+117
-5.8063678e+117
-5.806252e+117
-5.8146856e+117
-5.814704e+117
-5.8315127e+117
-5.8231534e+117
-5.8230692e+117
-5.8313439e+117
-5.798734e+117
-5.7903434e+117
-5.7895455e+117
-5.7979753e+117
-5.7819641e+117
-5.7737034e+117
-5.7728865e+117
-5.7811259e+117
-5.772332e+117
-5.7724684e+117
-5.7806628e+117
-5.7805233e+117
-5.7975672e+117
-5.7890766e+117
-5.7888723e+117
-5.7973335e+117
-5.7731383e+117
-5.7727057e+117
-5.7809458e+117
-5.7813795e+117
-5.7724558e+117
-5.7722986e+117
-5.7804244e+117
-5.780632e+117
-5.7972741e+117
-5.7887717e+117
-5.7889914e+117
-5.7974349e+117
-5.7977526e+117
-5.7893319e+117
-5.789686e+117
-5.7979888e+117
-5.7654653e+117
-5.7573785e+117
-5.7566085e+117
-5.7646461e+117
-5.7494025e+117
-5.7416625e+117
-5.7410531e+117
-5.7486774e+117
-5.7403904e+117
-5.7406742e+117
-5.7482377e+117
-5.7480735e+117
-5.7642515e+117
-5.7561645e+117
-5.7560258e+117
-5.7641169e+117
-5.7340037e+117
-5.726486e+117
-5.7260467e+117
-5.7334613e+117
-5.7189651e+117
-5.7113744e+117
-5.7111624e+117
-5.7186002e+117
-5.7110224e+117
-5.7111956e+117
-5.7184032e+117
-5.7181865e+117
-5.7331506e+117
-5.7257451e+117
-5.7254344e+117
-5.7328132e+117
-5.7101485e+117
-5.7103657e+117
-5.7175266e+117
-5.7172671e+117
-5.7323466e+117
-5.7248398e+117
-5.7245386e+117
-5.7320496e+117
-5.7641081e+117
-5.7559703e+117
-5.7559291e+117
-5.7641757e+117
-5.7479039e+117
-5.7400516e+117
-5.7398251e+117
-5.7477587e+117
-5.740271e+117
-5.7398241e+117
-5.7477326e+117
-5.7482263e+117
-5.7643388e+117
-5.7559875e+117
-5.7564563e+117
-5.764786e+117
-5.8511808e+117
-5.8612285e+117
-5.8602221e+117
-5.8502467e+117
-5.8727741e+117
-5.8717841e+117
-5.8594743e+117
-5.8710001e+117
-5.8705465e+117
-5.8590271e+117
-5.8495111e+117
-5.8490734e+117
-5.8232465e+117
-5.8146847e+117
-5.8140917e+117
-5.8225402e+117
-5.8059939e+117
-5.7974501e+117
-5.7971012e+117
-5.8055017e+117
-5.8220369e+117
-5.8136642e+117
-5.8131819e+117
-5.8215089e+117
-5.7964522e+117
-5.7968181e+117
-5.8051401e+117
-5.8047494e+117
-5.8312215e+117
-5.8319863e+117
-5.8410047e+117
-5.8401669e+117
-5.83012e+117
-5.8306296e+117
-5.8394988e+117
-5.8390179e+117
-5.8488996e+117
-5.8588961e+117
-5.8589495e+117
-5.8489166e+117
-5.8704135e+117
-5.8704404e+117
-5.8590799e+117
-5.8705566e+117
-5.8707364e+117
-5.8592431e+117
-5.8490732e+117
-5.8492656e+117
-5.7957603e+117
-5.7957853e+117
-5.8040832e+117
-5.8041762e+117
-5.8043288e+117
-5.7960425e+117
-5.7957948e+117
-5.8040731e+117
-5.8211224e+117
-5.812722e+117
-5.8125378e+117
-5.820984e+117
-5.8210862e+117
-5.8125942e+117
-5.8127323e+117
-5.8212418e+117
-5.829988e+117
-5.8298195e+117
-5.8388619e+117
-5.8390699e+117
-5.8297025e+117
-5.8298008e+117
-5.8387701e+117
-5.8387422e+117
-5.8829515e+117
-5.8937326e+117
-5.892797e+117
-5.8819821e+117
-5.8811975e+117
-5.8920481e+117
-5.8915761e+117
-5.8807321e+117
-5.9153929e+117
-5.904831e+117
-5.9162423e+117
-5.9039218e+117
-5.9142692e+117
-5.9032298e+117
-5.9147379e+117
-5.9027381e+117
-5.8806104e+117
-5.8914438e+117
-5.8914232e+117
-5.8806136e+117
-5.8807044e+117
-5.8915084e+117
-5.8916413e+117
-5.8808658e+117
-5.9140538e+117
-5.9026143e+117
-5.9141204e+117
-5.9025546e+117
-5.902747e+117
-5.9026543e+117
-5.9141406e+117
-5.914228e+117
-5.788963e+117
-5.7807223e+117
-5.7805858e+117
-5.7886997e+117
-5.7725211e+117
-5.764521e+117
-5.7646002e+117
-5.7724999e+117
-5.7646365e+117
-5.7646652e+117
-5.7723928e+117
-5.7722424e+117
-5.7884911e+117
-5.78039e+117
-5.7801247e+117
-5.7881624e+117
-5.7877521e+117
-5.7797492e+117
-5.779529e+117
-5.7875078e+117
-5.7641941e+117
-5.7643521e+117
-5.7718826e+117
-5.7716858e+117
-5.7635723e+117
-5.7639873e+117
-5.7715389e+117
-5.7712623e+117
-5.7874764e+117
-5.7794258e+117
-5.7792076e+117
-5.7873483e+117
-5.8514954e+117
-5.8631164e+117
-5.86359e+117
-5.8520083e+117
-5.8731908e+117
-5.8736321e+117
-5.8642587e+117
-5.8742359e+117
-5.8748773e+117
-5.8648798e+117
-5.8526836e+117
-5.8532599e+117
-5.8237785e+117
-5.815463e+117
-5.8160197e+117
-5.8243222e+117
-5.8069569e+117
-5.7984188e+117
-5.7990477e+117
-5.8075435e+117
-5.7999804e+117
-5.7996001e+117
-5.8080443e+117
-5.8084279e+117
-5.8248962e+117
-5.8165234e+117
-5.816894e+117
-5.825294e+117
-5.8338482e+117
-5.8333985e+117
-5.8422395e+117
-5.8427718e+117
-5.8327906e+117
-5.8322419e+117
-5.8410731e+117
-5.8416128e+117
-5.8498959e+117
-5.8616416e+117
-5.8621084e+117
-5.8503338e+117
-5.8719823e+117
-5.8723145e+117
-5.8625565e+117
-5.8726272e+117
-5.8728792e+117
-5.8628312e+117
-5.8508166e+117
-5.8511651e+117
-5.7976534e+117
-5.7969254e+117
-5.8054343e+117
-5.8061764e+117
-5.8044923e+117
-5.7959769e+117
-5.7963089e+117
-5.804865e+117
-5.8215166e+117
-5.8130225e+117
-5.813452e+117
-5.8219707e+117
-5.8225771e+117
-5.8140357e+117
-5.8147368e+117
-5.8231935e+117
-5.8317645e+117
-5.8312416e+117
-5.8402391e+117
-5.8406781e+117
-5.8393449e+117
-5.8302332e+117
-5.8306604e+117
-5.8397383e+117
-5.8815599e+117
-5.8920728e+117
-5.8923078e+117
-5.8818375e+117
-5.8820941e+117
-5.8925465e+117
-5.8927626e+117
-5.8823254e+117
-5.9146254e+117
-5.9030683e+117
-5.914473e+117
-5.9032428e+117
-5.9150149e+117
-5.9034792e+117
-5.9148396e+117
-5.9036583e+117
-5.7641767e+117
-5.763675e+117
-5.7716734e+117
-5.7723159e+117
-5.7711665e+117
-5.7633622e+117
-5.7633296e+117
-5.7712402e+117
-5.7874654e+117
-5.7791933e+117
-5.7794056e+117
-5.7877561e+117
-5.7883688e+117
-5.7799558e+117
-5.7806419e+117
-5.7890806e+117
-5.7657831e+117
-5.765534e+117
-5.7738987e+117
-5.7742875e+117
-5.7651756e+117
-5.7647038e+117
-5.7729013e+117
-5.7734749e+117
-5.7898204e+117
-5.781317e+117
-5.7819358e+117
-5.7904524e+117
-5.7910129e+117
-5.7824523e+117
-5.782865e+117
-5.7914098e+117
-5.8826727e+117
-5.8931215e+117
-5.8935182e+117
-5.8830888e+117
-5.8836419e+117
-5.8940467e+117
-5.8946513e+117
-5.8842697e+117
-5.9157053e+117
-5.9040312e+117
-5.9153637e+117
-5.9043882e+117
-5.9054735e+117
-5.904919e+117
-5.916212e+117
-5.9167446e+117
-5.8538856e+117
-5.8655526e+117
-5.8663203e+117
-5.8546176e+117
-5.8755951e+117
-5.8763431e+117
-5.8671715e+117
-5.8771397e+117
-5.8779853e+117
-5.8680489e+117
-5.8554679e+117
-5.856356e+117
-5.8022316e+117
-5.8014519e+117
-5.8100059e+117
-5.8109074e+117
-5.8087483e+117
-5.8002758e+117
-5.800765e+117
-5.8092649e+117
-5.8256849e+117
-5.8172191e+117
-5.8177915e+117
-5.8262954e+117
-5.8271633e+117
-5.8186115e+117
-5.8195471e+117
-5.8280824e+117
-5.8367541e+117
-5.8358472e+117
-5.8448661e+117
-5.8457747e+117
-5.8349764e+117
-5.8343332e+117
-5.8433246e+117
-5.8440267e+117
-5.8850177e+117
-5.8857452e+117
-5.8960854e+117
-5.8953875e+117
-5.906214e+117
-5.9174578e+117
-5.9181136e+117
-5.9068939e+117
-5.8975381e+117
-5.8864931e+117
-5.896809e+117
-5.8872908e+117
-5.9075766e+117
-5.9187434e+117
-5.9081904e+117
-5.9192796e+117
-5.888163e+117
-5.8889907e+117
-5.8982597e+117
-5.8989441e+117
-5.9093954e+117
-5.9198615e+117
-5.9203234e+117
-5.9088467e+117
-5.8896779e+117
-5.8902282e+117
-5.9000635e+117
-5.8995536e+117
-5.909933e+117
-5.9104148e+117
-5.9208043e+117
-5.9212566e+117
-5.8572978e+117
-5.8689673e+117
-5.8699192e+117
-5.8582751e+117
-5.8788841e+117
-5.8797615e+117
-5.8707285e+117
-5.8805238e+117
-5.8811237e+117
-5.8713503e+117
-5.8591901e+117
-5.8598936e+117
-5.8063052e+117
-5.8051704e+117
-5.8138494e+117
-5.814985e+117
-5.8118633e+117
-5.8031207e+117
-5.804084e+117
-5.8128169e+117
-5.8290024e+117
-5.8204882e+117
-5.821476e+117
-5.8300277e+117
-5.8310994e+117
-5.8225274e+117
-5.823626e+117
-5.8321138e+117
-5.8406596e+117
-5.8397484e+117
-5.8486861e+117
-5.8495033e+117
-5.8387e+117
-5.8376929e+117
-5.8467143e+117
-5.8477209e+117
-5.7917155e+117
-5.7832156e+117
-5.7835642e+117
-5.7921269e+117
-5.7746032e+117
-5.7660025e+117
-5.7661586e+117
-5.7748606e+117
-5.7668604e+117
-5.766382e+117
-5.7751276e+117
-5.7756912e+117
-5.7927225e+117
-5.7839707e+117
-5.7845617e+117
-5.7933964e+117
-5.7707351e+117
-5.7695308e+117
-5.7783826e+117
-5.7796464e+117
-5.7684933e+117
-5.767583e+117
-5.7763904e+117
-5.7773483e+117
-5.7942201e+117
-5.7853064e+117
-5.7862723e+117
-5.7951808e+117
-5.7962815e+117
-5.7873534e+117
-5.7885732e+117
-5.7974434e+117
-5.9934994e+117
-5.9795508e+117
-5.9930486e+117
-5.9800403e+117
-6.0068347e+117
-6.0208924e+117
-6.0211128e+117
-6.0071464e+117
-5.9806332e+117
-5.9939991e+117
-5.980347e+117
-5.9937478e+117
-6.0074447e+117
-6.0214433e+117
-6.0077051e+117
-6.0217208e+117
-5.9312861e+117
-5.9430923e+117
-5.9434797e+117
-5.9317055e+117
-5.9325661e+117
-5.9321463e+117
-5.94388e+117
-5.9442562e+117
-5.9682115e+117
-5.9553098e+117
-5.967912e+117
-5.9556502e+117
-5.9563308e+117
-5.9687894e+117
-5.9560089e+117
-5.9685242e+117
-5.9417118e+117
-5.9291187e+117
-5.9411478e+117
-5.92973e+117
-5.9535642e+117
-5.9663496e+117
-5.966847e+117
-5.9540757e+117
-5.942676e+117
-5.9303119e+117
-5.9422402e+117
-5.9307935e+117
-5.9545449e+117
-5.9672397e+117
-5.9549384e+117
-5.967577e+117
-5.9809394e+117
-5.9942919e+117
-5.9945525e+117
-5.9812036e+117
-6.0220102e+117
-6.0080004e+117
-6.0082301e+117
-6.022205e+117
-5.9814631e+117
-5.9816808e+117
-5.9947615e+117
-5.9949267e+117
-6.022398e+117
-6.008545e+117
-6.0224854e+117
-6.0084214e+117
-5.9271028e+117
-5.9392053e+117
-5.9274233e+117
-5.9395107e+117
-5.9519857e+117
-5.9648235e+117
-5.9516836e+117
-5.964534e+117
-5.9284458e+117
-5.9279142e+117
-5.9399885e+117
-5.9405172e+117
-5.952967e+117
-5.9657764e+117
-5.9524466e+117
-5.9652678e+117
-5.9777947e+117
-5.9913433e+117
-5.9780583e+117
-5.991595e+117
-6.0054517e+117
-6.0195933e+117
-6.005169e+117
-6.0192682e+117
-5.9784868e+117
-5.9920177e+117
-5.978985e+117
-5.9925049e+117
-6.0063509e+117
-6.0204771e+117
-6.0058833e+117
-6.0200355e+117
-5.99022e+117
-5.9774033e+117
-5.9904172e+117
-5.9770649e+117
-6.0174283e+117
-6.0037698e+117
-6.003675e+117
-6.0174298e+117
-5.9901026e+117
-5.9768308e+117
-5.9900957e+117
-5.9767139e+117
-6.017464e+117
-6.003645e+117
-6.0036187e+117
-6.0173937e+117
-5.9279651e+117
-5.9271582e+117
-5.939944e+117
-5.9392077e+117
-5.9521786e+117
-5.951547e+117
-5.9646473e+117
-5.9641509e+117
-5.9265721e+117
-5.9386745e+117
-5.9382832e+117
-5.9261182e+117
-5.9637874e+117
-5.9635439e+117
-5.9510831e+117
-5.9507511e+117
-5.9259729e+117
-5.9381285e+117
-5.9258861e+117
-5.9380544e+117
-5.9505789e+117
-5.9506245e+117
-5.9634412e+117
-5.9634268e+117
-5.9260883e+117
-5.9382743e+117
-5.9259884e+117
-5.9381586e+117
-5.9635473e+117
-5.950688e+117
-5.9508155e+117
-5.9636844e+117
-5.9901175e+117
-5.9766242e+117
-5.9900635e+117
-5.9766353e+117
-6.0176688e+117
-6.0037477e+117
-6.0038931e+117
-6.0179219e+117
-5.9769235e+117
-5.9904606e+117
-5.9767731e+117
-5.9902878e+117
-6.0182178e+117
-6.0041229e+117
-6.0043277e+117
-6.018458e+117
-5.9770818e+117
-5.9772257e+117
-5.9906358e+117
-5.990788e+117
-6.0046637e+117
-6.0188091e+117
-6.0045131e+117
-6.0186605e+117
-5.9774076e+117
-5.9909788e+117
-5.9911959e+117
-5.9776119e+117
-6.0189777e+117
-6.0048288e+117
-6.0189358e+117
-6.0049423e+117
-5.9262789e+117
-5.9264063e+117
-5.9384355e+117
-5.9385491e+117
-5.951075e+117
-5.9639548e+117
-5.9509594e+117
-5.9638281e+117
-5.9266045e+117
-5.9387331e+117
-5.9389109e+117
-5.9267761e+117
-5.964296e+117
-5.9512455e+117
-5.9641224e+117
-5.9514154e+117
-5.7029613e+117
-5.7038119e+117
-5.7110188e+117
-5.7102152e+117
-5.7255627e+117
-5.7182606e+117
-5.7175314e+117
-5.7249518e+117
-5.7247482e+117
-5.7174184e+117
-5.7177374e+117
-5.7250318e+117
-5.7031707e+117
-5.7028527e+117
-5.7100826e+117
-5.7104654e+117
-5.7042066e+117
-5.7035238e+117
-5.710816e+117
-5.7115646e+117
-5.7256673e+117
-5.7181822e+117
-5.7189939e+117
-5.7265027e+117
-5.727302e+117
-5.7198207e+117
-5.7204528e+117
-5.7280464e+117
-5.7049558e+117
-5.7046863e+117
-5.7122406e+117
-5.7127822e+117
-5.7359623e+117
-5.735043e+117
-5.7431824e+117
-5.7441887e+117
-5.7415178e+117
-5.7334392e+117
-5.7342944e+117
-5.74239e+117
-5.7605728e+117
-5.7517581e+117
-5.7528316e+117
-5.7617171e+117
-5.7587057e+117
-5.7499719e+117
-5.7508668e+117
-5.7595941e+117
-5.7327124e+117
-5.7323614e+117
-5.7403827e+117
-5.7407478e+117
-5.7408061e+117
-5.733051e+117
-5.732606e+117
-5.7405447e+117
-5.757538e+117
-5.7488358e+117
-5.7492202e+117
-5.7579601e+117
-5.7573825e+117
-5.7489395e+117
-5.7488585e+117
-5.7574215e+117
-5.7267457e+117
-5.7201702e+117
-5.7205133e+117
-5.7269508e+117
-5.7569018e+117
-5.7497112e+117
-5.7495704e+117
-5.7567388e+117
-5.7425763e+117
-5.7355562e+117
-5.7354453e+117
-5.7424414e+117
-5.7345354e+117
-5.7351674e+117
-5.7420574e+117
-5.7414526e+117
-5.7564789e+117
-5.7492011e+117
-5.7486013e+117
-5.7559571e+117
-5.7556669e+117
-5.7482394e+117
-5.7479437e+117
-5.7554931e+117
-5.7410133e+117
-5.7340421e+117
-5.7336162e+117
-5.740602e+117
-5.7336701e+117
-5.7334716e+117
-5.740523e+117
-5.7407366e+117
-5.7557136e+117
-5.747981e+117
-5.7482522e+117
-5.7560925e+117
-5.7271344e+117
-5.7206612e+117
-5.7207444e+117
-5.7272184e+117
-5.7270032e+117
-5.7204268e+117
-5.7195001e+117
-5.7263472e+117
-5.7335187e+117
-5.7338484e+117
-5.7411501e+117
-5.7410109e+117
-5.7409999e+117
-5.7338497e+117
-5.7339901e+117
-5.7411811e+117
-5.7565272e+117
-5.7485965e+117
-5.7488706e+117
-5.7569033e+117
-5.757149e+117
-5.7489837e+117
-5.748973e+117
-5.7572724e+117
-5.7356447e+117
-5.7353957e+117
-5.7423265e+117
-5.7426104e+117
-5.7418601e+117
-5.734819e+117
-5.73504e+117
-5.7420193e+117
-5.7566379e+117
-5.7490769e+117
-5.7492555e+117
-5.7567812e+117
-5.7569816e+117
-5.7495364e+117
-5.7497607e+117
-5.757082e+117
-5.7551291e+117
-5.7475768e+117
-5.7483754e+117
-5.7558082e+117
-5.7401395e+117
-5.7328961e+117
-5.7337545e+117
-5.741008e+117
-5.7348298e+117
-5.7344151e+117
-5.7415491e+117
-5.7419041e+117
-5.7563847e+117
-5.7488907e+117
-5.7491655e+117
-5.7566648e+117
-5.8267871e+117
-5.8176906e+117
-5.8166156e+117
-5.8256915e+117
-5.8084102e+117
-5.799227e+117
-5.7982226e+117
-5.8073512e+117
-5.7975232e+117
-5.7976964e+117
-5.8067727e+117
-5.806601e+117
-5.8251221e+117
-5.816007e+117
-5.8158086e+117
-5.824887e+117
-5.7900476e+117
-5.7810698e+117
-5.7801689e+117
-5.7890681e+117
-5.772144e+117
-5.7634283e+117
-5.7627796e+117
-5.7713342e+117
-5.7627602e+117
-5.7625773e+117
-5.7709863e+117
-5.7710309e+117
-5.7885996e+117
-5.7797244e+117
-5.7796438e+117
-5.7884533e+117
-5.7645026e+117
-5.7641967e+117
-5.7722536e+117
-5.7725394e+117
-5.7636309e+117
-5.763025e+117
-5.771226e+117
-5.7717316e+117
-5.7885978e+117
-5.7798126e+117
-5.780217e+117
-5.7889062e+117
-5.7892072e+117
-5.7806456e+117
-5.780837e+117
-5.7892497e+117
-5.8249281e+117
-5.8159032e+117
-5.8159405e+117
-5.8248605e+117
-5.8067117e+117
-5.7976318e+117
-5.7978491e+117
-5.8068505e+117
-5.7978866e+117
-5.7980085e+117
-5.8068752e+117
-5.8065827e+117
-5.8246576e+117
-5.8158424e+117
-5.8153967e+117
-5.8240787e+117
-5.9924277e+117
-5.9798531e+117
-5.9796345e+117
-5.9922792e+117
-6.0051493e+117
-6.018218e+117
-6.0052609e+117
-6.0183364e+117
-6.0179581e+117
-6.0050407e+117
-6.0047386e+117
-6.0180123e+117
-5.9790089e+117
-5.9921401e+117
-5.9794014e+117
-5.9917454e+117
-5.9433523e+117
-5.9323581e+117
-5.9438338e+117
-5.9317763e+117
-5.9555472e+117
-5.9551345e+117
-5.9675334e+117
-5.9672013e+117
-5.9425723e+117
-5.9312747e+117
-5.9429057e+117
-5.9308335e+117
-5.9669198e+117
-5.9547784e+117
-5.9544262e+117
-5.9665181e+117
-5.9423157e+117
-5.930502e+117
-5.9300158e+117
-5.94184e+117
-5.9537869e+117
-5.9658525e+117
-5.9541567e+117
-5.9661382e+117
-5.9651488e+117
-5.9534068e+117
-5.9528345e+117
-5.9654395e+117
-5.9287398e+117
-5.9413988e+117
-5.9294797e+117
-5.9406825e+117
-5.9785984e+117
-5.978273e+117
-5.9913686e+117
-5.9910358e+117
-6.0044454e+117
-6.0041612e+117
-6.0177759e+117
-6.0175829e+117
-5.990569e+117
-5.9778746e+117
-5.9907263e+117
-5.9776927e+117
-6.0174622e+117
-6.003946e+117
-6.0038206e+117
-6.0173687e+117
-5.8560086e+117
-5.8664219e+117
-5.865332e+117
-5.8549641e+117
-5.8782786e+117
-5.8771853e+117
-5.864763e+117
-5.8764452e+117
-5.875917e+117
-5.864298e+117
-5.8544012e+117
-5.8539969e+117
-5.8349518e+117
-5.8360022e+117
-5.8454466e+117
-5.8444134e+117
-5.8340861e+117
-5.8343688e+117
-5.8438247e+117
-5.8434967e+117
-5.853615e+117
-5.8638579e+117
-5.8636025e+117
-5.853448e+117
-5.8754909e+117
-5.875106e+117
-5.8632378e+117
-5.8745859e+117
-5.8737881e+117
-5.8624102e+117
-5.8531375e+117
-5.8523295e+117
-5.8338684e+117
-5.8339867e+117
-5.8432329e+117
-5.8430959e+117
-5.8329025e+117
-5.8335908e+117
-5.8427812e+117
-5.842035e+117
-5.8982214e+117
-5.888507e+117
-5.8991741e+117
-5.8874569e+117
-5.9100095e+117
-5.9091653e+117
-5.9210626e+117
-5.9203536e+117
-5.8969053e+117
-5.8866741e+117
-5.8974778e+117
-5.8861143e+117
-5.9197765e+117
-5.9085067e+117
-5.9079237e+117
-5.9192437e+117
-5.8960064e+117
-5.8857101e+117
-5.8965065e+117
-5.8852548e+117
-5.9188847e+117
-5.907556e+117
-5.907023e+117
-5.9183687e+117
-5.8946147e+117
-5.8846647e+117
-5.8954004e+117
-5.8838751e+117
-5.9177995e+117
-5.9064371e+117
-5.9056399e+117
-5.9170244e+117
-6.288644e+117
-6.2606843e+117
-6.2881501e+117
-6.2610688e+117
-6.3174755e+117
-6.317883e+117
-6.2619314e+117
-6.2894611e+117
-6.2614358e+117
-6.2889465e+117
-6.3182898e+117
-6.3188724e+117
-6.1716521e+117
-6.1919066e+117
-6.1923696e+117
-6.1720479e+117
-6.1721403e+117
-6.1721007e+117
-6.1923815e+117
-6.1924257e+117
-6.2372622e+117
-6.2139882e+117
-6.2369836e+117
-6.2143362e+117
-6.2146775e+117
-6.2379242e+117
-6.2145475e+117
-6.2376775e+117
-6.190858e+117
-6.1704199e+117
-6.1904967e+117
-6.170679e+117
-6.2124673e+117
-6.2353778e+117
-6.2356244e+117
-6.2127654e+117
-6.1914351e+117
-6.1709349e+117
-6.1910756e+117
-6.1712517e+117
-6.2130988e+117
-6.2360618e+117
-6.2135056e+117
-6.2365093e+117
-6.2623796e+117
-6.2899716e+117
-6.290429e+117
-6.262737e+117
-6.3195204e+117
-6.3200911e+117
-6.2632201e+117
-6.2635801e+117
-6.2910029e+117
-6.2914914e+117
-6.321404e+117
-6.3207478e+117
-6.1685888e+117
-6.1885817e+117
-6.1690074e+117
-6.1890162e+117
-6.2109229e+117
-6.2337417e+117
-6.2104284e+117
-6.2331717e+117
-6.1695306e+117
-6.1895654e+117
-6.1699991e+117
-6.190044e+117
-6.212011e+117
-6.2349152e+117
-6.2115139e+117
-6.2343848e+117
-6.25828e+117
-6.2855767e+117
-6.2589076e+117
-6.2862469e+117
-6.3154635e+117
-6.3147813e+117
-6.2596001e+117
-6.2601699e+117
-6.286985e+117
-6.2875957e+117
-6.3169242e+117
-6.3162442e+117
-6.1670272e+117
-6.16667e+117
-6.1866208e+117
-6.186971e+117
-6.1674897e+117
-6.1677582e+117
-6.1873736e+117
-6.1876575e+117
-6.2085992e+117
-6.2081836e+117
-6.2308433e+117
-6.231359e+117
-6.2094458e+117
-6.2321459e+117
-6.2091512e+117
-6.2318402e+117
-6.1680146e+117
-6.1879495e+117
-6.188281e+117
-6.1682443e+117
-6.2326215e+117
-6.2097402e+117
-6.2324231e+117
-6.2100145e+117
-6.1657068e+117
-6.1856412e+117
-6.1862788e+117
-6.1662895e+117
-6.2070945e+117
-6.2295586e+117
-6.2301312e+117
-6.2076684e+117
-6.1632362e+117
-6.1829088e+117
-6.1837167e+117
-6.1639216e+117
-6.1644836e+117
-6.1843277e+117
-6.185079e+117
-6.1651545e+117
-6.2040914e+117
-6.2262823e+117
-6.2270499e+117
-6.2048706e+117
-6.2056609e+117
-6.227983e+117
-6.2286983e+117
-6.2063737e+117
-6.2781901e+117
-6.2506602e+117
-6.277252e+117
-6.2515219e+117
-6.3059607e+117
-6.3069417e+117
-6.2800934e+117
-6.2524848e+117
-6.279189e+117
-6.2533018e+117
-6.3079659e+117
-6.3089973e+117
-6.2818888e+117
-6.2542064e+117
-6.2810571e+117
-6.2549115e+117
-6.3100126e+117
-6.3109435e+117
-6.25632e+117
-6.2835009e+117
-6.2557074e+117
-6.2827835e+117
-6.311921e+117
-6.3127844e+117
-6.2568703e+117
-6.2572017e+117
-6.2840704e+117
-6.2844353e+117
-6.313532e+117
-6.3131522e+117
-6.2574826e+117
-6.2847289e+117
-6.2850061e+117
-6.2577215e+117
-6.3138613e+117
-6.3142397e+117
-6.0337137e+117
-6.0484637e+117
-6.0340638e+117
-6.0488228e+117
-6.0638614e+117
-6.0792853e+117
-6.0635063e+117
-6.0789463e+117
-6.0345102e+117
-6.049268e+117
-6.0349251e+117
-6.0496639e+117
-6.0646938e+117
-6.0801162e+117
-6.0643046e+117
-6.0797237e+117
-6.0955711e+117
-6.112968e+117
-6.0958826e+117
-6.1132691e+117
-6.1310107e+117
-6.149394e+117
-6.1306638e+117
-6.1489916e+117
-6.0963157e+117
-6.1137081e+117
-6.0967198e+117
-6.1141268e+117
-6.1319043e+117
-6.1503401e+117
-6.1314792e+117
-6.1498964e+117
-6.03194e+117
-6.0465147e+117
-6.0468919e+117
-6.0322688e+117
-6.0328864e+117
-6.0326138e+117
-6.047273e+117
-6.0475737e+117
-6.0614016e+117
-6.0767028e+117
-6.0771484e+117
-6.0618107e+117
-6.0625453e+117
-6.0622207e+117
-6.0775752e+117
-6.077921e+117
-6.0314395e+117
-6.0457596e+117
-6.0459116e+117
-6.031525e+117
-6.0315915e+117
-6.046003e+117
-6.0461799e+117
-6.0316316e+117
-6.0603965e+117
-6.0754492e+117
-6.0756934e+117
-6.0605933e+117
-6.0607683e+117
-6.0759585e+117
-6.0762804e+117
-6.0610253e+117
-6.0915676e+117
-6.1084956e+117
-6.1089079e+117
-6.091884e+117
-6.0922231e+117
-6.1093003e+117
-6.1097523e+117
-6.0926039e+117
-6.1258849e+117
-6.1439909e+117
-6.144546e+117
-6.1263649e+117
-6.1268472e+117
-6.1450948e+117
-6.1456463e+117
-6.1273357e+117
-6.0930636e+117
-6.1102291e+117
-6.1107211e+117
-6.093531e+117
-6.0943273e+117
-6.0939686e+117
-6.1111484e+117
-6.111503e+117
-6.1278576e+117
-6.1462088e+117
-6.14672e+117
-6.1283501e+117
-6.1291536e+117
-6.128789e+117
-6.1471663e+117
-6.1475375e+117
-6.0946093e+117
-6.094853e+117
-6.1118835e+117
-6.1121614e+117
-6.1298359e+117
-6.1481863e+117
-6.1295529e+117
-6.1479183e+117
-6.095099e+117
-6.1124581e+117
-6.1127838e+117
-6.0953644e+117
-6.1485798e+117
-6.1301323e+117
-6.1484464e+117
-6.1303379e+117
-6.0331072e+117
-6.0332585e+117
-6.0478176e+117
-6.0479771e+117
-6.0629649e+117
-6.0783284e+117
-6.0627852e+117
-6.0781221e+117
-6.0333683e+117
-6.0480883e+117
-6.0481701e+117
-6.0334231e+117
-6.0786878e+117
-6.0631018e+117
-6.0785092e+117
-6.0632234e+117
-6.1149211e+117
-6.0971197e+117
-6.1145611e+117
-6.097441e+117
-6.1323299e+117
-6.1507442e+117
-6.1509134e+117
-6.1325691e+117
-6.0977752e+117
-6.1151936e+117
-6.0975839e+117
-6.1150275e+117
-6.13281e+117
-6.1512337e+117
-6.1330088e+117
-6.1514988e+117
-6.0502132e+117
-6.035295e+117
-6.0500062e+117
-6.0355026e+117
-6.0650324e+117
-6.0804723e+117
-6.0807237e+117
-6.0652492e+117
-6.0507822e+117
-6.0358095e+117
-6.050503e+117
-6.0360932e+117
-6.0655104e+117
-6.0809416e+117
-6.0657744e+117
-6.0811742e+117
-6.0367362e+117
-6.0367902e+117
-6.0514265e+117
-6.0513972e+117
-6.0363788e+117
-6.0510616e+117
-6.0512574e+117
-6.0365703e+117
-6.0662353e+117
-6.0816134e+117
-6.0660469e+117
-6.0814343e+117
-6.0663664e+117
-6.0817462e+117
-6.0817672e+117
-6.0663861e+117
-6.0980199e+117
-6.1154395e+117
-6.1156322e+117
-6.0981996e+117
-6.0983311e+117
-6.1157659e+117
-6.0983585e+117
-6.1158026e+117
-6.1518321e+117
-6.1521051e+117
-6.1332886e+117
-6.1335042e+117
-6.1336855e+117
-6.1336448e+117
-6.1522387e+117
-6.1522847e+117
-6.1802442e+117
-6.1599828e+117
-6.1792763e+117
-6.1608182e+117
-6.161711e+117
-6.1812052e+117
-6.1821642e+117
-6.162556e+117
-6.2002047e+117
-6.2221784e+117
-6.201223e+117
-6.2232534e+117
-6.2243903e+117
-6.2252545e+117
-6.2022536e+117
-6.2031829e+117
-6.1575401e+117
-6.1763434e+117
-6.1581391e+117
-6.1770486e+117
-6.1976283e+117
-6.2193866e+117
-6.1968566e+117
-6.2185363e+117
-6.1784851e+117
-6.1586708e+117
-6.1777354e+117
-6.1592464e+117
-6.1984511e+117
-6.2202489e+117
-6.2210378e+117
-6.1992313e+117
-6.2424934e+117
-6.2687243e+117
-6.2696641e+117
-6.2433982e+117
-6.2442811e+117
-6.2705461e+117
-6.2451386e+117
-6.2714342e+117
-6.297097e+117
-6.2980145e+117
-6.2998975e+117
-6.2989015e+117
-6.2739312e+117
-6.2463223e+117
-6.2726685e+117
-6.2474957e+117
-6.301103e+117
-6.3023905e+117
-6.2761463e+117
-6.2486515e+117
-6.2750781e+117
-6.249603e+117
-6.3036236e+117
-6.3048177e+117
-6.0892474e+117
-6.0893674e+117
-6.1054143e+117
-6.1056441e+117
-6.1219977e+117
-6.13923e+117
-6.1396738e+117
-6.1223306e+117
-6.1063187e+117
-6.089538e+117
-6.1059429e+117
-6.0897884e+117
-6.1227213e+117
-6.1401258e+117
-6.140525e+117
-6.1230808e+117
-6.0317359e+117
-6.0316061e+117
-6.0454159e+117
-6.0453132e+117
-6.059359e+117
-6.0738387e+117
-6.0594053e+117
-6.0738109e+117
-6.0452218e+117
-6.0313861e+117
-6.0451739e+117
-6.0314232e+117
-6.0593123e+117
-6.0738867e+117
-6.0740045e+117
-6.0593834e+117
-6.0453868e+117
-6.0314119e+117
-6.045334e+117
-6.031339e+117
-6.0313229e+117
-6.0454789e+117
-6.0455885e+117
-6.0313232e+117
-6.0595912e+117
-6.0742946e+117
-6.0597557e+117
-6.0745584e+117
-6.0748671e+117
-6.0751583e+117
-6.0599594e+117
-6.0601636e+117
-6.1070731e+117
-6.0900849e+117
-6.1066459e+117
-6.0904253e+117
-6.0908306e+117
-6.1075814e+117
-6.1080698e+117
-6.0912087e+117
-6.1236183e+117
-6.1412333e+117
-6.1241747e+117
-6.1419322e+117
-6.142698e+117
-6.1433764e+117
-6.1248074e+117
-6.1253706e+117
-5.9950851e+117
-5.9818383e+117
-5.9950442e+117
-5.9818852e+117
-6.0086058e+117
-6.0224887e+117
-6.0223483e+117
-6.0085444e+117
-5.9820737e+117
-5.9951844e+117
-5.9819341e+117
-5.9950696e+117
-6.0085617e+117
-6.0224044e+117
-6.0086799e+117
-6.0225654e+117
-5.9339796e+117
-5.9454382e+117
-5.9457564e+117
-5.934246e+117
-5.9348953e+117
-5.9345454e+117
-5.9461322e+117
-5.9465644e+117
-5.9699923e+117
-5.9572926e+117
-5.9695875e+117
-5.9576493e+117
-5.9585997e+117
-5.971026e+117
-5.9580849e+117
-5.9704567e+117
-5.944833e+117
-5.9329849e+117
-5.9446086e+117
-5.9332346e+117
-5.9566e+117
-5.968987e+117
-5.9690307e+117
-5.956725e+117
-5.9451542e+117
-5.9334397e+117
-5.9449643e+117
-5.9336396e+117
-5.9568572e+117
-5.9691534e+117
-5.9570196e+117
-5.9692991e+117
-5.9823504e+117
-5.9954828e+117
-5.9958739e+117
-5.9827497e+117
-5.9832764e+117
-5.9964754e+117
-5.9838989e+117
-5.9971508e+117
-6.0229519e+117
-6.0234358e+117
-6.0090312e+117
-6.0094618e+117
-6.0108089e+117
-6.0100925e+117
-6.024082e+117
-6.0248169e+117
-5.8922682e+117
-5.8924377e+117
-5.9019944e+117
-5.9021465e+117
-5.9123645e+117
-5.9228657e+117
-5.9230746e+117
-5.9122031e+117
-5.8925351e+117
-5.8925423e+117
-5.9023555e+117
-5.9022663e+117
-5.9125291e+117
-5.9127113e+117
-5.9233022e+117
-5.9235722e+117
-5.9010863e+117
-5.8907555e+117
-5.9006049e+117
-5.8912725e+117
-5.9109474e+117
-5.9217303e+117
-5.92201e+117
-5.9113012e+117
-5.9017545e+117
-5.8917066e+117
-5.9014407e+117
-5.8920373e+117
-5.9116193e+117
-5.9222827e+117
-5.9118799e+117
-5.9224874e+117
-5.8604695e+117
-5.871864e+117
-5.8725024e+117
-5.8611777e+117
-5.8816472e+117
-5.8821857e+117
-5.8731572e+117
-5.8827052e+117
-5.8830731e+117
-5.8735662e+117
-5.8619276e+117
-5.8623971e+117
-5.8330166e+117
-5.8246845e+117
-5.8256337e+117
-5.8338695e+117
-5.8422389e+117
-5.8414258e+117
-5.8501733e+117
-5.8509396e+117
-5.8161329e+117
-5.8074686e+117
-5.8086323e+117
-5.8171825e+117
-5.8105213e+117
-5.8096919e+117
-5.8181147e+117
-5.8189142e+117
-5.834745e+117
-5.8265106e+117
-5.8272485e+117
-5.8354143e+117
-5.843668e+117
-5.843073e+117
-5.8517038e+117
-5.8522471e+117
-5.8625859e+117
-5.873731e+117
-5.8738971e+117
-5.8627549e+117
-5.8832869e+117
-5.8834488e+117
-5.8740049e+117
-5.8835495e+117
-5.8834985e+117
-5.8738452e+117
-5.8628491e+117
-5.8626316e+117
-5.8357665e+117
-5.8277288e+117
-5.8278762e+117
-5.8359212e+117
-5.8194564e+117
-5.8110729e+117
-5.8112843e+117
-5.8196175e+117
-5.8108766e+117
-5.8112236e+117
-5.8195025e+117
-5.8191751e+117
-5.8359017e+117
-5.8277708e+117
-5.8274374e+117
-5.835581e+117
-5.8438427e+117
-5.8441384e+117
-5.8526981e+117
-5.8524622e+117
-5.8441225e+117
-5.8439435e+117
-5.8524735e+117
-5.8526573e+117
-5.776606e+117
-5.7769424e+117
-5.7855198e+117
-5.7852717e+117
-5.7770316e+117
-5.7767399e+117
-5.7852858e+117
-5.785599e+117
-5.8025088e+117
-5.7939064e+117
-5.7942051e+117
-5.8027624e+117
-5.8027298e+117
-5.7941671e+117
-5.7938995e+117
-5.8024109e+117
-5.7760402e+117
-5.774907e+117
-5.783592e+117
-5.7846506e+117
-5.7809943e+117
-5.7721068e+117
-5.7735382e+117
-5.7823657e+117
-5.7986373e+117
-5.7898231e+117
-5.7911549e+117
-5.7999049e+117
-5.8010481e+117
-5.7923423e+117
-5.7933057e+117
-5.8019308e+117
-5.8619648e+117
-5.873483e+117
-5.8736053e+117
-5.8620509e+117
-5.8833494e+117
-5.8834807e+117
-5.8738331e+117
-5.883726e+117
-5.8839664e+117
-5.8739953e+117
-5.8622739e+117
-5.8623973e+117
-5.834632e+117
-5.8264062e+117
-5.8263295e+117
-5.8345952e+117
-5.8179359e+117
-5.809376e+117
-5.8093525e+117
-5.8178646e+117
-5.8094889e+117
-5.8094524e+117
-5.8178292e+117
-5.8178156e+117
-5.8346054e+117
-5.8262659e+117
-5.826195e+117
-5.8345287e+117
-5.8430495e+117
-5.8430705e+117
-5.8518732e+117
-5.8519567e+117
-5.8430115e+117
-5.8429874e+117
-5.8516969e+117
-5.8517561e+117
-5.8622518e+117
-5.8735654e+117
-5.8734905e+117
-5.8621458e+117
-5.8833737e+117
-5.8832953e+117
-5.873574e+117
-5.883309e+117
-5.8833211e+117
-5.8735494e+117
-5.8621866e+117
-5.8621361e+117
-5.8351469e+117
-5.8269855e+117
-5.8266904e+117
-5.8348852e+117
-5.8186804e+117
-5.8103514e+117
-5.8100221e+117
-5.8183496e+117
-5.8095462e+117
-5.8097816e+117
-5.8181424e+117
-5.8180185e+117
-5.8348218e+117
-5.8265372e+117
-5.8264538e+117
-5.8347382e+117
-5.8431224e+117
-5.8432006e+117
-5.851904e+117
-5.8518547e+117
-5.8432251e+117
-5.8434269e+117
-5.8520588e+117
-5.8519092e+117
-5.8925269e+117
-5.8924835e+117
-5.9025892e+117
-5.9025375e+117
-5.9130254e+117
-5.9131896e+117
-5.9239609e+117
-5.9242221e+117
-5.9027437e+117
-5.8924959e+117
-5.9026607e+117
-5.8925394e+117
-5.9244116e+117
-5.9133177e+117
-5.9134108e+117
-5.9245427e+117
-5.801907e+117
-5.7934718e+117
-5.7930749e+117
-5.8015284e+117
-5.7848507e+117
-5.7761506e+117
-5.7757355e+117
-5.7844351e+117
-5.7753532e+117
-5.7754523e+117
-5.7840432e+117
-5.7838556e+117
-5.8012557e+117
-5.7926994e+117
-5.7924062e+117
-5.8009533e+117
-5.7765371e+117
-5.7762146e+117
-5.7842936e+117
-5.7846013e+117
-5.7757295e+117
-5.7753604e+117
-5.7836785e+117
-5.7839208e+117
-5.8007245e+117
-5.7921556e+117
-5.792298e+117
-5.8007607e+117
-5.8009779e+117
-5.7925947e+117
-5.7928061e+117
-5.8010935e+117
-5.9030782e+117
-5.8926514e+117
-5.9029169e+117
-5.8927933e+117
-5.9247997e+117
-5.9136473e+117
-5.9138043e+117
-5.9249757e+117
-5.9034776e+117
-5.8930169e+117
-5.9032829e+117
-5.8932578e+117
-5.9251995e+117
-5.9140317e+117
-5.9141588e+117
-5.9252885e+117
-5.9484998e+117
-5.9363583e+117
-5.9482901e+117
-5.9365592e+117
-5.9605965e+117
-5.9732611e+117
-5.9734709e+117
-5.9608045e+117
-5.9368297e+117
-5.948714e+117
-5.9367539e+117
-5.9486641e+117
-5.9609457e+117
-5.9735883e+117
-5.9609554e+117
-5.9735549e+117
-5.9985191e+117
-5.9845827e+117
-5.9978828e+117
-5.9851724e+117
-6.0255742e+117
-6.0115681e+117
-6.0121799e+117
-6.0261659e+117
-5.986012e+117
-5.9993613e+117
-5.9856537e+117
-5.998983e+117
-6.0267084e+117
-6.0126558e+117
-6.0130716e+117
-6.0271323e+117
-5.9474618e+117
-5.9353314e+117
-5.9470623e+117
-5.9356642e+117
-5.9591688e+117
-5.9596343e+117
-5.9716549e+117
-5.9721848e+117
-5.9480201e+117
-5.9359073e+117
-5.947768e+117
-5.9360995e+117
-5.9726218e+117
-5.9600103e+117
-5.9603091e+117
-5.9729571e+117
-5.9999511e+117
-5.9863288e+117
-5.9997129e+117
-5.986539e+117
-6.027524e+117
-6.0134567e+117
-6.0136931e+117
-6.0277406e+117
-5.9865617e+117
-5.9999071e+117
-5.9866299e+117
-6.0000135e+117
-6.0278239e+117
-6.0137575e+117
-6.0136219e+117
-6.0276662e+117
-5.7084313e+117
-5.7070055e+117
-5.7151083e+117
-5.7166277e+117
-5.7130623e+117
-5.7051146e+117
-5.7058592e+117
-5.7138994e+117
-5.7288712e+117
-5.7209128e+117
-5.7219363e+117
-5.730077e+117
-5.7315364e+117
-5.7232799e+117
-5.7247673e+117
-5.7329881e+117
-5.7413486e+117
-5.7399241e+117
-5.7484616e+117
-5.7498326e+117
-5.7454581e+117
-5.7370432e+117
-5.7384178e+117
-5.7469501e+117
-5.7660572e+117
-5.7572165e+117
-5.7585124e+117
-5.7672697e+117
-5.7631027e+117
-5.7541762e+117
-5.7557079e+117
-5.7645987e+117
-5.711013e+117
-5.7108967e+117
-5.7185314e+117
-5.7184315e+117
-5.7106254e+117
-5.7096727e+117
-5.7177321e+117
-5.7185356e+117
-5.7339981e+117
-5.7258133e+117
-5.7264235e+117
-5.7344503e+117
-5.7342146e+117
-5.7262436e+117
-5.7260089e+117
-5.7338458e+117
-5.7420089e+117
-5.7424331e+117
-5.7508383e+117
-5.7504054e+117
-5.7507131e+117
-5.7422949e+117
-5.7426736e+117
-5.7510545e+117
-5.7680287e+117
-5.7593119e+117
-5.7596392e+117
-5.768323e+117
-5.7682037e+117
-5.7594808e+117
-5.7590511e+117
-5.7678111e+117
-5.7157977e+117
-5.7140669e+117
-5.7214248e+117
-5.7231029e+117
-5.7127379e+117
-5.7117225e+117
-5.7190925e+117
-5.7202055e+117
-5.7341986e+117
-5.7265509e+117
-5.7276409e+117
-5.7352159e+117
-5.736355e+117
-5.7288441e+117
-5.7303206e+117
-5.7375975e+117
-5.7113533e+117
-5.7111549e+117
-5.7183107e+117
-5.718565e+117
-5.7111328e+117
-5.7109403e+117
-5.7182383e+117
-5.7183157e+117
-5.7334727e+117
-5.7257026e+117
-5.725653e+117
-5.7332861e+117
-5.7332223e+117
-5.7255955e+117
-5.7259237e+117
-5.7335284e+117
-5.7414752e+117
-5.7412112e+117
-5.7494767e+117
-5.7496736e+117
-5.7499363e+117
-5.7415757e+117
-5.7413061e+117
-5.749608e+117
-5.7673296e+117
-5.7585499e+117
-5.7581996e+117
-5.7669312e+117
-5.7667205e+117
-5.7580389e+117
-5.7581502e+117
-5.7667333e+117
-5.7669329e+117
-5.758534e+117
-5.7591748e+117
-5.7674248e+117
-5.7501957e+117
-5.742085e+117
-5.7430101e+117
-5.7509882e+117
-5.7450286e+117
-5.7440138e+117
-5.7518375e+117
-5.7526312e+117
-5.7680269e+117
-5.7598861e+117
-5.7604693e+117
-5.7684574e+117
-6.119887e+117
-6.1206199e+117
-6.1367741e+117
-6.137499e+117
-6.1381687e+117
-6.138799e+117
-6.1213309e+117
-6.121688e+117
-6.0890336e+117
-6.1049208e+117
-6.0887521e+117
-6.105163e+117
-6.0882044e+117
-6.087658e+117
-6.1035504e+117
-6.1042327e+117
-6.0302931e+117
-6.0304707e+117
-6.0434131e+117
-6.0436168e+117
-6.0568114e+117
-6.0570735e+117
-6.0706573e+117
-6.0709957e+117
-6.0307235e+117
-6.0439693e+117
-6.0443463e+117
-6.0309915e+117
-6.0715048e+117
-6.0720508e+117
-6.0575191e+117
-6.0579746e+117
-6.101259e+117
-6.0855605e+117
-6.0859755e+117
-6.1017519e+117
-6.1180232e+117
-6.1349368e+117
-6.1174541e+117
-6.1343421e+117
-6.1361065e+117
-6.1186726e+117
-6.1191748e+117
-6.1355323e+117
-6.1023408e+117
-6.0865244e+117
-6.0870834e+117
-6.102852e+117
-6.0312913e+117
-6.0447137e+117
-6.0315434e+117
-6.0449899e+117
-6.0587144e+117
-6.0584027e+117
-6.072517e+117
-6.0729226e+117
-6.0317536e+117
-6.0453799e+117
-6.0316897e+117
-6.0452448e+117
-6.0733682e+117
-6.0590869e+117
-6.0593049e+117
-6.0736473e+117
-6.084071e+117
-6.0997204e+117
-6.0840443e+117
-6.0997583e+117
-6.1159286e+117
-6.1158259e+117
-6.1328451e+117
-6.1326867e+117
-6.0425187e+117
-6.0291385e+117
-6.0422374e+117
-6.0293885e+117
-6.0554631e+117
-6.0692544e+117
-6.0695379e+117
-6.0557771e+117
-6.0431226e+117
-6.0297121e+117
-6.0427977e+117
-6.0300182e+117
-6.0561376e+117
-6.0699226e+117
-6.0703294e+117
-6.0564906e+117
-6.0999757e+117
-6.0841447e+117
-6.0997975e+117
-6.0843661e+117
-6.1327655e+117
-6.1159307e+117
-6.1161076e+117
-6.1329384e+117
-6.1007507e+117
-6.0847587e+117
-6.1003758e+117
-6.0851576e+117
-6.1333333e+117
-6.1165029e+117
-6.1168913e+117
-6.1337437e+117
-6.2351104e+117
-6.2606447e+117
-6.2606594e+117
-6.23502e+117
-6.2347135e+117
-6.234846e+117
-6.2604544e+117
-6.2603433e+117
-6.2881052e+117
-6.2880056e+117
-6.2879296e+117
-6.2879176e+117
-6.1699831e+117
-6.1513215e+117
-6.1699862e+117
-6.1512368e+117
-6.1902727e+117
-6.2116257e+117
-6.2114289e+117
-6.1901755e+117
-6.1693879e+117
-6.1509471e+117
-6.1696308e+117
-6.1507422e+117
-6.189952e+117
-6.2113145e+117
-6.1897405e+117
-6.2111637e+117
-6.1507891e+117
-6.1694269e+117
-6.1696363e+117
-6.1509753e+117
-6.151807e+117
-6.1513584e+117
-6.1700219e+117
-6.1704962e+117
-6.2112643e+117
-6.1898046e+117
-6.190023e+117
-6.211499e+117
-6.1909369e+117
-6.2119443e+117
-6.1904326e+117
-6.2124826e+117
-6.260848e+117
-6.2348432e+117
-6.2605155e+117
-6.2351161e+117
-6.2881513e+117
-6.2885377e+117
-6.2361575e+117
-6.2619699e+117
-6.2355953e+117
-6.2613762e+117
-6.2891329e+117
-6.2898087e+117
-6.236881e+117
-6.2626793e+117
-6.263313e+117
-6.2375915e+117
-6.2904923e+117
-6.2909822e+117
-6.2383041e+117
-6.2386467e+117
-6.2643887e+117
-6.2637594e+117
-6.2913682e+117
-6.2922169e+117
-6.1740624e+117
-6.1547464e+117
-6.173409e+117
-6.1554497e+117
-6.1938846e+117
-6.2154857e+117
-6.2160599e+117
-6.1944742e+117
-6.1755186e+117
-6.1560623e+117
-6.174629e+117
-6.1568781e+117
-6.1950907e+117
-6.2167277e+117
-6.195946e+117
-6.2175281e+117
-6.1524142e+117
-6.1529973e+117
-6.1711277e+117
-6.1717346e+117
-6.1922487e+117
-6.2138924e+117
-6.1916036e+117
-6.2131882e+117
-6.2146537e+117
-6.1929023e+117
-6.1933529e+117
-6.2149788e+117
-6.1723136e+117
-6.1535315e+117
-6.154111e+117
-6.1728004e+117
-6.2659232e+117
-6.2392353e+117
-6.2651277e+117
-6.2398767e+117
-6.2930935e+117
-6.2939914e+117
-6.2414543e+117
-6.2676563e+117
-6.2406071e+117
-6.2667367e+117
-6.2949388e+117
-6.2959945e+117
-5.792334e+117
-5.7830775e+117
-5.7822673e+117
-5.7913439e+117
-5.8005766e+117
-5.801688e+117
-5.8110805e+117
-5.8098204e+117
-5.8297849e+117
-5.8205267e+117
-5.8191408e+117
-5.8282936e+117
-5.9573217e+117
-5.968555e+117
-5.9568101e+117
-5.9681059e+117
-6.0160415e+117
-6.0037331e+117
-6.0032606e+117
-6.0164045e+117
-5.9797766e+117
-5.9801884e+117
-5.9917792e+117
-5.9921606e+117
-6.0167834e+117
-6.0044969e+117
-6.0171114e+117
-6.0041475e+117
-5.9804877e+117
-5.9924616e+117
-5.9926224e+117
-5.980583e+117
-5.9805067e+117
-5.9805829e+117
-5.9926489e+117
-5.9926395e+117
-6.0174969e+117
-6.0047773e+117
-6.0173792e+117
-6.0049098e+117
-6.005102e+117
-6.0178817e+117
-6.0050356e+117
-6.0177098e+117
-5.9347533e+117
-5.9456939e+117
-5.9452839e+117
-5.9341697e+117
-5.9329076e+117
-5.9335216e+117
-5.9447809e+117
-5.9442889e+117
-5.9683206e+117
-5.9569244e+117
-5.9684899e+117
-5.9566277e+117
-5.9559134e+117
-5.9678053e+117
-5.9562931e+117
-5.9680762e+117
-5.9466311e+117
-5.9359742e+117
-5.9466539e+117
-5.9359864e+117
-5.9575912e+117
-5.9688308e+117
-5.9688333e+117
-5.9575385e+117
-5.9460731e+117
-5.9356864e+117
-5.946457e+117
-5.9351793e+117
-5.9574663e+117
-5.9688158e+117
-5.9571928e+117
-5.9686476e+117
-5.9804175e+117
-5.9926447e+117
-5.9925919e+117
-5.9803145e+117
-5.9801934e+117
-5.9925902e+117
-5.9800244e+117
-5.9925142e+117
-6.0182451e+117
-6.0052178e+117
-6.018094e+117
-6.0052598e+117
-6.0053157e+117
-6.0053317e+117
-6.0183581e+117
-6.0183836e+117
-5.8929154e+117
-5.8919672e+117
-5.9030806e+117
-5.9021592e+117
-5.912566e+117
-5.9239694e+117
-5.9232292e+117
-5.9134263e+117
-5.8908823e+117
-5.8896925e+117
-5.9001223e+117
-5.901152e+117
-5.9116561e+117
-5.9107785e+117
-5.9224428e+117
-5.9217054e+117
-5.9149822e+117
-5.9253803e+117
-5.9254108e+117
-5.9149793e+117
-5.9038079e+117
-5.8942401e+117
-5.9043264e+117
-5.8937071e+117
-5.9145764e+117
-5.9250259e+117
-5.9139932e+117
-5.9244301e+117
-5.870605e+117
-5.8603256e+117
-5.8830233e+117
-5.8820542e+117
-5.8694968e+117
-5.8809356e+117
-5.8796283e+117
-5.8680151e+117
-5.8591922e+117
-5.8576436e+117
-5.8402605e+117
-5.84975e+117
-5.8375318e+117
-5.8390782e+117
-5.8485735e+117
-5.8470377e+117
-5.7029508e+117
-5.6946384e+117
-5.6950435e+117
-5.7032058e+117
-5.7036119e+117
-5.6956501e+117
-5.6958503e+117
-5.7037608e+117
-5.7032582e+117
-5.6951863e+117
-5.6954533e+117
-5.7035096e+117
-5.6878926e+117
-5.6794357e+117
-5.6804573e+117
-5.6889008e+117
-5.7039932e+117
-5.696032e+117
-5.697024e+117
-5.7049832e+117
-5.6841227e+117
-5.6820609e+117
-5.690279e+117
-5.6923259e+117
-5.7063436e+117
-5.6983741e+117
-5.7003001e+117
-5.7081601e+117
-6.115914e+117
-6.0983662e+117
-6.1158461e+117
-6.0983735e+117
-6.1337532e+117
-6.1523617e+117
-6.1524257e+117
-6.1338161e+117
-6.1164388e+117
-6.0985259e+117
-6.116079e+117
-6.098875e+117
-6.1339511e+117
-6.1524538e+117
-6.1341363e+117
-6.1525054e+117
-6.0512508e+117
-6.0367585e+117
-6.051378e+117
-6.0366173e+117
-6.0366718e+117
-6.0513162e+117
-6.0515443e+117
-6.0368707e+117
-6.0663413e+117
-6.0817401e+117
-6.0662438e+117
-6.0816765e+117
-6.081796e+117
-6.0820809e+117
-6.0663257e+117
-6.0665773e+117
-6.0372845e+117
-6.0519734e+117
-6.0525056e+117
-6.0377956e+117
-6.038458e+117
-6.0531776e+117
-6.0539217e+117
-6.0392042e+117
-6.0670162e+117
-6.0824984e+117
-6.0830249e+117
-6.067547e+117
-6.0682198e+117
-6.0836954e+117
-6.0844313e+117
-6.068963e+117
-6.0992089e+117
-6.1167255e+117
-6.1172415e+117
-6.0997143e+117
-6.1003946e+117
-6.1179506e+117
-6.1187257e+117
-6.1011351e+117
-6.1531325e+117
-6.1538039e+117
-6.134602e+117
-6.135184e+117
-6.135936e+117
-6.1545994e+117
-6.1553846e+117
-6.1367072e+117
-6.0419679e+117
-6.0567386e+117
-6.056987e+117
-6.0421958e+117
-6.0420893e+117
-6.0422667e+117
-6.05705e+117
-6.0568694e+117
-6.0718199e+117
-6.0873152e+117
-6.0875748e+117
-6.0720769e+117
-6.0720041e+117
-6.0721541e+117
-6.0876628e+117
-6.0875595e+117
-6.0399548e+117
-6.0546725e+117
-6.0552988e+117
-6.0405586e+117
-6.0411043e+117
-6.0558216e+117
-6.0563232e+117
-6.0415659e+117
-6.0697143e+117
-6.0851751e+117
-6.085805e+117
-6.0703437e+117
-6.0708898e+117
-6.086381e+117
-6.0868909e+117
-6.0713953e+117
-6.1018651e+117
-6.119442e+117
-6.1201118e+117
-6.1025097e+117
-6.1030942e+117
-6.1206897e+117
-6.1212202e+117
-6.1036113e+117
-6.1374518e+117
-6.1561693e+117
-6.1568437e+117
-6.1381284e+117
-6.138735e+117
-6.1574667e+117
-6.1579664e+117
-6.1392435e+117
-6.1040231e+117
-6.1216077e+117
-6.1218561e+117
-6.1042803e+117
-6.1042425e+117
-6.1043484e+117
-6.1218689e+117
-6.1216767e+117
-6.139631e+117
-6.1583677e+117
-6.158561e+117
-6.1398454e+117
-6.1395651e+117
-6.1398294e+117
-6.1585506e+117
-6.1582757e+117
-6.1729974e+117
-6.1934238e+117
-6.1941811e+117
-6.173723e+117
-6.1745502e+117
-6.1950342e+117
-6.1958745e+117
-6.1753759e+117
-6.2401818e+117
-6.2159006e+117
-6.2393975e+117
-6.216672e+117
-6.2419638e+117
-6.2175405e+117
-6.2410674e+117
-6.2184079e+117
-6.1924985e+117
-6.1722159e+117
-6.1925165e+117
-6.1722316e+117
-6.2148206e+117
-6.2381423e+117
-6.2382433e+117
-6.2148532e+117
-6.19283e+117
-6.1722551e+117
-6.192612e+117
-6.1723793e+117
-6.2150021e+117
-6.2384174e+117
-6.2152884e+117
-6.2387519e+117
-6.3219722e+117
-6.3224113e+117
-6.2922094e+117
-6.2638941e+117
-6.2919221e+117
-6.2640722e+117
-6.2646524e+117
-6.2642773e+117
-6.2924137e+117
-6.2928028e+117
-6.3229344e+117
-6.322517e+117
-6.2653189e+117
-6.293461e+117
-6.2942588e+117
-6.2661134e+117
-6.2669993e+117
-6.2951385e+117
-6.2679205e+117
-6.2960538e+117
-6.3235698e+117
-6.3243397e+117
-6.3261678e+117
-6.3252076e+117
-6.2980686e+117
-6.2688748e+117
-6.2970821e+117
-6.2697996e+117
-6.3271307e+117
-6.3279083e+117
-6.2992444e+117
-6.2703715e+117
-6.2985687e+117
-6.2709949e+117
-6.3284841e+117
-6.3291002e+117
-6.1761792e+117
-6.1966998e+117
-6.1974109e+117
-6.1768635e+117
-6.1774814e+117
-6.1980442e+117
-6.1985618e+117
-6.1779999e+117
-6.2192554e+117
-6.2428546e+117
-6.2436477e+117
-6.219996e+117
-6.2206383e+117
-6.2442925e+117
-6.2448457e+117
-6.2211703e+117
-6.1783985e+117
-6.1989535e+117
-6.1991455e+117
-6.1785988e+117
-6.1783309e+117
-6.1785844e+117
-6.1991188e+117
-6.1988637e+117
-6.2215417e+117
-6.2451762e+117
-6.2453197e+117
-6.2217178e+117
-6.221399e+117
-6.221666e+117
-6.2452557e+117
-6.2449772e+117
-6.299554e+117
-6.2712058e+117
-6.2993889e+117
-6.2713369e+117
-6.3294431e+117
-6.3296941e+117
-6.2710014e+117
-6.2993128e+117
-6.2712707e+117
-6.2995322e+117
-6.3297491e+117
-6.3296589e+117
-5.8628145e+117
-5.875342e+117
-5.8757377e+117
-5.8631627e+117
-5.8760972e+117
-5.8762589e+117
-5.8635478e+117
-5.8638375e+117
-5.8116013e+117
-5.8106834e+117
-5.8188598e+117
-5.8197563e+117
-5.8178369e+117
-5.8095222e+117
-5.8098958e+117
-5.8181725e+117
-5.8345127e+117
-5.8261586e+117
-5.8265045e+117
-5.8348424e+117
-5.8354755e+117
-5.8271677e+117
-5.8279879e+117
-5.8361665e+117
-5.8640694e+117
-5.8764058e+117
-5.8766007e+117
-5.8643641e+117
-5.8768286e+117
-5.8767993e+117
-5.8646532e+117
-5.864628e+117
-5.8367707e+117
-5.8287731e+117
-5.8293023e+117
-5.8372297e+117
-5.820638e+117
-5.8125067e+117
-5.8132125e+117
-5.8212516e+117
-5.8136767e+117
-5.8136804e+117
-5.8216087e+117
-5.8216185e+117
-5.8375676e+117
-5.8296173e+117
-5.8296055e+117
-5.8375455e+117
-5.8011973e+117
-5.7929798e+117
-5.7934604e+117
-5.8016019e+117
-5.7848176e+117
-5.7767833e+117
-5.7773981e+117
-5.785349e+117
-5.7799291e+117
-5.7785721e+117
-5.7863493e+117
-5.7875962e+117
-5.8024711e+117
-5.7943662e+117
-5.7954477e+117
-5.8034462e+117
-5.7819441e+117
-5.7821952e+117
-5.7898969e+117
-5.7898432e+117
-5.7818564e+117
-5.7810318e+117
-5.7885895e+117
-5.7894248e+117
-5.8043724e+117
-5.7963889e+117
-5.7972193e+117
-5.8051429e+117
-5.8056806e+117
-5.7977543e+117
-5.7977579e+117
-5.8056837e+117
-5.864431e+117
-5.8766651e+117
-5.8766015e+117
-5.8643569e+117
-5.8765748e+117
-5.8762712e+117
-5.8642825e+117
-5.8639516e+117
-5.8373336e+117
-5.8293793e+117
-5.8291492e+117
-5.8371358e+117
-5.8213418e+117
-5.8133286e+117
-5.8130196e+117
-5.8210573e+117
-5.8120789e+117
-5.8126731e+117
-5.8207447e+117
-5.820289e+117
-5.8369563e+117
-5.8288832e+117
-5.8284793e+117
-5.8365584e+117
-5.863377e+117
-5.8758089e+117
-5.8753637e+117
-5.8628874e+117
-5.8749108e+117
-5.8742456e+117
-5.8623497e+117
-5.8615703e+117
-5.8359824e+117
-5.82793e+117
-5.8271429e+117
-5.8353085e+117
-5.8196585e+117
-5.8113004e+117
-5.810416e+117
-5.8187942e+117
-5.8083315e+117
-5.8094538e+117
-5.8177899e+117
-5.8167413e+117
-5.8344813e+117
-5.8261819e+117
-5.8251571e+117
-5.8334787e+117
-5.8052843e+117
-5.7973122e+117
-5.7968902e+117
-5.8049193e+117
-5.7893024e+117
-5.7813401e+117
-5.7807291e+117
-5.788765e+117
-5.7791051e+117
-5.7799693e+117
-5.7881082e+117
-5.787312e+117
-5.8045004e+117
-5.7963224e+117
-5.7955456e+117
-5.8037892e+117
-5.7750217e+117
-5.7762913e+117
-5.7844357e+117
-5.7832568e+117
-5.7773262e+117
-5.7781599e+117
-5.7862633e+117
-5.7854184e+117
-5.8028778e+117
-5.7945252e+117
-5.7936723e+117
-5.801988e+117
-5.8010562e+117
-5.7927268e+117
-5.7915676e+117
-5.7999046e+117
-5.7687969e+117
-5.7609719e+117
-5.7617605e+117
-5.7694689e+117
-5.7533236e+117
-5.7459691e+117
-5.7470112e+117
-5.7542138e+117
-5.7495299e+117
-5.7482788e+117
-5.7554681e+117
-5.7568967e+117
-5.7707413e+117
-5.7630243e+117
-5.7644732e+117
-5.7721766e+117
-5.7387819e+117
-5.7318101e+117
-5.7330927e+117
-5.739915e+117
-5.724821e+117
-5.717671e+117
-5.7191849e+117
-5.726218e+117
-5.7205943e+117
-5.7201155e+117
-5.7271253e+117
-5.7277651e+117
-5.7411093e+117
-5.7340782e+117
-5.7349473e+117
-5.7421834e+117
-5.7174279e+117
-5.7189186e+117
-5.7268319e+117
-5.7255144e+117
-5.7200167e+117
-5.7205216e+117
-5.7280057e+117
-5.7278287e+117
-5.7429499e+117
-5.7354585e+117
-5.7354976e+117
-5.7431552e+117
-5.7425943e+117
-5.7347277e+117
-5.7334794e+117
-5.7414565e+117
-5.7733755e+117
-5.7657091e+117
-5.766382e+117
-5.7741414e+117
-5.7580413e+117
-5.7504796e+117
-5.7508542e+117
-5.7585784e+117
-5.7495114e+117
-5.7504729e+117
-5.758372e+117
-5.7576047e+117
-5.7743195e+117
-5.7663659e+117
-5.765765e+117
-5.7738904e+117
-5.7121543e+117
-5.7125558e+117
-5.7201682e+117
-5.7197874e+117
-5.7126027e+117
-5.7125611e+117
-5.7205286e+117
-5.720374e+117
-5.7366267e+117
-5.7285322e+117
-5.7282053e+117
-5.7361189e+117
-5.7356536e+117
-5.7278754e+117
-5.7273586e+117
-5.7349682e+117
-5.7131337e+117
-5.7137943e+117
-5.721896e+117
-5.7213102e+117
-5.7146814e+117
-5.7157957e+117
-5.7238139e+117
-5.7227161e+117
-5.7400553e+117
-5.7318939e+117
-5.7307988e+117
-5.7389605e+117
-5.7381794e+117
-5.7300177e+117
-5.7293529e+117
-5.7374353e+117
-5.7731886e+117
-5.7649285e+117
-5.7640577e+117
-5.7724562e+117
-5.7565789e+117
-5.7482927e+117
-5.7472479e+117
-5.7555999e+117
-5.7456442e+117
-5.7464183e+117
-5.7547308e+117
-5.7539274e+117
-5.7716256e+117
-5.7631873e+117
-5.7623435e+117
-5.7707517e+117
-5.7698803e+117
-5.7615183e+117
-5.7607186e+117
-5.7690509e+117
-5.7531131e+117
-5.7448314e+117
-5.7442007e+117
-5.7523811e+117
-5.7427162e+117
-5.743553e+117
-5.751562e+117
-5.7505674e+117
-5.7680307e+117
-5.7597708e+117
-5.7586234e+117
-5.7667802e+117
-5.6944312e+117
-5.6862172e+117
-5.6873441e+117
-5.6958371e+117
-5.7101111e+117
-5.7023006e+117
-5.703918e+117
-5.7117384e+117
-5.7126528e+117
-5.7047367e+117
-5.7047192e+117
-5.7128989e+117
-6.2641375e+117
-6.2635085e+117
-6.2625974e+117
-6.2619226e+117
-6.2802533e+117
-6.2796036e+117
-6.2927292e+117
-6.293386e+117
-6.2811019e+117
-6.29414e+117
-6.2947809e+117
-6.2816517e+117
-6.2595686e+117
-6.2592431e+117
-6.2775651e+117
-6.2769842e+117
-6.290406e+117
-6.2909822e+117
-6.2611034e+117
-6.2788629e+117
-6.2602484e+117
-6.2782442e+117
-6.2915986e+117
-6.2921062e+117
-6.351703e+117
-6.33789e+117
-6.3373849e+117
-6.3522171e+117
-6.3212169e+117
-6.3064525e+117
-6.3070752e+117
-6.3217941e+117
-6.3077644e+117
-6.322419e+117
-6.3229992e+117
-6.308393e+117
-6.3384672e+117
-6.3527845e+117
-6.3533208e+117
-6.3390298e+117
-6.3048001e+117
-6.3042056e+117
-6.3189504e+117
-6.3195748e+117
-6.3357099e+117
-6.3350859e+117
-6.3494411e+117
-6.3500698e+117
-6.336834e+117
-6.3363132e+117
-6.3506613e+117
-6.3511236e+117
-6.3053899e+117
-6.3201709e+117
-6.3206735e+117
-6.3058858e+117
-6.3672106e+117
-6.3840638e+117
-6.398645e+117
-6.3990528e+117
-6.3677081e+117
-6.3844359e+117
-6.3975785e+117
-6.3981222e+117
-6.3666222e+117
-6.3835289e+117
-6.366016e+117
-6.3828638e+117
-6.4102276e+117
-6.4225221e+117
-6.4097575e+117
-6.4220835e+117
-6.4366053e+117
-6.4361763e+117
-6.4111458e+117
-6.4234022e+117
-6.4107365e+117
-6.4230282e+117
-6.4373748e+117
-6.4370565e+117
-6.3645939e+117
-6.3816164e+117
-6.3639972e+117
-6.3809348e+117
-6.3957427e+117
-6.3963438e+117
-6.4080454e+117
-6.4205526e+117
-6.4347641e+117
-6.4210351e+117
-6.4352323e+117
-6.4085862e+117
-6.3968699e+117
-6.3972196e+117
-6.4093904e+117
-6.4217237e+117
-6.4090513e+117
-6.4214306e+117
-6.4355738e+117
-6.435816e+117
-6.3651474e+117
-6.3821635e+117
-6.365553e+117
-6.3825048e+117
-6.2644564e+117
-6.2652269e+117
-6.282899e+117
-6.2821225e+117
-6.2953846e+117
-6.2960566e+117
-6.2969495e+117
-6.2966911e+117
-6.2659787e+117
-6.2836082e+117
-6.2665541e+117
-6.2839365e+117
-6.309039e+117
-6.309651e+117
-6.3242176e+117
-6.3236479e+117
-6.3543734e+117
-6.3538984e+117
-6.3396466e+117
-6.3401642e+117
-6.3547421e+117
-6.3405911e+117
-6.3408915e+117
-6.3549417e+117
-6.3101786e+117
-6.3246699e+117
-6.3249705e+117
-6.3104553e+117
-6.3682724e+117
-6.3849223e+117
-6.3994637e+117
-6.3998063e+117
-6.3686777e+117
-6.3853643e+117
-6.4001118e+117
-6.3999954e+117
-6.3689332e+117
-6.3855881e+117
-6.369092e+117
-6.3857057e+117
-6.4119382e+117
-6.4240733e+117
-6.4120401e+117
-6.4241574e+117
-6.4380622e+117
-6.4380174e+117
-6.4117729e+117
-6.4239334e+117
-6.4115269e+117
-6.4237793e+117
-6.4378898e+117
-6.4377263e+117
-6.4002165e+117
-6.4005288e+117
-6.3696377e+117
-6.386193e+117
-6.3694274e+117
-6.3858459e+117
-6.3698181e+117
-6.3863982e+117
-6.4007836e+117
-6.4009936e+117
-6.3700536e+117
-6.3865381e+117
-6.4248203e+117
-6.4386344e+117
-6.4127057e+117
-6.4129154e+117
-6.4249375e+117
-6.4387077e+117
-6.4242861e+117
-6.4381937e+117
-6.4121744e+117
-6.4124188e+117
-6.4244849e+117
-6.4383885e+117
-6.4018695e+117
-6.4020268e+117
-6.369622e+117
-6.3870658e+117
-6.3693551e+117
-6.3867807e+117
-6.4245025e+117
-6.4244273e+117
-6.4386956e+117
-6.4387936e+117
-6.4497835e+117
-6.4498951e+117
-6.472452e+117
-6.4606844e+117
-6.4722953e+117
-6.4605705e+117
-6.4500704e+117
-6.4500052e+117
-6.4725773e+117
-6.4607966e+117
-6.4726056e+117
-6.4608439e+117
-6.450194e+117
-6.4503631e+117
-6.4727247e+117
-6.4609712e+117
-6.4728454e+117
-6.4611172e+117
-6.4506824e+117
-6.4505984e+117
-6.4729787e+117
-6.4613159e+117
-6.4730059e+117
-6.4613859e+117
-6.4470284e+117
-6.4474125e+117
-6.469842e+117
-6.4579707e+117
-6.4702095e+117
-6.458317e+117
-6.4479624e+117
-6.4477057e+117
-6.4705246e+117
-6.4586116e+117
-6.4707489e+117
-6.4588572e+117
-6.44869e+117
-6.4482997e+117
-6.4710701e+117
-6.4591915e+117
-6.4714033e+117
-6.4595456e+117
-6.4494647e+117
-6.4491441e+117
-6.4717648e+117
-6.4599754e+117
-6.4720083e+117
-6.4602712e+117
-6.3560436e+117
-6.3705374e+117
-6.3843333e+117
-6.3846408e+117
-6.3563027e+117
-6.3708988e+117
-6.356552e+117
-6.3710894e+117
-6.384788e+117
-6.3851286e+117
-6.3565585e+117
-6.3712556e+117
-6.3976764e+117
-6.4116464e+117
-6.3973151e+117
-6.4113026e+117
-6.4238799e+117
-6.4242183e+117
-6.3970763e+117
-6.4109756e+117
-6.3968055e+117
-6.4107368e+117
-6.4234932e+117
-6.4231943e+117
-6.3566625e+117
-6.3714601e+117
-6.3853902e+117
-6.385623e+117
-6.3569165e+117
-6.3717091e+117
-6.3573156e+117
-6.3720763e+117
-6.3571471e+117
-6.3718782e+117
-6.3858229e+117
-6.3861118e+117
-6.3988278e+117
-6.4130546e+117
-6.3985162e+117
-6.4127059e+117
-6.4254289e+117
-6.4257878e+117
-6.3982359e+117
-6.4123187e+117
-6.3979911e+117
-6.4120549e+117
-6.4246658e+117
-6.4250151e+117
-6.3575935e+117
-6.3723659e+117
-6.3864352e+117
-6.3866714e+117
-6.3577254e+117
-6.3726143e+117
-6.3578157e+117
-6.3727113e+117
-6.3867547e+117
-6.3868652e+117
-6.3578605e+117
-6.372771e+117
-6.399667e+117
-6.413937e+117
-6.3995257e+117
-6.4138068e+117
-6.4266248e+117
-6.4267726e+117
-6.3993908e+117
-6.4136e+117
-6.3991702e+117
-6.4134283e+117
-6.426158e+117
-6.4263735e+117
-6.3580792e+117
-6.3729148e+117
-6.3870114e+117
-6.3873835e+117
-6.3581858e+117
-6.3732227e+117
-6.3584722e+117
-6.3734943e+117
-6.387687e+117
-6.3879801e+117
-6.358855e+117
-6.3737537e+117
-6.4008676e+117
-6.415187e+117
-6.4005472e+117
-6.4149007e+117
-6.4277463e+117
-6.4280383e+117
-6.400217e+117
-6.4145173e+117
-6.3998747e+117
-6.414213e+117
-6.4270698e+117
-6.4273816e+117
-6.3323617e+117
-6.3466512e+117
-6.3471107e+117
-6.3329331e+117
-6.3568094e+117
-6.3738838e+117
-6.3887943e+117
-6.3892975e+117
-6.3573446e+117
-6.3744878e+117
-6.3581105e+117
-6.3750722e+117
-6.3897301e+117
-6.3901445e+117
-6.3588643e+117
-6.3755475e+117
-6.4023479e+117
-6.4147857e+117
-6.4019643e+117
-6.4144627e+117
-6.4291694e+117
-6.4288489e+117
-6.4015635e+117
-6.4140524e+117
-6.4011533e+117
-6.4137183e+117
-6.4284274e+117
-6.4280633e+117
-6.3596309e+117
-6.3762119e+117
-6.3907279e+117
-6.3915043e+117
-6.3603294e+117
-6.3770291e+117
-6.3609701e+117
-6.3776055e+117
-6.3920846e+117
-6.3924375e+117
-6.3612824e+117
-6.3778425e+117
-6.4045441e+117
-6.4168633e+117
-6.4041414e+117
-6.4164823e+117
-6.4310073e+117
-6.4306898e+117
-6.403557e+117
-6.4158819e+117
-6.4029026e+117
-6.4153431e+117
-6.4301966e+117
-6.4296988e+117
-6.258243e+117
-6.2759962e+117
-6.2892421e+117
-6.2892083e+117
-6.2585744e+117
-6.2761063e+117
-6.2590952e+117
-6.2764689e+117
-6.2591571e+117
-6.2765414e+117
-6.2895427e+117
-6.2893964e+117
-6.2588934e+117
-6.259014e+117
-6.2766073e+117
-6.2765025e+117
-6.2898584e+117
-6.2897325e+117
-6.3036472e+117
-6.317991e+117
-6.3033596e+117
-6.3183686e+117
-6.3029117e+117
-6.3174445e+117
-6.3176788e+117
-6.3031038e+117
-6.3336157e+117
-6.333366e+117
-6.3475346e+117
-6.3478312e+117
-6.3339938e+117
-6.3344619e+117
-6.348799e+117
-6.3482692e+117
-6.3173e+117
-6.302671e+117
-6.3029058e+117
-6.3174649e+117
-6.3332855e+117
-6.3333271e+117
-6.3474263e+117
-6.3473435e+117
-6.3331743e+117
-6.3333139e+117
-6.3474087e+117
-6.3472746e+117
-6.3028627e+117
-6.3174437e+117
-6.3173693e+117
-6.3028207e+117
-6.3928464e+117
-6.3930712e+117
-6.3616783e+117
-6.3785357e+117
-6.361548e+117
-6.3782888e+117
-6.3931887e+117
-6.3617053e+117
-6.3785981e+117
-6.3616141e+117
-6.3785663e+117
-6.3932757e+117
-6.4055254e+117
-6.4179844e+117
-6.4053325e+117
-6.4177217e+117
-6.4319651e+117
-6.432251e+117
-6.4049145e+117
-6.4172213e+117
-6.4313614e+117
-6.4051424e+117
-6.4174598e+117
-6.4316536e+117
-6.3940453e+117
-6.3936266e+117
-6.3619328e+117
-6.3788809e+117
-6.3622633e+117
-6.3793084e+117
-6.3633272e+117
-6.3802595e+117
-6.3950782e+117
-6.3945503e+117
-6.3627585e+117
-6.3797757e+117
-6.4068363e+117
-6.4193375e+117
-6.4335893e+117
-6.4199086e+117
-6.4341382e+117
-6.4073974e+117
-6.4058894e+117
-6.4183776e+117
-6.432633e+117
-6.4187917e+117
-6.4330689e+117
-6.4063064e+117
-6.2031255e+117
-6.2168328e+117
-6.2187374e+117
-6.2051805e+117
-6.1985332e+117
-6.2122692e+117
-6.2146249e+117
-6.20086e+117
-6.239728e+117
-6.2375459e+117
-6.2542313e+117
-6.2520557e+117
-6.2419684e+117
-6.2437485e+117
-6.2582896e+117
-6.2564218e+117
-6.2302653e+117
-6.2317975e+117
-6.2461038e+117
-6.2445827e+117
-6.2066519e+117
-6.2051695e+117
-6.1916841e+117
-6.1930018e+117
-6.1945445e+117
-6.2101225e+117
-6.2082864e+117
-6.1964207e+117
-6.2334486e+117
-6.2352994e+117
-6.2498726e+117
-6.2478852e+117
-6.2710003e+117
-6.2861579e+117
-6.2880341e+117
-6.2728927e+117
-6.2819079e+117
-6.2667098e+117
-6.2688848e+117
-6.2840768e+117
-6.3145619e+117
-6.2999992e+117
-6.2978638e+117
-6.3166194e+117
-6.3020365e+117
-6.3186372e+117
-6.3204964e+117
-6.3038977e+117
-6.2625287e+117
-6.2777621e+117
-6.2798294e+117
-6.2645864e+117
-6.2743483e+117
-6.2591506e+117
-6.2606878e+117
-6.2759045e+117
-6.2937694e+117
-6.3105285e+117
-6.3125789e+117
-6.2958257e+117
-6.2903716e+117
-6.291934e+117
-6.3087066e+117
-6.3071511e+117
-6.3331259e+117
-6.3488618e+117
-6.3505573e+117
-6.3348153e+117
-6.3366441e+117
-6.3522801e+117
-6.3541222e+117
-6.3385372e+117
-6.3693102e+117
-6.3675771e+117
-6.390014e+117
-6.3916625e+117
-6.3658654e+117
-6.3642132e+117
-6.3867173e+117
-6.3883495e+117
-6.3403706e+117
-6.3558417e+117
-6.3578542e+117
-6.3423638e+117
-6.3443166e+117
-6.3597089e+117
-6.3614655e+117
-6.3460561e+117
-6.3764592e+117
-6.3747623e+117
-6.3968654e+117
-6.3984832e+117
-6.3729517e+117
-6.3710905e+117
-6.3933951e+117
-6.3951669e+117
-6.2066922e+117
-6.2080801e+117
-6.2216725e+117
-6.2202124e+117
-6.2453835e+117
-6.2598837e+117
-6.2613127e+117
-6.2468586e+117
-6.2626578e+117
-6.2483239e+117
-6.2498093e+117
-6.2641129e+117
-6.2095317e+117
-6.2232125e+117
-6.2247921e+117
-6.2111805e+117
-6.2157812e+117
-6.2305334e+117
-6.229441e+117
-6.2169075e+117
-6.2280633e+117
-6.2264274e+117
-6.2128173e+117
-6.2143974e+117
-6.253008e+117
-6.2514795e+117
-6.265782e+117
-6.2673909e+117
-6.25462e+117
-6.2690041e+117
-6.2702238e+117
-6.2558e+117
-6.2834435e+117
-6.2984227e+117
-6.2995118e+117
-6.2845997e+117
-6.2952555e+117
-6.2802261e+117
-6.2818901e+117
-6.2969259e+117
-6.3275354e+117
-6.3126629e+117
-6.3110335e+117
-6.329072e+117
-6.3140964e+117
-6.3151665e+117
-6.3315314e+117
-6.330459e+117
-6.2771008e+117
-6.2921207e+117
-6.2936456e+117
-6.2785874e+117
-6.2895501e+117
-6.2744579e+117
-6.2758224e+117
-6.2908497e+117
-6.3079454e+117
-6.3245082e+117
-6.326031e+117
-6.3094657e+117
-6.3053744e+117
-6.3066517e+117
-6.3231841e+117
-6.3219246e+117
-6.3629503e+117
-6.3643567e+117
-6.3489246e+117
-6.347532e+117
-6.3656535e+117
-6.3502891e+117
-6.3516278e+117
-6.3669241e+117
-6.402731e+117
-6.3807007e+117
-6.3819316e+117
-6.4039792e+117
-6.4000217e+117
-6.3780113e+117
-6.3793955e+117
-6.4014013e+117
-6.3530048e+117
-6.3682294e+117
-6.369697e+117
-6.3544523e+117
-6.3557381e+117
-6.3709278e+117
-6.3720106e+117
-6.3567558e+117
-6.3868227e+117
-6.3857842e+117
-6.4076598e+117
-6.4086497e+117
-6.384581e+117
-6.3832571e+117
-6.4052563e+117
-6.4065157e+117
-6.2465659e+117
-6.2471008e+117
-6.2611327e+117
-6.2617797e+117
-6.2740946e+117
-6.2735241e+117
-6.2479412e+117
-6.2626151e+117
-6.2489114e+117
-6.2635011e+117
-6.2758269e+117
-6.2748957e+117
-6.2498819e+117
-6.264654e+117
-6.2771117e+117
-6.2928448e+117
-6.3071767e+117
-6.3078605e+117
-6.2934381e+117
-6.3051091e+117
-6.2906894e+117
-6.291936e+117
-6.3062599e+117
-6.3354947e+117
-6.3216596e+117
-6.3206215e+117
-6.3364615e+117
-6.3225754e+117
-6.3373776e+117
-6.3381366e+117
-6.3233219e+117
-6.3015516e+117
-6.2870775e+117
-6.2876506e+117
-6.302149e+117
-6.2884283e+117
-6.3029183e+117
-6.303903e+117
-6.2894128e+117
-6.3185758e+117
-6.33359e+117
-6.3345023e+117
-6.3195266e+117
-6.317187e+117
-6.332817e+117
-6.3321474e+117
-6.3178084e+117
-6.3472427e+117
-6.3614333e+117
-6.3749386e+117
-6.3757287e+117
-6.3479565e+117
-6.3622444e+117
-6.3772896e+117
-6.3765386e+117
-6.348737e+117
-6.363071e+117
-6.3496229e+117
-6.3638151e+117
-6.3894189e+117
-6.4028741e+117
-6.3886574e+117
-6.4021432e+117
-6.4149088e+117
-6.414166e+117
-6.3878717e+117
-6.4013432e+117
-6.3870767e+117
-6.4005611e+117
-6.4133642e+117
-6.4125639e+117
-6.3781103e+117
-6.3505148e+117
-6.3646752e+117
-6.3513902e+117
-6.3655851e+117
-6.3789508e+117
-6.3522974e+117
-6.3664114e+117
-6.3797758e+117
-6.3804393e+117
-6.3529966e+117
-6.3670144e+117
-6.3918625e+117
-6.4053862e+117
-6.4175068e+117
-6.406103e+117
-6.4181987e+117
-6.3925529e+117
-6.3902277e+117
-6.4037007e+117
-6.4157803e+117
-6.4045644e+117
-6.4166873e+117
-6.3910461e+117
-6.3240846e+117
-6.3392391e+117
-6.3394419e+117
-6.3241216e+117
-6.3238816e+117
-6.3240603e+117
-6.3390309e+117
-6.3386885e+117
-6.3535711e+117
-6.3676557e+117
-6.381054e+117
-6.38157e+117
-6.3540084e+117
-6.3681893e+117
-6.3543073e+117
-6.3685279e+117
-6.3819272e+117
-6.382178e+117
-6.3544958e+117
-6.3686755e+117
-6.3944242e+117
-6.4081083e+117
-6.3940971e+117
-6.4077216e+117
-6.4199925e+117
-6.4204192e+117
-6.3936813e+117
-6.4072534e+117
-6.3931678e+117
-6.4067219e+117
-6.4188791e+117
-6.4194519e+117
-6.3548612e+117
-6.3690194e+117
-6.3825353e+117
-6.3831492e+117
-6.3551772e+117
-6.3695682e+117
-6.3557028e+117
-6.3701905e+117
-6.3554268e+117
-6.3699254e+117
-6.3836236e+117
-6.383981e+117
-6.3964289e+117
-6.4103349e+117
-6.3960039e+117
-6.4098638e+117
-6.4222542e+117
-6.4227588e+117
-6.3954481e+117
-6.4091978e+117
-6.3948571e+117
-6.4086223e+117
-6.4209748e+117
-6.4215766e+117
-6.0962591e+117
-6.0962648e+117
-6.1104351e+117
-6.1104407e+117
-6.097134e+117
-6.0965567e+117
-6.1106556e+117
-6.1112082e+117
-6.1240435e+117
-6.123468e+117
-6.1371708e+117
-6.1375951e+117
-6.1513085e+117
-6.1657014e+117
-6.1659715e+117
-6.150934e+117
-6.1508186e+117
-6.1507452e+117
-6.1654373e+117
-6.1655663e+117
-6.1233276e+117
-6.1370333e+117
-6.136957e+117
-6.1232944e+117
-6.1248571e+117
-6.1385187e+117
-6.1380523e+117
-6.1243587e+117
-6.137519e+117
-6.1371565e+117
-6.123564e+117
-6.1238828e+117
-6.1510197e+117
-6.1507611e+117
-6.1654143e+117
-6.1656411e+117
-6.1515778e+117
-6.1662241e+117
-6.1669671e+117
-6.1522002e+117
-6.0973841e+117
-6.0969542e+117
-6.111261e+117
-6.1117094e+117
-6.0964552e+117
-6.1106604e+117
-6.1108705e+117
-6.0966225e+117
-6.1796749e+117
-6.1795158e+117
-6.1927472e+117
-6.1928048e+117
-6.217424e+117
-6.2173879e+117
-6.2314694e+117
-6.2315507e+117
-6.2172766e+117
-6.2173639e+117
-6.2313421e+117
-6.2313556e+117
-6.1794064e+117
-6.1926976e+117
-6.1926039e+117
-6.1793365e+117
-6.1801269e+117
-6.1935215e+117
-6.1941697e+117
-6.1808503e+117
-6.1793394e+117
-6.1926531e+117
-6.1929605e+117
-6.1795378e+117
-6.2177201e+117
-6.2174416e+117
-6.2319455e+117
-6.2316196e+117
-6.2182437e+117
-6.2187561e+117
-6.233106e+117
-6.2325009e+117
-6.262112e+117
-6.2470101e+117
-6.2476738e+117
-6.2628076e+117
-6.2460245e+117
-6.2610004e+117
-6.2614882e+117
-6.2464223e+117
-6.2768066e+117
-6.2773264e+117
-6.2938894e+117
-6.2933553e+117
-6.277992e+117
-6.295425e+117
-6.2946038e+117
-6.278747e+117
-6.260652e+117
-6.2606962e+117
-6.2458473e+117
-6.2457624e+117
-6.260589e+117
-6.2456655e+117
-6.2456987e+117
-6.2606536e+117
-6.2928255e+117
-6.2763289e+117
-6.2930018e+117
-6.2764513e+117
-6.2763382e+117
-6.2927168e+117
-6.2927638e+117
-6.2763243e+117
-6.3336439e+117
-6.3338622e+117
-6.3488434e+117
-6.3485802e+117
-6.3706016e+117
-6.3709485e+117
-6.3340737e+117
-6.3186137e+117
-6.3187575e+117
-6.3343136e+117
-6.3181895e+117
-6.3184384e+117
-6.3491445e+117
-6.3495136e+117
-6.3719277e+117
-6.3713997e+117
-6.3191645e+117
-6.3348076e+117
-6.3354753e+117
-6.3197736e+117
-6.321201e+117
-6.3369174e+117
-6.3361826e+117
-6.3204758e+117
-6.3522145e+117
-6.3514436e+117
-6.3739967e+117
-6.3748462e+117
-6.3507258e+117
-6.350068e+117
-6.3725609e+117
-6.3732495e+117
-6.1390277e+117
-6.125278e+117
-6.1256509e+117
-6.1395342e+117
-6.1401637e+117
-6.1262413e+117
-6.127032e+117
-6.1409495e+117
-6.1532816e+117
-6.1680894e+117
-6.1675303e+117
-6.1527389e+117
-6.1539204e+117
-6.1549123e+117
-6.1699267e+117
-6.1687726e+117
-6.1578613e+117
-6.1562107e+117
-6.1713365e+117
-6.1731071e+117
-6.1748324e+117
-6.1595056e+117
-6.1764538e+117
-6.1612035e+117
-6.1855577e+117
-6.2008949e+117
-6.1991471e+117
-6.1872876e+117
-6.1904766e+117
-6.1890604e+117
-6.2024262e+117
-6.2037057e+117
-6.2286453e+117
-6.2271316e+117
-6.2415715e+117
-6.2431275e+117
-6.2242837e+117
-6.2386505e+117
-6.2401143e+117
-6.2257484e+117
-6.1814769e+117
-6.1820824e+117
-6.1955104e+117
-6.1947375e+117
-6.2195588e+117
-6.2204499e+117
-6.2348109e+117
-6.2339202e+117
-6.2215583e+117
-6.2228814e+117
-6.2371722e+117
-6.235865e+117
-6.1828988e+117
-6.1964763e+117
-6.1976955e+117
-6.1840892e+117
-6.2561939e+117
-6.2713918e+117
-6.2729375e+117
-6.2577465e+117
-6.2683198e+117
-6.2532097e+117
-6.2546797e+117
-6.2698094e+117
-6.2857576e+117
-6.2842309e+117
-6.300875e+117
-6.302447e+117
-6.2873635e+117
-6.3040998e+117
-6.3057161e+117
-6.2889351e+117
-6.2484955e+117
-6.2636336e+117
-6.2645521e+117
-6.2493937e+117
-6.2795814e+117
-6.2804914e+117
-6.2971573e+117
-6.2962599e+117
-6.2828658e+117
-6.2815776e+117
-6.2995191e+117
-6.2982539e+117
-6.250441e+117
-6.2656093e+117
-6.2668964e+117
-6.2517367e+117
-6.3221228e+117
-6.3378554e+117
-6.3388947e+117
-6.3231524e+117
-6.3242319e+117
-6.3399237e+117
-6.3411859e+117
-6.3254306e+117
-6.3565526e+117
-6.3553043e+117
-6.3792229e+117
-6.377988e+117
-6.3542051e+117
-6.3531812e+117
-6.3768463e+117
-6.3758243e+117
-6.3284176e+117
-6.3268079e+117
-6.342545e+117
-6.3441895e+117
-6.3595403e+117
-6.3579725e+117
-6.3806539e+117
-6.3821911e+117
-6.3458419e+117
-6.3473782e+117
-6.3626311e+117
-6.3611317e+117
-6.3836338e+117
-6.3851016e+117
-6.3300799e+117
-6.3316259e+117
-6.3863107e+117
-6.3869142e+117
-6.4084346e+117
-6.3981854e+117
-6.4090714e+117
-6.3988236e+117
-6.4165486e+117
-6.4172182e+117
-6.385376e+117
-6.385778e+117
-6.407242e+117
-6.3971298e+117
-6.4077944e+117
-6.3976014e+117
-6.4152895e+117
-6.4158898e+117
-6.3876003e+117
-6.3882988e+117
-6.4098223e+117
-6.4179712e+117
-6.3995474e+117
-6.4105707e+117
-6.4002613e+117
-6.418753e+117
-6.389097e+117
-6.389992e+117
-6.4114149e+117
-6.4010863e+117
-6.4123018e+117
-6.4019902e+117
-6.4205137e+117
-6.4196041e+117
-6.3958487e+117
-6.3972999e+117
-6.4182208e+117
-6.4078884e+117
-6.4195944e+117
-6.4092971e+117
-6.4264287e+117
-6.427784e+117
-6.400214e+117
-6.3987317e+117
-6.4209837e+117
-6.4106961e+117
-6.4223807e+117
-6.4121406e+117
-6.4291644e+117
-6.4305601e+117
-6.392028e+117
-6.3909898e+117
-6.4144572e+117
-6.4040806e+117
-6.413365e+117
-6.4030275e+117
-6.4215743e+117
-6.4226975e+117
-6.3944446e+117
-6.3931844e+117
-6.4156487e+117
-6.4052544e+117
-6.4168486e+117
-6.4064841e+117
-6.423886e+117
-6.4250963e+117
-6.423688e+117
-6.4321115e+117
-6.4243235e+117
-6.4327895e+117
-6.4249947e+117
-6.4335158e+117
-6.4256841e+117
-6.4342152e+117
-6.4264474e+117
-6.4349983e+117
-6.4272386e+117
-6.4358077e+117
-6.4281184e+117
-6.4366919e+117
-6.4290315e+117
-6.4376094e+117
-6.4400503e+117
-6.4373263e+117
-6.4379852e+117
-6.4406688e+117
-6.4415219e+117
-6.4387258e+117
-6.4394466e+117
-6.4421092e+117
-6.4430809e+117
-6.4402517e+117
-6.4410233e+117
-6.4437012e+117
-6.4428738e+117
-6.4455604e+117
-6.4419276e+117
-6.4446685e+117
-6.4301159e+117
-6.4386998e+117
-6.4312513e+117
-6.4398429e+117
-6.4324392e+117
-6.4410385e+117
-6.4336309e+117
-6.442212e+117
-6.4349551e+117
-6.4435024e+117
-6.4362723e+117
-6.4448033e+117
-6.437661e+117
-6.4461403e+117
-6.4390209e+117
-6.4474643e+117
-6.4467952e+117
-6.4439819e+117
-6.4450678e+117
-6.4477485e+117
-6.4474315e+117
-6.4500575e+117
-6.4462516e+117
-6.4489999e+117
-6.4499901e+117
-6.4526556e+117
-6.4487258e+117
-6.4514489e+117
-6.4526472e+117
-6.4552261e+117
-6.451331e+117
-6.4540042e+117
-6.4200345e+117
-6.4416733e+117
-6.4316997e+117
-6.4212422e+117
-6.4428452e+117
-6.4328805e+117
-6.4496173e+117
-6.4507902e+117
-6.4223695e+117
-6.4233718e+117
-6.4439535e+117
-6.4340105e+117
-6.4449112e+117
-6.4349786e+117
-6.4518798e+117
-6.452863e+117
-6.4174622e+117
-6.4187622e+117
-6.4391156e+117
-6.4291097e+117
-6.4403924e+117
-6.4304187e+117
-6.4470805e+117
-6.4483552e+117
-6.4161423e+117
-6.4147579e+117
-6.436367e+117
-6.4263941e+117
-6.437754e+117
-6.427778e+117
-6.445721e+117
-6.4443307e+117
-6.401801e+117
-6.4239615e+117
-6.4137422e+117
-6.4034105e+117
-6.42554e+117
-6.4153288e+117
-6.4320945e+117
-6.4336552e+117
-6.405046e+117
-6.4271511e+117
-6.4169573e+117
-6.4066857e+117
-6.4286861e+117
-6.4185299e+117
-6.4352352e+117
-6.4367806e+117
-6.4405414e+117
-6.4489381e+117
-6.4420615e+117
-6.4504408e+117
-6.4436166e+117
-6.4519782e+117
-6.4451344e+117
-6.4534643e+117
-6.4083703e+117
-6.4303229e+117
-6.4201916e+117
-6.4100676e+117
-6.4319168e+117
-6.4218308e+117
-6.4383778e+117
-6.4399513e+117
-6.4132869e+117
-6.4349141e+117
-6.4249376e+117
-6.4117184e+117
-6.4334824e+117
-6.4234466e+117
-6.4414749e+117
-6.4428994e+117
-6.4467138e+117
-6.4550091e+117
-6.4482433e+117
-6.4565128e+117
-6.4497553e+117
-6.4579759e+117
-6.4511501e+117
-6.4593519e+117
-6.4555523e+117
-6.4581684e+117
-6.4541032e+117
-6.4567455e+117
-6.4585508e+117
-6.4610963e+117
-6.4570673e+117
-6.4596937e+117
-6.4615473e+117
-6.4641295e+117
-6.4600904e+117
-6.4627096e+117
-6.4644035e+117
-6.4669719e+117
-6.4630138e+117
-6.4655896e+117
-6.4553139e+117
-6.4635068e+117
-6.4565736e+117
-6.4647615e+117
-6.4525775e+117
-6.4607658e+117
-6.4539574e+117
-6.4621518e+117
-6.4578477e+117
-6.4660175e+117
-6.4590093e+117
-6.4671845e+117
-6.4601086e+117
-6.4682762e+117
-6.4611033e+117
-6.469273e+117
-6.4684181e+117
-6.4658272e+117
-6.4671627e+117
-6.4697303e+117
-6.4684958e+117
-6.4710462e+117
-6.4697691e+117
-6.4723015e+117
-6.4721924e+117
-6.4748598e+117
-6.4710404e+117
-6.4736378e+117
-6.4743415e+117
-6.477054e+117
-6.4733208e+117
-6.4759828e+117
-6.4262081e+117
-6.4254148e+117
-6.4472164e+117
-6.436214e+117
-6.4480242e+117
-6.4370236e+117
-6.4552401e+117
-6.4560879e+117
-6.4238277e+117
-6.4246103e+117
-6.4454741e+117
-6.4345976e+117
-6.4463439e+117
-6.4353936e+117
-6.4534512e+117
-6.4543507e+117
-6.4270948e+117
-6.4279925e+117
-6.4489457e+117
-6.4570059e+117
-6.4379228e+117
-6.4498598e+117
-6.4388274e+117
-6.457917e+117
-6.4288452e+117
-6.4507349e+117
-6.4397074e+117
-6.4295696e+117
-6.4514741e+117
-6.4404364e+117
-6.4588037e+117
-6.4595913e+117
-6.4314499e+117
-6.4319547e+117
-6.4542285e+117
-6.4429858e+117
-6.4536483e+117
-6.4424389e+117
-6.4618403e+117
-6.4624711e+117
-6.4302777e+117
-6.4522644e+117
-6.441187e+117
-6.4308638e+117
-6.4529592e+117
-6.4418017e+117
-6.4611303e+117
-6.4604003e+117
-6.4325514e+117
-6.433167e+117
-6.4549088e+117
-6.4436427e+117
-6.4555677e+117
-6.4442653e+117
-6.4631579e+117
-6.4638283e+117
-6.4338667e+117
-6.4344248e+117
-6.4562603e+117
-6.4449836e+117
-6.4568189e+117
-6.4455506e+117
-6.4645171e+117
-6.4651052e+117
-6.4613861e+117
-6.4696912e+117
-6.462302e+117
-6.4706421e+117
-6.4632071e+117
-6.4715919e+117
-6.4640737e+117
-6.4724713e+117
-6.464999e+117
-6.4734138e+117
-6.4658991e+117
-6.4743303e+117
-6.4668214e+117
-6.4752601e+117
-6.4676388e+117
-6.4761183e+117
-6.4713366e+117
-6.4799482e+117
-6.4719987e+117
-6.4806255e+117
-6.4727102e+117
-6.4813364e+117
-6.4733108e+117
-6.4819605e+117
-6.4778556e+117
-6.4770537e+117
-6.4792767e+117
-6.4786229e+117
-6.4685043e+117
-6.4692552e+117
-6.4699869e+117
-6.4706357e+117
-6.4360012e+117
-6.4356116e+117
-6.4583396e+117
-6.4468639e+117
-6.4587635e+117
-6.4472717e+117
-6.4667144e+117
-6.4671837e+117
-6.434878e+117
-6.4351987e+117
-6.4573836e+117
-6.4460528e+117
-6.4578413e+117
-6.4464159e+117
-6.4656919e+117
-6.4661938e+117
-6.4364553e+117
-6.4368481e+117
-6.4592753e+117
-6.4477515e+117
-6.459762e+117
-6.4481819e+117
-6.4677106e+117
-6.4682245e+117
-6.437716e+117
-6.4373118e+117
-6.4602727e+117
-6.4486939e+117
-6.460686e+117
-6.4491073e+117
-6.468755e+117
-6.4692072e+117
-6.4380919e+117
-6.4383215e+117
-6.461156e+117
-6.4495338e+117
-6.461508e+117
-6.4497951e+117
-6.4696999e+117
-6.4700951e+117
-6.4388088e+117
-6.4385943e+117
-6.4618592e+117
-6.4501023e+117
-6.4621139e+117
-6.4503428e+117
-6.470475e+117
-6.4707704e+117
-6.4391149e+117
-6.439425e+117
-6.4624527e+117
-6.4506742e+117
-6.4627841e+117
-6.4509783e+117
-6.4714468e+117
-6.4711085e+117
-6.4401398e+117
-6.4398053e+117
-6.4631467e+117
-6.4513722e+117
-6.463456e+117
-6.4516985e+117
-6.4721353e+117
-6.4718048e+117
-6.480751e+117
-6.4899276e+117
-6.4804164e+117
-6.4895913e+117
-6.479717e+117
-6.4888797e+117
-6.4800424e+117
-6.4892173e+117
-6.4878055e+117
-6.4872905e+117
-6.4885762e+117
-6.4882612e+117
-6.4782287e+117
-6.4786611e+117
-6.4790729e+117
-6.47938e+117
-6.4739403e+117
-6.4826299e+117
-6.4744692e+117
-6.4832081e+117
-6.475009e+117
-6.4837868e+117
-6.4755019e+117
-6.4843138e+117
-6.4760563e+117
-6.484899e+117
-6.4765843e+117
-6.4854677e+117
-6.4771584e+117
-6.486062e+117
-6.4776461e+117
-6.4866142e+117
-6.4415792e+117
-6.4412124e+117
-6.4645762e+117
-6.4523635e+117
-6.4649449e+117
-6.45275e+117
-6.440794e+117
-6.4404789e+117
-6.4637782e+117
-6.4516252e+117
-6.4641514e+117
-6.4519521e+117
-6.4429801e+117
-6.4432816e+117
-6.4663438e+117
-6.4543068e+117
-6.4660949e+117
-6.454032e+117
-6.4654104e+117
-6.4532938e+117
-6.4657608e+117
-6.4536758e+117
-6.4425392e+117
-6.4421106e+117
-6.4441872e+117
-6.4445251e+117
-6.4673005e+117
-6.4552175e+117
-6.4675964e+117
-6.4555429e+117
-6.4435936e+117
-6.4438587e+117
-6.4669577e+117
-6.4548783e+117
-6.4666612e+117
-6.4546075e+117
-6.4448942e+117
-6.4453045e+117
-6.4683796e+117
-6.4563248e+117
-6.4679791e+117
-6.4559273e+117
-6.446445e+117
-6.4458569e+117
-6.4688688e+117
-6.456875e+117
-6.4693237e+117
-6.457415e+117
-6.337499e+117
-6.3363948e+117
-6.3396637e+117
-6.3385501e+117
-6.3417513e+117
-6.3406942e+117
-6.3436398e+117
-6.3427286e+117
-6.3326798e+117
-6.3313193e+117
-6.3352419e+117
-6.3339866e+117
-6.3280815e+117
-6.3270898e+117
-6.3290274e+117
-6.33009e+117
-6.3169989e+117
-6.3170716e+117
-6.3170459e+117
-6.3171653e+117
-6.3174577e+117
-6.3179467e+117
-6.3192707e+117
-6.318575e+117
-6.3206101e+117
-6.3199848e+117
-6.3218763e+117
-6.3210484e+117
-6.3228082e+117
-6.3238488e+117
-6.3248651e+117
-6.3259682e+117
-5.8515272e+117
-5.8634809e+117
-5.8624798e+117
-5.8506078e+117
-5.8737897e+117
-5.872805e+117
-5.8617325e+117
-5.8720229e+117
-5.8715634e+117
-5.8612768e+117
-5.8498624e+117
-5.8494239e+117
-5.8232624e+117
-5.8147419e+117
-5.8141577e+117
-5.8225683e+117
-5.8061191e+117
-5.7975951e+117
-5.7972544e+117
-5.8056356e+117
-5.8220549e+117
-5.8137127e+117
-5.8132301e+117
-5.8215236e+117
-5.7965878e+117
-5.796957e+117
-5.805249e+117
-5.8048612e+117
-5.8311468e+117
-5.8319059e+117
-5.8409129e+117
-5.8400844e+117
-5.8300423e+117
-5.8305543e+117
-5.8394135e+117
-5.8389326e+117
-5.8492482e+117
-5.8611408e+117
-5.8611849e+117
-5.8492637e+117
-5.8714302e+117
-5.8714506e+117
-5.8613219e+117
-5.8715674e+117
-5.8717343e+117
-5.8614631e+117
-5.8494231e+117
-5.8496086e+117
-5.7958712e+117
-5.7959043e+117
-5.8041796e+117
-5.8042673e+117
-5.8044565e+117
-5.7961933e+117
-5.7959398e+117
-5.8041985e+117
-5.8211383e+117
-5.8127781e+117
-5.8125962e+117
-5.8209997e+117
-5.8210914e+117
-5.8126324e+117
-5.8127635e+117
-5.8212335e+117
-5.8298985e+117
-5.8297369e+117
-5.8387696e+117
-5.8389734e+117
-5.8296217e+117
-5.829722e+117
-5.8386799e+117
-5.8386522e+117
-5.8833883e+117
-5.8939154e+117
-5.8929895e+117
-5.8824232e+117
-5.8816457e+117
-5.8922443e+117
-5.891773e+117
-5.8811767e+117
-5.9154119e+117
-5.9048951e+117
-5.9162544e+117
-5.9039949e+117
-5.9142947e+117
-5.9033096e+117
-5.9147662e+117
-5.9028181e+117
-5.8810519e+117
-5.8916336e+117
-5.8916108e+117
-5.8810483e+117
-5.8811413e+117
-5.8916947e+117
-5.891824e+117
-5.8812941e+117
-5.914072e+117
-5.9026884e+117
-5.914144e+117
-5.9026255e+117
-5.9028141e+117
-5.9027248e+117
-5.9141604e+117
-5.9142408e+117
-5.7891532e+117
-5.780934e+117
-5.7808073e+117
-5.7889015e+117
-5.7727739e+117
-5.7648142e+117
-5.7648954e+117
-5.7727613e+117
-5.7648909e+117
-5.7649371e+117
-5.7726272e+117
-5.7724742e+117
-5.7886822e+117
-5.7805955e+117
-5.7803283e+117
-5.788349e+117
-5.7879574e+117
-5.7799605e+117
-5.7797345e+117
-5.7877033e+117
-5.7644468e+117
-5.7646083e+117
-5.7721212e+117
-5.7719238e+117
-5.7637897e+117
-5.7642089e+117
-5.7717381e+117
-5.771463e+117
-5.7876437e+117
-5.779599e+117
-5.7793803e+117
-5.7875074e+117
-5.8517492e+117
-5.8643733e+117
-5.8648363e+117
-5.8522618e+117
-5.8655048e+117
-5.8661171e+117
-5.8529381e+117
-5.8535124e+117
-5.8237428e+117
-5.8154537e+117
-5.8160066e+117
-5.824285e+117
-5.8069794e+117
-5.7984495e+117
-5.7990732e+117
-5.8075599e+117
-5.8000084e+117
-5.7996303e+117
-5.8080645e+117
-5.8084462e+117
-5.8248614e+117
-5.816514e+117
-5.8168826e+117
-5.8252546e+117
-5.8501457e+117
-5.8629046e+117
-5.8633565e+117
-5.8505864e+117
-5.8638114e+117
-5.8640721e+117
-5.8510723e+117
-5.8514162e+117
-5.7976808e+117
-5.7969596e+117
-5.8054565e+117
-5.8061937e+117
-5.804513e+117
-5.7960096e+117
-5.7963442e+117
-5.804887e+117
-5.8214699e+117
-5.8130061e+117
-5.8134388e+117
-5.8219266e+117
-5.8225411e+117
-5.8140267e+117
-5.8147241e+117
-5.8231536e+117
-5.7642615e+117
-5.763768e+117
-5.7717528e+117
-5.7723899e+117
-5.7712474e+117
-5.7634478e+117
-5.7634262e+117
-5.7713286e+117
-5.7875256e+117
-5.77926e+117
-5.7794796e+117
-5.7878207e+117
-5.788429e+117
-5.7800215e+117
-5.7807025e+117
-5.789133e+117
-5.7658644e+117
-5.7656168e+117
-5.773971e+117
-5.7743597e+117
-5.7652551e+117
-5.7647879e+117
-5.7729728e+117
-5.773545e+117
-5.7898753e+117
-5.7813764e+117
-5.7819929e+117
-5.7905021e+117
-5.7910678e+117
-5.7825115e+117
-5.7829242e+117
-5.7914616e+117
-5.8541434e+117
-5.8668067e+117
-5.8675682e+117
-5.8548761e+117
-5.8684285e+117
-5.8692894e+117
-5.8557297e+117
-5.8566131e+117
-5.802265e+117
-5.8014893e+117
-5.8100318e+117
-5.8109292e+117
-5.8087734e+117
-5.8003072e+117
-5.8007988e+117
-5.8092917e+117
-5.8256512e+117
-5.8172129e+117
-5.8177862e+117
-5.8262614e+117
-5.8271321e+117
-5.8186067e+117
-5.8195386e+117
-5.8280456e+117
-5.8575587e+117
-5.8702183e+117
-5.8711495e+117
-5.8585318e+117
-5.871964e+117
-5.8725656e+117
-5.8594492e+117
-5.8601447e+117
-5.8063371e+117
-5.8052096e+117
-5.8138772e+117
-5.8150058e+117
-5.8118916e+117
-5.8031577e+117
-5.804114e+117
-5.8128384e+117
-5.8289694e+117
-5.8204838e+117
-5.8214677e+117
-5.8299911e+117
-5.8310721e+117
-5.822526e+117
-5.8236178e+117
-5.8320786e+117
-5.791768e+117
-5.7832717e+117
-5.7836273e+117
-5.792184e+117
-5.7746736e+117
-5.7660841e+117
-5.7662473e+117
-5.7749386e+117
-5.7669551e+117
-5.766483e+117
-5.7752127e+117
-5.7757747e+117
-5.7927856e+117
-5.78404e+117
-5.7846304e+117
-5.7934558e+117
-5.7708218e+117
-5.7696248e+117
-5.7784644e+117
-5.779724e+117
-5.7685758e+117
-5.7676731e+117
-5.7764675e+117
-5.7774217e+117
-5.794281e+117
-5.7853716e+117
-5.7863338e+117
-5.7952348e+117
-5.7963454e+117
-5.7874216e+117
-5.7886377e+117
-5.7975e+117
-5.9902066e+117
-5.9773799e+117
-5.9904004e+117
-5.9770461e+117
-6.0174094e+117
-6.0037514e+117
-6.0036693e+117
-6.017422e+117
-5.9901038e+117
-5.9768149e+117
-5.9900961e+117
-5.9767062e+117
-6.0174564e+117
-6.0036402e+117
-6.0036107e+117
-6.0173789e+117
-5.9279501e+117
-5.9271632e+117
-5.9399233e+117
-5.9392008e+117
-5.9521502e+117
-5.9515299e+117
-5.9646185e+117
-5.9641303e+117
-5.9265724e+117
-5.9386674e+117
-5.9382816e+117
-5.9261284e+117
-5.9637685e+117
-5.9635308e+117
-5.9510667e+117
-5.9507439e+117
-5.9259699e+117
-5.9381188e+117
-5.9258912e+117
-5.9380481e+117
-5.9505622e+117
-5.950606e+117
-5.9634203e+117
-5.9634062e+117
-5.9260753e+117
-5.9382555e+117
-5.925981e+117
-5.9381444e+117
-5.9635221e+117
-5.9506651e+117
-5.9507887e+117
-5.9636556e+117
-5.9901011e+117
-5.9766064e+117
-5.9900504e+117
-5.9766161e+117
-6.0176473e+117
-6.0037293e+117
-6.0038718e+117
-6.0178975e+117
-5.9768979e+117
-5.9904389e+117
-5.9767504e+117
-5.9902682e+117
-6.0181897e+117
-6.0040977e+117
-6.0043003e+117
-6.0184276e+117
-5.7032071e+117
-5.7040465e+117
-5.7112278e+117
-5.7104391e+117
-5.7257425e+117
-5.7184516e+117
-5.7177361e+117
-5.725142e+117
-5.7249293e+117
-5.7175987e+117
-5.7179058e+117
-5.7251964e+117
-5.7033738e+117
-5.7030727e+117
-5.7102755e+117
-5.710647e+117
-5.7044023e+117
-5.7037198e+117
-5.7109974e+117
-5.7117439e+117
-5.7258394e+117
-5.7183575e+117
-5.7191595e+117
-5.7266641e+117
-5.7274521e+117
-5.719963e+117
-5.7205926e+117
-5.7281873e+117
-5.7051317e+117
-5.7048705e+117
-5.7123978e+117
-5.7129366e+117
-5.736094e+117
-5.7351825e+117
-5.74331e+117
-5.7443102e+117
-5.7416531e+117
-5.7335932e+117
-5.7344383e+117
-5.7425142e+117
-5.7606835e+117
-5.7518745e+117
-5.7529426e+117
-5.761821e+117
-5.7588139e+117
-5.7500887e+117
-5.7509754e+117
-5.7596939e+117
-5.7328653e+117
-5.7325234e+117
-5.7405269e+117
-5.7408864e+117
-5.7409385e+117
-5.7332068e+117
-5.7327734e+117
-5.7406856e+117
-5.7576596e+117
-5.7489664e+117
-5.7493448e+117
-5.7580746e+117
-5.7574832e+117
-5.7490506e+117
-5.7489807e+117
-5.7575307e+117
-5.7269102e+117
-5.7203346e+117
-5.7206608e+117
-5.7270993e+117
-5.7571941e+117
-5.7500334e+117
-5.7498886e+117
-5.7570319e+117
-5.7429477e+117
-5.7360005e+117
-5.7358672e+117
-5.742803e+117
-5.7348787e+117
-5.7355223e+117
-5.742362e+117
-5.7417597e+117
-5.7567422e+117
-5.7494775e+117
-5.7488803e+117
-5.7562157e+117
-5.75577e+117
-5.7483489e+117
-5.7480671e+117
-5.7556072e+117
-5.7411367e+117
-5.7341869e+117
-5.7337739e+117
-5.7407383e+117
-5.7338091e+117
-5.7336193e+117
-5.7406536e+117
-5.7408611e+117
-5.7558254e+117
-5.7481005e+117
-5.7483651e+117
-5.7561962e+117
-5.7272959e+117
-5.7208192e+117
-5.7208958e+117
-5.72737e+117
-5.727141e+117
-5.7205573e+117
-5.7196466e+117
-5.7264928e+117
-5.7336549e+117
-5.7339796e+117
-5.7412698e+117
-5.7411337e+117
-5.7411287e+117
-5.7339953e+117
-5.7341291e+117
-5.7413053e+117
-5.7566317e+117
-5.7487099e+117
-5.7489803e+117
-5.7570024e+117
-5.7572491e+117
-5.7490908e+117
-5.7490817e+117
-5.7573722e+117
-5.7360432e+117
-5.7358072e+117
-5.7426826e+117
-5.7429628e+117
-5.7422685e+117
-5.7352615e+117
-5.7354874e+117
-5.7424349e+117
-5.7569791e+117
-5.749445e+117
-5.7496336e+117
-5.7571297e+117
-5.7572979e+117
-5.7498693e+117
-5.7500829e+117
-5.7573795e+117
-5.7554542e+117
-5.7479338e+117
-5.7487217e+117
-5.7561294e+117
-5.7405462e+117
-5.7333724e+117
-5.7342084e+117
-5.7413992e+117
-5.7352259e+117
-5.7348235e+117
-5.7419009e+117
-5.7422652e+117
-5.7566999e+117
-5.7492188e+117
-5.7495025e+117
-5.7569814e+117
-5.8267947e+117
-5.8177428e+117
-5.8166927e+117
-5.8257247e+117
-5.8085349e+117
-5.7993793e+117
-5.7983981e+117
-5.8075004e+117
-5.7976796e+117
-5.7978559e+117
-5.8068974e+117
-5.8067302e+117
-5.8251435e+117
-5.816068e+117
-5.8158719e+117
-5.8249072e+117
-5.7902542e+117
-5.7812979e+117
-5.7804199e+117
-5.7892989e+117
-5.7724123e+117
-5.7637238e+117
-5.7630966e+117
-5.7716255e+117
-5.7630616e+117
-5.7628906e+117
-5.7712525e+117
-5.771302e+117
-5.7888134e+117
-5.7799555e+117
-5.779877e+117
-5.7886641e+117
-5.7647778e+117
-5.7644762e+117
-5.7725097e+117
-5.7727859e+117
-5.763917e+117
-5.7633175e+117
-5.7715011e+117
-5.7720007e+117
-5.788816e+117
-5.7800536e+117
-5.7804474e+117
-5.789111e+117
-5.7894073e+117
-5.7808676e+117
-5.7810456e+117
-5.7894355e+117
-5.8249426e+117
-5.8159652e+117
-5.8159923e+117
-5.8248668e+117
-5.8068468e+117
-5.7977968e+117
-5.7980019e+117
-5.8069724e+117
-5.7980231e+117
-5.7981572e+117
-5.8069958e+117
-5.8066935e+117
-5.824664e+117
-5.8158937e+117
-5.81544e+117
-5.824079e+117
-5.9924133e+117
-5.9798281e+117
-5.979626e+117
-5.9922762e+117
-6.0051449e+117
-6.0182131e+117
-6.0052542e+117
-6.0183268e+117
-6.0179562e+117
-6.0050429e+117
-6.0047319e+117
-6.0180125e+117
-5.9790054e+117
-5.9921477e+117
-5.9793954e+117
-5.9917452e+117
-5.9433427e+117
-5.9323372e+117
-5.9438079e+117
-5.9317639e+117
-5.9555162e+117
-5.9551312e+117
-5.9675028e+117
-5.9671919e+117
-5.9425682e+117
-5.93127e+117
-5.9429147e+117
-5.9308254e+117
-5.9669125e+117
-5.9547747e+117
-5.9544279e+117
-5.9665133e+117
-5.9423233e+117
-5.9304917e+117
-5.9300002e+117
-5.9418299e+117
-5.9537698e+117
-5.9658347e+117
-5.9541539e+117
-5.9661274e+117
-5.965134e+117
-5.9534011e+117
-5.9528107e+117
-5.9654324e+117
-5.9287203e+117
-5.9414014e+117
-5.9294634e+117
-5.9406667e+117
-5.9785885e+117
-5.9782588e+117
-5.9913612e+117
-5.9910254e+117
-6.0044324e+117
-6.0041462e+117
-6.017762e+117
-6.0175666e+117
-5.9905667e+117
-5.977868e+117
-5.9907224e+117
-5.9776883e+117
-6.0174488e+117
-6.0039356e+117
-6.003811e+117
-6.0173537e+117
-5.8563668e+117
-5.8687513e+117
-5.8676783e+117
-5.8553445e+117
-5.8793088e+117
-5.878226e+117
-5.8670949e+117
-5.8774804e+117
-5.8769417e+117
-5.8666072e+117
-5.8547681e+117
-5.8543588e+117
-5.834876e+117
-5.8359161e+117
-5.8453507e+117
-5.8443301e+117
-5.8340048e+117
-5.8342893e+117
-5.8437356e+117
-5.8434083e+117
-5.8539788e+117
-5.8661715e+117
-5.8658912e+117
-5.8538127e+117
-5.8765208e+117
-5.8761237e+117
-5.8654866e+117
-5.8755897e+117
-5.8747851e+117
-5.8646405e+117
-5.8534808e+117
-5.8526637e+117
-5.8337822e+117
-5.8339027e+117
-5.84314e+117
-5.8430053e+117
-5.8328152e+117
-5.833506e+117
-5.8426876e+117
-5.8419404e+117
-5.8984135e+117
-5.8889427e+117
-5.899351e+117
-5.8879028e+117
-5.9100676e+117
-5.9092357e+117
-5.9210685e+117
-5.9203668e+117
-5.8970986e+117
-5.8871255e+117
-5.8976723e+117
-5.8865602e+117
-5.9198e+117
-5.9085826e+117
-5.9079981e+117
-5.9192619e+117
-5.8961895e+117
-5.8861551e+117
-5.8966928e+117
-5.8856898e+117
-5.9189001e+117
-5.9076234e+117
-5.907086e+117
-5.9183766e+117
-5.8947931e+117
-5.8850961e+117
-5.895578e+117
-5.8843045e+117
-5.9178091e+117
-5.9064974e+117
-5.9057007e+117
-5.91703e+117
-6.1670959e+117
-6.1667463e+117
-6.186621e+117
-6.1869638e+117
-6.2087054e+117
-6.2082987e+117
-6.2308366e+117
-6.2313419e+117
-6.1657941e+117
-6.185655e+117
-6.1862979e+117
-6.1663785e+117
-6.2072217e+117
-6.2295632e+117
-6.2301415e+117
-6.2078051e+117
-6.1633241e+117
-6.1829231e+117
-6.1837433e+117
-6.164018e+117
-6.1645758e+117
-6.1843455e+117
-6.1851016e+117
-6.1652463e+117
-6.2042199e+117
-6.2262893e+117
-6.2270693e+117
-6.2050147e+117
-6.2057926e+117
-6.2279941e+117
-6.2287099e+117
-6.2065121e+117
-6.2781618e+117
-6.2506716e+117
-6.2772155e+117
-6.2515462e+117
-6.3056746e+117
-6.306669e+117
-6.2800565e+117
-6.2524994e+117
-6.2791534e+117
-6.2533176e+117
-6.3076868e+117
-6.3087096e+117
-6.2818485e+117
-6.2542143e+117
-6.2810159e+117
-6.2549256e+117
-6.3097205e+117
-6.3106554e+117
-6.256306e+117
-6.283436e+117
-6.2557033e+117
-6.2827278e+117
-6.3116143e+117
-6.3124579e+117
-6.0319142e+117
-6.0464899e+117
-6.0468642e+117
-6.03224e+117
-6.0328523e+117
-6.0325831e+117
-6.0472437e+117
-6.0475413e+117
-6.0613481e+117
-6.0765851e+117
-6.0770285e+117
-6.0617556e+117
-6.0624833e+117
-6.0621623e+117
-6.0774513e+117
-6.0777936e+117
-6.0314208e+117
-6.0457429e+117
-6.0458998e+117
-6.0315127e+117
-6.0315775e+117
-6.0459889e+117
-6.046161e+117
-6.0316115e+117
-6.0603507e+117
-6.0753377e+117
-6.0755849e+117
-6.0605511e+117
-6.0607248e+117
-6.07585e+117
-6.0761668e+117
-6.0609772e+117
-6.0915108e+117
-6.1085198e+117
-6.1089373e+117
-6.0918329e+117
-6.0921685e+117
-6.1093263e+117
-6.1097769e+117
-6.0925481e+117
-6.1259168e+117
-6.1440024e+117
-6.1445631e+117
-6.1264025e+117
-6.1268801e+117
-6.145109e+117
-6.1456588e+117
-6.1273689e+117
-6.093002e+117
-6.1102496e+117
-6.1107419e+117
-6.0934705e+117
-6.0942546e+117
-6.0938995e+117
-6.1111602e+117
-6.1115114e+117
-6.1278866e+117
-6.1462185e+117
-6.1467298e+117
-6.1283806e+117
-6.1291697e+117
-6.1288095e+117
-6.1471672e+117
-6.1475314e+117
-6.180263e+117
-6.1600754e+117
-6.1792932e+117
-6.1609095e+117
-6.1618029e+117
-6.1812304e+117
-6.1821852e+117
-6.1626457e+117
-6.2003356e+117
-6.2221894e+117
-6.2013645e+117
-6.2232718e+117
-6.2244067e+117
-6.2252666e+117
-6.2023917e+117
-6.2033211e+117
-6.1576289e+117
-6.1763603e+117
-6.158235e+117
-6.1770763e+117
-6.197768e+117
-6.2194059e+117
-6.1969868e+117
-6.2185467e+117
-6.1785108e+117
-6.1587669e+117
-6.177758e+117
-6.1593418e+117
-6.1985877e+117
-6.2202666e+117
-6.221056e+117
-6.1993734e+117
-6.2425092e+117
-6.2686954e+117
-6.2696409e+117
-6.2434215e+117
-6.2443036e+117
-6.2705217e+117
-6.2451628e+117
-6.2714085e+117
-6.2968172e+117
-6.2977472e+117
-6.2996189e+117
-6.2986347e+117
-6.2739021e+117
-6.2463378e+117
-6.2726375e+117
-6.2475158e+117
-6.3008296e+117
-6.3021244e+117
-6.276112e+117
-6.248674e+117
-6.2750491e+117
-6.2496203e+117
-6.3033508e+117
-6.3045329e+117
-6.0891896e+117
-6.0893169e+117
-6.1054375e+117
-6.1056744e+117
-6.1220295e+117
-6.1392429e+117
-6.1396921e+117
-6.1223685e+117
-6.1063563e+117
-6.0894919e+117
-6.1059779e+117
-6.0897414e+117
-6.1227622e+117
-6.1401466e+117
-6.1405449e+117
-6.1231226e+117
-6.0317205e+117
-6.0315962e+117
-6.0454004e+117
-6.0453042e+117
-6.0593207e+117
-6.073735e+117
-6.0593594e+117
-6.0736997e+117
-6.0452202e+117
-6.0313821e+117
-6.0451711e+117
-6.0314216e+117
-6.0592791e+117
-6.0737878e+117
-6.0739026e+117
-6.059349e+117
-6.0453707e+117
-6.0313965e+117
-6.0453213e+117
-6.0313203e+117
-6.0313053e+117
-6.0454628e+117
-6.0455704e+117
-6.0313036e+117
-6.0595494e+117
-6.0741876e+117
-6.0597114e+117
-6.0744493e+117
-6.0747573e+117
-6.0750457e+117
-6.0599144e+117
-6.0601166e+117
-6.107099e+117
-6.0900319e+117
-6.1066744e+117
-6.0903703e+117
-6.0907757e+117
-6.1076072e+117
-6.1080951e+117
-6.0911536e+117
-6.1236537e+117
-6.1412498e+117
-6.1242086e+117
-6.1419471e+117
-6.1427109e+117
-6.1433872e+117
-6.1248391e+117
-6.1254031e+117
-5.8607235e+117
-5.8730943e+117
-5.8737171e+117
-5.8614289e+117
-5.8743635e+117
-5.8747563e+117
-5.8621768e+117
-5.8626419e+117
-5.832984e+117
-5.8246776e+117
-5.8256238e+117
-5.8338366e+117
-5.8161555e+117
-5.8075007e+117
-5.8086599e+117
-5.817201e+117
-5.8105565e+117
-5.8097314e+117
-5.8181433e+117
-5.8189407e+117
-5.83472e+117
-5.8265108e+117
-5.8272469e+117
-5.8353863e+117
-5.8628357e+117
-5.874942e+117
-5.8751024e+117
-5.8630055e+117
-5.8752073e+117
-5.8750455e+117
-5.8630964e+117
-5.8628776e+117
-5.8357427e+117
-5.8277306e+117
-5.8278747e+117
-5.8358967e+117
-5.8194889e+117
-5.8111131e+117
-5.8113196e+117
-5.8196446e+117
-5.810915e+117
-5.8112637e+117
-5.819531e+117
-5.8192025e+117
-5.8358758e+117
-5.8277699e+117
-5.827435e+117
-5.8355506e+117
-5.7767039e+117
-5.7770391e+117
-5.7856036e+117
-5.7853588e+117
-5.7771133e+117
-5.7768234e+117
-5.7853611e+117
-5.785674e+117
-5.8025715e+117
-5.7939723e+117
-5.7942704e+117
-5.8028213e+117
-5.8027947e+117
-5.7942372e+117
-5.7939721e+117
-5.8024739e+117
-5.7761206e+117
-5.7749967e+117
-5.7836712e+117
-5.7847236e+117
-5.78107e+117
-5.7721922e+117
-5.7736181e+117
-5.7824377e+117
-5.7986911e+117
-5.7898847e+117
-5.7912144e+117
-5.7999562e+117
-5.8011113e+117
-5.7924098e+117
-5.7933698e+117
-5.8019888e+117
-5.8622197e+117
-5.874722e+117
-5.8748425e+117
-5.862308e+117
-5.8750712e+117
-5.8752258e+117
-5.8625286e+117
-5.8626511e+117
-5.8346007e+117
-5.8264043e+117
-5.8263269e+117
-5.8345654e+117
-5.8179705e+117
-5.8094228e+117
-5.8093959e+117
-5.817895e+117
-5.8095234e+117
-5.80949e+117
-5.8178538e+117
-5.8178397e+117
-5.8345728e+117
-5.8262593e+117
-5.8261865e+117
-5.8344916e+117
-5.8625034e+117
-5.8747923e+117
-5.8747164e+117
-5.8623994e+117
-5.8747958e+117
-5.8747634e+117
-5.8624373e+117
-5.8623844e+117
-5.8351193e+117
-5.8269852e+117
-5.8266912e+117
-5.8348591e+117
-5.8187113e+117
-5.8103903e+117
-5.8100627e+117
-5.8183824e+117
-5.8095824e+117
-5.8098176e+117
-5.8181672e+117
-5.8180435e+117
-5.8347905e+117
-5.8265315e+117
-5.8264478e+117
-5.8347043e+117
-5.8019676e+117
-5.7935384e+117
-5.7931454e+117
-5.8015927e+117
-5.7849333e+117
-5.7762461e+117
-5.7758316e+117
-5.7845206e+117
-5.7754498e+117
-5.7755533e+117
-5.7841277e+117
-5.7839416e+117
-5.8013172e+117
-5.7927677e+117
-5.7924776e+117
-5.8010156e+117
-5.7766364e+117
-5.7763143e+117
-5.7843769e+117
-5.7846884e+117
-5.7758216e+117
-5.7754505e+117
-5.7837626e+117
-5.7840076e+117
-5.8007982e+117
-5.7922329e+117
-5.7923739e+117
-5.8008316e+117
-5.8010411e+117
-5.7926631e+117
-5.7928776e+117
-5.8011553e+117
-5.7086125e+117
-5.7072022e+117
-5.7152778e+117
-5.7167876e+117
-5.7132387e+117
-5.7053029e+117
-5.7060557e+117
-5.7140832e+117
-5.7290277e+117
-5.7210759e+117
-5.7221053e+117
-5.7302382e+117
-5.7316888e+117
-5.7234354e+117
-5.724912e+117
-5.7331251e+117
-5.7414731e+117
-5.740063e+117
-5.7485809e+117
-5.7499397e+117
-5.7455801e+117
-5.7371824e+117
-5.7385611e+117
-5.7470706e+117
-5.7661602e+117
-5.7573263e+117
-5.7586114e+117
-5.7673626e+117
-5.7632038e+117
-5.7542839e+117
-5.7558138e+117
-5.7646954e+117
-5.7112103e+117
-5.7110952e+117
-5.7187151e+117
-5.7186231e+117
-5.7108041e+117
-5.7098559e+117
-5.7178895e+117
-5.718695e+117
-5.7341368e+117
-5.7259563e+117
-5.7265699e+117
-5.7345902e+117
-5.7343911e+117
-5.7264219e+117
-5.7261948e+117
-5.7340293e+117
-5.7421757e+117
-5.7425927e+117
-5.7509764e+117
-5.7505511e+117
-5.7508232e+117
-5.7424216e+117
-5.7428012e+117
-5.7511652e+117
-5.7681242e+117
-5.7594126e+117
-5.7597402e+117
-5.7684182e+117
-5.7683179e+117
-5.7596039e+117
-5.7591801e+117
-5.7679287e+117
-5.7160147e+117
-5.7143045e+117
-5.7216296e+117
-5.7232968e+117
-5.7129678e+117
-5.7119416e+117
-5.7192831e+117
-5.7204099e+117
-5.7343756e+117
-5.7267312e+117
-5.7278274e+117
-5.735392e+117
-5.7365408e+117
-5.7290337e+117
-5.7305027e+117
-5.7377736e+117
-5.7115544e+117
-5.7113494e+117
-5.7184942e+117
-5.7187584e+117
-5.7113299e+117
-5.7111327e+117
-5.7184204e+117
-5.7185034e+117
-5.7336562e+117
-5.7258842e+117
-5.7258345e+117
-5.7334673e+117
-5.7334068e+117
-5.7257778e+117
-5.7261093e+117
-5.7337117e+117
-5.7416414e+117
-5.7413797e+117
-5.7496246e+117
-5.7498197e+117
-5.7500833e+117
-5.7417429e+117
-5.7414708e+117
-5.7497525e+117
-5.7674456e+117
-5.7586766e+117
-5.7583273e+117
-5.7670474e+117
-5.7668418e+117
-5.7581704e+117
-5.7582797e+117
-5.7668507e+117
-5.7670427e+117
-5.758659e+117
-5.7592953e+117
-5.7675345e+117
-5.7503366e+117
-5.7422461e+117
-5.7431684e+117
-5.7511245e+117
-5.7451892e+117
-5.744181e+117
-5.7519829e+117
-5.7527724e+117
-5.7681467e+117
-5.7600166e+117
-5.7605977e+117
-5.768575e+117
-6.1199263e+117
-6.120659e+117
-6.1368021e+117
-6.1375281e+117
-6.1381945e+117
-6.1388198e+117
-6.1213712e+117
-6.1217195e+117
-6.0889721e+117
-6.1049554e+117
-6.0886963e+117
-6.1051857e+117
-6.0881532e+117
-6.0876075e+117
-6.1035828e+117
-6.1042638e+117
-6.0302818e+117
-6.0304653e+117
-6.0434048e+117
-6.0436151e+117
-6.0567745e+117
-6.0570422e+117
-6.0705565e+117
-6.0709003e+117
-6.0307132e+117
-6.0439622e+117
-6.0443338e+117
-6.030976e+117
-6.0714083e+117
-6.071956e+117
-6.0574849e+117
-6.0579422e+117
-6.101291e+117
-6.0855127e+117
-6.0859322e+117
-6.1017876e+117
-6.1180652e+117
-6.1349609e+117
-6.1174923e+117
-6.1343606e+117
-6.1361296e+117
-6.1187182e+117
-6.1192134e+117
-6.1355632e+117
-6.1023782e+117
-6.0864823e+117
-6.0870378e+117
-6.1028845e+117
-6.0312741e+117
-6.0446998e+117
-6.0315285e+117
-6.0449796e+117
-6.0586747e+117
-6.0583619e+117
-6.0724126e+117
-6.0728179e+117
-6.0317271e+117
-6.0453563e+117
-6.0316653e+117
-6.0452239e+117
-6.0732558e+117
-6.0590386e+117
-6.0592532e+117
-6.0735314e+117
-6.0840324e+117
-6.099762e+117
-6.0840029e+117
-6.099804e+117
-6.1159795e+117
-6.1158731e+117
-6.1328773e+117
-6.1327146e+117
-6.0425199e+117
-6.0291398e+117
-6.0422388e+117
-6.0293875e+117
-6.0554336e+117
-6.0691603e+117
-6.0694467e+117
-6.0557509e+117
-6.0431121e+117
-6.0297037e+117
-6.0427973e+117
-6.0300052e+117
-6.0561081e+117
-6.0698282e+117
-6.070233e+117
-6.0564582e+117
-6.1000154e+117
-6.0841044e+117
-6.0998379e+117
-6.0843262e+117
-6.1327914e+117
-6.1159763e+117
-6.1161543e+117
-6.1329646e+117
-6.1007822e+117
-6.0847167e+117
-6.1004134e+117
-6.0851106e+117
-6.1333555e+117
-6.1165453e+117
-6.1169302e+117
-6.1337613e+117
-6.2351314e+117
-6.2606333e+117
-6.2606774e+117
-6.2350681e+117
-6.234741e+117
-6.2348837e+117
-6.2604565e+117
-6.2603365e+117
-6.2878575e+117
-6.2878088e+117
-6.2876859e+117
-6.2876923e+117
-6.1700211e+117
-6.1514081e+117
-6.170001e+117
-6.1513423e+117
-6.1904027e+117
-6.2116368e+117
-6.2114651e+117
-6.1903335e+117
-6.1694137e+117
-6.1510564e+117
-6.1696627e+117
-6.1508459e+117
-6.1900989e+117
-6.2113433e+117
-6.1898794e+117
-6.2111823e+117
-6.1508912e+117
-6.1694508e+117
-6.1696583e+117
-6.1510761e+117
-6.151898e+117
-6.1514554e+117
-6.17004e+117
-6.1705092e+117
-6.2112805e+117
-6.189941e+117
-6.1901586e+117
-6.2115145e+117
-6.1910615e+117
-6.2119554e+117
-6.1905635e+117
-6.2124861e+117
-6.260829e+117
-6.2348683e+117
-6.2605027e+117
-6.2351385e+117
-6.2879026e+117
-6.288284e+117
-6.2361674e+117
-6.2619381e+117
-6.2356139e+117
-6.261352e+117
-6.288871e+117
-6.2895318e+117
-6.2368944e+117
-6.2626522e+117
-6.2632943e+117
-6.2376141e+117
-6.2902259e+117
-6.29073e+117
-6.2383533e+117
-6.2386713e+117
-6.2643767e+117
-6.2637715e+117
-6.2911382e+117
-6.291963e+117
-6.1740899e+117
-6.1548517e+117
-6.173437e+117
-6.1555555e+117
-6.1940223e+117
-6.2155031e+117
-6.2160798e+117
-6.1946143e+117
-6.1755421e+117
-6.1561677e+117
-6.1746553e+117
-6.15698e+117
-6.1952278e+117
-6.2167443e+117
-6.1960819e+117
-6.21754e+117
-6.1525073e+117
-6.1530956e+117
-6.1711435e+117
-6.171755e+117
-6.1923815e+117
-6.2139076e+117
-6.1917309e+117
-6.2131954e+117
-6.2146844e+117
-6.1930424e+117
-6.1934902e+117
-6.214998e+117
-6.1723407e+117
-6.1536376e+117
-6.1542178e+117
-6.1728287e+117
-6.2659043e+117
-6.2392582e+117
-6.2651081e+117
-6.2399044e+117
-6.2928334e+117
-6.2937371e+117
-6.2414685e+117
-6.2676231e+117
-6.2406268e+117
-6.2667086e+117
-6.2946662e+117
-6.2957067e+117
-5.7925312e+117
-5.7833001e+117
-5.7824814e+117
-5.7915364e+117
-5.8007176e+117
-5.8018276e+117
-5.8111887e+117
-5.8099326e+117
-5.8297831e+117
-5.8205674e+117
-5.8191838e+117
-5.8282921e+117
-5.9573072e+117
-5.9685506e+117
-5.9567979e+117
-5.9681041e+117
-6.0160375e+117
-6.0037359e+117
-6.0032579e+117
-6.016408e+117
-5.9797772e+117
-5.9801861e+117
-5.9917834e+117
-5.9921617e+117
-6.01678e+117
-6.0044924e+117
-6.0171036e+117
-6.0041468e+117
-5.9804832e+117
-5.9924628e+117
-5.9926336e+117
-5.9805863e+117
-5.9805029e+117
-5.980576e+117
-5.9926502e+117
-5.9926386e+117
-6.0174962e+117
-6.0047737e+117
-6.0173731e+117
-6.0049141e+117
-6.0050945e+117
-6.0178714e+117
-6.0050328e+117
-6.0177049e+117
-5.93474e+117
-5.9456951e+117
-5.9452631e+117
-5.9341443e+117
-5.9328812e+117
-5.9334949e+117
-5.9447552e+117
-5.9442619e+117
-5.9683124e+117
-5.9569175e+117
-5.9684799e+117
-5.9566222e+117
-5.9558809e+117
-5.9677733e+117
-5.9562643e+117
-5.9680492e+117
-5.9466482e+117
-5.9359685e+117
-5.946658e+117
-5.9360026e+117
-5.9575859e+117
-5.9688242e+117
-5.9688347e+117
-5.9575464e+117
-5.9460665e+117
-5.9356804e+117
-5.9464523e+117
-5.9351729e+117
-5.9574561e+117
-5.9688053e+117
-5.9571939e+117
-5.9686431e+117
-5.9804092e+117
-5.9926385e+117
-5.9925848e+117
-5.9803077e+117
-5.9801713e+117
-5.9925735e+117
-5.9799974e+117
-5.9924935e+117
-6.0182328e+117
-6.0052064e+117
-6.0180805e+117
-6.0052503e+117
-6.0052933e+117
-6.0053123e+117
-6.0183372e+117
-6.0183603e+117
-5.893344e+117
-5.8923944e+117
-5.9032419e+117
-5.9023203e+117
-5.9126037e+117
-5.9239733e+117
-5.923224e+117
-5.9134728e+117
-5.8913074e+117
-5.890121e+117
-5.9002883e+117
-5.9013154e+117
-5.9116967e+117
-5.9108218e+117
-5.9224386e+117
-5.9217024e+117
-5.9150494e+117
-5.9253981e+117
-5.9254523e+117
-5.915049e+117
-5.9039813e+117
-5.8946824e+117
-5.9045076e+117
-5.8941419e+117
-5.9146364e+117
-5.9250425e+117
-5.9140649e+117
-5.9244489e+117
-5.8729439e+117
-5.8607113e+117
-5.8840429e+117
-5.8830691e+117
-5.8718008e+117
-5.8819404e+117
-5.8806366e+117
-5.8703213e+117
-5.8595499e+117
-5.8579986e+117
-5.8401795e+117
-5.8496674e+117
-5.8374406e+117
-5.8389891e+117
-5.8484787e+117
-5.846942e+117
-5.7031714e+117
-5.6948815e+117
-5.695284e+117
-5.7034214e+117
-5.7038316e+117
-5.6959e+117
-5.6960993e+117
-5.7039817e+117
-5.7034784e+117
-5.6954511e+117
-5.6957167e+117
-5.7037313e+117
-5.6881951e+117
-5.6797756e+117
-5.6808026e+117
-5.6892163e+117
-5.7042345e+117
-5.6963044e+117
-5.6973136e+117
-5.7052392e+117
-5.6844196e+117
-5.6823783e+117
-5.6905698e+117
-5.6925971e+117
-5.7066036e+117
-5.6986514e+117
-5.7005595e+117
-5.7083952e+117
-6.2629755e+117
-6.2623889e+117
-6.2615314e+117
-6.2607871e+117
-6.2807053e+117
-6.2800546e+117
-6.2935379e+117
-6.2941931e+117
-6.2815501e+117
-6.294939e+117
-6.2955594e+117
-6.2820786e+117
-6.2584462e+117
-6.2580728e+117
-6.2779919e+117
-6.2774006e+117
-6.2911885e+117
-6.2917769e+117
-6.259955e+117
-6.2793088e+117
-6.2591321e+117
-6.27868e+117
-6.2924026e+117
-6.2929113e+117
-6.3510582e+117
-6.3382034e+117
-6.3376926e+117
-6.3515869e+117
-6.3213329e+117
-6.3068829e+117
-6.3075036e+117
-6.3219095e+117
-6.3081849e+117
-6.3225269e+117
-6.3230909e+117
-6.3087907e+117
-6.3387774e+117
-6.3521562e+117
-6.3526761e+117
-6.3393139e+117
-6.3052148e+117
-6.3046092e+117
-6.319045e+117
-6.3196787e+117
-6.3360245e+117
-6.3353972e+117
-6.3488199e+117
-6.349447e+117
-6.33714e+117
-6.3366296e+117
-6.3500347e+117
-6.350464e+117
-6.3058136e+117
-6.3202818e+117
-6.3207846e+117
-6.3063112e+117
-6.3662437e+117
-6.384052e+117
-6.3992628e+117
-6.3996651e+117
-6.3667101e+117
-6.3844061e+117
-6.3981941e+117
-6.3987365e+117
-6.3656598e+117
-6.3835183e+117
-6.3650658e+117
-6.3828422e+117
-6.4217791e+117
-6.4213359e+117
-6.4364391e+117
-6.4360096e+117
-6.4226721e+117
-6.4223765e+117
-6.4372128e+117
-6.4369268e+117
-6.3636304e+117
-6.3816135e+117
-6.3630222e+117
-6.380931e+117
-6.3963897e+117
-6.3969791e+117
-6.4199089e+117
-6.4346435e+117
-6.4203886e+117
-6.4351063e+117
-6.3974942e+117
-6.3978354e+117
-6.4209721e+117
-6.42069e+117
-6.4354129e+117
-6.4356478e+117
-6.3641798e+117
-6.3821539e+117
-6.3645513e+117
-6.3824743e+117
-6.2633369e+117
-6.2641395e+117
-6.2833293e+117
-6.2825502e+117
-6.2961698e+117
-6.2968454e+117
-6.2977347e+117
-6.2974764e+117
-6.2648913e+117
-6.2840378e+117
-6.2654271e+117
-6.2843693e+117
-6.3094481e+117
-6.3100649e+117
-6.3243261e+117
-6.3237497e+117
-6.3537574e+117
-6.3532765e+117
-6.339957e+117
-6.3404808e+117
-6.3541135e+117
-6.3409036e+117
-6.3411834e+117
-6.3543061e+117
-6.310584e+117
-6.324776e+117
-6.3250757e+117
-6.310863e+117
-6.3673004e+117
-6.3849104e+117
-6.4000913e+117
-6.4004214e+117
-6.3677241e+117
-6.3853527e+117
-6.4007196e+117
-6.4006002e+117
-6.3679283e+117
-6.3855501e+117
-6.3681147e+117
-6.3856765e+117
-6.4233466e+117
-6.423423e+117
-6.4378955e+117
-6.4378559e+117
-6.4232163e+117
-6.4231298e+117
-6.4377324e+117
-6.4375982e+117
-6.4008285e+117
-6.4011306e+117
-6.3686863e+117
-6.3861582e+117
-6.3685001e+117
-6.3858232e+117
-6.3688712e+117
-6.3863777e+117
-6.4013962e+117
-6.4015965e+117
-6.3690739e+117
-6.3864762e+117
-6.4241687e+117
-6.4385026e+117
-6.4242322e+117
-6.43855e+117
-6.4235663e+117
-6.4380314e+117
-6.4237822e+117
-6.4382319e+117
-6.3536855e+117
-6.3702267e+117
-6.3846843e+117
-6.3849877e+117
-6.3539116e+117
-6.3705924e+117
-6.3541584e+117
-6.3708073e+117
-6.3851398e+117
-6.3854841e+117
-6.3541811e+117
-6.3709543e+117
-6.3975094e+117
-6.4097203e+117
-6.3971505e+117
-6.4093829e+117
-6.4234684e+117
-6.4237948e+117
-6.3969096e+117
-6.409047e+117
-6.3966586e+117
-6.4088422e+117
-6.4230726e+117
-6.422779e+117
-6.3542773e+117
-6.3711627e+117
-6.3857425e+117
-6.3859602e+117
-6.3544892e+117
-6.3713914e+117
-6.3549199e+117
-6.3717596e+117
-6.3547304e+117
-6.37156e+117
-6.3861561e+117
-6.3864507e+117
-6.398654e+117
-6.4111131e+117
-6.3983316e+117
-6.4107601e+117
-6.4250069e+117
-6.4253581e+117
-6.3980525e+117
-6.4103537e+117
-6.3978251e+117
-6.4101274e+117
-6.4242483e+117
-6.4245868e+117
-6.355192e+117
-6.3720529e+117
-6.386788e+117
-6.3870245e+117
-6.3553087e+117
-6.3723106e+117
-6.3553924e+117
-6.3724094e+117
-6.3871102e+117
-6.3872177e+117
-6.3554328e+117
-6.3724632e+117
-6.3994861e+117
-6.4119736e+117
-6.3993507e+117
-6.4118513e+117
-6.4262067e+117
-6.4263421e+117
-6.3992088e+117
-6.4116366e+117
-6.3990098e+117
-6.4114887e+117
-6.4257342e+117
-6.4259469e+117
-6.3556526e+117
-6.3726089e+117
-6.387361e+117
-6.3877351e+117
-6.35576e+117
-6.3729216e+117
-6.3560562e+117
-6.3731947e+117
-6.3880426e+117
-6.3883318e+117
-6.3564293e+117
-6.3734371e+117
-6.4006942e+117
-6.4132203e+117
-6.4003716e+117
-6.4129402e+117
-6.4273194e+117
-6.4275977e+117
-6.400023e+117
-6.4125392e+117
-6.3996946e+117
-6.4122579e+117
-6.426647e+117
-6.4269496e+117
-6.3326759e+117
-6.3460205e+117
-6.3464706e+117
-6.3332298e+117
-6.355819e+117
-6.3738539e+117
-6.3894278e+117
-6.3899181e+117
-6.3563677e+117
-6.3744645e+117
-6.3571293e+117
-6.3750434e+117
-6.3903521e+117
-6.3907655e+117
-6.3579063e+117
-6.3755232e+117
-6.4140597e+117
-6.4138041e+117
-6.4290107e+117
-6.4287194e+117
-6.4133367e+117
-6.4130518e+117
-6.428274e+117
-6.4279326e+117
-6.3586861e+117
-6.3761879e+117
-6.3913506e+117
-6.3921152e+117
-6.3593502e+117
-6.3769892e+117
-6.3600043e+117
-6.3775911e+117
-6.3927163e+117
-6.3930656e+117
-6.3603372e+117
-6.3778196e+117
-6.4161366e+117
-6.4158413e+117
-6.4308483e+117
-6.4305665e+117
-6.415178e+117
-6.414691e+117
-6.4300441e+117
-6.4295704e+117
-6.2571795e+117
-6.2764351e+117
-6.2900241e+117
-6.2900048e+117
-6.2574898e+117
-6.2765353e+117
-6.2579629e+117
-6.2769071e+117
-6.2580856e+117
-6.27698e+117
-6.290332e+117
-6.290184e+117
-6.2577557e+117
-6.2579105e+117
-6.2770347e+117
-6.2769228e+117
-6.2906376e+117
-6.2905174e+117
-6.3040492e+117
-6.3180917e+117
-6.3037686e+117
-6.3184624e+117
-6.3033248e+117
-6.3175512e+117
-6.3177847e+117
-6.3035171e+117
-6.3339269e+117
-6.3336825e+117
-6.3469238e+117
-6.347215e+117
-6.3343037e+117
-6.3347657e+117
-6.3481738e+117
-6.3476509e+117
-6.3173845e+117
-6.3030754e+117
-6.3033156e+117
-6.3175639e+117
-6.333572e+117
-6.33364e+117
-6.3468138e+117
-6.3467068e+117
-6.3334456e+117
-6.3336265e+117
-6.3467983e+117
-6.346629e+117
-6.3032797e+117
-6.3175512e+117
-6.317467e+117
-6.3032215e+117
-6.3934722e+117
-6.3936938e+117
-6.3607346e+117
-6.3785286e+117
-6.3605654e+117
-6.378266e+117
-6.3938084e+117
-6.3607558e+117
-6.3785901e+117
-6.3606365e+117
-6.3785464e+117
-6.3938935e+117
-6.4173285e+117
-6.4169848e+117
-6.4318076e+117
-6.4321225e+117
-6.416481e+117
-6.4311985e+117
-6.4167174e+117
-6.4314906e+117
-6.3946678e+117
-6.3942545e+117
-6.3609739e+117
-6.3788747e+117
-6.3613101e+117
-6.3793052e+117
-6.3623509e+117
-6.3802529e+117
-6.3957151e+117
-6.3951819e+117
-6.3617989e+117
-6.3797739e+117
-6.418582e+117
-6.4334249e+117
-6.4192534e+117
-6.4340106e+117
-6.4176247e+117
-6.4324713e+117
-6.4180278e+117
-6.4328975e+117
-6.2025625e+117
-6.2154017e+117
-6.2320078e+117
-6.2173125e+117
-6.233734e+117
-6.2045826e+117
-6.1980055e+117
-6.2108797e+117
-6.2275339e+117
-6.2132143e+117
-6.2297276e+117
-6.2003135e+117
-6.2444341e+117
-6.2422508e+117
-6.2570125e+117
-6.2548447e+117
-6.2466473e+117
-6.2483382e+117
-6.2609634e+117
-6.2591649e+117
-6.2203219e+117
-6.2348087e+117
-6.2218084e+117
-6.2364717e+117
-6.2489243e+117
-6.2473016e+117
-6.205254e+117
-6.2037695e+117
-6.1911381e+117
-6.1924865e+117
-6.1940493e+117
-6.2087309e+117
-6.2252369e+117
-6.2069024e+117
-6.2234509e+117
-6.1958893e+117
-6.2382072e+117
-6.2399672e+117
-6.2526347e+117
-6.2507256e+117
-6.2728881e+117
-6.2875581e+117
-6.2893804e+117
-6.274721e+117
-6.2833663e+117
-6.2686411e+117
-6.2708017e+117
-6.2855116e+117
-6.3145265e+117
-6.3013657e+117
-6.2992614e+117
-6.3165754e+117
-6.3033807e+117
-6.318567e+117
-6.32035e+117
-6.3051852e+117
-6.2645067e+117
-6.2792592e+117
-6.2812542e+117
-6.2664889e+117
-6.2757705e+117
-6.2610428e+117
-6.2626686e+117
-6.2774107e+117
-6.295198e+117
-6.3105367e+117
-6.3125053e+117
-6.2971824e+117
-6.2917205e+117
-6.2933594e+117
-6.3087011e+117
-6.3070492e+117
-6.3224854e+117
-6.3370993e+117
-6.3510066e+117
-6.3526991e+117
-6.3241596e+117
-6.338871e+117
-6.3259987e+117
-6.3406849e+117
-6.3544604e+117
-6.3562127e+117
-6.3279371e+117
-6.3424509e+117
-6.3686379e+117
-6.3824166e+117
-6.3669065e+117
-6.3807326e+117
-6.3930729e+117
-6.394705e+117
-6.3651846e+117
-6.3790609e+117
-6.3635324e+117
-6.37741e+117
-6.3897554e+117
-6.391404e+117
-6.3298629e+117
-6.3443062e+117
-6.3580132e+117
-6.359962e+117
-6.3318455e+117
-6.346335e+117
-6.3338353e+117
-6.348248e+117
-6.3618429e+117
-6.363529e+117
-6.3355949e+117
-6.3498979e+117
-6.3757959e+117
-6.3893875e+117
-6.3741011e+117
-6.387733e+117
-6.3998836e+117
-6.4014656e+117
-6.3722787e+117
-6.3859924e+117
-6.3704285e+117
-6.3841807e+117
-6.3964479e+117
-6.3981963e+117
-6.2061648e+117
-6.2076016e+117
-6.2203171e+117
-6.2368696e+117
-6.2188325e+117
-6.2353854e+117
-6.2500926e+117
-6.2626714e+117
-6.2641812e+117
-6.2516823e+117
-6.2655417e+117
-6.2383895e+117
-6.2531368e+117
-6.2398535e+117
-6.2544754e+117
-6.266917e+117
-6.2090722e+117
-6.2218635e+117
-6.2234228e+117
-6.2106713e+117
-6.2152152e+117
-6.2290761e+117
-6.2457763e+117
-6.2280072e+117
-6.2446473e+117
-6.2162974e+117
-6.2266651e+117
-6.2430824e+117
-6.2250465e+117
-6.241591e+117
-6.2122951e+117
-6.2138634e+117
-6.2576814e+117
-6.2561476e+117
-6.2685536e+117
-6.2701496e+117
-6.2592585e+117
-6.2717166e+117
-6.2728387e+117
-6.2603342e+117
-6.2853055e+117
-6.2997978e+117
-6.3008309e+117
-6.2863879e+117
-6.296737e+117
-6.2821712e+117
-6.2837989e+117
-6.2983546e+117
-6.3275371e+117
-6.3140311e+117
-6.3124618e+117
-6.3290371e+117
-6.3154203e+117
-6.3164439e+117
-6.331383e+117
-6.3303763e+117
-6.279141e+117
-6.2937018e+117
-6.2951505e+117
-6.2805601e+117
-6.290995e+117
-6.2763853e+117
-6.2778248e+117
-6.2923834e+117
-6.3094582e+117
-6.3246049e+117
-6.3260405e+117
-6.3109029e+117
-6.3067591e+117
-6.308123e+117
-6.3232435e+117
-6.3218798e+117
-6.365098e+117
-6.366508e+117
-6.3384805e+117
-6.3529456e+117
-6.337102e+117
-6.3514684e+117
-6.3678302e+117
-6.33985e+117
-6.354311e+117
-6.3412472e+117
-6.3555203e+117
-6.3690292e+117
-6.3936483e+117
-6.4057283e+117
-6.3800462e+117
-6.3812826e+117
-6.394863e+117
-6.4069847e+117
-6.3909663e+117
-6.4029974e+117
-6.3773557e+117
-6.3787406e+117
-6.3923246e+117
-6.4043948e+117
-6.342681e+117
-6.3568879e+117
-6.3703798e+117
-6.3717865e+117
-6.3441118e+117
-6.3583551e+117
-6.3454335e+117
-6.3596036e+117
-6.3730332e+117
-6.3740593e+117
-6.3464288e+117
-6.3605701e+117
-6.3861677e+117
-6.3996486e+117
-6.3851326e+117
-6.398626e+117
-6.4106412e+117
-6.4116248e+117
-6.3839207e+117
-6.3974654e+117
-6.3826122e+117
-6.3961862e+117
-6.4082807e+117
-6.4095116e+117
-6.2441104e+117
-6.2446591e+117
-6.2613698e+117
-6.2620421e+117
-6.2749299e+117
-6.2743361e+117
-6.2454955e+117
-6.2628827e+117
-6.2464626e+117
-6.2637581e+117
-6.2766479e+117
-6.2757389e+117
-6.2473961e+117
-6.264896e+117
-6.2779231e+117
-6.2933725e+117
-6.3074231e+117
-6.308107e+117
-6.2939673e+117
-6.3053859e+117
-6.2912365e+117
-6.292457e+117
-6.3065052e+117
-6.3344071e+117
-6.3218035e+117
-6.3208001e+117
-6.3353576e+117
-6.3227222e+117
-6.3362698e+117
-6.3370005e+117
-6.3234472e+117
-6.3018358e+117
-6.2876324e+117
-6.2882294e+117
-6.3024578e+117
-6.2890128e+117
-6.3032321e+117
-6.304195e+117
-6.2899747e+117
-6.318778e+117
-6.3325212e+117
-6.3334153e+117
-6.3197131e+117
-6.3173691e+117
-6.3317433e+117
-6.3310579e+117
-6.3180061e+117
-6.344983e+117
-6.3611764e+117
-6.3753191e+117
-6.3761119e+117
-6.3456843e+117
-6.3619997e+117
-6.377664e+117
-6.3769191e+117
-6.3464685e+117
-6.3628304e+117
-6.3473274e+117
-6.3635469e+117
-6.3892874e+117
-6.4010314e+117
-6.3885255e+117
-6.4002903e+117
-6.4145055e+117
-6.4137698e+117
-6.3877383e+117
-6.3994972e+117
-6.3869637e+117
-6.3987406e+117
-6.4129661e+117
-6.4121694e+117
-6.3784892e+117
-6.3482177e+117
-6.3644093e+117
-6.3490953e+117
-6.3653306e+117
-6.3793249e+117
-6.3500122e+117
-6.3661499e+117
-6.380144e+117
-6.3807949e+117
-6.3507035e+117
-6.3667246e+117
-6.3917367e+117
-6.4035485e+117
-6.4171161e+117
-6.404239e+117
-6.4177834e+117
-6.3924192e+117
-6.3901029e+117
-6.401856e+117
-6.4153829e+117
-6.4027114e+117
-6.4162928e+117
-6.3909177e+117
-6.3242622e+117
-6.3381296e+117
-6.3383109e+117
-6.3242976e+117
-6.3240123e+117
-6.3242157e+117
-6.3379092e+117
-6.3375304e+117
-6.3512345e+117
-6.3673625e+117
-6.3814116e+117
-6.3819331e+117
-6.3516971e+117
-6.3679216e+117
-6.352013e+117
-6.3682735e+117
-6.3823025e+117
-6.3825429e+117
-6.3522089e+117
-6.368401e+117
-6.3942814e+117
-6.406228e+117
-6.393963e+117
-6.4058617e+117
-6.4196008e+117
-6.4200094e+117
-6.3935423e+117
-6.4053854e+117
-6.3930401e+117
-6.4048772e+117
-6.4184806e+117
-6.4190528e+117
-6.3525721e+117
-6.3687332e+117
-6.382888e+117
-6.3834957e+117
-6.3528293e+117
-6.3692666e+117
-6.3533658e+117
-6.369886e+117
-6.3530891e+117
-6.3696328e+117
-6.3839785e+117
-6.3843335e+117
-6.3962842e+117
-6.4084491e+117
-6.3958558e+117
-6.4079724e+117
-6.4218411e+117
-6.4223398e+117
-6.3952838e+117
-6.4072899e+117
-6.3947078e+117
-6.4067446e+117
-6.420568e+117
-6.4211569e+117
-6.0972561e+117
-6.0972717e+117
-6.1112577e+117
-6.1112684e+117
-6.0980187e+117
-6.0975656e+117
-6.1114834e+117
-6.1119484e+117
-6.1250095e+117
-6.1244862e+117
-6.1377008e+117
-6.1381352e+117
-6.1520762e+117
-6.1661872e+117
-6.1664451e+117
-6.1517331e+117
-6.1516051e+117
-6.1515303e+117
-6.1659345e+117
-6.1660436e+117
-6.1243645e+117
-6.1375696e+117
-6.1375172e+117
-6.1242961e+117
-6.1256932e+117
-6.1389559e+117
-6.1385069e+117
-6.1252747e+117
-6.1379882e+117
-6.1376929e+117
-6.124536e+117
-6.1248323e+117
-6.1517829e+117
-6.1515534e+117
-6.1659173e+117
-6.1660966e+117
-6.1523445e+117
-6.1666904e+117
-6.1674127e+117
-6.1529282e+117
-6.0981685e+117
-6.0978383e+117
-6.1119602e+117
-6.1123318e+117
-6.09745e+117
-6.1114718e+117
-6.1116357e+117
-6.0975845e+117
-6.1790947e+117
-6.1789612e+117
-6.1913322e+117
-6.2075703e+117
-6.1913908e+117
-6.2076208e+117
-6.2218882e+117
-6.2219387e+117
-6.2341686e+117
-6.2341853e+117
-6.2074128e+117
-6.2217521e+117
-6.2075517e+117
-6.2219077e+117
-6.2340293e+117
-6.2340875e+117
-6.1788572e+117
-6.19129e+117
-6.1912115e+117
-6.1787833e+117
-6.1795743e+117
-6.1921082e+117
-6.2083571e+117
-6.192769e+117
-6.2089022e+117
-6.1802739e+117
-6.1787863e+117
-6.1912515e+117
-6.207505e+117
-6.1915427e+117
-6.2078146e+117
-6.1789908e+117
-6.2223248e+117
-6.2219818e+117
-6.234667e+117
-6.2343062e+117
-6.2228366e+117
-6.2232649e+117
-6.2357512e+117
-6.2352072e+117
-6.2634755e+117
-6.2488533e+117
-6.2494678e+117
-6.2641299e+117
-6.2478678e+117
-6.2623953e+117
-6.2628774e+117
-6.2482867e+117
-6.2781391e+117
-6.2786448e+117
-6.2937971e+117
-6.2932745e+117
-6.2792853e+117
-6.2952331e+117
-6.2944766e+117
-6.2799939e+117
-6.2620496e+117
-6.262032e+117
-6.247644e+117
-6.247624e+117
-6.2620249e+117
-6.2475586e+117
-6.2475649e+117
-6.2620739e+117
-6.2927726e+117
-6.2777024e+117
-6.2929262e+117
-6.2778059e+117
-6.2776181e+117
-6.2925707e+117
-6.2926791e+117
-6.277666e+117
-6.3356849e+117
-6.3359174e+117
-6.3481511e+117
-6.3617863e+117
-6.3478917e+117
-6.3615069e+117
-6.3735729e+117
-6.3739377e+117
-6.3361545e+117
-6.3080425e+117
-6.322512e+117
-6.3082013e+117
-6.3226718e+117
-6.3364056e+117
-6.3077271e+117
-6.3220447e+117
-6.3079128e+117
-6.3223071e+117
-6.3484532e+117
-6.3621702e+117
-6.3488301e+117
-6.3626394e+117
-6.3749532e+117
-6.3744217e+117
-6.3085705e+117
-6.3231425e+117
-6.3369284e+117
-6.3375654e+117
-6.3091123e+117
-6.3237707e+117
-6.3105661e+117
-6.325101e+117
-6.3389755e+117
-6.3382695e+117
-6.3098099e+117
-6.3244434e+117
-6.3515154e+117
-6.3654518e+117
-6.3507339e+117
-6.3646521e+117
-6.3770391e+117
-6.3778771e+117
-6.3500187e+117
-6.3639174e+117
-6.3493819e+117
-6.3632428e+117
-6.3756098e+117
-6.3762851e+117
-6.1395114e+117
-6.1261674e+117
-6.1265658e+117
-6.1399767e+117
-6.1406646e+117
-6.127228e+117
-6.1279617e+117
-6.141443e+117
-6.154062e+117
-6.1685872e+117
-6.1680323e+117
-6.1535121e+117
-6.1547366e+117
-6.1556845e+117
-6.1704075e+117
-6.1692887e+117
-6.158585e+117
-6.1570338e+117
-6.1718524e+117
-6.1735097e+117
-6.1752911e+117
-6.1602742e+117
-6.1768776e+117
-6.161891e+117
-6.1849862e+117
-6.1994744e+117
-6.2158862e+117
-6.1977298e+117
-6.2142855e+117
-6.1867119e+117
-6.1899068e+117
-6.1885064e+117
-6.2010333e+117
-6.2171829e+117
-6.2022968e+117
-6.2185971e+117
-6.2331559e+117
-6.2317472e+117
-6.2442812e+117
-6.2457563e+117
-6.2289163e+117
-6.2413972e+117
-6.2428597e+117
-6.2304002e+117
-6.1809191e+117
-6.1815365e+117
-6.1940959e+117
-6.2104577e+117
-6.1933328e+117
-6.2096057e+117
-6.2240976e+117
-6.2250896e+117
-6.2375591e+117
-6.2365984e+117
-6.2115282e+117
-6.2262072e+117
-6.2128356e+117
-6.2274367e+117
-6.2399015e+117
-6.2386453e+117
-6.1823554e+117
-6.1950519e+117
-6.1962513e+117
-6.1835093e+117
-6.258041e+117
-6.2727502e+117
-6.2742469e+117
-6.2595296e+117
-6.2697408e+117
-6.2550997e+117
-6.2565609e+117
-6.2712121e+117
-6.2870757e+117
-6.2855701e+117
-6.3007802e+117
-6.3023432e+117
-6.2886501e+117
-6.3039572e+117
-6.3055082e+117
-6.2901776e+117
-6.2503205e+117
-6.264989e+117
-6.2659599e+117
-6.251278e+117
-6.2808657e+117
-6.2818295e+117
-6.2970764e+117
-6.2961095e+117
-6.2841855e+117
-6.2829373e+117
-6.2993719e+117
-6.2981859e+117
-6.2523633e+117
-6.2670561e+117
-6.2683133e+117
-6.2536265e+117
-6.3114841e+117
-6.3260749e+117
-6.3399619e+117
-6.3410004e+117
-6.3124709e+117
-6.3271602e+117
-6.3135566e+117
-6.3282412e+117
-6.3420722e+117
-6.3432896e+117
-6.3147136e+117
-6.3293902e+117
-6.3558588e+117
-6.3698299e+117
-6.3546144e+117
-6.3685814e+117
-6.3823007e+117
-6.3810782e+117
-6.353507e+117
-6.3674694e+117
-6.3524883e+117
-6.3664437e+117
-6.3799253e+117
-6.3788853e+117
-6.3177317e+117
-6.3324258e+117
-6.3161553e+117
-6.3308035e+117
-6.3447058e+117
-6.3462889e+117
-6.3588397e+117
-6.3727968e+117
-6.3572887e+117
-6.3712579e+117
-6.3837328e+117
-6.385231e+117
-6.3479294e+117
-6.3494199e+117
-6.3619317e+117
-6.3757877e+117
-6.3604205e+117
-6.3743355e+117
-6.3866748e+117
-6.3881206e+117
-6.3193899e+117
-6.3340451e+117
-6.3209474e+117
-6.3355038e+117
-6.3858026e+117
-6.3864131e+117
-6.4080012e+117
-6.3967711e+117
-6.4086375e+117
-6.39742e+117
-6.4161271e+117
-6.4167987e+117
-6.3848744e+117
-6.3852653e+117
-6.4068179e+117
-6.3957458e+117
-6.4073611e+117
-6.3961903e+117
-6.4148846e+117
-6.4154694e+117
-6.387102e+117
-6.3877736e+117
-6.4093901e+117
-6.4175535e+117
-6.3981415e+117
-6.4101259e+117
-6.3988238e+117
-6.418319e+117
-6.3885773e+117
-6.3894776e+117
-6.4109715e+117
-6.3996585e+117
-6.4118588e+117
-6.4005748e+117
-6.4200892e+117
-6.4191755e+117
-6.3953523e+117
-6.3967845e+117
-6.4177885e+117
-6.4064782e+117
-6.4191484e+117
-6.4078656e+117
-6.4260092e+117
-6.4273501e+117
-6.3996946e+117
-6.3982201e+117
-6.4205431e+117
-6.4092811e+117
-6.4219373e+117
-6.4107296e+117
-6.4287386e+117
-6.4301365e+117
-6.3915103e+117
-6.3904895e+117
-6.4140142e+117
-6.4026415e+117
-6.4129294e+117
-6.4016165e+117
-6.4211569e+117
-6.4222656e+117
-6.3939302e+117
-6.3926808e+117
-6.415211e+117
-6.4038279e+117
-6.4164067e+117
-6.4050571e+117
-6.4234566e+117
-6.4246678e+117
-6.4229548e+117
-6.4315035e+117
-6.423568e+117
-6.4321625e+117
-6.4242395e+117
-6.4328845e+117
-6.4249293e+117
-6.4335842e+117
-6.4256959e+117
-6.4343707e+117
-6.4264692e+117
-6.435162e+117
-6.4273532e+117
-6.4360522e+117
-6.428273e+117
-6.4369737e+117
-6.4293605e+117
-6.4380698e+117
-6.4304752e+117
-6.4391936e+117
-6.4316652e+117
-6.4403905e+117
-6.4328632e+117
-6.4415676e+117
-6.4341937e+117
-6.4428682e+117
-6.4355001e+117
-6.4441555e+117
-6.4368946e+117
-6.4455041e+117
-6.4382646e+117
-6.4468345e+117
-6.4195692e+117
-6.4412563e+117
-6.4303498e+117
-6.4207506e+117
-6.4424146e+117
-6.4315038e+117
-6.4492193e+117
-6.4503781e+117
-6.4218912e+117
-6.4228881e+117
-6.4435279e+117
-6.4326535e+117
-6.4444841e+117
-6.4336255e+117
-6.4514779e+117
-6.4524637e+117
-6.4169773e+117
-6.4182817e+117
-6.4386924e+117
-6.42774e+117
-6.439965e+117
-6.4290555e+117
-6.4466717e+117
-6.4479483e+117
-6.4156425e+117
-6.4142734e+117
-6.4359443e+117
-6.425035e+117
-6.4373237e+117
-6.4263956e+117
-6.4453086e+117
-6.4439311e+117
-6.4013058e+117
-6.4235285e+117
-6.4123457e+117
-6.4028991e+117
-6.4250986e+117
-6.4139066e+117
-6.4316803e+117
-6.4332284e+117
-6.4045544e+117
-6.4267171e+117
-6.4155508e+117
-6.4061839e+117
-6.4282503e+117
-6.4171313e+117
-6.4348157e+117
-6.4363614e+117
-6.4397907e+117
-6.4483196e+117
-6.4412996e+117
-6.4498082e+117
-6.4428619e+117
-6.4513491e+117
-6.444385e+117
-6.4528372e+117
-6.4078922e+117
-6.4298997e+117
-6.4188157e+117
-6.4095662e+117
-6.4314812e+117
-6.4204318e+117
-6.4379698e+117
-6.4395307e+117
-6.4127881e+117
-6.4344812e+117
-6.4235652e+117
-6.4112353e+117
-6.4330543e+117
-6.422076e+117
-6.4410664e+117
-6.4424921e+117
-6.4459743e+117
-6.454393e+117
-6.4474944e+117
-6.455883e+117
-6.4490177e+117
-6.4573595e+117
-6.4504207e+117
-6.4587412e+117
-6.4545757e+117
-6.4628867e+117
-6.4558415e+117
-6.4641438e+117
-6.4518532e+117
-6.4601633e+117
-6.4532179e+117
-6.4615314e+117
-6.4571213e+117
-6.4654105e+117
-6.4582703e+117
-6.4665648e+117
-6.4593825e+117
-6.46767e+117
-6.4603802e+117
-6.4686696e+117
-6.4261389e+117
-6.4253489e+117
-6.4471306e+117
-6.4357752e+117
-6.4479359e+117
-6.4365761e+117
-6.423788e+117
-6.4245429e+117
-6.4453945e+117
-6.4341615e+117
-6.446257e+117
-6.4349501e+117
-6.4270321e+117
-6.4279337e+117
-6.4488623e+117
-6.4374827e+117
-6.4497686e+117
-6.4383745e+117
-6.428793e+117
-6.4506471e+117
-6.4392564e+117
-6.4295013e+117
-6.4513854e+117
-6.4399871e+117
-6.4313841e+117
-6.4318712e+117
-6.4541307e+117
-6.4425173e+117
-6.4535534e+117
-6.4419739e+117
-6.4302241e+117
-6.4521783e+117
-6.440735e+117
-6.4307871e+117
-6.4528668e+117
-6.441346e+117
-6.4324805e+117
-6.4330745e+117
-6.4548133e+117
-6.4431692e+117
-6.4554655e+117
-6.4437877e+117
-6.4337968e+117
-6.4343607e+117
-6.456163e+117
-6.4445101e+117
-6.4567238e+117
-6.4450819e+117
-6.4359091e+117
-6.4355297e+117
-6.4582371e+117
-6.4463781e+117
-6.4586607e+117
-6.446786e+117
-6.4348159e+117
-6.4351073e+117
-6.457291e+117
-6.4455849e+117
-6.4577412e+117
-6.4459361e+117
-6.4363732e+117
-6.436741e+117
-6.459174e+117
-6.4472637e+117
-6.4596527e+117
-6.4476848e+117
-6.437631e+117
-6.4372217e+117
-6.4601666e+117
-6.4481953e+117
-6.4605818e+117
-6.4486115e+117
-6.4380206e+117
-6.4382272e+117
-6.4610608e+117
-6.4490472e+117
-6.4614059e+117
-6.449302e+117
-6.4387116e+117
-6.4385091e+117
-6.4617558e+117
-6.4496045e+117
-6.4620089e+117
-6.4498422e+117
-6.4390289e+117
-6.4393198e+117
-6.4623493e+117
-6.4501701e+117
-6.4626755e+117
-6.4504734e+117
-6.4400449e+117
-6.4397182e+117
-6.4630427e+117
-6.45087e+117
-6.4633529e+117
-6.4512025e+117
-5.8517859e+117
-5.8647581e+117
-5.8637596e+117
-5.85087e+117
-5.8630139e+117
-5.8625513e+117
-5.8501213e+117
-5.8496822e+117
-5.8232266e+117
-5.8147366e+117
-5.8141555e+117
-5.8225376e+117
-5.8061492e+117
-5.7976363e+117
-5.7972981e+117
-5.8056684e+117
-5.8220211e+117
-5.8137047e+117
-5.813221e+117
-5.821488e+117
-5.7966243e+117
-5.7969962e+117
-5.8052739e+117
-5.8048854e+117
-5.8495063e+117
-5.8624134e+117
-5.8624493e+117
-5.8495232e+117
-5.862594e+117
-5.8627195e+117
-5.8496824e+117
-5.8498633e+117
-5.7958972e+117
-5.7959356e+117
-5.8041996e+117
-5.804283e+117
-5.8044892e+117
-5.7962394e+117
-5.7959813e+117
-5.8042295e+117
-5.821104e+117
-5.8127734e+117
-5.8125916e+117
-5.8209642e+117
-5.821052e+117
-5.8126198e+117
-5.8127461e+117
-5.8211865e+117
-5.7892202e+117
-5.7810114e+117
-5.780888e+117
-5.7889727e+117
-5.77287e+117
-5.7649245e+117
-5.7650059e+117
-5.7728592e+117
-5.7649816e+117
-5.7650366e+117
-5.7727143e+117
-5.772558e+117
-5.7887495e+117
-5.7806696e+117
-5.7804002e+117
-5.7884129e+117
-5.7880318e+117
-5.7800378e+117
-5.7798081e+117
-5.7877718e+117
-5.7645363e+117
-5.7647016e+117
-5.7722083e+117
-5.7720095e+117
-5.7638646e+117
-5.7642871e+117
-5.7718101e+117
-5.7715335e+117
-5.7877009e+117
-5.7796596e+117
-5.7794392e+117
-5.78756e+117
-5.7573017e+117
-5.7501482e+117
-5.7499999e+117
-5.7571368e+117
-5.7430819e+117
-5.7361655e+117
-5.7360204e+117
-5.7429295e+117
-5.7349993e+117
-5.7356483e+117
-5.7424664e+117
-5.7418634e+117
-5.7568355e+117
-5.7495722e+117
-5.7489749e+117
-5.7563059e+117
-5.7361859e+117
-5.735956e+117
-5.7428072e+117
-5.7430848e+117
-5.7424162e+117
-5.735426e+117
-5.7356535e+117
-5.742585e+117
-5.7571081e+117
-5.7495789e+117
-5.7497725e+117
-5.757261e+117
-5.7574136e+117
-5.7499865e+117
-5.750195e+117
-5.7574866e+117
-5.7555758e+117
-5.7480645e+117
-5.7488478e+117
-5.7562481e+117
-5.7406959e+117
-5.7335498e+117
-5.7343776e+117
-5.7415411e+117
-5.7353708e+117
-5.7349733e+117
-5.7420262e+117
-5.7423933e+117
-5.7568159e+117
-5.7493358e+117
-5.7496238e+117
-5.7570981e+117
-5.8267541e+117
-5.817735e+117
-5.8166947e+117
-5.8256948e+117
-5.8085648e+117
-5.7994239e+117
-5.7984518e+117
-5.8075401e+117
-5.7977263e+117
-5.7979049e+117
-5.8069292e+117
-5.8067622e+117
-5.8251097e+117
-5.8160641e+117
-5.8158681e+117
-5.8248712e+117
-5.7903288e+117
-5.7813828e+117
-5.7805142e+117
-5.7893827e+117
-5.7725134e+117
-5.7638339e+117
-5.7632167e+117
-5.7717358e+117
-5.7631771e+117
-5.7630116e+117
-5.7713557e+117
-5.7714059e+117
-5.7888922e+117
-5.7800425e+117
-5.7799646e+117
-5.7887403e+117
-5.7648783e+117
-5.7645777e+117
-5.7726035e+117
-5.7728766e+117
-5.7640208e+117
-5.7634247e+117
-5.771603e+117
-5.7721001e+117
-5.7888947e+117
-5.7801429e+117
-5.7805315e+117
-5.7891834e+117
-5.7894778e+117
-5.7809481e+117
-5.7811212e+117
-5.7895001e+117
-5.8249051e+117
-5.8159619e+117
-5.8159826e+117
-5.8248245e+117
-5.8068808e+117
-5.797846e+117
-5.7980451e+117
-5.8069999e+117
-5.7980601e+117
-5.7981994e+117
-5.8070235e+117
-5.8067167e+117
-5.8246232e+117
-5.8158851e+117
-5.8154276e+117
-5.824035e+117
-5.8566379e+117
-5.8700661e+117
-5.8690008e+117
-5.8556231e+117
-5.8684059e+117
-5.8679023e+117
-5.8550421e+117
-5.8546294e+117
-5.8542477e+117
-5.8674748e+117
-5.8671747e+117
-5.8540792e+117
-5.8667517e+117
-5.8658965e+117
-5.8537399e+117
-5.852919e+117
-5.7926005e+117
-5.7833802e+117
-5.7825566e+117
-5.7916009e+117
-5.8007536e+117
-5.801866e+117
-5.8112105e+117
-5.8099534e+117
-5.8297377e+117
-5.8205539e+117
-5.8191681e+117
-5.8282439e+117
-5.8742428e+117
-5.8609916e+117
-5.8730872e+117
-5.8716133e+117
-5.8598199e+117
-5.8582676e+117
-6.3527266e+117
-6.3701914e+117
-6.3853126e+117
-6.3856026e+117
-6.352954e+117
-6.3705582e+117
-6.353159e+117
-6.3707891e+117
-6.3857589e+117
-6.386103e+117
-6.3532165e+117
-6.37092e+117
-6.4090224e+117
-6.4087495e+117
-6.4233445e+117
-6.4236437e+117
-6.4083579e+117
-6.4082137e+117
-6.422925e+117
-6.4226573e+117
-6.353324e+117
-6.3711406e+117
-6.3863639e+117
-6.3865567e+117
-6.3535131e+117
-6.3713284e+117
-6.3539419e+117
-6.3717254e+117
-6.3537482e+117
-6.3714981e+117
-6.3867525e+117
-6.3870659e+117
-6.4104485e+117
-6.4101096e+117
-6.4248784e+117
-6.4252247e+117
-6.4096424e+117
-6.409475e+117
-6.4241186e+117
-6.424432e+117
-6.3542032e+117
-6.3720245e+117
-6.3874201e+117
-6.3876471e+117
-6.3543453e+117
-6.3722885e+117
-6.3544201e+117
-6.372377e+117
-6.3877318e+117
-6.3878407e+117
-6.354437e+117
-6.3724383e+117
-6.4112547e+117
-6.4111951e+117
-6.4260784e+117
-6.4261871e+117
-6.4109306e+117
-6.4108321e+117
-6.4256072e+117
-6.4257968e+117
-6.3546412e+117
-6.3725661e+117
-6.3879765e+117
-6.3883506e+117
-6.3547878e+117
-6.3728955e+117
-6.3550773e+117
-6.3731723e+117
-6.3886699e+117
-6.3889557e+117
-6.3554064e+117
-6.3733906e+117
-6.4124946e+117
-6.4122684e+117
-6.4271869e+117
-6.4274407e+117
-6.4118211e+117
-6.4115989e+117
-6.4265182e+117
-6.4267946e+117
-6.2023704e+117
-6.2144562e+117
-6.2295688e+117
-6.216373e+117
-6.2313355e+117
-6.2043766e+117
-6.1978349e+117
-6.2099533e+117
-6.2251279e+117
-6.2122907e+117
-6.2273199e+117
-6.2001349e+117
-6.24471e+117
-6.2425334e+117
-6.2578489e+117
-6.255693e+117
-6.2469151e+117
-6.2485885e+117
-6.2617689e+117
-6.2599889e+117
-6.2178874e+117
-6.2350599e+117
-6.219349e+117
-6.2367396e+117
-6.2497773e+117
-6.2481323e+117
-6.2043332e+117
-6.2028384e+117
-6.1909603e+117
-6.1923266e+117
-6.1939012e+117
-6.2078094e+117
-6.2228528e+117
-6.2059921e+117
-6.2210344e+117
-6.1957228e+117
-6.2385021e+117
-6.240241e+117
-6.2534751e+117
-6.2515875e+117
-6.2734424e+117
-6.28783e+117
-6.2896397e+117
-6.2752602e+117
-6.2836661e+117
-6.2692196e+117
-6.271366e+117
-6.2857949e+117
-6.3134152e+117
-6.3015283e+117
-6.2994504e+117
-6.3154539e+117
-6.3035391e+117
-6.3174399e+117
-6.3192087e+117
-6.3053359e+117
-6.2651003e+117
-6.2795726e+117
-6.2815464e+117
-6.2670604e+117
-6.276068e+117
-6.2616161e+117
-6.2632626e+117
-6.2777276e+117
-6.2953903e+117
-6.3094321e+117
-6.3113794e+117
-6.2973599e+117
-6.2919055e+117
-6.2935547e+117
-6.3075962e+117
-6.3059298e+117
-6.3201639e+117
-6.3368418e+117
-6.3513887e+117
-6.3530832e+117
-6.32183e+117
-6.338631e+117
-6.3236677e+117
-6.3404397e+117
-6.3548439e+117
-6.3565826e+117
-6.3255779e+117
-6.3421718e+117
-6.3684894e+117
-6.3805207e+117
-6.3667648e+117
-6.3788366e+117
-6.3926736e+117
-6.3942902e+117
-6.365034e+117
-6.3771369e+117
-6.3633932e+117
-6.3755172e+117
-6.3893453e+117
-6.3909875e+117
-6.3275242e+117
-6.3440429e+117
-6.3583993e+117
-6.3603344e+117
-6.3295202e+117
-6.3460808e+117
-6.3315164e+117
-6.3479873e+117
-6.3622156e+117
-6.3638945e+117
-6.3332555e+117
-6.3496127e+117
-6.3756571e+117
-6.3875215e+117
-6.3739691e+117
-6.3858726e+117
-6.3994857e+117
-6.4010448e+117
-6.3721285e+117
-6.3840917e+117
-6.3702938e+117
-6.3823114e+117
-6.3960509e+117
-6.3977831e+117
-6.2059938e+117
-6.207459e+117
-6.219421e+117
-6.2344739e+117
-6.2179106e+117
-6.2329874e+117
-6.2503745e+117
-6.2635149e+117
-6.265042e+117
-6.2519849e+117
-6.2664174e+117
-6.2360148e+117
-6.2534537e+117
-6.2374905e+117
-6.2547593e+117
-6.2677714e+117
-6.2089425e+117
-6.2209761e+117
-6.2225193e+117
-6.2105169e+117
-6.215019e+117
-6.2281062e+117
-6.2433129e+117
-6.2270559e+117
-6.2421981e+117
-6.216078e+117
-6.2257475e+117
-6.2406815e+117
-6.2241279e+117
-6.2391794e+117
-6.2121283e+117
-6.2136891e+117
-6.2579552e+117
-6.2564264e+117
-6.2693948e+117
-6.2709771e+117
-6.2595166e+117
-6.2725278e+117
-6.2736219e+117
-6.2605642e+117
-6.2858485e+117
-6.3000599e+117
-6.3010795e+117
-6.2869098e+117
-6.2970459e+117
-6.2827525e+117
-6.2843583e+117
-6.2986352e+117
-6.3264526e+117
-6.314195e+117
-6.3126625e+117
-6.3279327e+117
-6.3155732e+117
-6.3165892e+117
-6.3302559e+117
-6.3292614e+117
-6.2797524e+117
-6.2940443e+117
-6.2954733e+117
-6.2811565e+117
-6.2912903e+117
-6.2769598e+117
-6.2784153e+117
-6.2927031e+117
-6.3096807e+117
-6.323544e+117
-6.3249572e+117
-6.3111104e+117
-6.3069468e+117
-6.308329e+117
-6.3221712e+117
-6.3207839e+117
-6.3654804e+117
-6.3668961e+117
-6.3362039e+117
-6.3527162e+117
-6.3348206e+117
-6.3512168e+117
-6.368217e+117
-6.3375775e+117
-6.3540809e+117
-6.3389495e+117
-6.355265e+117
-6.3694121e+117
-6.3917576e+117
-6.405318e+117
-6.3799076e+117
-6.381151e+117
-6.3930197e+117
-6.4065863e+117
-6.3890873e+117
-6.402578e+117
-6.3772235e+117
-6.3786003e+117
-6.3904382e+117
-6.4039769e+117
-6.340389e+117
-6.3566327e+117
-6.3707666e+117
-6.3721556e+117
-6.3418249e+117
-6.3581027e+117
-6.3431541e+117
-6.359347e+117
-6.3734053e+117
-6.3744248e+117
-6.3441488e+117
-6.3602973e+117
-6.3860425e+117
-6.3978093e+117
-6.3850072e+117
-6.3967879e+117
-6.4102428e+117
-6.4112132e+117
-6.3837792e+117
-6.3955962e+117
-6.3824882e+117
-6.3943564e+117
-6.4078945e+117
-6.4091038e+117
-6.2429971e+117
-6.2436042e+117
-6.261797e+117
-6.2624869e+117
-6.2757254e+117
-6.2751188e+117
-6.2444404e+117
-6.263326e+117
-6.2453447e+117
-6.2641945e+117
-6.2774331e+117
-6.2765367e+117
-6.2462962e+117
-6.265325e+117
-6.2787035e+117
-6.29376e+117
-6.3074629e+117
-6.3081867e+117
-6.2943598e+117
-6.3054865e+117
-6.2916377e+117
-6.2928381e+117
-6.3065469e+117
-6.3338457e+117
-6.3221002e+117
-6.3211363e+117
-6.334774e+117
-6.3230188e+117
-6.3356846e+117
-6.336406e+117
-6.3237319e+117
-6.3019421e+117
-6.2880404e+117
-6.288652e+117
-6.3025797e+117
-6.2894379e+117
-6.3033565e+117
-6.3043064e+117
-6.2903866e+117
-6.3191289e+117
-6.3319685e+117
-6.3328517e+117
-6.3200505e+117
-6.3177095e+117
-6.3311888e+117
-6.3305005e+117
-6.3183534e+117
-6.3440731e+117
-6.3611782e+117
-6.3759673e+117
-6.3767486e+117
-6.3447882e+117
-6.3620085e+117
-6.3782934e+117
-6.3775571e+117
-6.3455758e+117
-6.3628381e+117
-6.3463917e+117
-6.3635341e+117
-6.4003533e+117
-6.3996021e+117
-6.4143592e+117
-6.4136249e+117
-6.3988278e+117
-6.3981506e+117
-6.4128254e+117
-6.4120603e+117
-6.379125e+117
-6.3472924e+117
-6.3643984e+117
-6.3481893e+117
-6.3653274e+117
-6.379957e+117
-6.3491011e+117
-6.3661438e+117
-6.3807762e+117
-6.3814215e+117
-6.3497883e+117
-6.3667076e+117
-6.4029607e+117
-6.4170077e+117
-6.4035588e+117
-6.417636e+117
-6.4011876e+117
-6.4152424e+117
-6.4021217e+117
-6.4161823e+117
-6.3245956e+117
-6.3375405e+117
-6.3377065e+117
-6.3246226e+117
-6.3243246e+117
-6.3245413e+117
-6.3373201e+117
-6.3369244e+117
-6.3502945e+117
-6.3673392e+117
-6.3820403e+117
-6.382558e+117
-6.3507825e+117
-6.3679134e+117
-6.3511023e+117
-6.3682716e+117
-6.3829355e+117
-6.3831707e+117
-6.3513144e+117
-6.3683905e+117
-6.4055394e+117
-6.4052611e+117
-6.4194877e+117
-6.419862e+117
-6.4047082e+117
-6.4042804e+117
-6.4183675e+117
-6.4189117e+117
-6.3516602e+117
-6.3687147e+117
-6.3835094e+117
-6.3841045e+117
-6.3518845e+117
-6.3692307e+117
-6.352417e+117
-6.3698621e+117
-6.3521561e+117
-6.3696159e+117
-6.3846056e+117
-6.3849645e+117
-6.4078175e+117
-6.40734e+117
-6.4217183e+117
-6.4222163e+117
-6.4066086e+117
-6.4061234e+117
-6.4204478e+117
-6.4210095e+117
-6.0973253e+117
-6.0973459e+117
-6.1114995e+117
-6.1115255e+117
-6.0980298e+117
-6.0976485e+117
-6.1117426e+117
-6.1121397e+117
-6.1249699e+117
-6.1245025e+117
-6.1376568e+117
-6.1380525e+117
-6.1519386e+117
-6.1661519e+117
-6.1663737e+117
-6.1516336e+117
-6.151505e+117
-6.1514139e+117
-6.1658918e+117
-6.166013e+117
-6.1243843e+117
-6.1375303e+117
-6.137461e+117
-6.1242909e+117
-6.1256125e+117
-6.1388523e+117
-6.1384397e+117
-6.1252463e+117
-6.1379485e+117
-6.1376459e+117
-6.1245323e+117
-6.1248413e+117
-6.1516972e+117
-6.151454e+117
-6.1658844e+117
-6.1660744e+117
-6.1522416e+117
-6.1666574e+117
-6.1673412e+117
-6.1527834e+117
-6.0981469e+117
-6.0978609e+117
-6.1121667e+117
-6.1124883e+117
-6.0975195e+117
-6.1117181e+117
-6.1118814e+117
-6.0976547e+117
-6.17891e+117
-6.1787863e+117
-6.1904064e+117
-6.2051386e+117
-6.1904635e+117
-6.2052142e+117
-6.2221323e+117
-6.2221947e+117
-6.2349823e+117
-6.2349842e+117
-6.204996e+117
-6.222e+117
-6.2051183e+117
-6.2221691e+117
-6.2348499e+117
-6.2349158e+117
-6.1786887e+117
-6.1903772e+117
-6.190303e+117
-6.1786108e+117
-6.1794055e+117
-6.1911919e+117
-6.2059483e+117
-6.1918509e+117
-6.2065548e+117
-6.1800901e+117
-6.1786184e+117
-6.1903388e+117
-6.2050892e+117
-6.1906251e+117
-6.2053756e+117
-6.1788229e+117
-6.2225871e+117
-6.2222371e+117
-6.23549e+117
-6.2351238e+117
-6.2231017e+117
-6.2235201e+117
-6.2365592e+117
-6.2360276e+117
-6.2637465e+117
-6.2494031e+117
-6.2500078e+117
-6.2643933e+117
-6.2484231e+117
-6.2626835e+117
-6.2631563e+117
-6.248842e+117
-6.2783174e+117
-6.2788013e+117
-6.2926724e+117
-6.2921695e+117
-6.2794374e+117
-6.2940864e+117
-6.2933408e+117
-6.2801437e+117
-6.2623302e+117
-6.2622984e+117
-6.2481803e+117
-6.2481756e+117
-6.2623218e+117
-6.2481254e+117
-6.2481296e+117
-6.2623721e+117
-6.2916654e+117
-6.2778826e+117
-6.291826e+117
-6.277993e+117
-6.2777824e+117
-6.2914593e+117
-6.291564e+117
-6.2778353e+117
-6.3360379e+117
-6.3362665e+117
-6.34799e+117
-6.3598764e+117
-6.3477446e+117
-6.3596168e+117
-6.3731497e+117
-6.3735175e+117
-6.3365091e+117
-6.3056836e+117
-6.3222352e+117
-6.3058975e+117
-6.3224173e+117
-6.3367831e+117
-6.3054334e+117
-6.3217744e+117
-6.3055553e+117
-6.3220274e+117
-6.3482905e+117
-6.3602554e+117
-6.3486815e+117
-6.3607531e+117
-6.3745484e+117
-6.3740079e+117
-6.3062624e+117
-6.3228958e+117
-6.3373046e+117
-6.3379243e+117
-6.3067718e+117
-6.3235158e+117
-6.308235e+117
-6.3248314e+117
-6.3393453e+117
-6.3386257e+117
-6.307466e+117
-6.3241791e+117
-6.3513631e+117
-6.3635428e+117
-6.3505656e+117
-6.3627084e+117
-6.3766149e+117
-6.3774581e+117
-6.349842e+117
-6.3619708e+117
-6.349232e+117
-6.3613478e+117
-6.3752082e+117
-6.3758615e+117
-6.1394171e+117
-6.1260992e+117
-6.1265441e+117
-6.1399108e+117
-6.1406201e+117
-6.1272282e+117
-6.1279355e+117
-6.1413758e+117
-6.1539592e+117
-6.168563e+117
-6.1679814e+117
-6.1533854e+117
-6.1546505e+117
-6.1555627e+117
-6.1703527e+117
-6.1692719e+117
-6.1584461e+117
-6.1569045e+117
-6.171793e+117
-6.1734412e+117
-6.1752215e+117
-6.1601276e+117
-6.1767882e+117
-6.1617053e+117
-6.1847991e+117
-6.1985477e+117
-6.2134729e+117
-6.1967943e+117
-6.211857e+117
-6.1865214e+117
-6.1897265e+117
-6.1883254e+117
-6.2001247e+117
-6.2147782e+117
-6.2013725e+117
-6.2161755e+117
-6.2333932e+117
-6.2320127e+117
-6.2451022e+117
-6.2465539e+117
-6.2291855e+117
-6.2422346e+117
-6.2436887e+117
-6.2306708e+117
-6.1807474e+117
-6.1813654e+117
-6.1931739e+117
-6.2080172e+117
-6.1924086e+117
-6.2071992e+117
-6.2243522e+117
-6.2253529e+117
-6.2383885e+117
-6.2374156e+117
-6.2090765e+117
-6.2264789e+117
-6.2103502e+117
-6.22768e+117
-6.2407321e+117
-6.2394904e+117
-6.1821873e+117
-6.1941267e+117
-6.1953058e+117
-6.1833203e+117
-6.2585901e+117
-6.2730167e+117
-6.2745021e+117
-6.2600624e+117
-6.2700356e+117
-6.2556698e+117
-6.2571176e+117
-6.2714911e+117
-6.2872305e+117
-6.2857486e+117
-6.2996601e+117
-6.3012058e+117
-6.2887978e+117
-6.302806e+117
-6.3043442e+117
-6.2903218e+117
-6.2508707e+117
-6.2652634e+117
-6.2662429e+117
-6.2518389e+117
-6.2810283e+117
-6.2819925e+117
-6.2959499e+117
-6.2949776e+117
-6.28435e+117
-6.2831081e+117
-6.2982163e+117
-6.2970618e+117
-6.2529419e+117
-6.2673561e+117
-6.2686079e+117
-6.254198e+117
-6.3091585e+117
-6.3258143e+117
-6.3403343e+117
-6.341369e+117
-6.3101244e+117
-6.3269054e+117
-6.3112075e+117
-6.3279883e+117
-6.3424487e+117
-6.3436581e+117
-6.3123299e+117
-6.3291124e+117
-6.3556991e+117
-6.3678975e+117
-6.3544567e+117
-6.3666588e+117
-6.3818806e+117
-6.3806751e+117
-6.3533434e+117
-6.3655274e+117
-6.3523412e+117
-6.3645377e+117
-6.3795084e+117
-6.3784774e+117
-6.3153834e+117
-6.3321697e+117
-6.3138259e+117
-6.3305492e+117
-6.345089e+117
-6.3466566e+117
-6.3586763e+117
-6.3708709e+117
-6.3571436e+117
-6.3693511e+117
-6.3833284e+117
-6.3848157e+117
-6.3482798e+117
-6.3497767e+117
-6.3617746e+117
-6.3738682e+117
-6.3602527e+117
-6.3724034e+117
-6.3862536e+117
-6.3876877e+117
-6.3170331e+117
-6.3337717e+117
-6.3185713e+117
-6.3352084e+117
-6.3857103e+117
-6.3863399e+117
-6.4079013e+117
-6.3963052e+117
-6.4085389e+117
-6.3969499e+117
-6.3847965e+117
-6.3851721e+117
-6.4067287e+117
-6.3952964e+117
-6.4072627e+117
-6.3957253e+117
-6.3870303e+117
-6.3876668e+117
-6.4092925e+117
-6.3976722e+117
-6.4100196e+117
-6.3983431e+117
-6.3884808e+117
-6.3894021e+117
-6.4108699e+117
-6.3991852e+117
-6.4117595e+117
-6.400101e+117
-6.3952843e+117
-6.3967017e+117
-6.4176948e+117
-6.4060091e+117
-6.4190452e+117
-6.4073848e+117
-6.3996077e+117
-6.3981341e+117
-6.4204479e+117
-6.408818e+117
-6.4218429e+117
-6.4102657e+117
-6.391415e+117
-6.3904232e+117
-6.4139131e+117
-6.4021659e+117
-6.4128346e+117
-6.4011474e+117
-6.3938382e+117
-6.3926012e+117
-6.4151107e+117
-6.4033507e+117
-6.4163075e+117
-6.4045853e+117
-6.4195242e+117
-6.4411737e+117
-6.4299103e+117
-6.420674e+117
-6.4423233e+117
-6.4310557e+117
-6.4218384e+117
-6.4228284e+117
-6.4434413e+117
-6.4322071e+117
-6.4444012e+117
-6.4331918e+117
-6.4168992e+117
-6.4182213e+117
-6.4386021e+117
-6.4272934e+117
-6.4398738e+117
-6.4286038e+117
-6.4155578e+117
-6.4142054e+117
-6.4358605e+117
-6.4245969e+117
-6.4372326e+117
-6.4259451e+117
-6.4012436e+117
-6.4234397e+117
-6.411884e+117
-6.40281e+117
-6.4250032e+117
-6.4134412e+117
-6.4044861e+117
-6.4266225e+117
-6.4150849e+117
-6.4061024e+117
-6.4281567e+117
-6.4166723e+117
-6.4078367e+117
-6.4298136e+117
-6.418366e+117
-6.4094822e+117
-6.4313866e+117
-6.4199758e+117
-6.4127155e+117
-6.434393e+117
-6.4231207e+117
-6.4111785e+117
-6.4329662e+117
-6.421627e+117
-6.2285005e+117
-6.2302613e+117
-6.2240574e+117
-6.2262863e+117
-6.2451603e+117
-6.2429888e+117
-6.2586469e+117
-6.2564986e+117
-6.2473609e+117
-6.2490256e+117
-6.2625517e+117
-6.2607801e+117
-6.2167667e+117
-6.2354938e+117
-6.2182765e+117
-6.2371808e+117
-6.2505831e+117
-6.2489279e+117
-6.2217971e+117
-6.2200005e+117
-6.2389624e+117
-6.2406893e+117
-6.254275e+117
-6.2523994e+117
-6.2738516e+117
-6.2879313e+117
-6.2897334e+117
-6.2756609e+117
-6.2837806e+117
-6.269642e+117
-6.2717812e+117
-6.2859028e+117
-6.3128392e+117
-6.3018588e+117
-6.2997948e+117
-6.3148711e+117
-6.30387e+117
-6.3168576e+117
-6.3186211e+117
-6.3056605e+117
-6.2655321e+117
-6.2796973e+117
-6.2816578e+117
-6.267479e+117
-6.2761825e+117
-6.2620362e+117
-6.2636943e+117
-6.2778541e+117
-6.295737e+117
-6.3088576e+117
-6.3107924e+117
-6.2976943e+117
-6.2922505e+117
-6.2939047e+117
-6.3070245e+117
-6.305354e+117
-6.3192306e+117
-6.3368444e+117
-6.3520381e+117
-6.353728e+117
-6.3209181e+117
-6.3386424e+117
-6.3227525e+117
-6.3404463e+117
-6.355485e+117
-6.3572121e+117
-6.324616e+117
-6.3421546e+117
-6.3798252e+117
-6.378225e+117
-6.3925589e+117
-6.3941408e+117
-6.3764242e+117
-6.3748971e+117
-6.3892282e+117
-6.3908355e+117
-6.326577e+117
-6.3440351e+117
-6.3590437e+117
-6.3609672e+117
-6.3286023e+117
-6.3460823e+117
-6.3305965e+117
-6.3479865e+117
-6.3628539e+117
-6.3645269e+117
-6.3322988e+117
-6.349594e+117
-6.3868386e+117
-6.3852724e+117
-6.3993737e+117
-6.4008948e+117
-6.3833896e+117
-6.381705e+117
-6.3959384e+117
-6.3976326e+117
-6.2334503e+117
-6.2319109e+117
-6.2508264e+117
-6.2643157e+117
-6.2658501e+117
-6.2524473e+117
-6.267234e+117
-6.2350071e+117
-6.2539241e+117
-6.2364613e+117
-6.2552107e+117
-6.2685756e+117
-6.2421714e+117
-6.2411154e+117
-6.2396493e+117
-6.238098e+117
-6.2584016e+117
-6.2568718e+117
-6.2701917e+117
-6.2717662e+117
-6.2599548e+117
-6.2733075e+117
-6.2743876e+117
-6.2609837e+117
-6.2862476e+117
-6.3001537e+117
-6.3011648e+117
-6.2872986e+117
-6.2971653e+117
-6.2831742e+117
-6.2847682e+117
-6.298741e+117
-6.3258923e+117
-6.3145245e+117
-6.3130128e+117
-6.3273605e+117
-6.3158971e+117
-6.3168936e+117
-6.3296704e+117
-6.3286865e+117
-6.2801895e+117
-6.2941825e+117
-6.2956014e+117
-6.2815872e+117
-6.2914014e+117
-6.2773773e+117
-6.2788399e+117
-6.2928284e+117
-6.3100414e+117
-6.3229925e+117
-6.3243934e+117
-6.3114597e+117
-6.3072899e+117
-6.3086821e+117
-6.3216167e+117
-6.32022e+117
-6.3661259e+117
-6.3675386e+117
-6.3353122e+117
-6.3527305e+117
-6.3339047e+117
-6.3512203e+117
-6.3688563e+117
-6.3366891e+117
-6.354093e+117
-6.3380184e+117
-6.3552596e+117
-6.3700477e+117
-6.3910566e+117
-6.4051664e+117
-6.3924181e+117
-6.4064716e+117
-6.3883852e+117
-6.4024245e+117
-6.3897359e+117
-6.4038214e+117
-6.3394615e+117
-6.3566296e+117
-6.37141e+117
-6.3727854e+117
-6.3409193e+117
-6.3581045e+117
-6.3422417e+117
-6.3593474e+117
-6.3740425e+117
-6.3750631e+117
-6.3432182e+117
-6.3602882e+117
-6.3971294e+117
-6.3961914e+117
-6.41013e+117
-6.411068e+117
-6.3949072e+117
-6.3937674e+117
-6.4077893e+117
-6.4089571e+117
-6.0974403e+117
-6.097456e+117
-6.1119425e+117
-6.1119684e+117
-6.0981136e+117
-6.0977654e+117
-6.1121891e+117
-6.1125579e+117
-6.125117e+117
-6.1246683e+117
-6.137701e+117
-6.138085e+117
-6.1519287e+117
-6.1664813e+117
-6.1666909e+117
-6.1516337e+117
-6.1515078e+117
-6.1514142e+117
-6.1662219e+117
-6.1663497e+117
-6.1245514e+117
-6.137578e+117
-6.137505e+117
-6.1244546e+117
-6.1257356e+117
-6.1388732e+117
-6.1384779e+117
-6.1253912e+117
-6.1380002e+117
-6.1377011e+117
-6.1247004e+117
-6.1250074e+117
-6.151711e+117
-6.1514678e+117
-6.1662256e+117
-6.1664151e+117
-6.1522476e+117
-6.1669967e+117
-6.1676575e+117
-6.1527682e+117
-6.0982142e+117
-6.0979468e+117
-6.112587e+117
-6.1128851e+117
-6.0976371e+117
-6.1121676e+117
-6.1123213e+117
-6.0977676e+117
-6.2040893e+117
-6.2041292e+117
-6.2225679e+117
-6.2226335e+117
-6.2357659e+117
-6.2357608e+117
-6.2039236e+117
-6.2224314e+117
-6.2040795e+117
-6.2226123e+117
-6.2356349e+117
-6.2357068e+117
-6.2049142e+117
-6.2055096e+117
-6.2040406e+117
-6.2043269e+117
-6.2230221e+117
-6.2226771e+117
-6.2362756e+117
-6.2359097e+117
-6.2235469e+117
-6.2239605e+117
-6.237344e+117
-6.2368168e+117
-6.2638505e+117
-6.2498127e+117
-6.2504119e+117
-6.2644921e+117
-6.2488344e+117
-6.2627949e+117
-6.2632639e+117
-6.2492523e+117
-6.2786547e+117
-6.2791267e+117
-6.292088e+117
-6.2915987e+117
-6.2797649e+117
-6.2934982e+117
-6.2927553e+117
-6.2804697e+117
-6.2624396e+117
-6.2623975e+117
-6.2485798e+117
-6.2485852e+117
-6.2624393e+117
-6.2485433e+117
-6.2485441e+117
-6.2624877e+117
-6.2910934e+117
-6.2782239e+117
-6.2912584e+117
-6.278334e+117
-6.2781169e+117
-6.2908945e+117
-6.2909912e+117
-6.2781722e+117
-6.3366672e+117
-6.3368807e+117
-6.3591738e+117
-6.3589066e+117
-6.3729914e+117
-6.3733605e+117
-6.3371245e+117
-6.3047436e+117
-6.3222197e+117
-6.3049813e+117
-6.3224216e+117
-6.3374194e+117
-6.3045134e+117
-6.3217706e+117
-6.3046127e+117
-6.322012e+117
-6.3595541e+117
-6.3601321e+117
-6.3744295e+117
-6.3738549e+117
-6.3053491e+117
-6.3229016e+117
-6.3379398e+117
-6.3385424e+117
-6.3058533e+117
-6.323516e+117
-6.3073e+117
-6.3248291e+117
-6.3399849e+117
-6.3392513e+117
-6.3065436e+117
-6.3241771e+117
-6.3629103e+117
-6.3619814e+117
-6.3764564e+117
-6.3773343e+117
-6.3612407e+117
-6.3607309e+117
-6.375092e+117
-6.3757e+117
-6.1394457e+117
-6.126231e+117
-6.12669e+117
-6.1399455e+117
-6.1406662e+117
-6.1273854e+117
-6.1280886e+117
-6.1414149e+117
-6.1539589e+117
-6.1688984e+117
-6.1683083e+117
-6.1533827e+117
-6.1546615e+117
-6.1555585e+117
-6.1706746e+117
-6.1696151e+117
-6.1584229e+117
-6.1568924e+117
-6.1721119e+117
-6.173751e+117
-6.1755295e+117
-6.1600985e+117
-6.1770865e+117
-6.1616618e+117
-6.212426e+117
-6.2107854e+117
-6.2137334e+117
-6.2150849e+117
-6.2338247e+117
-6.2324568e+117
-6.2458927e+117
-6.2473332e+117
-6.2296338e+117
-6.243034e+117
-6.2444811e+117
-6.2311138e+117
-6.206978e+117
-6.2061213e+117
-6.2247926e+117
-6.2257981e+117
-6.2391831e+117
-6.238205e+117
-6.208036e+117
-6.2269287e+117
-6.2092421e+117
-6.2281084e+117
-6.241524e+117
-6.2402931e+117
-6.2589985e+117
-6.2731173e+117
-6.2745952e+117
-6.2604616e+117
-6.2701498e+117
-6.2560891e+117
-6.2575295e+117
-6.2715982e+117
-6.2875585e+117
-6.2860896e+117
-6.2990836e+117
-6.3006173e+117
-6.2891228e+117
-6.302211e+117
-6.3037452e+117
-6.2906447e+117
-6.2512797e+117
-6.2653669e+117
-6.2663526e+117
-6.2522544e+117
-6.2813602e+117
-6.2823242e+117
-6.295367e+117
-6.2943959e+117
-6.2846783e+117
-6.2834434e+117
-6.2976047e+117
-6.2964777e+117
-6.2533666e+117
-6.2674748e+117
-6.2687216e+117
-6.2546165e+117
-6.3082264e+117
-6.3258149e+117
-6.3409755e+117
-6.3420007e+117
-6.3092033e+117
-6.3269079e+117
-6.310285e+117
-6.3279905e+117
-6.3430823e+117
-6.3442883e+117
-6.3113762e+117
-6.3290967e+117
-6.3671787e+117
-6.3660314e+117
-6.3817258e+117
-6.380556e+117
-6.3648075e+117
-6.3639156e+117
-6.3793543e+117
-6.3783609e+117
-6.3144607e+117
-6.3321715e+117
-6.3129021e+117
-6.3305526e+117
-6.3457335e+117
-6.3472866e+117
-6.370245e+117
-6.3687301e+117
-6.3832131e+117
-6.3846939e+117
-6.3489055e+117
-6.3504066e+117
-6.3731553e+117
-6.371678e+117
-6.3860981e+117
-6.3875294e+117
-6.3160951e+117
-6.3337648e+117
-6.3175947e+117
-6.3351853e+117
)
;
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;
}
procBoundary14to0
{
type processor;
value nonuniform List<scalar>
101
(
-7.1730164e+117
-7.1795924e+117
-7.0394346e+117
-7.0449849e+117
-7.2296792e+117
-7.1594239e+117
-7.0391132e+117
-7.0449621e+117
-7.0443701e+117
-7.0469187e+117
-7.2148836e+117
-7.1953449e+117
-6.7344649e+117
-7.0124614e+117
-7.0301243e+117
-7.0364115e+117
-7.0420838e+117
-7.052849e+117
-7.0528572e+117
-6.9320724e+117
-7.1715556e+117
-7.1548868e+117
-6.7344649e+117
-6.7344649e+117
-6.5910809e+117
-6.8001665e+117
-7.011267e+117
-7.0291307e+117
-7.0411789e+117
-7.0463862e+117
-7.0536614e+117
-7.0535487e+117
-6.9320724e+117
-6.9320724e+117
-6.888414e+117
-7.1542437e+117
-6.2974668e+117
-6.5819454e+117
-6.5910809e+117
-6.5867948e+117
-6.78874e+117
-7.0159762e+117
-7.0345221e+117
-7.0418274e+117
-7.046932e+117
-6.6642276e+117
-6.6642276e+117
-6.6468934e+117
-6.8514156e+117
-6.3757053e+117
-6.1587608e+117
-6.5763358e+117
-6.5867948e+117
-6.5874924e+117
-6.7911346e+117
-7.0166385e+117
-7.0352472e+117
-6.6642276e+117
-6.6468934e+117
-6.6314188e+117
-6.6152605e+117
-6.3667942e+117
-6.1573971e+117
-6.5769731e+117
-6.5874924e+117
-6.5875978e+117
-6.7914586e+117
-6.6314188e+117
-6.6152605e+117
-6.1579717e+117
-6.1573971e+117
-6.3676659e+117
-6.1589442e+117
-6.5770966e+117
-6.5875978e+117
-6.3595254e+117
-6.3435108e+117
-6.1289516e+117
-6.1495114e+117
-6.1586842e+117
-6.1589442e+117
-6.3677082e+117
-6.1590097e+117
-5.6950288e+117
-5.9037768e+117
-6.1315611e+117
-6.1515508e+117
-6.1586935e+117
-6.1590097e+117
-5.2730459e+117
-5.4805658e+117
-5.695688e+117
-5.9033468e+117
-6.1318133e+117
-6.1516596e+117
-5.2734079e+117
-5.4809557e+117
-5.6957513e+117
-5.9034238e+117
-5.273401e+117
-5.4808692e+117
)
;
}
procBoundary14to1
{
type processor;
value nonuniform List<scalar>
57
(
-4.9505061e+117
-4.9552076e+117
-5.0748906e+117
-5.0697544e+117
-4.958802e+117
-5.0785285e+117
-5.0827303e+117
-5.0781505e+117
-5.0710472e+117
-4.9601646e+117
-5.0868187e+117
-5.0912097e+117
-5.0826275e+117
-5.0864444e+117
-5.080163e+117
-5.0709518e+117
-4.9587792e+117
-5.0917944e+117
-5.0921288e+117
-5.093233e+117
-5.099655e+117
-5.0854934e+117
-5.08781e+117
-5.0802761e+117
-5.071016e+117
-5.0887638e+117
-5.0912853e+117
-5.1006343e+117
-5.1007707e+117
-5.0945312e+117
-5.1021707e+117
-5.08568e+117
-5.0879603e+117
-5.0963679e+117
-5.0994385e+117
-5.1040371e+117
-5.1041209e+117
-5.0946918e+117
-5.1023872e+117
-5.0880366e+117
-5.092776e+117
-5.0996914e+117
-5.102511e+117
-5.1042903e+117
-5.1043847e+117
-5.0804247e+117
-5.0845962e+117
-5.0904403e+117
-5.0951878e+117
-5.09993e+117
-5.1027687e+117
-5.0825679e+117
-5.0864954e+117
-5.0906721e+117
-5.0954154e+117
-5.082786e+117
-5.086701e+117
)
;
}
procBoundary14to6
{
type processor;
value nonuniform List<scalar>
614
(
-6.8030922e+117
-6.8403215e+117
-6.5073704e+117
-6.6132745e+117
-5.8456492e+117
-6.2644682e+117
-6.649418e+117
-6.6572325e+117
-6.5109807e+117
-6.4312712e+117
-6.0313943e+117
-5.3900817e+117
-5.3024415e+117
-5.5596915e+117
-5.788581e+117
-5.5596915e+117
-5.9206372e+117
-5.807449e+117
-5.7244793e+117
-5.9451536e+117
-6.2884355e+117
-6.5332464e+117
-6.4929017e+117
-6.556299e+117
-6.5487277e+117
-6.4000622e+117
-6.4554886e+117
-5.5596915e+117
-5.7244793e+117
-5.7216363e+117
-5.9416719e+117
-5.9451536e+117
-5.9206372e+117
-6.0236434e+117
-6.0310129e+117
-6.1575119e+117
-5.5087188e+117
-5.2901187e+117
-5.9206372e+117
-5.9206372e+117
-5.807449e+117
-5.6973864e+117
-5.8288595e+117
-6.3141958e+117
-6.3759606e+117
-6.4148756e+117
-6.3721665e+117
-6.4769249e+117
-6.4959936e+117
-6.5001527e+117
-6.4850681e+117
-6.3849595e+117
-6.421549e+117
-5.5751064e+117
-5.6795335e+117
-5.6258222e+117
-5.6973864e+117
-5.5087188e+117
-5.5054583e+117
-5.285796e+117
-5.2901187e+117
-6.0310129e+117
-6.0895316e+117
-6.0864595e+117
-6.119596e+117
-6.0310129e+117
-6.2351854e+117
-6.1547752e+117
-5.9783939e+117
-5.9278396e+117
-5.9278396e+117
-5.9278396e+117
-5.9785559e+117
-5.8795223e+117
-5.8288595e+117
-5.8288595e+117
-5.8854353e+117
-5.7790728e+117
-6.3320873e+117
-6.1337313e+117
-6.2944178e+117
-6.4203004e+117
-6.2558914e+117
-6.4451363e+117
-6.4669468e+117
-6.4712451e+117
-6.4645018e+117
-6.4458202e+117
-6.3921066e+117
-6.37349e+117
-5.6795335e+117
-5.6795335e+117
-5.7790728e+117
-5.7265445e+117
-6.0864595e+117
-6.0576788e+117
-6.119596e+117
-6.119596e+117
-6.0298101e+117
-6.0576788e+117
-6.2331855e+117
-6.282905e+117
-6.1528675e+117
-6.1918376e+117
-6.0036367e+117
-5.9321382e+117
-5.9321382e+117
-5.9543048e+117
-5.9785559e+117
-5.9785559e+117
-5.9092524e+117
-5.8611012e+117
-5.8611012e+117
-5.8359088e+117
-5.8854353e+117
-5.8854353e+117
-5.8133268e+117
-5.8129188e+117
-6.3413733e+117
-6.1280947e+117
-6.3615289e+117
-6.1732961e+117
-6.2973095e+117
-6.3986361e+117
-6.4104787e+117
-6.4414339e+117
-6.4524457e+117
-6.454436e+117
-6.4460608e+117
-6.4520079e+117
-6.410749e+117
-6.4333507e+117
-6.3531976e+117
-5.7261725e+117
-5.7054528e+117
-5.726143e+117
-5.726143e+117
-5.8129188e+117
-5.7901339e+117
-5.7684225e+117
-5.7465744e+117
-6.0827594e+117
-6.0986164e+117
-6.0684733e+117
-6.06828e+117
-6.132408e+117
-6.1320373e+117
-6.1320373e+117
-6.1144936e+117
-6.0274707e+117
-6.0408254e+117
-6.0541294e+117
-6.0684733e+117
-6.2313808e+117
-6.2566517e+117
-6.2825205e+117
-6.3122489e+117
-6.1495752e+117
-6.1685089e+117
-6.1875633e+117
-6.2095987e+117
-5.7684225e+117
-5.7901339e+117
-5.8129188e+117
-6.001189e+117
-6.014428e+117
-5.9330004e+117
-5.9433708e+117
-5.9440579e+117
-5.9440579e+117
-5.9655556e+117
-5.9538357e+117
-5.9892166e+117
-5.9896951e+117
-5.9896951e+117
-5.9773907e+117
-5.9104805e+117
-5.9217954e+117
-5.8763104e+117
-5.8760379e+117
-5.8760379e+117
-5.8621553e+117
-5.8434403e+117
-5.8993064e+117
-5.8993064e+117
-5.8994712e+117
-5.8880733e+117
-5.8221347e+117
-5.8409871e+117
-5.8510202e+117
-6.3658806e+117
-6.1791122e+117
-6.2392282e+117
-6.3361243e+117
-6.3031473e+117
-6.3778662e+117
-6.4180464e+117
-6.4396591e+117
-6.4421621e+117
-6.4400529e+117
-6.4440147e+117
-6.3907941e+117
-6.4245845e+117
-6.3537976e+117
-6.3177492e+117
-5.7413864e+117
-5.7243091e+117
-5.741468e+117
-5.741468e+117
-5.7609127e+117
-6.0839474e+117
-6.0995782e+117
-6.0692083e+117
-6.0690761e+117
-6.1331473e+117
-6.1329479e+117
-6.1329479e+117
-6.1158848e+117
-6.0285383e+117
-6.0417402e+117
-6.0552252e+117
-6.0692083e+117
-6.2346715e+117
-6.2600465e+117
-6.2875891e+117
-6.1510757e+117
-6.1697971e+117
-6.189815e+117
-6.2113837e+117
-5.7609127e+117
-5.7808306e+117
-5.8221347e+117
-5.801443e+117
-6.0024857e+117
-6.0153512e+117
-5.9351248e+117
-5.9453842e+117
-5.9459585e+117
-5.9459585e+117
-5.9672117e+117
-5.9557718e+117
-5.9905435e+117
-5.9910385e+117
-5.9910385e+117
-5.9790007e+117
-5.9135259e+117
-5.9242425e+117
-5.8801009e+117
-5.8796258e+117
-5.8796258e+117
-5.8652702e+117
-5.9030525e+117
-5.9030525e+117
-5.9031138e+117
-5.8920518e+117
-5.8623521e+117
-5.8409871e+117
-5.8307793e+117
-5.8510202e+117
-6.1244788e+117
-6.1814143e+117
-6.2104841e+117
-6.2397487e+117
-6.2726685e+117
-6.3497215e+117
-6.3050108e+117
-6.3228035e+117
-6.3943076e+117
-6.3786206e+117
-6.399667e+117
-6.4153886e+117
-6.4275163e+117
-6.4319916e+117
-6.4383971e+117
-6.4413212e+117
-6.4382264e+117
-6.3859592e+117
-6.423155e+117
-6.3184009e+117
-6.3503921e+117
-5.753732e+117
-5.7531698e+117
-5.7303533e+117
-5.737857e+117
-5.7531035e+117
-5.7453639e+117
-5.7534914e+117
-5.7534914e+117
-5.7723634e+117
-5.7631361e+117
-6.0839128e+117
-6.099688e+117
-6.069147e+117
-6.0690234e+117
-6.1331125e+117
-6.1330068e+117
-6.1330068e+117
-6.1159755e+117
-6.0285763e+117
-6.0418166e+117
-6.0552553e+117
-6.069147e+117
-6.2349843e+117
-6.2606016e+117
-6.2883167e+117
-6.1511074e+117
-6.1698252e+117
-6.190049e+117
-6.2115211e+117
-5.7729643e+117
-5.7723634e+117
-5.7823158e+117
-5.7921691e+117
-5.8210044e+117
-5.8307793e+117
-5.8016091e+117
-5.8115484e+117
-6.0026129e+117
-6.0154385e+117
-5.9355208e+117
-5.9457591e+117
-5.9462988e+117
-5.9462988e+117
-5.9674827e+117
-5.9560846e+117
-5.990738e+117
-5.9912437e+117
-5.9912437e+117
-5.9792112e+117
-5.9143307e+117
-5.9248234e+117
-5.882807e+117
-5.8822733e+117
-5.8822733e+117
-5.9042796e+117
-5.9042796e+117
-5.9043163e+117
-5.8937264e+117
-5.8623521e+117
-5.8715542e+117
-5.8411612e+117
-5.8309044e+117
-5.8506871e+117
-6.0993175e+117
-6.1258218e+117
-6.1546937e+117
-6.1791514e+117
-6.1934809e+117
-6.2091873e+117
-6.2268154e+117
-6.2569122e+117
-6.2415262e+117
-6.2725901e+117
-6.289186e+117
-6.3298797e+117
-6.3476141e+117
-6.3631289e+117
-6.3105842e+117
-6.383766e+117
-6.4047267e+117
-6.4155059e+117
-6.4246079e+117
-6.4325383e+117
-6.4378222e+117
-6.4398624e+117
-6.4370532e+117
-6.3869152e+117
-6.4232196e+117
-6.3173355e+117
-6.3476498e+117
-5.7548105e+117
-5.7543197e+117
-5.7320727e+117
-5.7392694e+117
-5.7542661e+117
-5.7468268e+117
-5.7546304e+117
-5.7546304e+117
-5.7732214e+117
-5.764335e+117
-6.083918e+117
-6.0997565e+117
-6.0691164e+117
-6.0689902e+117
-6.1331128e+117
-6.1330346e+117
-6.1330346e+117
-6.11603e+117
-6.0285795e+117
-6.0418295e+117
-6.0552575e+117
-6.0691164e+117
-6.2348631e+117
-6.2603731e+117
-6.2878423e+117
-6.1511176e+117
-6.1697816e+117
-6.1900757e+117
-6.2114238e+117
-5.7738211e+117
-5.7732214e+117
-5.7833666e+117
-5.7928646e+117
-5.8215703e+117
-5.8309044e+117
-5.8024492e+117
-5.8120062e+117
-6.0026401e+117
-6.0154562e+117
-5.9355754e+117
-5.9458071e+117
-5.9463389e+117
-5.9463389e+117
-5.967533e+117
-5.9561379e+117
-5.9907794e+117
-5.9912881e+117
-5.9912881e+117
-5.9792545e+117
-5.9145377e+117
-5.9249381e+117
-5.8844312e+117
-5.8838807e+117
-5.8838807e+117
-5.9047077e+117
-5.9047077e+117
-5.9047398e+117
-5.8945309e+117
-5.8612315e+117
-5.8715542e+117
-5.8739084e+117
-5.8411188e+117
-5.8309269e+117
-5.8506259e+117
-6.097434e+117
-6.1115054e+117
-6.124366e+117
-6.1378555e+117
-6.151443e+117
-6.1659749e+117
-6.1796289e+117
-6.1927732e+117
-6.2172535e+117
-6.2314288e+117
-6.260533e+117
-6.2457053e+117
-6.2761537e+117
-6.292501e+117
-6.3332713e+117
-6.3481909e+117
-6.3702075e+117
-6.3178572e+117
-6.3849432e+117
-6.4066908e+117
-6.3966341e+117
-6.4147164e+117
-6.4230655e+117
-6.4314576e+117
-6.4390942e+117
-6.4366273e+117
-6.3167279e+117
-5.7551522e+117
-5.7546827e+117
-5.732519e+117
-5.7396897e+117
-5.7546308e+117
-5.7472039e+117
-5.7549805e+117
-5.7549805e+117
-5.7734717e+117
-5.7646117e+117
-6.0838719e+117
-6.0997919e+117
-6.0690237e+117
-6.0688926e+117
-6.1331232e+117
-6.1330599e+117
-6.1330599e+117
-6.1160731e+117
-6.0285704e+117
-6.0418243e+117
-6.0552304e+117
-6.0690237e+117
-6.2348674e+117
-6.2603415e+117
-6.287568e+117
-6.1511914e+117
-6.1697809e+117
-6.1901897e+117
-6.2114179e+117
-5.7740823e+117
-5.7734717e+117
-5.7835939e+117
-5.793071e+117
-5.8216356e+117
-5.8309269e+117
-5.802609e+117
-5.8121376e+117
-6.002638e+117
-6.0154511e+117
-5.9355669e+117
-5.9457994e+117
-5.9463301e+117
-5.9463301e+117
-5.967535e+117
-5.9561442e+117
-5.9907815e+117
-5.9912925e+117
-5.9912925e+117
-5.9792579e+117
-5.9145988e+117
-5.9249533e+117
-5.8854494e+117
-5.88489e+117
-5.88489e+117
-5.904892e+117
-5.904892e+117
-5.9049221e+117
-5.8949665e+117
-5.8616167e+117
-5.8739084e+117
-5.8752184e+117
-5.8410428e+117
-5.8308881e+117
-5.8505421e+117
-6.0983429e+117
-6.1122575e+117
-6.1253262e+117
-6.138396e+117
-6.1522191e+117
-6.1664436e+117
-6.1790682e+117
-6.1913777e+117
-6.2074479e+117
-6.2217331e+117
-6.2340532e+117
-6.2618697e+117
-6.2475033e+117
-6.2774255e+117
-6.292348e+117
-6.3353067e+117
-6.3475078e+117
-6.3611029e+117
-6.373156e+117
-6.3074268e+117
-6.3217112e+117
-6.3844349e+117
-6.4062608e+117
-6.3952535e+117
-6.4143062e+117
-6.422328e+117
-6.4308407e+117
-5.755282e+117
-5.7548209e+117
-5.7326856e+117
-5.7398435e+117
-5.75477e+117
-5.7473445e+117
-5.7551149e+117
-5.7551149e+117
-5.773562e+117
-5.7647113e+117
-5.7741776e+117
-5.773562e+117
-5.7836741e+117
-5.7931409e+117
-5.8216284e+117
-5.8308881e+117
-5.8026523e+117
-5.8121659e+117
-5.861899e+117
-5.8752184e+117
-6.0983764e+117
-6.1124612e+117
-6.1253029e+117
-6.1383344e+117
-6.1521074e+117
-6.166396e+117
-6.1788944e+117
-6.1904668e+117
-6.2050693e+117
-6.2219787e+117
-6.2348494e+117
-6.2621351e+117
-6.2480384e+117
-6.2775785e+117
-6.2912272e+117
-6.3356623e+117
-6.3473546e+117
-6.3592218e+117
-6.3727325e+117
-6.3051359e+117
-6.3214451e+117
-6.3843469e+117
-6.406165e+117
-6.3947959e+117
-6.0984748e+117
-6.1128838e+117
-6.1254577e+117
-6.1383782e+117
-6.1521122e+117
-6.1667269e+117
-6.2040004e+117
-6.2224051e+117
-6.2356183e+117
-6.2622295e+117
-6.2484327e+117
-6.2778799e+117
-6.2906399e+117
-6.3362816e+117
-6.3585097e+117
-6.3725729e+117
-6.3042068e+117
-6.3214376e+117
)
;
}
procBoundary14to7
{
type processor;
value nonuniform List<scalar> 8(-5.7143757e+117 -5.7018693e+117 -5.9196418e+117 -5.9335493e+117 -5.2743657e+117 -5.4991031e+117 -5.4897755e+117 -5.2805071e+117);
}
procBoundary14to8
{
type processor;
value nonuniform List<scalar> 9(-7.1600879e+117 -7.0377226e+117 -7.0277455e+117 -7.0405417e+117 -7.023953e+117 -7.0481594e+117 -7.0299351e+117 -7.0489179e+117 -7.0306675e+117);
}
procBoundary14to11
{
type processor;
value nonuniform List<scalar>
33
(
-6.7206399e+117
-6.2732256e+117
-6.5671019e+117
-6.8015284e+117
-5.8234577e+117
-6.1246018e+117
-6.3457479e+117
-6.5658398e+117
-6.7917909e+117
-5.6971797e+117
-5.9142039e+117
-6.1176932e+117
-6.3347876e+117
-6.5665865e+117
-6.7952893e+117
-5.6961955e+117
-5.9059988e+117
-6.1171879e+117
-6.3330614e+117
-6.5668226e+117
-6.7957528e+117
-5.2775098e+117
-5.4858207e+117
-5.698914e+117
-5.9078201e+117
-6.1168157e+117
-6.3330236e+117
-5.2768077e+117
-5.4872624e+117
-5.6992416e+117
-5.9076013e+117
-5.2769098e+117
-5.4875784e+117
)
;
}
procBoundary14to12
{
type processor;
value nonuniform List<scalar>
645
(
-6.8906243e+117
-6.8906243e+117
-5.8032528e+117
-6.5643929e+117
-6.5698038e+117
-6.3054529e+117
-6.311091e+117
-6.9500196e+117
-6.6936217e+117
-6.5698038e+117
-6.0643335e+117
-5.8133044e+117
-5.8089901e+117
-6.0583816e+117
-5.5691526e+117
-5.562597e+117
-5.3118668e+117
-5.3071829e+117
-6.311091e+117
-6.7404518e+117
-6.7442466e+117
-6.5855946e+117
-6.5855946e+117
-6.4927106e+117
-6.0643335e+117
-5.8133044e+117
-5.5766072e+117
-5.5736438e+117
-5.3167298e+117
-5.3149136e+117
-6.3364141e+117
-6.3364141e+117
-6.6961174e+117
-6.5713717e+117
-6.610415e+117
-6.6363743e+117
-6.6284405e+117
-6.6284405e+117
-6.4580891e+117
-6.4580891e+117
-6.4580891e+117
-6.5241742e+117
-6.1946809e+117
-6.1946809e+117
-6.1946809e+117
-6.0535458e+117
-6.0535458e+117
-6.0535458e+117
-5.8250214e+117
-5.8250214e+117
-5.937616e+117
-5.937616e+117
-5.937616e+117
-5.5766072e+117
-6.3604898e+117
-6.4596546e+117
-6.4446545e+117
-6.4857499e+117
-6.5495099e+117
-6.570073e+117
-6.5753587e+117
-6.5753587e+117
-6.5753587e+117
-6.5593788e+117
-6.4855096e+117
-6.4412055e+117
-6.1870783e+117
-6.272828e+117
-6.1170932e+117
-6.0502262e+117
-5.8364691e+117
-5.8364691e+117
-5.8364691e+117
-5.885129e+117
-5.7150532e+117
-5.9346934e+117
-5.9346934e+117
-5.9346934e+117
-5.992015e+117
-5.992015e+117
-5.5948627e+117
-6.380283e+117
-6.3221035e+117
-6.3598265e+117
-6.4894038e+117
-6.5156484e+117
-6.5156484e+117
-6.5382921e+117
-6.5382921e+117
-6.5382921e+117
-6.5432246e+117
-6.5432246e+117
-6.5353877e+117
-6.5144924e+117
-6.4500761e+117
-6.4290703e+117
-6.1824369e+117
-6.2247476e+117
-6.2694583e+117
-6.3241563e+117
-6.109798e+117
-6.1459105e+117
-6.0467939e+117
-6.0779866e+117
-5.5948627e+117
-5.7404219e+117
-5.8617241e+117
-5.8381553e+117
-5.8617241e+117
-5.7888727e+117
-5.8381553e+117
-5.8381553e+117
-5.8848946e+117
-5.9096922e+117
-5.9096922e+117
-5.9348155e+117
-5.9611918e+117
-5.9883068e+117
-6.0175328e+117
-6.0175328e+117
-5.5948627e+117
-6.3916744e+117
-6.4284391e+117
-6.2328078e+117
-6.3620343e+117
-6.3620343e+117
-6.4661783e+117
-6.4783537e+117
-6.4783537e+117
-6.4783537e+117
-6.5108246e+117
-6.5223983e+117
-6.5240379e+117
-6.5238419e+117
-6.5240379e+117
-6.5209983e+117
-6.5146092e+117
-6.5004717e+117
-6.4734611e+117
-6.4054423e+117
-6.1782008e+117
-6.1988432e+117
-6.2195678e+117
-6.2435827e+117
-6.2675035e+117
-6.2953298e+117
-6.3239321e+117
-6.3573422e+117
-6.1053841e+117
-6.1227758e+117
-6.1402055e+117
-6.1594553e+117
-6.058273e+117
-6.0431302e+117
-6.0893425e+117
-6.0732227e+117
-5.7404219e+117
-5.7963257e+117
-5.8172541e+117
-5.8172541e+117
-5.7404219e+117
-5.6920782e+117
-5.8609839e+117
-5.8742947e+117
-5.8742947e+117
-5.8744722e+117
-5.8428587e+117
-5.8234307e+117
-5.8975046e+117
-5.885996e+117
-5.9214197e+117
-5.909333e+117
-5.9214197e+117
-5.9213736e+117
-5.9462434e+117
-5.9337561e+117
-5.9588415e+117
-5.972094e+117
-5.9854639e+117
-5.9995046e+117
-6.0134781e+117
-6.0134788e+117
-6.0134788e+117
-6.0284833e+117
-5.6413237e+117
-5.6920782e+117
-6.2386251e+117
-6.30137e+117
-6.30137e+117
-6.4323163e+117
-6.4323163e+117
-6.368238e+117
-6.4018602e+117
-6.3367433e+117
-6.4018602e+117
-6.4018602e+117
-6.444499e+117
-6.4860616e+117
-6.5084693e+117
-6.5107117e+117
-6.5105769e+117
-6.5107117e+117
-6.5122314e+117
-6.5083194e+117
-6.4895375e+117
-6.4499039e+117
-6.4064984e+117
-6.3643148e+117
-6.1798552e+117
-6.200226e+117
-6.222027e+117
-6.2456122e+117
-6.2712371e+117
-6.2992628e+117
-6.3299353e+117
-6.1064907e+117
-6.1236643e+117
-6.1415884e+117
-6.1602553e+117
-6.0590766e+117
-6.0441308e+117
-6.0899628e+117
-6.0743e+117
-5.7963257e+117
-5.776395e+117
-5.8172541e+117
-5.8227939e+117
-5.7370717e+117
-5.776395e+117
-5.7564668e+117
-5.736512e+117
-5.863043e+117
-5.8770742e+117
-5.8770742e+117
-5.8772669e+117
-5.8304511e+117
-5.8401919e+117
-5.8309717e+117
-5.8498223e+117
-5.9006184e+117
-5.8891841e+117
-5.9236329e+117
-5.9120558e+117
-5.9236329e+117
-5.9236858e+117
-5.9480141e+117
-5.9357835e+117
-5.9605963e+117
-5.9735005e+117
-5.9869017e+117
-6.0006342e+117
-6.0146976e+117
-6.0146646e+117
-6.0146646e+117
-6.0292239e+117
-5.6754211e+117
-5.6966616e+117
-5.7370717e+117
-5.7162931e+117
-5.6994535e+117
-5.7161783e+117
-6.2386251e+117
-6.30137e+117
-6.3357711e+117
-6.3361763e+117
-6.3883382e+117
-6.370241e+117
-6.3539521e+117
-6.3537086e+117
-6.4156815e+117
-6.4451398e+117
-6.4613063e+117
-6.4666627e+117
-6.4956342e+117
-6.4828421e+117
-6.4999693e+117
-6.5003374e+117
-6.506056e+117
-6.5002314e+117
-6.5095085e+117
-6.5063623e+117
-6.4872922e+117
-6.4443719e+117
-6.4024966e+117
-6.3650269e+117
-6.1799921e+117
-6.2003583e+117
-6.2223587e+117
-6.2458776e+117
-6.2716682e+117
-6.2999328e+117
-6.3306827e+117
-6.106418e+117
-6.1237413e+117
-6.1416557e+117
-6.1602865e+117
-6.0591194e+117
-6.0441276e+117
-6.0898548e+117
-6.0742875e+117
-5.8042726e+117
-5.7864836e+117
-5.8227939e+117
-5.8300005e+117
-5.8298418e+117
-5.752294e+117
-5.7864836e+117
-5.7690066e+117
-5.7524971e+117
-5.8607966e+117
-5.8795705e+117
-5.8795705e+117
-5.8797738e+117
-5.8303969e+117
-5.8402887e+117
-5.8309304e+117
-5.8494324e+117
-5.9017399e+117
-5.8907104e+117
-5.9242317e+117
-5.9128482e+117
-5.9242317e+117
-5.9243084e+117
-5.9483903e+117
-5.9362302e+117
-5.9608775e+117
-5.9737218e+117
-5.9870458e+117
-6.0007661e+117
-6.0147839e+117
-6.0147441e+117
-6.0147441e+117
-6.0292652e+117
-5.752294e+117
-5.7342726e+117
-5.6994535e+117
-5.7161783e+117
-5.7161783e+117
-6.2716484e+117
-6.3357711e+117
-6.3017918e+117
-6.3529149e+117
-6.3529259e+117
-6.3530801e+117
-6.3533785e+117
-6.3954822e+117
-6.3761183e+117
-6.3574675e+117
-6.3572084e+117
-6.4293333e+117
-6.4134837e+117
-6.450306e+117
-6.4718016e+117
-6.4828411e+117
-6.4922072e+117
-6.5003374e+117
-6.499169e+117
-6.5047665e+117
-6.4990724e+117
-6.50808e+117
-6.5056824e+117
-6.4866135e+117
-6.4437073e+117
-6.399121e+117
-6.3637511e+117
-6.1800398e+117
-6.2003558e+117
-6.2224168e+117
-6.2458174e+117
-6.2715647e+117
-6.2996876e+117
-6.3301746e+117
-6.1064171e+117
-6.1238011e+117
-6.141702e+117
-6.1603036e+117
-6.0591268e+117
-6.0441206e+117
-6.0898113e+117
-6.0742774e+117
-5.8034356e+117
-5.8122905e+117
-5.7960827e+117
-5.7953401e+117
-5.8208184e+117
-5.8298418e+117
-5.8299732e+117
-5.8298263e+117
-5.7640293e+117
-5.7645772e+117
-5.7875748e+117
-5.7960827e+117
-5.7713769e+117
-5.7644813e+117
-5.7648332e+117
-5.7795865e+117
-5.8697633e+117
-5.8596522e+117
-5.8811715e+117
-5.8811715e+117
-5.8813734e+117
-5.8303837e+117
-5.8402297e+117
-5.8309203e+117
-5.849356e+117
-5.9021536e+117
-5.8914995e+117
-5.924364e+117
-5.9130702e+117
-5.924364e+117
-5.9244427e+117
-5.9484532e+117
-5.9363139e+117
-5.9609206e+117
-5.973755e+117
-5.9870654e+117
-6.000786e+117
-6.0147991e+117
-6.0147576e+117
-6.0147576e+117
-6.0292715e+117
-5.7640293e+117
-5.7553518e+117
-5.7471333e+117
-5.7387037e+117
-5.707136e+117
-5.7146134e+117
-5.7218792e+117
-5.7297707e+117
-5.7297707e+117
-5.7302177e+117
-6.2886569e+117
-6.2705938e+117
-6.3529259e+117
-6.3357474e+117
-6.3195708e+117
-6.3037201e+117
-6.356497e+117
-6.3565073e+117
-6.3566161e+117
-6.3569134e+117
-6.3990402e+117
-6.3836164e+117
-6.4364838e+117
-6.4141352e+117
-6.4515017e+117
-6.4737493e+117
-6.4634587e+117
-6.4819955e+117
-6.4905534e+117
-6.499169e+117
-6.498527e+117
-6.5043174e+117
-6.498436e+117
-6.5073836e+117
-6.3628846e+117
-6.1801254e+117
-6.200371e+117
-6.2225311e+117
-6.2458108e+117
-6.2715431e+117
-6.2995876e+117
-6.3298051e+117
-6.1063711e+117
-6.1238316e+117
-6.1417368e+117
-6.1603194e+117
-6.0591206e+117
-6.044106e+117
-6.0897152e+117
-6.0742439e+117
-5.8040681e+117
-5.8125787e+117
-5.7966298e+117
-5.7959322e+117
-5.8212042e+117
-5.8298263e+117
-5.8299776e+117
-5.8298373e+117
-5.7649702e+117
-5.7655372e+117
-5.7884256e+117
-5.7966298e+117
-5.7724379e+117
-5.7655022e+117
-5.7658147e+117
-5.7803131e+117
-5.8720399e+117
-5.8600132e+117
-5.8821816e+117
-5.8821816e+117
-5.882379e+117
-5.8303348e+117
-5.8401502e+117
-5.8308724e+117
-5.8492692e+117
-5.9023357e+117
-5.891935e+117
-5.9243887e+117
-5.9131409e+117
-5.9243887e+117
-5.9244681e+117
-5.9484538e+117
-5.9363203e+117
-5.9609122e+117
-5.973743e+117
-5.9870542e+117
-6.0007768e+117
-6.0147906e+117
-6.0147477e+117
-6.0147477e+117
-6.0292604e+117
-5.7649702e+117
-5.7566954e+117
-5.7484566e+117
-5.7404026e+117
-5.7092952e+117
-5.716453e+117
-5.7237781e+117
-5.7313715e+117
-5.7313715e+117
-5.7318146e+117
-6.2935121e+117
-6.2790731e+117
-6.3565073e+117
-6.339587e+117
-6.3234263e+117
-6.3081463e+117
-6.3571294e+117
-6.3574532e+117
-6.401148e+117
-6.3731297e+117
-6.3875483e+117
-6.4272271e+117
-6.4394796e+117
-6.4134602e+117
-6.4509793e+117
-6.473283e+117
-6.4620162e+117
-6.4815583e+117
-6.4897774e+117
-6.498527e+117
-5.8042036e+117
-5.8126908e+117
-5.7968116e+117
-5.7961279e+117
-5.8212501e+117
-5.8298373e+117
-5.8299384e+117
-5.8298018e+117
-5.7652423e+117
-5.7658185e+117
-5.7886199e+117
-5.7968116e+117
-5.7727009e+117
-5.7657845e+117
-5.7660932e+117
-5.7805451e+117
-5.8733147e+117
-5.8602793e+117
-5.7652423e+117
-5.7570198e+117
-5.7488362e+117
-5.7408367e+117
-5.7098694e+117
-5.7169888e+117
-5.7242784e+117
-5.731844e+117
-5.731844e+117
-5.7322819e+117
-6.2962878e+117
-6.2690645e+117
-6.2837735e+117
-6.356413e+117
-6.356413e+117
-6.3409625e+117
-6.3564878e+117
-6.324882e+117
-6.3100741e+117
-6.3566081e+117
-6.3568342e+117
-6.355996e+117
-6.35633e+117
-6.4015164e+117
-6.3708205e+117
-6.3872943e+117
-6.4253043e+117
-6.4390501e+117
-6.4133041e+117
-6.4508863e+117
-6.473177e+117
-6.461537e+117
-5.804244e+117
-5.812717e+117
-5.7968764e+117
-5.7961972e+117
-5.821242e+117
-5.8298018e+117
-5.7653445e+117
-5.7659208e+117
-5.7886911e+117
-5.7968764e+117
-5.7727984e+117
-5.7658856e+117
-5.7661931e+117
-5.7806308e+117
-5.7653445e+117
-5.7571389e+117
-5.7489748e+117
-5.7409982e+117
-5.7100811e+117
-5.7171885e+117
-5.7244651e+117
-5.7320245e+117
-5.7320245e+117
-5.7324595e+117
-6.2971315e+117
-6.2666778e+117
-6.2840555e+117
-6.3552585e+117
-6.3552585e+117
-6.3411244e+117
-6.3553559e+117
-6.3251845e+117
-6.3106552e+117
-6.3554877e+117
-6.3556958e+117
-6.3553971e+117
-6.355732e+117
-6.4021446e+117
-6.3698989e+117
-6.3872965e+117
-6.4245888e+117
-6.4388924e+117
-6.2979285e+117
-6.265617e+117
-6.2845005e+117
-6.354634e+117
-6.354634e+117
-6.3414404e+117
-6.3547492e+117
-6.3253006e+117
-6.3110779e+117
-6.354891e+117
-6.3550922e+117
)
;
}
procBoundary14to13
{
type processor;
value nonuniform List<scalar>
11
(
-6.8800672e+117
-6.5557508e+117
-6.5429539e+117
-6.2854081e+117
-6.29739e+117
-5.7944551e+117
-6.0513174e+117
-6.0401948e+117
-5.376246e+117
-5.2733727e+117
-5.4877076e+117
)
;
}
procBoundary14to15
{
type processor;
value nonuniform List<scalar>
1111
(
-5.3136103e+117
-5.3163749e+117
-6.6433702e+117
-6.6287463e+117
-5.3163749e+117
-5.3117091e+117
-5.3120457e+117
-5.3136103e+117
-6.4171943e+117
-6.4066473e+117
-6.1966199e+117
-6.203045e+117
-5.4708504e+117
-5.3117091e+117
-5.3120457e+117
-5.3089785e+117
-5.4692346e+117
-5.4700371e+117
-5.4692346e+117
-6.3749629e+117
-6.3925729e+117
-6.1861548e+117
-6.1734588e+117
-6.1966199e+117
-6.1966199e+117
-6.203045e+117
-6.203045e+117
-6.1838429e+117
-6.1861255e+117
-6.2217672e+117
-6.1771863e+117
-6.1816933e+117
-6.2262806e+117
-5.5868027e+117
-5.5861808e+117
-5.4646258e+117
-5.4636688e+117
-5.635867e+117
-5.3089785e+117
-5.4651136e+117
-5.4689818e+117
-5.4689818e+117
-5.5857038e+117
-5.5859117e+117
-5.5851386e+117
-5.5234714e+117
-5.5857038e+117
-5.6309173e+117
-6.1861548e+117
-6.1861548e+117
-6.1734588e+117
-6.1734588e+117
-6.1734588e+117
-6.1861255e+117
-6.1838429e+117
-6.2262806e+117
-6.1007601e+117
-6.1044228e+117
-6.2166291e+117
-6.1700542e+117
-6.1733689e+117
-6.2183971e+117
-6.2881253e+117
-6.2913151e+117
-6.2262806e+117
-6.2262806e+117
-6.1655445e+117
-6.1592628e+117
-6.2086437e+117
-6.2131784e+117
-5.6541594e+117
-5.652944e+117
-5.6528877e+117
-5.6528282e+117
-5.5793601e+117
-5.5797984e+117
-5.635867e+117
-5.635867e+117
-5.5786138e+117
-5.6693765e+117
-5.6690744e+117
-5.4619876e+117
-5.6343998e+117
-5.631238e+117
-5.456517e+117
-5.6284462e+117
-5.5801294e+117
-5.581918e+117
-5.5847465e+117
-5.581918e+117
-5.5245177e+117
-5.5847465e+117
-5.5847465e+117
-5.5847465e+117
-5.6547758e+117
-5.6553952e+117
-5.6533453e+117
-5.6518785e+117
-5.651675e+117
-5.6534884e+117
-5.6071699e+117
-5.6309173e+117
-5.6309173e+117
-5.6553952e+117
-6.1243055e+117
-6.1106716e+117
-5.9002668e+117
-5.8901404e+117
-6.1592628e+117
-6.1744975e+117
-6.2373095e+117
-6.2352905e+117
-6.2303917e+117
-6.1720222e+117
-6.2333041e+117
-6.2339353e+117
-6.1779805e+117
-6.2388968e+117
-6.2401495e+117
-6.2845403e+117
-6.2851075e+117
-6.285763e+117
-6.2864381e+117
-6.2913151e+117
-6.2913151e+117
-6.3224864e+117
-6.323788e+117
-6.3257418e+117
-6.2293025e+117
-6.2293025e+117
-6.2303917e+117
-6.2303917e+117
-6.2303917e+117
-6.2086437e+117
-6.2086437e+117
-6.2086437e+117
-6.2827139e+117
-6.2832787e+117
-5.681333e+117
-5.6812838e+117
-5.6807459e+117
-5.6690744e+117
-5.6460966e+117
-5.6448285e+117
-5.6450488e+117
-5.6463909e+117
-5.6343998e+117
-5.6913504e+117
-5.6905818e+117
-5.6905818e+117
-5.6905818e+117
-5.6693765e+117
-5.6690744e+117
-5.631238e+117
-5.6284462e+117
-5.6471125e+117
-5.6469041e+117
-5.648499e+117
-5.6252196e+117
-5.648499e+117
-5.6067058e+117
-5.6041951e+117
-5.6272067e+117
-5.6272067e+117
-5.6265341e+117
-5.6848942e+117
-5.6865982e+117
-5.681432e+117
-5.6807474e+117
-5.6807327e+117
-5.682738e+117
-5.6458588e+117
-5.6667553e+117
-5.6667553e+117
-5.6865982e+117
-6.0196327e+117
-6.024405e+117
-6.0087492e+117
-6.0149085e+117
-6.2373095e+117
-6.2352905e+117
-6.2333041e+117
-6.2339353e+117
-6.2388968e+117
-6.2401495e+117
-6.3197924e+117
-6.3197058e+117
-6.3198358e+117
-6.3204616e+117
-6.3209567e+117
-6.3208517e+117
-6.3210497e+117
-6.321627e+117
-6.3257418e+117
-6.2930378e+117
-6.2930378e+117
-6.3396392e+117
-6.3401516e+117
-6.3408418e+117
-6.3418467e+117
-6.3427985e+117
-6.3436569e+117
-6.2631747e+117
-6.2631747e+117
-6.2323546e+117
-6.2327761e+117
-6.2331193e+117
-6.0675415e+117
-6.0758261e+117
-6.2154063e+117
-6.2154063e+117
-6.2154063e+117
-6.2154063e+117
-6.2183892e+117
-6.2827139e+117
-6.2827139e+117
-6.2827139e+117
-6.318456e+117
-6.3190982e+117
-6.0557124e+117
-6.0609085e+117
-5.7003516e+117
-5.7002097e+117
-5.7005756e+117
-5.7007226e+117
-5.699522e+117
-5.6998004e+117
-5.6940523e+117
-5.6736835e+117
-5.6729364e+117
-5.6734108e+117
-5.6741119e+117
-5.6899775e+117
-5.6911542e+117
-5.7110459e+117
-5.7110459e+117
-5.6947762e+117
-5.6950541e+117
-5.6940523e+117
-5.6884834e+117
-5.6888519e+117
-5.6858926e+117
-5.6876825e+117
-5.6758945e+117
-5.6746225e+117
-5.67816e+117
-5.6592015e+117
-5.67816e+117
-5.6440148e+117
-5.640908e+117
-5.660867e+117
-5.660867e+117
-5.6599922e+117
-5.7056505e+117
-5.7071612e+117
-5.7082369e+117
-5.7090405e+117
-5.7011528e+117
-5.701462e+117
-5.7013069e+117
-5.7010942e+117
-5.7012041e+117
-5.7018519e+117
-5.7028737e+117
-5.7042851e+117
-5.6727775e+117
-5.6735176e+117
-5.6825441e+117
-5.6920224e+117
-5.6920224e+117
-5.6916409e+117
-5.6999523e+117
-5.7090405e+117
-6.251554e+117
-6.2507059e+117
-6.2498432e+117
-6.2488939e+117
-6.24698e+117
-6.2466689e+117
-6.2481649e+117
-6.2474859e+117
-6.2521029e+117
-6.2528163e+117
-6.2534998e+117
-6.2540877e+117
-6.3370007e+117
-6.3371243e+117
-6.3371514e+117
-6.3371179e+117
-6.3372105e+117
-6.3374046e+117
-6.3380807e+117
-6.3377379e+117
-6.3383098e+117
-6.3383541e+117
-6.3383083e+117
-6.338315e+117
-6.338403e+117
-6.3385453e+117
-6.338844e+117
-6.3392202e+117
-6.3262688e+117
-6.3436569e+117
-6.3107912e+117
-6.3114654e+117
-6.3114654e+117
-6.2952803e+117
-6.3432769e+117
-6.3437914e+117
-6.3445679e+117
-6.3455829e+117
-6.3464684e+117
-6.3471916e+117
-6.2623198e+117
-6.2808473e+117
-6.2808473e+117
-6.2805309e+117
-6.245891e+117
-6.2461365e+117
-6.2463897e+117
-6.2466123e+117
-6.2465246e+117
-6.2465756e+117
-6.1429779e+117
-6.136601e+117
-6.1497436e+117
-6.1549076e+117
-6.2187106e+117
-6.2187106e+117
-6.2199809e+117
-6.2525681e+117
-6.2525681e+117
-6.2525681e+117
-6.2525681e+117
-6.2543542e+117
-6.2850114e+117
-6.318456e+117
-6.2850114e+117
-6.2845285e+117
-6.3359563e+117
-6.3360086e+117
-6.3366512e+117
-6.3362886e+117
-6.0557124e+117
-6.0557124e+117
-6.0609085e+117
-6.1316599e+117
-5.7026796e+117
-5.7025757e+117
-5.7028344e+117
-5.7029116e+117
-5.7019309e+117
-5.7021391e+117
-5.6922359e+117
-5.7026814e+117
-5.6932575e+117
-5.7102713e+117
-5.6925838e+117
-5.6922871e+117
-5.6935029e+117
-5.6930157e+117
-5.694015e+117
-5.6938567e+117
-5.7114436e+117
-5.7118886e+117
-5.7251637e+117
-5.717542e+117
-5.7246766e+117
-5.7246766e+117
-5.7111558e+117
-5.7117223e+117
-5.7118711e+117
-5.7118912e+117
-5.7115643e+117
-5.7102713e+117
-5.7105226e+117
-5.7111356e+117
-5.7083623e+117
-5.7099397e+117
-5.6970806e+117
-5.6955876e+117
-5.6940733e+117
-5.6946043e+117
-5.6995639e+117
-5.6983916e+117
-5.6824017e+117
-5.6828327e+117
-5.6904926e+117
-5.6995639e+117
-5.6689152e+117
-5.6711525e+117
-5.6659486e+117
-5.6670249e+117
-5.6748336e+117
-5.6836517e+117
-5.6839641e+117
-5.6839641e+117
-5.6828229e+117
-5.6831883e+117
-5.7081458e+117
-5.7096772e+117
-5.7108755e+117
-5.7116346e+117
-5.703453e+117
-5.7037327e+117
-5.7035993e+117
-5.7033888e+117
-5.7036815e+117
-5.7043138e+117
-5.7053097e+117
-5.7065619e+117
-5.676371e+117
-5.6771674e+117
-5.6862784e+117
-5.6952285e+117
-5.6952285e+117
-5.6949291e+117
-5.7030543e+117
-5.7116346e+117
-6.2509052e+117
-6.2501015e+117
-6.2492522e+117
-6.2483905e+117
-6.2462365e+117
-6.2459441e+117
-6.2475627e+117
-6.2468183e+117
-6.2514299e+117
-6.2521395e+117
-6.2528655e+117
-6.2534976e+117
-6.3405716e+117
-6.3407007e+117
-6.3408087e+117
-6.3408497e+117
-6.3409418e+117
-6.3411058e+117
-6.3416741e+117
-6.3413692e+117
-6.3418955e+117
-6.3419536e+117
-6.3419693e+117
-6.3420301e+117
-6.3421254e+117
-6.3422174e+117
-6.3424601e+117
-6.3428603e+117
-6.330059e+117
-6.3471916e+117
-6.3144639e+117
-6.3152181e+117
-6.3152181e+117
-6.2996438e+117
-6.2708383e+117
-6.2856219e+117
-6.2856219e+117
-6.2853534e+117
-6.245262e+117
-6.2455186e+117
-6.245946e+117
-6.2458105e+117
-6.2457705e+117
-6.2458352e+117
-6.1773354e+117
-6.1726521e+117
-6.1661104e+117
-6.1689201e+117
-6.1806083e+117
-6.1833729e+117
-6.1893432e+117
-6.1863246e+117
-6.2169836e+117
-6.2318607e+117
-6.2318607e+117
-6.2324168e+117
-6.2331081e+117
-6.234017e+117
-6.2350168e+117
-6.2525746e+117
-6.27082e+117
-6.27082e+117
-6.2717886e+117
-6.2723465e+117
-6.3031609e+117
-6.2875804e+117
-6.3359563e+117
-6.3187953e+117
-6.3031609e+117
-6.303169e+117
-6.3028446e+117
-6.302558e+117
-6.3396924e+117
-6.3397245e+117
-6.3402688e+117
-6.3399325e+117
-6.0654231e+117
-6.0654231e+117
-6.0654231e+117
-6.0665067e+117
-6.0665067e+117
-6.0665067e+117
-6.0682851e+117
-6.1316599e+117
-6.1316599e+117
-6.1316599e+117
-5.7033405e+117
-5.7032461e+117
-5.7034227e+117
-5.7034846e+117
-5.7026188e+117
-5.702803e+117
-5.6947725e+117
-5.704945e+117
-5.6957082e+117
-5.7120963e+117
-5.6949859e+117
-5.6947177e+117
-5.6958219e+117
-5.6953205e+117
-5.6962357e+117
-5.6961231e+117
-5.7266322e+117
-5.7266247e+117
-5.7267174e+117
-5.7261038e+117
-5.7266851e+117
-5.7194959e+117
-5.7262768e+117
-5.7262768e+117
-5.7129374e+117
-5.7134723e+117
-5.7136011e+117
-5.7136597e+117
-5.7132418e+117
-5.7120963e+117
-5.7259846e+117
-5.7262238e+117
-5.7266441e+117
-5.7268837e+117
-5.723707e+117
-5.724558e+117
-5.725452e+117
-5.725956e+117
-5.6993295e+117
-5.6978948e+117
-5.6962469e+117
-5.6968433e+117
-5.7018463e+117
-5.7006973e+117
-5.6852017e+117
-5.6856928e+117
-5.6932485e+117
-5.7018463e+117
-5.6724571e+117
-5.674599e+117
-5.6696113e+117
-5.670639e+117
-5.6781559e+117
-5.686504e+117
-5.6868303e+117
-5.6868303e+117
-5.6857979e+117
-5.6861463e+117
-5.7087931e+117
-5.7103486e+117
-5.7115666e+117
-5.7123142e+117
-5.7040538e+117
-5.7043338e+117
-5.7042139e+117
-5.7040152e+117
-5.7043599e+117
-5.7049957e+117
-5.7059654e+117
-5.7071727e+117
-5.6772878e+117
-5.6781355e+117
-5.6872402e+117
-5.6960763e+117
-5.6960763e+117
-5.69581e+117
-5.7038381e+117
-5.7123142e+117
-6.2494289e+117
-6.2486423e+117
-6.2478132e+117
-6.2469426e+117
-6.2447483e+117
-6.2444535e+117
-6.2460889e+117
-6.245336e+117
-6.2499912e+117
-6.2506947e+117
-6.2514194e+117
-6.2520603e+117
-6.346394e+117
-6.3314296e+117
-6.3471213e+117
-6.3471213e+117
-6.3159062e+117
-6.3165745e+117
-6.3165745e+117
-6.3015015e+117
-6.3446007e+117
-6.345528e+117
-6.3437801e+117
-6.3432028e+117
-6.2604913e+117
-6.275629e+117
-6.2883972e+117
-6.2883972e+117
-6.288081e+117
-6.2438425e+117
-6.2440936e+117
-6.2444875e+117
-6.2443576e+117
-6.2442988e+117
-6.2443655e+117
-6.1661104e+117
-6.1888444e+117
-6.1910697e+117
-6.1840503e+117
-6.1865289e+117
-6.1774318e+117
-6.1786882e+117
-6.1800935e+117
-6.1820026e+117
-6.192412e+117
-6.193768e+117
-6.1951252e+117
-6.1968329e+117
-6.2015378e+117
-6.202749e+117
-6.1984568e+117
-6.2001146e+117
-6.2176303e+117
-6.2312679e+117
-6.2312679e+117
-6.2318095e+117
-6.2325574e+117
-6.2334511e+117
-6.2344476e+117
-6.2610925e+117
-6.275633e+117
-6.275633e+117
-6.2765248e+117
-6.277108e+117
-6.3069783e+117
-6.291994e+117
-6.3396924e+117
-6.3227848e+117
-6.3069783e+117
-6.3069284e+117
-6.3066895e+117
-6.3065414e+117
-6.0707521e+117
-6.0698121e+117
-6.070266e+117
-6.0712402e+117
-6.1002654e+117
-6.1002654e+117
-6.1011836e+117
-6.1303295e+117
-6.1303295e+117
-6.1334641e+117
-5.703582e+117
-5.7034862e+117
-5.70363e+117
-5.7036888e+117
-5.7028675e+117
-5.7030425e+117
-5.6955044e+117
-5.7054966e+117
-5.6964143e+117
-5.7125647e+117
-5.6956308e+117
-5.695382e+117
-5.6964515e+117
-5.695941e+117
-5.6968091e+117
-5.696724e+117
-5.7284307e+117
-5.7283738e+117
-5.7282117e+117
-5.727602e+117
-5.7271261e+117
-5.7200148e+117
-5.7267446e+117
-5.7267446e+117
-5.7134212e+117
-5.7139278e+117
-5.7140621e+117
-5.714132e+117
-5.7136651e+117
-5.7125647e+117
-5.7276559e+117
-5.7279029e+117
-5.7283137e+117
-5.7285597e+117
-5.7255965e+117
-5.726407e+117
-5.727132e+117
-5.7275918e+117
-5.6999106e+117
-5.6985066e+117
-5.6968375e+117
-5.6974571e+117
-5.7024242e+117
-5.7012819e+117
-5.6859279e+117
-5.6864403e+117
-5.6939151e+117
-5.7024242e+117
-5.6734164e+117
-5.6755156e+117
-5.6706405e+117
-5.6716611e+117
-5.679004e+117
-5.6872587e+117
-5.6875914e+117
-5.6875914e+117
-5.6866157e+117
-5.6869587e+117
-5.7090192e+117
-5.7105874e+117
-5.7118084e+117
-5.7125585e+117
-5.7042668e+117
-5.7045458e+117
-5.7044306e+117
-5.7042429e+117
-5.7046071e+117
-5.7052434e+117
-5.7061945e+117
-5.707391e+117
-5.6775862e+117
-5.6784538e+117
-5.6875657e+117
-5.6963728e+117
-5.6963728e+117
-5.6961213e+117
-5.7041189e+117
-5.7125585e+117
-6.2484276e+117
-6.24765e+117
-6.2468435e+117
-6.2459501e+117
-6.2437512e+117
-6.2434481e+117
-6.2450843e+117
-6.244342e+117
-6.2490269e+117
-6.2497321e+117
-6.2504558e+117
-6.2510903e+117
-6.3413547e+117
-6.3415613e+117
-6.3409239e+117
-6.341119e+117
-6.3408258e+117
-6.3408325e+117
-6.3404787e+117
-6.34067e+117
-6.3420975e+117
-6.3422106e+117
-6.3424449e+117
-6.342786e+117
-6.3419507e+117
-6.3419637e+117
-6.3419008e+117
-6.341783e+117
-6.345217e+117
-6.3315761e+117
-6.3459419e+117
-6.3459419e+117
-6.3161925e+117
-6.3168392e+117
-6.3168392e+117
-6.3020589e+117
-6.3434454e+117
-6.3443533e+117
-6.3426199e+117
-6.3420385e+117
-6.2579867e+117
-6.2758932e+117
-6.2892275e+117
-6.2892275e+117
-6.2889016e+117
-6.2429046e+117
-6.2431405e+117
-6.2435078e+117
-6.2433719e+117
-6.2433111e+117
-6.2433824e+117
-6.1622915e+117
-6.1774318e+117
-6.1893829e+117
-6.1915036e+117
-6.1847257e+117
-6.1870458e+117
-6.1780319e+117
-6.1793013e+117
-6.1807613e+117
-6.1825933e+117
-6.1930911e+117
-6.1944905e+117
-6.1958919e+117
-6.1974965e+117
-6.2020789e+117
-6.2032118e+117
-6.1991539e+117
-6.200686e+117
-6.2170782e+117
-6.2298513e+117
-6.2298513e+117
-6.2304174e+117
-6.2311644e+117
-6.232036e+117
-6.2508743e+117
-6.2330154e+117
-6.265809e+117
-6.278353e+117
-6.278353e+117
-6.2792403e+117
-6.2797745e+117
-6.3083108e+117
-6.2938174e+117
-6.3396439e+117
-6.3396439e+117
-6.3242098e+117
-6.3397376e+117
-6.340186e+117
-6.339934e+117
-6.3083108e+117
-6.3083572e+117
-6.3081899e+117
-6.3080311e+117
-6.0837985e+117
-6.0831399e+117
-6.0826951e+117
-6.0827601e+117
-6.0831695e+117
-6.0828958e+117
-6.0834967e+117
-6.0839038e+117
-6.0976945e+117
-6.1120573e+117
-6.1120573e+117
-6.1123902e+117
-6.1129481e+117
-6.1137788e+117
-6.1280354e+117
-6.1420751e+117
-6.1420751e+117
-6.1436229e+117
-6.1452347e+117
-6.146945e+117
-5.6957711e+117
-5.7056879e+117
-5.6966745e+117
-5.7127286e+117
-5.6958577e+117
-5.6956222e+117
-5.6966757e+117
-5.6961659e+117
-5.6970066e+117
-5.6969358e+117
-5.7289348e+117
-5.7288566e+117
-5.7286092e+117
-5.727992e+117
-5.7272937e+117
-5.720209e+117
-5.7269218e+117
-5.7269218e+117
-5.7135979e+117
-5.7140854e+117
-5.7142259e+117
-5.7142953e+117
-5.7138129e+117
-5.7127286e+117
-5.7281395e+117
-5.7283854e+117
-5.7287639e+117
-5.7290044e+117
-5.7261287e+117
-5.7269216e+117
-5.7275806e+117
-5.7280271e+117
-5.70011e+117
-5.6987238e+117
-5.69705e+117
-5.6976747e+117
-5.7026213e+117
-5.7014841e+117
-5.6861819e+117
-5.6866973e+117
-5.6941427e+117
-5.7026213e+117
-5.673736e+117
-5.6758223e+117
-5.6709929e+117
-5.6720158e+117
-5.6792889e+117
-5.6875228e+117
-5.6878573e+117
-5.6878573e+117
-5.6869106e+117
-5.6872475e+117
-6.3402011e+117
-6.3403931e+117
-6.3397871e+117
-6.3399719e+117
-6.3396811e+117
-6.3396967e+117
-6.3393353e+117
-6.3395227e+117
-6.340935e+117
-6.3410537e+117
-6.3412886e+117
-6.3416145e+117
-6.340793e+117
-6.3407827e+117
-6.3407402e+117
-6.3406128e+117
-6.3445723e+117
-6.3318869e+117
-6.3453007e+117
-6.3453007e+117
-6.3162968e+117
-6.3169333e+117
-6.3169333e+117
-6.3024704e+117
-6.3428107e+117
-6.3437111e+117
-6.3419956e+117
-6.3414196e+117
-6.2569044e+117
-6.2763336e+117
-6.2900221e+117
-6.2900221e+117
-6.2896935e+117
-6.1631838e+117
-6.1780319e+117
-6.189321e+117
-6.1913861e+117
-6.184705e+117
-6.1870023e+117
-6.177992e+117
-6.1793093e+117
-6.1807881e+117
-6.1825768e+117
-6.1930683e+117
-6.1945281e+117
-6.1959467e+117
-6.1974982e+117
-6.2020158e+117
-6.2030963e+117
-6.1991341e+117
-6.2006523e+117
-6.2168938e+117
-6.2289053e+117
-6.2289053e+117
-6.2294917e+117
-6.2302423e+117
-6.2310858e+117
-6.2483703e+117
-6.2320626e+117
-6.2660635e+117
-6.2791565e+117
-6.2791565e+117
-6.28005e+117
-6.2805741e+117
-6.3085627e+117
-6.2943509e+117
-6.3385098e+117
-6.3385098e+117
-6.324386e+117
-6.338614e+117
-6.3390528e+117
-6.3388171e+117
-6.3085627e+117
-6.3086368e+117
-6.3084987e+117
-6.3083442e+117
-6.0842419e+117
-6.0836881e+117
-6.083246e+117
-6.0833252e+117
-6.0836705e+117
-6.0834296e+117
-6.0839284e+117
-6.0842588e+117
-6.0985462e+117
-6.112745e+117
-6.112745e+117
-6.113128e+117
-6.1137497e+117
-6.1145475e+117
-6.1290572e+117
-6.1426426e+117
-6.1426426e+117
-6.1440508e+117
-6.1457037e+117
-6.1473664e+117
-5.7291231e+117
-5.7290335e+117
-5.7287526e+117
-5.7281312e+117
-5.7283212e+117
-5.7285657e+117
-5.72893e+117
-5.7291667e+117
-5.726327e+117
-5.7271126e+117
-5.7277457e+117
-5.728188e+117
-6.3395844e+117
-6.3397719e+117
-6.3391845e+117
-6.3393592e+117
-6.3390639e+117
-6.3390929e+117
-6.3387406e+117
-6.3389156e+117
-6.3403087e+117
-6.3404334e+117
-6.3406695e+117
-6.3409877e+117
-6.3401773e+117
-6.340136e+117
-6.3401281e+117
-6.3399867e+117
-6.1630717e+117
-6.177992e+117
-6.18963e+117
-6.1916707e+117
-6.1850397e+117
-6.1873234e+117
-6.1783147e+117
-6.1796582e+117
-6.181151e+117
-6.1829154e+117
-6.1933992e+117
-6.1948896e+117
-6.1963225e+117
-6.1978465e+117
-6.2023211e+117
-6.2033752e+117
-6.1994705e+117
-6.2009763e+117
-6.2473008e+117
-6.2665031e+117
-6.2799329e+117
-6.2799329e+117
-6.2808321e+117
-6.281349e+117
-6.3086517e+117
-6.2947466e+117
-6.337897e+117
-6.337897e+117
-6.3247102e+117
-6.3380153e+117
-6.3384622e+117
-6.3382302e+117
-6.3086517e+117
-6.3087407e+117
-6.3086168e+117
-6.308464e+117
-6.0842092e+117
-6.0837153e+117
-6.0832603e+117
-6.0833619e+117
-6.0836902e+117
-6.0834383e+117
-6.0839105e+117
-6.0841996e+117
-6.0985463e+117
-6.112917e+117
-6.112917e+117
-6.1133552e+117
-6.1139941e+117
-6.1147758e+117
-6.1290365e+117
-6.1425703e+117
-6.1425703e+117
-6.1439684e+117
-6.1456061e+117
-6.1472245e+117
-6.1630674e+117
-6.1783147e+117
-6.084241e+117
-6.0837742e+117
-6.0833159e+117
-6.0834253e+117
-6.083752e+117
-6.0834905e+117
-6.0839483e+117
-6.0842208e+117
-6.0986238e+117
-6.1133234e+117
-6.1133234e+117
-6.1137824e+117
-6.1144303e+117
-6.1152119e+117
-6.1291868e+117
-6.1426021e+117
-6.1426021e+117
-6.1439905e+117
-6.1456188e+117
-6.1472191e+117
)
;
}
}
// ************************************************************************* //
| [
"48771820+jhargun@users.noreply.github.com"
] | 48771820+jhargun@users.noreply.github.com | |
68a726e0a928eeb78f6726a096c23ee5db66ceee | 5886825c8c7de284d5cdedc8088a57129111ad80 | /transformation/LibAvWrapper/src/VideoWriter.cpp | 32a8427307be0104d51469d2c92dd7867841f2d2 | [
"MIT"
] | permissive | johnsonlrd/360Transformations | 4c714f3c7a826225e697b4ced39ad8b683724398 | 01b48cb0cb449ddaa9448637bd23ed6d33db0d85 | refs/heads/master | 2021-01-12T07:32:28.673299 | 2016-10-27T16:45:05 | 2016-10-27T16:45:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,241 | cpp | #include "VideoWriter.hpp"
#include <stdexcept>
using namespace IMT::LibAv;
VideoWriter::VideoWriter(const std::string& outputFileName): m_outputFileName(outputFileName), m_fmt_ctx(NULL),
m_codec_ctx(), m_vstream(), m_isInit(false), m_lastFramesQueue(), m_pts(0)
{}
VideoWriter::VideoWriter(VideoWriter&& vw): m_outputFileName(), m_fmt_ctx(NULL), m_isInit(false)
{
std::swap(*this, vw);
}
VideoWriter& VideoWriter::operator=(VideoWriter&& vw)
{
std::swap(*this, vw);
return *this;
}
VideoWriter::~VideoWriter(void)
{
if (!m_isInit)
{
for (auto& stream: m_vstream)
{
Flush(stream->index);
}
m_isInit = false;
av_write_trailer(m_fmt_ctx);
for (auto* codec_ctx: m_codec_ctx)
{
avcodec_close(codec_ctx);
}
//av_free(m_vstream);
avformat_close_input(&m_fmt_ctx);
avformat_free_context(m_fmt_ctx);
av_free(m_fmt_ctx);
m_fmt_ctx = nullptr;
m_vstream.clear();
m_codec_ctx.clear();
// for(auto& queue: m_lastFramesQueue)
// {
// while(!queue.empty())
// {
// auto* frame = queue.front();
// queue.pop();
// av_freep(&frame->data[0]);
// av_frame_free(&frame);
// }
// }
// m_lastFramesQueue.clear();
}
}
VideoWriter& VideoWriter::operator<<(const cv::Mat& pict)
{
Write(pict, 0);
return *this;
}
void VideoWriter::Write(const cv::Mat& pict, int streamId)
{
EncodeAndWrite(pict, streamId);
// if (sharedPkt != nullptr)
// {
// PrivateWrite(sharedPkt, streamId);
// }
}
void VideoWriter::Flush(int streamId)
{
EncodeAndWrite(nullptr, streamId);
// while (sharedPkt != nullptr)
// {
// PrivateWrite(sharedPkt, streamId);
// sharedPkt = nullptr;//Encode(nullptr, streamId);
// }
}
// void VideoWriter::PrivateWrite(std::shared_ptr<Packet> sharedPkt, int streamId)
// {
// auto& pkt = sharedPkt->GetPkt();
// if (pkt.pts != AV_NOPTS_VALUE)
// {
// pkt.pts = av_rescale_q(pkt.pts, m_codec_ctx[streamId]->time_base, m_vstream[streamId]->time_base);
// }
// if (pkt.dts != AV_NOPTS_VALUE)
// {
// pkt.dts = av_rescale_q(pkt.dts, m_codec_ctx[streamId]->time_base, m_vstream[streamId]->time_base);
// }
// pkt.stream_index = m_vstream[streamId]->index;
// PRINT_DEBUG_VideoWrite("Start writing packet")
// if (av_interleaved_write_frame(m_fmt_ctx, &pkt) < 0)
// {
// throw std::runtime_error("Error while writing pkt");
// }
// PRINT_DEBUG_VideoWrite("Writing done")
// if (sharedPkt->GetNextPacketAfterSentFrame(m_codec_ctx[streamId]))
// {
// PRINT_DEBUG_VideoWrite("New packet received")
// PrivateWrite(sharedPkt, streamId);
// }
// }
void VideoWriter::EncodeAndWrite(const cv::Mat& pict, int streamId)
{
PRINT_DEBUG_VideoWrite("Start Encode")
AVFrame* frame = av_frame_alloc();
//avcodec_get_frame_defaults(frame);
AVFrame src;
src.format = AV_PIX_FMT_BGR24;
src.data[0] = pict.data;
src.linesize[0] = pict.step;
src.linesize[1] = 0;
src.linesize[2] = 0;
frame->format = AV_PIX_FMT_YUV420P;
frame->width = m_codec_ctx[streamId]->width;
frame->height = m_codec_ctx[streamId]->height;
int buffSize = av_image_alloc(frame->data, frame->linesize, frame->width, frame->height, (enum AVPixelFormat)frame->format, 1);
// frame->data[0] = pict.data;
// frame->data[1] = pict.data;
// frame->data[2] = pict.data;
// frame->linesize[0] = m_codec_ctx->width;
// frame->linesize[1] = m_codec_ctx->height;
// frame->linesize[2] = 0;
frame->pts = m_pts++;
enum AVPixelFormat src_pix_fmt = AV_PIX_FMT_BGR24;
auto* convert_ctx = sws_getContext(frame->width, frame->height, (enum AVPixelFormat)src_pix_fmt, frame->width, frame->height, (enum AVPixelFormat)frame->format, SWS_FAST_BILINEAR, NULL, NULL, NULL);
sws_scale(convert_ctx, src.data, src.linesize, 0, frame->height, frame->data, frame->linesize);
sws_freeContext(convert_ctx);
PRINT_DEBUG_VideoWrite("Encode: frame generated")
EncodeAndWrite(frame, streamId);
}
void VideoWriter::EncodeAndWrite(AVFrame* frame, int streamId)
{
AVPacket pkt;
PRINT_DEBUG_VideoWrite("1# run coding")
int ret = avcodec_send_frame(m_codec_ctx[streamId], frame);
PRINT_DEBUG_VideoWrite("1# done")
if (ret < 0)
{
throw std::runtime_error("Error while encoding frame");
}
if (ret == 0) //Coding successfull
{
PRINT_DEBUG_VideoWrite("1# ask codec for received pkt")
while(true)
{
PRINT_DEBUG_VideoWrite("1# init pkt")
av_init_packet(&pkt);
pkt.data = nullptr;
pkt.size = 0;
ret = avcodec_receive_packet(m_codec_ctx[streamId], &pkt);
if (ret != AVERROR(EAGAIN) && ret >= 0) //received an encoded pkt
{
PRINT_DEBUG_VideoWrite("1# received pkt")
if (pkt.pts != AV_NOPTS_VALUE)
{
pkt.pts = av_rescale_q(pkt.pts, m_codec_ctx[streamId]->time_base, m_vstream[streamId]->time_base);
}
if (pkt.dts != AV_NOPTS_VALUE)
{
pkt.dts = av_rescale_q(pkt.dts, m_codec_ctx[streamId]->time_base, m_vstream[streamId]->time_base);
}
pkt.stream_index = m_vstream[streamId]->index;
PRINT_DEBUG_VideoWrite("Start writing packet")
if (av_interleaved_write_frame(m_fmt_ctx, &pkt) < 0)
{
throw std::runtime_error("Error while writing pkt");
}
PRINT_DEBUG_VideoWrite("Writing done")
av_packet_unref(&pkt); //The pkt is not usefull anymore
}
else // No pkt left
{
PRINT_DEBUG_VideoWrite("1# no received pkt ")
av_packet_unref(&pkt);
break;
}
}
}
//Now the frame is not use full anymore
if (frame != nullptr)
{
av_frame_unref(frame);
av_freep(&frame->data[0]);
av_frame_free(&frame);
}
}
| [
"xavier.corbillon@telecom-bretagne.eu"
] | xavier.corbillon@telecom-bretagne.eu |
d43b830aea2e9e3a45a43c482ef0507400566e2b | d7fa13682b6c08651ed15c682294a6e4fda99366 | /modules/ti.UI/clipboard.h | aed51962cf7b73c167319d6aa0b83475ee8859b5 | [
"Apache-2.0"
] | permissive | jonnymind/titanium_desktop | 4825fc733d52db37bfab95fa928e802ea8a5b364 | 3d53e08e288ac7ae06d16b11441753f6a50beed6 | refs/heads/master | 2020-12-24T09:16:41.961900 | 2009-10-20T17:45:46 | 2009-10-20T17:45:46 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,809 | h | /**
* Appcelerator Titanium - licensed under the Apache Public License 2
* see LICENSE in the root folder for details on the license.
* Copyright (c) 2009 Appcelerator, Inc. All Rights Reserved.
*/
#ifndef _CLIPBOARD_H_
#define _CLIPBOARD_H_
#include <kroll/kroll.h>
namespace ti
{
class Clipboard : public KAccessorObject
{
public:
Clipboard();
~Clipboard();
enum DataType { TEXT, URI_LIST, IMAGE, UNKNOWN };
void _GetData(const ValueList& args, SharedValue result);
void _SetData(const ValueList& args, SharedValue result);
void _ClearData(const ValueList& args, SharedValue result);
void _HasData(const ValueList& args, SharedValue result);
void _GetText(const ValueList& args, SharedValue result);
void _SetText(const ValueList& args, SharedValue result);
void _ClearText(const ValueList& args, SharedValue result);
void _HasText(const ValueList& args, SharedValue result);
bool HasData(DataType type);
void ClearData(DataType type);
std::string& GetText();
void SetText(std::string& newText);
bool HasText();
void ClearText();
AutoBlob GetImage(std::string& mimeType);
void SetImage(std::string& mimeType, AutoBlob newImage);
bool HasImage();
void ClearImage();
std::vector<std::string>& GetURIList();
void SetURIList(std::vector<std::string>& newURIList);
bool HasURIList();
void ClearURIList();
std::string& GetTextImpl();
void SetTextImpl(std::string& newText);
bool HasTextImpl();
void ClearTextImpl();
AutoBlob GetImageImpl(std::string& mimeType);
void SetImageImpl(std::string& mimeType, AutoBlob image);
bool HasImageImpl();
void ClearImageImpl();
std::vector<std::string>& GetURIListImpl();
void SetURIListImpl(std::vector<std::string>& uriList);
bool HasURIListImpl();
void ClearURIListImpl();
};
}
#endif
| [
"mrobinson@appcelerator.com"
] | mrobinson@appcelerator.com |
e93397434767bf75bb8ac697a76516cdf1187701 | 3833deaa17f5d8ef2ec839100b29757f3a7e109a | /windows/runner/win32_window.cpp | 2f91cbb36051cfc6836e2fdb0ee73635e4be0ee0 | [
"Apache-2.0"
] | permissive | afrimedico/CUORE | adcdfbc3398c4efb068f3823487ba6b28cbbb8e7 | 887fd338e4766e6aeb60fcae96b1247247fe8d0d | refs/heads/master | 2023-05-12T01:13:29.954102 | 2023-05-09T14:29:42 | 2023-05-09T14:29:42 | 240,851,730 | 1 | 3 | Apache-2.0 | 2021-09-08T12:55:23 | 2020-02-16T07:44:12 | Dart | UTF-8 | C++ | false | false | 8,821 | cpp | #include "win32_window.h"
#include <dwmapi.h>
#include <flutter_windows.h>
#include "resource.h"
namespace {
/// Window attribute that enables dark mode window decorations.
///
/// Redefined in case the developer's machine has a Windows SDK older than
/// version 10.0.22000.0.
/// See: https://docs.microsoft.com/windows/win32/api/dwmapi/ne-dwmapi-dwmwindowattribute
#ifndef DWMWA_USE_IMMERSIVE_DARK_MODE
#define DWMWA_USE_IMMERSIVE_DARK_MODE 20
#endif
constexpr const wchar_t kWindowClassName[] = L"FLUTTER_RUNNER_WIN32_WINDOW";
/// Registry key for app theme preference.
///
/// A value of 0 indicates apps should use dark mode. A non-zero or missing
/// value indicates apps should use light mode.
constexpr const wchar_t kGetPreferredBrightnessRegKey[] =
L"Software\\Microsoft\\Windows\\CurrentVersion\\Themes\\Personalize";
constexpr const wchar_t kGetPreferredBrightnessRegValue[] = L"AppsUseLightTheme";
// The number of Win32Window objects that currently exist.
static int g_active_window_count = 0;
using EnableNonClientDpiScaling = BOOL __stdcall(HWND hwnd);
// Scale helper to convert logical scaler values to physical using passed in
// scale factor
int Scale(int source, double scale_factor) {
return static_cast<int>(source * scale_factor);
}
// Dynamically loads the |EnableNonClientDpiScaling| from the User32 module.
// This API is only needed for PerMonitor V1 awareness mode.
void EnableFullDpiSupportIfAvailable(HWND hwnd) {
HMODULE user32_module = LoadLibraryA("User32.dll");
if (!user32_module) {
return;
}
auto enable_non_client_dpi_scaling =
reinterpret_cast<EnableNonClientDpiScaling*>(
GetProcAddress(user32_module, "EnableNonClientDpiScaling"));
if (enable_non_client_dpi_scaling != nullptr) {
enable_non_client_dpi_scaling(hwnd);
}
FreeLibrary(user32_module);
}
} // namespace
// Manages the Win32Window's window class registration.
class WindowClassRegistrar {
public:
~WindowClassRegistrar() = default;
// Returns the singleton registar instance.
static WindowClassRegistrar* GetInstance() {
if (!instance_) {
instance_ = new WindowClassRegistrar();
}
return instance_;
}
// Returns the name of the window class, registering the class if it hasn't
// previously been registered.
const wchar_t* GetWindowClass();
// Unregisters the window class. Should only be called if there are no
// instances of the window.
void UnregisterWindowClass();
private:
WindowClassRegistrar() = default;
static WindowClassRegistrar* instance_;
bool class_registered_ = false;
};
WindowClassRegistrar* WindowClassRegistrar::instance_ = nullptr;
const wchar_t* WindowClassRegistrar::GetWindowClass() {
if (!class_registered_) {
WNDCLASS window_class{};
window_class.hCursor = LoadCursor(nullptr, IDC_ARROW);
window_class.lpszClassName = kWindowClassName;
window_class.style = CS_HREDRAW | CS_VREDRAW;
window_class.cbClsExtra = 0;
window_class.cbWndExtra = 0;
window_class.hInstance = GetModuleHandle(nullptr);
window_class.hIcon =
LoadIcon(window_class.hInstance, MAKEINTRESOURCE(IDI_APP_ICON));
window_class.hbrBackground = 0;
window_class.lpszMenuName = nullptr;
window_class.lpfnWndProc = Win32Window::WndProc;
RegisterClass(&window_class);
class_registered_ = true;
}
return kWindowClassName;
}
void WindowClassRegistrar::UnregisterWindowClass() {
UnregisterClass(kWindowClassName, nullptr);
class_registered_ = false;
}
Win32Window::Win32Window() {
++g_active_window_count;
}
Win32Window::~Win32Window() {
--g_active_window_count;
Destroy();
}
bool Win32Window::Create(const std::wstring& title,
const Point& origin,
const Size& size) {
Destroy();
const wchar_t* window_class =
WindowClassRegistrar::GetInstance()->GetWindowClass();
const POINT target_point = {static_cast<LONG>(origin.x),
static_cast<LONG>(origin.y)};
HMONITOR monitor = MonitorFromPoint(target_point, MONITOR_DEFAULTTONEAREST);
UINT dpi = FlutterDesktopGetDpiForMonitor(monitor);
double scale_factor = dpi / 96.0;
HWND window = CreateWindow(
window_class, title.c_str(), WS_OVERLAPPEDWINDOW,
Scale(origin.x, scale_factor), Scale(origin.y, scale_factor),
Scale(size.width, scale_factor), Scale(size.height, scale_factor),
nullptr, nullptr, GetModuleHandle(nullptr), this);
if (!window) {
return false;
}
UpdateTheme(window);
return OnCreate();
}
bool Win32Window::Show() {
return ShowWindow(window_handle_, SW_SHOWNORMAL);
}
// static
LRESULT CALLBACK Win32Window::WndProc(HWND const window,
UINT const message,
WPARAM const wparam,
LPARAM const lparam) noexcept {
if (message == WM_NCCREATE) {
auto window_struct = reinterpret_cast<CREATESTRUCT*>(lparam);
SetWindowLongPtr(window, GWLP_USERDATA,
reinterpret_cast<LONG_PTR>(window_struct->lpCreateParams));
auto that = static_cast<Win32Window*>(window_struct->lpCreateParams);
EnableFullDpiSupportIfAvailable(window);
that->window_handle_ = window;
} else if (Win32Window* that = GetThisFromHandle(window)) {
return that->MessageHandler(window, message, wparam, lparam);
}
return DefWindowProc(window, message, wparam, lparam);
}
LRESULT
Win32Window::MessageHandler(HWND hwnd,
UINT const message,
WPARAM const wparam,
LPARAM const lparam) noexcept {
switch (message) {
case WM_DESTROY:
window_handle_ = nullptr;
Destroy();
if (quit_on_close_) {
PostQuitMessage(0);
}
return 0;
case WM_DPICHANGED: {
auto newRectSize = reinterpret_cast<RECT*>(lparam);
LONG newWidth = newRectSize->right - newRectSize->left;
LONG newHeight = newRectSize->bottom - newRectSize->top;
SetWindowPos(hwnd, nullptr, newRectSize->left, newRectSize->top, newWidth,
newHeight, SWP_NOZORDER | SWP_NOACTIVATE);
return 0;
}
case WM_SIZE: {
RECT rect = GetClientArea();
if (child_content_ != nullptr) {
// Size and position the child window.
MoveWindow(child_content_, rect.left, rect.top, rect.right - rect.left,
rect.bottom - rect.top, TRUE);
}
return 0;
}
case WM_ACTIVATE:
if (child_content_ != nullptr) {
SetFocus(child_content_);
}
return 0;
case WM_DWMCOLORIZATIONCOLORCHANGED:
UpdateTheme(hwnd);
return 0;
}
return DefWindowProc(window_handle_, message, wparam, lparam);
}
void Win32Window::Destroy() {
OnDestroy();
if (window_handle_) {
DestroyWindow(window_handle_);
window_handle_ = nullptr;
}
if (g_active_window_count == 0) {
WindowClassRegistrar::GetInstance()->UnregisterWindowClass();
}
}
Win32Window* Win32Window::GetThisFromHandle(HWND const window) noexcept {
return reinterpret_cast<Win32Window*>(
GetWindowLongPtr(window, GWLP_USERDATA));
}
void Win32Window::SetChildContent(HWND content) {
child_content_ = content;
SetParent(content, window_handle_);
RECT frame = GetClientArea();
MoveWindow(content, frame.left, frame.top, frame.right - frame.left,
frame.bottom - frame.top, true);
SetFocus(child_content_);
}
RECT Win32Window::GetClientArea() {
RECT frame;
GetClientRect(window_handle_, &frame);
return frame;
}
HWND Win32Window::GetHandle() {
return window_handle_;
}
void Win32Window::SetQuitOnClose(bool quit_on_close) {
quit_on_close_ = quit_on_close;
}
bool Win32Window::OnCreate() {
// No-op; provided for subclasses.
return true;
}
void Win32Window::OnDestroy() {
// No-op; provided for subclasses.
}
void Win32Window::UpdateTheme(HWND const window) {
DWORD light_mode;
DWORD light_mode_size = sizeof(light_mode);
LSTATUS result = RegGetValue(HKEY_CURRENT_USER, kGetPreferredBrightnessRegKey,
kGetPreferredBrightnessRegValue,
RRF_RT_REG_DWORD, nullptr, &light_mode,
&light_mode_size);
if (result == ERROR_SUCCESS) {
BOOL enable_dark_mode = light_mode == 0;
DwmSetWindowAttribute(window, DWMWA_USE_IMMERSIVE_DARK_MODE,
&enable_dark_mode, sizeof(enable_dark_mode));
}
}
| [
"sherma3@gmail.com"
] | sherma3@gmail.com |
8200df6d2a5c27756cfaa3d7c6e96d0780a5f7cb | 04b1803adb6653ecb7cb827c4f4aa616afacf629 | /chrome/browser/extensions/extension_prefs_unittest.cc | 02c665c7ee0e1a15ecfb868e5f56ed0383d3ca6c | [
"BSD-3-Clause"
] | permissive | Samsung/Castanets | 240d9338e097b75b3f669604315b06f7cf129d64 | 4896f732fc747dfdcfcbac3d442f2d2d42df264a | refs/heads/castanets_76_dev | 2023-08-31T09:01:04.744346 | 2021-07-30T04:56:25 | 2021-08-11T05:45:21 | 125,484,161 | 58 | 49 | BSD-3-Clause | 2022-10-16T19:31:26 | 2018-03-16T08:07:37 | null | UTF-8 | C++ | false | false | 41,474 | cc | // Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/extensions/extension_prefs_unittest.h"
#include <utility>
#include "base/files/scoped_temp_dir.h"
#include "base/path_service.h"
#include "base/run_loop.h"
#include "base/stl_util.h"
#include "base/strings/string_number_conversions.h"
#include "base/threading/thread_task_runner_handle.h"
#include "base/time/time.h"
#include "base/values.h"
#include "chrome/common/chrome_paths.h"
#include "components/pref_registry/pref_registry_syncable.h"
#include "components/prefs/mock_pref_change_callback.h"
#include "components/prefs/pref_change_registrar.h"
#include "components/prefs/scoped_user_pref_update.h"
#include "components/sync/model/string_ordinal.h"
#include "components/sync_preferences/pref_service_syncable.h"
#include "content/public/browser/notification_details.h"
#include "content/public/browser/notification_source.h"
#include "content/public/test/mock_notification_observer.h"
#include "extensions/browser/extension_pref_value_map.h"
#include "extensions/browser/extension_prefs.h"
#include "extensions/browser/install_flag.h"
#include "extensions/common/extension.h"
#include "extensions/common/extension_builder.h"
#include "extensions/common/manifest_constants.h"
#include "extensions/common/permissions/permission_set.h"
#include "extensions/common/permissions/permissions_info.h"
using base::Time;
using base::TimeDelta;
namespace extensions {
static void AddPattern(URLPatternSet* extent, const std::string& pattern) {
int schemes = URLPattern::SCHEME_ALL;
extent->AddPattern(URLPattern(schemes, pattern));
}
ExtensionPrefsTest::ExtensionPrefsTest()
: prefs_(base::ThreadTaskRunnerHandle::Get()) {}
ExtensionPrefsTest::~ExtensionPrefsTest() {
}
void ExtensionPrefsTest::RegisterPreferences(
user_prefs::PrefRegistrySyncable* registry) {}
void ExtensionPrefsTest::SetUp() {
RegisterPreferences(prefs_.pref_registry().get());
Initialize();
}
void ExtensionPrefsTest::TearDown() {
Verify();
// Reset ExtensionPrefs, and re-verify.
prefs_.ResetPrefRegistry();
RegisterPreferences(prefs_.pref_registry().get());
prefs_.RecreateExtensionPrefs();
Verify();
prefs_.pref_service()->CommitPendingWrite();
base::RunLoop().RunUntilIdle();
}
// Tests the LastPingDay/SetLastPingDay functions.
class ExtensionPrefsLastPingDay : public ExtensionPrefsTest {
public:
ExtensionPrefsLastPingDay()
: extension_time_(Time::Now() - TimeDelta::FromHours(4)),
blacklist_time_(Time::Now() - TimeDelta::FromHours(2)) {}
void Initialize() override {
extension_id_ = prefs_.AddExtensionAndReturnId("last_ping_day");
EXPECT_TRUE(prefs()->LastPingDay(extension_id_).is_null());
prefs()->SetLastPingDay(extension_id_, extension_time_);
prefs()->SetBlacklistLastPingDay(blacklist_time_);
}
void Verify() override {
Time result = prefs()->LastPingDay(extension_id_);
EXPECT_FALSE(result.is_null());
EXPECT_TRUE(result == extension_time_);
result = prefs()->BlacklistLastPingDay();
EXPECT_FALSE(result.is_null());
EXPECT_TRUE(result == blacklist_time_);
}
private:
Time extension_time_;
Time blacklist_time_;
std::string extension_id_;
};
TEST_F(ExtensionPrefsLastPingDay, LastPingDay) {}
// Tests the GetToolbarOrder/SetToolbarOrder functions.
class ExtensionPrefsToolbarOrder : public ExtensionPrefsTest {
public:
void Initialize() override {
list_.push_back(prefs_.AddExtensionAndReturnId("1"));
list_.push_back(prefs_.AddExtensionAndReturnId("2"));
list_.push_back(prefs_.AddExtensionAndReturnId("3"));
ExtensionIdList before_list = prefs()->GetToolbarOrder();
EXPECT_TRUE(before_list.empty());
prefs()->SetToolbarOrder(list_);
}
void Verify() override {
ExtensionIdList result = prefs()->GetToolbarOrder();
ASSERT_EQ(list_, result);
}
private:
ExtensionIdList list_;
};
TEST_F(ExtensionPrefsToolbarOrder, ToolbarOrder) {}
// Tests the IsExtensionDisabled/SetExtensionState functions.
class ExtensionPrefsExtensionState : public ExtensionPrefsTest {
public:
void Initialize() override {
extension = prefs_.AddExtension("test");
prefs()->SetExtensionDisabled(extension->id(),
disable_reason::DISABLE_USER_ACTION);
}
void Verify() override {
EXPECT_TRUE(prefs()->IsExtensionDisabled(extension->id()));
}
private:
scoped_refptr<Extension> extension;
};
TEST_F(ExtensionPrefsExtensionState, ExtensionState) {}
class ExtensionPrefsEscalatePermissions : public ExtensionPrefsTest {
public:
void Initialize() override {
extension = prefs_.AddExtension("test");
prefs()->SetExtensionDisabled(extension->id(),
disable_reason::DISABLE_PERMISSIONS_INCREASE);
}
void Verify() override {
EXPECT_TRUE(prefs()->DidExtensionEscalatePermissions(extension->id()));
}
private:
scoped_refptr<Extension> extension;
};
TEST_F(ExtensionPrefsEscalatePermissions, EscalatePermissions) {}
// Tests the AddGrantedPermissions / GetGrantedPermissions functions.
class ExtensionPrefsGrantedPermissions : public ExtensionPrefsTest {
public:
void Initialize() override {
const APIPermissionInfo* permission_info =
PermissionsInfo::GetInstance()->GetByID(APIPermission::kSocket);
extension_id_ = prefs_.AddExtensionAndReturnId("test");
api_perm_set1_.insert(APIPermission::kTab);
api_perm_set1_.insert(APIPermission::kBookmark);
std::unique_ptr<APIPermission> permission(
permission_info->CreateAPIPermission());
{
std::unique_ptr<base::ListValue> value(new base::ListValue());
value->AppendString("tcp-connect:*.example.com:80");
value->AppendString("udp-bind::8080");
value->AppendString("udp-send-to::8888");
ASSERT_TRUE(permission->FromValue(value.get(), NULL, NULL));
}
api_perm_set1_.insert(std::move(permission));
api_perm_set2_.insert(APIPermission::kHistory);
AddPattern(&ehost_perm_set1_, "http://*.google.com/*");
AddPattern(&ehost_perm_set1_, "http://example.com/*");
AddPattern(&ehost_perm_set1_, "chrome://favicon/*");
AddPattern(&ehost_perm_set2_, "https://*.google.com/*");
// with duplicate:
AddPattern(&ehost_perm_set2_, "http://*.google.com/*");
AddPattern(&shost_perm_set1_, "http://reddit.com/r/test/*");
AddPattern(&shost_perm_set2_, "http://reddit.com/r/test/*");
AddPattern(&shost_perm_set2_, "http://somesite.com/*");
AddPattern(&shost_perm_set2_, "http://example.com/*");
APIPermissionSet expected_apis = api_perm_set1_.Clone();
AddPattern(&ehost_permissions_, "http://*.google.com/*");
AddPattern(&ehost_permissions_, "http://example.com/*");
AddPattern(&ehost_permissions_, "chrome://favicon/*");
AddPattern(&ehost_permissions_, "https://*.google.com/*");
AddPattern(&shost_permissions_, "http://reddit.com/r/test/*");
AddPattern(&shost_permissions_, "http://somesite.com/*");
AddPattern(&shost_permissions_, "http://example.com/*");
// Make sure both granted api and host permissions start empty.
EXPECT_TRUE(prefs()->GetGrantedPermissions(extension_id_)->IsEmpty());
{
// Add part of the api permissions.
prefs()->AddGrantedPermissions(
extension_id_,
PermissionSet(api_perm_set1_.Clone(), ManifestPermissionSet(),
URLPatternSet(), URLPatternSet()));
std::unique_ptr<const PermissionSet> granted_permissions =
prefs()->GetGrantedPermissions(extension_id_);
EXPECT_TRUE(granted_permissions.get());
EXPECT_FALSE(granted_permissions->IsEmpty());
EXPECT_EQ(expected_apis, granted_permissions->apis());
EXPECT_TRUE(granted_permissions->effective_hosts().is_empty());
}
{
// Add part of the explicit host permissions.
prefs()->AddGrantedPermissions(
extension_id_,
PermissionSet(APIPermissionSet(), ManifestPermissionSet(),
ehost_perm_set1_.Clone(), URLPatternSet()));
std::unique_ptr<const PermissionSet> granted_permissions =
prefs()->GetGrantedPermissions(extension_id_);
EXPECT_FALSE(granted_permissions->IsEmpty());
EXPECT_EQ(expected_apis, granted_permissions->apis());
EXPECT_EQ(ehost_perm_set1_, granted_permissions->explicit_hosts());
EXPECT_EQ(ehost_perm_set1_, granted_permissions->effective_hosts());
}
{
// Add part of the scriptable host permissions.
prefs()->AddGrantedPermissions(
extension_id_,
PermissionSet(APIPermissionSet(), ManifestPermissionSet(),
URLPatternSet(), shost_perm_set1_.Clone()));
std::unique_ptr<const PermissionSet> granted_permissions =
prefs()->GetGrantedPermissions(extension_id_);
EXPECT_FALSE(granted_permissions->IsEmpty());
EXPECT_EQ(expected_apis, granted_permissions->apis());
EXPECT_EQ(ehost_perm_set1_, granted_permissions->explicit_hosts());
EXPECT_EQ(shost_perm_set1_, granted_permissions->scriptable_hosts());
effective_permissions_ =
URLPatternSet::CreateUnion(ehost_perm_set1_, shost_perm_set1_);
EXPECT_EQ(effective_permissions_, granted_permissions->effective_hosts());
}
{
// Add the rest of the permissions.
APIPermissionSet::Union(expected_apis, api_perm_set2_, &api_permissions_);
prefs()->AddGrantedPermissions(
extension_id_,
PermissionSet(api_perm_set2_.Clone(), ManifestPermissionSet(),
ehost_perm_set2_.Clone(), shost_perm_set2_.Clone()));
std::unique_ptr<const PermissionSet> granted_permissions =
prefs()->GetGrantedPermissions(extension_id_);
EXPECT_TRUE(granted_permissions.get());
EXPECT_FALSE(granted_permissions->IsEmpty());
EXPECT_EQ(api_permissions_, granted_permissions->apis());
EXPECT_EQ(ehost_permissions_, granted_permissions->explicit_hosts());
EXPECT_EQ(shost_permissions_, granted_permissions->scriptable_hosts());
effective_permissions_ =
URLPatternSet::CreateUnion(ehost_permissions_, shost_permissions_);
EXPECT_EQ(effective_permissions_, granted_permissions->effective_hosts());
}
}
void Verify() override {
std::unique_ptr<const PermissionSet> permissions =
prefs()->GetGrantedPermissions(extension_id_);
EXPECT_TRUE(permissions.get());
EXPECT_EQ(api_permissions_, permissions->apis());
EXPECT_EQ(ehost_permissions_,
permissions->explicit_hosts());
EXPECT_EQ(shost_permissions_,
permissions->scriptable_hosts());
}
private:
std::string extension_id_;
APIPermissionSet api_perm_set1_;
APIPermissionSet api_perm_set2_;
URLPatternSet ehost_perm_set1_;
URLPatternSet ehost_perm_set2_;
URLPatternSet shost_perm_set1_;
URLPatternSet shost_perm_set2_;
APIPermissionSet api_permissions_;
URLPatternSet ehost_permissions_;
URLPatternSet shost_permissions_;
URLPatternSet effective_permissions_;
};
TEST_F(ExtensionPrefsGrantedPermissions, GrantedPermissions) {}
// Tests the SetActivePermissions / GetActivePermissions functions.
class ExtensionPrefsActivePermissions : public ExtensionPrefsTest {
public:
void Initialize() override {
extension_id_ = prefs_.AddExtensionAndReturnId("test");
{
APIPermissionSet api_perms;
api_perms.insert(APIPermission::kTab);
api_perms.insert(APIPermission::kBookmark);
api_perms.insert(APIPermission::kHistory);
URLPatternSet ehosts;
AddPattern(&ehosts, "http://*.google.com/*");
AddPattern(&ehosts, "http://example.com/*");
AddPattern(&ehosts, "chrome://favicon/*");
URLPatternSet shosts;
AddPattern(&shosts, "https://*.google.com/*");
AddPattern(&shosts, "http://reddit.com/r/test/*");
active_perms_.reset(
new PermissionSet(std::move(api_perms), ManifestPermissionSet(),
std::move(ehosts), std::move(shosts)));
}
// Make sure the active permissions start empty.
std::unique_ptr<const PermissionSet> active =
prefs()->GetActivePermissions(extension_id_);
EXPECT_TRUE(active->IsEmpty());
// Set the active permissions.
prefs()->SetActivePermissions(extension_id_, *active_perms_);
active = prefs()->GetActivePermissions(extension_id_);
EXPECT_EQ(active_perms_->apis(), active->apis());
EXPECT_EQ(active_perms_->explicit_hosts(), active->explicit_hosts());
EXPECT_EQ(active_perms_->scriptable_hosts(), active->scriptable_hosts());
EXPECT_EQ(*active_perms_, *active);
// Reset the active permissions.
active_perms_ = std::make_unique<PermissionSet>();
prefs()->SetActivePermissions(extension_id_, *active_perms_);
active = prefs()->GetActivePermissions(extension_id_);
EXPECT_EQ(*active_perms_, *active);
}
void Verify() override {
std::unique_ptr<const PermissionSet> permissions =
prefs()->GetActivePermissions(extension_id_);
EXPECT_EQ(*active_perms_, *permissions);
}
private:
std::string extension_id_;
std::unique_ptr<const PermissionSet> active_perms_;
};
TEST_F(ExtensionPrefsActivePermissions, SetAndGetActivePermissions) {}
// Tests the GetVersionString function.
class ExtensionPrefsVersionString : public ExtensionPrefsTest {
public:
void Initialize() override {
extension = prefs_.AddExtension("test");
EXPECT_EQ("0.1", prefs()->GetVersionString(extension->id()));
prefs()->OnExtensionUninstalled(extension->id(),
Manifest::INTERNAL, false);
}
void Verify() override {
EXPECT_EQ("", prefs()->GetVersionString(extension->id()));
}
private:
scoped_refptr<Extension> extension;
};
TEST_F(ExtensionPrefsVersionString, VersionString) {}
class ExtensionPrefsAcknowledgment : public ExtensionPrefsTest {
public:
void Initialize() override {
not_installed_id_ = "pghjnghklobnfoidcldiidjjjhkeeaoi";
// Install some extensions.
for (int i = 0; i < 5; i++) {
std::string name = "test" + base::NumberToString(i);
extensions_.push_back(prefs_.AddExtension(name));
}
EXPECT_EQ(NULL,
prefs()->GetInstalledExtensionInfo(not_installed_id_).get());
ExtensionList::const_iterator iter;
for (iter = extensions_.begin(); iter != extensions_.end(); ++iter) {
std::string id = (*iter)->id();
EXPECT_FALSE(prefs()->IsExternalExtensionAcknowledged(id));
EXPECT_FALSE(prefs()->IsBlacklistedExtensionAcknowledged(id));
if (external_id_.empty()) {
external_id_ = id;
continue;
}
if (blacklisted_id_.empty()) {
blacklisted_id_ = id;
continue;
}
}
// For each type of acknowledgment, acknowledge one installed and one
// not-installed extension id.
prefs()->AcknowledgeExternalExtension(external_id_);
prefs()->AcknowledgeBlacklistedExtension(blacklisted_id_);
prefs()->AcknowledgeExternalExtension(not_installed_id_);
prefs()->AcknowledgeBlacklistedExtension(not_installed_id_);
}
void Verify() override {
ExtensionList::const_iterator iter;
for (iter = extensions_.begin(); iter != extensions_.end(); ++iter) {
std::string id = (*iter)->id();
if (id == external_id_) {
EXPECT_TRUE(prefs()->IsExternalExtensionAcknowledged(id));
} else {
EXPECT_FALSE(prefs()->IsExternalExtensionAcknowledged(id));
}
if (id == blacklisted_id_) {
EXPECT_TRUE(prefs()->IsBlacklistedExtensionAcknowledged(id));
} else {
EXPECT_FALSE(prefs()->IsBlacklistedExtensionAcknowledged(id));
}
}
EXPECT_TRUE(prefs()->IsExternalExtensionAcknowledged(not_installed_id_));
EXPECT_TRUE(prefs()->IsBlacklistedExtensionAcknowledged(not_installed_id_));
}
private:
ExtensionList extensions_;
std::string not_installed_id_;
std::string external_id_;
std::string blacklisted_id_;
};
TEST_F(ExtensionPrefsAcknowledgment, Acknowledgment) {}
// Tests the idle install information functions.
class ExtensionPrefsDelayedInstallInfo : public ExtensionPrefsTest {
public:
// Sets idle install information for one test extension.
void SetIdleInfo(const std::string& id, int num) {
base::DictionaryValue manifest;
manifest.SetString(manifest_keys::kName, "test");
manifest.SetString(manifest_keys::kVersion,
"1." + base::NumberToString(num));
manifest.SetInteger(manifest_keys::kManifestVersion, 2);
base::FilePath path =
prefs_.extensions_dir().AppendASCII(base::NumberToString(num));
std::string errors;
scoped_refptr<Extension> extension = Extension::Create(
path, Manifest::INTERNAL, manifest, Extension::NO_FLAGS, id, &errors);
ASSERT_TRUE(extension.get()) << errors;
ASSERT_EQ(id, extension->id());
prefs()->SetDelayedInstallInfo(extension.get(),
Extension::ENABLED,
kInstallFlagNone,
ExtensionPrefs::DELAY_REASON_WAIT_FOR_IDLE,
syncer::StringOrdinal(),
std::string());
}
// Verifies that we get back expected idle install information previously
// set by SetIdleInfo.
void VerifyIdleInfo(const std::string& id, int num) {
std::unique_ptr<ExtensionInfo> info(prefs()->GetDelayedInstallInfo(id));
ASSERT_TRUE(info);
std::string version;
ASSERT_TRUE(info->extension_manifest->GetString("version", &version));
ASSERT_EQ("1." + base::NumberToString(num), version);
ASSERT_EQ(base::NumberToString(num),
info->extension_path.BaseName().MaybeAsASCII());
}
bool HasInfoForId(ExtensionPrefs::ExtensionsInfo* info,
const std::string& id) {
for (size_t i = 0; i < info->size(); ++i) {
if (info->at(i)->extension_id == id)
return true;
}
return false;
}
void Initialize() override {
base::PathService::Get(chrome::DIR_TEST_DATA, &basedir_);
now_ = Time::Now();
id1_ = prefs_.AddExtensionAndReturnId("1");
id2_ = prefs_.AddExtensionAndReturnId("2");
id3_ = prefs_.AddExtensionAndReturnId("3");
id4_ = prefs_.AddExtensionAndReturnId("4");
// Set info for two extensions, then remove it.
SetIdleInfo(id1_, 1);
SetIdleInfo(id2_, 2);
VerifyIdleInfo(id1_, 1);
VerifyIdleInfo(id2_, 2);
std::unique_ptr<ExtensionPrefs::ExtensionsInfo> info(
prefs()->GetAllDelayedInstallInfo());
EXPECT_EQ(2u, info->size());
EXPECT_TRUE(HasInfoForId(info.get(), id1_));
EXPECT_TRUE(HasInfoForId(info.get(), id2_));
prefs()->RemoveDelayedInstallInfo(id1_);
prefs()->RemoveDelayedInstallInfo(id2_);
info = prefs()->GetAllDelayedInstallInfo();
EXPECT_TRUE(info->empty());
// Try getting/removing info for an id that used to have info set.
EXPECT_FALSE(prefs()->GetDelayedInstallInfo(id1_));
EXPECT_FALSE(prefs()->RemoveDelayedInstallInfo(id1_));
// Try getting/removing info for an id that has not yet had any info set.
EXPECT_FALSE(prefs()->GetDelayedInstallInfo(id3_));
EXPECT_FALSE(prefs()->RemoveDelayedInstallInfo(id3_));
// Set info for 4 extensions, then remove for one of them.
SetIdleInfo(id1_, 1);
SetIdleInfo(id2_, 2);
SetIdleInfo(id3_, 3);
SetIdleInfo(id4_, 4);
VerifyIdleInfo(id1_, 1);
VerifyIdleInfo(id2_, 2);
VerifyIdleInfo(id3_, 3);
VerifyIdleInfo(id4_, 4);
prefs()->RemoveDelayedInstallInfo(id3_);
}
void Verify() override {
// Make sure the info for the 3 extensions we expect is present.
std::unique_ptr<ExtensionPrefs::ExtensionsInfo> info(
prefs()->GetAllDelayedInstallInfo());
EXPECT_EQ(3u, info->size());
EXPECT_TRUE(HasInfoForId(info.get(), id1_));
EXPECT_TRUE(HasInfoForId(info.get(), id2_));
EXPECT_TRUE(HasInfoForId(info.get(), id4_));
VerifyIdleInfo(id1_, 1);
VerifyIdleInfo(id2_, 2);
VerifyIdleInfo(id4_, 4);
// Make sure there isn't info the for the one extension id we removed.
EXPECT_FALSE(prefs()->GetDelayedInstallInfo(id3_));
}
protected:
Time now_;
base::FilePath basedir_;
std::string id1_;
std::string id2_;
std::string id3_;
std::string id4_;
};
TEST_F(ExtensionPrefsDelayedInstallInfo, DelayedInstallInfo) {}
// Tests the FinishDelayedInstallInfo function.
class ExtensionPrefsFinishDelayedInstallInfo : public ExtensionPrefsTest {
public:
void Initialize() override {
base::DictionaryValue dictionary;
dictionary.SetString(manifest_keys::kName, "test");
dictionary.SetString(manifest_keys::kVersion, "0.1");
dictionary.SetInteger(manifest_keys::kManifestVersion, 2);
dictionary.SetString(manifest_keys::kBackgroundPage, "background.html");
scoped_refptr<Extension> extension =
prefs_.AddExtensionWithManifest(dictionary, Manifest::INTERNAL);
id_ = extension->id();
// Set idle info
base::DictionaryValue manifest;
manifest.SetString(manifest_keys::kName, "test");
manifest.SetString(manifest_keys::kVersion, "0.2");
manifest.SetInteger(manifest_keys::kManifestVersion, 2);
std::unique_ptr<base::ListValue> scripts(new base::ListValue);
scripts->AppendString("test.js");
manifest.Set(manifest_keys::kBackgroundScripts, std::move(scripts));
base::FilePath path =
prefs_.extensions_dir().AppendASCII("test_0.2");
std::string errors;
scoped_refptr<Extension> new_extension = Extension::Create(
path, Manifest::INTERNAL, manifest, Extension::NO_FLAGS, id_, &errors);
ASSERT_TRUE(new_extension.get()) << errors;
ASSERT_EQ(id_, new_extension->id());
prefs()->SetDelayedInstallInfo(new_extension.get(),
Extension::ENABLED,
kInstallFlagNone,
ExtensionPrefs::DELAY_REASON_WAIT_FOR_IDLE,
syncer::StringOrdinal(),
"Param");
// Finish idle installation
ASSERT_TRUE(prefs()->FinishDelayedInstallInfo(id_));
}
void Verify() override {
EXPECT_FALSE(prefs()->GetDelayedInstallInfo(id_));
EXPECT_EQ(std::string("Param"), prefs()->GetInstallParam(id_));
const base::DictionaryValue* manifest;
ASSERT_TRUE(prefs()->ReadPrefAsDictionary(id_, "manifest", &manifest));
ASSERT_TRUE(manifest);
std::string value;
EXPECT_TRUE(manifest->GetString(manifest_keys::kName, &value));
EXPECT_EQ("test", value);
EXPECT_TRUE(manifest->GetString(manifest_keys::kVersion, &value));
EXPECT_EQ("0.2", value);
EXPECT_FALSE(manifest->GetString(manifest_keys::kBackgroundPage, &value));
const base::ListValue* scripts;
ASSERT_TRUE(manifest->GetList(manifest_keys::kBackgroundScripts, &scripts));
EXPECT_EQ(1u, scripts->GetSize());
}
protected:
std::string id_;
};
TEST_F(ExtensionPrefsFinishDelayedInstallInfo, FinishDelayedInstallInfo) {}
class ExtensionPrefsOnExtensionInstalled : public ExtensionPrefsTest {
public:
void Initialize() override {
extension_ = prefs_.AddExtension("on_extension_installed");
EXPECT_FALSE(prefs()->IsExtensionDisabled(extension_->id()));
prefs()->OnExtensionInstalled(extension_.get(),
Extension::DISABLED,
syncer::StringOrdinal(),
"Param");
}
void Verify() override {
EXPECT_TRUE(prefs()->IsExtensionDisabled(extension_->id()));
EXPECT_EQ(std::string("Param"), prefs()->GetInstallParam(extension_->id()));
}
private:
scoped_refptr<Extension> extension_;
};
TEST_F(ExtensionPrefsOnExtensionInstalled,
ExtensionPrefsOnExtensionInstalled) {}
class ExtensionPrefsAppDraggedByUser : public ExtensionPrefsTest {
public:
void Initialize() override {
extension_ = prefs_.AddExtension("on_extension_installed");
EXPECT_FALSE(prefs()->WasAppDraggedByUser(extension_->id()));
prefs()->OnExtensionInstalled(extension_.get(),
Extension::ENABLED,
syncer::StringOrdinal(),
std::string());
}
void Verify() override {
// Set the flag and see if it persisted.
prefs()->SetAppDraggedByUser(extension_->id());
EXPECT_TRUE(prefs()->WasAppDraggedByUser(extension_->id()));
// Make sure it doesn't change on consecutive calls.
prefs()->SetAppDraggedByUser(extension_->id());
EXPECT_TRUE(prefs()->WasAppDraggedByUser(extension_->id()));
}
private:
scoped_refptr<Extension> extension_;
};
TEST_F(ExtensionPrefsAppDraggedByUser, ExtensionPrefsAppDraggedByUser) {}
class ExtensionPrefsFlags : public ExtensionPrefsTest {
public:
void Initialize() override {
{
base::DictionaryValue dictionary;
dictionary.SetString(manifest_keys::kName, "from_webstore");
dictionary.SetString(manifest_keys::kVersion, "0.1");
dictionary.SetInteger(manifest_keys::kManifestVersion, 2);
webstore_extension_ = prefs_.AddExtensionWithManifestAndFlags(
dictionary, Manifest::INTERNAL, Extension::FROM_WEBSTORE);
}
{
base::DictionaryValue dictionary;
dictionary.SetString(manifest_keys::kName, "from_bookmark");
dictionary.SetString(manifest_keys::kVersion, "0.1");
dictionary.SetInteger(manifest_keys::kManifestVersion, 2);
bookmark_extension_ = prefs_.AddExtensionWithManifestAndFlags(
dictionary, Manifest::INTERNAL, Extension::FROM_BOOKMARK);
}
{
base::DictionaryValue dictionary;
dictionary.SetString(manifest_keys::kName, "was_installed_by_default");
dictionary.SetString(manifest_keys::kVersion, "0.1");
dictionary.SetInteger(manifest_keys::kManifestVersion, 2);
default_extension_ = prefs_.AddExtensionWithManifestAndFlags(
dictionary,
Manifest::INTERNAL,
Extension::WAS_INSTALLED_BY_DEFAULT);
}
{
base::DictionaryValue dictionary;
dictionary.SetString(manifest_keys::kName, "was_installed_by_oem");
dictionary.SetString(manifest_keys::kVersion, "0.1");
dictionary.SetInteger(manifest_keys::kManifestVersion, 2);
oem_extension_ = prefs_.AddExtensionWithManifestAndFlags(
dictionary, Manifest::INTERNAL, Extension::WAS_INSTALLED_BY_OEM);
}
}
void Verify() override {
EXPECT_TRUE(prefs()->IsFromWebStore(webstore_extension_->id()));
EXPECT_FALSE(prefs()->IsFromBookmark(webstore_extension_->id()));
EXPECT_TRUE(prefs()->IsFromBookmark(bookmark_extension_->id()));
EXPECT_FALSE(prefs()->IsFromWebStore(bookmark_extension_->id()));
EXPECT_TRUE(prefs()->WasInstalledByDefault(default_extension_->id()));
EXPECT_TRUE(prefs()->WasInstalledByOem(oem_extension_->id()));
}
private:
scoped_refptr<Extension> webstore_extension_;
scoped_refptr<Extension> bookmark_extension_;
scoped_refptr<Extension> default_extension_;
scoped_refptr<Extension> oem_extension_;
};
TEST_F(ExtensionPrefsFlags, ExtensionPrefsFlags) {}
PrefsPrepopulatedTestBase::PrefsPrepopulatedTestBase()
: ExtensionPrefsTest() {
base::DictionaryValue simple_dict;
std::string error;
simple_dict.SetString(manifest_keys::kVersion, "1.0.0.0");
simple_dict.SetInteger(manifest_keys::kManifestVersion, 2);
simple_dict.SetString(manifest_keys::kName, "unused");
extension1_ = Extension::Create(
prefs_.temp_dir().AppendASCII("ext1_"),
Manifest::EXTERNAL_PREF,
simple_dict,
Extension::NO_FLAGS,
&error);
extension2_ = Extension::Create(
prefs_.temp_dir().AppendASCII("ext2_"),
Manifest::EXTERNAL_PREF,
simple_dict,
Extension::NO_FLAGS,
&error);
extension3_ = Extension::Create(
prefs_.temp_dir().AppendASCII("ext3_"),
Manifest::EXTERNAL_PREF,
simple_dict,
Extension::NO_FLAGS,
&error);
extension4_ = Extension::Create(
prefs_.temp_dir().AppendASCII("ext4_"),
Manifest::EXTERNAL_PREF,
simple_dict,
Extension::NO_FLAGS,
&error);
internal_extension_ = Extension::Create(
prefs_.temp_dir().AppendASCII("internal extension"), Manifest::INTERNAL,
simple_dict, Extension::NO_FLAGS, &error);
for (size_t i = 0; i < kNumInstalledExtensions; ++i)
installed_[i] = false;
}
PrefsPrepopulatedTestBase::~PrefsPrepopulatedTestBase() {
}
// Tests that blacklist state can be queried.
class ExtensionPrefsBlacklistedExtensions : public ExtensionPrefsTest {
public:
~ExtensionPrefsBlacklistedExtensions() override {}
void Initialize() override {
extension_a_ = prefs_.AddExtension("a");
extension_b_ = prefs_.AddExtension("b");
extension_c_ = prefs_.AddExtension("c");
}
void Verify() override {
{
ExtensionIdSet ids;
EXPECT_EQ(ids, prefs()->GetBlacklistedExtensions());
}
prefs()->SetExtensionBlacklisted(extension_a_->id(), true);
{
ExtensionIdSet ids;
ids.insert(extension_a_->id());
EXPECT_EQ(ids, prefs()->GetBlacklistedExtensions());
}
prefs()->SetExtensionBlacklisted(extension_b_->id(), true);
prefs()->SetExtensionBlacklisted(extension_c_->id(), true);
{
ExtensionIdSet ids;
ids.insert(extension_a_->id());
ids.insert(extension_b_->id());
ids.insert(extension_c_->id());
EXPECT_EQ(ids, prefs()->GetBlacklistedExtensions());
}
prefs()->SetExtensionBlacklisted(extension_a_->id(), false);
{
ExtensionIdSet ids;
ids.insert(extension_b_->id());
ids.insert(extension_c_->id());
EXPECT_EQ(ids, prefs()->GetBlacklistedExtensions());
}
prefs()->SetExtensionBlacklisted(extension_b_->id(), false);
prefs()->SetExtensionBlacklisted(extension_c_->id(), false);
{
ExtensionIdSet ids;
EXPECT_EQ(ids, prefs()->GetBlacklistedExtensions());
}
// The interesting part: make sure that we're cleaning up after ourselves
// when we're storing *just* the fact that the extension is blacklisted.
std::string arbitrary_id = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa";
prefs()->SetExtensionBlacklisted(arbitrary_id, true);
prefs()->SetExtensionBlacklisted(extension_a_->id(), true);
// (And make sure that the acknowledged bit is also cleared).
prefs()->AcknowledgeBlacklistedExtension(arbitrary_id);
EXPECT_TRUE(prefs()->GetExtensionPref(arbitrary_id));
{
ExtensionIdSet ids;
ids.insert(arbitrary_id);
ids.insert(extension_a_->id());
EXPECT_EQ(ids, prefs()->GetBlacklistedExtensions());
}
prefs()->SetExtensionBlacklisted(arbitrary_id, false);
prefs()->SetExtensionBlacklisted(extension_a_->id(), false);
EXPECT_FALSE(prefs()->GetExtensionPref(arbitrary_id));
{
ExtensionIdSet ids;
EXPECT_EQ(ids, prefs()->GetBlacklistedExtensions());
}
}
private:
scoped_refptr<const Extension> extension_a_;
scoped_refptr<const Extension> extension_b_;
scoped_refptr<const Extension> extension_c_;
};
TEST_F(ExtensionPrefsBlacklistedExtensions,
ExtensionPrefsBlacklistedExtensions) {}
// Tests the blacklist state. Old "blacklist" preference should take precedence
// over new "blacklist_state".
class ExtensionPrefsBlacklistState : public ExtensionPrefsTest {
public:
~ExtensionPrefsBlacklistState() override {}
void Initialize() override { extension_a_ = prefs_.AddExtension("a"); }
void Verify() override {
ExtensionIdSet empty_ids;
EXPECT_EQ(empty_ids, prefs()->GetBlacklistedExtensions());
prefs()->SetExtensionBlacklistState(extension_a_->id(),
BLACKLISTED_MALWARE);
EXPECT_EQ(BLACKLISTED_MALWARE,
prefs()->GetExtensionBlacklistState(extension_a_->id()));
prefs()->SetExtensionBlacklistState(extension_a_->id(),
BLACKLISTED_POTENTIALLY_UNWANTED);
EXPECT_EQ(BLACKLISTED_POTENTIALLY_UNWANTED,
prefs()->GetExtensionBlacklistState(extension_a_->id()));
EXPECT_FALSE(prefs()->IsExtensionBlacklisted(extension_a_->id()));
EXPECT_EQ(empty_ids, prefs()->GetBlacklistedExtensions());
prefs()->SetExtensionBlacklistState(extension_a_->id(),
BLACKLISTED_MALWARE);
EXPECT_TRUE(prefs()->IsExtensionBlacklisted(extension_a_->id()));
EXPECT_EQ(BLACKLISTED_MALWARE,
prefs()->GetExtensionBlacklistState(extension_a_->id()));
EXPECT_EQ(1u, prefs()->GetBlacklistedExtensions().size());
prefs()->SetExtensionBlacklistState(extension_a_->id(),
NOT_BLACKLISTED);
EXPECT_EQ(NOT_BLACKLISTED,
prefs()->GetExtensionBlacklistState(extension_a_->id()));
EXPECT_FALSE(prefs()->IsExtensionBlacklisted(extension_a_->id()));
EXPECT_EQ(empty_ids, prefs()->GetBlacklistedExtensions());
}
private:
scoped_refptr<const Extension> extension_a_;
};
TEST_F(ExtensionPrefsBlacklistState, ExtensionPrefsBlacklistState) {}
// Tests clearing the last launched preference.
class ExtensionPrefsClearLastLaunched : public ExtensionPrefsTest {
public:
~ExtensionPrefsClearLastLaunched() override {}
void Initialize() override {
extension_a_ = prefs_.AddExtension("a");
extension_b_ = prefs_.AddExtension("b");
}
void Verify() override {
// Set last launched times for each extension.
prefs()->SetLastLaunchTime(extension_a_->id(), base::Time::Now());
prefs()->SetLastLaunchTime(extension_b_->id(), base::Time::Now());
// Also set some other preference for one of the extensions.
prefs()->SetAllowFileAccess(extension_a_->id(), true);
// Now clear the launch times.
prefs()->ClearLastLaunchTimes();
// All launch times should be gone.
EXPECT_EQ(base::Time(), prefs()->GetLastLaunchTime(extension_a_->id()));
EXPECT_EQ(base::Time(), prefs()->GetLastLaunchTime(extension_b_->id()));
// Other preferences should be untouched.
EXPECT_TRUE(prefs()->AllowFileAccess(extension_a_->id()));
}
private:
scoped_refptr<const Extension> extension_a_;
scoped_refptr<const Extension> extension_b_;
};
TEST_F(ExtensionPrefsClearLastLaunched, ExtensionPrefsClearLastLaunched) {}
class ExtensionPrefsComponentExtension : public ExtensionPrefsTest {
public:
~ExtensionPrefsComponentExtension() override {}
void Initialize() override {
// Adding a component extension.
component_extension_ =
ExtensionBuilder("a")
.SetLocation(Manifest::COMPONENT)
.SetPath(prefs_.extensions_dir().AppendASCII("a"))
.Build();
prefs_.AddExtension(component_extension_.get());
// Adding a non component extension.
no_component_extension_ =
ExtensionBuilder("b")
.SetLocation(Manifest::INTERNAL)
.SetPath(prefs_.extensions_dir().AppendASCII("b"))
.Build();
prefs_.AddExtension(no_component_extension_.get());
APIPermissionSet api_perms;
api_perms.insert(APIPermission::kTab);
api_perms.insert(APIPermission::kBookmark);
api_perms.insert(APIPermission::kHistory);
URLPatternSet shosts;
AddPattern(&shosts, "chrome://print/*");
active_perms_.reset(new PermissionSet(std::move(api_perms),
ManifestPermissionSet(),
URLPatternSet(), std::move(shosts)));
// Set the active permissions.
prefs()->SetActivePermissions(component_extension_->id(), *active_perms_);
prefs()->SetActivePermissions(no_component_extension_->id(),
*active_perms_);
}
void Verify() override {
// Component extension can access chrome://print/*.
std::unique_ptr<const PermissionSet> component_permissions =
prefs()->GetActivePermissions(component_extension_->id());
EXPECT_EQ(1u, component_permissions->scriptable_hosts().size());
// Non Component extension can not access chrome://print/*.
std::unique_ptr<const PermissionSet> no_component_permissions =
prefs()->GetActivePermissions(no_component_extension_->id());
EXPECT_EQ(0u, no_component_permissions->scriptable_hosts().size());
// |URLPattern::SCHEME_CHROMEUI| scheme will be added in valid_schemes for
// component extensions.
URLPatternSet scriptable_hosts;
std::string pref_key = "active_permissions.scriptable_host";
int valid_schemes = URLPattern::SCHEME_ALL & ~URLPattern::SCHEME_CHROMEUI;
EXPECT_TRUE(prefs()->ReadPrefAsURLPatternSet(component_extension_->id(),
pref_key, &scriptable_hosts,
valid_schemes));
EXPECT_FALSE(prefs()->ReadPrefAsURLPatternSet(no_component_extension_->id(),
pref_key, &scriptable_hosts,
valid_schemes));
// Both extensions should be registered with the ExtensionPrefValueMap.
// See https://crbug.com/454513.
EXPECT_TRUE(prefs_.extension_pref_value_map()->CanExtensionControlPref(
component_extension_->id(), "a_pref", false));
EXPECT_TRUE(prefs_.extension_pref_value_map()->CanExtensionControlPref(
no_component_extension_->id(), "a_pref", false));
}
private:
std::unique_ptr<const PermissionSet> active_perms_;
scoped_refptr<const Extension> component_extension_;
scoped_refptr<const Extension> no_component_extension_;
};
TEST_F(ExtensionPrefsComponentExtension, ExtensionPrefsComponentExtension) {
}
// Tests reading and writing runtime granted permissions.
class ExtensionPrefsRuntimeGrantedPermissions : public ExtensionPrefsTest {
public:
ExtensionPrefsRuntimeGrantedPermissions() = default;
~ExtensionPrefsRuntimeGrantedPermissions() override {}
void Initialize() override {
extension_a_ = prefs_.AddExtension("a");
extension_b_ = prefs_.AddExtension("b");
// By default, runtime-granted permissions are empty.
EXPECT_TRUE(
prefs()->GetRuntimeGrantedPermissions(extension_a_->id())->IsEmpty());
EXPECT_TRUE(
prefs()->GetRuntimeGrantedPermissions(extension_b_->id())->IsEmpty());
URLPattern example_com(URLPattern::SCHEME_ALL, "https://example.com/*");
URLPattern chromium_org(URLPattern::SCHEME_ALL, "https://chromium.org/*");
{
// Add two hosts to the runtime granted permissions. Verify they were
// correctly added.
URLPatternSet added_urls({example_com, chromium_org});
PermissionSet added_permissions(APIPermissionSet(),
ManifestPermissionSet(),
std::move(added_urls), URLPatternSet());
prefs()->AddRuntimeGrantedPermissions(extension_a_->id(),
added_permissions);
std::unique_ptr<const PermissionSet> retrieved_permissions =
prefs()->GetRuntimeGrantedPermissions(extension_a_->id());
ASSERT_TRUE(retrieved_permissions);
EXPECT_EQ(added_permissions, *retrieved_permissions);
}
{
// Remove one of the hosts. The only remaining host should be
// example.com
URLPatternSet removed_urls({chromium_org});
PermissionSet removed_permissions(
APIPermissionSet(), ManifestPermissionSet(), std::move(removed_urls),
URLPatternSet());
prefs()->RemoveRuntimeGrantedPermissions(extension_a_->id(),
removed_permissions);
URLPatternSet remaining_urls({example_com});
PermissionSet remaining_permissions(
APIPermissionSet(), ManifestPermissionSet(),
std::move(remaining_urls), URLPatternSet());
std::unique_ptr<const PermissionSet> retrieved_permissions =
prefs()->GetRuntimeGrantedPermissions(extension_a_->id());
ASSERT_TRUE(retrieved_permissions);
EXPECT_EQ(remaining_permissions, *retrieved_permissions);
}
// The second extension should still have no runtime-granted permissions.
EXPECT_TRUE(
prefs()->GetRuntimeGrantedPermissions(extension_b_->id())->IsEmpty());
}
void Verify() override {
{
// The first extension should still have example.com as the granted
// permission.
URLPattern example_com(URLPattern::SCHEME_ALL, "https://example.com/*");
URLPatternSet remaining_urls({example_com});
PermissionSet remaining_permissions(
APIPermissionSet(), ManifestPermissionSet(),
std::move(remaining_urls), URLPatternSet());
std::unique_ptr<const PermissionSet> retrieved_permissions =
prefs()->GetRuntimeGrantedPermissions(extension_a_->id());
ASSERT_TRUE(retrieved_permissions);
EXPECT_EQ(remaining_permissions, *retrieved_permissions);
}
EXPECT_TRUE(
prefs()->GetRuntimeGrantedPermissions(extension_b_->id())->IsEmpty());
}
private:
scoped_refptr<const Extension> extension_a_;
scoped_refptr<const Extension> extension_b_;
DISALLOW_COPY_AND_ASSIGN(ExtensionPrefsRuntimeGrantedPermissions);
};
TEST_F(ExtensionPrefsRuntimeGrantedPermissions,
ExtensionPrefsRuntimeGrantedPermissions) {}
} // namespace extensions
| [
"sunny.nam@samsung.com"
] | sunny.nam@samsung.com |
82e8016d74db9b58763f957a26f70232190bc993 | 6afd626d3c2088da5b9574f649ec5dad97bbd779 | /leetcode/112_Path_Sum/solution_good.cpp | 1177f92f6920580a02c35a3a7df0daac2f82f93d | [] | no_license | lxlenovostar/algorithm | 7acaea32d58df45002d6f87bb6d663a90df52e46 | 82c5f630157d03be8f36aea34b7d88d181f44673 | refs/heads/master | 2023-03-07T03:43:40.564903 | 2023-02-25T07:05:29 | 2023-02-25T07:05:29 | 60,962,183 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,645 | cpp | /*
* 112 Path Sum
*
* Given a binary tree and a sum, determine if the tree has
* a root-to-leaf path such that adding up all the values along
* the path equals the given sum.
* */
#include <iostream>
#include <assert.h>
/**
* Definition for a binary tree node.
*/
struct TreeNode {
int val;
TreeNode *left;
TreeNode *right;
TreeNode(int x) : val(x), left(NULL), right(NULL) {}
};
class Solution {
public:
bool DFS(int target, int sum, TreeNode *root)
{
if (root == NULL)
return false;
sum += root->val;
if (root->left == NULL && root->right == NULL)
{
if (sum == target)
return true;
else
return false;
}
bool left_part = DFS(target, sum, root->left);
bool right_part = DFS(target, sum, root->right);
return left_part || right_part;
}
bool hasPathSum(TreeNode* root, int sum) {
if (root == NULL)
return false;
return DFS(sum, 0, root);
}
};
int main() {
/*
TreeNode *a5 = new TreeNode(5);
TreeNode *a4 = new TreeNode(4);
TreeNode *a8 = new TreeNode(8);
TreeNode *a11 = new TreeNode(11);
TreeNode *a13 = new TreeNode(13);
TreeNode *a42 = new TreeNode(4);
TreeNode *a7 = new TreeNode(7);
TreeNode *a2 = new TreeNode(2);
TreeNode *a1 = new TreeNode(1);
a5->left = a4;
a5->right = a8;
a4->left = a11;
a8->left = a13;
a8->right = a42;
a11->left = a7;
a11->right = a2;
a42->right = a1;
*/
TreeNode *a1 = new TreeNode(1);
TreeNode *a2 = new TreeNode(2);
a1->left = a2;
Solution *test = new Solution();
bool result = test->hasPathSum(a1, 1);
std::cout << "result:" << result << std::endl;
return 0;
}
| [
"lxlenovostar@gmail.com"
] | lxlenovostar@gmail.com |
035b9199649939f40a2b7e36f11d438fef2169d5 | 75d8a8d4454cd5d172ce5db94a977b4c0efb6744 | /Programas/Programa_15/Programa_15.ino | ea3bcdfbe5d35432be781acc5abdf6542588f638 | [] | no_license | filipeaocastro/Minicurso-de-Arduino | 05b532122f1a8ae0b1c140c957a8a3175313ce3c | b0c35c34391b18c463366d7c437d6d3e5a379768 | refs/heads/master | 2020-03-29T06:49:24.961837 | 2020-03-14T11:43:03 | 2020-03-14T11:43:03 | 149,642,033 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,616 | ino | // MINICURSO DE ARDUINO
// DIA 4
// 15º PROGRAMA
#define pino_LED_1 8
#define pino_LED_2 9
#define pino_LED_3 10
#define pino_buzzer 3
int valorRecebido;
int info = 0;
bool ledLigado_1 = false, ledLigado_2 = false,ledLigado_3 = false;
void setup()
{
Serial.begin(9600); // opens serial port, sets data rate to 9600 bps
pinMode(pino_LED_1, OUTPUT);
pinMode(pino_LED_2, OUTPUT);
pinMode(pino_LED_3, OUTPUT);
pinMode(pino_buzzer, OUTPUT);
}
void loop()
{
recebeDado();
switch(info)
{
case 1:
if(!ledLigado_1)
digitalWrite(pino_LED_1, HIGH);
else
digitalWrite(pino_LED_1, LOW);
ledLigado_1 = !ledLigado_1;
break;
case 2:
if(!ledLigado_2)
digitalWrite(pino_LED_2, HIGH);
else
digitalWrite(pino_LED_2, LOW);
ledLigado_2 = !ledLigado_2;
break;
case 3:
if(!ledLigado_3)
digitalWrite(pino_LED_3, HIGH);
else
digitalWrite(pino_LED_3, LOW);
ledLigado_3 = !ledLigado_3;
break;
case 4:
apitaBuzzer();
break;
}
info = 0;
}
void recebeDado()
{
if(Serial.available() > 0)
{
valorRecebido = Serial.read();
if(valorRecebido != 10)
{
info = int(valorRecebido) - 48;
Serial.print("\nDado Recebido: ");
Serial.print(info);
}
}
}
void apitaBuzzer()
{
digitalWrite(pino_buzzer, HIGH);
delay(50);
digitalWrite(pino_buzzer, 0);
delay(50);
digitalWrite(pino_buzzer, HIGH);
delay(50);
digitalWrite(pino_buzzer, 0);
delay(50);
digitalWrite(pino_buzzer, HIGH);
delay(50);
digitalWrite(pino_buzzer, 0);
} | [
"filipeaocastro@gmail.com"
] | filipeaocastro@gmail.com |
06af49d927f38f421284ee5cd164ce9da4f5bc2b | 08b8cf38e1936e8cec27f84af0d3727321cec9c4 | /data/crawl/squid/new_hunk_4899.cpp | 174139b074a57ee77b5ec272a4064f19ad9d991c | [] | no_license | ccdxc/logSurvey | eaf28e9c2d6307140b17986d5c05106d1fd8e943 | 6b80226e1667c1e0760ab39160893ee19b0e9fb1 | refs/heads/master | 2022-01-07T21:31:55.446839 | 2018-04-21T14:12:43 | 2018-04-21T14:12:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 289 | cpp | return NULL;
}
void
ConfigParser::ParseUShort(u_short *var)
{
fatal("not implemented 10");
}
void
dump_acl_access(StoreEntry * entry, const char *name, acl_access * head)
{
fatal("not implemented 11");
}
/*
* DO NOT MODIFY:
* arch-tag: 9bbc3b5f-8d7b-4fdc-af59-0b524a785307 | [
"993273596@qq.com"
] | 993273596@qq.com |
f82472718f7fe7f7b9b5d869123943b1ee937667 | 040355a1e4dc6650c98a37d99b23262b5de1e319 | /src/daemons/include/Common.h | 6f3afed9bea99c6da65329ca6523f7e97c7cc45c | [] | no_license | gavinxiao888/smartHomeCloud | 84f4128ac3db302b4013a3ce842c23e5a982b5d6 | 3e43d76c8a17baec07b6555cb68171e2338c68d9 | refs/heads/master | 2021-05-31T17:04:32.239537 | 2016-05-05T08:52:26 | 2016-05-05T08:52:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,238 | h | /********************************************************************************
Copyright (C), 2016-2017, Everyoo Co., Ltd.
File name: Common.h
Author: wangfei Version: 0.1.0 Date: 2016/02/26
Description: SIP daemon project common config header file
History:
1. Date:
Author:
Modification:
2. ...
********************************************************************************/
#ifndef _COMMON_H_
#define _COMMON_H_
#include <stdint.h>
#include <cstdlib>
#include <iostream>
#include <fstream>
#include <boost/program_options.hpp>
#include <boost/filesystem.hpp>
#include <boost/ptr_container/ptr_list.hpp>
#include <boost/format.hpp>
#include <boost/algorithm/string.hpp>
#include <boost/dynamic_bitset.hpp>
//boost time headers
#include <boost/date_time/local_time/local_time.hpp>
#include <boost/date_time/gregorian/gregorian.hpp>
#include <boost/date_time/posix_time/posix_time.hpp>
//boost thread headers
#include <boost/thread/thread.hpp>
#include <boost/thread/mutex.hpp>
#include <boost/bind.hpp>
#include <boost/thread/once.hpp>
#include <boost/thread.hpp>
//signal headers
#include <signal.h>
// mysql cppconn headers
#include <cppconn/driver.h>
#include <cppconn/exception.h>
#include <cppconn/prepared_statement.h>
#include <cppconn/resultset.h>
#include <cppconn/statement.h>
#include <cppconn/warning.h>
namespace po = boost::program_options;
#define PROJECT_VERSION 0.1.0 /***********PROJECT VERSION MACRO**********/
/****************Return Value Defination********************************************/
#define RET_SUCCESS 0 /*******Success return value*****/
#define RET_XML_GENERIC_ERROR 3
#define RET_DB_GENERIC_ERROR 10
#define RET_DB_WRONG_RECORD_COUNT 11
#define RET_DB_INSERT_ERROR 12
#define RET_DUPLICATE_ERROR 20
#define RET_FS_GENERIC_ERROR 40
#define RET_FS_NOT_DIR_ERROR 41
#define RET_UNKNOWN_ERROR 255
/****************Return Value Defination End****************************************/
/****************Confi Defination****************************************/
#define MD_DEBUG
#define MD_DEFAULT_CONFIG_PATH "../etc"
#define MD_DEFAULT_CONFIG_FILE "sip-daemon.conf"
#endif // _COMMON_H_
| [
"cuishiyang@everyoo.com"
] | cuishiyang@everyoo.com |
acde4a61416102559dce027dfb5a6dc21f1bba3c | ecd6b8513bb9f96e5d0c1213545950c3ccaa296c | /BIM/GraphicsBIM/OSG/inc/YZModelCore/IModelCoreInternal.h | 33f207c5f50f1309537cbb66d6602f56a9d2d2ae | [] | no_license | whztt07/FunctionalUtilities | 9ad7ed923e871a05a791a33370e9dfede3d70b2f | b4621cdda24067d01487d5a25d07110dba207154 | refs/heads/master | 2021-01-21T19:07:44.058746 | 2016-07-05T11:14:07 | 2016-07-05T11:14:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 815 | h | ////////////
// created by 孙庆号
////////////
#ifndef __YZMODEL_CORE_INTERNAL_H__
#define __YZMODEL_CORE_INTERNAL_H__
#include <memory>
#include "IModelCore.h"
#include "IBillboard.h"
#include "IBackgroundSetting.h"
#include "ICameraManipulators.h"
#include "IRenderingThreads.h"
#include "ICoordinate.h"
#include "INodeController.h"
#include "IFixedFrameRate.h"
#include "IScreenCapture.h"
#include "IZoomModel.h"
#include "IViewerDataModel.h"
#include "ICameraSettings.h"
namespace bimWorld
{
class YIZHU_EXPORT IModelCoreInternal :public IModelCore
{
public:
// <viewer data model 不公开到外部>
virtual std::shared_ptr<bimWorld::IViewerDataModel> ViewerData() = 0;
//virtual std::shared_ptr<bimWorld::ICoordinate> Coordinates() = 0;
};
}
#endif // __YZMODEL_CORE_INTERNAL_H__
| [
"invoker1994@sina.com"
] | invoker1994@sina.com |
99d35eb0bf25b1ab988ef1687301d19350ded4c9 | dc7b6bfae827e6d395b9b66a928aedc4ea23df0a | /objectmon.cpp | 4d804f89c9e919766c74a78e9da74944eb8a16ae | [] | no_license | asmolen/simulator | 4e0dd118cd4d548ee75fce84a9e42f99016e2d81 | c6beb7cca146a0e08eee2267ec80b2c887fe6ecf | refs/heads/master | 2021-01-22T16:48:35.144101 | 2014-04-29T17:52:58 | 2014-04-29T17:52:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 53 | cpp | #include "objectmon.hpp"
ObjectMon::ObjectMon()
{
}
| [
"artur.patryk.smolen@gmail.com"
] | artur.patryk.smolen@gmail.com |
6654858e3b170cdfec49ac13142a21fc198c294e | d2b698f7f86967e6e5d247b23ea0c4714cf6d3a1 | /arduino_receiver/arduino_receiver.ino | 96a0494c295c439b2a80bbeb97f05d71fa861b6a | [] | no_license | ritheshrithu/sewageProject | acbedbdde7e1b249e104e27619a2e45e47e7e102 | 923cfe3318f54449262d2aa76964e0c09fd17f73 | refs/heads/main | 2023-04-23T10:46:43.889741 | 2021-05-04T10:06:41 | 2021-05-04T10:06:41 | 364,210,726 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,555 | ino | #include <SPI.h>
#include <nRF24L01.h>
#include <RF24.h>
float distance1,distance2,distance3;
int value1,value2,value3;
int sp = 5;
RF24 radio(7,8);
const uint64_t pipes[4] = { 0xF0F0F0F0E1LL, 0xF0F0F0F0E2LL, 0xF0F0F0F0E3LL , 0xF0F0F0F0E4LL };
void setup(void)
{
Serial.begin(115200);
radio.begin();
radio.setPALevel(RF24_PA_MAX);
radio.setDataRate(RF24_1MBPS);
radio.openReadingPipe(1, pipes[1]);
radio.startListening();
radio.openReadingPipe(2, pipes[2]);
radio.startListening();
radio.openReadingPipe(3, pipes[3]);
radio.startListening();
}
void loop(void)
{
if ( radio.available() )
{
radio.read(&distance1, sizeof(distance1));
radio.read(&distance2, sizeof(distance2));
radio.read(&distance3, sizeof(distance3));
radio.read(&value1, sizeof(value1));
Serial.print("SEWER LEVEL 1 ");
Serial.print(distance1);
Serial.println();
Serial.print("GAS LEVEL 1 ");
Serial.print(value1);
Serial.println();
Serial.println();
Serial.print("SEWER LEVEL 1 ");
Serial.print(distance1);
Serial.println();
Serial.print("GAS LEVEL 2 ");
Serial.print(value2);
Serial.println();
Serial.println();
Serial.print("SEWER LEVEL 1 ");
Serial.print(distance3);
Serial.println();
Serial.print("GAS LEVEL 3 ");
Serial.print(value3);
Serial.println();
Serial.println();
Serial.println();
delay(3000);
if(distance1 !=distance2)
{
if(distance1 < sp)
{
Serial.println("BLOCK PRESENT INBETWEEN 1 AND 2");
}
if(distance2 < sp)
{
Serial.println("BLOCK PRESENT INBETWEEN 2 AND 3");
}
if(distance3 < sp)
{
Serial.println("BLOCK PRESENT INBETWEEN 3 AND 4");
}
}
}
}
| [
"srithesh10@gmail.com"
] | srithesh10@gmail.com |
911d73755ece77d7dca75a7bddac41b259465f62 | d0424f69a2a59eb1ee7a1c25ac9a3e907ddca7ba | /Graphs and Trees/DFS/floodfill.cpp | 0cec7dcfbb453b8cc67a0d8de58c2cdfaa0bc099 | [] | no_license | akashtadwai/programming-practice | 528ef0603dc94df8d9e0f3bf4e06122ebc783b44 | c0802eca95e790b2b8f3a262f06729084a43477c | refs/heads/master | 2022-11-13T10:33:13.528882 | 2020-07-12T10:28:22 | 2020-07-12T10:28:22 | 268,848,772 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,084 | cpp | // https://leetcode.com/problems/flood-fill/
#include <bits/stdc++.h>
using namespace std;
class Solution {
public:
int m, n;
vector<pair<int, int>> directions{{0, -1}, {0, 1}, {1, 0}, {-1, 0}};
bool isvalid(int i, int j) { return (i >= 0 and i < m and j >= 0 and j < n); }
void dfs(vector<vector<int>> &image, int sr, int sc, int newColor, int old,
vector<vector<bool>> &vis) {
vis[sr][sc] = true;
image[sr][sc] = newColor;
for (auto pp : directions) {
int nro = pp.first + sr;
int ncol = pp.second + sc;
if (isvalid(nro, ncol) and image[nro][ncol] == old and
vis[nro][ncol] == false) {
dfs(image, nro, ncol, newColor, old, vis);
}
}
}
vector<vector<int>> floodFill(vector<vector<int>> &image, int sr, int sc,
int newColor) {
m = image.size(), n = image[0].size();
vector<vector<bool>> vis(m, vector<bool>(n, false));
int old = image[sr][sc];
if (image[sr][sc] != newColor) {
dfs(image, sr, sc, newColor, old, vis);
}
return image;
}
}; | [
"akashadarsh.tadwai@gmail.com"
] | akashadarsh.tadwai@gmail.com |
87b2916b56c76691d321544b72112a5ddaa5db06 | 5b4bd7e7ab7b7b0ca1e1a5eb192bc377cad6aced | /src/IncomesFile.cpp | ced736cbea2afa919599aab8cf33d55fc512f7e2 | [] | no_license | SFelon/BudzetDomowy | 6fcb9dae4e737dd01f55b40c27f993267f6823b1 | 2d7158fe2114c4061925bb5fb70537ce919b9847 | refs/heads/master | 2021-04-03T08:12:56.772722 | 2018-03-19T21:31:38 | 2018-03-19T21:31:38 | 124,776,204 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,194 | cpp | #include "IncomesFile.h"
using namespace std;
int IncomesFile::getCurrentYearMonth() {
time_t tt = chrono::system_clock::to_time_t (chrono::system_clock::now());
struct tm * ptm = localtime(&tt);
stringstream dateStream;
dateStream << put_time(ptm,"%Y%m");
return stoi(dateStream.str());
}
string IncomesFile::doubleToString(double number) {
stringstream sstream;
sstream << fixed << setprecision(2) << number;
return sstream.str();
}
IncomesFile::IncomesFile() {
incomesFileName = "incomes.xml";
}
IncomesFile::~IncomesFile() {;}
int IncomesFile::loadLastIdNumber(int& userId) {
int lastIdNumber = 1;
CMarkup xmlFile;
xmlFile.Load(MCD_T(incomesFileName));
xmlFile.ResetPos();
if (!xmlFile.FindElem( "INCOMESFILE" )) {
return lastIdNumber;
}
xmlFile.IntoElem();
while ( xmlFile.FindElem( "INCOMEDATA" ) ) {
xmlFile.IntoElem();
xmlFile.FindElem( "INCOMEID" );
if (lastIdNumber <= stoi( MCD_2PCSZ(xmlFile.GetData()) ))
lastIdNumber = stoi( MCD_2PCSZ(xmlFile.GetData()) ) + 1;
xmlFile.OutOfElem();
}
return lastIdNumber;
}
void IncomesFile::loadCurrentMonthIncomes(int idLoggedUser, vector <Income>& incomes) {
Income incomeData;
int intDateToCompare = getCurrentYearMonth();
CMarkup xmlFile;
xmlFile.Load(MCD_T(incomesFileName));
xmlFile.FindElem("INCOMESFILE");
xmlFile.IntoElem();
while ( xmlFile.FindElem("INCOMEDATA") ) {
xmlFile.IntoElem();
xmlFile.FindElem( "USERID" );
if (idLoggedUser == (stoi( MCD_2PCSZ(xmlFile.GetData()) ))) {
incomeData.setUserId(idLoggedUser);
xmlFile.ResetMainPos();
xmlFile.FindElem( "INCOMEDATE" );
string tempDate = (MCD_2PCSZ(xmlFile.GetData()));
tempDate.erase(remove(tempDate.begin(), tempDate.end(), '-'), tempDate.end());
if (intDateToCompare == (stoi(tempDate)/100)) {
incomeData.setDate(xmlFile.GetData());
xmlFile.ResetMainPos();
xmlFile.FindElem( "INCOMEID" );
incomeData.setIncomeId(atoi( MCD_2PCSZ(xmlFile.GetData()) ));
xmlFile.FindElem( "INCOMENAME" );
incomeData.setItemName(xmlFile.GetData());
xmlFile.FindElem( "INCOMEAMOUNT" );
incomeData.setAmount(xmlFile.GetData());
incomes.push_back(incomeData);
}
}
xmlFile.OutOfElem();
}
}
void IncomesFile::loadPreviousMonthIncomes(int idLoggedUser, vector <Income>& incomes) {
Income incomeData;
int DateToCompare = getCurrentYearMonth();
if ((DateToCompare%100) == 1) {
DateToCompare = (((DateToCompare/100)-1)*100+12);
} else {
DateToCompare -= 1;
}
CMarkup xmlFile;
xmlFile.Load(MCD_T(incomesFileName));
xmlFile.FindElem("INCOMESFILE");
xmlFile.IntoElem();
while ( xmlFile.FindElem("INCOMEDATA") ) {
xmlFile.IntoElem();
xmlFile.FindElem( "USERID" );
if (idLoggedUser == (stoi( MCD_2PCSZ(xmlFile.GetData()) ))) {
incomeData.setUserId(idLoggedUser);
xmlFile.ResetMainPos();
xmlFile.FindElem( "INCOMEDATE" );
string tempDate = (MCD_2PCSZ(xmlFile.GetData()));
tempDate.erase(remove(tempDate.begin(), tempDate.end(), '-'), tempDate.end());
if (DateToCompare == (stoi(tempDate)/100)) {
incomeData.setDate(xmlFile.GetData());
xmlFile.ResetMainPos();
xmlFile.FindElem( "INCOMEID" );
incomeData.setIncomeId(atoi( MCD_2PCSZ(xmlFile.GetData()) ));
xmlFile.FindElem( "INCOMENAME" );
incomeData.setItemName(xmlFile.GetData());
xmlFile.FindElem( "INCOMEAMOUNT" );
incomeData.setAmount(xmlFile.GetData());
incomes.push_back(incomeData);
}
}
xmlFile.OutOfElem();
}
}
void IncomesFile::loadSelectedPeriodIncomes(int idLoggedUser, vector <Income>& incomes,
int startingDate, int endDate) {
Income incomeData;
CMarkup xmlFile;
xmlFile.Load(MCD_T(incomesFileName));
xmlFile.FindElem("INCOMESFILE");
xmlFile.IntoElem();
while ( xmlFile.FindElem("INCOMEDATA") ) {
xmlFile.IntoElem();
xmlFile.FindElem( "USERID" );
if (idLoggedUser == (stoi( MCD_2PCSZ(xmlFile.GetData()) ))) {
incomeData.setUserId(idLoggedUser);
xmlFile.ResetMainPos();
xmlFile.FindElem( "INCOMEDATE" );
string tempDate = (MCD_2PCSZ(xmlFile.GetData()));
tempDate.erase(remove(tempDate.begin(), tempDate.end(), '-'), tempDate.end());
if ( (stoi(tempDate) >= startingDate) && (stoi(tempDate) <= endDate ) ) {
incomeData.setDate(xmlFile.GetData());
xmlFile.ResetMainPos();
xmlFile.FindElem( "INCOMEID" );
incomeData.setIncomeId(atoi( MCD_2PCSZ(xmlFile.GetData()) ));
xmlFile.FindElem( "INCOMENAME" );
incomeData.setItemName(xmlFile.GetData());
xmlFile.FindElem( "INCOMEAMOUNT" );
incomeData.setAmount(xmlFile.GetData());
incomes.push_back(incomeData);
}
}
xmlFile.OutOfElem();
}
}
void IncomesFile::loadIncomesData(int idLoggedUser, vector <Income>& incomes) {
Income incomeData;
CMarkup xmlFile;
xmlFile.Load(MCD_T(incomesFileName));
xmlFile.FindElem("INCOMESFILE");
xmlFile.IntoElem();
while ( xmlFile.FindElem("INCOMEDATA") ) {
xmlFile.IntoElem();
xmlFile.FindElem( "USERID" );
if (idLoggedUser == (stoi( MCD_2PCSZ(xmlFile.GetData()) ))) {
incomeData.setUserId(idLoggedUser);
xmlFile.ResetMainPos();
xmlFile.FindElem( "INCOMEID" );
incomeData.setIncomeId(stoi( MCD_2PCSZ(xmlFile.GetData()) ));
xmlFile.FindElem( "INCOMEDATE" );
incomeData.setDate(xmlFile.GetData());
xmlFile.FindElem( "INCOMENAME" );
incomeData.setItemName(xmlFile.GetData());
xmlFile.FindElem( "INCOMEAMOUNT" );
incomeData.setAmount(xmlFile.GetData());
incomes.push_back(incomeData);
}
xmlFile.OutOfElem();
}
}
void IncomesFile::saveIncomeData(Income& newIncome) {
CMarkup xmlFile;
xmlFile.Load(MCD_T(incomesFileName));
xmlFile.ResetPos();
if (!xmlFile.FindElem("INCOMESFILE")) {
xmlFile.AddElem( "INCOMESFILE" );
}
xmlFile.IntoElem();
xmlFile.AddElem( "INCOMEDATA" );
xmlFile.IntoElem();
xmlFile.AddElem( "INCOMEID", newIncome.getIncomeId() );
xmlFile.AddElem( "USERID", newIncome.getUserId() );
xmlFile.AddElem( "INCOMEDATE", newIncome.getDateString() );
xmlFile.AddElem( "INCOMENAME", newIncome.getItemName() );
xmlFile.AddElem( "INCOMEAMOUNT", doubleToString(newIncome.getAmount()) );
xmlFile.OutOfElem();
xmlFile.Save(MCD_T(incomesFileName));
cout<<"Dodano nowy przychod!"<<endl;
Sleep(1500);
}
| [
"sebastian.felon.programista@gmail.com"
] | sebastian.felon.programista@gmail.com |
0770cbb72c3f1bb6ba566bfce28d5f2266c9d901 | 88f61081699e89e56ce6d969d75687b2c8b5a565 | /utility.h | 510c601ebfaa60658e8bc024ff8a6ca130f49175 | [] | no_license | Slocan/Wordsler | 6351ad1e7fca2b64ddf4b34a1b03920dea5ee3dd | 6b1b4dcb305911b86d4df421b57d527ef9783525 | refs/heads/master | 2021-01-16T00:17:52.267421 | 2012-09-29T21:45:11 | 2012-09-29T21:45:11 | 1,569,568 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 565 | h | #ifndef UTILITY_H
#define UTILITY_H
#if defined(Q_WS_MAEMO_5)
# include <QDBusConnection>
# include <QDBusMessage>
#endif
#include <QObject>
#include <QDebug>
#include "qmlapplicationviewer.h"
class Utility : public QObject
{
Q_OBJECT
public:
explicit Utility(QObject *parent = 0, QmlApplicationViewer *viewerRef=0);
Q_INVOKABLE void taskSwitcher();
Q_INVOKABLE QString getPlatform();
QmlApplicationViewer *viewer;
~Utility();
signals:
void orientationChanged();
public slots:
private slots:
private:
};
#endif // UTILITY_H
| [
"yves@marcoz.org"
] | yves@marcoz.org |
53a71217f4f422323d16eafd922014ca568ea1d3 | c1976b1f0a5eeb0bd757cf6e65e2d50f54425bca | /src/SaveMine.cpp | 2c9ca1660a8b6def8d25cfe4a4eb76b525b6b4b1 | [
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-unknown-license-reference",
"MIT"
] | permissive | SiriusTR/dle-experimental | 1796aab0a6302d99c64e989170764fa370a2b6f1 | 2ee17b4277b68eef57960d5cf9762dd986eaa0d9 | refs/heads/master | 2020-04-17T17:45:17.134289 | 2020-03-08T23:25:37 | 2020-03-08T23:25:37 | 67,313,420 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 21,489 | cpp | // Copyright (c) 1998 Bryan Aamot, Brainware
#include "mine.h"
#include "dle-xp.h"
#include "quaternion.h"
#include "rapidjson\document.h"
#include "rapidjson\filewritestream.h"
#include "rapidjson\pointer.h"
#include "rapidjson\prettywriter.h"
// -----------------------------------------------------------------------------
short CMine::Save (const char * szFile)
{
if (segmentManager.Overflow ()) {
if (vertexManager.Overflow ())
ErrorMsg ("Error: Too many segments and vertices for this level version!\nThe level cannot be saved.");
else
ErrorMsg ("Error: Too many segments for this level version!\nThe level cannot be saved.");
return 0;
}
else if (vertexManager.Overflow ()) {
ErrorMsg ("Error: Too many vertices for this level version!\nThe level cannot be saved.");
return 0;
}
CFileManager fp;
char filename [256];
int mineDataOffset, gameDataOffset, hostageTextOffset;
int mineErr, gameErr;
strcpy_s (filename, sizeof (filename), szFile);
if (!fp.Open (filename, "w+b"))
return 0;
m_changesMade = 0;
// write file signature
fp.WriteInt32 ('P'*0x1000000L + 'L'*0x10000L + 'V'*0x100 + 'L'); // signature
// always save as version 7 or greater if its a D2 level
// otherwise, blinking lights will not work.
if (LevelVersion () < 7 && IsD2File ()) {
SetLevelVersion (7);
}
if (IsD2XLevel () && LevelIsOutdated ()) {
UpdateLevelVersion ();
segmentManager.UpdateWalls (MAX_WALLS_D2 + 1, WALL_LIMIT);
}
// write version
fp.WriteInt32 (LevelVersion ());
fp.WriteInt32 (0); // mineDataOffset (temporary)
fp.WriteInt32 (0); // gameDataOffset (temporary)
if (IsD1File ())
fp.WriteInt32 (0); // hostageTextOffset (temporary)
else if (IsD2File ()) {
if (LevelVersion () >= 8) {
fp.WriteInt16 (rand ());
fp.WriteInt16 (rand ());
fp.WriteInt16 (rand ());
fp.WriteSByte ((sbyte) rand ());
}
// save palette name
char *name = strrchr (descentFolder [1], '\\');
if (!name)
name = descentFolder [1]; // point to 1st char if no slash found
else
name++; // point to character after slash
char paletteName [15];
strncpy_s (paletteName, sizeof (paletteName), name, 12);
paletteName [13] = null; // null terminate just in case
// replace extension with *.256
if (strlen (paletteName) > 4)
strcpy_s (&paletteName [strlen (paletteName) - 4], 5, ".256");
else
strcpy_s (paletteName, sizeof (paletteName), "groupa.256");
//_strupr_s (paletteName, sizeof (paletteName));
strcat_s (paletteName, sizeof (paletteName), "\n"); // add a return to the end
fp.Write (paletteName, (int) strlen (paletteName), 1);
// write reactor info
fp.Write (ReactorTime ());
fp.Write (ReactorStrength ());
// variable light new for version 7
lightManager.WriteVariableLights (&fp);
// write secret segment number
fp.Write (SecretSegment ());
// write secret return segment orientation
fp.Write (SecretOrient ());
}
// save mine data
mineDataOffset = fp.Tell ();
if (0 > (mineErr = SaveMineGeometry (&fp))) {
fp.Close ();
ErrorMsg ("Error saving mine data");
return -2;
}
// save game data
gameDataOffset = fp.Tell ();
if (0 > (gameErr = SaveGameItems (&fp))) {
fp.Close ();
ErrorMsg ("Error saving game data");
return -3;
}
// save hostage data
hostageTextOffset = fp.Tell ();
// leave hostage text empty
// now and go back to beginning of file and save offsets
fp.Seek (2 * sizeof (int), SEEK_SET);
fp.Write (mineDataOffset); // mineDataOffset
fp.Write (gameDataOffset); // gameDataOffset
if (m_fileType == RDL_FILE)
fp.Write (hostageTextOffset); // hostageTextOffset
fp.Seek (0, SEEK_END);
fp.Close ();
return 1;
}
// ------------------------------------------------------------------------
// SaveMineGeometry()
//
// ACTION - Writes a mine data portion of RDL file.
// ------------------------------------------------------------------------
short CMine::SaveMineGeometry (CFileManager* fp)
{
// write version (1 ubyte)
fp->WriteByte (COMPILED_MINE_VERSION);
// write no. of vertices (2 bytes)
fp->WriteUInt16 (vertexManager.Count ());
// write number of Segments () (2 bytes)
fp->WriteInt16 (segmentManager.Count ());
// write all vertices
vertexManager.SetIndex ();
segmentManager.SetIndex ();
triggerManager.SetIndex ();
wallManager.SetIndex ();
vertexManager.Write (fp);
// write segment information
segmentManager.WriteSegments (fp);
// for Descent 2, save special info here
if (LevelVersion () >= 9)
lightManager.WriteColors (*fp);
return 1;
}
// ------------------------------------------------------------------------
// SaveGameItems()
//
// ACTION - Saves the player, object, wall, door, trigger, and
// material generator data from an RDL file.
// ------------------------------------------------------------------------
short CMine::SaveGameItems (CFileManager* fp)
{
if (IsD1File ()) {
Info ().fileInfo.signature = 0x6705;
Info ().fileInfo.version = 25;
Info ().fileInfo.size = 119;
Info ().level = 0;
}
else {
Info ().fileInfo.signature = 0x6705;
Info ().fileInfo.version = (LevelVersion () < 13) ? 31 : 40;
Info ().fileInfo.size = (LevelVersion () < 13) ? 143 : -1; // same as sizeof (Info ())
Info ().level = 0;
}
int startOffset = fp->Tell ();
Info ().Write (fp, IsD2XLevel ());
if (Info ().fileInfo.version >= 14) // save mine file name
fp->Write (m_currentLevelName, sizeof (char), (int) strlen (m_currentLevelName));
if (IsD2File ())
fp->Write ("\n", 1, 1); // write an end - of - line
else
fp->Write ("", 1, 1); // write a null
// write pof names from resource file
short nSavePofNames;
if (IsD2File ()) {
nSavePofNames = 166;
fp->WriteUInt16 (166); // write # of POF names
}
else {
nSavePofNames = 78;
fp->WriteInt16 (25); // Don't know exactly what this value is for or why it is 25?
}
CResource res;
ubyte* savePofNames = res.Load (IsD1File () ? IDR_POF_NAMES1 : IDR_POF_NAMES2);
if (savePofNames == null)
return 0;
fp->Write (savePofNames, nSavePofNames, 13); // 13 characters each
Info ().player.offset = fp->Tell ();
char* str = "Made with Descent Level Editor\0\0\0\0\0\0\0";
fp->Write (str, (int) strlen (str) + 1, 1);
segmentManager.RenumberProducers ();
objectManager.Write (fp);
wallManager.Write (fp);
triggerManager.Write (fp);
triggerManager.WriteReactor (fp);
segmentManager.WriteRobotMakers (fp);
if (IsD2File ()) {
segmentManager.WriteEquipMakers (fp);
lightManager.WriteLightDeltas (fp);
}
fp->Seek (startOffset, SEEK_SET);
Info ().Write (fp, IsD2XLevel ());
fp->Seek (0, SEEK_END);
return 1;
}
// -----------------------------------------------------------------------------
using namespace rapidjson;
short CMine::ExportOverload (const char * filename)
{
CFileManager fp;
if (!fp.Open (filename, "w+b"))
return 0;
else {
Document document;
document.SetObject ();
auto& allocator = document.GetAllocator ();
char path [128] = { 0 };
int numEntities = 0;
CDynamicArray <uint> doorWallIds;
document.AddMember ("properties", Value ().SetObject (), allocator);
document.AddMember ("global_data", Value ().SetObject (), allocator);
document.AddMember ("challenge_data_string", "", allocator);
document.AddMember ("verts", Value ().SetObject (), allocator);
document.AddMember ("segments", Value ().SetObject (), allocator);
document.AddMember ("entities", Value ().SetObject (), allocator);
// Level properties
Pointer ("/properties/next_segment").Set (document, segmentManager.Count ());
Pointer ("/properties/next_vertex").Set (document, vertexManager.Count ());
Pointer ("/properties/next_entity").Set (document, 0);
Pointer ("/properties/selected_segment").Set (document, 0);
Pointer ("/properties/selected_side").Set (document, 1);
Pointer ("/properties/selected_vertex").Set (document, 0);
Pointer ("/properties/selected_entity").Set (document, -1);
Pointer ("/properties/num_segments").Set (document, segmentManager.Count ());
Pointer ("/properties/num_vertices").Set (document, vertexManager.Count ());
Pointer ("/properties/num_entities").Set (document, 0);
Pointer ("/properties/num_marked_segments").Set (document, 0);
Pointer ("/properties/num_marked_sides").Set (document, 0);
Pointer ("/properties/num_marked_vertices").Set (document, 0);
Pointer ("/properties/num_marked_entities").Set (document, 0);
Pointer ("/properties/texture_set").Set (document, "Titan - Bronze");
// Global data - just use default settings
Pointer ("/global_data/grid_size").Set (document, 8);
Pointer ("/global_data/pre_smooth").Set (document, 3);
Pointer ("/global_data/post_smooth").Set (document, 0);
Pointer ("/global_data/simplify_strength").Set (document, 0.0);
Pointer ("/global_data/deform_presets0").Set (document, "PLAIN_NOISE");
Pointer ("/global_data/deform_presets1").Set (document, "NONE");
Pointer ("/global_data/deform_presets2").Set (document, "NONE");
Pointer ("/global_data/deform_presets3").Set (document, "NONE");
// Vertices
for (int nVertex = 0; nVertex < vertexManager.Count (); nVertex++) {
CVertex& vertex = vertexManager [nVertex];
sprintf_s (path, "/verts/%d/marked", nVertex);
Pointer (path).Set (document, false);
sprintf_s (path, "/verts/%d/x", nVertex);
Pointer (path).Set (document, vertex.v.x / 5);
sprintf_s (path, "/verts/%d/y", nVertex);
Pointer (path).Set (document, vertex.v.y / 5);
sprintf_s (path, "/verts/%d/z", nVertex);
Pointer (path).Set (document, vertex.v.z / 5);
}
// Segments
for (int nSegment = 0; nSegment < segmentManager.Count (); nSegment++) {
CSegment* pSegment = segmentManager.Segment (nSegment);
sprintf_s (path, "/segments/%d/marked", nSegment);
Pointer (path).Set (document, false);
sprintf_s (path, "/segments/%d/pathfinding", nSegment);
Pointer (path).Set (document, "All");
sprintf_s (path, "/segments/%d/exitsegment", nSegment);
Pointer (path).Set (document, "None");
sprintf_s (path, "/segments/%d/dark", nSegment);
Pointer (path).Set (document, false);
// Vertex IDs
sprintf_s (path, "/segments/%d/verts", nSegment);
Value& verts = Pointer (path).Create (document).SetArray ();
for (int nVert = 0; nVert < MAX_VERTICES_PER_SEGMENT; nVert++)
verts.PushBack (pSegment->VertexId (nVert), allocator);
// Sides
sprintf_s (path, "/segments/%d/sides", nSegment);
Value& sides = Pointer (path).Create (document).SetArray ();
for (int nSide = 0; nSide < MAX_SIDES_PER_SEGMENT; nSide++) {
CSide *pSide = pSegment->Side (nSide);
Value side (kObjectType);
Pointer ("/marked").Set (side, false, allocator);
Pointer ("/chunk_plane_order").Set (side, -1, allocator);
Pointer ("/tex_name").Set (side, textureManager.Textures (pSide->BaseTex ())->Name (), allocator);
Pointer ("/deformation_preset").Set (side, 0, allocator);
Pointer ("/deformation_height").Set (side, 0.0, allocator);
Value& sideVerts = Pointer ("/verts").Create (side, allocator).SetArray ();
Value& sideUVs = Pointer ("/uvs").Create (side, allocator).SetArray ();
for (int nSideVert = 0; nSideVert < pSide->VertexCount (); nSideVert++) {
sideVerts.PushBack (pSegment->VertexId (nSide, nSideVert), allocator);
Value uv (kObjectType);
uv.AddMember ("u", pSide->Uvls (nSideVert)->u, allocator);
uv.AddMember ("v", pSide->Uvls (nSideVert)->v, allocator);
sideUVs.PushBack (uv, allocator);
}
Value& decals = Pointer ("/decals").Create (side, allocator).SetArray ();
// Fill out basic decal data...
Value decal (kObjectType);
Pointer ("/mesh_name").Set (decal, "", allocator);
Pointer ("/align").Set (decal, "CENTER", allocator);
Pointer ("/mirror").Set (decal, "OFF", allocator);
Pointer ("/rotation").Set (decal, 0, allocator);
Pointer ("/repeat_u").Set (decal, 1, allocator);
Pointer ("/repeat_v").Set (decal, 1, allocator);
Pointer ("/offset_u").Set (decal, 0, allocator);
Pointer ("/offset_v").Set (decal, 0, allocator);
Pointer ("/hidden").Set (decal, false, allocator);
Value& clips = Pointer ("/clips").Create (decal, allocator).SetArray ();
clips.PushBack ("NONE", allocator);
clips.PushBack ("NONE", allocator);
clips.PushBack ("NONE", allocator);
clips.PushBack ("NONE", allocator);
Value& caps = Pointer ("/caps").Create (decal, allocator).SetArray ();
caps.PushBack ("NONE", allocator);
caps.PushBack ("NONE", allocator);
caps.PushBack ("NONE", allocator);
caps.PushBack ("NONE", allocator);
// Two decal slots per side. Set up the first one
if (pSegment->ChildId (nSide) == -1) {
// This side is not connected and is therefore a solid surface.
// Use the secondary texture (if any) as a decal.
if (pSide->OvlTex (0)) {
Pointer ("/mesh_name").Set (decal, textureManager.Textures (pSide->OvlTex (0))->Name (), allocator);
Pointer ("/rotation").Set (decal, pSide->OvlAlignment () * 2, allocator);
}
}
else if (pSegment->ChildId (nSide) >= 0 && pSide->Wall () &&
(pSide->Wall ()->Type () == WALL_NORMAL || pSide->Wall ()->Type () == WALL_CLOSED)) {
// This is a solid wall. Use the primary texture for the first decal.
Pointer ("/mesh_name").Set (decal, textureManager.Textures (pSide->BaseTex ())->Name (), allocator);
}
decals.PushBack (Value ().CopyFrom (decal, allocator), allocator);
// Second decal. We only use this for the secondary texture of walls
if (pSegment->ChildId (nSide) >= 0 && pSide->Wall () &&
(pSide->Wall ()->Type () == WALL_NORMAL || pSide->Wall ()->Type () == WALL_CLOSED) &&
pSide->OvlTex (0)) {
// This is a solid wall. Use the secondary texture for the second decal.
Pointer ("/mesh_name").Set (decal, textureManager.Textures (pSide->OvlTex (0))->Name (), allocator);
Pointer ("/rotation").Set (decal, pSide->OvlAlignment () * 2, allocator);
}
else {
// Blank out fields for the second decal
Pointer ("/mesh_name").Set (decal, "", allocator);
Pointer ("/rotation").Set (decal, 0, allocator);
}
decals.PushBack (decal, allocator);
int doorNum = -1;
if (pSide->Wall () && pSide->Wall ()->IsDoor ()) {
CWall* pWall = pSide->Wall ();
CWall* pOppositeWall = wallManager.OppositeWall (*pWall);
// Check that we haven't already added this door from the other side
if (!pOppositeWall || doorWallIds.Find (wallManager.Index (pOppositeWall)) == -1) {
// In Overload levels, doors are entities, and the /door field contains the entity number.
// We don't have a corresponding entity in the Descent level so we'll have to create one.
doorNum = numEntities;
numEntities++;
doorWallIds.Resize (doorWallIds.Length () + 1);
*doorWallIds.End () = wallManager.Index (pWall);
}
}
Pointer ("/door").Set (side, doorNum, allocator);
sides.PushBack (side, allocator);
}
// Neighboring segments
sprintf_s (path, "/segments/%d/neighbors", nSegment);
Value& neighbors = Pointer (path).Create (document).SetArray ();
for (int nSide = 0; nSide < MAX_SIDES_PER_SEGMENT; nSide++) {
short nChildId = pSegment->ChildId (nSide);
if (nChildId == -2)
nChildId = -1; // -2 is not supported by the Overload format
neighbors.PushBack (nChildId, allocator);
}
}
// Entities
// First write the doors, since we already pointed segment data to them
for (size_t nDoor = 0; nDoor < doorWallIds.Length (); nDoor++) {
CWall* pWall = wallManager.Wall (doorWallIds [nDoor]);
// We have to generate a GUID for each entity
GUID guid;
CoCreateGuid (&guid);
char guidString [GUIDSTRING_MAX];
sprintf_s (guidString, "%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X",
guid.Data1, guid.Data2, guid.Data3, guid.Data4 [0], guid.Data4 [1],
guid.Data4 [2], guid.Data4 [3], guid.Data4 [4], guid.Data4 [5], guid.Data4 [6], guid.Data4 [7]);
sprintf_s (path, "/entities/%d/guid", nDoor);
Pointer (path).Set (document, guidString);
sprintf_s (path, "/entities/%d/ref_guid", nDoor);
Pointer (path).Set (document, "00000000-0000-0000-0000-000000000000");
// Position
sprintf_s (path, "/entities/%d/position", nDoor);
Value& position = Pointer (path).Create (document).SetArray ();
for (int i = 0; i < 3; i++) {
segmentManager.Segment (pWall->m_nSegment)->ComputeCenter (pWall->Side ());
position.PushBack (pWall->Side ()->Center () [i] / 5, allocator);
}
// Rotation (4x4 matrix; DLE uses 3x3 so we have to pad it)
// CTunnelBase happens to calculate the orientation of a side already, so we're repurposing that
sprintf_s (path, "/entities/%d/rotation", nDoor);
Value& rotation = Pointer (path).Create (document).SetArray ();
CTunnelBase sideOrientation;
CSelection wallSide (*pWall);
sideOrientation.Setup (&wallSide, -1.0, true);
for (size_t i = 0; i < 4; i++)
for (size_t j = 0; j < 4; j++) {
if (i == 3 && j == 3)
rotation.PushBack (1.0f, allocator);
else if (i == 3 || j == 3)
rotation.PushBack (0.0f, allocator);
else
rotation.PushBack (sideOrientation.m_rotation [i] [j], allocator);
}
// ...and the other stuff
sprintf_s (path, "/entities/%d/segnum", nDoor);
Pointer (path).Set (document, pWall->m_nSegment, allocator);
sprintf_s (path, "/entities/%d/type", nDoor);
Pointer (path).Set (document, "DOOR", allocator);
sprintf_s (path, "/entities/%d/sub_type", nDoor);
Pointer (path).Set (document, "OM1", allocator); // just a reasonable default - can't remap
sprintf_s (path, "/entities/%d/mp_team", nDoor);
Pointer (path).Set (document, 0, allocator);
sprintf_s (path, "/entities/%d/properties/door_lock", nDoor);
Pointer (path).Set (document, (pWall->Info ().flags & WALL_DOOR_LOCKED) ? 1 : 0, allocator);
sprintf_s (path, "/entities/%d/properties/robot_access", nDoor);
Pointer (path).Set (document, "False", allocator);
sprintf_s (path, "/entities/%d/properties/no_chunk", nDoor);
Pointer (path).Set (document, "False", allocator);
}
int nEntity = doorWallIds.Length ();
// Now write anything else applicable
for (int nObject = 0; nObject < objectManager.Count (); nObject++) {
CGameObject* pObject = objectManager.Object (nObject);
switch (pObject->Type ()) {
case OBJ_ROBOT:
case OBJ_HOSTAGE:
case OBJ_PLAYER:
case OBJ_POWERUP:
case OBJ_REACTOR:
break;
default:
// Not supported in Overload levels
continue;
}
// GUIDs
GUID guid;
CoCreateGuid (&guid);
char guidString [GUIDSTRING_MAX];
sprintf_s (guidString, "%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X",
guid.Data1, guid.Data2, guid.Data3, guid.Data4 [0], guid.Data4 [1],
guid.Data4 [2], guid.Data4 [3], guid.Data4 [4], guid.Data4 [5], guid.Data4 [6], guid.Data4 [7]);
sprintf_s (path, "/entities/%d/guid", nEntity);
Pointer (path).Set (document, guidString);
sprintf_s (path, "/entities/%d/ref_guid", nEntity);
Pointer (path).Set (document, "00000000-0000-0000-0000-000000000000");
// Position
sprintf_s (path, "/entities/%d/position", nEntity);
Value& position = Pointer (path).Create (document).SetArray ();
for (int i = 0; i < 3; i++)
position.PushBack (pObject->Position () [i] / 5, allocator);
// Rotation (4x4 matrix; DLE uses 3x3 so we have to pad it)
sprintf_s (path, "/entities/%d/rotation", nEntity);
Value& rotation = Pointer (path).Create (document).SetArray ();
for (size_t i = 0; i < 4; i++)
for (size_t j = 0; j < 4; j++) {
if (i == 3 && j == 3)
rotation.PushBack (1.0f, allocator);
else if (i == 3 || j == 3)
rotation.PushBack (0.0f, allocator);
else
rotation.PushBack (pObject->Orient () [i] [j], allocator);
}
// Shared properties
sprintf_s (path, "/entities/%d/segnum", nEntity);
Pointer (path).Set (document, pObject->Info ().nSegment, allocator);
sprintf_s (path, "/entities/%d/mp_team", nEntity);
Pointer (path).Set (document, 0, allocator);
// Type-specific properties
switch (pObject->Type ()) {
case OBJ_ROBOT:
sprintf_s (path, "/entities/%d/type", nEntity);
Pointer (path).Set (document, "ENEMY", allocator);
sprintf_s (path, "/entities/%d/sub_type", nEntity);
Pointer (path).Set (document, "GRUNTA", allocator);
break;
case OBJ_HOSTAGE:
sprintf_s (path, "/entities/%d/type", nEntity);
Pointer (path).Set (document, "PROP", allocator);
sprintf_s (path, "/entities/%d/sub_type", nEntity);
Pointer (path).Set (document, "CRYOTUBE", allocator);
break;
case OBJ_PLAYER:
sprintf_s (path, "/entities/%d/type", nEntity);
Pointer (path).Set (document, "SPECIAL", allocator);
sprintf_s (path, "/entities/%d/sub_type", nEntity);
Pointer (path).Set (document, "PLAYER_START", allocator);
break;
case OBJ_POWERUP:
sprintf_s (path, "/entities/%d/type", nEntity);
Pointer (path).Set (document, "ITEM", allocator);
sprintf_s (path, "/entities/%d/sub_type", nEntity);
Pointer (path).Set (document, "CM_SPAWN", allocator);
break;
case OBJ_REACTOR:
sprintf_s (path, "/entities/%d/type", nEntity);
Pointer (path).Set (document, "PROP", allocator);
sprintf_s (path, "/entities/%d/sub_type", nEntity);
Pointer (path).Set (document, "REACTOR_OM", allocator);
break;
}
nEntity++;
}
char writeBuffer [65536] = { 0 };
FileWriteStream stream (fp.File (), writeBuffer, sizeof (writeBuffer));
PrettyWriter <FileWriteStream> writer (stream);
writer.SetIndent (' ', 2);
document.Accept (writer);
}
fp.Close ();
char msg [MAX_PATH + 30];
sprintf_s (msg, _countof (msg), "Level exported to %s", filename);
INFOMSG (msg);
return 1;
}
// --------------------------------------------------------------------------
//eof mine.cpp | [
"daniel.keymer@gmail.com"
] | daniel.keymer@gmail.com |
d51c63906afb78312244858ab3b1c876a9af326a | 7aa2358f89064b0eb91709e18d379f0a0fab7ec0 | /2DGame/Scott Pilgrim/02-Bubble/Instructions.h | 5b1ce0bfd3b646e77d46018085f0add048977845 | [] | no_license | ReedySplash/VJ_FIB_2DGAME | 7201bd17be993d0a470061d670c46bef49b89cfc | 308210e224ed3672b890631eb36d827bcd0c2801 | refs/heads/master | 2020-03-31T00:06:39.975538 | 2018-11-01T16:54:32 | 2018-11-01T16:54:32 | 151,726,030 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 594 | h | #ifndef _INSTRUCTIONS_INCLUDE
#define _INSTRUCTIONS_INCLUDE
#include <glm/glm.hpp>
#include "ShaderProgram.h"
#include <vector>
#include <Windows.h>
#include <iostream>
#include <glm/gtc/matrix_transform.hpp>
#include "TexturedQuad.h"
#define SCREEN_WIDTH 640
#define SCREEN_HEIGHT 480
class Instructions
{
public:
Instructions();
~Instructions();
void init(ShaderProgram &prog);
bool update(int deltTime);
void render();
private:
bool musica;
int inst;
float currentTime;
TexturedQuad *texQuad[3];
Texture texs[2];
ShaderProgram texProgram;
glm::mat4 projection;
};
#endif
| [
"reedysplash@gmail.com"
] | reedysplash@gmail.com |
3b4407731be93c3c0563e7dde8a2325a403cd1e4 | 90f7de53d9a825c14e0e61d0ec03326ca245c51a | /Score.cpp | 03cde4a8f5e4c634308c124ca3e62c1336d7e5b7 | [] | no_license | starrykss/CPP_MatchThreePuzzleGameProject | 977524568f40757020ea628747fa7fcd62203b5c | b595488f8d99ce49f863d625888ecd29512f9a11 | refs/heads/main | 2023-02-26T18:14:09.538391 | 2021-02-02T02:56:11 | 2021-02-02T02:56:11 | 335,148,350 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 529 | cpp | #include "Score.h"
#include "Consts.h"
void observe(Score* score, const int& value)
{
score->setText(("Score :" + std::to_string(value)).c_str());
}
Score::Score(QGraphicsScene* scene, Values* values)
{
scene->addItem(this);
setX(scene->sceneRect().width() / 2 - Consts::BOARD_ITEM_SIZE * Consts::BOARD_LENGTH / 2);
setY(scene->sceneRect().height() / 2 + Consts::BOARD_ITEM_SIZE * Consts::BOARD_LENGTH / 2);
setScale(2.5);
values->score.observe([this](const int& value) {
observe(this, value);
});
} | [
"noreply@github.com"
] | noreply@github.com |
a0e55258b4fb991e854bc41ac0e98df70474fe68 | acff1e354047becf999e10154bac01dbf210cd4c | /Chapter-12-DynamicMem/ex12.23-newBlocks.cpp | a92e53542c1211317c8084060d0c35b989c99eca | [] | no_license | middleprince/CPP-Primer | e1f6440a6aa4c11d9f3b3b0b88579d2294d2ef53 | 345d99a4b3f41aab24598edc61a01b6f09f0ab61 | refs/heads/master | 2021-06-25T00:28:01.014655 | 2021-01-18T13:27:38 | 2021-01-18T13:27:38 | 189,856,807 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 601 | cpp | #include <iostream>
#include <string>
#include <memory>
using namespace std;
void catString(const string &s1, const string &s2, char *&des) {
string temp = s1 + s2;
int i = 0;
for (const auto &item : temp)
des[i++] = item;
}
int main() {
string str1{"hello"};
string str2{" you"};
char *cated = new char[128];
catString(str1, str2, cated);
cout << "concatenated string is :\n";
cout << string(cated) << endl;
catString("so", "waht", cated);
cout << "Concatenate to liter string\n";
cout << string(cated) << endl;
return 0;
}
| [
"hellangel.ah@gmail.com"
] | hellangel.ah@gmail.com |
a6b768ee90a2160cc35cb8814c1eefd0cab49436 | e5d81a798f6aca2abec731bfad34e0595611b757 | /main.cpp | c33bb0f08e5fb3d7854a6c1f1de4b2a236b87547 | [] | no_license | ryoungblom/cs_162_week3_lab3 | 3ad8651f187249120f86c03be8c786143f986945 | 2a9505b892250f37b2d2bf2fc6c8939222ddabe3 | refs/heads/master | 2021-01-02T09:46:48.611393 | 2017-08-04T03:40:31 | 2017-08-04T03:40:31 | 99,300,025 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 846 | cpp |
/*********************************************************************
** Program name: main.cpp
** Author: reuben youngblom
** Date: 1/29/17
** Description: main cpp file for Lab 3
*********************************************************************/
#include "game.hpp"
using namespace std;
int main() {
srand (time(NULL)); //seeds the random numbers needed (code taken from Stack Overflow)
char whoWon; //tracks the ultimate winner
Game war; //creates Game object for playing
whoWon = war.Game::menu(); //whoWon will hold either 1 or 2 after this
if (whoWon == '1') //if it holds 1, p1 won, so print that result
{cout << "Player One is the champion!" << endl;}
else //if not, p2 won, so print that.
{cout << "Player Two is the champion!" << endl;}
return 0;
}
| [
"rjyoungblom@gmail.com"
] | rjyoungblom@gmail.com |
dd28cb33b3314d606c8390dd3df02f4e7a71b993 | 88e24fd8bff7c00745ea4bb13ca7d4a159fc15c9 | /OBJReading/main.cpp | ac91d19bfadd5afc54a31ee9cd11c5b202f1108c | [
"MIT"
] | permissive | arturnista/glfw_study | a44ae41d0badb113fecca07492b2a4a12dd2adc8 | fa24539c88149d388aebada68e6e10b862e19829 | refs/heads/master | 2021-08-22T09:38:43.891146 | 2017-11-29T20:33:31 | 2017-11-29T20:33:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,867 | cpp | // #pragma warning(disable:4996)
#include <GL/glew.h> // include GLEW and new version of GL on Windows
#include <GLFW/glfw3.h> // GLFW helper library
#include <stdio.h>
#include <iostream>
#include <string>
#include <fstream>
#include <sstream>
#include <vector>
#include <math.h>
#include <time.h> /* time */
#include <glm/glm.hpp>
#include <glm/gtc/matrix_transform.hpp>
#include <glm/gtc/type_ptr.hpp>
#include "common.h"
#include "readFiles.h"
using namespace std;
using namespace glm;
void key_callback(GLFWwindow* window, int key, int scancode, int action, int mode);
void cursor_pos_callback(GLFWwindow* window, double xpos, double ypos);
void compileShader(GLuint shader) {
glCompileShader(shader);
int success;
char infoLog[512];
glGetShaderiv(shader, GL_COMPILE_STATUS, &success);
if (!success) {
glGetShaderInfoLog(shader, 512, NULL, infoLog);
std::cout << "ERROR::SHADER::VERTEX::COMPILATION_FAILED\n" << infoLog << std::endl;
}
}
int main() {
srand (time(NULL));
// start GL context and O/S window using the GLFW helper library
if (!glfwInit()) {
fprintf(stderr, "ERROR: could not start GLFW3\n");
return 1;
}
glEnable(GL_CULL_FACE);
const float INITIAL_SCREEN_WIDTH = 800;
const float INITIAL_SCREEN_HEIGHT = 600;
GLFWwindow* window = glfwCreateWindow(INITIAL_SCREEN_WIDTH, INITIAL_SCREEN_HEIGHT, "Hello Triangle", NULL, NULL);
if (!window) {
fprintf(stderr, "ERROR: could not open window with GLFW3\n");
glfwTerminate();
return 1;
}
glfwMakeContextCurrent(window);
glfwSetKeyCallback(window, key_callback);
glfwSetCursorPosCallback(window, cursor_pos_callback);
// start GLEW extension handler
glewExperimental = GL_TRUE;
glewInit();
// get version info
const GLubyte* renderer = glGetString(GL_RENDERER); // get renderer string
const GLubyte* version = glGetString(GL_VERSION); // version as a string
printf("Renderer: %s\n", renderer);
printf("OpenGL version supported %s\n", version);
// tell GL to only draw onto a pixel if the shape is closer to the viewer
glEnable(GL_DEPTH_TEST); // enable depth-testing
glDepthFunc(GL_LESS); // depth-testing interprets a smaller value as "closer"
int GAME_OBJECTS_COUNTER = 2;
gameObject *gameObjects = new gameObject[GAME_OBJECTS_COUNTER];
gameObjects[0] = readObjectFile("./Objects/bunny.obj", 10);
gameObjects[0].position = vec3(0, 0, 0);
gameObjects[1] = readObjectFile("./Objects/cube.obj", 1);
gameObjects[0].position = vec3(1, 1, 0);
const char* vertex_shader_program = readFile("shader.glsl");
const char* fragment_shader_program = readFile("fragment.glsl");
GLuint vertexShader = glCreateShader(GL_VERTEX_SHADER);
glShaderSource(vertexShader, 1, &vertex_shader_program, NULL);
compileShader(vertexShader);
GLuint fragmentShader = glCreateShader(GL_FRAGMENT_SHADER);
glShaderSource(fragmentShader, 1, &fragment_shader_program, NULL);
compileShader(fragmentShader);
GLuint shaderProgramme = glCreateProgram();
glAttachShader(shaderProgramme, vertexShader);
glAttachShader(shaderProgramme, fragmentShader);
glLinkProgram(shaderProgramme);
glDeleteShader(vertexShader);
glDeleteShader(fragmentShader);
float rotateSpeed = .1;
float distanceX = 0.0f;
float distanceY = 0.0f;
float distanceZ = 3.0f;
double lastMouseX = 0.0f;
double lastMouseY = 0.0f;
float mouseSens = 1.3f;
bool isFirstMouse = true;
float deltaTime = 0.0f; // Time between current frame and last frame
float lastFrame = 0.0f; // Time of last frame
vec3 cameraPos = vec3(0.0f, 0.0f, -3.0f);
vec3 cameraFront = vec3(0.0f, 0.0f, 0.0f);
vec3 cameraTarget = vec3(0.0f, 0.0f, 0.0f);
vec3 cameraDirection = normalize(cameraPos - cameraTarget);
vec3 up = vec3(0.0f, 1.0f, 0.0f);
vec3 cameraRight = normalize(cross(up, cameraDirection));
vec3 cameraUp = cross(cameraDirection, cameraRight);
float pitch = 0;
float yaw = 0;
while (!glfwWindowShouldClose(window)) {
// Updates the screen size
int width, height;
glfwGetWindowSize(window, &width, &height);
float SCREEN_WIDTH = width;
float SCREEN_HEIGHT = height;
// Clear the screen
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
glClearColor(0.2f, 0.3f, 0.3f, 1.0f);
// Compute the delta time
float currentFrame = glfwGetTime();
deltaTime = currentFrame - lastFrame;
lastFrame = currentFrame;
// Get the cursor position
double mouseX, mouseY;
glfwGetCursorPos(window, &mouseX, &mouseY);
// Compute the mouse position
// Uses the screen center as reference
float mouseOffsetX = deltaTime * mouseSens * (SCREEN_WIDTH / 2 - mouseX);
float mouseOffsetY = deltaTime * mouseSens * (SCREEN_HEIGHT / 2 - mouseY);
pitch += mouseOffsetY;
yaw += -mouseOffsetX;
if(pitch > 89.0f) pitch = 89.0f;
if(pitch < -89.0f) pitch = -89.0f;
vec3 lookingDirection = vec3(
cos(radians(pitch)) * cos(radians(yaw)),
sin(radians(pitch)),
cos(radians(pitch)) * sin(radians(yaw))
);
cameraFront = normalize(lookingDirection);
float cameraSpeed = 10.0f * deltaTime;
if (glfwGetKey(window, GLFW_KEY_W) == GLFW_PRESS) {
cameraPos += cameraSpeed * cameraFront;
} else if (glfwGetKey(window, GLFW_KEY_S) == GLFW_PRESS) {
cameraPos -= cameraSpeed * cameraFront;
}
if (glfwGetKey(window, GLFW_KEY_A) == GLFW_PRESS) {
cameraPos -= normalize(cross(cameraFront, cameraUp)) * cameraSpeed;
} else if (glfwGetKey(window, GLFW_KEY_D) == GLFW_PRESS) {
cameraPos += normalize(cross(cameraFront, cameraUp)) * cameraSpeed;
}
/*
Bunny movement, rotation and scale
*/
float bunnySpeed = 5.0f * deltaTime;
if (glfwGetKey(window, GLFW_KEY_J) == GLFW_PRESS) {
gameObjects[0].position.z += bunnySpeed;
} else if (glfwGetKey(window, GLFW_KEY_L) == GLFW_PRESS) {
gameObjects[0].position.z -= bunnySpeed;
}
if (glfwGetKey(window, GLFW_KEY_I) == GLFW_PRESS) {
gameObjects[0].position.x -= bunnySpeed;
} else if (glfwGetKey(window, GLFW_KEY_K) == GLFW_PRESS) {
gameObjects[0].position.x += bunnySpeed;
}
if (glfwGetKey(window, GLFW_KEY_U) == GLFW_PRESS) {
gameObjects[0].position.y += bunnySpeed;
} else if (glfwGetKey(window, GLFW_KEY_O) == GLFW_PRESS) {
gameObjects[0].position.y -= bunnySpeed;
}
if (glfwGetKey(window, GLFW_KEY_T) == GLFW_PRESS) {
gameObjects[0].angle_front -= 1.0f * deltaTime;
} else if (glfwGetKey(window, GLFW_KEY_Y) == GLFW_PRESS) {
gameObjects[0].angle_front += 1.0f * deltaTime;
}
if (glfwGetKey(window, GLFW_KEY_G) == GLFW_PRESS) {
gameObjects[0].angle_side -= 1.0f * deltaTime;
} else if (glfwGetKey(window, GLFW_KEY_H) == GLFW_PRESS) {
gameObjects[0].angle_side += 1.0f * deltaTime;
}
if (glfwGetKey(window, GLFW_KEY_B) == GLFW_PRESS) {
gameObjects[0].angle_back -= 1.0f * deltaTime;
} else if (glfwGetKey(window, GLFW_KEY_N) == GLFW_PRESS) {
gameObjects[0].angle_back += 1.0f * deltaTime;
}
if (glfwGetKey(window, GLFW_KEY_COMMA) == GLFW_PRESS) {
gameObjects[0].size -= 5.0f * deltaTime;
if(gameObjects[0].size < 0) gameObjects[0].size = 0;
} else if (glfwGetKey(window, GLFW_KEY_PERIOD) == GLFW_PRESS) {
gameObjects[0].size += 5.0f * deltaTime;
}
// Create and compute the model view projection Camera's components
mat4 model;
mat4 view;
mat4 projection;
model = rotate(model, radians(-55.0f), vec3(1.0f, 0.0f, 0.0f));
view = lookAt(cameraPos, cameraPos + cameraFront, cameraUp);
projection = perspective(radians(45.0f), SCREEN_WIDTH / SCREEN_HEIGHT, 0.1f, 100.0f);
for (size_t i = 0; i < GAME_OBJECTS_COUNTER; i++) {
glUseProgram(shaderProgramme);
// Apply the model, view and projection on the shader created
int modelLoc = glGetUniformLocation(shaderProgramme, "model");
glUniformMatrix4fv(modelLoc, 1, GL_FALSE, value_ptr(model));
int viewLoc = glGetUniformLocation(shaderProgramme, "view");
glUniformMatrix4fv(viewLoc, 1, GL_FALSE, value_ptr(view));
int projectionLoc = glGetUniformLocation(shaderProgramme, "projection");
glUniformMatrix4fv(projectionLoc, 1, GL_FALSE, value_ptr(projection));
// Compute the transform for each object
glm::mat4 transform;
transform = translate(transform, gameObjects[i].position);
transform = rotate(transform, gameObjects[i].angle_front, vec3(0.0f, 0.0f, 1.0f));
transform = rotate(transform, gameObjects[i].angle_side, vec3(0.0f, 1.0f, 0.0f));
transform = rotate(transform, gameObjects[i].angle_back, vec3(1.0f, 0.0f, 0.0f));
transform = scale(transform, vec3(gameObjects[i].size, gameObjects[i].size, gameObjects[i].size));
// Apply the transform object
GLint transformLoc = glGetUniformLocation(shaderProgramme, "transform");
glUniformMatrix4fv(transformLoc, 1, GL_FALSE, value_ptr(transform));
glBindVertexArray(gameObjects[i].VAO);
glDrawElements(GL_TRIANGLES, gameObjects[i].vertexCounter, GL_UNSIGNED_INT, 0);
}
// Reset the vertex bind
glBindVertexArray(0);
// update other events like input handling
glfwPollEvents();
// put the stuff we've been drawing onto the display
glfwSwapBuffers(window);
// Set the cursor to the middle of the screen
glfwSetCursorPos(window, SCREEN_WIDTH / 2, SCREEN_HEIGHT / 2);
}
// close GL context and any other GLFW resources
glfwTerminate();
return 0;
}
// Is called whenever a key is pressed/released via GLFW
void key_callback(GLFWwindow* window, int key, int scancode, int action, int mode) {
if ((key == GLFW_KEY_ESCAPE || key == GLFW_KEY_Q) && action == GLFW_PRESS) {
glfwSetWindowShouldClose(window, GL_TRUE);
}
}
void cursor_pos_callback(GLFWwindow* window, double xpos, double ypos) {
// cout << xpos << '\n';
}
| [
"arturnista@gmail.com"
] | arturnista@gmail.com |
64597fcceed7327da203faeb9c393c5935b1b0c8 | 8f93c4f7602d98619101b685891d01c756c54d15 | /FlameVU/src/easyar/armanager.cpp | 1ca3eb0f29c89624e0972e7f604de5a5b80412eb | [] | no_license | liang-cs/FlameVU | bd6691c3018affc8266e7e6ff14176fe778fe206 | b6245e785741f8ad57b77933db256a42825cf1cd | refs/heads/master | 2021-01-19T06:50:12.837638 | 2016-08-17T18:26:50 | 2016-08-17T18:26:50 | 65,559,529 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,016 | cpp | #include "armanager.h"
#include <algorithm>
#include <iostream>
class HelloCallBack : public EasyAR::TargetLoadCallBack
{
public:
virtual ~HelloCallBack() {};
virtual void operator() (const EasyAR::Target target, const bool status)
{
//LOGI("load target: %s (%d) %s\n", target.name(), target.id(), status ? "success" : "fail");
std::cout << "load target: " << target.name() << " " << target.id() << " " << (status ? "success" : "fail") << std::endl;
delete this;
}
};
ARManager::ARManager()
{
portrait_ = false;
}
ARManager::~ARManager()
{
clear();
}
void ARManager::setup()
{
EasyAR::initialize(kKey.c_str());
}
bool ARManager::initCamera()
{
bool status = true;
status &= camera_.open();
camera_.setSize(EasyAR::Vec2I(640, 480));
status &= tracker_.attachCamera(camera_);
status &= augmenter_.attachCamera(camera_);
return status;
}
void ARManager::loadFromImage(const std::string& path)
{
EasyAR::ImageTarget target;
std::string jstr = "{\n"
" \"images\" :\n"
" [\n"
" {\n"
" \"image\" : \"" + path + "\",\n"
" \"name\" : \"" + path.substr(0, path.find_first_of(".")) + "\"\n"
" }\n"
" ]\n"
"}";
target.load(jstr.c_str(), EasyAR::kStorageAssets | EasyAR::kStorageJson);
tracker_.loadTarget(target, new HelloCallBack());
}
bool ARManager::loadFromJsonFile(const std::string& path, const std::string& targetname)
{
EasyAR::ImageTarget target;
bool status = target.load(path.c_str(), EasyAR::kStorageApp, targetname.c_str());
tracker_.loadTarget(target, new HelloCallBack());
return status;
}
bool ARManager::start()
{
bool status = true;
status &= camera_.start();
camera_.setFocusMode(EasyAR::CameraDevice::kFocusModeContinousauto);
status &= tracker_.start();
return status;
}
bool ARManager::stop()
{
bool status = true;
status &= tracker_.stop();
status &= camera_.stop();
return status;
}
bool ARManager::clear()
{
bool status = true;
status &= augmenter_.detachCamera(camera_);
status &= stop();
status &= camera_.close();
camera_.clear();
tracker_.clear();
augmenter_.clear();
return status;
}
EasyAR::Vec2I ARManager::imageSize() const
{
return camera_.size();
}
//void ofxEasyAR::resizeGL(int width, int height)
//{
// EasyAR::Vec2I size = EasyAR::Vec2I(1, 1);
// if (camera_.isOpened())
// size = camera_.size();
// if (size[0] == 0 || size[1] == 0)
// return;
// if (portrait_)
// std::swap(size[0], size[1]);
// float scaleRatio = std::max((float)width / (float)size[0], (float)height / (float)size[1]);
// EasyAR::Vec2I viewport_size = EasyAR::Vec2I((int)(size[0] * scaleRatio), (int)(size[1] * scaleRatio));
// augmenter_.setViewPort(EasyAR::Vec4I(0, height - viewport_size[1], viewport_size[0], viewport_size[1]));
//}
//
//void ofxEasyAR::initGL()
//{
//
//}
//
//void ofxEasyAR::render()
//{
//
//}
//
void ARManager::setPortrait(bool portrait)
{
portrait_ = portrait;
}
| [
"Liang Shen"
] | Liang Shen |
afae23b0af331c4c0a3e09ea0d4ae6e62dfb5b60 | cf9c3b6500b700488e16950f8a977f1a8c1e2496 | /InformationScripting/src/python_bindings/generated/OOModel__SuperExpression.cpp | 5b9dcc8a8a9bae3401b45e693fa898685bc93839 | [
"BSD-3-Clause"
] | permissive | dimitar-asenov/Envision | e45d2fcc8e536619299d4d9509daa23d2cd616a3 | 54b0a19dbef50163f2ee669e9584b854789f8213 | refs/heads/development | 2022-03-01T15:13:52.992999 | 2022-02-19T23:50:49 | 2022-02-19T23:50:49 | 2,650,576 | 88 | 17 | null | 2016-09-01T07:56:36 | 2011-10-26T12:03:58 | C++ | UTF-8 | C++ | false | false | 8,998 | cpp | /***********************************************************************************************************************
**
** Copyright (c) 2011, 2015 ETH Zurich
** All rights reserved.
**
** Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
** following conditions are met:
**
** * Redistributions of source code must retain the above copyright notice, this list of conditions and the following
** disclaimer.
** * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
** following disclaimer in the documentation and/or other materials provided with the distribution.
** * Neither the name of the ETH Zurich nor the names of its contributors may be used to endorse or promote products
** derived from this software without specific prior written permission.
**
**
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
** INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
** DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
** SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
** WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
**
***********************************************************************************************************************/
// GENERATED FILE: CHANGES WILL BE LOST!
#include "../AstApi.h"
#include "OOModel/src/expressions/Expression.h"
#include "OOModel/src/expressions/CommaExpression.h"
#include "OOModel/src/expressions/UnaryOperation.h"
#include "OOModel/src/expressions/MetaCallExpression.h"
#include "OOModel/src/expressions/UnfinishedOperator.h"
#include "OOModel/src/expressions/NullLiteral.h"
#include "OOModel/src/expressions/FloatLiteral.h"
#include "OOModel/src/expressions/TypeTraitExpression.h"
#include "OOModel/src/expressions/SuperExpression.h"
#include "OOModel/src/expressions/ConditionalExpression.h"
#include "OOModel/src/expressions/TypeNameOperator.h"
#include "OOModel/src/expressions/ThisExpression.h"
#include "OOModel/src/expressions/BinaryOperation.h"
#include "OOModel/src/expressions/EmptyExpression.h"
#include "OOModel/src/expressions/MethodCallExpression.h"
#include "OOModel/src/expressions/DeleteExpression.h"
#include "OOModel/src/expressions/LambdaExpression.h"
#include "OOModel/src/expressions/IntegerLiteral.h"
#include "OOModel/src/expressions/VariableDeclarationExpression.h"
#include "OOModel/src/expressions/StringLiteral.h"
#include "OOModel/src/expressions/InstanceOfExpression.h"
#include "OOModel/src/expressions/BooleanLiteral.h"
#include "OOModel/src/expressions/types/FunctionTypeExpression.h"
#include "OOModel/src/expressions/types/TypeQualifierExpression.h"
#include "OOModel/src/expressions/types/TypeExpression.h"
#include "OOModel/src/expressions/types/ArrayTypeExpression.h"
#include "OOModel/src/expressions/types/AutoTypeExpression.h"
#include "OOModel/src/expressions/types/ReferenceTypeExpression.h"
#include "OOModel/src/expressions/types/PrimitiveTypeExpression.h"
#include "OOModel/src/expressions/types/ClassTypeExpression.h"
#include "OOModel/src/expressions/types/PointerTypeExpression.h"
#include "OOModel/src/expressions/ReferenceExpression.h"
#include "OOModel/src/expressions/ArrayInitializer.h"
#include "OOModel/src/expressions/ThrowExpression.h"
#include "OOModel/src/expressions/ErrorExpression.h"
#include "OOModel/src/expressions/AssignmentExpression.h"
#include "OOModel/src/expressions/GlobalScopeExpression.h"
#include "OOModel/src/expressions/CharacterLiteral.h"
#include "OOModel/src/expressions/CastExpression.h"
#include "OOModel/src/expressions/NewExpression.h"
#include "OOModel/src/declarations/Project.h"
#include "OOModel/src/declarations/ExplicitTemplateInstantiation.h"
#include "OOModel/src/declarations/MetaBinding.h"
#include "OOModel/src/declarations/NameImport.h"
#include "OOModel/src/declarations/Field.h"
#include "OOModel/src/declarations/MetaCallMapping.h"
#include "OOModel/src/declarations/Declaration.h"
#include "OOModel/src/declarations/Method.h"
#include "OOModel/src/declarations/VariableDeclaration.h"
#include "OOModel/src/declarations/Module.h"
#include "OOModel/src/declarations/Class.h"
#include "OOModel/src/declarations/MetaDefinition.h"
#include "OOModel/src/declarations/TypeAlias.h"
#include "OOModel/src/elements/MemberInitializer.h"
#include "OOModel/src/elements/Enumerator.h"
#include "OOModel/src/elements/Modifier.h"
#include "OOModel/src/elements/OOReference.h"
#include "OOModel/src/elements/CatchClause.h"
#include "OOModel/src/elements/FormalMetaArgument.h"
#include "OOModel/src/elements/FormalResult.h"
#include "OOModel/src/elements/CommentStatementItem.h"
#include "OOModel/src/elements/StatementItemList.h"
#include "OOModel/src/elements/FormalArgument.h"
#include "OOModel/src/elements/StatementItem.h"
#include "OOModel/src/elements/FormalTypeArgument.h"
#include "OOModel/src/statements/SynchronizedStatement.h"
#include "OOModel/src/statements/IfStatement.h"
#include "OOModel/src/statements/ReturnStatement.h"
#include "OOModel/src/statements/SwitchStatement.h"
#include "OOModel/src/statements/CaseStatement.h"
#include "OOModel/src/statements/BreakStatement.h"
#include "OOModel/src/statements/TryCatchFinallyStatement.h"
#include "OOModel/src/statements/DeclarationStatement.h"
#include "OOModel/src/statements/ForEachStatement.h"
#include "OOModel/src/statements/AssertStatement.h"
#include "OOModel/src/statements/Statement.h"
#include "OOModel/src/statements/ExpressionStatement.h"
#include "OOModel/src/statements/ContinueStatement.h"
#include "OOModel/src/statements/LoopStatement.h"
#include "OOModel/src/statements/Block.h"
#include "ModelBase/src/nodes/List.h"
#include "ModelBase/src/nodes/Boolean.h"
#include "ModelBase/src/nodes/Character.h"
#include "ModelBase/src/nodes/NameText.h"
#include "ModelBase/src/nodes/Float.h"
#include "ModelBase/src/nodes/Text.h"
#include "ModelBase/src/nodes/Reference.h"
#include "ModelBase/src/nodes/UsedLibrary.h"
#include "ModelBase/src/nodes/composite/CompositeNode.h"
#include "ModelBase/src/nodes/Integer.h"
#include "ModelBase/src/nodes/Node.h"
#include "ModelBase/src/persistence/ClipboardStore.h"
#include "ModelBase/src/commands/UndoCommand.h"
namespace InformationScripting {
using namespace boost::python;
void initClassSuperExpression() {
bool (OOModel::SuperExpression::*SuperExpression_isSubtypeOf1)(
const QString&) const = &OOModel::SuperExpression::isSubtypeOf;
bool (OOModel::SuperExpression::*SuperExpression_isSubtypeOf2)(int) const = &OOModel::SuperExpression::isSubtypeOf;
Model::CompositeIndex (*SuperExpression_registerNewAttribute1)(
const Model::Attribute&) = &OOModel::SuperExpression::registerNewAttribute;
Model::CompositeIndex (*SuperExpression_registerNewAttribute2)(
const QString&, const QString&, bool, bool, bool) = &OOModel::SuperExpression::registerNewAttribute;
auto aClass = class_<OOModel::SuperExpression, bases<OOModel::Expression>>("SuperExpression");
aClass.def("typeName", make_function((const QString& (
OOModel::SuperExpression::*)())&OOModel::SuperExpression::typeName, return_value_policy<copy_const_reference>()));
aClass.def("typeId", &OOModel::SuperExpression::typeId);
aClass.def("hierarchyTypeIds", &OOModel::SuperExpression::hierarchyTypeIds);
aClass.def("typeNameStatic", make_function(
&OOModel::SuperExpression::typeNameStatic, return_value_policy<copy_const_reference>()));
aClass.staticmethod("typeNameStatic");
aClass.def("typeIdStatic", &OOModel::SuperExpression::typeIdStatic);
aClass.staticmethod("typeIdStatic");
aClass.def("initType", &OOModel::SuperExpression::initType);
aClass.staticmethod("initType");
aClass.def("clone", make_function(&OOModel::SuperExpression::clone, return_internal_reference<>()));
aClass.def("createDefaultInstance", make_function(
&OOModel::SuperExpression::createDefaultInstance, return_internal_reference<>()));
aClass.staticmethod("createDefaultInstance");
aClass.def("getMetaData", make_function(&OOModel::SuperExpression::getMetaData, return_internal_reference<>()));
aClass.staticmethod("getMetaData");
aClass.def("type", &OOModel::SuperExpression::type);
aClass.def("isSubtypeOf", SuperExpression_isSubtypeOf1);
aClass.def("isSubtypeOf", SuperExpression_isSubtypeOf2);
aClass.def("registerNewAttribute", SuperExpression_registerNewAttribute1);
aClass.def("registerNewAttribute", SuperExpression_registerNewAttribute2);
}
} /* namespace InformationScripting */
| [
"dimitar.asenov@inf.ethz.ch"
] | dimitar.asenov@inf.ethz.ch |
76abfd6d6b1a23b0e21444034821146cd7626600 | 8cf32b4cbca07bd39341e1d0a29428e420b492a6 | /libraries/fc/include/fc/variant_object.hpp | 3136ddd605ba8880a7d3471e99b7b8a0766cef96 | [
"MIT"
] | permissive | cubetrain/CubeTrain | e1cd516d5dbca77082258948d3c7fc70ebd50fdc | b930a3e88e941225c2c54219267f743c790e388f | refs/heads/master | 2020-04-11T23:00:50.245442 | 2018-12-17T16:07:16 | 2018-12-17T16:07:16 | 156,970,178 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,572 | hpp | #pragma once
#include <fc/variant.hpp>
#include <fc/shared_ptr.hpp>
#include <fc/unique_ptr.hpp>
namespace fc
{
class mutable_variant_object;
/**
* @ingroup Serializable
*
* @brief An order-perserving dictionary of variant's.
*
* Keys are kept in the order they are inserted.
* This dictionary implements copy-on-write
*
* @note This class is not optimized for random-access on large
* sets of key-value pairs.
*/
class variant_object
{
public:
/** @brief a key/value pair */
class entry
{
public:
entry();
entry( string k, variant v );
entry( entry&& e );
entry( const entry& e);
entry& operator=(const entry&);
entry& operator=(entry&&);
const string& key()const;
const variant& value()const;
void set( variant v );
variant& value();
friend bool operator == (const entry& a, const entry& b) {
return a._key == b._key && a._value == b._value;
}
friend bool operator != (const entry& a, const entry& b) {
return !(a == b);
}
private:
string _key;
variant _value;
};
typedef std::vector< entry >::const_iterator iterator;
/**
* @name Immutable Interface
*
* Calling these methods will not result in copies of the
* underlying type.
*/
///@{
iterator begin()const;
iterator end()const;
iterator find( const string& key )const;
iterator find( const char* key )const;
const variant& operator[]( const string& key )const;
const variant& operator[]( const char* key )const;
size_t size()const;
bool contains( const char* key ) const { return find(key) != end(); }
///@}
variant_object();
/** initializes the first key/value pair in the object */
variant_object( string key, variant val );
template<typename T>
variant_object( string key, T&& val )
:_key_value( std::make_shared<std::vector<entry> >() )
{
*this = variant_object( std::move(key), variant(forward<T>(val)) );
}
variant_object( const variant_object& );
variant_object( variant_object&& );
variant_object( const mutable_variant_object& );
variant_object( mutable_variant_object&& );
variant_object& operator=( variant_object&& );
variant_object& operator=( const variant_object& );
variant_object& operator=( mutable_variant_object&& );
variant_object& operator=( const mutable_variant_object& );
private:
std::shared_ptr< std::vector< entry > > _key_value;
friend class mutable_variant_object;
};
/** @ingroup Serializable */
void to_variant( const variant_object& var, variant& vo );
/** @ingroup Serializable */
void from_variant( const variant& var, variant_object& vo );
/**
* @ingroup Serializable
*
* @brief An order-perserving dictionary of variant's.
*
* Keys are kept in the order they are inserted.
* This dictionary implements copy-on-write
*
* @note This class is not optimized for random-access on large
* sets of key-value pairs.
*/
class mutable_variant_object
{
public:
/** @brief a key/value pair */
typedef variant_object::entry entry;
typedef std::vector< entry >::iterator iterator;
typedef std::vector< entry >::const_iterator const_iterator;
/**
* @name Immutable Interface
*
* Calling these methods will not result in copies of the
* underlying type.
*/
///@{
iterator begin()const;
iterator end()const;
iterator find( const string& key )const;
iterator find( const char* key )const;
const variant& operator[]( const string& key )const;
const variant& operator[]( const char* key )const;
size_t size()const;
///@}
variant& operator[]( const string& key );
variant& operator[]( const char* key );
/**
* @name mutable Interface
*
* Calling these methods will result in a copy of the underlying type
* being created if there is more than one reference to this object.
*/
///@{
void reserve( size_t s);
iterator begin();
iterator end();
void erase( const string& key );
/**
*
* @return end() if key is not found
*/
iterator find( const string& key );
iterator find( const char* key );
/** replaces the value at \a key with \a var or insert's \a key if not found */
mutable_variant_object& set( string key, variant var );
/** Appends \a key and \a var without checking for duplicates, designed to
* simplify construction of dictionaries using (key,val)(key2,val2) syntax
*/
/**
* Convenience method to simplify the manual construction of
* variant_object's
*
* Instead of:
* <code>mutable_variant_object("c",c).set("a",a).set("b",b);</code>
*
* You can use:
* <code>mutable_variant_object( "c", c )( "b", b)( "c",c )</code>
*
* @return *this;
*/
mutable_variant_object& operator()( string key, variant var );
template<typename T>
mutable_variant_object& operator()( string key, T&& var )
{
set(std::move(key), variant( fc::forward<T>(var) ) );
return *this;
}
/**
* Copy a variant_object into this mutable_variant_object.
*/
mutable_variant_object& operator()( const variant_object& vo );
/**
* Copy another mutable_variant_object into this mutable_variant_object.
*/
mutable_variant_object& operator()( const mutable_variant_object& mvo );
///@}
template<typename T>
explicit mutable_variant_object( T&& v )
:_key_value( new std::vector<entry>() )
{
*this = variant(fc::forward<T>(v)).get_object();
}
mutable_variant_object();
/** initializes the first key/value pair in the object */
mutable_variant_object( string key, variant val );
template<typename T>
mutable_variant_object( string key, T&& val )
:_key_value( new std::vector<entry>() )
{
set( std::move(key), variant(forward<T>(val)) );
}
mutable_variant_object( mutable_variant_object&& );
mutable_variant_object( const mutable_variant_object& );
mutable_variant_object( const variant_object& );
mutable_variant_object& operator=( mutable_variant_object&& );
mutable_variant_object& operator=( const mutable_variant_object& );
mutable_variant_object& operator=( const variant_object& );
private:
std::unique_ptr< std::vector< entry > > _key_value;
friend class variant_object;
};
/** @ingroup Serializable */
void to_variant( const mutable_variant_object& var, variant& vo );
/** @ingroup Serializable */
void from_variant( const variant& var, mutable_variant_object& vo );
} // namespace fc
| [
"1848@shanchain.com"
] | 1848@shanchain.com |
b2d6401000fb376b17074f057d1cbc5af548141b | 669789a63bd5c01df2e68efa7931e74eb52c1742 | /DDZ_AI/HandleTwoStepPlay.cpp | 745f7fb35a0fe2abc5ca610c66e5b3071c4b5c81 | [] | no_license | qq717337/ddzai | d47d4ab3c280a3832abbfd31cf26f8766b812c22 | 9e59e23a6e967ae3a91fb5d234d2bc782ea24eec | refs/heads/master | 2020-03-21T02:26:56.805637 | 2018-03-26T13:39:47 | 2018-03-26T13:39:47 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,056 | cpp | #include "stdafx.h"
#include "HandleTwoStepPlay.h"
#include "SplitStrategy.h"
#include "PlayStrategyBase.h"
HandleTwoStepPlay::~HandleTwoStepPlay()
{
}
bool HandleTwoStepPlay::Handle(PlayStrategyBase* playStrategy, SplitStrategy * splitStrategy, CardStyle & result)
{
auto& minSplit = splitStrategy->MinStepSplit();
CardStyle lastShot;
//如果自己最后一步刚好接过此牌,那么就可以胜利
if (minSplit.GetLastShotCardStyle(&lastShot))
{
auto& lastPlayCardStyle = playStrategy->GetLastCardStyle();
if (lastShot.Compare(lastPlayCardStyle) > 0) {
result = lastShot;
return true;
}
}
if (minSplit.MinStepCount() == 2) {
auto& booms = minSplit.GetBoom();
if (booms.size() == 2) {
result = CardStyle::BoomStyle(booms[0]);
return true;
}
auto allCardStyle = minSplit.GetAllSplitStyle();
for (auto & style : allCardStyle) {
if (!playStrategy->OtherCanTake(style)) {//如果找到了其他人要不起的牌,则优先出别人要不起的
result = style;
return true;
}
}
}
return false;
}
| [
"625673575@qq.com"
] | 625673575@qq.com |
72cb9d4beb1041f871e3bb7d91e9bc65b25bcdec | 1a9379ee4ca2c5c85ee0d9ba247edd0ea1ca06f0 | /Leetcode/Arrays/minimum-size-subarray-sum.cpp | 98dd7cedb442a37c20cc42e83dfe96e42da8f6ba | [] | no_license | prajwal714/DSA-Coding-Practice | 29c257c4ec2053743bec3dddcfdb46639b5b05cc | fc8ccaa3feedf62102736feb39eb2cc79b5c0a5b | refs/heads/master | 2023-09-05T01:28:19.940625 | 2021-10-01T09:53:07 | 2021-10-01T09:53:07 | 203,861,890 | 14 | 5 | null | 2021-10-01T09:53:08 | 2019-08-22T19:44:16 | C++ | UTF-8 | C++ | false | false | 677 | cpp | class Solution {
public:
int minSubArrayLen(int s, vector<int>& nums) {
if(nums.size()==0)
return 0;
int left=0,right=0;
int sum=nums[0];
int res=INT_MAX;
while(left<=right)
{
while(sum<s && right+1<nums.size())
{
right++;
sum+=nums[right];
}
if(sum>=s)
{
res=min(res, right-left+1);
}
sum-=nums[left];
left++;
}
if(res==INT_MAX)
return 0;
return res;
}
};
//complexity: O(n) | [
"prajwal714singh@gmail.com"
] | prajwal714singh@gmail.com |
01d97e4abcc031ee7de05fc160cda19647b2e7fb | e6e85e9f5d868d8df8816d9708ce565e2dc4c0d5 | /EscapeRoom/Source/EscapeRoom/PositionReport.h | a97ccecba26ac6b118c1676b0961d0621fb92e38 | [] | no_license | douglasmonsky/EscapeRoom | febb44d739d41b0a78280390e838465d2afa0ee5 | e12f36d0ab860383c5bc2fcfbe2c31efe4c69c96 | refs/heads/master | 2021-07-06T15:29:47.236608 | 2017-09-30T06:30:25 | 2017-09-30T06:30:25 | 105,085,880 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 678 | h | // Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "Components/ActorComponent.h"
#include "PositionReport.generated.h"
UCLASS( ClassGroup=(Custom), meta=(BlueprintSpawnableComponent) )
class ESCAPEROOM_API UPositionReport : public UActorComponent
{
GENERATED_BODY()
public:
// Sets default values for this component's properties
UPositionReport();
protected:
// Called when the game starts
virtual void BeginPlay() override;
public:
// Called every frame
virtual void TickComponent(float DeltaTime, ELevelTick TickType, FActorComponentTickFunction* ThisTickFunction) override;
};
| [
"douglas.monsky@gmail.com"
] | douglas.monsky@gmail.com |
1076ef8dd37c790ecc859ce40c08221fa7cc6cca | 9e9c91041684a6deb83197e2fbe2b62112537134 | /Stack/duplicatesEncounter.cpp | 79937b7114e9565601182ce9d9153418258f3f7b | [] | no_license | kumarrohan2804/LeetCode | d763cfa46924c6c4b7f03b7869a68da742e06618 | 23f8432564ba608825fa538b911cd206753132ab | refs/heads/master | 2023-07-14T03:20:02.636146 | 2021-08-14T01:43:18 | 2021-08-14T01:43:18 | 386,469,648 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,203 | cpp | #include<bits/stdc++.h>
using namespace std;
#define REP_F(i,a,b) for (int i = a; i < b; ++i)
#define REP_B(i,b,a) for (int i = b; i > a; --i)
#define b begin
#define e end
#define ITER(it,v) for(auto it=v.b(); it!=v.e(); it++)
#define PB push_back
#define el endl
#define ll long long int
#define vi vector<int>
#define vll vector<ll>
#define vvi vector < vi >
#define pii pair<int,int>
#define mod 1000000007
#define f first
#define s second
#define MP make_pair
void duplicate(string &s) {
stack<char> stack;
string temp;
char ch;
int n = s.size();
stack.push(s[0]);
for (int i = 1; i < n; i++) {
ch = '0';
while (!stack.empty() && s[i] == stack.top()) {
ch = stack.top();
stack.pop();
}
if (ch != s[i])stack.push(s[i]);
}
while (!stack.empty()) {
temp = stack.top() + temp;
stack.pop();
}
int n2 = temp.size();
if (n2 > 0) {
for (int i = 0; i < n2; i++) {
cout << temp[i];
}
} else {
cout << "Empty String"
}
return;
}
int main()
{
#ifndef ONLINE_JUDGE
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#endif
// code here
// int T;
// cin >> T;
// while (T--) {
string s;
cin >> s;
duplicate(s);
return 0;
} | [
"kumarrohan2804@gmail.com"
] | kumarrohan2804@gmail.com |
3f72833e1427e4bd370272a6aa4489be3eba18cf | a810e33d3682238f0a613ad230125b6569c86d2f | /Source/GDENG1_Courseware/OpenDoor.h | a3db9ba6c2a7b6f7a5fd2b99094976ee3964b0b4 | [] | no_license | NeilDG/GDENG1_Courseware | 13fe8ef181eb50f810f936325e3a1461f6a317bb | 7d58f89f0e190db8191152a6000c2c454ba605ce | refs/heads/master | 2023-01-09T16:19:36.288382 | 2022-11-29T02:23:21 | 2022-11-29T02:23:21 | 248,450,828 | 0 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 1,109 | h | // Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "Components/ActorComponent.h"
#include "Engine/TriggerVolume.h"
#include "OpenDoor.generated.h"
UCLASS( ClassGroup=(Custom), meta=(BlueprintSpawnableComponent) )
class GDENG1_COURSEWARE_API UOpenDoor : public UActorComponent
{
GENERATED_BODY()
public:
// Sets default values for this component's properties
UOpenDoor();
protected:
// Called when the game starts
virtual void BeginPlay() override;
public:
// Called every frame
virtual void TickComponent(float DeltaTime, ELevelTick TickType, FActorComponentTickFunction* ThisTickFunction) override;
private:
UPROPERTY(EditAnywhere) float openingYaw = 90.0f;
UPROPERTY(EditAnywhere) float closingYaw = 0.0f;
UPROPERTY(EditAnywhere) ATriggerVolume* pressurePlate;
//UPROPERTY(EditAnywhere) AActor* actorOpener;
float ticks = 0.0f;
float initialYaw;
float currentYaw;
float totalMass = 180.0f;
enum DoorState { OPEN = 0, CLOSED = 1 };
DoorState doorState = OPEN;
float GetPressurePlateTotalMass() const;
};
| [
"fm.atropos@gmail.com"
] | fm.atropos@gmail.com |
cbb594f04223ef11ef0aa500eca37607278c2209 | 3f7028cc89a79582266a19acbde0d6b066a568de | /test/extensions/config/validators/minimum_clusters/config_test.cc | adc2c2ef7f967257351dfce87cddcfe2be150f57 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | envoyproxy/envoy | 882d3c7f316bf755889fb628bee514bb2f6f66f0 | 72f129d273fa32f49581db3abbaf4b62e3e3703c | refs/heads/main | 2023-08-31T09:20:01.278000 | 2023-08-31T08:58:36 | 2023-08-31T08:58:36 | 65,214,191 | 21,404 | 4,756 | Apache-2.0 | 2023-09-14T21:56:37 | 2016-08-08T15:07:24 | C++ | UTF-8 | C++ | false | false | 1,893 | cc | #include "envoy/extensions/config/validators/minimum_clusters/v3/minimum_clusters.pb.h"
#include "envoy/extensions/config/validators/minimum_clusters/v3/minimum_clusters.pb.validate.h"
#include "envoy/registry/registry.h"
#include "source/common/protobuf/message_validator_impl.h"
#include "source/extensions/config/validators/minimum_clusters/config.h"
#include "gtest/gtest.h"
namespace Envoy {
namespace Extensions {
namespace Config {
namespace Validators {
namespace {
TEST(MinimumClustersValidatorFactoryTest, CreateValidator) {
auto factory = Registry::FactoryRegistry<Envoy::Config::ConfigValidatorFactory>::getFactory(
"envoy.config.validators.minimum_clusters");
EXPECT_NE(factory, nullptr);
envoy::extensions::config::validators::minimum_clusters::v3::MinimumClustersValidator config;
config.set_min_clusters_num(5);
ProtobufWkt::Any typed_config;
typed_config.PackFrom(config);
auto validator =
factory->createConfigValidator(typed_config, ProtobufMessage::getStrictValidationVisitor());
EXPECT_NE(validator, nullptr);
}
TEST(MinimumClustersValidatorFactoryTest, CreateEmptyValidator) {
auto factory = Registry::FactoryRegistry<Envoy::Config::ConfigValidatorFactory>::getFactory(
"envoy.config.validators.minimum_clusters");
EXPECT_NE(factory, nullptr);
auto empty_proto = factory->createEmptyConfigProto();
auto config = *dynamic_cast<
envoy::extensions::config::validators::minimum_clusters::v3::MinimumClustersValidator*>(
empty_proto.get());
EXPECT_EQ(0, config.min_clusters_num());
ProtobufWkt::Any typed_config;
typed_config.PackFrom(config);
auto validator =
factory->createConfigValidator(typed_config, ProtobufMessage::getStrictValidationVisitor());
EXPECT_NE(validator, nullptr);
}
} // namespace
} // namespace Validators
} // namespace Config
} // namespace Extensions
} // namespace Envoy
| [
"noreply@github.com"
] | noreply@github.com |
a6cc958694e84294eef64f98b25fdc4dd37b34fe | 4651eefdc31af8a946c036be2204e01a683b47bb | /개념콕콕/6-7/6-7/소스.cpp | 891e81d5a50c33b6ec4ed9ebef5ed5a764686055 | [] | no_license | cmilk18/cstudy | 3bcb29c046331e6fe4abc8ec3b4ec43423b8de2f | 6f0bc79e167fa0bd9d2e964355281c4bd987a3e0 | refs/heads/master | 2020-04-09T12:05:05.730901 | 2018-12-04T10:08:36 | 2018-12-04T10:08:36 | 160,335,087 | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 259 | cpp | /*20181013 °ÁØÈñ*/
#include<stdio.h>
void printcount(void);
int main(void)
{
int count = 0;
printf("main: count = %d\n", count);
printcount();
return 0;
}
void printcount(void)
{
int count = 100;
printf("printcount: count = %d\n", count);
} | [
"junhee1883@naver.com"
] | junhee1883@naver.com |
d07ce1b300150bb1469fa822fcb52ae9f3f239fe | 169e75df163bb311198562d286d37aad14677101 | /tensorflow/tensorflow/core/kernels/qr_op_double.cc | 51885eb3557f65fac3081af56f5495c6330d6ae6 | [
"Apache-2.0"
] | permissive | zylo117/tensorflow-gpu-macosx | e553d17b769c67dfda0440df8ac1314405e4a10a | 181bc2b37aa8a3eeb11a942d8f330b04abc804b3 | refs/heads/master | 2022-10-19T21:35:18.148271 | 2020-10-15T02:33:20 | 2020-10-15T02:33:20 | 134,240,831 | 116 | 26 | Apache-2.0 | 2022-10-04T23:36:22 | 2018-05-21T08:29:12 | C++ | UTF-8 | C++ | false | false | 902 | cc | /* Copyright 2016 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
#include "tensorflow/core/kernels/qr_op_impl.h"
namespace tensorflow {
REGISTER_LINALG_OP("Qr", (QrOp<double>), double);
#if GOOGLE_CUDA
REGISTER_LINALG_OP_GPU("Qr", (QrOpGpu<double>), double);
#endif
} // namespace tensorflow
| [
"thomas.warfel@pnnl.gov"
] | thomas.warfel@pnnl.gov |
3c93a9c82d48f1028c03d2426c52c44396660a19 | e8f1348a5b26fbafc5d047a10d61891d6aa7c879 | /DiameterofBinaryTree.cpp | f2b3a806b70a14c890235d8844a3ef0600e86636 | [] | no_license | mk2sharma/solutions | c59abbad9d29ea497f177768850b50bcc7d69900 | a2e11248a15932850f0c41f1dfdcecd53bde5973 | refs/heads/master | 2021-01-18T21:13:52.774721 | 2017-09-25T05:19:32 | 2017-09-25T05:19:32 | 87,014,801 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,067 | cpp | /*
543. Diameter of Binary Tree
Given a binary tree, you need to compute the length of the diameter of the tree. The diameter of a binary tree is the length of the longest path between any two nodes in a tree. This path may or may not pass through the root.
Example:
Given a binary tree
1
/ \
2 3
/ \
4 5
Return 3, which is the length of the path [4,2,1,3] or [5,2,1,3].
Note: The length of path between two nodes is represented by the number of edges between them.
*/
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Solution {
public:
int height(TreeNode* root) {
int path = 0;
if (root == NULL)
return 0;
int left_height = 0, right_height = 0;
if (root->left != NULL)
left_height = height(root->left) + 1;
if (root->right != NULL)
right_height = height(root->right) + 1;
if (left_height > right_height)
return left_height;
return right_height;
}
int diameterOfBinaryTree(TreeNode* root, int *max) {
int path = 0;
if (root == NULL)
return 0;
int left_height = 0, right_height = 0;
if (root->left != NULL) {
path = diameterOfBinaryTree(root->left, max);
left_height = height(root->left) + 1;
}
if (root->right != NULL) {
path = diameterOfBinaryTree(root->right, max);
right_height = height(root->right) + 1;
}
if (left_height + right_height > *max)
*max = left_height + right_height;
return *max;
}
int diameterOfBinaryTree(TreeNode* root) {
int max = 0, path;
path = diameterOfBinaryTree(root, &max);
return max;
}
};
| [
"noreply@github.com"
] | noreply@github.com |
5197afd715bf20ba03d278a96e1f2eb904d1af44 | a4cc03a687fec33fb986990cf053c1a04804b6f1 | /allwinner/liballwinner_tina_demo/tinaplayerdemo/src/tinaplayerdemo.cpp | c08c8c4319241ed831fcc8408cdbcd2315543a3d | [] | no_license | lindenis-org/lindenis-v833-package | 93768d5ab5c6af90e67bca2b4ed22552ab5d8ae8 | 220e01731729a86a0aac2a9f65e20a0176af4588 | refs/heads/master | 2023-05-11T22:20:40.949440 | 2021-05-26T09:42:15 | 2021-05-27T08:24:18 | 371,616,812 | 6 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 26,440 | cpp | #include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <pthread.h>
#include <ctype.h>
#include <errno.h>
#include <sys/select.h>
#include <allwinner/tinaplayer.h>
//#include <power_manager_client.h>
using namespace aw;
#define SAVE_YUV_DATA 1
typedef unsigned long uaddrptr_t;
typedef struct DemoPlayerContext
{
TinaPlayer* mTinaPlayer;
int mSeekable;
int mError;
int mVideoFrameNum;
bool mPreparedFlag;
bool mLoopFlag;
char mUrl[512];
sem_t mPreparedSem;
}DemoPlayerContext;
//* define commands for user control.
typedef struct Command
{
const char* strCommand;
int nCommandId;
const char* strHelpMsg;
}Command;
#define COMMAND_HELP 0x1 //* show help message.
#define COMMAND_QUIT 0x2 //* quit this program.
#define COMMAND_SET_SOURCE 0x101 //* set url of media file.
#define COMMAND_PREPARE 0x102 //* prepare the media file.
#define COMMAND_PLAY 0x103 //* start playback.
#define COMMAND_PAUSE 0x104 //* pause the playback.
#define COMMAND_STOP 0x105 //* stop the playback.
#define COMMAND_SEEKTO 0x106 //* seek to posion, in unit of second.
#define COMMAND_RESET 0x107 //* reset the player
#define COMMAND_SHOW_MEDIAINFO 0x108 //* show media information.
#define COMMAND_SHOW_DURATION 0x109 //* show media duration, in unit of second.
#define COMMAND_SHOW_POSITION 0x110 //* show current play position, in unit of second.
#define COMMAND_SWITCH_AUDIO 0x111 //* switch autio track.
#define COMMAND_PLAY_URL 0x112 //set url and prepare and play
#define COMMAND_SET_VOLUME 0x113 //set the software volume
#define COMMAND_GET_VOLUME 0x114 //get the software volume
#define CEDARX_UNUSE(param) (void)param
static const Command commands[] =
{
{"help", COMMAND_HELP, "show this help message."},
{"quit", COMMAND_QUIT, "quit this program."},
{"set url", COMMAND_SET_SOURCE, "set url of the media, for example, set url: ~/testfile.mkv."},
{"prepare", COMMAND_PREPARE, "prepare the media."},
{"play", COMMAND_PLAY, "start playback."},
{"pause", COMMAND_PAUSE, "pause the playback."},
{"stop", COMMAND_STOP, "stop the playback."},
{"seek to", COMMAND_SEEKTO,
"seek to specific position to play, position is in unit of second, for example, seek to: 100."},
{"reset", COMMAND_RESET, "reset the player."},
{"show media info", COMMAND_SHOW_MEDIAINFO, "show media information of the media file."},
{"show duration", COMMAND_SHOW_DURATION, "show duration of the media file."},
{"show position", COMMAND_SHOW_POSITION, "show current play position, position is in unit of second."},
{"switch audio", COMMAND_SWITCH_AUDIO,
"switch audio to a specific track, for example, switch audio: 2, track is start counting from 0."},
{"play url", COMMAND_PLAY_URL, "set url and prepare and play url,for example:play url:/mnt/UDISK/test.mp3"},
{"set volume", COMMAND_SET_VOLUME, "set the software volume,the range is 0-40,for example:set volume:30"},
{"get volume", COMMAND_GET_VOLUME, "get the software volume"},
{NULL, 0, NULL}
};
static void showHelp(void)
{
int i;
printf("\n");
printf("******************************************************************************************\n");
printf("* This is a simple media player, when it is started, you can input commands to tell\n");
printf("* what you want it to do.\n");
printf("* Usage: \n");
printf("* # ./tinaplayerdemo\n");
printf("* # set url: http://www.allwinner.com/ald/al3/testvideo1.mp4\n");
printf("* # prepare\n");
printf("* # show media info\n");
printf("* # play\n");
printf("* # pause\n");
printf("* # stop\n");
printf("* # reset\n");
printf("* # seek to:100\n");
printf("* # play url:/mnt/UDISK/test.mp3\n");
printf("* # set volume:30\n");
printf("* # get volume\n");
printf("*\n");
printf("* Command and it param is seperated by a colon, param is optional, as below:\n");
printf("* Command[: Param]\n");
printf("*\n");
printf("* here are the commands supported:\n");
for(i=0; ; i++)
{
if(commands[i].strCommand == NULL)
break;
printf("* %s:\n", commands[i].strCommand);
printf("*\t\t%s\n", commands[i].strHelpMsg);
}
printf("*\n");
printf("******************************************************************************************\n");
}
static int readCommand(char* strCommandLine, int nMaxLineSize)
{
int nMaxFds;
fd_set readFdSet;
int result;
char* p;
unsigned int nReadBytes;
struct timeval tv;
tv.tv_sec = 1;
tv.tv_usec = 0;
//printf("\ntinademoPlayer:readCommand() \n");
fflush(stdout);
nMaxFds = 0;
FD_ZERO(&readFdSet);
FD_SET(STDIN_FILENO, &readFdSet);
result = select(nMaxFds+1, &readFdSet, NULL, NULL, &tv);
if(result > 0)
{
if(FD_ISSET(STDIN_FILENO, &readFdSet))
{
nReadBytes = read(STDIN_FILENO, &strCommandLine[0], nMaxLineSize);
if(nReadBytes > 0)
{
p = strCommandLine;
while(*p != 0)
{
if(*p == 0xa)
{
*p = 0;
break;
}
p++;
}
}
return 0;
}
}
return -1;
}
static void formatString(char* strIn)
{
char* ptrIn;
char* ptrOut;
int len;
int i;
if(strIn == NULL || (len=strlen(strIn)) == 0)
return;
ptrIn = strIn;
ptrOut = strIn;
i = 0;
while(*ptrIn != '\0')
{
//* skip the beginning space or multiple space between words.
if(*ptrIn != ' ' || (i!=0 && *(ptrOut-1)!=' '))
{
*ptrOut++ = *ptrIn++;
i++;
}
else
ptrIn++;
}
//* skip the space at the tail.
if(i==0 || *(ptrOut-1) != ' ')
*ptrOut = '\0';
else
*(ptrOut-1) = '\0';
return;
}
//* return command id,
static int parseCommandLine(char* strCommandLine, unsigned long* pParam)
{
char* strCommand;
char* strParam;
int i;
int nCommandId;
char colon = ':';
if(strCommandLine == NULL || strlen(strCommandLine) == 0)
{
return -1;
}
strCommand = strCommandLine;
strParam = strchr(strCommandLine, colon);
if(strParam != NULL)
{
*strParam = '\0';
strParam++;
}
formatString(strCommand);
formatString(strParam);
nCommandId = -1;
for(i=0; commands[i].strCommand != NULL; i++)
{
if(strcmp(commands[i].strCommand, strCommand) == 0)
{
nCommandId = commands[i].nCommandId;
break;
}
}
if(commands[i].strCommand == NULL)
return -1;
switch(nCommandId)
{
case COMMAND_SET_SOURCE:
if(strParam != NULL && strlen(strParam) > 0)
*pParam = (uaddrptr_t)strParam; //* pointer to the url.
else
{
printf("no url specified.\n");
nCommandId = -1;
}
break;
case COMMAND_SEEKTO:
if(strParam != NULL)
{
*pParam = (int)strtol(strParam, (char**)NULL, 10); //* seek time in unit of second.
if(errno == EINVAL || errno == ERANGE)
{
printf("seek time is not valid.\n");
nCommandId = -1;
}
}
else
{
printf("no seek time is specified.\n");
nCommandId = -1;
}
break;
case COMMAND_SWITCH_AUDIO:
if(strParam != NULL)
{
*pParam = (int)strtol(strParam, (char**)NULL, 10); //* audio stream index start counting from 0.
if(errno == EINVAL || errno == ERANGE)
{
printf("audio stream index is not valid.\n");
nCommandId = -1;
}
}
else
{
printf("no audio stream index is specified.\n");
nCommandId = -1;
}
break;
case COMMAND_PLAY_URL:
if(strParam != NULL && strlen(strParam) > 0)
*pParam = (uaddrptr_t)strParam; //* pointer to the url.
else
{
printf("no url to play.\n");
nCommandId = -1;
}
break;
case COMMAND_SET_VOLUME:
if(strParam != NULL)
{
*pParam = (int)strtol(strParam, (char**)NULL, 10); //* seek time in unit of second.
if(errno == EINVAL || errno == ERANGE)
{
printf("volume value is not valid.\n");
nCommandId = -1;
}
}
else
{
printf("the volume value is not specified.\n");
nCommandId = -1;
}
break;
default:
break;
}
return nCommandId;
}
//* a callback for tinaplayer.
void CallbackForTinaPlayer(void* pUserData, int msg, int param0, void* param1)
{
DemoPlayerContext* pDemoPlayer = (DemoPlayerContext*)pUserData;
CEDARX_UNUSE(param1);
switch(msg)
{
case TINA_NOTIFY_NOT_SEEKABLE:
{
pDemoPlayer->mSeekable = 0;
printf("info: media source is unseekable.\n");
break;
}
case TINA_NOTIFY_ERROR:
{
pDemoPlayer->mError = 1;
//pDemoPlayer->mLoopFlag = true;
printf("error: open media source fail.\n");
break;
}
case TINA_NOTIFY_PREPARED:
{
printf("TINA_NOTIFY_PREPARED,has prepared.\n");
sem_post(&pDemoPlayer->mPreparedSem);
pDemoPlayer->mPreparedFlag = true;
break;
}
case TINA_NOTIFY_BUFFERRING_UPDATE:
{
int nBufferedFilePos;
int nBufferFullness;
nBufferedFilePos = param0 & 0x0000ffff;
nBufferFullness = (param0>>16) & 0x0000ffff;
printf("info: buffer %d percent of the media file, buffer fullness = %d percent.\n",
nBufferedFilePos, nBufferFullness);
break;
}
case TINA_NOTIFY_PLAYBACK_COMPLETE:
{
printf("TINA_NOTIFY_PLAYBACK_COMPLETE\n");
//pDemoPlayer->mLoopFlag = true;
//PowerManagerReleaseWakeLock("tinaplayerdemo");
break;
}
case TINA_NOTIFY_SEEK_COMPLETE:
{
printf("TINA_NOTIFY_SEEK_COMPLETE>>>>info: seek ok.\n");
break;
}
case TINA_NOTIFY_BUFFER_START:
{
printf("have no enough data to play\n");
break;
}
case TINA_NOTIFY_BUFFER_END:
{
printf("have enough data to play again\n");
break;
}
case TINA_NOTIFY_VIDEO_FRAME:
{
#if SAVE_YUV_DATA
VideoPicData* videodata = (VideoPicData*)param1;
if(videodata){
//printf("*****TINA_NOTIFY_VIDEO_FRAME****,videodata->nPts = %lld ms",videodata->nPts/1000);
if(pDemoPlayer->mVideoFrameNum == 200){
printf(" *****TINA_NOTIFY_VIDEO_FRAME****,videodata->ePixelFormat = %d,videodata->nWidth = %d,videodata->nHeight=%d\n",videodata->ePixelFormat,videodata->nWidth,videodata->nHeight);
char path[50];
char width[10];
char height[10];
sprintf(width,"%d",videodata->nWidth);
sprintf(height,"%d",videodata->nHeight);
printf("width = %s,height = %s\n",width,height);
strcpy(path,"/tmp/save_");
strcat(path,width);
strcat(path,"_");
strcat(path,height);
strcat(path,".yuv");
FILE* savaYuvFd = fopen(path, "wb");
if(savaYuvFd==NULL){
printf("fopen save.yuv fail****\n");
printf("err str: %s\n",strerror(errno));
}else{
fseek(savaYuvFd,0,SEEK_SET);
int write_ret0 = fwrite(videodata->pData0, 1, videodata->nWidth*videodata->nHeight, savaYuvFd);
if(write_ret0 <= 0){
printf("yuv write0 error,err str: %s\n",strerror(errno));
}
int write_ret1 = fwrite(videodata->pData1, 1, videodata->nWidth*videodata->nHeight/2, savaYuvFd);
if(write_ret1 <= 0){
printf("yuv write1 error,err str: %s\n",strerror(errno));
}
printf("only save 1 video frame\n");
fclose(savaYuvFd);
savaYuvFd = NULL;
}
}
pDemoPlayer->mVideoFrameNum++;
}
#endif
break;
}
case TINA_NOTIFY_AUDIO_FRAME:
{
AudioPcmData* pcmData = (AudioPcmData*)param1;
if(pcmData){
//printf(" *****TINA_NOTIFY_AUDIO_FRAME#####,*pcmData->pData = %p,pcmData->nSize = %d\n",*(pcmData->pData),pcmData->nSize);
}
break;
}
default:
{
printf("warning: unknown callback from Tinaplayer.\n");
break;
}
}
return;
}
//* the main method.
int main(int argc, char** argv)
{
DemoPlayerContext demoPlayer;
int nCommandId;
unsigned long nCommandParam;
int bQuit;
char strCommandLine[1024];
CEDARX_UNUSE(argc);
CEDARX_UNUSE(argv);
printf("\n");
printf("******************************************************************************************\n");
printf("* This program implements a simple player, you can type commands to control the player.\n");
printf("* To show what commands supported, type 'help'.\n");
printf("******************************************************************************************\n");
//* create a player.
memset(&demoPlayer, 0, sizeof(DemoPlayerContext));
demoPlayer.mTinaPlayer= new TinaPlayer();
if(demoPlayer.mTinaPlayer == NULL)
{
printf("can not create tinaplayer, quit.\n");
exit(-1);
}
//* set callback to player.
demoPlayer.mTinaPlayer->setNotifyCallback(CallbackForTinaPlayer, (void*)&demoPlayer);
//* check if the player work.
if(demoPlayer.mTinaPlayer->initCheck() != 0)
{
printf("initCheck of the player fail, quit.\n");
delete demoPlayer.mTinaPlayer;
demoPlayer.mTinaPlayer = NULL;
exit(-1);
}
demoPlayer.mError = 0;
demoPlayer.mSeekable = 1;
demoPlayer.mPreparedFlag = false;
demoPlayer.mLoopFlag = false;
sem_init(&demoPlayer.mPreparedSem, 0, 0);
//* read, parse and process command from user.
bQuit = 0;
while(!bQuit)
{
//for test loop play which use reset for each play
//printf("demoPlayer.mLoopFlag = %d",demoPlayer.mLoopFlag);
if(demoPlayer.mLoopFlag){
demoPlayer.mLoopFlag = false;
//char* pUrl = "https://192.168.0.125/hls/h264/playlist_10.m3u8";
printf("demoPlayer.mTinaPlayer->reset() begin");
if(demoPlayer.mTinaPlayer->reset() != 0)
{
printf("tinaplayer::reset() return fail.\n");
}else{
printf("reset the player ok.\n");
if(demoPlayer.mError == 1){
demoPlayer.mError = 0;
}
//PowerManagerReleaseWakeLock("tinaplayerdemo");
}
demoPlayer.mSeekable = 1; //* if the media source is not seekable, this flag will be
//* clear at the TINA_NOTIFY_NOT_SEEKABLE callback.
//* set url to the tinaplayer.
if(demoPlayer.mTinaPlayer->setDataSource((const char*)demoPlayer.mUrl, NULL) != 0)
{
printf("tinaplayer::setDataSource() return fail.\n");
}else{
printf("setDataSource end\n");
}
demoPlayer.mPreparedFlag = false;
if(demoPlayer.mTinaPlayer->prepareAsync() != 0)
{
printf(" tinaplayer::prepareAsync() return fail.\n");
}else{
printf("preparing...\n");
}
sem_wait(&demoPlayer.mPreparedSem);
printf("start play audio\n");
//demoPlayer.mTinaPlayer->setLooping(1);//let the player into looping mode
//* start the playback
if(demoPlayer.mTinaPlayer->start() != 0)
{
printf("tinaplayer::start() return fail.\n");
}else{
printf("started.\n");
//PowerManagerAcquireWakeLock("tinaplayerdemo");
}
}
//* read command from stdin.
if(readCommand(strCommandLine, sizeof(strCommandLine)) == 0)
{
//* parse command.
nCommandParam = 0;
nCommandId = parseCommandLine(strCommandLine, &nCommandParam);
//* process command.
printf("nCommandId = %d\n",nCommandId);
switch(nCommandId)
{
case COMMAND_HELP:
{
showHelp();
break;
}
case COMMAND_QUIT:
{
printf("COMMAND_QUIT\n");
bQuit = 1;
break;
}
case COMMAND_SET_SOURCE : //* set url of media file.
{
char* pUrl;
pUrl = (char*)(uaddrptr_t)nCommandParam;
if(demoPlayer.mError == 1) //pre status is error,reset the player first
{
printf("pre status is error,reset the tina player first.\n");
demoPlayer.mTinaPlayer->reset();
demoPlayer.mError = 0;
}
demoPlayer.mSeekable = 1; //* if the media source is not seekable, this flag will be
//* clear at the TINA_NOTIFY_NOT_SEEKABLE callback.
//* set url to the tinaplayer.
if(demoPlayer.mTinaPlayer->setDataSource((const char*)pUrl, NULL) != 0)
{
printf("tinaplayer::setDataSource() return fail.\n");
break;
}else{
printf("setDataSource end\n");
}
break;
}
case COMMAND_PREPARE:
{
/*
if(demoPlayer.mTinaPlayer->prepare() != 0){
printf(" tinaplayer::prepare() return fail.\n");
break;
}
printf("has prepared...\n");
*/
demoPlayer.mPreparedFlag = false;
if(demoPlayer.mTinaPlayer->prepareAsync() != 0)
{
printf(" tinaplayer::prepareAsync() return fail.\n");
break;
}else{
printf("preparing...\n");
}
break;
}
case COMMAND_PLAY: //* start playback.
{
//demoPlayer.mTinaPlayer->setLooping(1);//let the player into looping mode
//* start the playback
if(demoPlayer.mTinaPlayer->start() != 0)
{
printf("tinaplayer::start() return fail.\n");
break;
}else{
printf("started.\n");
//PowerManagerAcquireWakeLock("tinaplayerdemo");
}
break;
}
case COMMAND_PAUSE: //* pause the playback.
{
if(demoPlayer.mTinaPlayer->pause() != 0)
{
printf("tinaplayer::pause() return fail.\n");
break;
}else{
printf("paused.\n");
//PowerManagerReleaseWakeLock("tinaplayerdemo");
}
break;
}
case COMMAND_STOP: //* stop the playback.
{
if(demoPlayer.mTinaPlayer->stop() != 0)
{
printf("tinaplayer::stop() return fail.\n");
break;
}else{
//PowerManagerReleaseWakeLock("tinaplayerdemo");
}
break;
}
case COMMAND_SEEKTO: //* seek to posion, in unit of second.
{
int nSeekTimeMs;
int nDuration;
nSeekTimeMs = nCommandParam*1000;
int ret = demoPlayer.mTinaPlayer->getDuration(&nDuration);
printf("nSeekTimeMs = %d , nDuration = %d\n",nSeekTimeMs,nDuration);
if(ret != 0)
{
printf("getDuration fail, unable to seek!\n");
break;
}
if(nSeekTimeMs > nDuration){
printf("seek time out of range, media duration = %d seconds.\n", nDuration/1000);
break;
}
if(demoPlayer.mSeekable == 0)
{
printf("media source is unseekable.\n");
break;
}
if(demoPlayer.mTinaPlayer->seekTo(nSeekTimeMs) != 0){
printf("tinaplayer::seekTo() return fail.\n");
break;
}else{
printf("is seeking.\n");
}
break;
}
case COMMAND_RESET: //* reset the player
{
if(demoPlayer.mTinaPlayer->reset() != 0)
{
printf("tinaplayer::reset() return fail.\n");
break;
}else{
printf("reset the player ok.\n");
//PowerManagerReleaseWakeLock("tinaplayerdemo");
}
break;
}
case COMMAND_SHOW_MEDIAINFO: //* show media information.
{
printf("show media information.\n");
break;
}
case COMMAND_SHOW_DURATION: //* show media duration, in unit of second.
{
int nDuration = 0;
if(demoPlayer.mTinaPlayer->getDuration(&nDuration) == 0)
printf("media duration = %d seconds.\n", nDuration/1000);
else
printf("fail to get media duration.\n");
break;
}
case COMMAND_SHOW_POSITION: //* show current play position, in unit of second.
{
int nPosition = 0;
if(demoPlayer.mTinaPlayer->getCurrentPosition(&nPosition) == 0)
printf("current position = %d seconds.\n", nPosition/1000);
else
printf("fail to get pisition.\n");
break;
}
case COMMAND_SWITCH_AUDIO: //* switch autio track.
{
int nAudioStreamIndex;
nAudioStreamIndex = nCommandParam;
printf("switch audio to the %dth track.\n", nAudioStreamIndex);
//* TODO
break;
}
case COMMAND_PLAY_URL: //* set url of media file.
{
char* pUrl;
pUrl = (char*)(uaddrptr_t)nCommandParam;
memset(demoPlayer.mUrl,0,512);
strcpy(demoPlayer.mUrl,pUrl);
printf("demoPlayer.mUrl = %s",demoPlayer.mUrl);
if(demoPlayer.mTinaPlayer->reset() != 0)
{
printf("tinaplayer::reset() return fail.\n");
break;
}else{
printf("reset the player ok.\n");
if(demoPlayer.mError == 1){
demoPlayer.mError = 0;
}
//PowerManagerReleaseWakeLock("tinaplayerdemo");
}
demoPlayer.mSeekable = 1; //* if the media source is not seekable, this flag will be
//* clear at the TINA_NOTIFY_NOT_SEEKABLE callback.
//* set url to the tinaplayer.
if(demoPlayer.mTinaPlayer->setDataSource((const char*)demoPlayer.mUrl, NULL) != 0)
{
printf("tinaplayer::setDataSource() return fail.\n");
break;
}else{
printf("setDataSource end\n");
}
demoPlayer.mPreparedFlag = false;
if(demoPlayer.mTinaPlayer->prepareAsync() != 0)
{
printf(" tinaplayer::prepareAsync() return fail.\n");
break;
}else{
printf("preparing...\n");
}
sem_wait(&demoPlayer.mPreparedSem);
printf("start play audio\n");
//demoPlayer.mTinaPlayer->setLooping(1);//let the player into looping mode
//* start the playback
if(demoPlayer.mTinaPlayer->start() != 0)
{
printf("tinaplayer::start() return fail.\n");
break;
}else{
printf("started.\n");
//PowerManagerAcquireWakeLock("tinaplayerdemo");
}
break;
}
case COMMAND_SET_VOLUME: //* seek to posion, in unit of second.
{
//printf("tinaplayerdemo setVolume:volume = %u",nCommandParam);
demoPlayer.mTinaPlayer->setVolume((int)nCommandParam);
break;
}
case COMMAND_GET_VOLUME: //* seek to posion, in unit of second.
{
int cur_volume = demoPlayer.mTinaPlayer->getVolume();
printf("tinaplayerdemo: cur_volume = %d",cur_volume);
break;
}
default:
{
if(strlen(strCommandLine) > 0)
printf("invalid command.\n");
break;
}
}
}
}
printf("destroy TinaPlayer.\n");
sem_destroy(&demoPlayer.mPreparedSem);
if(demoPlayer.mTinaPlayer != NULL)
{
delete demoPlayer.mTinaPlayer;
demoPlayer.mTinaPlayer = NULL;
}
printf("destroy TinaPlayer 1.\n");
//PowerManagerReleaseWakeLock("tinaplayerdemo");
printf("\n");
printf("******************************************************************************************\n");
printf("* Quit the program, goodbye!\n");
printf("******************************************************************************************\n");
printf("\n");
return 0;
}
| [
"given@lindeni.com"
] | given@lindeni.com |
6ef09a33328498d34840d139659e6d416a6586a0 | 878ca47b232081d27390e7bd9d02826b41bc070c | /Lab_3_6/Lab_3_6/Source.cpp | ed1fee27661d813fec0b41de12456fbb0defea15 | [] | no_license | laurashcherbak/cpp_oop | 6efd8b68156a79f4e27ba1d70b51946bfec2c887 | a693421f1cfb83fb2db93d4c1fb88ac38cd6f34d | refs/heads/master | 2023-04-25T03:16:19.012303 | 2021-05-19T07:38:43 | 2021-05-19T07:38:43 | 343,200,561 | 0 | 0 | null | 2021-04-19T17:56:04 | 2021-02-28T19:54:18 | C++ | UTF-8 | C++ | false | false | 1,133 | cpp | //////////////////////////////////////////////////////////////////////////////
// Source.cpp
#include <iostream>
//#include <Windows.h>
#include "D3.h"
using namespace std;
int main()
{
B1 o0(777);
cout << "B1 o0(777);" << endl;
cout << "sizeof(B1) = " << sizeof(B1) << endl;
cout << endl << "Class hierarchy B1: " << endl;
o0.show_B1();
cout << endl;
D1 o1(111, 222);
cout << "D1 o1(111, 222);" << endl;
cout << "sizeof(D1) = " << sizeof(D1) << endl;
cout << endl << "Class hierarchy D1: " << endl;
o1.show_D1();
cout << endl;
B2 o2(333);
cout << "B2 o2(333);" << endl;
cout << "sizeof(B1) = " << sizeof(B2) << endl;
cout << endl << "Class hierarchy B2: " << endl;
o2.show_B2();
cout << endl;
D2 o3(1000, 2000);
cout << "D2 o2(1000, 2000);" << endl;
cout << "sizeof(D2) = " << sizeof(D2) << endl;
cout << endl << "Class hierarchy D2: " << endl;
o3.show_D2();
cout << endl;
D3 o4(100, 200, 300, 400, 500);
cout << "D3 o3(100, 200, 300, 400, 500);" << endl;
cout << "sizeof(D3) = " << sizeof(D3) << endl;
cout << endl << "Class hierarchy D3: " << endl;
o4.show_D3();
cout << endl;
return 0;
} | [
"laura.shcherbak@gmail.com"
] | laura.shcherbak@gmail.com |
5d253543063ec1131963fa8eab94bf711e87fadb | 6245194770c6d79a5177a33b839a007ecd4a1711 | /Linked List/add-two-nos-represented-by-ll.cpp | efb61428518c333990a029c76c98d4269c6f23d2 | [] | no_license | anvesha11/ds-algo | 306db8c257e585f12534eb8c8a994daa365d59f2 | 043fc7e053b58bf68d2b6ecec91db5d79e5607d3 | refs/heads/master | 2022-12-14T06:36:08.380953 | 2020-09-18T17:30:42 | 2020-09-18T17:30:42 | 269,028,244 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,423 | cpp | Node* reverse(Node *head)
// this function reverses the linked list
{
Node * prev = NULL;
Node * current = head;
Node * next;
while (current != NULL)
{
next = current->next; // storing next node
current->next = prev; // linking current node to previous
prev = current; // updating prev
current = next; // updating current
}
return prev;
}
struct Node* addTwoLists(struct Node* first, struct Node* second)
{
first = reverse(first); // reversing lists
second = reverse(second); // to simplify addition
Node *sum=NULL;
int carry=0;
while( first!=NULL || second!=NULL || carry!=0 )
{
int newVal = carry;
if(first) newVal += first->data;
if(second) newVal += second->data;
// newly value for sumList is sum of carry and respective
// digits in the 2 lists
carry = newVal/10; // updating carry
newVal = newVal%10; // making sure newVal is <10
Node* newNode = new Node(newVal);
newNode->next = sum; // appending newVal node
sum = newNode;
if(first) first = first->next; // moving to next node
if(second) second = second->next;
}
return sum;
}
| [
"noreply@github.com"
] | noreply@github.com |
147133132081f226a5c6604f8ec3ec4047380fe0 | 04b1803adb6653ecb7cb827c4f4aa616afacf629 | /chrome/browser/android/metrics/android_profile_session_durations_service_factory.cc | d0f24e48cb13407780cd5832f8933696f836dc77 | [
"BSD-3-Clause"
] | permissive | Samsung/Castanets | 240d9338e097b75b3f669604315b06f7cf129d64 | 4896f732fc747dfdcfcbac3d442f2d2d42df264a | refs/heads/castanets_76_dev | 2023-08-31T09:01:04.744346 | 2021-07-30T04:56:25 | 2021-08-11T05:45:21 | 125,484,161 | 58 | 49 | BSD-3-Clause | 2022-10-16T19:31:26 | 2018-03-16T08:07:37 | null | UTF-8 | C++ | false | false | 3,064 | cc | // Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/android/metrics/android_profile_session_durations_service_factory.h"
#include "chrome/browser/android/metrics/android_profile_session_durations_service.h"
#include "chrome/browser/profiles/incognito_helpers.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/profiles/profile_manager.h"
#include "chrome/browser/signin/identity_manager_factory.h"
#include "chrome/browser/sync/profile_sync_service_factory.h"
#include "components/keyed_service/content/browser_context_dependency_manager.h"
// static
AndroidProfileSessionDurationsService*
AndroidProfileSessionDurationsServiceFactory::GetForActiveUserProfile() {
Profile* profile = ProfileManager::GetActiveUserProfile();
DCHECK(profile);
return AndroidProfileSessionDurationsServiceFactory::GetForProfile(profile);
}
// static
AndroidProfileSessionDurationsService*
AndroidProfileSessionDurationsServiceFactory::GetForProfile(Profile* profile) {
return static_cast<AndroidProfileSessionDurationsService*>(
GetInstance()->GetServiceForBrowserContext(profile, true));
}
// static
AndroidProfileSessionDurationsServiceFactory*
AndroidProfileSessionDurationsServiceFactory::GetInstance() {
return base::Singleton<AndroidProfileSessionDurationsServiceFactory>::get();
}
AndroidProfileSessionDurationsServiceFactory::
AndroidProfileSessionDurationsServiceFactory()
: BrowserContextKeyedServiceFactory(
"AndroidProfileSessionDurationsService",
BrowserContextDependencyManager::GetInstance()) {
DependsOn(ProfileSyncServiceFactory::GetInstance());
DependsOn(IdentityManagerFactory::GetInstance());
}
AndroidProfileSessionDurationsServiceFactory::
~AndroidProfileSessionDurationsServiceFactory() = default;
KeyedService*
AndroidProfileSessionDurationsServiceFactory::BuildServiceInstanceFor(
content::BrowserContext* context) const {
Profile* profile = Profile::FromBrowserContext(context);
syncer::SyncService* sync_service =
ProfileSyncServiceFactory::GetForProfile(profile);
identity::IdentityManager* identity_manager =
IdentityManagerFactory::GetForProfile(profile);
return new AndroidProfileSessionDurationsService(sync_service,
identity_manager);
}
content::BrowserContext*
AndroidProfileSessionDurationsServiceFactory::GetBrowserContextToUse(
content::BrowserContext* context) const {
// Session time in incognito is counted towards the session time in the
// regular profile. That means that for a user that is signed in and syncing
// in their regular profile and that is browsing in incognito profile,
// Chromium will record the session time as being signed in and syncing.
return chrome::GetBrowserContextRedirectedInIncognito(context);
}
bool AndroidProfileSessionDurationsServiceFactory::ServiceIsNULLWhileTesting()
const {
return true;
}
| [
"sunny.nam@samsung.com"
] | sunny.nam@samsung.com |
81408c180d2c0140e3e9ca37a43b536c8f1028b8 | 0052d0ef4e66661787775aaf2b76c557c8bb772f | /src/bomberman/utils/RailSwitch.h | 1fa69d1ef23894b63e67921aee7e5171c214e008 | [] | no_license | alexis-puska/lr-multi-bomberman | cb484d2703b61398eea5a648c69abf476e369b7b | 9826d727d0509d830896404d819ad2fd7372db55 | refs/heads/master | 2020-05-22T01:43:13.742257 | 2017-12-27T14:35:35 | 2017-12-27T14:35:35 | 64,591,003 | 13 | 2 | null | 2017-02-11T10:02:16 | 2016-07-31T11:37:13 | C++ | UTF-8 | C++ | false | false | 294 | h | #ifndef __MYCLASS_RailSwitch
#define __MYCLASS_RailSwitch
class RailSwitch {
public:
RailSwitch(int prev, int next, int nextAlt);
~RailSwitch();
int getNextIndex();
int getPrevIndex();
int getNextIndexAlt();
private:
int nextIndex;
int prevIndex;
int nextIndexAlt;
};
#endif
| [
"a.puska@ile-noire.com"
] | a.puska@ile-noire.com |
e40c491a8eade672c1daeaba3f1eb96103244d8e | 2e206a28df145decd4b04caec68d87fcdc7417e5 | /Codechef-AFK.cpp | d7d0cf624f2ef0cec21cda82a34faab7e367a087 | [] | no_license | singh-shreya6/Codes | 6ea507ed53cb5c5e047b4245dd800c686143a6ad | 753fb66f7720bda18900e323a6d4b0ef2c66d806 | refs/heads/master | 2022-11-10T06:56:15.324654 | 2022-10-25T08:19:07 | 2022-10-25T08:19:07 | 127,615,851 | 3 | 8 | null | 2022-10-25T08:18:37 | 2018-04-01T09:35:30 | C++ | UTF-8 | C++ | false | false | 590 | cpp | ERROR: type should be string, got "https://www.codechef.com/problems/AFK\n\n#include<bits/stdc++.h>\nusing namespace std;\n#define faster ios_base::sync_with_stdio(false);cin.tie(NULL);\ntypedef long long int ll;\n\nint main()\n{\n faster\n ll t;\n cin>>t;\n while(t--)\n {\n ll a,b,c;\n cin>>a>>b>>c;\n ll ss,am,ans;\n ll mid=a+c;\n if(mid%2==0)\n {\n mid=mid/2;\n ans=abs(mid-b);\n }\n else\n {\n ss=(mid+1)/2;\n am=(mid-1)/2;\n ans=min(abs(ss-b),abs(am-b))+1;\n }\n cout<<ans<<endl;\n }\nreturn 0;\n}\n" | [
"noreply@github.com"
] | noreply@github.com |
e4e3b9cf3bebdd6815d3c3bd311e742ce3024d1f | 1d7d0f62b4ccd8f0917feefa93d39631bcc73e62 | /aurdiuno/aurdiuno.ino | dc5ccbe90fddbe12dce51f9292accaeb63274195 | [] | no_license | harisomu/Hari | b456b03b99e58e4d6ff5c10e441bcad16af69130 | 7dc84f8c56a7b810e4da9080bc0508a0919dac30 | refs/heads/master | 2020-05-14T09:09:22.895259 | 2019-05-26T07:53:06 | 2019-05-26T07:53:06 | 181,735,037 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 890 | ino | #include <SoftwareSerial.h>
SoftwareSerial nodemcu(2,3);
int sensor1 = A0;
int sensor2 = A1;
int sensor3 = A2;
int sdata1 = 0; // sensor1 data
int sdata2 = 0; // sensor2 data
int sdata3 = 0; // sensor3 data
String cdata; // complete data, consisting of sensors values
void setup()
{
Serial.begin(9600);
nodemcu.begin(9600);
pinMode(sensor1, INPUT);
pinMode(sensor2, INPUT);
pinMode(sensor3, INPUT);
pinMode(4, OUTPUT); // TO ON/OFF VARIABLE RESISTOR
digitalWrite(4, HIGH);
}
void loop()
{
sdata1 = analogRead(sensor1);
sdata2 = analogRead(sensor2);
sdata3 = analogRead(sensor3);
if(sdata3<600)
{
sdata3=7;
}
if(sdata3>600)
{
sdata3=9;
}
cdata = cdata + sdata1+","+sdata2+","+sdata3; // comma will be used a delimeter
Serial.println(cdata);
nodemcu.println(cdata);
delay(2000); // 100 milli seconds
cdata = "";
}
| [
"harisomu26@gmail.com"
] | harisomu26@gmail.com |
e648602365795bf828ecd16eaad5f65d1cd50928 | 5567736e17e182daa7b5e9623ffe185b618433e6 | /include/ray.h | 357bbd78a5c68fd2466ecf4bcbeaf862ea500e4d | [] | no_license | Cjkkkk/ray_tracing | f2662bc72d6fb61a40dd272c54e599c36ee7dc25 | 82a7633792de451df24497e39c6d99a7faacc6c8 | refs/heads/master | 2020-04-08T20:25:07.027887 | 2020-01-08T14:52:25 | 2020-01-08T14:55:16 | 159,698,418 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 758 | h | //
// Created by DELL on 2018/11/30.
//
#ifndef RAY_TRACING_RAY_H
#define RAY_TRACING_RAY_H
#include "vec3.h"
#ifdef __CUDACC__
#define CUDA_CALLABLE_MEMBER __host__ __device__
#else
#define CUDA_CALLABLE_MEMBER
#endif
class ray
{
public:
CUDA_CALLABLE_MEMBER ray() {}
CUDA_CALLABLE_MEMBER ray(const vec3& a, const vec3& b, float ti = 0.0) { A = a; B = b; _time = ti;}
CUDA_CALLABLE_MEMBER inline vec3 origin() const { return A; }
CUDA_CALLABLE_MEMBER inline vec3 direction() const { return B; }
CUDA_CALLABLE_MEMBER inline vec3 point_at_parameter(float t) const { return A + t*B; }
CUDA_CALLABLE_MEMBER inline float time() const { return _time;}
vec3 A;
vec3 B;
float _time;
};
#endif //RAY_TRACING_RAY_H
| [
"xuehui@microsoft.com"
] | xuehui@microsoft.com |
3918f0b4cfa833ceee1db735c1d6f98eb71136b2 | 6ec209c1f6f3ca8017a5373ba2e85da38dfda90c | /tree/109.cc | a90e51658e88c69f580e708c00edaa4e51393f0e | [
"Apache-2.0"
] | permissive | MingfeiPan/leetcode | a70192233f7112ce39cc7b09d782bdcc52d29d06 | 057d9f014cf207ab4e50e14e5a9e015724de1386 | refs/heads/master | 2022-05-09T01:40:39.599374 | 2022-04-10T15:03:07 | 2022-04-10T15:03:07 | 60,593,146 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,221 | cc | /**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode() : val(0), next(nullptr) {}
* ListNode(int x) : val(x), next(nullptr) {}
* ListNode(int x, ListNode *next) : val(x), next(next) {}
* };
*/
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode() : val(0), left(nullptr), right(nullptr) {}
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
* TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
* };
*/
class Solution {
public:
TreeNode* sortedListToBST(ListNode* head) {
if (!head)
return nullptr;
ListNode *fast = head, *slow = head, *dummy;
while (fast && fast->next) {
fast = fast->next->next;
dummy = slow;
slow = slow->next;
}
TreeNode *root = new TreeNode{slow->val};
if (slow == head)
return root;
if (dummy)
dummy->next = nullptr;
root->left = sortedListToBST(head);
root->right = sortedListToBST(slow->next);
return root;
}
};
| [
"113104667@umail.ucc.ie"
] | 113104667@umail.ucc.ie |
93f161da8c983f9eb12292171ea779afe9ace237 | 88ae8695987ada722184307301e221e1ba3cc2fa | /net/third_party/quiche/src/quiche/quic/core/crypto/certificate_view_test.cc | d142ae45215d2369fbaafac22e0cf99486718ffb | [
"BSD-3-Clause"
] | permissive | iridium-browser/iridium-browser | 71d9c5ff76e014e6900b825f67389ab0ccd01329 | 5ee297f53dc7f8e70183031cff62f37b0f19d25f | refs/heads/master | 2023-08-03T16:44:16.844552 | 2023-07-20T15:17:00 | 2023-07-23T16:09:30 | 220,016,632 | 341 | 40 | BSD-3-Clause | 2021-08-13T13:54:45 | 2019-11-06T14:32:31 | null | UTF-8 | C++ | false | false | 9,166 | cc | // Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "quiche/quic/core/crypto/certificate_view.h"
#include <limits>
#include <memory>
#include <sstream>
#include "absl/algorithm/container.h"
#include "absl/strings/escaping.h"
#include "absl/strings/string_view.h"
#include "openssl/base.h"
#include "openssl/bytestring.h"
#include "openssl/evp.h"
#include "openssl/ssl.h"
#include "quiche/quic/core/crypto/boring_utils.h"
#include "quiche/quic/core/quic_time.h"
#include "quiche/quic/platform/api/quic_ip_address.h"
#include "quiche/quic/platform/api/quic_test.h"
#include "quiche/quic/test_tools/test_certificates.h"
#include "quiche/common/platform/api/quiche_time_utils.h"
namespace quic {
namespace test {
namespace {
using ::testing::ElementsAre;
using ::testing::HasSubstr;
using ::testing::Optional;
TEST(CertificateViewTest, PemParser) {
std::stringstream stream(kTestCertificatePem);
PemReadResult result = ReadNextPemMessage(&stream);
EXPECT_EQ(result.status, PemReadResult::kOk);
EXPECT_EQ(result.type, "CERTIFICATE");
EXPECT_EQ(result.contents, kTestCertificate);
result = ReadNextPemMessage(&stream);
EXPECT_EQ(result.status, PemReadResult::kEof);
}
TEST(CertificateViewTest, Parse) {
std::unique_ptr<CertificateView> view =
CertificateView::ParseSingleCertificate(kTestCertificate);
ASSERT_TRUE(view != nullptr);
EXPECT_THAT(view->subject_alt_name_domains(),
ElementsAre(absl::string_view("www.example.org"),
absl::string_view("mail.example.org"),
absl::string_view("mail.example.com")));
EXPECT_THAT(view->subject_alt_name_ips(),
ElementsAre(QuicIpAddress::Loopback4()));
EXPECT_EQ(EVP_PKEY_id(view->public_key()), EVP_PKEY_RSA);
const QuicWallTime validity_start = QuicWallTime::FromUNIXSeconds(
*quiche::QuicheUtcDateTimeToUnixSeconds(2020, 1, 30, 18, 13, 59));
EXPECT_EQ(view->validity_start(), validity_start);
const QuicWallTime validity_end = QuicWallTime::FromUNIXSeconds(
*quiche::QuicheUtcDateTimeToUnixSeconds(2020, 2, 2, 18, 13, 59));
EXPECT_EQ(view->validity_end(), validity_end);
EXPECT_EQ(view->public_key_type(), PublicKeyType::kRsa);
EXPECT_EQ(PublicKeyTypeToString(view->public_key_type()), "RSA");
EXPECT_EQ("C=US,ST=California,L=Mountain View,O=QUIC Server,CN=127.0.0.1",
view->GetHumanReadableSubject());
}
TEST(CertificateViewTest, ParseCertWithUnknownSanType) {
std::stringstream stream(kTestCertWithUnknownSanTypePem);
PemReadResult result = ReadNextPemMessage(&stream);
EXPECT_EQ(result.status, PemReadResult::kOk);
EXPECT_EQ(result.type, "CERTIFICATE");
std::unique_ptr<CertificateView> view =
CertificateView::ParseSingleCertificate(result.contents);
EXPECT_TRUE(view != nullptr);
}
TEST(CertificateViewTest, PemSingleCertificate) {
std::stringstream pem_stream(kTestCertificatePem);
std::vector<std::string> chain =
CertificateView::LoadPemFromStream(&pem_stream);
EXPECT_THAT(chain, ElementsAre(kTestCertificate));
}
TEST(CertificateViewTest, PemMultipleCertificates) {
std::stringstream pem_stream(kTestCertificateChainPem);
std::vector<std::string> chain =
CertificateView::LoadPemFromStream(&pem_stream);
EXPECT_THAT(chain,
ElementsAre(kTestCertificate, HasSubstr("QUIC Server Root CA")));
}
TEST(CertificateViewTest, PemNoCertificates) {
std::stringstream pem_stream("one\ntwo\nthree\n");
std::vector<std::string> chain =
CertificateView::LoadPemFromStream(&pem_stream);
EXPECT_TRUE(chain.empty());
}
TEST(CertificateViewTest, SignAndVerify) {
std::unique_ptr<CertificatePrivateKey> key =
CertificatePrivateKey::LoadFromDer(kTestCertificatePrivateKey);
ASSERT_TRUE(key != nullptr);
std::string data = "A really important message";
std::string signature = key->Sign(data, SSL_SIGN_RSA_PSS_RSAE_SHA256);
ASSERT_FALSE(signature.empty());
std::unique_ptr<CertificateView> view =
CertificateView::ParseSingleCertificate(kTestCertificate);
ASSERT_TRUE(view != nullptr);
EXPECT_TRUE(key->MatchesPublicKey(*view));
EXPECT_TRUE(
view->VerifySignature(data, signature, SSL_SIGN_RSA_PSS_RSAE_SHA256));
EXPECT_FALSE(view->VerifySignature("An unimportant message", signature,
SSL_SIGN_RSA_PSS_RSAE_SHA256));
EXPECT_FALSE(view->VerifySignature(data, "Not a signature",
SSL_SIGN_RSA_PSS_RSAE_SHA256));
}
TEST(CertificateViewTest, PrivateKeyPem) {
std::unique_ptr<CertificateView> view =
CertificateView::ParseSingleCertificate(kTestCertificate);
ASSERT_TRUE(view != nullptr);
std::stringstream pem_stream(kTestCertificatePrivateKeyPem);
std::unique_ptr<CertificatePrivateKey> pem_key =
CertificatePrivateKey::LoadPemFromStream(&pem_stream);
ASSERT_TRUE(pem_key != nullptr);
EXPECT_TRUE(pem_key->MatchesPublicKey(*view));
std::stringstream legacy_stream(kTestCertificatePrivateKeyLegacyPem);
std::unique_ptr<CertificatePrivateKey> legacy_key =
CertificatePrivateKey::LoadPemFromStream(&legacy_stream);
ASSERT_TRUE(legacy_key != nullptr);
EXPECT_TRUE(legacy_key->MatchesPublicKey(*view));
}
TEST(CertificateViewTest, PrivateKeyEcdsaPem) {
std::stringstream pem_stream(kTestEcPrivateKeyLegacyPem);
std::unique_ptr<CertificatePrivateKey> key =
CertificatePrivateKey::LoadPemFromStream(&pem_stream);
ASSERT_TRUE(key != nullptr);
EXPECT_TRUE(key->ValidForSignatureAlgorithm(SSL_SIGN_ECDSA_SECP256R1_SHA256));
}
TEST(CertificateViewTest, DerTime) {
EXPECT_THAT(ParseDerTime(CBS_ASN1_GENERALIZEDTIME, "19700101000024Z"),
Optional(QuicWallTime::FromUNIXSeconds(24)));
EXPECT_THAT(ParseDerTime(CBS_ASN1_GENERALIZEDTIME, "19710101000024Z"),
Optional(QuicWallTime::FromUNIXSeconds(365 * 86400 + 24)));
EXPECT_THAT(ParseDerTime(CBS_ASN1_UTCTIME, "700101000024Z"),
Optional(QuicWallTime::FromUNIXSeconds(24)));
EXPECT_TRUE(ParseDerTime(CBS_ASN1_UTCTIME, "200101000024Z").has_value());
EXPECT_EQ(ParseDerTime(CBS_ASN1_GENERALIZEDTIME, ""), absl::nullopt);
EXPECT_EQ(ParseDerTime(CBS_ASN1_GENERALIZEDTIME, "19700101000024.001Z"),
absl::nullopt);
EXPECT_EQ(ParseDerTime(CBS_ASN1_GENERALIZEDTIME, "19700101000024Q"),
absl::nullopt);
EXPECT_EQ(ParseDerTime(CBS_ASN1_GENERALIZEDTIME, "19700101000024-0500"),
absl::nullopt);
EXPECT_EQ(ParseDerTime(CBS_ASN1_GENERALIZEDTIME, "700101000024ZZ"),
absl::nullopt);
EXPECT_EQ(ParseDerTime(CBS_ASN1_GENERALIZEDTIME, "19700101000024.00Z"),
absl::nullopt);
EXPECT_EQ(ParseDerTime(CBS_ASN1_GENERALIZEDTIME, "19700101000024.Z"),
absl::nullopt);
EXPECT_EQ(ParseDerTime(CBS_ASN1_GENERALIZEDTIME, "197O0101000024Z"),
absl::nullopt);
EXPECT_EQ(ParseDerTime(CBS_ASN1_GENERALIZEDTIME, "19700101000024.0O1Z"),
absl::nullopt);
EXPECT_EQ(ParseDerTime(CBS_ASN1_GENERALIZEDTIME, "-9700101000024Z"),
absl::nullopt);
EXPECT_EQ(ParseDerTime(CBS_ASN1_GENERALIZEDTIME, "1970-101000024Z"),
absl::nullopt);
EXPECT_TRUE(ParseDerTime(CBS_ASN1_UTCTIME, "490101000024Z").has_value());
// This should parse as 1950, which predates UNIX epoch.
EXPECT_FALSE(ParseDerTime(CBS_ASN1_UTCTIME, "500101000024Z").has_value());
EXPECT_THAT(ParseDerTime(CBS_ASN1_GENERALIZEDTIME, "19700101230000Z"),
Optional(QuicWallTime::FromUNIXSeconds(23 * 3600)));
EXPECT_EQ(ParseDerTime(CBS_ASN1_GENERALIZEDTIME, "19700101240000Z"),
absl::nullopt);
}
TEST(CertificateViewTest, NameAttribute) {
// OBJECT_IDENTIFIER { 1.2.840.113554.4.1.112411 }
// UTF8String { "Test" }
std::string unknown_oid =
absl::HexStringToBytes("060b2a864886f712040186ee1b0c0454657374");
EXPECT_EQ("1.2.840.113554.4.1.112411=Test",
X509NameAttributeToString(StringPieceToCbs(unknown_oid)));
// OBJECT_IDENTIFIER { 2.5.4.3 }
// UTF8String { "Bell: \x07" }
std::string non_printable =
absl::HexStringToBytes("06035504030c0742656c6c3a2007");
EXPECT_EQ(R"(CN=Bell: \x07)",
X509NameAttributeToString(StringPieceToCbs(non_printable)));
// OBJECT_IDENTIFIER { "\x55\x80" }
// UTF8String { "Test" }
std::string invalid_oid = absl::HexStringToBytes("060255800c0454657374");
EXPECT_EQ("(5580)=Test",
X509NameAttributeToString(StringPieceToCbs(invalid_oid)));
}
TEST(CertificateViewTest, SupportedSignatureAlgorithmsForQuicIsUpToDate) {
QuicSignatureAlgorithmVector supported =
SupportedSignatureAlgorithmsForQuic();
for (int i = 0; i < std::numeric_limits<uint16_t>::max(); i++) {
uint16_t sigalg = static_cast<uint16_t>(i);
PublicKeyType key_type = PublicKeyTypeFromSignatureAlgorithm(sigalg);
if (absl::c_find(supported, sigalg) == supported.end()) {
EXPECT_EQ(key_type, PublicKeyType::kUnknown);
} else {
EXPECT_NE(key_type, PublicKeyType::kUnknown);
}
}
}
} // namespace
} // namespace test
} // namespace quic
| [
"jengelh@inai.de"
] | jengelh@inai.de |
fbe8fe5ae164867e97d8a56736a82adc6158ecba | ddf2274de833cbaa3422a0b4e1a6c70e98f9188f | /tensorflow/lite/delegates/flex/buffer_map_test.cc | 7b4acbd69d0fed3f1ef80b9af2ee779dae762a92 | [
"Apache-2.0"
] | permissive | TanguyUrvoy/tensorflow | 98b4534a3ecc2ce0738fc864386c9594148f4755 | ad683f866b465fa753731be283515bb0a67ad078 | refs/heads/master | 2020-04-16T14:49:40.864312 | 2019-01-14T14:51:47 | 2019-01-14T14:57:33 | 165,680,898 | 1 | 0 | Apache-2.0 | 2019-01-14T15:02:37 | 2019-01-14T15:02:36 | null | UTF-8 | C++ | false | false | 9,642 | cc | /* Copyright 2018 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
#include "tensorflow/lite/delegates/flex/buffer_map.h"
#include <gmock/gmock.h>
#include <gtest/gtest.h>
#include "tensorflow/lite/interpreter.h"
#include "tensorflow/lite/string_util.h"
#include "tensorflow/lite/testing/util.h"
#include "tensorflow/lite/util.h"
namespace tflite {
namespace flex {
namespace {
using ::testing::ElementsAre;
// A bit of RAII to simplify handling of TfLiteTensors in the tests.
using UniqueTfLiteTensor =
std::unique_ptr<TfLiteTensor, std::function<void(TfLiteTensor*)>>;
template <typename T>
UniqueTfLiteTensor MakeLiteTensor(const std::vector<int>& shape,
const std::vector<T>& data) {
auto tensor = UniqueTfLiteTensor(new TfLiteTensor, [](TfLiteTensor* t) {
TfLiteTensorDataFree(t);
TfLiteIntArrayFree(t->dims);
delete t;
});
tensor->allocation_type = kTfLiteDynamic;
tensor->type = typeToTfLiteType<T>();
tensor->dims = ConvertVectorToTfLiteIntArray(shape);
tensor->data.raw = nullptr;
tensor->is_variable = false;
TfLiteTensorRealloc(data.size() * sizeof(T), tensor.get());
memcpy(tensor->data.raw, data.data(), data.size() * sizeof(T));
return tensor;
}
template <>
UniqueTfLiteTensor MakeLiteTensor<string>(const std::vector<int>& shape,
const std::vector<string>& data) {
auto tensor = UniqueTfLiteTensor(new TfLiteTensor, [](TfLiteTensor* t) {
TfLiteTensorDataFree(t);
TfLiteIntArrayFree(t->dims);
delete t;
});
tensor->allocation_type = kTfLiteDynamic;
tensor->type = typeToTfLiteType<string>();
tensor->dims = ConvertVectorToTfLiteIntArray(shape);
tensor->data.raw = nullptr;
tensor->is_variable = false;
TfLiteTensorRealloc(data.size() * sizeof(string), tensor.get());
DynamicBuffer b;
for (const string& s : data) {
b.AddString(s.data(), s.size());
}
b.WriteToTensor(tensor.get(), ConvertVectorToTfLiteIntArray(shape));
return tensor;
}
template <typename T>
tensorflow::Tensor MakeTensor(const std::vector<int>& shape,
const std::vector<T>& data) {
BufferMap buffer_map; // BufferMap is the easiest way to build the tensor.
UniqueTfLiteTensor t1 = MakeLiteTensor<T>(shape, data);
buffer_map.SetFromTfLite(0, t1.get());
return buffer_map.GetTensor(0);
}
std::vector<tensorflow::int64> GetTensorShape(const tensorflow::Tensor& t) {
std::vector<tensorflow::int64> shape(t.dims());
for (int i = 0; i < t.dims(); ++i) {
shape[i] = t.dim_size(i);
}
return shape;
}
template <typename T>
std::vector<T> GetTensorData(const tensorflow::Tensor& t) {
const T* data = t.flat<T>().data();
return std::vector<T>(data, data + t.NumElements());
}
TEST(BufferMapTest, EmptyBuffer) {
BufferMap buffer_map;
EXPECT_FALSE(buffer_map.HasTensor(0));
}
TEST(BufferMapTest, SetFromTfLite) {
BufferMap buffer_map;
UniqueTfLiteTensor t =
MakeLiteTensor<float>({1, 2, 1, 3}, {0, 0, 0, 0.123f, 0, 0});
buffer_map.SetFromTfLite(0, t.get());
ASSERT_TRUE(buffer_map.HasTensor(0));
EXPECT_THAT(GetTensorData<float>(buffer_map.GetTensor(0)),
ElementsAre(0, 0, 0, 0.123f, 0, 0));
// Also check details of the tensor.
tensorflow::Tensor out_tensor = buffer_map.GetTensor(0);
ASSERT_EQ(out_tensor.dtype(), tensorflow::DT_FLOAT);
ASSERT_EQ(out_tensor.NumElements(), 6);
ASSERT_THAT(GetTensorShape(out_tensor), ElementsAre(1, 2, 1, 3));
}
TEST(BufferMapTest, SetFromTfLiteString) {
BufferMap buffer_map;
UniqueTfLiteTensor t =
MakeLiteTensor<string>({1, 2, 1, 3}, {"", "", "", "str1", "", ""});
buffer_map.SetFromTfLite(0, t.get());
ASSERT_TRUE(buffer_map.HasTensor(0));
EXPECT_THAT(GetTensorData<string>(buffer_map.GetTensor(0)),
ElementsAre("", "", "", "str1", "", ""));
// Also check details of the tensor.
tensorflow::Tensor out_tensor = buffer_map.GetTensor(0);
ASSERT_EQ(out_tensor.dtype(), tensorflow::DT_STRING);
ASSERT_EQ(out_tensor.NumElements(), 6);
ASSERT_THAT(GetTensorShape(out_tensor), ElementsAre(1, 2, 1, 3));
}
TEST(BufferMapTest, SetFromTfLiteTwice) {
UniqueTfLiteTensor t1 =
MakeLiteTensor<float>({1, 2, 1, 3}, {0, 0, 0, 0.123f, 0, 0});
UniqueTfLiteTensor t2 =
MakeLiteTensor<int>({1, 2, 4}, {0, 0, 0, 3, 0, 0, 1, 2});
BufferMap buffer_map;
buffer_map.SetFromTfLite(0, t1.get());
buffer_map.SetFromTfLite(0, t2.get());
EXPECT_THAT(GetTensorData<int>(buffer_map.GetTensor(0)),
ElementsAre(0, 0, 0, 3, 0, 0, 1, 2));
}
TEST(BufferMapTest, SetFromTfLiteStringTwice) {
UniqueTfLiteTensor t1 =
MakeLiteTensor<float>({1, 2, 1, 3}, {0, 0, 0, 0.123f, 0, 0});
UniqueTfLiteTensor t2 =
MakeLiteTensor<string>({1, 2, 4}, {"", "", "", "s3", "", "", "s1", "s2"});
BufferMap buffer_map;
buffer_map.SetFromTfLite(0, t1.get());
buffer_map.SetFromTfLite(0, t2.get());
EXPECT_THAT(GetTensorData<string>(buffer_map.GetTensor(0)),
ElementsAre("", "", "", "s3", "", "", "s1", "s2"));
}
TEST(BufferMapTest, SetFromTensorFlow) {
tensorflow::Tensor t1 =
MakeTensor<float>({1, 2, 1, 3}, {0, 0, 0, 0.123f, 0, 0});
BufferMap buffer_map;
buffer_map.SetFromTensorFlow(0, t1);
EXPECT_THAT(GetTensorData<float>(buffer_map.GetTensor(0)),
ElementsAre(0, 0, 0, 0.123f, 0, 0));
// Also check details of the tensor.
tensorflow::Tensor out_tensor = buffer_map.GetTensor(0);
ASSERT_EQ(out_tensor.dtype(), tensorflow::DT_FLOAT);
ASSERT_EQ(out_tensor.NumElements(), 6);
ASSERT_THAT(GetTensorShape(out_tensor), ElementsAre(1, 2, 1, 3));
}
TEST(BufferMapTest, SetFromTensorFlowTwice) {
tensorflow::Tensor t1 =
MakeTensor<float>({1, 2, 1, 3}, {0, 0, 0, 0.123f, 0, 0});
tensorflow::Tensor t2 = MakeTensor<int>({1, 2, 4}, {0, 0, 0, 3, 0, 0, 1, 2});
BufferMap buffer_map;
buffer_map.SetFromTensorFlow(0, t1);
buffer_map.SetFromTensorFlow(0, t2);
EXPECT_THAT(GetTensorData<int>(buffer_map.GetTensor(0)),
ElementsAre(0, 0, 0, 3, 0, 0, 1, 2));
}
TEST(BufferMapTest, TfLiteOverwritesTensorFlow) {
tensorflow::Tensor t1 =
MakeTensor<float>({1, 2, 1, 3}, {0, 0, 0, 0.123f, 0, 0});
UniqueTfLiteTensor t2 =
MakeLiteTensor<int>({1, 2, 4}, {0, 0, 0, 3, 0, 0, 1, 2});
BufferMap buffer_map;
buffer_map.SetFromTensorFlow(0, t1);
buffer_map.SetFromTfLite(0, t2.get());
EXPECT_FALSE(buffer_map.IsTensorFlowTensor(0));
EXPECT_THAT(GetTensorData<int>(buffer_map.GetTensor(0)),
ElementsAre(0, 0, 0, 3, 0, 0, 1, 2));
}
TEST(BufferMapTest, TensorFlowOverwritesTfLite) {
tensorflow::Tensor t1 =
MakeTensor<float>({1, 2, 1, 3}, {0, 0, 0, 0.123f, 0, 0});
UniqueTfLiteTensor t2 =
MakeLiteTensor<int>({1, 2, 4}, {0, 0, 0, 3, 0, 0, 1, 2});
BufferMap buffer_map;
buffer_map.SetFromTfLite(0, t2.get());
buffer_map.SetFromTensorFlow(0, t1);
EXPECT_TRUE(buffer_map.IsTensorFlowTensor(0));
EXPECT_THAT(GetTensorData<float>(buffer_map.GetTensor(0)),
ElementsAre(0, 0, 0, 0.123f, 0, 0));
}
TEST(BufferMapTest, RemoveTensorFlowTensor) {
tensorflow::Tensor t1 =
MakeTensor<float>({1, 2, 1, 3}, {0, 0, 0, 0.123f, 0, 0});
BufferMap buffer_map;
buffer_map.SetFromTensorFlow(0, t1);
EXPECT_TRUE(buffer_map.HasTensor(0));
buffer_map.RemoveTensor(0);
EXPECT_FALSE(buffer_map.HasTensor(0));
}
TEST(BufferMapTest, RemoveTfLiteTensor) {
UniqueTfLiteTensor t2 =
MakeLiteTensor<int>({1, 2, 4}, {0, 0, 0, 3, 0, 0, 1, 2});
BufferMap buffer_map;
buffer_map.SetFromTfLite(0, t2.get());
EXPECT_TRUE(buffer_map.HasTensor(0));
buffer_map.RemoveTensor(0);
EXPECT_FALSE(buffer_map.HasTensor(0));
}
TEST(BufferMapTest, RemoveTensorsInSet) {
tensorflow::Tensor t1 =
MakeTensor<float>({1, 2, 1, 3}, {0, 0, 0, 0.123f, 0, 0});
UniqueTfLiteTensor t2 =
MakeLiteTensor<int>({1, 2, 4}, {0, 0, 0, 3, 0, 0, 1, 2});
BufferMap buffer_map;
auto list_existing_tensors = [&buffer_map]() {
std::vector<int> result;
for (int i : {0, 1, 2, 3}) {
if (buffer_map.HasTensor(i)) {
result.push_back(i);
}
}
return result;
};
buffer_map.SetFromTensorFlow(0, t1);
buffer_map.SetFromTfLite(1, t2.get());
buffer_map.SetFromTfLite(2, t2.get());
buffer_map.SetFromTensorFlow(3, t1);
EXPECT_THAT(list_existing_tensors(), ElementsAre(0, 1, 2, 3));
buffer_map.RemoveTensorsNotInSet({0, 3});
EXPECT_THAT(list_existing_tensors(), ElementsAre(0, 1, 2, 3));
buffer_map.RemoveTensorsNotInSet({});
EXPECT_THAT(list_existing_tensors(), ElementsAre(1, 2));
}
TEST(BufferMapTest, Forwardable) {
BufferMap buffer_map;
EXPECT_FALSE(buffer_map.IsForwardable(0));
buffer_map.SetForwardable(0);
EXPECT_TRUE(buffer_map.IsForwardable(0));
buffer_map.ClearForwardable();
EXPECT_FALSE(buffer_map.IsForwardable(0));
}
} // namespace
} // namespace flex
} // namespace tflite
int main(int argc, char** argv) {
::tflite::LogToStderr();
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}
| [
"gardener@tensorflow.org"
] | gardener@tensorflow.org |
f9878da0025ab316fbe28a6de54a5cce062459f4 | 367fba5df552aef1ee9aa6add6bb512b781bc6d4 | /3rdParty/nodejs/8.0.0/source/deps/v8/src/compiler/node-properties.cc | 9243a08583beb10084c3fa0da0d9847fb60c8614 | [
"BSD-3-Clause",
"bzip2-1.0.6",
"SunPro",
"LicenseRef-scancode-free-unknown",
"MIT",
"ICU",
"NTP",
"ISC",
"LicenseRef-scancode-openssl",
"Artistic-2.0",
"LicenseRef-scancode-public-domain",
"BSD-2-Clause",
"NAIST-2003",
"Zlib",
"LicenseRef-scancode-unknown-license-reference",
"LicenseRe... | permissive | hamoriakos/ApertusVR | 2d3e5736b26404198b222d24388bb3c1c162ee69 | 14303ab54963e52409ed376cdafae5c43004074b | refs/heads/master | 2021-09-16T00:13:48.980732 | 2017-06-28T18:23:14 | 2017-06-28T18:23:14 | 105,749,913 | 0 | 1 | MIT | 2018-06-13T13:54:38 | 2017-10-04T09:11:13 | C++ | UTF-8 | C++ | false | false | 14,404 | cc | // Copyright 2015 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "src/compiler/node-properties.h"
#include "src/compiler/common-operator.h"
#include "src/compiler/graph.h"
#include "src/compiler/js-operator.h"
#include "src/compiler/linkage.h"
#include "src/compiler/node-matchers.h"
#include "src/compiler/operator-properties.h"
#include "src/compiler/simplified-operator.h"
#include "src/compiler/verifier.h"
#include "src/handles-inl.h"
#include "src/objects-inl.h"
namespace v8 {
namespace internal {
namespace compiler {
// static
int NodeProperties::PastValueIndex(Node* node) {
return FirstValueIndex(node) + node->op()->ValueInputCount();
}
// static
int NodeProperties::PastContextIndex(Node* node) {
return FirstContextIndex(node) +
OperatorProperties::GetContextInputCount(node->op());
}
// static
int NodeProperties::PastFrameStateIndex(Node* node) {
return FirstFrameStateIndex(node) +
OperatorProperties::GetFrameStateInputCount(node->op());
}
// static
int NodeProperties::PastEffectIndex(Node* node) {
return FirstEffectIndex(node) + node->op()->EffectInputCount();
}
// static
int NodeProperties::PastControlIndex(Node* node) {
return FirstControlIndex(node) + node->op()->ControlInputCount();
}
// static
Node* NodeProperties::GetValueInput(Node* node, int index) {
DCHECK(0 <= index && index < node->op()->ValueInputCount());
return node->InputAt(FirstValueIndex(node) + index);
}
// static
Node* NodeProperties::GetContextInput(Node* node) {
DCHECK(OperatorProperties::HasContextInput(node->op()));
return node->InputAt(FirstContextIndex(node));
}
// static
Node* NodeProperties::GetFrameStateInput(Node* node) {
DCHECK_EQ(1, OperatorProperties::GetFrameStateInputCount(node->op()));
return node->InputAt(FirstFrameStateIndex(node));
}
// static
Node* NodeProperties::GetEffectInput(Node* node, int index) {
DCHECK(0 <= index && index < node->op()->EffectInputCount());
return node->InputAt(FirstEffectIndex(node) + index);
}
// static
Node* NodeProperties::GetControlInput(Node* node, int index) {
DCHECK(0 <= index && index < node->op()->ControlInputCount());
return node->InputAt(FirstControlIndex(node) + index);
}
// static
bool NodeProperties::IsValueEdge(Edge edge) {
Node* const node = edge.from();
return IsInputRange(edge, FirstValueIndex(node),
node->op()->ValueInputCount());
}
// static
bool NodeProperties::IsContextEdge(Edge edge) {
Node* const node = edge.from();
return IsInputRange(edge, FirstContextIndex(node),
OperatorProperties::GetContextInputCount(node->op()));
}
// static
bool NodeProperties::IsFrameStateEdge(Edge edge) {
Node* const node = edge.from();
return IsInputRange(edge, FirstFrameStateIndex(node),
OperatorProperties::GetFrameStateInputCount(node->op()));
}
// static
bool NodeProperties::IsEffectEdge(Edge edge) {
Node* const node = edge.from();
return IsInputRange(edge, FirstEffectIndex(node),
node->op()->EffectInputCount());
}
// static
bool NodeProperties::IsControlEdge(Edge edge) {
Node* const node = edge.from();
return IsInputRange(edge, FirstControlIndex(node),
node->op()->ControlInputCount());
}
// static
bool NodeProperties::IsExceptionalCall(Node* node) {
if (node->op()->HasProperty(Operator::kNoThrow)) return false;
for (Edge const edge : node->use_edges()) {
if (!NodeProperties::IsControlEdge(edge)) continue;
if (edge.from()->opcode() == IrOpcode::kIfException) return true;
}
return false;
}
// static
void NodeProperties::ReplaceValueInput(Node* node, Node* value, int index) {
DCHECK(index < node->op()->ValueInputCount());
node->ReplaceInput(FirstValueIndex(node) + index, value);
}
// static
void NodeProperties::ReplaceValueInputs(Node* node, Node* value) {
int value_input_count = node->op()->ValueInputCount();
DCHECK_LE(1, value_input_count);
node->ReplaceInput(0, value);
while (--value_input_count > 0) {
node->RemoveInput(value_input_count);
}
}
// static
void NodeProperties::ReplaceContextInput(Node* node, Node* context) {
node->ReplaceInput(FirstContextIndex(node), context);
}
// static
void NodeProperties::ReplaceControlInput(Node* node, Node* control, int index) {
DCHECK(index < node->op()->ControlInputCount());
node->ReplaceInput(FirstControlIndex(node) + index, control);
}
// static
void NodeProperties::ReplaceEffectInput(Node* node, Node* effect, int index) {
DCHECK(index < node->op()->EffectInputCount());
return node->ReplaceInput(FirstEffectIndex(node) + index, effect);
}
// static
void NodeProperties::ReplaceFrameStateInput(Node* node, Node* frame_state) {
DCHECK_EQ(1, OperatorProperties::GetFrameStateInputCount(node->op()));
node->ReplaceInput(FirstFrameStateIndex(node), frame_state);
}
// static
void NodeProperties::RemoveNonValueInputs(Node* node) {
node->TrimInputCount(node->op()->ValueInputCount());
}
// static
void NodeProperties::RemoveValueInputs(Node* node) {
int value_input_count = node->op()->ValueInputCount();
while (--value_input_count >= 0) {
node->RemoveInput(value_input_count);
}
}
void NodeProperties::MergeControlToEnd(Graph* graph,
CommonOperatorBuilder* common,
Node* node) {
graph->end()->AppendInput(graph->zone(), node);
graph->end()->set_op(common->End(graph->end()->InputCount()));
}
// static
void NodeProperties::ReplaceUses(Node* node, Node* value, Node* effect,
Node* success, Node* exception) {
// Requires distinguishing between value, effect and control edges.
for (Edge edge : node->use_edges()) {
if (IsControlEdge(edge)) {
if (edge.from()->opcode() == IrOpcode::kIfSuccess) {
DCHECK_NOT_NULL(success);
edge.UpdateTo(success);
} else if (edge.from()->opcode() == IrOpcode::kIfException) {
DCHECK_NOT_NULL(exception);
edge.UpdateTo(exception);
} else {
DCHECK_NOT_NULL(success);
edge.UpdateTo(success);
}
} else if (IsEffectEdge(edge)) {
DCHECK_NOT_NULL(effect);
edge.UpdateTo(effect);
} else {
DCHECK_NOT_NULL(value);
edge.UpdateTo(value);
}
}
}
// static
void NodeProperties::ChangeOp(Node* node, const Operator* new_op) {
node->set_op(new_op);
Verifier::VerifyNode(node);
}
// static
Node* NodeProperties::FindFrameStateBefore(Node* node) {
Node* effect = NodeProperties::GetEffectInput(node);
while (effect->opcode() != IrOpcode::kCheckpoint) {
if (effect->opcode() == IrOpcode::kDead) return effect;
DCHECK_EQ(1, effect->op()->EffectInputCount());
effect = NodeProperties::GetEffectInput(effect);
}
Node* frame_state = GetFrameStateInput(effect);
return frame_state;
}
// static
Node* NodeProperties::FindProjection(Node* node, size_t projection_index) {
for (auto use : node->uses()) {
if (use->opcode() == IrOpcode::kProjection &&
ProjectionIndexOf(use->op()) == projection_index) {
return use;
}
}
return nullptr;
}
// static
void NodeProperties::CollectControlProjections(Node* node, Node** projections,
size_t projection_count) {
#ifdef DEBUG
DCHECK_LE(static_cast<int>(projection_count), node->UseCount());
std::memset(projections, 0, sizeof(*projections) * projection_count);
#endif
size_t if_value_index = 0;
for (Edge const edge : node->use_edges()) {
if (!IsControlEdge(edge)) continue;
Node* use = edge.from();
size_t index;
switch (use->opcode()) {
case IrOpcode::kIfTrue:
DCHECK_EQ(IrOpcode::kBranch, node->opcode());
index = 0;
break;
case IrOpcode::kIfFalse:
DCHECK_EQ(IrOpcode::kBranch, node->opcode());
index = 1;
break;
case IrOpcode::kIfSuccess:
DCHECK(!node->op()->HasProperty(Operator::kNoThrow));
index = 0;
break;
case IrOpcode::kIfException:
DCHECK(!node->op()->HasProperty(Operator::kNoThrow));
index = 1;
break;
case IrOpcode::kIfValue:
DCHECK_EQ(IrOpcode::kSwitch, node->opcode());
index = if_value_index++;
break;
case IrOpcode::kIfDefault:
DCHECK_EQ(IrOpcode::kSwitch, node->opcode());
index = projection_count - 1;
break;
default:
continue;
}
DCHECK_LT(if_value_index, projection_count);
DCHECK_LT(index, projection_count);
DCHECK_NULL(projections[index]);
projections[index] = use;
}
#ifdef DEBUG
for (size_t index = 0; index < projection_count; ++index) {
DCHECK_NOT_NULL(projections[index]);
}
#endif
}
// static
bool NodeProperties::IsSame(Node* a, Node* b) {
for (;;) {
if (a->opcode() == IrOpcode::kCheckHeapObject) {
a = GetValueInput(a, 0);
continue;
}
if (b->opcode() == IrOpcode::kCheckHeapObject) {
b = GetValueInput(b, 0);
continue;
}
return a == b;
}
}
// static
NodeProperties::InferReceiverMapsResult NodeProperties::InferReceiverMaps(
Node* receiver, Node* effect, ZoneHandleSet<Map>* maps_return) {
HeapObjectMatcher m(receiver);
if (m.HasValue()) {
Handle<Map> receiver_map(m.Value()->map());
if (receiver_map->is_stable()) {
// The {receiver_map} is only reliable when we install a stability
// code dependency.
*maps_return = ZoneHandleSet<Map>(receiver_map);
return kUnreliableReceiverMaps;
}
}
InferReceiverMapsResult result = kReliableReceiverMaps;
while (true) {
switch (effect->opcode()) {
case IrOpcode::kCheckMaps: {
Node* const object = GetValueInput(effect, 0);
if (IsSame(receiver, object)) {
*maps_return = CheckMapsParametersOf(effect->op()).maps();
return result;
}
break;
}
case IrOpcode::kJSCreate: {
if (IsSame(receiver, effect)) {
HeapObjectMatcher mtarget(GetValueInput(effect, 0));
HeapObjectMatcher mnewtarget(GetValueInput(effect, 1));
if (mtarget.HasValue() && mnewtarget.HasValue()) {
Handle<JSFunction> original_constructor =
Handle<JSFunction>::cast(mnewtarget.Value());
if (original_constructor->has_initial_map()) {
Handle<Map> initial_map(original_constructor->initial_map());
if (initial_map->constructor_or_backpointer() ==
*mtarget.Value()) {
*maps_return = ZoneHandleSet<Map>(initial_map);
return result;
}
}
}
// We reached the allocation of the {receiver}.
return kNoReceiverMaps;
}
break;
}
case IrOpcode::kStoreField: {
// We only care about StoreField of maps.
Node* const object = GetValueInput(effect, 0);
FieldAccess const& access = FieldAccessOf(effect->op());
if (access.base_is_tagged == kTaggedBase &&
access.offset == HeapObject::kMapOffset) {
if (IsSame(receiver, object)) {
Node* const value = GetValueInput(effect, 1);
HeapObjectMatcher m(value);
if (m.HasValue()) {
*maps_return = ZoneHandleSet<Map>(Handle<Map>::cast(m.Value()));
return result;
}
}
// Without alias analysis we cannot tell whether this
// StoreField[map] affects {receiver} or not.
result = kUnreliableReceiverMaps;
}
break;
}
case IrOpcode::kJSStoreMessage:
case IrOpcode::kJSStoreModule:
case IrOpcode::kStoreElement:
case IrOpcode::kStoreTypedElement: {
// These never change the map of objects.
break;
}
default: {
DCHECK_EQ(1, effect->op()->EffectOutputCount());
if (effect->op()->EffectInputCount() != 1) {
// Didn't find any appropriate CheckMaps node.
return kNoReceiverMaps;
}
if (!effect->op()->HasProperty(Operator::kNoWrite)) {
// Without alias/escape analysis we cannot tell whether this
// {effect} affects {receiver} or not.
result = kUnreliableReceiverMaps;
}
break;
}
}
DCHECK_EQ(1, effect->op()->EffectInputCount());
effect = NodeProperties::GetEffectInput(effect);
}
}
// static
MaybeHandle<Context> NodeProperties::GetSpecializationContext(
Node* node, MaybeHandle<Context> context) {
switch (node->opcode()) {
case IrOpcode::kHeapConstant:
return Handle<Context>::cast(OpParameter<Handle<HeapObject>>(node));
case IrOpcode::kParameter: {
Node* const start = NodeProperties::GetValueInput(node, 0);
DCHECK_EQ(IrOpcode::kStart, start->opcode());
int const index = ParameterIndexOf(node->op());
// The context is always the last parameter to a JavaScript function, and
// {Parameter} indices start at -1, so value outputs of {Start} look like
// this: closure, receiver, param0, ..., paramN, context.
if (index == start->op()->ValueOutputCount() - 2) {
return context;
}
break;
}
default:
break;
}
return MaybeHandle<Context>();
}
// static
Node* NodeProperties::GetOuterContext(Node* node, size_t* depth) {
Node* context = NodeProperties::GetContextInput(node);
while (*depth > 0 &&
IrOpcode::IsContextChainExtendingOpcode(context->opcode())) {
context = NodeProperties::GetContextInput(context);
(*depth)--;
}
return context;
}
// static
Type* NodeProperties::GetTypeOrAny(Node* node) {
return IsTyped(node) ? node->type() : Type::Any();
}
// static
bool NodeProperties::AllValueInputsAreTyped(Node* node) {
int input_count = node->op()->ValueInputCount();
for (int index = 0; index < input_count; ++index) {
if (!IsTyped(GetValueInput(node, index))) return false;
}
return true;
}
// static
bool NodeProperties::IsInputRange(Edge edge, int first, int num) {
if (num == 0) return false;
int const index = edge.index();
return first <= index && index < first + num;
}
} // namespace compiler
} // namespace internal
} // namespace v8
| [
"akos.hamori@sztaki.mta.hu"
] | akos.hamori@sztaki.mta.hu |
7e33679d1992cd6520bbbf370e15d66b14be9088 | c064c3714e6bf9c8ad8adcb6acc1633152818ce9 | /iree/hal/descriptor_set.h | d2aceb1363213fb7f3b170f662b205ea46a220ef | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | qqsun8819/iree | 9d214e88c3881cd16c78422c2556bc7bf9fddb9b | bd3c9b4b91886fecf5890238d7587a6188fedd0b | refs/heads/master | 2022-09-26T23:55:56.094268 | 2020-03-26T03:15:32 | 2020-03-26T03:30:35 | 250,192,137 | 1 | 0 | Apache-2.0 | 2020-03-26T07:41:45 | 2020-03-26T07:41:44 | null | UTF-8 | C++ | false | false | 2,017 | h | // Copyright 2020 Google LLC
//
// 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
//
// https://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 "iree/hal/buffer.h"
#include "iree/hal/resource.h"
#ifndef IREE_HAL_DESCRIPTOR_SET_H_
#define IREE_HAL_DESCRIPTOR_SET_H_
namespace iree {
namespace hal {
// Opaque handle to a descriptor set object.
//
// Maps to VkDescriptorSet:
// https://www.khronos.org/registry/vulkan/specs/1.2-extensions/man/html/VkDescriptorSet.html
class DescriptorSet : public Resource {
public:
// Specifies a descriptor set binding.
struct Binding {
// The binding number of this entry and corresponds to a resource of the
// same binding number in the executable interface.
int32_t binding = 0;
// Buffer bound to the binding number.
// May be nullptr if the binding is not used by the executable.
ref_ptr<Buffer> buffer;
// Offset, in bytes, into the buffer that the binding starts at.
// If the descriptor type is dynamic this will be added to the dynamic
// offset provided during binding.
device_size_t offset = 0;
// Length, in bytes, of the buffer that is available to the executable.
// This can be kWholeBuffer, however note that if the entire buffer
// contents are larger than supported by the device (~128MiB, usually) this
// will fail. If the descriptor type is dynamic this will be used for all
// ranges regardless of offset.
device_size_t length = kWholeBuffer;
};
};
} // namespace hal
} // namespace iree
#endif // IREE_HAL_DESCRIPTOR_SET_H_
| [
"copybara-worker@google.com"
] | copybara-worker@google.com |
e5bfb35e840556f575ecc9e8508d690e5db66073 | 28d68af73c56375314efd07eaf6a1a9241a51ce3 | /aws-cpp-sdk-autoscaling/source/model/Tag.cpp | 2738b3b9ef9ea3e2ebd2cc3854e8b88a32e95c1a | [
"JSON",
"MIT",
"Apache-2.0"
] | permissive | zeliard/aws-sdk-cpp | 93b560791fa359be25b201e9a6513bc3cb415046 | 14119f1f5bc159ce00a1332f86e117362afd3cb6 | refs/heads/master | 2021-01-16T22:49:18.731977 | 2016-01-04T01:54:38 | 2016-01-04T01:54:38 | 41,892,393 | 0 | 1 | null | 2015-09-04T01:35:43 | 2015-09-04T01:35:43 | null | UTF-8 | C++ | false | false | 4,246 | cpp | /*
* Copyright 2010-2015 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
#include <aws/autoscaling/model/Tag.h>
#include <aws/core/utils/xml/XmlSerializer.h>
#include <aws/core/utils/StringUtils.h>
#include <aws/core/utils/memory/stl/AWSStringStream.h>
#include <utility>
using namespace Aws::AutoScaling::Model;
using namespace Aws::Utils::Xml;
using namespace Aws::Utils;
Tag::Tag() :
m_resourceIdHasBeenSet(false),
m_resourceTypeHasBeenSet(false),
m_keyHasBeenSet(false),
m_valueHasBeenSet(false),
m_propagateAtLaunch(false),
m_propagateAtLaunchHasBeenSet(false)
{
}
Tag::Tag(const XmlNode& xmlNode) :
m_resourceIdHasBeenSet(false),
m_resourceTypeHasBeenSet(false),
m_keyHasBeenSet(false),
m_valueHasBeenSet(false),
m_propagateAtLaunch(false),
m_propagateAtLaunchHasBeenSet(false)
{
*this = xmlNode;
}
Tag& Tag::operator =(const XmlNode& xmlNode)
{
XmlNode resultNode = xmlNode;
if(!resultNode.IsNull())
{
XmlNode resourceIdNode = resultNode.FirstChild("ResourceId");
if(!resourceIdNode.IsNull())
{
m_resourceId = StringUtils::Trim(resourceIdNode.GetText().c_str());
m_resourceIdHasBeenSet = true;
}
XmlNode resourceTypeNode = resultNode.FirstChild("ResourceType");
if(!resourceTypeNode.IsNull())
{
m_resourceType = StringUtils::Trim(resourceTypeNode.GetText().c_str());
m_resourceTypeHasBeenSet = true;
}
XmlNode keyNode = resultNode.FirstChild("Key");
if(!keyNode.IsNull())
{
m_key = StringUtils::Trim(keyNode.GetText().c_str());
m_keyHasBeenSet = true;
}
XmlNode valueNode = resultNode.FirstChild("Value");
if(!valueNode.IsNull())
{
m_value = StringUtils::Trim(valueNode.GetText().c_str());
m_valueHasBeenSet = true;
}
XmlNode propagateAtLaunchNode = resultNode.FirstChild("PropagateAtLaunch");
if(!propagateAtLaunchNode.IsNull())
{
m_propagateAtLaunch = StringUtils::ConvertToBool(StringUtils::Trim(propagateAtLaunchNode.GetText().c_str()).c_str());
m_propagateAtLaunchHasBeenSet = true;
}
}
return *this;
}
void Tag::OutputToStream(Aws::OStream& oStream, const char* location, unsigned index, const char* locationValue) const
{
if(m_resourceIdHasBeenSet)
{
oStream << location << index << locationValue << ".ResourceId=" << StringUtils::URLEncode(m_resourceId.c_str()) << "&";
}
if(m_resourceTypeHasBeenSet)
{
oStream << location << index << locationValue << ".ResourceType=" << StringUtils::URLEncode(m_resourceType.c_str()) << "&";
}
if(m_keyHasBeenSet)
{
oStream << location << index << locationValue << ".Key=" << StringUtils::URLEncode(m_key.c_str()) << "&";
}
if(m_valueHasBeenSet)
{
oStream << location << index << locationValue << ".Value=" << StringUtils::URLEncode(m_value.c_str()) << "&";
}
if(m_propagateAtLaunchHasBeenSet)
{
oStream << location << index << locationValue << ".PropagateAtLaunch=" << m_propagateAtLaunch << "&";
}
}
void Tag::OutputToStream(Aws::OStream& oStream, const char* location) const
{
if(m_resourceIdHasBeenSet)
{
oStream << location << ".ResourceId=" << StringUtils::URLEncode(m_resourceId.c_str()) << "&";
}
if(m_resourceTypeHasBeenSet)
{
oStream << location << ".ResourceType=" << StringUtils::URLEncode(m_resourceType.c_str()) << "&";
}
if(m_keyHasBeenSet)
{
oStream << location << ".Key=" << StringUtils::URLEncode(m_key.c_str()) << "&";
}
if(m_valueHasBeenSet)
{
oStream << location << ".Value=" << StringUtils::URLEncode(m_value.c_str()) << "&";
}
if(m_propagateAtLaunchHasBeenSet)
{
oStream << location << ".PropagateAtLaunch=" << m_propagateAtLaunch << "&";
}
}
| [
"henso@amazon.com"
] | henso@amazon.com |
aed917814e537c100eebb7e1fa13b6cead4afc9e | 4248b80324ed095f8ad83f1691f3c768722f1518 | /EMApplicationInit.cpp | f060ba9da9ec9213f6cefe8b0a7c51f046126a6b | [] | no_license | INTERMAGNET/QDC | 01a5101dca8215d5fcb2c5da36f9c0e2ba3ab555 | 74d5facfcc3b720c6d967bd212948b563dac2589 | refs/heads/master | 2020-07-04T22:54:28.513933 | 2019-08-15T01:24:40 | 2019-08-15T01:24:40 | 202,449,497 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,708 | cpp | #include <iostream>
#include <string>
using namespace std;
#include <boost/program_options/errors.hpp>
#include "EMApplicationInit.hpp"
using namespace EM;
// Documentation
namespace {
// These options are referred to by value in operator()
const char HELP[] ="help"; const char Help='?';
const char VER[] ="version";
const char USAGE[] ="usage";
const char ABOUT[] ="about";
const char EXAMPLE[] ="example";
const char ENV[] ="environment"; const char Env ='E';
const char CFG[] ="configuration"; const char Cfg ='F';
//const char OTR[] ="other"; const char Otr ='o';
//const char STR[] ="string"; const char Str ='s';
//inline const char* concat(const char* c1, const char* c2) {return (string(c1)+c2).c_str();}
class CheckENV {// This is to avoid the default UPPER->LOWER case conversion for environment variables
public:
CheckENV(string s):env(s), length(s.size()){}
string env;
size_t length;
string operator()(string s) {
if (s.substr(0,length)==env) return s.substr(length,string::npos);
else return string();
}
};
};
EMApplicationInit::EMApplicationInit(EMApplication &app, int c, char **v)
:emApp(app), argc(c), argv(v)
,commandLineOptions("<<Command Line options>>"), options("<<General options>>")
{
commandLineOptions.add_options()
((string(HELP)+","+Help).c_str(),"Show all help (version, usage, about, example)")
((string(VER)).c_str(),"Show version of this program ")
((string(USAGE)).c_str(),"Show how to invoke this program")
((string(ABOUT)).c_str(),"Show information about this program")
((string(EXAMPLE)).c_str(),"Show an example invocation of this program")
((string(ENV) +","+Env ).c_str(),PO::value< vector<string> >(),"Use prefixed environment variables")
;
options.add_options()
((string(CFG) +","+Cfg ).c_str(),PO::value< vector<string> >()->composing(),"Use configuration file")
;
//options.add_options()
//((string(OTR) +","+Otr ).c_str(),PO::value( &emApp.i ) ->default_value(0),"Other")
//((string(STR) +","+Str ).c_str(),PO::value( &emApp.s ) ->default_value("x"),"String")
//;
//cout<<"EMApplicationInit::EMApplicationInit(EMApplication &app, int c, char **v) "<<notifyList.size()<<" "<<notifyList.capacity()<<endl;
//cout<<"EMApplicationInit::EMApplicationInit(EMApplication &app, int c, char **v) "<<argc<<" "<<endl;
//cout<<"EMApplicationInit::EMApplicationInit(EMApplication &app, int c, char **v) "<<commandLineOptions<<" "<<sizeof(commandLineOptions)<<endl;
//cout<<"EMApplicationInit::EMApplicationInit(EMApplication &app, int c, char **v) "<<options<<" "<<sizeof(options)<<endl;
}
EMApplicationInit::~EMApplicationInit(){}
int EMApplicationInit::operator()() {
commandLineOptions.add(options);
emApp.invokedAs = string(argv[0]);
try {
PO::store(PO::command_line_parser(argc, argv).options(commandLineOptions).positional(positionals).run(), map);
PO::notify(map);
}
catch(PO::error& e) {
cerr << "Command line: " << e.what() << endl;
throw EMApplicationException("Initialisation error");
}
bool bHelp=false, bHelpPartial=false;
if (map.count(HELP)) {
cout<< "Help for " << emApp.name() << " (invoked as "<<emApp.invokedAs <<")\n"
<<endl;
bHelp=true;
}
if (bHelp || map.count(VER)) {
if (bHelp) cout<<"Version\n-------\n";
cout<< "Application " << emApp.name() << '\n'
<< "Version " << emApp.versionMajor() << '.' << emApp.versionMinor() << '.' << emApp.versionRelease() << '\n'
<< "Author " << emApp.author() << '\n'
<< "Copyright " << emApp.copyright() << '\n'
<<endl;
bHelpPartial=true;
}
if (bHelp || map.count(USAGE)) {
if (bHelp) cout<<"Usage\n-----\n";
cout<< emApp.name() <<'\n'
<<commandLineOptions
<<endl;
bHelpPartial=true;
}
if (bHelp || map.count(ABOUT)) {
if (bHelp) cout<<"About\n-----\n";
cout<< emApp.about()
<<endl;
bHelpPartial=true;
}
if (bHelp || map.count(EXAMPLE)) {
if (bHelp) cout<<"Example\n-------\n";
cout<<emApp.example()
<<endl;
bHelpPartial=true;
}
if (bHelp || bHelpPartial) return 1;
if (map.count(ENV)) {// ENV options are not chained, unlike CFG options
const vector<string> &v(map["environment"].as<vector <string> >());
for (int i=0; i < v.size(); i++) {
try {
//PO::store(PO::parse_environment(options, v[i]), map);
CheckENV ENV(v[i]);
PO::store(PO::parse_environment(options, ENV), map);
}
catch(PO::error& e) {
cerr << "Environment "<<v[i]<<": " << e.what() << endl;
throw EMApplicationException("Initialisation error");
}
}
PO::notify(map);
}
if (map.count(CFG)) {// composing() CFG option allows CFG files to be chained and possibly an infinite loop.
// A limit is placed on the number of CFG files to avoid this.
// Note that map.count(CFG) may change during this loop if CFG files are chained.
const vector<string> &v(map[CFG].as<vector <string> >());
for (int i=0; i < v.size(); i++) {
if (i>=MAXCFG) {
cerr<<"Too many configuration files(max="<<MAXCFG<<"). Infinite loop?"<<endl;
throw EMApplicationException("Initialisation error");
}
ifstream ifs(v[i].c_str());
if (ifs) {
try {
PO::store(PO::parse_config_file(ifs, options), map);
}
catch(PO::error& e) {
cerr << "Configuration "<<v[i]<<": " << e.what() << endl;
throw EMApplicationException("Initialisation error");
}
} else {
cerr <<"Configuration file "<<v[i]<<" not found."<<endl;
throw EMApplicationException("Initialisation error");
}
}
PO::notify(map);
}
//cout <<"About to notify init's"<<endl;
vector<EMApplicationInit*>::const_iterator i=notifyList.begin();
int ret=0;
for(i; i != notifyList.end(); i++) {
if ( (ret=(*i)->init()) ) break;
}
//cout <<"Notify init's complete"<<endl;
return ret;
};
#if 0
#include <iostream>
#include <fstream>
#include <vector>
#include <iterator>
using namespace std;
#include "EMApplicationInit.hpp"
using namespace EM;
namespace {
// These options are referred to by value in operator()
const char HELP[] ="help";
const char VER[] ="version";
const char ENV[] ="environment";
const char PRI[] ="priority";
const char CFG[] ="configuration";
const char DAEMON[]="daemon";
inline const char* concat(const char* c1, const char* c2) {return (string(c1)+c2).c_str();}
};
EMApplicationInit::EMApplicationInit(EMApplication &theApplication)
:commandLineOptions("<<Command Line options>>"), options("<<General options>>")
,app_(theApplication)
{
commandLineOptions.add_options()
(concat(HELP ,",?"),"Show this help message")
(concat(VER ,",V"),"Show program version")
;
options.add_options()
(concat(ENV ,",E"),PO::value< vector<string> >(),"Use prefixed environment variables")
(concat(CFG ,",F"),PO::value< vector<string> >()->composing(),"Use configuration file")
(concat(PRI ,",P"),PO::value<int>(),"Priority")
(concat(DAEMON,",D"),PO::bool_switch(),"Make the process a daemon")
("verbose,v",PO::value(&app_.verbose_)->default_value(0),"Level of messages")
("size,Z",PO::value(&app_.logFileSize_)->default_value(0),"Maximum log file size")
("log,L",PO::value(&app_.logFileHint_)->default_value(app_.program_+".log")
,"Log file name hint(tail Day.log uses {Mon..Sun}.log)")
;
}
EMApplicationInit::~EMApplicationInit()
{
}
const int MAXCFG = 3;
int EMApplicationInit::operator()(int argc, char *argv[])
{
// positionals.add("positional",-1); // add positional parameters at derived levels
commandLineOptions.add(options);
PO::store(PO::command_line_parser(argc, argv).options(commandLineOptions).positional(positionals).run(), map);
PO::notify(map);
if (map.count(HELP)) {
cout << "Usage : "<<app_.program_<<" [options]"<<endl<<commandLineOptions<<endl;
return 1;
}
if (map.count(VER)) {
cout<<"Application:"<<app_.program_ <<" Version:"<< app_.version_ <<" Author:"<< app_.author_ <<endl;
return 1;
}
if (map.count(ENV)) {
// ENV options are not chained, unlike CFG options
const vector<string> &v(map["environment"].as<vector <string> >());
for (int i=0; i < v.size(); i++) {
PO::store(PO::parse_environment(options, v[i]), map);
cerr <<"environment="<<v[i]<<" : read"<<endl;
}
PO::notify(map);
}
if (map.count(CFG)) {
// composing() CFG option allows CFG files to be chained and possibly an infinite loop.
// A limit is placed on the number of CFG files to avoid this.
// Note that map.count(CFG) may change during this loop if CFG files are chained.
const vector<string> &v(map["configuration"].as<vector <string> >());
for (int i=0; i < v.size(); i++) {
cerr <<"configuration="<<v[i]<<" : ";
if (i>=MAXCFG) {
cerr<<"Too many configuration files(max="<<MAXCFG<<"). Infinite loop?"<<endl;
return 1;
}
ifstream ifs(v[i].c_str());
if (ifs) {
PO::store(PO::parse_config_file(ifs, options), map);
cerr <<"read."<<endl;
} else {
cerr <<"could not be found."<<endl;
return 1;
}
}
PO::notify(map);
}
if (map.count(PRI)) {
cout <<"Prority!"<<map["priority"].as<int>()<<endl;
}
if (map[DAEMON].as<bool>()) {
cout <<"Daemon!"<<endl;
}
{ app_.logMethod_ = EMApplication::SizedFile;
const string Daylog = "Day.log";
if (app_.logFileHint_.rfind(Daylog)==(app_.logFileHint_.size()-Daylog.size()))
app_.logMethod_ = EMApplication::DailyFile;
}
return 0;
}
#endif
| [
"noreply@github.com"
] | noreply@github.com |
d17286d1017be9c9e17a14b90965de134773f1c2 | 5a5faa0ae0f2a628868e04c72ea70adaa414c76c | /auto.cpp | 3ae2c5c845f552cc391444a59b52b9d503a0effe | [] | no_license | zhang19960128/transform_dftmd_moldyin | 7902ad39d4ab065d511afb1ba7e3445b7ec6f609 | 3809085574078128a1781860790c34e440b64b7c | refs/heads/master | 2020-03-28T15:09:27.209204 | 2019-04-11T19:40:41 | 2019-04-11T19:40:41 | 148,561,813 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,337 | cpp | #include <list>
#include <vector>
#include <iostream>
#include <fstream>
#include <istream>
#include <complex.h>
#include <fftw3.h>
#include <string>
#include <math.h>
double innerprod(std::list<double*>& ve_list,int atomnum,size_t framei,size_t framej){
double sum=0.0;
std::list<double*>::iterator framei_iterator=ve_list.begin();
std::list<double*>::iterator framej_iterator=ve_list.begin();
for(size_t i=0;i<framei;i++){
framei_iterator++;
}
for(size_t j=0;j<framej;j++){
framej_iterator++;
}
for(size_t i=0;i<3*atomnum;i++){
sum=sum+(*framei_iterator)[i]*(*framej_iterator)[i];
}
return sum;
}
double autocorre(std::list<double*>& ve_list,int atomnum,size_t interval){
double sum=0.0;
size_t len=ve_list.size();
for(size_t i=0;i<len-interval;i++){
sum=sum+innerprod(ve_list,atomnum,i,i+interval);
}
return sum/(len-interval);
}
void autospeed(std::list<double*>& ve_list,int atomnum){
size_t len=ve_list.size();
double* in=new double[len];
std::vector<std::vector<double> >allvelocity(len,std::vector<double>(atomnum*3,0.0));
for(struct{std::list<double* >::iterator a;size_t i;} s={ve_list.begin(),0};s.a!=ve_list.end();s.a++,s.i++){
for(size_t j=0;j<atomnum*3;j++){
allvelocity[s.i][j]=(*s.a)[j];
}
}
for(size_t i=0;i<len;i++){
in[i]=allvelocity[i][0];
}
fftw_complex *out,*outall;/* Output */
fftw_plan p;/*Plan*/
out=(fftw_complex* ) fftw_malloc(sizeof(fftw_complex)*(len/2+1));
outall=(fftw_complex* )fftw_malloc(sizeof(fftw_complex)*(len/2+1));
std::fstream power_spectra;
power_spectra.open("power.txt",std::fstream::out);
for(size_t i=0;i<len/2+1;i++){
outall[i][0]=0.0;
outall[i][1]=0.0;
}
for(size_t i=0;i<atomnum*3;i++){
for(size_t j=0;j<len;j++){
in[j]=allvelocity[j][i];
}
p=fftw_plan_dft_r2c_1d(len,in,out,FFTW_ESTIMATE);
for(size_t j=0;j<len/2+1;j++){
outall[j][0]=outall[j][0]+out[j][0];
outall[j][1]=outall[j][1]+out[j][1];
}
fftw_execute(p);
fftw_destroy_plan(p);
}
for(size_t i=0;i<len/2+1;i++){
outall[i][0]=outall[i][0]/(len/2+1);
outall[i][1]=outall[i][1]/(len/2+1);
}
power_spectra<<"Freqeucy(cm^-1) Amplitude"<<std::endl;
for(size_t i=0;i<len/2+1;i++){
//0.029999 transform Thz to cm^-1
power_spectra<<i/(len+0.0)*2*3.141592653*1000*33.356<<" "<<outall[i][0]*outall[i][0]+outall[i][1]*outall[i][1]<<std::endl;
}
fftw_free(out);
}
int main(){
double timestep=1.0;//timestep 1fs
int atomnum=48;
std::vector<double> old_position(atomnum*3,0.0);
std::vector<double> new_position(atomnum*3,0.0);
std::vector<std::vector<double> > unit_vector(3,std::vector<double>(3,0.0));
double* velocity_temp;
std::list<double* > velocity;
double temp_double;
double double_x;
double double_y;
double double_z;
std::string temp_string;
std::fstream fs;
std::istringstream stream_temp;
fs.open("IonFor.dat.MD.jiahao",std::fstream::in);
while(getline(fs,temp_string)){
if(temp_string.find("Reduced ionic position")!=std::string::npos){
for(size_t i=0;i<atomnum*3;i++){
old_position[i]=new_position[i];
}
for(size_t i=0;i<atomnum;i++){
stream_temp.clear();
getline(fs,temp_string);
stream_temp.clear();
stream_temp.str(temp_string);
for(size_t j=0;j<3;j++){
stream_temp>>new_position[3*i+j];
}
stream_temp.clear();
}
velocity_temp=new double [atomnum*3];
for(size_t i=0;i<atomnum*3;i++){
temp_double=new_position[i]-old_position[i];
velocity_temp[i]=(temp_double-round(temp_double))/timestep;
}
}
if(temp_string.find("Lattice unit vectors")!=std::string::npos){
for(size_t i=0;i<3;i++){
getline(fs,temp_string);
stream_temp.clear();
stream_temp.str(temp_string);
for(size_t j=0;j<3;j++){
stream_temp>>unit_vector[i][j];
}
}
for(size_t i=0;i<atomnum;i++){
double_x=0.0;
double_y=0.0;
double_z=0.0;
for(size_t j=0;j<3;j++){
double_x=double_x+velocity_temp[3*i+j]*unit_vector[j][0];
double_y=double_y+velocity_temp[3*i+j]*unit_vector[j][1];
double_z=double_x+velocity_temp[3*i+j]*unit_vector[j][2];
}
velocity_temp[3*i+0]=double_x;
velocity_temp[3*i+1]=double_y;
velocity_temp[3*i+2]=double_z;
}
velocity.push_back(velocity_temp);
}
}
autospeed(velocity,atomnum);
for(std::list<double* >::iterator a=velocity.begin();a!=velocity.end();a++){
delete [] *a;
}
}
| [
"zjh199601283492@gmail.com"
] | zjh199601283492@gmail.com |
0cf1dc0a8fb959814fa0cf8d1abe88b0eb57e080 | 470fae08316b55246ab01675ac5013febfb13eee | /src/server/game/Handlers/AzeriteHandler.cpp | 01b10804fd215ecb6d6b18fb7b15f92e9f7b55cb | [] | no_license | adde13372/shadowcore | 8db6fb6ccc99821e6bd40237a0c284ce7cf543c2 | aa87944193ce02f6e99f7b35eceac5023abfca1b | refs/heads/main | 2023-04-01T07:38:39.359558 | 2021-04-03T07:54:17 | 2021-04-03T07:54:17 | 354,320,611 | 4 | 8 | null | 2021-04-03T15:02:49 | 2021-04-03T15:02:49 | null | UTF-8 | C++ | false | false | 10,681 | cpp | /*
* Copyright 2021 ShadowCore
* 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 "WorldSession.h"
#include "AzeriteEmpoweredItem.h"
#include "AzeriteItem.h"
#include "AzeritePackets.h"
#include "DB2Stores.h"
#include "Player.h"
#include "SpellHistory.h"
void WorldSession::HandleAzeriteEssenceUnlockMilestone(WorldPackets::Azerite::AzeriteEssenceUnlockMilestone& azeriteEssenceUnlockMilestone)
{
if (!AzeriteItem::FindHeartForge(_player))
return;
Item* item = _player->GetItemByEntry(ITEM_ID_HEART_OF_AZEROTH, ITEM_SEARCH_EVERYWHERE);
if (!item)
return;
AzeriteItem* azeriteItem = item->ToAzeriteItem();
if (!azeriteItem || !azeriteItem->CanUseEssences())
return;
AzeriteItemMilestonePowerEntry const* milestonePower = sAzeriteItemMilestonePowerStore.LookupEntry(azeriteEssenceUnlockMilestone.AzeriteItemMilestonePowerID);
if (!milestonePower || milestonePower->RequiredLevel > int32(azeriteItem->GetLevel()))
return;
// check that all previous milestones are unlocked
for (AzeriteItemMilestonePowerEntry const* previousMilestone : sDB2Manager.GetAzeriteItemMilestonePowers())
{
if (previousMilestone == milestonePower)
break;
if (!azeriteItem->HasUnlockedEssenceMilestone(previousMilestone->ID))
return;
}
azeriteItem->AddUnlockedEssenceMilestone(milestonePower->ID);
_player->ApplyAzeriteItemMilestonePower(azeriteItem, milestonePower, true);
azeriteItem->SetState(ITEM_CHANGED, _player);
}
void WorldSession::HandleAzeriteEssenceActivateEssence(WorldPackets::Azerite::AzeriteEssenceActivateEssence& azeriteEssenceActivateEssence)
{
WorldPackets::Azerite::ActivateEssenceFailed activateEssenceResult;
activateEssenceResult.AzeriteEssenceID = azeriteEssenceActivateEssence.AzeriteEssenceID;
Item* item = _player->GetItemByEntry(ITEM_ID_HEART_OF_AZEROTH, ITEM_SEARCH_IN_EQUIPMENT);
if (!item)
{
activateEssenceResult.Reason = AzeriteEssenceActivateResult::NotEquipped;
activateEssenceResult.Slot = azeriteEssenceActivateEssence.Slot;
SendPacket(activateEssenceResult.Write());
return;
}
AzeriteItem* azeriteItem = item->ToAzeriteItem();
if (!azeriteItem || !azeriteItem->CanUseEssences())
{
activateEssenceResult.Reason = AzeriteEssenceActivateResult::ConditionFailed;
SendPacket(activateEssenceResult.Write());
return;
}
if (azeriteEssenceActivateEssence.Slot >= MAX_AZERITE_ESSENCE_SLOT || !azeriteItem->HasUnlockedEssenceSlot(azeriteEssenceActivateEssence.Slot))
{
activateEssenceResult.Reason = AzeriteEssenceActivateResult::SlotLocked;
SendPacket(activateEssenceResult.Write());
return;
}
UF::SelectedAzeriteEssences const* selectedEssences = azeriteItem->GetSelectedAzeriteEssences();
// essence is already in that slot, nothing to do
if (selectedEssences && selectedEssences->AzeriteEssenceID[azeriteEssenceActivateEssence.Slot] == uint32(azeriteEssenceActivateEssence.AzeriteEssenceID))
return;
uint32 rank = azeriteItem->GetEssenceRank(azeriteEssenceActivateEssence.AzeriteEssenceID);
if (!rank)
{
activateEssenceResult.Reason = AzeriteEssenceActivateResult::EssenceNotUnlocked;
activateEssenceResult.Arg = azeriteEssenceActivateEssence.AzeriteEssenceID;
SendPacket(activateEssenceResult.Write());
return;
}
if (_player->IsInCombat())
{
activateEssenceResult.Reason = AzeriteEssenceActivateResult::AffectingCombat;
activateEssenceResult.Slot = azeriteEssenceActivateEssence.Slot;
SendPacket(activateEssenceResult.Write());
return;
}
if (_player->isDead())
{
activateEssenceResult.Reason = AzeriteEssenceActivateResult::CantDoThatRightNow;
activateEssenceResult.Slot = azeriteEssenceActivateEssence.Slot;
SendPacket(activateEssenceResult.Write());
return;
}
if (!_player->HasPlayerFlag(PLAYER_FLAGS_RESTING) && !_player->HasUnitFlag2(UNIT_FLAG2_ALLOW_CHANGING_TALENTS))
{
activateEssenceResult.Reason = AzeriteEssenceActivateResult::NotInRestArea;
activateEssenceResult.Slot = azeriteEssenceActivateEssence.Slot;
SendPacket(activateEssenceResult.Write());
return;
}
if (selectedEssences)
{
// need to remove selected essence from another slot if selected
int32 removeEssenceFromSlot = -1;
for (int32 slot = 0; slot < MAX_AZERITE_ESSENCE_SLOT; ++slot)
if (azeriteEssenceActivateEssence.Slot != uint8(slot) && selectedEssences->AzeriteEssenceID[slot] == uint32(azeriteEssenceActivateEssence.AzeriteEssenceID))
removeEssenceFromSlot = slot;
// check cooldown of major essence slot
if (selectedEssences->AzeriteEssenceID[0] && (azeriteEssenceActivateEssence.Slot == 0 || removeEssenceFromSlot == 0))
{
for (uint32 essenceRank = 1; essenceRank <= rank; ++essenceRank)
{
AzeriteEssencePowerEntry const* azeriteEssencePower = ASSERT_NOTNULL(sDB2Manager.GetAzeriteEssencePower(selectedEssences->AzeriteEssenceID[0], essenceRank));
if (_player->GetSpellHistory()->HasCooldown(azeriteEssencePower->MajorPowerDescription))
{
activateEssenceResult.Reason = AzeriteEssenceActivateResult::CantRemoveEssence;
activateEssenceResult.Arg = azeriteEssencePower->MajorPowerDescription;
activateEssenceResult.Slot = azeriteEssenceActivateEssence.Slot;
SendPacket(activateEssenceResult.Write());
return;
}
}
}
if (removeEssenceFromSlot != -1)
{
_player->ApplyAzeriteEssence(azeriteItem, selectedEssences->AzeriteEssenceID[removeEssenceFromSlot], MAX_AZERITE_ESSENCE_RANK,
AzeriteItemMilestoneType(sDB2Manager.GetAzeriteItemMilestonePower(removeEssenceFromSlot)->Type) == AzeriteItemMilestoneType::MajorEssence, false);
azeriteItem->SetSelectedAzeriteEssence(removeEssenceFromSlot, 0);
}
if (selectedEssences->AzeriteEssenceID[azeriteEssenceActivateEssence.Slot])
{
_player->ApplyAzeriteEssence(azeriteItem, selectedEssences->AzeriteEssenceID[azeriteEssenceActivateEssence.Slot], MAX_AZERITE_ESSENCE_RANK,
AzeriteItemMilestoneType(sDB2Manager.GetAzeriteItemMilestonePower(azeriteEssenceActivateEssence.Slot)->Type) == AzeriteItemMilestoneType::MajorEssence, false);
}
}
else
azeriteItem->CreateSelectedAzeriteEssences(_player->GetPrimarySpecialization());
azeriteItem->SetSelectedAzeriteEssence(azeriteEssenceActivateEssence.Slot, azeriteEssenceActivateEssence.AzeriteEssenceID);
_player->ApplyAzeriteEssence(azeriteItem, azeriteEssenceActivateEssence.AzeriteEssenceID, rank,
AzeriteItemMilestoneType(sDB2Manager.GetAzeriteItemMilestonePower(azeriteEssenceActivateEssence.Slot)->Type) == AzeriteItemMilestoneType::MajorEssence, true);
azeriteItem->SetState(ITEM_CHANGED, _player);
}
void WorldSession::HandleAzeriteEmpoweredItemViewed(WorldPackets::Azerite::AzeriteEmpoweredItemViewed& azeriteEmpoweredItemViewed)
{
Item* item = _player->GetItemByGuid(azeriteEmpoweredItemViewed.ItemGUID);
if (!item || !item->IsAzeriteEmpoweredItem())
return;
item->AddItemFlag(ITEM_FIELD_FLAG_AZERITE_EMPOWERED_ITEM_VIEWED);
item->SetState(ITEM_CHANGED, _player);
}
void WorldSession::HandleAzeriteEmpoweredItemSelectPower(WorldPackets::Azerite::AzeriteEmpoweredItemSelectPower& azeriteEmpoweredItemSelectPower)
{
Item* item = _player->GetItemByPos(azeriteEmpoweredItemSelectPower.ContainerSlot, azeriteEmpoweredItemSelectPower.Slot);
if (!item)
return;
AzeritePowerEntry const* azeritePower = sAzeritePowerStore.LookupEntry(azeriteEmpoweredItemSelectPower.AzeritePowerID);
if (!azeritePower)
return;
AzeriteEmpoweredItem* azeriteEmpoweredItem = item->ToAzeriteEmpoweredItem();
if (!azeriteEmpoweredItem)
return;
// Validate tier
int32 actualTier = azeriteEmpoweredItem->GetTierForAzeritePower(Classes(_player->getClass()), azeriteEmpoweredItemSelectPower.AzeritePowerID);
if (azeriteEmpoweredItemSelectPower.Tier > MAX_AZERITE_EMPOWERED_TIER || azeriteEmpoweredItemSelectPower.Tier != actualTier)
return;
uint32 azeriteLevel = 0;
Item const* heartOfAzeroth = _player->GetItemByEntry(ITEM_ID_HEART_OF_AZEROTH, ITEM_SEARCH_EVERYWHERE);
if (!heartOfAzeroth)
return;
if (AzeriteItem const* azeriteItem = heartOfAzeroth->ToAzeriteItem())
azeriteLevel = azeriteItem->GetEffectiveLevel();
// Check required heart of azeroth level
if (azeriteLevel < azeriteEmpoweredItem->GetRequiredAzeriteLevelForTier(uint32(actualTier)))
return;
// tiers are ordered backwards, you first select the highest one
for (int32 i = actualTier + 1; i < azeriteEmpoweredItem->GetMaxAzeritePowerTier(); ++i)
if (!azeriteEmpoweredItem->GetSelectedAzeritePower(i))
return;
bool activateAzeritePower = azeriteEmpoweredItem->IsEquipped() && heartOfAzeroth->IsEquipped();
if (azeritePower->ItemBonusListID && activateAzeritePower)
_player->_ApplyItemMods(azeriteEmpoweredItem, azeriteEmpoweredItem->GetSlot(), false);
azeriteEmpoweredItem->SetSelectedAzeritePower(actualTier, azeriteEmpoweredItemSelectPower.AzeritePowerID);
if (activateAzeritePower)
{
// apply all item mods when azerite power grants a bonus, item level changes and that affects stats and auras that scale with item level
if (azeritePower->ItemBonusListID)
_player->_ApplyItemMods(azeriteEmpoweredItem, azeriteEmpoweredItem->GetSlot(), true);
else
_player->ApplyAzeritePower(azeriteEmpoweredItem, azeritePower, true);
}
azeriteEmpoweredItem->SetState(ITEM_CHANGED, _player);
}
| [
"81566364+NemoPRM@users.noreply.github.com"
] | 81566364+NemoPRM@users.noreply.github.com |
7c353d931f767cbd651f13104e9c1755ff0f38de | c5743b334b4df9e8f064589a18d6fa6190b88137 | /76.cpp | d65685a1717b022487731386ce9b3775a1d496e0 | [] | no_license | linouk23/leetcode | 485232c67c3327a8b11828e67f3a0aa40414a019 | 651a79e23f28cf3fd514e04f201fe42d25260ee0 | refs/heads/master | 2021-01-21T17:23:09.503891 | 2018-08-26T23:21:55 | 2018-08-26T23:21:55 | 85,233,374 | 17 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,571 | cpp | // 76. Minimum Window Substring - https://leetcode.com/problems/minimum-window-substring
#include "bits/stdc++.h"
using namespace std;
struct Result {
int start, finish, min_len;
};
// Trick.
class Solution {
public:
string minWindow(string s, string t) {
int n = (int)s.length();
int m = (int)t.length();
int count = m;
Result result {0, 0, INT_MAX};
unordered_map<char, int> tablecount;
for (char ch : t) {
tablecount[ch] += 1;
}
int L, R;
L = R = 0;
while (R < n) {
while (count != 0 && R < n) {
// R++ -> instead of count[ch]++ -> count[ch]--
if (tablecount[s[R++]]-- > 0) {
--count;
}
}
bool isOK = (count == 0);
if (!isOK) { break; }
// [L, R)
while (count == 0) {
// L++ -> instead of count[ch]-- -> count[ch]++
if (tablecount[s[L++]]++ >= 0) {
++count;
}
}
// [L - 1, R - 1]
if (R - L + 1 < result.min_len) {
result.start = L - 1;
result.finish = R - 1;
result.min_len = R - L + 1;
}
}
return result.min_len == INT_MAX ? "" : s.substr(result.start, result.min_len);
}
};
int main() {
ios::sync_with_stdio(false);
Solution sol;
sol.minWindow("ADOBECODEBANC", "ABC");
// sol.maxSlidingWindow({1,-1}, 1);
return 0;
}
| [
"linouk23@gmail.com"
] | linouk23@gmail.com |
2921de8595d6030f7eb94511fb1468ce0e8f87a4 | 4fc06eae8410e881bf341d40b190d83b5151a39f | /DeviceAdapters/LeicaDMSTC/LeicaDMSTCHub.h | 8964ac8c01ca6211312fbf2bdbb4c5fb6085a854 | [] | no_license | tuanzijane/micromanager | 5da0c75d6b64f31fd68ed4fa30007874acf5f7f8 | bc04171a4167ff20917ed3d18b93186941d6fd02 | refs/heads/master | 2020-04-03T23:11:17.752714 | 2013-01-30T01:36:30 | 2013-01-30T01:36:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,409 | h | ///////////////////////////////////////////////////////////////////////////////
// FILE: LeicaDMSTCHub.h
// PROJECT: Micro-Manager
// SUBSYSTEM: DeviceAdapters
//-----------------------------------------------------------------------------
// DESCRIPTION: LeicaDMSTC hub module. Required for operation of LeicaDMSTC
// device.
//
// AUTHOR: G. Esteban Fernandez, 27-Aug-2012
// Based on LeicaDMR adapter by Nico Stuurman.
//
// COPYRIGHT: 2012, Children's Hospital Los Angeles
// LICENSE: This file is distributed under the BSD license.
// License text is included with the source distribution.
//
// This file 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.
//
// IN NO EVENT SHALL THE COPYRIGHT OWNER OR
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES.
//
#ifndef _LeicaDMSTCHUB_H_
#define _LeicaDMSTCHUB_H_
#include "../../MMDevice/MMDevice.h"
class LeicaDMSTCHub
{
public:
LeicaDMSTCHub();
~LeicaDMSTCHub();
void SetPort(const char* port) {port_ = port;}
int Initialize(MM::Device& device, MM::Core& core);
int DeInitialize() {initialized_ = false; return DEVICE_OK;};
bool Initialized() {return initialized_;};
std::string Version() {return version_;};
std::string Microscope() {return microscope_;};
int SetXYAbs(MM::Device& device, MM::Core& core, long positionX, long positionY);
int GetXYAbs(MM::Device& device, MM::Core& core, long& positionX, long& positionY);
int SetXYRel(MM::Device& device, MM::Core& core, long positionX, long positionY);
int GetXYUpperThreshold(MM::Device& device, MM::Core& core, long& positionX, long& positionY);
int GetXYLowerThreshold(MM::Device& device, MM::Core& core, long& positionX, long& positionY);
int SetSpeedX(MM::Device& device, MM::Core& core, int speed);
int GetSpeedX(MM::Device& device, MM::Core& core, int& speed);
int SetSpeedY(MM::Device& device, MM::Core& core, int speed);
int GetSpeedY(MM::Device& device, MM::Core& core, int& speed);
int SetAcceleration(MM::Device& device, MM::Core& core, int acc);
int GetAcceleration(MM::Device& device, MM::Core& core, int& acc);
double GetStepSize(MM::Device& device, MM::Core& core);
//int MoveXYConst(MM::Device& device, MM::Core& core, int speedX, int speedY);
int StopXY(MM::Device& device, MM::Core& core);
int SetAcknowledge(MM::Device& device, MM::Core& core, int ack);
int ResetStage(MM::Device& device, MM::Core& core);
int InitRange(MM::Device& device, MM::Core& core);
private:
int GetVersion(MM::Device& device, MM::Core& core, std::string& version);
int GetMicroscope(MM::Device& device, MM::Core& core, std::string& microscope);
void ClearRcvBuf();
void ClearAllRcvBuf(MM::Device& device, MM::Core& core);
int GetCommand(MM::Device& device, MM::Core& core, int deviceId, int command, std::string& answer);
int GetCommand(MM::Device& device, MM::Core& core, int deviceId, int command, int& answer1, int& answer2, int& answer3, int& answer4, int& answer5);
int GetCommand(MM::Device& device, MM::Core& core, int deviceId, int command, int& answer1, int& answer2, int& answer3, int& answer4);
int GetCommand(MM::Device& device, MM::Core& core, int deviceId, int command, int& answer);
int SetCommand(MM::Device& device, MM::Core& core, int deviceId, int command, int dataX, int dataY);
int SetCommand(MM::Device& device, MM::Core& core, int deviceId, int command, int data);
int SetCommand(MM::Device& device, MM::Core& core, int deviceId, int command);
// IDs of devices in the microscope
// static const int gMic_ = 50;
// static const int zDrive_ = 60;
static const int xyStage_ = 10;
static const int RCV_BUF_LENGTH = 1024;
char rcvBuf_[RCV_BUF_LENGTH];
std::string port_;
std::string version_;
std::string microscope_;
bool initialized_;
long expireTimeUs_;
};
#endif // _LeicaDMSTCHUB_H_
| [
"nico@d0ab736e-dc22-4aeb-8dc9-08def0aa14fd"
] | nico@d0ab736e-dc22-4aeb-8dc9-08def0aa14fd |
673d30eb2f8fc3056f9914f2b6699d09e7fcefba | 7f1797cf834e459ae25de48acb8c96e5830f322a | /libyangrtc2/src/yangutil/YangLog.cpp | f2fdc7399424b5d72b3678f047582cfab2041836 | [
"MIT"
] | permissive | cardinals/yangwebrtc | 1e3ca22ed8d8ab5718420745e778a1b5a074ec3c | e73d77765a2a682a66c96b90b902698c40a4702e | refs/heads/main | 2023-08-30T00:30:25.271211 | 2021-11-14T08:14:57 | 2021-11-14T08:14:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,952 | cpp | #include "yangutil/sys/YangLog.h"
#include <stdio.h>
#include <stdarg.h>
#include <string.h>
#include <assert.h>
#include <ctype.h>
#include <time.h>
#include <yangutil/yang_unistd.h>
//#include <mutex>
#ifdef _WIN32
#include <io.h>
#ifdef _MSC_VER
#include <direct.h>
#endif
#else
#include <sys/time.h>
#endif
class YangLogFile {
public:
//std::mutex m_lock;
FILE *fmsg = NULL;
YangLogFile() {
fmsg = NULL;
}
;
~YangLogFile() {
if (fmsg)
fclose(fmsg);
fmsg = NULL;
}
;
void writeFileData(char *p, int32_t plen) {
//if(!fmsg) return;
//m_lock.lock();
fwrite(p, plen, 1, fmsg);
fflush(fmsg);
//m_lock.unlock();
}
//;
};
YangLogFile *g_yangLogFile = NULL;
static char const *YANG_LOG_LEVEL_NAME[] = { "FATAL", "ERROR", "WARNING",
"INFO", "DEBUG", "TRACE" };
YangCLog::YangCLog() {
//neednl = 0;
}
YangCLog::~YangCLog() {
}
void YangCLog::setLogFile(int32_t isSetLogFile) {
if (!g_yangLogFile)
g_yangLogFile = new YangLogFile();
if (m_hasLogFile)
return;
m_hasLogFile = isSetLogFile;
if (isSetLogFile) {
char file1[300];
memset(file1, 0, 300);
char file_path_getcwd[255];
memset(file_path_getcwd, 0, 255);
#ifdef _MSC_VER
if (_getcwd(file_path_getcwd, 255)) {
#else
if (getcwd(file_path_getcwd, 255)) {
#endif
sprintf(file1, "%s/yang_log.log", file_path_getcwd);
g_yangLogFile->fmsg = fopen(file1, "wb+");
}
}
}
void YangCLog::closeLogFile() {
if (g_yangLogFile)
delete g_yangLogFile;
g_yangLogFile = NULL;
}
void YangCLog::log(int32_t level, const char *fmt, ...) {
if (level > logLevel)
return;
char buf[4096];
memset(buf, 0, 4096);
//int32_t len=0;
va_list args;
va_start(args, fmt);
//int32_t len =
vsnprintf(buf, 4095, fmt, args);
va_end(args);
if (m_hasLogFile) {
if (!g_yangLogFile)
g_yangLogFile = new YangLogFile();
}
struct tm* ntm=NULL;
if(level==YANG_LOG_ERROR){
time_t t_now=time(NULL);
ntm=localtime(&t_now);
printf("[%02d:%02d:%02d] Yang %s: %s\n",ntm->tm_hour,ntm->tm_min,ntm->tm_sec,YANG_LOG_LEVEL_NAME[level], buf);
}else{
printf("Yang %s: %s\n",YANG_LOG_LEVEL_NAME[level], buf);
}
if (m_hasLogFile) {
char sf[4196];
memset(sf, 0, 4196);
int32_t sfLen=0;
if(level==YANG_LOG_ERROR&&ntm)
sfLen = sprintf(sf, "[%02d:%02d:%02d] Yang %s: %s\n",ntm->tm_hour,ntm->tm_min,ntm->tm_sec, YANG_LOG_LEVEL_NAME[level], buf);
else
sfLen = sprintf(sf, "Yang %s: %s\n", YANG_LOG_LEVEL_NAME[level], buf);
if (g_yangLogFile->fmsg)
g_yangLogFile->writeFileData(sf, sfLen);
}
ntm=NULL;
}
int32_t yang_error_wrap(int32_t errcode, const char *fmt, ...) {
char buf[4096];
memset(buf, 0, 4096);
va_list args;
va_start(args, fmt);
vsnprintf(buf, 4095, fmt, args);
va_end(args);
time_t t_now=time(NULL);
struct tm* ntm=localtime(&t_now);
printf("Yang Error(%d): %s\n", errcode,
buf);
if (YangCLog::m_hasLogFile) {
if (!g_yangLogFile)
g_yangLogFile = new YangLogFile();
char sf[4196];
memset(sf, 0, 4196);
int32_t sfLen = sprintf(sf, "[%02d:%02d:%02d] Yang Error(%d): %s\n",ntm->tm_hour,ntm->tm_min,ntm->tm_sec, errcode, buf);
if (g_yangLogFile->fmsg)
g_yangLogFile->writeFileData(sf, sfLen);
}
ntm=NULL;
return errcode;
}
void YangCLog::logf(int32_t level, const char *fmt, ...) {
if (level > logLevel)
return;
char buf[4096];
memset(buf, 0, 4096);
int32_t len = 0;
va_list args;
va_start(args, fmt);
len = vsnprintf(buf, 4095, fmt, args);
va_end(args);
printf(buf);
if (m_hasLogFile) {
if (!g_yangLogFile)
g_yangLogFile = new YangLogFile();
if (g_yangLogFile->fmsg)
g_yangLogFile->writeFileData(buf, len);
}
}
int32_t YangCLog::logLevel = YANG_LOG_ERROR;
int32_t YangCLog::m_hasLogFile = 0;
void YangCLog::setLogLevel(int32_t plevel) {
logLevel = plevel;
if (logLevel > YANG_LOG_TRACE)
logLevel = YANG_LOG_TRACE;
}
| [
"yangrtc@aliyun.com"
] | yangrtc@aliyun.com |
f99a724f41e3af79d15d7e72cd2fa308de493c68 | 5456502f97627278cbd6e16d002d50f1de3da7bb | /components/history/core/browser/visit_delegate.cc | 8b0842057eb061fff7a8f6080d3f0e6743e72085 | [
"BSD-3-Clause"
] | permissive | TrellixVulnTeam/Chromium_7C66 | 72d108a413909eb3bd36c73a6c2f98de1573b6e5 | c8649ab2a0f5a747369ed50351209a42f59672ee | refs/heads/master | 2023-03-16T12:51:40.231959 | 2017-12-20T10:38:26 | 2017-12-20T10:38:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 360 | cc | // Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/history/core/browser/visit_delegate.h"
namespace history {
VisitDelegate::VisitDelegate() {
}
VisitDelegate::~VisitDelegate() {
}
} // namespace history
| [
"lixiaodonglove7@aliyun.com"
] | lixiaodonglove7@aliyun.com |
4e262648a02da90d9b7b5b7368040e73b29b585f | 759ebe87b5c35fea5a8cf15c48f23b8dd52032e9 | /yarn-winder/lib/menu/WinderMenu.h | f4aba5effab0965abd8ac845ebfcec9f19a97a8d | [
"MIT"
] | permissive | bakibillah/ARDUINO | f60b7576ee40a0d338a476825f8d3daf97b30c0f | adae598aecd994747f1e3fe75a22dee57cb4de54 | refs/heads/master | 2020-07-29T00:19:29.237116 | 2019-08-29T19:47:04 | 2019-09-02T18:57:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 602 | h | #ifndef ARDUINO_PROJECTS_DISPLAYMENU_H
#define ARDUINO_PROJECTS_DISPLAYMENU_H
#include <Service.h>
#include <Display.h>
#include <Motor.h>
#include <Menu.h>
class WinderMenu : Service, public Navigation {
private:
Display *_display = nullptr;
Label *_status = nullptr;
protected:
void print(LOCALE locale, Display *display, bool nl) const override;
public:
WinderMenu(Configuration *config, Display *display, Motor *motor);
void interact() override;
void next() override;
void prev() override;
void cycle() override;
};
#endif //ARDUINO_PROJECTS_DISPLAYMENU_H
| [
"aenniw@users.noreply.github.com"
] | aenniw@users.noreply.github.com |
0513936a582ae9bb786892e0a0bb2b3fa07b897f | 51928337483095b12f046eda9ea17ba0b1a81fc0 | /3rdparty/cppwinrt/10.0.15063.0/winrt/internal/Windows.Media.Core.Preview.0.h | 7c237ea3289ef56eea483d58f907e1b2fdbb804b | [
"LicenseRef-scancode-generic-cla",
"MIT"
] | permissive | kingofthebongo2008/geometry_images | 8592aa99e53a16821725a2564313eeafb0462362 | 53109f9bc9ea19d0f119f0fe71762248d5038213 | refs/heads/master | 2021-01-19T03:02:56.996122 | 2017-07-06T13:25:47 | 2017-07-06T13:25:47 | 87,302,727 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 458 | h | // C++ for the Windows Runtime v1.0.170331.7
// Copyright (c) 2017 Microsoft Corporation. All rights reserved.
#pragma once
WINRT_EXPORT namespace winrt {
namespace ABI::Windows::Media::Core::Preview {
struct ISoundLevelBrokerStatics;
}
namespace Windows::Media::Core::Preview {
struct ISoundLevelBrokerStatics;
struct SoundLevelBroker;
}
namespace Windows::Media::Core::Preview {
template <typename T> struct impl_ISoundLevelBrokerStatics;
}
}
| [
"stefan.dyulgerov@gmail.com"
] | stefan.dyulgerov@gmail.com |
5bf05c63e63e4868138637ec74c281216b52d20a | 02ce8a5d3386aa639ef1c2c2fdd6da8d0de158f9 | /ACE-5.6.1/ACE_wrappers/examples/IPC_SAP/DEV_SAP/writer/writer.cpp | 2910b7d34bbb300b357506f65455c831c57cc777 | [] | no_license | azraelly/knetwork | 932e27a22b1ee621742acf57618083ecab23bca1 | 69e30ee08d0c8e66c1cfb00d7ae3ba6983ff935c | refs/heads/master | 2021-01-20T13:48:24.909756 | 2010-07-03T13:59:39 | 2010-07-03T13:59:39 | 39,634,314 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,110 | cpp | // $Id: writer.cpp 75297 2006-11-09 10:53:26Z olli $
#include "ace/DEV_Connector.h"
#include "ace/TTY_IO.h"
#include "ace/OS_NS_unistd.h"
ACE_RCSID(writer, writer, "$Id: writer.cpp 75297 2006-11-09 10:53:26Z olli $")
int ACE_TMAIN (int argc, ACE_TCHAR *argv[])
{
if (argc < 2)
ACE_ERROR_RETURN ((LM_ERROR,
ACE_TEXT ("usage: %s device-filename\n"),
argv[0]), 1);
ACE_TTY_IO write_dev;
ACE_DEV_Connector con;
if (con.connect (write_dev,
ACE_DEV_Addr (argv[1])) == -1)
ACE_ERROR_RETURN ((LM_ERROR,
ACE_TEXT ("%p\n"),
argv[1]),
1);
ACE_TTY_IO::Serial_Params myparams;
myparams.baudrate = 19200;
myparams.xonlim = 0;
myparams.xofflim = 0;
myparams.readmincharacters = 0;
myparams.readtimeoutmsec = 10000;
myparams.paritymode = "EVEN";
myparams.ctsenb = false;
myparams.rtsenb = 0;
myparams.xinenb = false;
myparams.xoutenb = false;
myparams.modem = false;
myparams.rcvenb = true;
myparams.dsrenb = false;
myparams.dtrdisable = false;
myparams.databits = 8;
myparams.stopbits = 1;
if (write_dev.control (ACE_TTY_IO::SETPARAMS,
&myparams) == -1)
ACE_ERROR_RETURN ((LM_ERROR,
ACE_TEXT ("%p\n"),
ACE_TEXT ("control")),
1);
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("enter character to send, q terminates :\n")));
for (char writeto;
ACE_OS::read (ACE_STDIN, &writeto, 1) != -1;
)
{
ssize_t bytes_written =
write_dev.send_n ((void *) &writeto,
1);
if (bytes_written != 1)
ACE_ERROR_RETURN ((LM_ERROR,
ACE_TEXT ("%p\n"),
ACE_TEXT ("send")),
1);
if (writeto == 'q')
break;
}
if (write_dev.close () == -1)
ACE_ERROR_RETURN ((LM_ERROR,
ACE_TEXT ("%p\n"),
ACE_TEXT ("close")),
1);
return 0;
}
| [
"yuwuxiong2010@gmail.com"
] | yuwuxiong2010@gmail.com |
0137da641b4e4edc11342ec030f5e15ed6baacfe | 447118b9f93501922c4e37b86657b5c4a533da36 | /src/cgw-error.h | 477cdb9204814858de9277b135fcfc48bd8496a3 | [] | no_license | dtrenin7/overseer | d8683dcc6b7e4f2ff34513cff7e5271112da48ba | 2ff604d5f136677ce7147729c735f42b1601e26c | refs/heads/master | 2021-05-04T13:52:15.112818 | 2018-02-05T16:26:35 | 2018-02-05T16:26:35 | 120,323,862 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,456 | h | /*
* cgw-error.h
*
* Created on: 23 june 2015
* Author: Dmitry Trenin (dtrenin7@gmail.com)
*/
#ifndef CGW_ERROR_H_
#define CGW_ERROR_H_
#include <string>
#include "cgw-types.h"
#define S(x) #x
#define S_(x) S(x)
#define S__LINE__ S_(__LINE__)
#define __FILELINE__ (" -> " __FILE__ " (" S__LINE__ ")")
#define STATUS(code_or_text) CGW::error_t(code_or_text, __FILELINE__)
#define CHECK(expr) error = expr; if(error.code != CGW::E_OK) return error
#define THROW(expr) error = expr; if(error.code != CGW::E_OK) throw error
namespace CGW {
typedef enum {
E_OK = 0,
E_TEXT_BASED,
E_PACKET_TOO_SMALL,
E_INSUFFICIENT_MEMORY,
E_UNABLE_ACQUIRE_CSP,
E_UNABLE_GENERATE_CONTAINER_NAME,
E_UNABLE_HASH_DATA,
E_UNABLE_SET_PIN,
E_UNABLE_GENERATE_MK,
E_UNABLE_GENERATE_EXCHANGE_KEY,
E_UNABLE_ACQUIRE_SMK,
E_UNABLE_DECODE_SESSION_KEY,
E_UNABLE_ENCODE_SESSION_KEY,
E_NOT_CONNECTED,
E_EMPTY_INCOMING_PACKET
} error_code_t;
struct error_t {
error_code_t code; ///< error code
error_t();
error_t(error_code_t error, cstrptr_t src);
error_t(cstrptr_t text_, cstrptr_t src);
error_t(str_t text_, cstrptr_t src);
error_t& operator = (const error_t& rhs);
bool operator == (error_code_t error);
virtual str_t get_text();
private:
str_t text; ///< text (only for E_TEXT_BASED)
str_t location; ///< source file & line
};
}; // namespace CGW
#endif /* CGW_ERROR_H_ */
| [
"dtrenin7@gmail.com"
] | dtrenin7@gmail.com |
e9f98712cbeac53fa2c7dea9676676a58a58c766 | f069675d7953829ad409e969e4273e70dad24210 | /MFCApplication5/compute_year_day.cpp | dc179117135ca53ab12cc1d8588ae40e4c575c8e | [] | no_license | fanghong2004/CHESS-MFC | ac33e3006e60e48b0c3770d9f2a9f51ea272878e | 1f4098419f8719b760b42c537cd7c3c9205df0d4 | refs/heads/master | 2020-06-30T10:49:40.815109 | 2019-09-11T02:22:05 | 2019-09-11T02:22:05 | 200,806,077 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,403 | cpp | #include "stdafx.h"
#include <stdio.h>
#include <math.h>
#include "CHESS.h"
/*------------------------------------------------------------------*/
/* julday - computes elapsed days stince start of year */
/* */
/* PROGRAMMERS NOTES */
/* */
/*------------------------------------------------------------------*/
int compute_year_day(struct date calendar_date)
{
/*------------------------------------------------------*/
/* Local Function Declarations. */
/*------------------------------------------------------*/
long julday(struct date);
/*------------------------------------------------------*/
/* Local Variable Definition. */
/*------------------------------------------------------*/
int year_day;
struct date jan_1_date;
/*------------------------------------------------------------------*/
/* Define the first day of the year. */
/*------------------------------------------------------------------*/
jan_1_date.year = calendar_date.year;
jan_1_date.month = 1;
jan_1_date.day = 1;
jan_1_date.hour = 1;
/*------------------------------------------------------------------*/
/* Compute the elapsed days from start of year. */
/*------------------------------------------------------------------*/
year_day = julday(calendar_date) - julday(jan_1_date) + 1;
return(year_day);
}/*end compute_year_day*/
| [
"fanghong-2004@126.com"
] | fanghong-2004@126.com |
f535aafb3fad3fa495e729de6f148ea0cfc59842 | cab3164950d7ac412265443b22b38ab72a06bc5b | /string_op.cpp | e6bdf57f63d49f08dd7d6f5026102f5cb1219960 | [] | no_license | q756179668/- | 2eb7c1b3f1c40117b9e83ed4a26e9f78d67d5338 | c698362c0615981e7a15704119ec210063a23bd4 | refs/heads/master | 2020-06-26T07:04:37.744783 | 2019-08-12T14:59:17 | 2019-08-12T14:59:17 | 199,566,415 | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 2,522 | cpp | #include<iostream>
#include<string>
#include<map>
#include<vector>
#include<algorithm>
#include<sstream>
using namespace std;
//×Ö·û´®·Ö¸îº¯Êý
vector< string> split(string str, string pattern)
{
vector<string> ret;
if (pattern.empty()) return ret;
size_t start = 0, index = str.find_first_of(pattern, 0);
while (index != str.npos)
{
if (start != index)
ret.push_back(str.substr(start, index - start));
start = index + 1;
index = str.find_first_of(pattern, start);
}
if (!str.substr(start).empty())
ret.push_back(str.substr(start));
return ret;
}
bool checkStrIsConSubstr(string str,string Substr){
bool findFlg = false;
if (str.find(Substr) != string::npos){
findFlg = true;
}
return findFlg;
}
bool checkStrIsConSelfSubstr(string str){
bool findFlg = false;
for (int i = 3; i < str.size() / 2; i++){
for (int start = 0; start + i < str.size(); start++){
string zic = str.substr(start, i);
for (int j = start + i + 1; j < str.size() - i; j++){
if (str[j] == zic[0]){
bool IsSame = true;
for (int k = 1; k < i; k++){
if (str[j + k] != zic[k]){
IsSame = false;
break;
}
}
if (IsSame){
findFlg = true;
break;
}
}
if (findFlg){
break;
}
}
}
}
return findFlg;
}
bool isKeyBe(map<char, int>mMap, char key){
return mMap.find(key) != mMap.end();
}
int getCharIndex_abc(char mChar){
if (mChar >= 'A' && mChar <= 'Z'){
return (int)(mChar - 'A');
}
if (mChar >= 'a' && mChar <= 'z'){
return (int)(mChar - 'a');
}
return -1;
}
string Sort_str_By_abc(string str){
string str_sort;
map<int, vector<char>> allChar;
for (int i = 0; i < str.size(); i++){
if ((str[i] >= 'A' && str[i] <= 'Z') || (str[i] >= 'a' && str[i] <= 'z')){
int index_abc = getCharIndex_abc(str[i]);
allChar[index_abc].push_back(str[i]);
}
}
for (map<int, vector<char>>::iterator It = allChar.begin(); It != allChar.end();It++){
for (vector<char>::iterator it = It->second.begin(); it != It->second.end(); it++){
str_sort += *it;
}
}
return str_sort;
}
int main(){
string str;
while (getline(cin,str)){
string str1 = Sort_str_By_abc(str);
string a = "" + ' ';
str1.insert(3,a);
cout << str1 << endl;
}
/*string str, pattern;
while (cin >> str >> pattern){
cout << count(str.begin(), str.end(), pattern) << endl;
}*/
return 0;
} | [
"noreply@github.com"
] | noreply@github.com |
411d986c89e3f58179cc40feda5e774771bb1011 | 274a09963c75178926d86a0c48938113f73a0fdc | /include/TickView.h | d98243e5d15e25ba1b57a5a022a32da72698fed9 | [] | no_license | lordbritishix/mvcexercise | a4b79c0aa4d0f42070c207e35ed42fd1b5470911 | ca8de0e840f10ee53b684d037a193d8410b24db2 | refs/heads/master | 2021-01-10T08:17:00.503608 | 2015-11-23T22:28:03 | 2015-11-23T22:28:03 | 46,751,778 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 438 | h | /*
* TickView.h
*
* Created on: Nov 23, 2015
*/
#ifndef TICKVIEW_H_
#define TICKVIEW_H_
#include <iostream>
#include "TimerView.h"
class Timer;
class TickView: public TimerView {
public:
TickView(Timer *timer) : TimerView(timer) {};
virtual void display(std::ostream& os) const;
virtual void update(Subject *s);
TickView(const TickView&) = delete;
TickView& operator=(const TickView&) = delete;
};
#endif /* TICKVIEW_H_ */
| [
"jim.quitevis@globalrelay.net"
] | jim.quitevis@globalrelay.net |
7fdbc59ebd95a4758d2a32ed4a2ddafcb4e337f7 | d64b6a40d5db0d63b2a2eac46f67f3ffee3e1fde | /src/EscapePhone/DeviceMp3.cpp | 5914fd8b8e43fc2d08f3b2fc5801bf1edd7c6d09 | [] | no_license | indrekluuk/EscapePhone | 3310ef7ce7c7dd56f116b070760550d763ea2d2d | 90d3c337427a47ab7bd5befbf350aa9293a87e44 | refs/heads/master | 2021-05-01T16:09:30.818285 | 2020-06-08T17:26:44 | 2020-06-08T17:26:44 | 121,046,403 | 5 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 640 | cpp | //
// Created by indrek on 21.07.2017.
//
#include "DeviceMp3.h"
DeviceMp3::DeviceMp3(uint8_t pinRx, uint8_t pinTx) : softwareSerial(pinRx, pinTx) {
softwareSerial.begin(9600);
if (!player.begin(softwareSerial)) { //Use softwareSerial to communicate with mp3.
// mp3 int failed
}
player.volume(10); //Set volume value. From 0 to 30
}
void DeviceMp3::play(Mp3 mp3) {
if (playing != mp3) {
if (mp3 == MP3_NONE) {
player.stop();
} else {
player.play(mp3);
}
playing = mp3;
}
}
bool DeviceMp3::isPlaying() {
return !player.available();
}
void DeviceMp3::stop() {
play(MP3_NONE);
}
| [
"indrek.luuk@gmail.com"
] | indrek.luuk@gmail.com |
c151ae4cebd45c10d831d577599aecb8fafba4ea | abdd0dcf68914e1547ac23b14fd1d7847dc9ce83 | /fileSys/src/.history/node_20200430203242.cpp | d7016962d90a0da6b53890dab1a5492259218e48 | [] | no_license | SnowflyLXF/Distributed-Systems-UMN | d290e2fdd2f07309fc62dffbe377443be6c34f3f | bd834f8cb2100836a67143ccdaeb79495cb74e18 | refs/heads/master | 2023-08-01T09:29:56.350535 | 2021-09-26T04:05:17 | 2021-09-26T04:05:17 | 410,444,689 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,969 | cpp | #include <condition_variable>
#include "node.hpp"
using namespace std;
uint32_t checksum(std::ifstream& file)
{
uint32_t sum = 0;
uint32_t word = 0;
while (file.read(reinterpret_cast<char*>(&word), sizeof(word))) {
sum += word;
}
if (file.gcount()) {
word &= (~0U >> ((sizeof(uint32_t) - file.gcount()) * 8));
sum += word;
}
return sum;
}
int prior_value(int load, int latency){
return load+latency;
}
string Node::checkip()
{
char ip_address[15];
int fd;
struct ifreq ifr;
/*AF_INET - to define network interface IPv4*/
/*Creating soket for it.*/
fd = socket(AF_INET, SOCK_DGRAM, 0);
/*AF_INET - to define IPv4 Address type.*/
ifr.ifr_addr.sa_family = AF_INET;
/*eth0 - define the ifr_name - port name
where network attached.*/
memcpy(ifr.ifr_name, "eno1", IFNAMSIZ - 1);
/*Accessing network interface information by
passing address using ioctl.*/
ioctl(fd, SIOCGIFADDR, &ifr);
/*closing fd*/
close(fd);
/*Extract IP Address*/
strcpy(ip_address, inet_ntoa(((struct sockaddr_in *)&ifr.ifr_addr)->sin_addr));
printf("System IP Address is: %s\n", ip_address);
string s(ip_address);
return s;
}
Node ::Node(int Port, int OnPort)
{
num_up = 0;
load = 0;
_port = Port;
_onListenPort = OnPort;
_slen = sizeof(_node_addr);
max_port = OnPort+1;
node_ip = checkip();
dirname = "node" + to_string(_port);
memset((char *)&_node_addr, 0, sizeof(_node_addr));
_node_addr.sin_family = AF_INET;
_node_addr.sin_addr.s_addr = htonl(INADDR_ANY);
_node_addr.sin_port = htons(_port);
_node_socket_fd = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
if (::bind(_node_socket_fd, (struct sockaddr *)&_node_addr, sizeof(_node_addr)) == -1)
{
cout << "Bind failed!" << endl;
}
thread onLis(&Node::onListen, this);
onLis.detach();
}
string Node::listen2()
{
char _buf2[BUFLEN];
memset(_buf2, ' ', BUFLEN);
int recvLen = recvfrom(_onlisten_fd, _buf2, BUFLEN, 0, (struct sockaddr *)&_tmp_addr, reinterpret_cast<socklen_t *>(&_slen));
char msg[recvLen + 1];
strncpy(msg, _buf2, recvLen);
msg[recvLen] = '\0';
string s(msg);
return s;
}
void Node::onListen()
{
memset((char *)&_onlisten_addr, 0, sizeof(_onlisten_addr));
memset((char *)&_tmp_addr, 0, sizeof(_tmp_addr));
_onlisten_addr.sin_family = AF_INET;
_onlisten_addr.sin_addr.s_addr = htonl(INADDR_ANY);
_onlisten_addr.sin_port = htons(_onListenPort);
_onlisten_fd = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
if (::bind(_onlisten_fd, (struct sockaddr *)&_onlisten_addr, sizeof(_onlisten_addr)) == -1)
{
cout << "Bind failed!" << endl;
}
string m;
while(1)
{
m = listen2();
if(strcmp(m.c_str(), "GetLoad")==0)
{
char msg[BUFLEN] = {0};
int len = sizeof(to_string(load).c_str());
snprintf(msg, len, to_string(load).c_str());
sendto(_onlisten_fd, msg, len, 0, (struct sockaddr *)&_tmp_addr, _slen);
}
else if (strncmp(m.c_str(), "Download", 8)==0)
{
// string dIP = listen2();
// int dport = stoi(listen2());
// string file = listen2();
//
cout<<m<<endl;
char *p;
char *strs = new char[m.length() + 1];
strcpy(strs, m.c_str());
p = strtok(strs, ":");
p = strtok(NULL, ":");
string dIP(p);
p = strtok(NULL, ":");
int dport = atoi(p);
p = strtok(NULL, ":");
string file(p);
cout << dIP << ":" << dport << ", " << endl;
handleUpload();
}
}
}
int Node::Connect()
{
char msg[BUFLEN] = {0};
int len = sizeof("Connect");
snprintf(msg, len, "Connect");
int n = sendall(msg, &len);
return n;
}
int Node::SetServer(string serverIP, int serverPort)
{
memset((char *)&_server_addr, 0, sizeof(_server_addr));
_server_addr.sin_family = AF_INET;
_server_addr.sin_addr.s_addr = inet_addr(serverIP.c_str());
_server_addr.sin_port = htons(serverPort);
}
string Node::listen()
{
memset(_buf, ' ', BUFLEN);
int recvLen = recvfrom(_node_socket_fd, _buf, BUFLEN, 0, (struct sockaddr *)&_server_addr, reinterpret_cast<socklen_t *>(&_slen));
char msg[recvLen + 1];
// cout<<_buf<<endl;
strncpy(msg, _buf, recvLen);
// string s(msg);
msg[recvLen] = '\0';
string s(msg);
return s;
}
int Node ::sendall(char *msg, int *len)
{
// cout<<msg.c_str()<<endl;
int bytesLeft = *len;
int sentLen = 0;
int n;
while (sentLen < *len)
{
n = sendto(_node_socket_fd, msg + sentLen, bytesLeft, 0, (struct sockaddr *)&_server_addr, _slen);
if (n == -1)
{
break;
}
sentLen += n;
bytesLeft -= n;
}
*len = sentLen;
return n == -1 ? -1 : 0;
}
Node::names Node::getFileList()
{
names files;
DIR *dir;
struct dirent *ptr;
if ((dir = opendir(dirname.c_str())) == NULL)
{
perror("Open dir error...");
exit(1);
}
while ((ptr = readdir(dir)) != NULL)
{
if (strcmp(ptr->d_name, ".") == 0 || strcmp(ptr->d_name, "..") == 0) ///current dir OR parrent dir
continue;
else if (ptr->d_type == 8)
files.push_back(ptr->d_name);
}
closedir(dir);
return files;
}
int Node::FileList()
{
char msg[BUFLEN] = {0};
int len = sizeof("FileList");
snprintf(msg, len, "FileList");
int n = sendall(msg, &len);
len = sizeof(to_string(_onListenPort));
snprintf(msg, len, to_string(_onListenPort).c_str());
n = sendall(msg, &len);
names files = getFileList();
int fsize = files.size();
len = sizeof(to_string(fsize));
snprintf(msg, len, to_string(fsize).c_str());
n = sendall(msg, &len);
for(int i = 0;i<fsize;i++)
{
len = sizeof(files[i]);
snprintf(msg, len, files[i].c_str());
n = sendall(msg, &len);
}
}
int Node::Update()
{
char msg[BUFLEN] = {0};
int len = sizeof("Update");
snprintf(msg, len, "Update");
int n = sendall(msg, &len);
names files = getFileList();
int fsize = files.size();
len = sizeof(to_string(fsize));
snprintf(msg, len, to_string(fsize).c_str());
n = sendall(msg, &len);
for (int i = 0; i < fsize; i++)
{
len = sizeof(files[i]);
snprintf(msg, len, files[i].c_str());
n = sendall(msg, &len);
}
}
Node::names Node::Find(string filename)
{
names tmpnodes;
char msg[BUFLEN] = {0};
int len = sizeof("Find");
snprintf(msg, len, "Find");
int n = sendall(msg, &len);
len = sizeof(filename.c_str());
snprintf(msg, len+1, filename.c_str());
n = sendall(msg, &len);
string inmsg;
inmsg = listen();
int nodecount = stoi(inmsg);
for (int i = 0; i < nodecount; i++)
{
inmsg = listen();
tmpnodes.push_back(inmsg);
cout<<inmsg<<endl;
}
// GetLoad(tmpnodes[0]);
// GetLoad(tmpnodes[1]);
return tmpnodes;
}
int Node::GetLoad(string c)
{
char *p;
char *strs = new char[c.length() + 1];
strcpy(strs,c.c_str());
p = strtok(strs, ":");
string IP(p);
p = strtok(NULL, ":");
int p2 = atoi(p);
// cout<<p2<<endl;
struct sockaddr_in _c_addr;
memset((char *)&_c_addr, 0, sizeof(_c_addr));
_c_addr.sin_family = AF_INET;
_c_addr.sin_addr.s_addr = inet_addr(IP.c_str());
_c_addr.sin_port = htons(p2);
char msg[BUFLEN] = {0};
int len = sizeof("GetLoad");
snprintf(msg, len, "GetLoad");
sendto(_node_socket_fd, msg, len, 0, (struct sockaddr *)&_c_addr, _slen);
string m = listen();
return stoi(m);
}
int Node::Download(string file)
{
load++;
Node::names upers = Find(file);
vector< pair <int,string> > nodelist;
for(int i=0; i<upers.size(); i++){
int p = prior_value(GetLoad(upers.at(i)), 1);
nodelist.push_back(make_pair(p, upers.at(i)));
}
sort(nodelist.begin(), nodelist.end());
thread onDownload(&Node::handleDownload, this, nodelist.front().second, file);
onDownload.detach();
// cout<<m<<endl;
}
int Node::handleDownload(string uper, string file){
int this_port = max_port++;
cout<<"Download from "<<uper<<endl;
struct sockaddr_in down_node_addr, up_node_addr;
memset((char *)&down_node_addr, 0, sizeof(down_node_addr));
down_node_addr.sin_family = AF_INET;
down_node_addr.sin_addr.s_addr = htonl(INADDR_ANY);
down_node_addr.sin_port = htons(this_port);
int down_node_socket_fd = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
if (::bind(down_node_socket_fd, (struct sockaddr *)&down_node_addr, sizeof(down_node_addr)) == -1)
{
cout << "Bind failed!" << endl;
}
int pos = uper.find(":");
string upip = uper.substr(0,pos);
string p = uper.substr(pos+1, uper.length()+1);
int upport = stoi(p);
memset((char *)&up_node_addr, 0, sizeof(up_node_addr));
up_node_addr.sin_family = AF_INET;
up_node_addr.sin_addr.s_addr = inet_addr(upip.c_str());
up_node_addr.sin_port = htons(upport);
char msg[BUFLEN] = {0};
string tmpstr = "Download:127.0.0.1:" + to_string(this_port) + ":" + file;
int len = sizeof(tmpstr);
cout<<len<<endl;
snprintf(msg, len, tmpstr.c_str());
sendto(down_node_socket_fd, msg, len, 0, (struct sockaddr *)&up_node_addr, _slen);
// len = sizeof("127.0.0.1");
// snprintf(msg, len, "127.0.0.1");
// sendto(down_node_socket_fd, msg, len, 0, (struct sockaddr *)&up_node_addr, _slen);
// string this_port_c = to_string(this_port);
// len = sizeof(this_port_c);
// snprintf(msg, len, this_port_c.c_str());
// sendto(down_node_socket_fd, msg, len, 0, (struct sockaddr *)&up_node_addr, _slen);
// len = sizeof(file);
// snprintf(msg, len, file.c_str());
// sendto(down_node_socket_fd, msg, len, 0, (struct sockaddr *)&up_node_addr, _slen);
char _bufd[BUFLEN];
int recvLen = recvfrom(down_node_socket_fd, _bufd, BUFLEN, 0, (struct sockaddr *)&_tmp_addr, reinterpret_cast<socklen_t *>(&_slen));
char filed[recvLen + 1];
strncpy(filed, _bufd, recvLen);
filed[recvLen] = '\0';
cout << "downloader received:" << filed << endl;
int flen = stoi(filed);
recvLen = recvfrom(down_node_socket_fd, _bufd, flen, 0, (struct sockaddr *)&_tmp_addr, reinterpret_cast<socklen_t *>(&_slen));
FILE * pfile;
pfile = fopen((dirname + "/tmp/" + file).c_str(), "wb");
filed[recvLen + 1];
strncpy(filed, _bufd, recvLen);
filed[recvLen] = '\0';
cout << "content: " << filed << endl;
fwrite(filed, flen*sizeof(char), 1, pfile);
fclose(pfile);
ifstream f;
uint32_t cksum;
f.open((dirname + "/tmp/" + file).c_str(), ios_base::in);
if (f.is_open())
cksum = checksum(f);
f.close();
recvLen = recvfrom(down_node_socket_fd, _bufd, BUFLEN, 0, (struct sockaddr *)&_tmp_addr, reinterpret_cast<socklen_t *>(&_slen));
filed[recvLen + 1];
strncpy(filed, _bufd, recvLen);
filed[recvLen] = '\0';
cout << filed<<endl;
if (strcmp(filed, to_string(cksum).c_str()) == 0)
{
std::ifstream in((dirname + "/tmp/" + file).c_str(), std::ios::in | std::ios::binary);
std::ofstream out((dirname +"/"+ file).c_str(), std::ios::out | std::ios::binary);
out << in.rdbuf();
std::remove((dirname + "/tmp/" + file).c_str());
}
}
int Node::handleUpload()
{
thread uplder(&Node::Uploader, this);
uplder.detach();
num_up ++;
}
void Node::Uploader()
{
load++;
int this_port = max_port++;
struct sockaddr_in downloader_addr, uploader_addr;
memset((char *)&uploader_addr, 0, sizeof(uploader_addr));
uploader_addr.sin_family = AF_INET;
uploader_addr.sin_addr.s_addr = htonl(INADDR_ANY);
uploader_addr.sin_port = htons(this_port);
int uploader_socket_fd = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
char msg_up[BUFLEN] = {0};
int len;
char _buf2[BUFLEN];
memset(_buf2, ' ', BUFLEN);
int recvLen = recvfrom(uploader_socket_fd, _buf2, BUFLEN, 0, (struct sockaddr *)&downloader_addr, reinterpret_cast<socklen_t *>(&_slen));
char msg[recvLen + 1];
strncpy(msg, _buf2, recvLen);
msg[recvLen] = '\0';
string dip(msg);
cout<<dip<<endl;
recvLen = recvfrom(uploader_socket_fd, _buf2, BUFLEN, 0, (struct sockaddr *)&downloader_addr, reinterpret_cast<socklen_t *>(&_slen));
strncpy(msg, _buf2, recvLen);
msg[recvLen] = '\0';
int dport = atoi(msg);
recvLen = recvfrom(uploader_socket_fd, _buf2, BUFLEN, 0, (struct sockaddr *)&downloader_addr, reinterpret_cast<socklen_t *>(&_slen));
strncpy(msg, _buf2, recvLen);
msg[recvLen] = '\0';
string file(msg);
memset((char *)&downloader_addr, 0, sizeof(downloader_addr));
downloader_addr.sin_family = AF_INET;
downloader_addr.sin_addr.s_addr = inet_addr(dip.c_str());
downloader_addr.sin_port = htons(dport);
DIR *dir;
struct dirent *ptr;
FILE *fp;
if ((dir = opendir(dirname.c_str())) == NULL)
{
perror("Open dir error...");
exit(1);
}
while ((ptr = readdir(dir)) != NULL)
{
if (strcmp(ptr->d_name, ".") == 0 || strcmp(ptr->d_name, "..") == 0) ///current dir OR parrent dir
continue;
else if (ptr->d_type == 8)
{
if(strcmp(ptr->d_name, file.c_str()) == 0)
{
fp = fopen((dirname +"/"+ file).c_str(), "rb");
if (fp == NULL)
{
cerr << "File Open Error";
}
struct stat st;
stat((dirname + "/" + file).c_str(), &st);
size_t fsize = st.st_size;
len = sizeof(fsize);
snprintf(msg_up, len, "%d", fsize);
sendto(uploader_socket_fd, msg_up, len, 0, (struct sockaddr *)&downloader_addr, _slen);
fread(msg_up, 1, fsize, fp);
sendto(uploader_socket_fd, msg_up, fsize, 0, (struct sockaddr *)&downloader_addr, _slen);
ifstream f;
uint32_t cksum;
f.open((dirname + "/" + file).c_str(), ios_base::in);
if (f.is_open())
cksum = checksum(f);
cout << (dirname + "/" + file) << cksum << endl;
f.close();
len = sizeof(to_string(cksum));
snprintf(msg_up, len, to_string(cksum).c_str());
sendto(uploader_socket_fd, msg_up, len, 0, (struct sockaddr *)&downloader_addr, _slen);
fclose(fp);
}
}
}
closedir(dir);
load--;
}
| [
"lixuefei9679@gmail.com"
] | lixuefei9679@gmail.com |
2a4c3963c50128a01acf4ca30cd61202a50b4fc2 | 8ddf0634c4e1909f714b485ec92de8db0520f175 | /Alexa_on_KNX/Alexa_on_KNX.ino | a081501e1774475b2c465847141a27ae582ee7a3 | [] | no_license | Adminius/Sandbox | c910a71376e816353e71e6bc4966636807daea79 | 3e38e376cc6c21b1a359a56e792a392ef916472f | refs/heads/master | 2020-12-30T15:07:57.875949 | 2017-05-12T15:21:43 | 2017-05-12T15:21:43 | 91,104,680 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,453 | ino | #include "KonnektingDevice.h"
#include <Arduino.h>
#include <ESP8266WiFi.h>
#include "fauxmoESP.h"
// include device related configuration code, created by "KONNEKTING CodeGenerator"
#include "kdevice_Alexa_on_KNX.h"
#define DEVICES 10
#define FIRST_PARAM 5
#define PARAM_AMOUNT 5
#define FIRST_COMBJ 0
#define COMBJ_AMOUNT 2
#define KNX_SERIAL Serial // ESP8266 use Serial
// ################################################
// ### IO Configuration
// ################################################
#define PROG_LED_PIN 5
#define PROG_BUTTON_PIN 12
int initDelay = 0;
String ssid = "";
String pass = "";
byte type[DEVICES];
String room[DEVICES];
String name[DEVICES];
byte value[DEVICES];
byte scene[DEVICES];
fauxmoESP fauxmo;
void wifiSetup() {
// Set WIFI module to STA mode
WiFi.mode(WIFI_STA);
// Connect
Serial1.printf("[WIFI] Connecting to %s ", ssid.c_str());
WiFi.begin(ssid.c_str(), pass.c_str());
// Wait
while (WiFi.status() != WL_CONNECTED) {
Serial1.print(".");
delay(200);
}
Serial1.println();
// Connected!
Serial1.printf("[WIFI] STATION Mode, SSID: %s, IP address: %s\n", WiFi.SSID().c_str(), WiFi.localIP().toString().c_str());
}
void setup() {
Serial1.begin(9600);
Serial1.println("Alexa on KNX");
wifiSetup();
Konnekting.init(KNX_SERIAL,PROG_BUTTON_PIN,PROG_LED_PIN,MANUFACTURER_ID,DEVICE_ID,REVISION);
Serial1.println("KNX init is ready");
if (!Konnekting.isFactorySetting()) {
initDelay = (int) Konnekting.getUINT16Param(PARAM_initialDelay); //blink every xxxx ms
ssid = Konnekting.getSTRING11Param(PARAM_param1) + Konnekting.getSTRING11Param(PARAM_param2);
pass = Konnekting.getSTRING11Param(PARAM_param3) + Konnekting.getSTRING11Param(PARAM_param4);
for(byte d = 0;d < DEVICES;d++){
type[d] = Konnekting.getUINT8Param((int)(d*PARAM_AMOUNT+FIRST_PARAM));
room[d] = Konnekting.getSTRING11Param((int)(d*PARAM_AMOUNT+FIRST_PARAM + 1));
name[d] = Konnekting.getSTRING11Param((int)(d*PARAM_AMOUNT+FIRST_PARAM + 2));
value[d] = (byte)Konnekting.getUINT8Param((int)(d*PARAM_AMOUNT+FIRST_PARAM + 3));
scene[d] = (byte)Konnekting.getUINT8Param((int)(d*PARAM_AMOUNT+FIRST_PARAM + 4));
if(type[d] != 0){
String tempstring = "";
char tempchar[24];
if(room[d].length() == 0){
tempstring = name[d];
}else if(name[d].length() == 0){
tempstring = room[d];
}else{
tempstring = room[d] + "" + name[d];
}
tempstring.toCharArray(tempchar,tempstring.length()+1);
fauxmo.addDevice(tempchar);
Serial1.print("Device ");
Serial1.print(tempchar);
Serial1.println(" added");
}
}
}else{
Konnekting.toggleProgState();
Serial1.println("Factory settings -> prog mode on");
}
fauxmo.onMessage([](unsigned char device_id, const char * device_name, bool state) {
int d = (int)device_id;
Serial1.printf("[MAIN] Device #%d (%s) state: %s", d, device_name, state ? "ON" : "OFF");
Serial1.println("");
if(type[d] == 1){
if(value[d] == 1){
Knx.write(d*COMBJ_AMOUNT,!state);
Serial1.printf("comObj: %d, state: %d",d*COMBJ_AMOUNT,!state);
}else{
Knx.write(d*COMBJ_AMOUNT,state);
Serial1.printf("comObj: %d, state: %d",d*COMBJ_AMOUNT,state);
}
}else if(type[d] == 2){
Knx.write(d*COMBJ_AMOUNT+1,(int)scene[d]);
Serial1.printf("comObj: %d, scene: %d",d*COMBJ_AMOUNT+1,scene[d]);
}
});
Serial1.println("Setup is ready");
}
// ################################################
// ### LOOP
// ################################################
void loop() {
// Do KNX related stuff (like sending/receiving KNX telegrams)
// This is required in every KONNEKTING aplication sketch
if (Konnekting.isReadyForApplication()) {
fauxmo.handle();
}
}
// ################################################
// ### KNX EVENT CALLBACK
// ################################################
void knxEvents(byte index) {
// nothing to do in this sketch
};
| [
"eugenius707@gmail.com"
] | eugenius707@gmail.com |
ca869b995d4e5b798a36914c1582b91850bc5417 | bea9253e2d2a0d585a421c8ee6b1a033550659c2 | /Level 5/3.5/Exercise 4/point.hpp | 656ce0522ea1a2c597b229075be105562624865c | [] | no_license | ngaikw/Cplusplus_Financial_Engineering | e82417fb78094ab69179e77457164423a74b7359 | fe4fdb45f052ea64c04f7dc7e6b793897adf2e77 | refs/heads/master | 2021-01-12T17:56:43.159153 | 2015-12-10T20:53:26 | 2015-12-10T20:53:26 | 71,305,638 | 4 | 4 | null | 2016-10-19T01:10:58 | 2016-10-19T01:10:58 | null | UTF-8 | C++ | false | false | 1,816 | hpp | /*header file for the Point class with private members for the x- and y-coordinates.
*/
#ifndef point_HPP
#define point_HPP
#include"shape.hpp"
#include<iostream>
#include<string>
using namespace std;
namespace Inna
{
namespace CAD
{
class point: public Shape
{
private:
double xCoord; //x coordinate
double yCoord; //y coordinate
public:
point(); //default constructor
point(const point& p); //copy constructor (2.3.1)
point(double x, double y); //constructor that accepts x and y coordinates (2.3.1)
explicit point(double x); //constructor accepting one double, define as explicit
virtual ~point();//destructor
friend ostream& operator << (ostream& os, const point& p);
std::string toString() const;
double distance(const point& p) const; //for exercise 2.2.2, distance between 2 points, modified in exercise 2.3.2 to const reference
double distance() const; //for exercise 2.3.3, renaming distanceorigin as distance
double X() const; //new getter for x
void X(double newx) {xCoord = newx;} //new setter for x
double Y() const; //new getter for Y
void Y(double newy) {yCoord = newy;} //new setter for Y
//member operator overloading
point operator - () const; //negate the coordinates
point operator * (double factor) const; // Scale the coordinates.
point operator + (const point& p) const; // Add coordinates.
bool operator == (const point& p) const; // Equally compare operator.
point& operator = (const point& source); // Assignment operator.
point& operator *= (double factor); // Scale the coordinates & assign.
void Draw(); //draw function
};
inline double point::X() const { return xCoord; }
inline double point::Y() const { return yCoord; }
}
}
#endif | [
"ishteinbuk@gmail.com"
] | ishteinbuk@gmail.com |
7651ee43cc0cbbb2c8ef9043a347488f42a93475 | 9ac67ee209c34a2f943d2ff9cf7d88013382552f | /common/statusmonitor/statusmonitor.h | ae307a5db433a993f66da2f196538b622707d68e | [] | no_license | lzk/hornet | d7499dd245855e83d0474be2a33b9facb30565d7 | 7cdc0ee95042afbdb02627471134b5d627ce70c4 | refs/heads/master | 2020-09-09T09:07:52.619801 | 2019-11-05T02:31:23 | 2019-11-05T02:31:23 | 221,408,207 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,637 | h | #ifndef STATUSMONITOR_H
#define STATUSMONITOR_H
#include "status.h"
#include "jkinterface.h"
//#include <QList>
typedef
struct PrinterStatus_struct
{
int PrinterStatus;
// int trayPaperTrayStatus;
int TonelStatusLevelC;
int TonelStatusLevelM;
int TonelStatusLevelY;
int TonelStatusLevelK;
int ErrorCodeGroup;
int ErrorCodeID;
int PaperSize;
int PaperType;
int NonDellTonerMode;
int LowTonerAlert;
int PaperTrayStatus;
}
PrinterStatus_struct;
typedef struct PrinterInfo_struct
{
PrinterStatus_struct status;
Printer_struct printer;
}
PrinterInfo_struct;
//typedef int (*CALLBACK_getPrinterInfo)(void* ,PrinterInfo_struct*);
class StatusMonitor
{
public:
StatusMonitor();
// static int getPrinters(CALLBACK_getPrinterInfo ,void*);
// static int getPrintersFromFile(CALLBACK_getPrinterInfo ,void*);
static int getPrinterStatus(const char* printer ,PrinterStatus_struct* ps);
// static int getDeviceStatus(DeviceIO* device ,PrinterStatus_struct* ps);
static int getDeviceStatus(DeviceIO* device ,Printer_struct* printer ,PrinterStatus_struct* ps);
static int getDeviceStatus(DeviceIOManager* device_manager ,Printer_struct* printer ,PrinterStatus_struct* ps);
static int getDeviceStatus(DeviceIO* device ,PrinterInfo_struct* printer);
// int get_printerlist(QList<Printer_struct >& printerlist);
// int get_printerlist_from_file(QList<Printer_struct >& printerlist);
static int getPrinters(CALLBACK_getPrinters ,void*);
static int getPrintersFromFile(CALLBACK_getPrinters ,void*);
private:
};
#endif // STATUSMONITOR_H
| [
"jacky@Jackys"
] | jacky@Jackys |
f933d567c12fe9d766359028c0901c15b42de235 | 29a94774623fefe9e79dcf2abdb51b9baa871281 | /Prison Break(1428A).cpp | fd084f343cb056cce20da97208f727f1b7689e71 | [] | no_license | Aaronphilip2003/CPP-STL-LEARNING | 7bcd150760ac46b1a1127841ed92eaff3b843eb7 | 6c4ee694c4b3b0418772ee86be7a5b190871c77d | refs/heads/main | 2023-06-14T04:43:12.789811 | 2021-07-13T17:03:41 | 2021-07-13T17:03:41 | 382,152,640 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 314 | cpp | #include<iostream>
using namespace std;
int main()
{
int buffer=0;
int test_cases=0;
cin>>test_cases;
int wall1=0,wall2=0;
while(test_cases!=0)
{
cin>>wall1>>wall2;
cout<<wall1*wall2<<endl;
test_cases--;
}
cin>>buffer;
return 0;
} | [
"noreply@github.com"
] | noreply@github.com |
38e8814e15ad8ae5241a85074c7c7533dec226fd | 101b8f5ec4936e2aa1cb06e6315df63bf0293e3a | /PTTKTT/BTVN/Chuong1/Bai10.cpp | 958c797c37ed24d5d18b44b8cf30d66d0a5f9e7b | [] | no_license | VincentTr4n/Cpp | 69075ef51e50499784c67b1f362eb1116e94a542 | d9874accc67ba2cc807ecb14caa6b4af1124aad0 | refs/heads/master | 2020-03-12T13:19:21.781223 | 2019-09-16T15:58:04 | 2019-09-16T15:58:04 | 130,639,446 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 179 | cpp | #include<iostream>
#include<limits>
using namespace std;
int main(){
int n;
long a[100005],min,max,t;
cin>>n;
for(int i=0;i<n;i++) cin>>a[i];
min=Min(a,n);
max=Max(a,n);
}
| [
"33866720+VincentTr4n@users.noreply.github.com"
] | 33866720+VincentTr4n@users.noreply.github.com |
0dfb14aa8f3ba6c523478f75e19493cd015bc06e | 647f2a81d22bbb498563eaac09d0498fe10d4f27 | /applications/DEMApplication/custom_elements/spheric_particle.h | 526d7600c243299d7fbc35fb3762654ea5429237 | [
"BSD-3-Clause"
] | permissive | pinebai/MyKratos7.0 | 8b87579cc0b61b8d0f5194f881d747ce4fe41e7e | e977752722e8ef1b606f25618c4bf8fd04c434cc | refs/heads/master | 2022-05-21T19:01:40.496529 | 2020-04-28T14:27:43 | 2020-04-28T14:27:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 25,629 | h | //
// Author: Miquel Santasusana msantasusana@cimne.upc.edu
//
#if !defined(KRATOS_SPHERIC_PARTICLE_H_INCLUDED )
#define KRATOS_SPHERIC_PARTICLE_H_INCLUDED
// System includes
#include <string>
#include <iostream>
// Project includes
#include "includes/define.h"
#include "discrete_element.h"
#include "../custom_utilities/AuxiliaryFunctions.h"
#include "../custom_constitutive/DEM_discontinuum_constitutive_law.h"
#include "../custom_conditions/RigidFace.h"
#include "../custom_conditions/dem_wall.h"
#include "../custom_strategies/schemes/dem_integration_scheme.h"
#include "includes/kratos_export_api.h"
//#include "../kratos_DEMApplication_export_dll.h"
#include "../custom_utilities/properties_proxies.h"
#include "includes/kratos_flags.h"
namespace Kratos
{
class DEMWall;
class KRATOS_API(DEM_APPLICATION) SphericParticle : public DiscreteElement
{
public:
/// Pointer definition of SphericParticle
KRATOS_CLASS_POINTER_DEFINITION(SphericParticle);
typedef WeakPointerVector<Condition> ConditionWeakVectorType;
typedef WeakPointerVector<Condition >::iterator ConditionWeakIteratorType;
typedef WeakPointerVector<Element> ParticleWeakVectorType;
typedef ParticleWeakVectorType::ptr_iterator ParticleWeakIteratorType_ptr;
typedef WeakPointerVector<Element >::iterator ParticleWeakIteratorType;
/// Default constructor.
ModelPart* mpInlet;
SphericParticle();
SphericParticle( IndexType NewId, GeometryType::Pointer pGeometry );
SphericParticle( IndexType NewId, NodesArrayType const& ThisNodes);
SphericParticle( IndexType NewId, GeometryType::Pointer pGeometry, PropertiesType::Pointer pProperties );
Element::Pointer Create(IndexType NewId, NodesArrayType const& ThisNodes, PropertiesType::Pointer pProperties) const override;
/// Destructor.
virtual ~SphericParticle();
SphericParticle& operator=(const SphericParticle& rOther);
class ParticleDataBuffer
{
public:
ParticleDataBuffer(SphericParticle* p_this_particle): mpThisParticle(p_this_particle)
{}
virtual ~ParticleDataBuffer(){}
virtual bool SetNextNeighbourOrExit(int& i)
{
if (i < int(mpThisParticle->mNeighbourElements.size())){
SetCurrentNeighbour(mpThisParticle->mNeighbourElements[i]);
mpOtherParticleNode = &(mpOtherParticle->GetGeometry()[0]);
return true;
}
else { // other_neighbour is nullified upon exiting loop
mpOtherParticle = NULL;
mpOtherParticleNode = NULL;
return false;
}
}
void SetCurrentNeighbour(SphericParticle* p_neighbour)
{
mpOtherParticle = p_neighbour;
}
void SetBoundingBox(const bool periodicity, const array_1d<double, 3> domain_min, const array_1d<double, 3> domain_max)
{
mDomainIsPeriodic = periodicity;
mDomainMin = domain_min;
mDomainMax = domain_max;
}
bool mMultiStageRHS;
bool mDomainIsPeriodic;
double mDistance;
double mRadiusSum;
double mDt;
double mOtherRadius;
double mIndentation;
double mMyCoors[3];
double mOtherCoors[3];
double mLocalRelVel[3];
array_1d<double, 3> mOtherToMeVector;
array_1d<double, 3> mDomainMin;
array_1d<double, 3> mDomainMax;
SphericParticle* mpThisParticle;
SphericParticle* mpOtherParticle;
Node<3>* mpOtherParticleNode;
double mLocalCoordSystem[3][3];
double mOldLocalCoordSystem[3][3];
std::vector<DEMWall*> mNeighbourRigidFaces; // why repeated? it is in the sphere as well!
};
typedef std::unique_ptr<ParticleDataBuffer> BufferPointerType;
virtual std::unique_ptr<ParticleDataBuffer> CreateParticleDataBuffer(SphericParticle* p_this_particle)
{
return std::unique_ptr<ParticleDataBuffer>(new ParticleDataBuffer(p_this_particle));
}
void TransformNeighbourCoorsToClosestInPeriodicDomain(ParticleDataBuffer & data_buffer);
void TransformNeighbourCoorsToClosestInPeriodicDomain(ParticleDataBuffer & data_buffer,
const array_1d<double, 3>& coors,
array_1d<double, 3>& neighbour_coors);
void TransformNeighbourCoorsToClosestInPeriodicDomain(const ProcessInfo& r_process_info,
const double coors[3],
double neighbour_coors[3]);
virtual bool CalculateRelativePositionsOrSkipContact(ParticleDataBuffer & data_buffer);
using DiscreteElement::Initialize; //To avoid Clang Warning. We tell the compiler that we are aware of the existence of this function, but we overload it still.
virtual void Initialize(const ProcessInfo& r_process_info);
virtual void MemberDeclarationFirstStep(const ProcessInfo& r_process_info);
virtual void CreateDiscontinuumConstitutiveLaws(const ProcessInfo& r_process_info);
using DiscreteElement::CalculateRightHandSide; //To avoid Clang Warning. We tell the compiler that we are aware of the existence of this function, but we overload it still.
virtual void CalculateRightHandSide(ProcessInfo& r_process_info, double dt, const array_1d<double,3>& gravity, int search_control);
virtual void FirstCalculateRightHandSide(ProcessInfo& r_process_info, double dt, int search_control);
virtual void CollectCalculateRightHandSide(ProcessInfo& r_process_info);
virtual void FinalCalculateRightHandSide(ProcessInfo& r_process_info, double dt, const array_1d<double,3>& gravity);
virtual void InitializeForceComputation(ProcessInfo& r_process_info);
virtual void FinalizeForceComputation(ParticleDataBuffer & data_buffer){}
virtual void EquationIdVector(EquationIdVectorType& rResult, ProcessInfo& r_process_info) override;
virtual void CalculateMassMatrix(MatrixType& rMassMatrix, ProcessInfo& r_process_info) override;
virtual void CalculateDampingMatrix(MatrixType& rDampingMatrix, ProcessInfo& r_process_info) override;
virtual void GetDofList( DofsVectorType& ElementalDofList, ProcessInfo& r_process_info ) override;
virtual void ComputeNewNeighboursHistoricalData(DenseVector<int>& temp_neighbours_ids, std::vector<array_1d<double, 3> >& temp_neighbour_elastic_contact_forces);
virtual void ComputeNewRigidFaceNeighboursHistoricalData();
virtual void FinalizeSolutionStep(ProcessInfo& r_process_info) override;
virtual void SymmetrizeStressTensor();
virtual void CorrectRepresentativeVolume(double& rRepresentative_Volume/*, bool& is_smaller_than_sphere*/);
virtual void ComputeReactions();
virtual void PrepareForPrinting(ProcessInfo& r_process_info);
virtual void Calculate(const Variable<double>& rVariable, double& Output, const ProcessInfo& r_process_info) override;
virtual void Calculate(const Variable<array_1d<double, 3 > >& rVariable, array_1d<double, 3 > & Output, const ProcessInfo& r_process_info) override;
virtual void Calculate(const Variable<Vector >& rVariable, Vector& Output, const ProcessInfo& r_process_info) override;
virtual void Calculate(const Variable<Matrix >& rVariable, Matrix& Output, const ProcessInfo& r_process_info) override;
virtual void CalculateMaxBallToBallIndentation(double& rCurrentMaxIndentation, const ProcessInfo& r_process_info);
virtual void CalculateMaxBallToFaceIndentation(double& rCurrentMaxIndentation);
virtual double CalculateLocalMaxPeriod(const bool has_mpi, const ProcessInfo& r_process_info);
virtual void Move(const double delta_t, const bool rotation_option, const double force_reduction_factor, const int StepFlag);
virtual void SetIntegrationScheme(DEMIntegrationScheme::Pointer& translational_integration_scheme, DEMIntegrationScheme::Pointer& rotational_integration_scheme);
virtual void SwapIntegrationSchemeToGluedToWall(Condition* p_wall);
virtual DEMIntegrationScheme& GetTranslationalIntegrationScheme() { return *mpTranslationalIntegrationScheme; }
virtual DEMIntegrationScheme& GetRotationalIntegrationScheme() { return *mpRotationalIntegrationScheme; }
virtual void ComputeConditionRelativeData(int rigid_neighbour_index,
DEMWall* const wall,
double LocalCoordSystem[3][3],
double& DistPToB,
array_1d<double, 4>& Weight,
array_1d<double, 3>& wall_delta_disp_at_contact_point,
array_1d<double, 3>& wall_velocity_at_contact_point,
int& ContactType
);
virtual void RenewData();
virtual void SendForcesToFEM();
int GetClusterId();
void SetClusterId(const int Id);
virtual double GetRadius();
virtual void SetRadius(double radius);
virtual void SetRadius();
virtual double CalculateVolume();
virtual double GetInteractionRadius(const int radius_index = 0);
virtual void SetInteractionRadius(const double radius, const int radius_index = 0);
virtual double GetSearchRadius();
DEMDiscontinuumConstitutiveLaw::Pointer GetConstitutiveLawPointer();
virtual void SetDefaultRadiiHierarchy(const double radius);
virtual void SetSearchRadius(const double radius);
virtual double GetMass();
virtual void SetMass(double real_mass);
virtual double CalculateMomentOfInertia();
virtual double GetYoung();
void SetYoungFromProperties(double* young);
virtual double GetRollingFriction();
void SetRollingFrictionFromProperties(double* rolling_friction);
virtual double GetRollingFrictionWithWalls();
void SetRollingFrictionWithWallsFromProperties(double* rolling_friction_with_walls);
virtual double GetPoisson();
void SetPoissonFromProperties(double* poisson);
virtual double GetTgOfFrictionAngle();
void SetTgOfFrictionAngleFromProperties(double* tg_of_friction_angle);
virtual double GetCoefficientOfRestitution();
void SetCoefficientOfRestitutionFromProperties(double* coefficient_of_restitution);
virtual double GetLnOfRestitCoeff();
void SetLnOfRestitCoeffFromProperties(double* ln_of_restit_coeff);
virtual double GetDensity();
void SetDensityFromProperties(double* density);
virtual int GetParticleMaterial();
void SetParticleMaterialFromProperties(int* particle_material);
virtual double GetParticleCohesion();
void SetParticleCohesionFromProperties(double* particle_cohesion);
virtual double GetParticleKNormal();
void SetParticleKNormalFromProperties(double* particle_k_normal);
virtual double GetParticleKTangential();
void SetParticleKTangentialFromProperties(double* particle_k_tangential);
//Dependent Friction
virtual double GetParticleContactRadius();
void SetParticleContactRadiusFromProperties(double* particle_contact_radius);
virtual double GetParticleMaxStress();
void SetParticleMaxStressFromProperties(double* particle_max_stress);
virtual double GetParticleGamma();
void SetParticleGammaFromProperties(double* particle_gamma);
array_1d<double, 3>& GetForce();
virtual double& GetElasticEnergy();
virtual double& GetInelasticFrictionalEnergy();
virtual double& GetInelasticViscodampingEnergy();
PropertiesProxy* GetFastProperties();
void SetFastProperties(PropertiesProxy* pProps);
void SetFastProperties(std::vector<PropertiesProxy>& list_of_proxies);
double SlowGetYoung();
double SlowGetRollingFriction();
double SlowGetRollingFrictionWithWalls();
double SlowGetPoisson();
double SlowGetTgOfFrictionAngle();
double SlowGetCoefficientOfRestitution();
double SlowGetDensity();
double SlowGetParticleCohesion();
int SlowGetParticleMaterial();
/// Turn back information as a string.
virtual std::string Info() const override
{
std::stringstream buffer;
buffer << "SphericParticle" ;
return buffer.str();
}
/// Print information about this object.
virtual void PrintInfo(std::ostream& rOStream) const override {rOStream << "SphericParticle";}
/// Print object's data.
virtual void PrintData(std::ostream& rOStream) const override {}
double mElasticEnergy;
double mInelasticFrictionalEnergy;
double mInelasticViscodampingEnergy;
std::vector<ParticleContactElement*> mBondElements;
std::vector<SphericParticle*> mNeighbourElements;
std::vector<int> mContactingNeighbourIds;
std::vector<int> mContactingFaceNeighbourIds;
std::vector<DEMWall*> mNeighbourRigidFaces;
std::vector<DEMWall*> mNeighbourPotentialRigidFaces;
std::vector<array_1d<double, 4> > mContactConditionWeights;
std::vector<int> mContactConditionContactTypes;
std::vector< array_1d<double,3> > mConditionContactPoints;
std::vector<array_1d<double, 3> > mNeighbourRigidFacesTotalContactForce;
std::vector<array_1d<double, 3> > mNeighbourRigidFacesElasticContactForce;
std::vector<array_1d<double, 3> > mNeighbourElasticContactForces;
std::vector<array_1d<double, 3> > mNeighbourElasticExtraContactForces;
virtual void ComputeAdditionalForces(array_1d<double, 3>& externally_applied_force, array_1d<double, 3>& externally_applied_moment, const ProcessInfo& r_process_info, const array_1d<double,3>& gravity);
virtual array_1d<double,3> ComputeWeight(const array_1d<double,3>& gravity, const ProcessInfo& r_process_info);
virtual void CalculateOnContactElements(size_t i_neighbour_count, double LocalContactForce[3]);
array_1d<double, 3> mContactMoment; //SLS
BoundedMatrix<double, 3, 3>* mStressTensor;
BoundedMatrix<double, 3, 3>* mSymmStressTensor;
double mPartialRepresentativeVolume;
std::vector<int> mFemOldNeighbourIds;
protected:
virtual void ComputeBallToRigidFaceContactForce(ParticleDataBuffer & data_buffer,
array_1d<double, 3>& rElasticForce,
array_1d<double, 3>& rContactForce,
double& RollingResistance,
array_1d<double, 3>& rigid_element_force,
ProcessInfo& r_process_info,
int search_control) ;
virtual void InitializeSolutionStep(ProcessInfo& r_process_info) override;
virtual void CalculateMomentum(array_1d<double, 3>& rMomentum);
virtual void CalculateLocalAngularMomentum(array_1d<double, 3>& rAngularMomentum);
virtual void ComputeBallToBallContactForce(ParticleDataBuffer & data_buffer,
ProcessInfo& r_process_info,
array_1d<double, 3>& rElasticForce,
array_1d<double, 3>& rContactForce,
double& RollingResistance);
virtual void EvaluateDeltaDisplacement(ParticleDataBuffer & data_buffer,
double DeltDisp[3],
double RelVel[3],
double LocalCoordSystem[3][3],
double OldLocalCoordSystem[3][3],
const array_1d<double, 3> &vel,
const array_1d<double, 3> &delta_displ);
virtual void RelativeDisplacementAndVelocityOfContactPointDueToRotation(const double indentation,
double DeltDesp[3],
double RelVel[3],
const double OldLocalCoordSystem[3][3],
const double &other_radius,
const double &dt,
const array_1d<double, 3> &angl_vel,
SphericParticle* neighbour_iterator);
virtual void RelativeDisplacementAndVelocityOfContactPointDueToOtherReasons(const ProcessInfo& r_process_info,
double DeltDisp[3], //IN GLOBAL AXES
double RelVel[3], //IN GLOBAL AXES
double OldLocalCoordSystem[3][3],
double LocalCoordSystem[3][3],
SphericParticle* neighbour_iterator);
virtual void RelativeDisplacementAndVelocityOfContactPointDueToRotationMatrix(double DeltDisp[3],
double RelVel[3],
const double OldLocalCoordSystem[3][3],
const double& other_radius,
const double& dt,
const array_1d<double, 3>& ang_vel,
SphericParticle* p_neighbour);
virtual void RelativeDisplacementAndVelocityOfContactPointDueToRotationQuaternion(double DeltDesp[3],
double RelVel[3],
const double OldLocalCoordSystem[3][3],
const double &other_radius,
const double &dt,
const array_1d<double, 3> &angl_vel,
SphericParticle* neighbour_iterator);
virtual void ComputeMoments(double normalLocalContactForce,
double GlobalElasticContactForces[3],
double& RollingResistance,
double LocalCoordSystem_2[3],
SphericParticle* neighbour_iterator,
double indentation,
bool wall=false) final;
virtual void ComputeRollingFriction(array_1d<double, 3>& rolling_resistance_moment, double& RollingResistance, double dt) final;
virtual double GetInitialDeltaWithFEM(int index);
virtual void ComputeOtherBallToBallForces(array_1d<double, 3>& other_ball_to_ball_forces);
virtual void EvaluateBallToBallForcesForPositiveIndentiations(SphericParticle::ParticleDataBuffer & data_buffer,
const ProcessInfo& r_process_info,
double LocalElasticContactForce[3],
double DeltDisp[3],
double LocalDeltDisp[3],
double RelVel[3],
double indentation,
double ViscoDampingLocalContactForce[3],
double& cohesive_force,
SphericParticle* element2,
bool& sliding,
double LocalCoordSystem[3][3],
double OldLocalCoordSystem[3][3],
array_1d<double, 3>& neighbour_elastic_contact_force);
virtual void AddUpForcesAndProject(double OldCoordSystem[3][3],
double LocalCoordSystem[3][3],
double LocalContactForce[3],
double LocalElasticContactForce[3],
double LocalElasticExtraContactForce[3],
double GlobalContactForce[3],
double GlobalElasticContactForce[3],
double GlobalElasticExtraContactForce[3],
double TotalGlobalElasticContactForce[3],
double ViscoDampingLocalContactForce[3],
const double cohesive_force,
array_1d<double, 3>& other_ball_to_ball_forces,
array_1d<double, 3>& rElasticForce,
array_1d<double, 3>& rContactForce,
const unsigned int i_neighbour_count,
ProcessInfo& r_process_info) final;
virtual void AddUpFEMForcesAndProject(double LocalCoordSystem[3][3],
double LocalContactForce[3],
double LocalElasticContactForce[3],
double GlobalContactForce[3],
double GlobalElasticContactForce[3],
double ViscoDampingLocalContactForce[3],
const double cohesive_force,
array_1d<double, 3>& rElasticForce,
array_1d<double, 3>& rContactForce,
array_1d<double, 3>& elastic_force_backup,
array_1d<double, 3>& total_force_backup) final;
virtual void AddUpMomentsAndProject(double LocalCoordSystem[3][3],
double ElasticLocalRotationalMoment[3],
double ViscoLocalRotationalMoment[3]) final;
virtual void ComputeWear(double LocalRelVel[3],
double mTimeStep,
bool sliding,
double inverse_of_volume,
double LocalElasticContactForce,
DEMWall* cast_neighbour);
virtual void AdditionalCalculate(const Variable<double>& rVariable, double& Output, const ProcessInfo& r_process_info);
virtual void AddNeighbourContributionToStressTensor(const double GlobalElasticContactForce[3],
const double other_to_me_vect[3],
const double distance,
const double radius_sum,
SphericParticle* element);
virtual void AddWallContributionToStressTensor(const double GlobalElasticContactForce[3],
const double other_to_me_vect[3],
const double distance,
const double contact_area);
virtual void RotateOldContactForces(const double LocalCoordSystem[3][3], const double OldLocalCoordSystem[3][3], array_1d<double, 3>& mNeighbourElasticContactForces) final;
virtual void ApplyGlobalDampingToContactForcesAndMoments(array_1d<double,3>& total_forces, array_1d<double,3>& total_moment);
DEMDiscontinuumConstitutiveLaw::Pointer mDiscontinuumConstitutiveLaw;
double mRadius;
double mSearchRadius;
double mRealMass;
PropertiesProxy* mFastProperties;
int mClusterId;
DEMIntegrationScheme* mpTranslationalIntegrationScheme;
DEMIntegrationScheme* mpRotationalIntegrationScheme;
double mGlobalDamping;
private:
friend class Serializer;
virtual void save(Serializer& rSerializer) const override
{
KRATOS_SERIALIZE_SAVE_BASE_CLASS(rSerializer, DiscreteElement );
rSerializer.save("mRadius",mRadius);
rSerializer.save("mSearchRadius", mSearchRadius);
rSerializer.save("mRealMass",mRealMass);
rSerializer.save("mClusterId",mClusterId);
rSerializer.save("HasStressTensor", (int)this->Is(DEMFlags::HAS_STRESS_TENSOR));
if (this->Is(DEMFlags::HAS_STRESS_TENSOR)){
rSerializer.save("mSymmStressTensor", mSymmStressTensor);
}
}
virtual void load(Serializer& rSerializer) override
{
KRATOS_SERIALIZE_LOAD_BASE_CLASS(rSerializer, DiscreteElement );
rSerializer.load("mRadius",mRadius);
rSerializer.load("mSearchRadius", mSearchRadius);
rSerializer.load("mRealMass",mRealMass);
rSerializer.load("mClusterId",mClusterId);
int aux_int=0;
rSerializer.load("HasStressTensor", aux_int);
if(aux_int) this->Set(DEMFlags::HAS_STRESS_TENSOR, true);
if (this->Is(DEMFlags::HAS_STRESS_TENSOR)){
mStressTensor = new BoundedMatrix<double, 3, 3>(3,3);
*mStressTensor = ZeroMatrix(3,3);
mSymmStressTensor = new BoundedMatrix<double, 3, 3>(3,3);
*mSymmStressTensor = ZeroMatrix(3,3);
rSerializer.load("mSymmStressTensor", mSymmStressTensor);
}
}
}; // Class SphericParticle
/// input stream function
inline std::istream& operator >> (std::istream& rIStream,
SphericParticle& rThis){ return rIStream;}
/// output stream function
inline std::ostream& operator << (std::ostream& rOStream,
const SphericParticle& rThis)
{
rThis.PrintInfo(rOStream);
rOStream << std::endl;
rThis.PrintData(rOStream);
return rOStream;
}
} // namespace Kratos.
#endif // KRATOS_SPHERIC_PARTICLE_H_INCLUDED defined
| [
"andre.voltan19@gmail.com"
] | andre.voltan19@gmail.com |
2b50a91535cf71d5d6924e2c5e9d2dc4b305e080 | b22588340d7925b614a735bbbde1b351ad657ffc | /athena/InnerDetector/InDetRecTools/SiSpacePointsSeedTool_xk/SiSpacePointsSeedTool_xk/SiSpacePointsSeedMaker_Cosmic.h | 0981dc4a313dcd37894f9da5edcd65476a66ff15 | [] | no_license | rushioda/PIXELVALID_athena | 90befe12042c1249cbb3655dde1428bb9b9a42ce | 22df23187ef85e9c3120122c8375ea0e7d8ea440 | refs/heads/master | 2020-12-14T22:01:15.365949 | 2020-01-19T03:59:35 | 2020-01-19T03:59:35 | 234,836,993 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,719 | h | /*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
*/
/////////////////////////////////////////////////////////////////////////////////
// Header file for class SiSpacePointsSeedMaker_Cosmic
/////////////////////////////////////////////////////////////////////////////////
// (c) ATLAS Detector software
/////////////////////////////////////////////////////////////////////////////////
// Class for track candidates generation using space points information
// for standard Atlas geometry
/////////////////////////////////////////////////////////////////////////////////
// Version 1.0 3/10/2004 I.Gavrilenko
/////////////////////////////////////////////////////////////////////////////////
#ifndef SiSpacePointsSeedMaker_Cosmic_H
#define SiSpacePointsSeedMaker_Cosmic_H
#include <list>
#include "GaudiKernel/ServiceHandle.h"
#include "MagFieldInterfaces/IMagFieldSvc.h"
#include "GaudiKernel/ToolHandle.h"
#include "AthenaBaseComps/AthAlgTool.h"
#include "InDetRecToolInterfaces/ISiSpacePointsSeedMaker.h"
#include "TrkSpacePoint/SpacePointContainer.h"
#include "TrkSpacePoint/SpacePointOverlapCollection.h"
#include "SiSpacePointsSeedTool_xk/SiSpacePointForSeed.h"
class MsgStream ;
namespace Trk {
class IPRD_AssociationTool;
}
namespace InDet {
class SiSpacePointsSeedMaker_Cosmic :
virtual public ISiSpacePointsSeedMaker, public AthAlgTool
{
///////////////////////////////////////////////////////////////////
// Public methods:
///////////////////////////////////////////////////////////////////
public:
///////////////////////////////////////////////////////////////////
// Standard tool methods
///////////////////////////////////////////////////////////////////
SiSpacePointsSeedMaker_Cosmic
(const std::string&,const std::string&,const IInterface*);
virtual ~SiSpacePointsSeedMaker_Cosmic();
virtual StatusCode initialize();
virtual StatusCode finalize ();
///////////////////////////////////////////////////////////////////
// Methods to initialize tool for new event or region
///////////////////////////////////////////////////////////////////
void newEvent (int);
void newRegion
(const std::vector<IdentifierHash>&,const std::vector<IdentifierHash>&);
void newRegion
(const std::vector<IdentifierHash>&,const std::vector<IdentifierHash>&,const IRoiDescriptor&);
///////////////////////////////////////////////////////////////////
// Methods to initilize different strategies of seeds production
// with two space points with or without vertex constraint
///////////////////////////////////////////////////////////////////
void find2Sp (const std::list<Trk::Vertex>&);
///////////////////////////////////////////////////////////////////
// Methods to initilize different strategies of seeds production
// with three space points with or without vertex constraint
///////////////////////////////////////////////////////////////////
void find3Sp (const std::list<Trk::Vertex>&);
void find3Sp (const std::list<Trk::Vertex>&,const double*);
///////////////////////////////////////////////////////////////////
// Methods to initilize different strategies of seeds production
// with variable number space points with or without vertex constraint
// Variable means (2,3,4,....) any number space points
///////////////////////////////////////////////////////////////////
void findVSp (const std::list<Trk::Vertex>&);
///////////////////////////////////////////////////////////////////
// Iterator through seeds pseudo collection produced accordingly
// methods find
///////////////////////////////////////////////////////////////////
const SiSpacePointsSeed* next();
///////////////////////////////////////////////////////////////////
// Print internal tool parameters and status
///////////////////////////////////////////////////////////////////
MsgStream& dump (MsgStream & out) const;
std::ostream& dump (std::ostream& out) const;
protected:
/** @name Disallow default instantiation, copy, assignment */
//@{
SiSpacePointsSeedMaker_Cosmic() = delete;
SiSpacePointsSeedMaker_Cosmic(const SiSpacePointsSeedMaker_Cosmic&) = delete;
SiSpacePointsSeedMaker_Cosmic &operator=(const SiSpacePointsSeedMaker_Cosmic&) = delete;
//@}
///////////////////////////////////////////////////////////////////
// Protected data and methods
///////////////////////////////////////////////////////////////////
ServiceHandle<MagField::IMagFieldSvc> m_fieldServiceHandle ;
MagField::IMagFieldSvc* m_fieldService ;
ToolHandle<Trk::IPRD_AssociationTool> m_assoTool ;
bool m_pixel ;
bool m_sct ;
bool m_endlist ;
bool m_useOverlap ;
bool m_useassoTool ;
bool m_checketa ;
int m_outputlevel ;
int m_nprint ;
int m_state ;
int m_nspoint ;
int m_mode ;
int m_nlist ;
int m_maxsize ;
int m_nseeds ;
float m_ptmin ;
float m_drmin ;
float m_drmax ;
float m_rapcut ;
float m_dzdrmin ;
float m_dzdrmax ;
float m_zmin ;
float m_zmax ;
float r_rmax ;
float r_rstep ;
float m_diver ;
float m_dazmax ;
float m_diverpps ;
float m_diversss ;
float m_etamin, m_etamax ;
int r_size ;
int rf_size ;
int rfz_size ;
std::list<InDet::SiSpacePointForSeed*>* r_Sorted ;
std::list<InDet::SiSpacePointForSeed*> rf_Sorted [ 53] ;
std::list<InDet::SiSpacePointForSeed*> rfz_Sorted [ 583] ;
std::list<InDet::SiSpacePointForSeed*> l_spforseed ;
std::list<InDet::SiSpacePointForSeed*>::iterator i_spforseed;
std::list<InDet::SiSpacePointForSeed*>::iterator m_rMin ;
int m_ns,m_nsaz ;
int m_fNmax ;
int m_fNmin ;
int m_zMin ;
int m_nr ; int* r_index ; int* r_map ;
int m_nrf , rf_index [ 53], rf_map [ 53] ;
int m_nrfz , rfz_index [583], rfz_map [583] ;
int rfz_b[583],rfz_t[593],rfz_ib[583][12],rfz_it[583][12] ;
float m_sF ;
///////////////////////////////////////////////////////////////////
// Tables for 3 space points seeds search
///////////////////////////////////////////////////////////////////
int m_maxsizeSP ;
InDet::SiSpacePointForSeed** m_SP ;
float * m_R ;
float * m_Tz ;
float * m_Er ;
float * m_U ;
float * m_V ;
std::multimap<float,InDet::SiSpacePointsSeed*> l_seeds;
std::multimap<float,InDet::SiSpacePointsSeed*>::iterator i_seed ;
std::multimap<float,InDet::SiSpacePointsSeed*>::iterator i_seede;
InDet::SiSpacePointsSeed* m_seeds;
///////////////////////////////////////////////////////////////////
// Space points container
///////////////////////////////////////////////////////////////////
// std::string m_spacepointsSCTname ;
// std::string m_spacepointsPixelname ;
// std::string m_spacepointsOverlapname ;
SG::ReadHandle<SpacePointContainer> m_spacepointsSCT ;
SG::ReadHandle<SpacePointContainer> m_spacepointsPixel ;
SG::ReadHandle<SpacePointOverlapCollection> m_spacepointsOverlap ;
///////////////////////////////////////////////////////////////////
// Protected methods
///////////////////////////////////////////////////////////////////
MsgStream& dumpConditions(MsgStream & out) const;
MsgStream& dumpEvent (MsgStream & out) const;
void buildFrameWork() ;
SiSpacePointForSeed* newSpacePoint
(Trk::SpacePoint*const&) ;
SiSpacePointForSeed* newSpacePoint
(Trk::SpacePoint*const&,const float*) ;
void newSeed
(const Trk::SpacePoint*&,const Trk::SpacePoint*&,
const float&) ;
void newSeed
(const Trk::SpacePoint*&,const Trk::SpacePoint*&,
const Trk::SpacePoint*&,const float&) ;
void fillLists () ;
void erase () ;
void production2Sp () ;
void production3Sp () ;
void production3Sp
(std::list<InDet::SiSpacePointForSeed*>::iterator*,
std::list<InDet::SiSpacePointForSeed*>::iterator*,
std::list<InDet::SiSpacePointForSeed*>::iterator*,
std::list<InDet::SiSpacePointForSeed*>::iterator*,
int,int,float,float) ;
void production3SpWithoutField() ;
void production3SpWithoutField
(std::list<InDet::SiSpacePointForSeed*>::iterator*,
std::list<InDet::SiSpacePointForSeed*>::iterator*,
std::list<InDet::SiSpacePointForSeed*>::iterator*,
std::list<InDet::SiSpacePointForSeed*>::iterator*,
int,int,float) ;
bool isUsed(const Trk::SpacePoint*) ;
};
MsgStream& operator << (MsgStream& ,const SiSpacePointsSeedMaker_Cosmic&);
std::ostream& operator << (std::ostream&,const SiSpacePointsSeedMaker_Cosmic&);
///////////////////////////////////////////////////////////////////
// Inline methods
///////////////////////////////////////////////////////////////////
inline const SiSpacePointsSeed* SiSpacePointsSeedMaker_Cosmic::next()
{
if(i_seed==i_seede) return 0;
SiSpacePointsSeed* sp = (*i_seed).second; ++i_seed;
return(sp);
}
///////////////////////////////////////////////////////////////////
// New space point for seeds
///////////////////////////////////////////////////////////////////
inline SiSpacePointForSeed* SiSpacePointsSeedMaker_Cosmic::newSpacePoint
(Trk::SpacePoint*const& sp)
{
SiSpacePointForSeed* sps;
float r[3] = {float(sp->globalPosition().x()),
float(sp->globalPosition().y()),
float(sp->globalPosition().z())};
if(i_spforseed!=l_spforseed.end()) {
sps = (*i_spforseed++); sps->set(sp,r);
}
else {
l_spforseed.push_back((sps=new SiSpacePointForSeed(sp,r)));
i_spforseed = l_spforseed.end();
}
return sps;
}
///////////////////////////////////////////////////////////////////
// New space point for seeds with error correction
///////////////////////////////////////////////////////////////////
inline SiSpacePointForSeed* SiSpacePointsSeedMaker_Cosmic::newSpacePoint
(Trk::SpacePoint*const& sp,const float* sc)
{
SiSpacePointForSeed* sps;
float r[3]; r[0]=sp->globalPosition().x(); r[1]=sp->globalPosition().y(); r[2]=sp->globalPosition().z();
if(i_spforseed!=l_spforseed.end()) {
sps = (*i_spforseed++); sps->set(sp,r,sc);
}
else {
l_spforseed.push_back((sps=new SiSpacePointForSeed(sp,r,sc)));
i_spforseed = l_spforseed.end();
}
return sps;
}
///////////////////////////////////////////////////////////////////
// New 2 space points seeds
///////////////////////////////////////////////////////////////////
inline void SiSpacePointsSeedMaker_Cosmic::newSeed
(const Trk::SpacePoint*& p1,const Trk::SpacePoint*& p2,
const float& z)
{
if(m_nseeds < m_maxsize) {
m_seeds[m_nseeds].erase ( );
m_seeds[m_nseeds].add (p1);
m_seeds[m_nseeds].add (p2);
m_seeds[m_nseeds].setZVertex(0.);
l_seeds.insert(std::make_pair(z,m_seeds+m_nseeds));
++m_nseeds;
}
else {
std::multimap<float,InDet::SiSpacePointsSeed*>::reverse_iterator l = l_seeds.rbegin();
if((*l).first <= z) return;
InDet::SiSpacePointsSeed* s = (*l).second;
l_seeds.erase((*l).first);
s->erase ( );
s->add (p1);
s->add (p2);
s->setZVertex(0.);
l_seeds.insert(std::make_pair(z,s));
}
}
///////////////////////////////////////////////////////////////////
// New 3 space points seeds
///////////////////////////////////////////////////////////////////
inline void SiSpacePointsSeedMaker_Cosmic::newSeed
(const Trk::SpacePoint*& p1,const Trk::SpacePoint*& p2,
const Trk::SpacePoint*& p3,const float& z)
{
if(m_nseeds < m_maxsize) {
m_seeds[m_nseeds].erase ( );
m_seeds[m_nseeds].add (p1);
m_seeds[m_nseeds].add (p2);
m_seeds[m_nseeds].add (p3);
m_seeds[m_nseeds].setZVertex(0.);
l_seeds.insert(std::make_pair(z,m_seeds+m_nseeds));
++m_nseeds;
}
else {
std::multimap<float,InDet::SiSpacePointsSeed*>::reverse_iterator l = l_seeds.rbegin();
if((*l).first <= z) return;
InDet::SiSpacePointsSeed* s = (*l).second;
l_seeds.erase((*l).first);
s->erase ( );
s->add (p1);
s->add (p2);
s->add (p3);
s->setZVertex(0.);
l_seeds.insert(std::make_pair(z,s));
}
}
} // end of name space
#endif // SiSpacePointsSeedMaker_Cosmic_H
| [
"rushioda@lxplus754.cern.ch"
] | rushioda@lxplus754.cern.ch |
b5dd329f6b2ddbe1e85679e7471fa20265900134 | d3fb04c385bfe0021290cfaafc83015b23be937f | /Data Structures using c/second/main.cpp | cfe2ba295ba58a342828246d18df9eb65bb687bd | [] | no_license | kkomalk/Programming-Data-Structure-using-C | 97c838547e23f8ec5f1d0900b614284c74edab42 | f4b508180505c1bf2e2eac325f31b0d69a5e46c1 | refs/heads/main | 2023-08-28T22:25:24.653421 | 2021-10-31T12:20:44 | 2021-10-31T12:20:44 | 423,136,466 | 0 | 0 | null | 2021-10-31T12:04:29 | 2021-10-31T12:04:29 | null | UTF-8 | C++ | false | false | 237 | cpp | #include <iostream>
using namespace std;
int main()
{
cout << "Enter number" << endl;
int n;
int sum=0;
cin>>n;
while(n>0)
{ if(n%2==0)
sum=sum+n;
n--;
}
cout<<sum<<endl;
return 0;
}
| [
"call2hacter@gmail.com"
] | call2hacter@gmail.com |
61bb18c0207c6c487c6791b55cca74922a43081b | 2d0502baee59d2447076c941d499e5c9c8cf972f | /benchmark/ComplexOptSys/BenchmarkComplexOptSys.cpp | e65d9bbabdc455010cc56b3b676df8106cf75572 | [] | no_license | kuangzhanxpz/Tracer-Open-Master | 69c7da43684256d16e8e453d2a739c859c71d93e | 322c09d2bbe49a74f07b6d748e0dd2787afb8b4e | refs/heads/master | 2023-07-16T03:14:25.154544 | 2021-08-24T16:00:02 | 2021-08-24T16:00:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 17,820 | cpp | #include "BenchmarkComplexOptSys.h"
#include "..\..\LowLevelTracing\Math_LLT.h"
// surfaces
#include "..\..\LowLevelTracing\Surfaces\SphericalSurface_LLT.h"
#include "..\..\LowLevelTracing\Surfaces\PlanGeometry_LLT.h"
#include "..\..\LowLevelTracing\Surfaces\ApertureStop_LLT.h"
// interactions
#include "..\..\LowLevelTracing\Interaction\RefractedRay_LLT.h"
#include "..\..\LowLevelTracing\Interaction\Absorb_LLT.h"
#include "..\..\LowLevelTracing\Interaction\DoNothingInteraction_LLT.h"
// optical system
#include "..\..\LowLevelTracing\OpticalSystem_LLT.h"
#include "..\..\FillAptertureStop\FillApertureStop.h"
// analyse
#include "..\..\Analyse\Spot.h"
#include "..\..\Analyse\OpticalPathDifference.h"
// plot
#include "..\..\Plot\PlotSpotDiagram.h"
#include "..\..\Plot\PlotOPD.h"
//here we design complex optical system and check the functions of the ray tracer
bool BechmarkComplexOpticalSystem::checkComplexOpticalSystem()
{
typedef std::shared_ptr< SurfaceIntersectionRay_LLT > surfacePtr_LLT;
std::vector<bool> checkComOptSys;
// complex opt system
//***
//all the surfaces
ApertureStop_LLT A0(1.0, { 0.0,0.0,10.0 }, { 0.0,0.0,1.0 }, 1.0);
SphericalSurface_LLT S1(/*radius*/38.73360379131933, /*semiHeight*/5.0, /*Apex of the sphere*/{ 0.0, 0.0, 15.0 }, /*Direction*/ VectorStructR3{ 0.0, 0.0, -1.0 }, /*refIndexSideA*/1.5, /*refIndexSideB*/1.0);
SphericalSurface_LLT S2(/*radius*/10.33817058758478, /*semiHeight*/5.0, /*Apex of the sphere*/{ 0.0, 0.0, 20.0 }, /*Direction*/ VectorStructR3{ 0.0, 0.0, -1.0 }, /*refIndexSideA*/1.0, /*refIndexSideB*/1.5);
SphericalSurface_LLT S3(/*radius*/51.02696739895755, /*semiHeight*/5.0, /*Apex of the sphere*/{ 0.0, 0.0, 22.0 }, /*Direction*/ VectorStructR3{ 0.0, 0.0, 1.0 }, /*refIndexSideA*/1.0, /*refIndexSideB*/1.5);
PlanGeometry_LLT S4(/*semiHeight*/5.0, /*point*/{ 0.0,0.0,27.0 }, /*direction*/{ 0.0,0.0,1.0 }, /*refractiveSideA*/ 1.5, /*refractiveSideB*/ 1.0);
SphericalSurface_LLT S5(/*radius*/61.48513190056155, /*semiHeight*/5.0, /*Apex of the sphere*/{ 0.0, 0.0, 29.0 }, /*Direction*/ VectorStructR3{ 0.0, 0.0, 1.0 }, /*refIndexSideA*/1.0, /*refIndexSideB*/1.5);
PlanGeometry_LLT S6(/*semiHeight*/5.0, /*point*/{ 0.0,0.0,34.0 }, /*direction*/{ 0.0,0.0,1.0 }, /*refractiveSideA*/ 1.5, /*refractiveSideB*/ 1.0);
SphericalSurface_LLT S7(/*radius*/13.22318498941039, /*semiHeight*/5.0, /*Apex of the sphere*/{ 0.0, 0.0, 36.0 }, /*Direction*/ VectorStructR3{ 0.0, 0.0, 1.0 }, /*refIndexSideA*/1.0, /*refIndexSideB*/1.5);
PlanGeometry_LLT S8(/*semiHeight*/5.0, /*point*/{ 0.0,0.0,41.0 }, /*direction*/{ 0.0,0.0,1.0 }, /*refractiveSideA*/ 1.5, /*refractiveSideB*/ 1.0);
SphericalSurface_LLT S9(/*radius*/12.07896133399859, /*semiHeight*/5.0, /*Apex of the sphere*/{ 0.0, 0.0, 43.0 }, /*Direction*/ VectorStructR3{ 0.0, 0.0, -1.0 }, /*refIndexSideA*/1.5, /*refIndexSideB*/1.0);
SphericalSurface_LLT S10(/*radius*/26.46510860484050, /*semiHeight*/5.0, /*Apex of the sphere*/{ 0.0, 0.0, 48.0 }, /*Direction*/ VectorStructR3{ 0.0, 0.0, 1.0 }, /*refIndexSideA*/1.5, /*refIndexSideB*/1.6);
SphericalSurface_LLT S11(/*radius*/21.48098096423011, /*semiHeight*/5.0, /*Apex of the sphere*/{ 0.0, 0.0, 53.0 }, /*Direction*/ VectorStructR3{ 0.0, 0.0, -1.0 }, /*refIndexSideA*/1.0, /*refIndexSideB*/1.6);
SphericalSurface_LLT S12(/*radius*/30.0, /*semiHeight*/5.0, /*Apex of the sphere*/{ 0.0, 0.0, 55.0 }, /*Direction*/ VectorStructR3{ 0.0, 0.0, 1.0 }, /*refIndexSideA*/1.0, /*refIndexSideB*/1.5);
SphericalSurface_LLT S13(/*radius*/70.0, /*semiHeight*/5.0, /*Apex of the sphere*/{ 0.0, 0.0, 60.0 }, /*Direction*/ VectorStructR3{ 0.0, 0.0, -1.0 }, /*refIndexSideA*/1.6, /*refIndexSideB*/1.5);
SphericalSurface_LLT S14(/*radius*/40.0, /*semiHeight*/5.0, /*Apex of the sphere*/{ 0.0, 0.0, 65.0 }, /*Direction*/ VectorStructR3{ 0.0, 0.0, 1.0 }, /*refIndexSideA*/1.6, /*refIndexSideB*/1.0);
PlanGeometry_LLT S15(/*semiHeight*/5.0, /*point*/{ 0.0,0.0,75.0 }, /*direction*/{ 0.0,0.0,1.0 }, /*refractiveSideA*/ 1.0, /*refractiveSideB*/ 1.0);
//***
// build the optical system
RefractedRay_LLT refrac;
Absorb_LLT absorb;
DoNothingInteraction_LLT doNothing;
OpticalSystem_LLT optSysE1;
optSysE1.fillVectorSurfaceAndInteractingData(0, &A0, doNothing.clone());
optSysE1.fillVectorSurfaceAndInteractingData(1, &S1, refrac.clone());
optSysE1.fillVectorSurfaceAndInteractingData(2, &S2, refrac.clone());
optSysE1.fillVectorSurfaceAndInteractingData(3, &S3, refrac.clone());
optSysE1.fillVectorSurfaceAndInteractingData(4, &S4, refrac.clone());
optSysE1.fillVectorSurfaceAndInteractingData(5, &S5, refrac.clone());
optSysE1.fillVectorSurfaceAndInteractingData(6, &S6, refrac.clone());
optSysE1.fillVectorSurfaceAndInteractingData(7, &S7, refrac.clone());
optSysE1.fillVectorSurfaceAndInteractingData(8, &S8, refrac.clone());
optSysE1.fillVectorSurfaceAndInteractingData(9, &S9, refrac.clone());
optSysE1.fillVectorSurfaceAndInteractingData(10, &S10, refrac.clone());
optSysE1.fillVectorSurfaceAndInteractingData(11, &S11, refrac.clone());
optSysE1.fillVectorSurfaceAndInteractingData(12, &S12, refrac.clone());
optSysE1.fillVectorSurfaceAndInteractingData(13, &S13, refrac.clone());
optSysE1.fillVectorSurfaceAndInteractingData(14, &S14, refrac.clone());
optSysE1.fillVectorSurfaceAndInteractingData(15, &S15, refrac.clone());
// single ray tracing
Ray_LLT rayE1_0({ 0.0,0.0,0.0 }, { 0.0,1.0,10.0 }, 1.0);
Light_LLT light;
light.setWavelength(550.0);
LightRayStruct lightRayE1_0(light, rayE1_0, 1);
SequentialRayTracing seqTraceE1_single(optSysE1);
seqTraceE1_single.sequentialRayTracing(lightRayE1_0);
IntersectInformationStruct interInfosS0 = seqTraceE1_single.getAllInterInfosOfSurf_i(0).at(0);
IntersectInformationStruct interInfosS1 = seqTraceE1_single.getAllInterInfosOfSurf_i(1).at(0);
IntersectInformationStruct interInfosS2 = seqTraceE1_single.getAllInterInfosOfSurf_i(2).at(0);
IntersectInformationStruct interInfosS3 = seqTraceE1_single.getAllInterInfosOfSurf_i(3).at(0);
IntersectInformationStruct interInfosS4 = seqTraceE1_single.getAllInterInfosOfSurf_i(4).at(0);
IntersectInformationStruct interInfosS5 = seqTraceE1_single.getAllInterInfosOfSurf_i(5).at(0);
IntersectInformationStruct interInfosS6 = seqTraceE1_single.getAllInterInfosOfSurf_i(6).at(0);
IntersectInformationStruct interInfosS7 = seqTraceE1_single.getAllInterInfosOfSurf_i(7).at(0);
IntersectInformationStruct interInfosS8 = seqTraceE1_single.getAllInterInfosOfSurf_i(8).at(0);
IntersectInformationStruct interInfosS9 = seqTraceE1_single.getAllInterInfosOfSurf_i(9).at(0);
IntersectInformationStruct interInfosS10 = seqTraceE1_single.getAllInterInfosOfSurf_i(10).at(0);
IntersectInformationStruct interInfosS11 = seqTraceE1_single.getAllInterInfosOfSurf_i(11).at(0);
IntersectInformationStruct interInfosS12 = seqTraceE1_single.getAllInterInfosOfSurf_i(12).at(0);
IntersectInformationStruct interInfosS13 = seqTraceE1_single.getAllInterInfosOfSurf_i(13).at(0);
IntersectInformationStruct interInfosS14 = seqTraceE1_single.getAllInterInfosOfSurf_i(14).at(0);
IntersectInformationStruct interInfosS15 = seqTraceE1_single.getAllInterInfosOfSurf_i(15).at(0);
//// plot 2d
optSysE1.fillVectorToPlot2D(0, &A0);
optSysE1.fillVectorToPlot2D(1, &S1);
optSysE1.fillVectorToPlot2D(2, &S2);
optSysE1.fillVectorToPlot2D(3, &S3);
optSysE1.fillVectorToPlot2D(4, &S4);
optSysE1.fillVectorToPlot2D(5, &S5);
optSysE1.fillVectorToPlot2D(6, &S6);
optSysE1.fillVectorToPlot2D(7, &S7);
optSysE1.fillVectorToPlot2D(8, &S8);
optSysE1.fillVectorToPlot2D(9, &S9);
optSysE1.fillVectorToPlot2D(10, &S10);
optSysE1.fillVectorToPlot2D(11, &S11);
optSysE1.fillVectorToPlot2D(12, &S12);
optSysE1.fillVectorToPlot2D(13, &S13);
optSysE1.fillVectorToPlot2D(14, &S14);
optSysE1.fillVectorToPlot2D(15, &S15);
SequentialRayTracing SeqTraceE1_plot2D(optSysE1);
std::vector<LightRayStruct> lightRayAlong_Y_E1 = SequentialRayTracing::lightRayAlongY({ 0.0, 0.0, 0.0 }, 7, 10.0, -1.0, 1.0, 550, 1.0);
std::vector<LightRayStruct> lightRayAlong_Y_E2 = SequentialRayTracing::lightRayAlongY({ 0.0, 1.5, 0.0 }, 7, 10.0, -1.0, 1.0, 550, 1.0);
std::vector<LightRayStruct> lightRayAlong_Y_E3 = SequentialRayTracing::lightRayAlongY({ 0.0, -1.5, 0.0 }, 7, 10.0, -1.0, 1.0, 550, 1.0);
SeqTraceE1_plot2D.seqRayTracingWithVectorOfLightRays(lightRayAlong_Y_E1);
SeqTraceE1_plot2D.seqRayTracingWithVectorOfLightRays(lightRayAlong_Y_E2);
SeqTraceE1_plot2D.seqRayTracingWithVectorOfLightRays(lightRayAlong_Y_E3);
cv::Mat imageE1(/*x*/800,/*y*/ 1600, CV_8UC3, cv::Scalar(255, 255, 255));
// Plot the system
Plot2D plot2D0(optSysE1, SeqTraceE1_plot2D, imageE1, /*scale*/ 20, 16, 1);
plot2D0.plotOpticalSystem2D();
plot2D0.plotRays();
PlotCarsten::plotDiagram(imageE1, "complex optical system E1");
PlotCarsten::saveImage(imageE1, "complexOpticalSystemE1.jpg");
// analyse
// calc spot diagram opt achse
FillApertureStop fillAperStopE1_optAchse({ 0.0,0.0,0.0 }, 1, { 0.0,0.0,10.0 }, { 0.0,0.0,1.0 }, /*rings*/6, /*arms*/8, 1.5, light);
SequentialRayTracing seqTraceE1_OptAchse(optSysE1);
seqTraceE1_OptAchse.seqRayTracingWithVectorOfLightRays(fillAperStopE1_optAchse.getVectorWithLightRays());
Spot spotE1_optAchese(seqTraceE1_OptAchse.getAllInterPointsAtSurf_i_notFiltered(15), seqTraceE1_OptAchse.getAllInterPointsAtSurf_i_notFiltered(15).at(0));
real rmsE1_optAchse = spotE1_optAchese.getRMS_mm() * 1000;
real rmsZemaxE1_optAchse = 2.312; // it is for Ray Density 6 -> rings = 6, arms =8
real geoE1_optAchse = spotE1_optAchese.getGeoRadius() * 1000;
real geoZemaxE1_optAchse = 3.620; // it is for Ray Density 6 -> rings = 6, arms =8
bool checkRSM_optAchse = Math::compareTwoNumbers_decimals(rmsE1_optAchse, rmsZemaxE1_optAchse,2);
bool checkGeoE1_optAchse = Math::compareTwoNumbers_decimals (geoE1_optAchse, geoZemaxE1_optAchse, 2);
checkComOptSys.push_back(checkRSM_optAchse);
checkComOptSys.push_back(checkGeoE1_optAchse);
// calc spot diagram field
FillApertureStop fillAperStopE1_filed({ 0.0,1.0,0.0 }, 1, { 0.0,0.0,10.0 }, { 0.0,0.0,1.0 }, 6, 8, 1.5, light);
SequentialRayTracing seqTraceE1_filed(optSysE1);
seqTraceE1_filed.seqRayTracingWithVectorOfLightRays(fillAperStopE1_filed.getVectorWithLightRays());
Spot spotE1_field(seqTraceE1_filed.getAllInterPointsAtSurf_i_notFiltered(15), seqTraceE1_filed.getAllInterPointsAtSurf_i_notFiltered(15).at(0));
real rmsE1_field = spotE1_field.getRMS_mm() * 1000;
real rmsZemaxE1_field = 10.724; // it is for Ray Density 6 -> rings = 6, arms =8
real geoE1_field = spotE1_field.getGeoRadius() * 1000;
real geoZemaxE1_field = 23.782; // it is for Ray Density 6 -> rings = 6, arms =8
bool checkRSM_field = Math::compareTwoNumbers_decimals(rmsE1_field, rmsZemaxE1_field,2);
bool checkGeoE1_field = Math::compareTwoNumbers_decimals(geoE1_field, geoZemaxE1_field,2);
checkComOptSys.push_back(checkRSM_field);
checkComOptSys.push_back(checkGeoE1_field);
// calc OPD opt achse
std::vector<LightRayStruct> lightRayAlong_X_E1_optAchse = SequentialRayTracing::lightRayAlongX({ 0.0, 0.0, 0.0 }, 5, 10.0, -1.0, 1.0, 550.0, 1.0);
std::vector<LightRayStruct> lightRayAlong_Y_E1_optAchse = SequentialRayTracing::lightRayAlongY({ 0.0, 0.0, 0.0 }, 5, 10.0, -1.0, 1.0, 550.0, 1.0);
PlanGeometry_LLT exitPupilE1(/*semiHeight*/20.0, /*point*/{ 0.0,0.0,201.5696182 }, /*direction*/{ 0.0,0.0,1.0 }, /*refractiveSideA*/ 1.0, /*refractiveSideB*/ 1.0);
surfacePtr_LLT exitPupilE1_ptr = exitPupilE1.clone();
Ray_LLT chiefRayE1_optAchse({ 0.0,0.0,0.0 }, { 0.0,0.0,1.0 }, 1.0);
LightRayStruct chiefLightRayE1_optAchse(light, chiefRayE1_optAchse, 1);
OPD OPD_E1_optAchse(exitPupilE1_ptr, optSysE1, lightRayAlong_X_E1_optAchse, lightRayAlong_Y_E1_optAchse, chiefLightRayE1_optAchse);
real OPD_E1_optAchse_neg1 = OPD_E1_optAchse.getOPD_Y_inVec().at(0);
bool check_OPD_E1_optAchse_neg1 = Math::compareTwoNumbers_decimals(-0.142047768537, OPD_E1_optAchse_neg1,5);
checkComOptSys.push_back(check_OPD_E1_optAchse_neg1);
real OPD_E1_optAchse_neg05 = OPD_E1_optAchse.getOPD_Y_inVec().at(1);
bool check_OPD_E1_optAchse_neg05 = Math::compareTwoNumbers_decimals(-0.020161259362, OPD_E1_optAchse_neg05, 5);
checkComOptSys.push_back(check_OPD_E1_optAchse_neg05);
real OPD_E1_optAchse_0 = OPD_E1_optAchse.getOPD_Y_inVec().at(2);
bool check_OPD_E1_optAchse_0 = Math::compareTwoNumbers_decimals(0.0, OPD_E1_optAchse_0,5);
checkComOptSys.push_back(check_OPD_E1_optAchse_0);
real OPD_E1_optAchse_05 = OPD_E1_optAchse.getOPD_Y_inVec().at(3);
bool check_OPD_E1_optAchse_05 = Math::compareTwoNumbers_decimals(-0.020161259362, OPD_E1_optAchse_05,5);
checkComOptSys.push_back(check_OPD_E1_optAchse_05);
real OPD_E1_optAchse_1 = OPD_E1_optAchse.getOPD_Y_inVec().at(4);
bool check_OPD_E1_optAchse_1 = Math::compareTwoNumbers_decimals(-0.142047768537, OPD_E1_optAchse_1,5);
checkComOptSys.push_back(check_OPD_E1_optAchse_1);
// // calc OPD field
OPD OPD_E_field;
std::vector<LightRayStruct> lightRayAlong_X_E1_field = SequentialRayTracing::lightRayAlongX({ 0.0, 1.0, 0.0 }, 5, 10.0, -1.0, 1.0, 550.0, 1.0);
std::vector<LightRayStruct> lightRayAlong_Y_E1_field = SequentialRayTracing::lightRayAlongY({ 0.0, 1.0, 0.0 }, 5, 10.0, -1.0, 1.0, 550.0, 1.0);
Ray_LLT chiefRayE1_field({ 0.0,1.0,0.0 }, { 0.0,-1.0,10.0 }, 1.0);
LightRayStruct chiefLightRayE1_field(light, chiefRayE1_field, 1);
OPD OPD_E1_field(exitPupilE1_ptr, optSysE1, lightRayAlong_X_E1_field, lightRayAlong_Y_E1_field, chiefLightRayE1_field);
real OPD_E1_field_neg1 = OPD_E1_field.getOPD_Y_inVec().at(0);
bool check_E1_field_neg1 = Math::compareTwoNumbers_decimals(OPD_E1_field_neg1, 0.9275625741142, 5);
checkComOptSys.push_back(check_E1_field_neg1);
real OPD_E1_field_neg05 = OPD_E1_field.getOPD_Y_inVec().at(1);
bool check_OPD_E1_field_neg05 = Math::compareTwoNumbers_decimals(OPD_E1_field_neg05, 0.3238029237669, 5);
checkComOptSys.push_back(check_OPD_E1_field_neg05);
real OPD_E1_field_0 = OPD_E1_field.getOPD_Y_inVec().at(2);
bool check_OPD_E1_field_0 = Math::compareTwoNumbers_decimals(OPD_E1_field_0, 0.0, 5);
checkComOptSys.push_back(check_OPD_E1_field_0);
real OPD_E1_field_05 = OPD_E1_field.getOPD_Y_inVec().at(3);
bool check_OPD_E1_field_05 = Math::compareTwoNumbers_decimals(OPD_E1_field_05, 0.3891952335191, 5);
checkComOptSys.push_back(check_OPD_E1_field_05);
real OPD_E1_field_1 = OPD_E1_field.getOPD_Y_inVec().at(4);
bool check_OPD_E1_field_1 = Math::compareTwoNumbers_decimals(OPD_E1_field_1, 1.5631132361715, 5);
checkComOptSys.push_back(check_OPD_E1_field_1);
// Plot spot diagram opt achse
std::vector<Spot> vecSpotE1_optAchese{ spotE1_optAchese };
PlotSpotDiagramm PlotSpotE1_optAchse(spotE1_optAchese.getRefPoint(), vecSpotE1_optAchese, 0.09950372, 550);
PlotCarsten::plotDiagram(PlotSpotE1_optAchse.getMatrixToPlotSpot(), "Spot Diagram optical achse");
PlotCarsten::saveImage(PlotSpotE1_optAchse.getMatrixToPlotSpot(), "../benchmark/Plot/imagBes/image1.jpg");
// Plot spot diagram field
std::vector<Spot> vecSpotE1_field{ spotE1_field };
PlotSpotDiagramm PlotSpotE1_field(spotE1_field.getRefPoint(), vecSpotE1_field, 0.09950372, 550);
PlotCarsten::plotDiagram(PlotSpotE1_field.getMatrixToPlotSpot(), "Spot Diagram field");
PlotCarsten::saveImage(PlotSpotE1_optAchse.getMatrixToPlotSpot(), "../benchmark/Plot/images/image1.jpg");
// Plot OPD opt achse
std::vector<LightRayStruct> lightRayAlong_X_E1_optAchse2 = SequentialRayTracing::lightRayAlongX({ 0.0, 0.0, 0.0 }, 100, 10.0, -1.0, 1.0, 550, 1.0);
std::vector<LightRayStruct> lightRayAlong_Y_E1_optAchse2 = SequentialRayTracing::lightRayAlongY({ 0.0, 0.0, 0.0 }, 100, 10.0, -1.0, 1.0, 550, 1.0);
OPD OPD_E1_optAchse2(exitPupilE1_ptr, optSysE1, lightRayAlong_X_E1_optAchse2, lightRayAlong_Y_E1_optAchse2, chiefLightRayE1_optAchse);
PlotOPD plotOPD_E1_optAchse(OPD_E1_optAchse2);
PlotCarsten::plotDiagram(plotOPD_E1_optAchse.getMatrixToPlotOPD_X_Plane(), "OPD E1 opt Achse X");
//Plot::saveImage(plotOPD_E1_optAchse.getMatrixToPlotOPD_X_Plane(), "OPD_optAchse_X.jpg");
PlotCarsten::plotDiagram(plotOPD_E1_optAchse.getMatrixToPlotOPD_Y_Plane(), "OPD E1 opt Achse Y");
//Plot::saveImage(plotOPD_E1_optAchse.getMatrixToPlotOPD_Y_Plane(), "OPD_optAchse_Y.jpg");
// Plot OPD field start { 0.0, 1.0, 0.0 }
std::vector<LightRayStruct> lightRayAlong_X_E1_field2 = SequentialRayTracing::lightRayAlongX({ 0.0, 1.0, 0.0 }, 100, 10.0, -1.0, 1.0, 550, 1.0);
std::vector<LightRayStruct> lightRayAlong_Y_E1_field2 = SequentialRayTracing::lightRayAlongY({ 0.0, 1.0, 0.0 }, 100, 10.0, -1.0, 1.0, 550, 1.0);
OPD OPD_E1_field2(exitPupilE1_ptr, optSysE1, lightRayAlong_X_E1_field2, lightRayAlong_Y_E1_field2, chiefLightRayE1_field);
PlotOPD plotOPD_E1_field(OPD_E1_field2);
PlotCarsten::plotDiagram(plotOPD_E1_field.getMatrixToPlotOPD_X_Plane(), "OPD E1 field X start y=1");
PlotCarsten::plotDiagram(plotOPD_E1_field.getMatrixToPlotOPD_Y_Plane(), "OPD E1 field Y start y=1");
// // Plot OPD field start { 1.0, 0.0, 0.0 }
// std::vector<LightRayStruct> lightRayAlong_X_E1_field2_X1 = SequentialRayTracing::lightRayAlongX({ 1.0, 0.0, 0.0 }, 100, 10.0, -1.0, 1.0, 550, 1.0);
// std::vector<LightRayStruct> lightRayAlong_Y_E1_field2_X1 = SequentialRayTracing::lightRayAlongY({ 1.0, 0.0, 0.0 }, 100, 10.0, -1.0, 1.0, 550, 1.0);
// Ray_LLT chiefRayE1_field_X1({ 1.0,0.0,0.0 }, { -1.0,0.0,10.0 }, 0.550, 1.0);
// LightRayStruct chiefLightRayE1_field_X1(chiefRayE1_field_X1, light, 1);
// OPD OPD_E1_field2_X1(exitPupilE1, optSysE1, lightRayAlong_X_E1_field2_X1, lightRayAlong_Y_E1_field2_X1, chiefLightRayE1_field_X1);
// PlotOPD plotOPD_E1_field_X1(OPD_E1_field2_X1);
// Plot::plotDiagram(plotOPD_E1_field_X1.getMatrixToPlotOPD_X_Plane(), "OPD E1 field X start x=1");
// Plot::plotDiagram(plotOPD_E1_field_X1.getMatrixToPlotOPD_Y_Plane(), "OPD E1 field Y start x=1");
bool output = Math::checkTrueOfVectorElements(checkComOptSys);
return output;
} | [
"30525471+CCR01@users.noreply.github.com"
] | 30525471+CCR01@users.noreply.github.com |
bd953a779ae88e6665707cef064295fe66830bf9 | 81bed8a9185b9a23b32db7e43c1b653954955ecd | /TimerQueue.h | fd00fd5f30dfb336924aa523eec562ef142905b1 | [] | no_license | UltramanWu/SimpleWebServer | cb6e934fc6f516c0522b92db0efdd0ff4f4b7e55 | b1eda0a42503d868b8bd5e4e15135f8d55b842a9 | refs/heads/master | 2021-04-01T07:01:28.320665 | 2020-04-02T04:02:33 | 2020-04-02T04:02:33 | 248,166,353 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,267 | h | //
// Created by wu on 3/18/20.
//
#ifndef SIMPLEWEBSERVER_TIMERQUEUE_H
#define SIMPLEWEBSERVER_TIMERQUEUE_H
#include <memory>
#include <sys/time.h>
#include <queue>
class HttpData;
typedef std::shared_ptr<HttpData> SPHttpData;
class TimerNode{
public:
TimerNode(SPHttpData httpdata,int timeout);
~TimerNode();
void Update(int timeout){
struct timeval now;
gettimeofday(&now,NULL); // 时间结构体 时区
expiredTime = (((now.tv_sec%10000)*1000)+(now.tv_usec/1000))+timeout;
}
void SetExpiredTime(int timeout){
struct timeval now;
gettimeofday(&now,NULL); // 时间结构体 时区
expiredTime = (((now.tv_sec%10000)*1000)+(now.tv_usec/1000))+timeout;
}
void SetHttpData(SPHttpData httpData){
m_httpdata = httpData;
}
bool IsValid(){
struct timeval now;
gettimeofday(&now,NULL); // 时间结构体 时区
size_t tmp = (((now.tv_sec%10000)*1000)+(now.tv_usec/1000));
if(tmp < expiredTime){
return true;
}else{
this->SetDeleted();
return false;
}
}
bool GetDeleted(){
return deleted;
}
void SetDeleted(){
deleted = true;
}
void ResetDeleted(){
deleted = false;
}
void ClearReq(){
// HttpData指针释放
m_httpdata.reset();
SetDeleted();
}
size_t ExpiredTime(){ return expiredTime; }
private:
SPHttpData m_httpdata;
size_t expiredTime;
bool deleted;
};
typedef std::shared_ptr<TimerNode> SPTimerNode;
struct TimerCmp{
bool operator()(std::shared_ptr<TimerNode> lhs,std::shared_ptr<TimerNode> rhs){
return lhs->ExpiredTime()>rhs->ExpiredTime();
}
};
class TimerQueue {
public:
TimerQueue(){}
~TimerQueue(){}
void AddTimer(SPHttpData httpData,int timeout); // 向定时器队列中插入事件
void HandleExpired(); // 处理超时事件
private:
std::queue<SPTimerNode> DelTimerNodes; // 用于存放从最小堆中剔除的时间节点,用于未来插入时间节点时使用,省去new和delete的开销
std::priority_queue<SPTimerNode,std::deque<SPTimerNode>,TimerCmp> TimerNodeQueue;
};
#endif //SIMPLEWEBSERVER_TIMERQUEUE_H
| [
"shida_wu@163.com"
] | shida_wu@163.com |
0871cad9ae7c146ca391e89bd6cfc41137425327 | 34b3623dbd185b9d8e6bc5af787ff656ebb8f837 | /finalProject/results/test/test_movingboundary/wedge05/17/phi | 24b5541ade75120d323de30147987b69b1180095 | [] | no_license | kenneth-meyer/COE347 | 6426252133cdb94582b49337d44bdc5759d96cda | a4f1e5f3322031690a180d0815cc8272b6f89726 | refs/heads/master | 2023-04-25T04:03:37.617189 | 2021-05-16T02:40:23 | 2021-05-16T02:40:23 | 339,565,109 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 98,153 | /*--------------------------------*- 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 surfaceScalarField;
location "17";
object phi;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 3 -1 0 0 0 0];
internalField nonuniform List<scalar>
11512
(
147.702
-499.654
351.952
-755.69
-3.49204
759.182
406.551
-372.072
-34.4792
630.428
271.243
-901.671
1510.95
-1069.39
-441.566
1216.29
-1527.13
310.84
-62.2906
474.793
-412.502
168.502
-842.215
673.713
962.122
-1610.82
648.7
-1758.82
1665.93
92.8881
-542.945
1759.24
-1140.42
1934.23
-793.811
608.423
180.812
-789.235
-24.6153
-1313.02
1337.64
220.418
-1979.23
1023.16
-382.054
-641.107
-178.094
325.796
485.971
190.228
-676.198
1155.41
-1313.06
157.657
-312.933
376.209
-63.2759
1001.88
-1311.97
310.092
1221.5
799.179
-2020.68
72.4224
-1638.26
1565.83
-470.036
-1172.27
1642.3
477.077
181.514
-658.592
-190.624
-309.029
498.174
1012.78
1645.33
-1802.35
157.022
-87.402
-1692.01
1779.42
-1558.73
651.384
907.342
-307.039
652.995
-345.956
-193.184
-153.741
346.925
1283.06
-1210.64
355.156
-1407.41
1052.26
-1754.36
1754.36
100.076
1529.54
-1629.62
-1078.6
-480.126
636.494
-698.784
-384.15
941.359
-557.21
1331.95
-1317.32
-14.6365
-1100.18
716.028
626.816
396.345
-392.364
-33.7125
426.076
-445.382
773.871
-328.49
-1618.56
1618.56
1253.59
-1437.9
184.306
-488.523
1710.03
1255.29
-313.931
1660.75
-1161.26
-499.49
74.0737
-387.007
2065.04
-1134.81
-930.23
1810.61
-165.274
456.263
155.573
-611.836
-458.119
970.964
-512.845
-1168.59
1268.66
-568.543
970.902
-402.359
401.274
754.134
661.294
-492.792
-437.042
594.029
-156.987
1190.67
-835.515
2308.19
-1080.66
-1227.53
1163.54
-2008.39
844.848
-1600.12
1575.5
440.697
-1581.12
-759.222
1250.8
-491.575
-672.148
365.109
1661.46
-699.341
-1106.93
-870.893
1977.82
677.027
-366.718
-310.309
689.529
565.761
-258.203
1511.79
111.5
-316.456
204.956
-284.241
761.318
-333.988
565.951
-231.962
-324.086
810.057
-317.377
-148.2
465.577
322.729
83.8223
1455.59
-453.709
-977.445
483.452
493.993
275.564
90.6918
-366.256
949.483
-341.06
-1699.88
653.989
1045.9
16.7301
-852.967
836.237
-281.22
595.059
-313.839
156.95
-1093.77
936.815
1051.83
-1067.3
15.4767
372.727
519.008
-891.735
-244.7
700.963
-1103.79
-482.062
1585.85
-678.753
951.479
-272.726
1357.43
-1444.84
-633.43
278.31
355.12
-470.183
-1011.57
1481.76
-539.07
-793.29
1332.36
576.428
-996.419
419.991
-268.385
-317.692
586.077
405.297
-293.796
-1037.82
579.703
955.317
-798.366
-110.264
944.06
-833.797
-210.781
417.567
-206.786
-625.758
-351.686
-386.561
962.989
1856.38
-1856.38
-467.039
-166.392
-951.771
1555.32
-603.55
497.279
-929.444
432.165
-923.719
355.176
-941.91
-1058.08
-1489.12
345.514
1143.61
-280.703
911.131
-314.157
615.843
-301.686
-1941.9
999.994
-1138.13
-350.99
549.122
-1500.89
1728.51
-1725.58
-2.92977
205.824
-602.273
396.449
-1456.79
973.872
482.92
285.885
214.553
-500.438
310.722
-644.71
244.304
-420.519
176.215
2015.05
-870.651
-1144.4
-545.283
152.919
617.261
834.491
-1451.75
-182.864
427.168
431.169
876.878
-1308.05
-907.436
393.438
513.998
-1045.85
1447.12
-1068.88
309.658
751.484
-98.4889
550.736
-287.295
-263.441
1003.33
-519.877
593.279
-1403.88
810.602
-1342.27
238.475
-546.27
265.051
-1181.41
900.705
1944.91
-982.608
-962.303
276.805
1579.58
-2093.94
894.65
1199.29
368.585
-29.982
-338.603
-223.525
483.821
-260.295
-107.752
-380.486
488.239
-464.969
147.592
342.425
-129.033
626.313
416.191
383.652
-799.843
-2036.77
1113.21
923.559
460.532
-531.2
70.6686
224.25
-366.361
142.111
1019.3
995.751
1781.48
-251.942
723.375
-445.065
796.917
-1389.79
592.873
346.614
330.413
1050.53
-1033.8
-500.239
-229.072
729.311
475.778
-135.519
-340.259
797.483
-616.671
562.344
-725.54
163.196
503.326
1157.42
-1239.84
700.772
1044.23
-1514.27
-3.13549
-1439.43
1442.56
325.303
824.754
-1150.06
623.413
269.778
-893.191
-2269.87
1139.91
1129.96
-1101.07
-1168.8
202.983
359.362
958.509
-633.206
879.512
-899.148
19.6356
-2099.38
992.452
-231.347
-190.945
422.291
-41.7257
1770.23
-827.677
71.9871
-1027.7
-1066.24
-229.237
453.487
-669.126
202.087
-268.389
-424.515
692.904
1104.05
-1574.23
783.061
-1374.48
591.416
693.959
-422.717
1947.87
-1444.55
-378.28
-1376.08
77.2175
397.575
-530.074
526.581
14.4817
-570.085
555.604
569.291
-283.406
-604.305
280.121
324.184
780.673
-364.482
32.8848
335.7
1188.47
-1191.61
175.271
230.026
393.034
-661.423
619.778
-1006.34
-2026.71
2026.71
-253.613
-447.374
700.987
699.289
405.807
-1105.1
579.098
172.385
402.127
378.547
-2199.75
1328.85
-926.635
-678.874
1605.51
-488.528
-692.881
-258.909
547.896
-288.987
825.746
-190.622
-635.124
-440.076
645.9
368.516
-682.672
-360.026
-131.154
491.179
-1327.52
-474.83
623.556
-1112.08
-374.139
-1244.42
844.327
1463.86
298.041
-941.436
643.394
966.147
-339.331
1391.41
-798.133
443.409
-268.138
-328.338
-870.51
563.968
306.542
-325.507
-545.003
309.024
-416.777
-214.902
-148.441
363.343
-392.693
1091.98
435.015
-244.787
-393.645
1349.7
-169.536
-1180.17
-468.697
280.794
187.903
227.39
251.998
-479.388
25.2168
-750.757
592.087
-1729
1136.91
1481.93
-864.674
-1049.05
-407.742
-1057.05
573.242
483.809
1376.82
-402.951
929.326
-1411.39
-158.906
-201.843
360.748
-469.488
580.915
-1626.76
427.972
903.982
279.988
298.693
-578.682
568.077
1186.29
1103.75
-714.505
-389.242
402.724
-217.5
-185.224
-1419.46
445.127
738.306
-1183.43
1473.33
-544.009
-490.068
926.1
-436.032
426.144
1186.16
-1612.31
47.2836
-726.036
-145.765
421.329
225.664
-418.848
529.629
473.7
-617.382
62.5121
554.87
1024.54
-1307.67
283.132
663.848
-261.721
468.241
-1447.24
978.998
407.422
1686.39
-522.844
908.456
1036.45
-661.681
-1684.5
757.863
564.504
397.069
-961.573
453.958
78.7753
1749.94
-1828.71
1443.75
-379.476
-1064.27
1699.11
-1740.84
-367.521
-520.859
719.847
-198.988
-502.59
183.092
292.685
-373.006
-1226
214.43
-764.549
-639.332
-655.354
999.34
-343.987
-654.1
644.297
9.80313
655.119
-923.783
268.664
-765.75
389.016
376.733
-648.638
-686.006
350.742
335.264
-932.336
1400.58
-414.868
885.472
-470.604
-2205.3
5.55797
179.329
-535.293
355.964
141.93
1207.77
-98.1748
-570.951
159.18
-596.222
1487.17
-704.107
378.023
-463.438
85.4149
-570.319
570.319
1223.11
395.457
1777.89
-1228.72
589.098
639.624
849.94
-52.4578
1291.5
773.546
-540.032
1336.95
293.583
301.476
275.115
-795.973
239.319
-684.7
231.694
-444.258
212.564
-235.827
576.43
-340.604
124.095
-359.922
-591.997
-564.49
1156.49
-369.198
536.088
-166.89
-1192.16
2032.04
-839.886
1289.66
-331.152
-405.982
137.597
-1980.89
808.625
1528.72
-846.676
-682.042
1986.95
-877.424
-1109.52
713.473
576.188
-239.613
471.308
-675.618
1138.84
-463.221
-770.107
1201.28
551.574
924.643
-1724.97
800.332
-543.493
-74.6107
618.104
297.101
253.634
410.356
-99.2187
-311.138
896.897
-83.407
-813.49
914.796
-559.453
-355.342
1576.21
-472.161
889.026
-1626.32
737.295
1068.48
879.389
748.655
-442.775
-305.879
-1059.05
-258.263
560.863
578.902
-1139.76
-458.411
507.326
-48.9152
576.051
-343.923
-232.128
-983.313
568.446
595.803
886.132
-441.796
1096.92
1411.38
-776.169
-635.214
396.22
-924.686
528.466
-1021.2
395.438
550.072
-1040.14
455.606
-527.694
72.0874
471.646
302.225
-521.801
-48.5188
-794.334
-878.046
1672.38
193.337
209.387
-215.269
418.252
-29.0379
-552.791
581.829
492.002
867.342
-1359.34
-522.413
307.51
985.951
-89.0545
836.379
-1064.84
228.466
394.885
846.324
-1386.36
-447.945
831.597
1977.63
-1284.05
-693.576
270.185
609.327
255.98
795.847
81.7572
-963.317
881.56
1673.74
-1089.06
-584.677
-137.836
1887.77
-1866.05
-160.658
483.638
-621.74
138.103
-1013.87
526.338
487.532
-1730.48
538.319
-955.841
845.578
391.524
202.504
586.586
-288.544
-422.45
710.778
255.368
74.8306
708.372
-783.203
-1129.35
-898.933
2028.28
-537.601
1100.15
-562.545
-467.373
-342.088
110.742
-1654.51
860.176
-867.102
-594.444
1461.55
-332.166
-294.784
626.95
358.417
-645.417
287.001
241.698
-606.18
317.323
203.977
-521.3
345.266
-604.175
617.273
-258.857
313.722
-461.922
675.75
407.491
-180.101
-385.184
-300.822
1218.66
-2.94394
-1215.72
1039.73
-419.956
560.397
410.506
-1782.37
869.821
912.55
492.32
548.152
-1040.47
-535.777
203.61
-262.894
1180.77
-917.878
-1590.89
1212.61
504.589
-1096.59
385.701
-7.67769
426.924
302.567
-729.491
372.78
-617.48
-31.8217
755.941
-724.119
-526.201
795.979
384.722
322.696
527.244
653.831
91.0145
-401.462
310.448
1058.99
-645.324
-413.661
494.011
-1664.27
1170.26
-1140.43
1753.23
-612.801
1715.82
-1123.73
-333.878
613.999
-1182.25
1264.01
425.278
-797.628
1601.91
-804.28
-257.673
-211.024
-889.406
1469.94
1812.37
-611.234
-1201.14
-404.711
645.548
-1300.9
-124.819
-45.5335
455.89
-679.337
-354.168
-1236.72
-221.024
462.722
903.629
-559.672
179.186
-1674.56
-71.1964
1745.76
-1063.04
525.438
569.079
-1182.04
612.962
901.065
911.309
630.8
619.997
684.104
241.997
-1132.72
457.1
-399.989
414.471
619.712
-515.249
245.829
-732.388
486.559
689.645
-343.03
-334.367
180.626
-599.694
237.258
362.436
-887.793
-738.529
1087.67
-2145.75
399.546
-683.787
-342.821
-724.484
833.725
577.658
-343.86
310.147
369.697
212.091
651.329
-863.42
527.412
611.426
-533.961
173.935
359.427
-613.04
-1037.7
-855.598
1893.3
-1795.48
157.225
1107.1
-1369.99
1156.23
-724.863
-431.365
-503.536
1349.86
-1495.53
627.866
867.663
-288.927
-210.578
499.505
1428.39
558.554
341.303
-472.457
-484.41
-566.748
1051.16
-418.86
598.189
1582.28
-1129.17
-453.106
-773.296
325.922
654.885
404.1
-1623.42
416.158
1207.27
-191.685
509.008
797.804
784.473
197.599
-684.109
486.51
207.505
210.062
-293.452
-107.841
401.293
485.595
0.17383
-485.769
-1634.94
585.89
-1604.74
1670.28
-65.5392
10.5654
-1615.31
1069.61
761.291
-334.367
-807.801
-213.395
-1134.52
-239.952
-311.441
684.221
-1812.4
-628.342
1207.24
212.358
758.606
-1329.89
-678.503
-465.387
609.141
-329.152
-1013.28
1350.76
-1932.84
582.078
646.205
1288.02
487.261
-3.44069
717.491
703.554
-1421.04
-638.382
335.847
302.535
440.805
-99.4414
-341.364
149.762
299.199
159.602
-458.801
-583.317
1147.82
463.347
-625.301
-462.028
-401.586
863.614
-329.02
170.114
-457.037
163.24
-305.073
-708.797
549.654
-108.849
-571.041
967.261
581.121
-270.06
-311.061
455.986
-780.072
-646.128
442.608
-1129.41
-835.766
1181.28
-569.763
453.179
276.132
-451.887
85.169
1028.89
-317.614
594.477
-276.863
-509.028
1578.64
-680.582
236.43
373.555
-609.985
217.798
481.978
-26.3581
-455.62
-256.376
-200.661
1017.39
1108.94
564.796
-872.88
940.463
-67.5827
-458.718
169.791
-729.768
305.253
-592.165
322.326
367.319
823.54
-1232.81
409.267
777.435
-809.257
-948.972
-550.365
1499.34
-164.318
463.012
-543.4
256.105
1299.54
773.771
-576.172
1311.14
-687.583
487.455
-677.315
-408.987
-423.707
-378.24
801.947
502.986
-844.046
-452.975
91.1942
361.781
-323.434
572.402
728.991
-329.445
-244.466
-173.373
417.84
-489.961
140.898
349.063
1457.74
80.8108
-1538.55
-750.866
1346.67
-1144.75
-466.077
538.33
-164.775
1150.44
-373.003
1083.51
492.697
695.372
-420.257
-885.111
-522.304
-1328.45
-26.5045
985.026
-958.522
595.027
328.402
-923.429
-329.555
-215.728
-675.926
405.518
1621.19
-178.269
369.716
347.695
-717.411
-1839.77
-2106.68
1519.14
587.539
-2037.36
345.349
361.253
535.057
-896.309
-460.071
1020.47
-393.266
-672.088
1065.35
-2030.53
1391.21
639.32
598.039
-991.305
43.9607
411.645
386.35
196.338
247.071
317.66
959.292
863.459
679.894
-326.044
-353.849
-294.095
621.35
-327.256
573.548
530.199
565.48
514.784
-1080.26
-796.239
-699.291
752.464
397.974
-414.413
701.414
-1193.42
1609.58
418.098
-1090.19
-332.896
536.872
-1381.94
869.031
512.906
-714.62
-352.307
-784.052
361.222
422.83
446.983
718.398
-1165.38
1070.67
-578.35
-406.35
660.194
-253.844
255.213
325.908
-468.441
-431.84
900.281
-236.464
558.879
-951.592
392.713
-459.901
600.598
-1681.26
423.659
671.118
-1094.78
521.05
94.7931
113.407
-2212.79
537.128
-83.9487
1444.01
1777.09
-217.553
-1559.54
-438.428
1789.19
-1986.94
1194.46
792.478
402.79
345.864
-36.4427
870.168
-1283.36
718.872
-870.027
-822.872
796.368
304.404
62.1926
-366.597
232.101
186.893
-418.994
1552.87
-835.376
-1530.95
-325.43
485.898
-211.436
-274.463
395.132
366.186
248.448
360.693
-8.97204
1001.58
-992.609
376.247
279.567
-655.814
-734.048
1817.29
-1083.25
-342.398
737.53
-1217.11
-412.509
-915.598
483.758
572.335
-778.945
206.61
761.603
-380.845
-380.757
-427.061
-445.819
448.82
1077.48
1237.27
-668.19
801.224
-345.238
384.502
316.485
-245.941
-217.497
-204.173
611.595
407.695
-847.75
440.056
216.537
352.561
-569.098
-422.984
830.679
754.637
-1147.33
884.708
-61.1687
-489.67
275.777
774.749
-95.8035
1383.83
1890.5
-61.3346
342.129
-317.871
408.886
-1085.98
1077.01
624.694
375.975
385.627
73.3679
412.531
263.287
495.895
-371.656
-266.726
-564.76
-89.3403
-359.556
365.309
-5.75265
-257.008
-289.262
1011.05
-1540.7
529.644
-193.402
-178.67
-385.853
665.42
-1633.39
1591.04
-963.176
258.9
-667.888
584.312
1224.42
-1808.73
607.397
983.645
307.051
-1120.61
698.158
-286.658
-292.024
1375.68
-1445.38
826.284
619.1
422.546
-627.537
204.991
-371.479
476.705
-105.226
375.513
110.082
1723.82
458.664
-251.159
557.621
-1704.79
1147.17
-93.5732
394.066
342.574
337.319
-448.415
-615.807
1064.22
417.14
-865.086
-641.185
902.961
570.373
-514.361
-251.389
-439.099
-408.652
-307.212
-827.312
1821.12
-1821.12
-104.57
-1589.52
1694.09
292.872
283.179
-917.288
-555.309
1472.6
-408.101
973.581
-594.549
-1040.39
686.984
390.297
-1077.28
475.789
-162.066
573.06
1220.35
-1793.41
-1041.74
2114.82
-1073.08
-374.786
-297.361
-489.179
815.101
-1751.28
1600.7
150.574
1751.28
-1604.88
-146.395
-246.087
523.827
-277.74
-537.277
1620.79
1563.38
-1975.89
1082.42
-289.957
-257.271
547.229
234.794
-567.69
-698.291
283.877
1341.38
636.241
580.009
483.657
-1063.67
277.752
417.62
875.45
500.085
-1375.53
533.502
-1017.91
1574.94
-563.888
-775.707
-363.392
-123.46
486.852
-489.923
1208.32
-741.83
333.634
367.329
367.06
250.885
-617.945
601.854
831.883
-603.417
263.797
676.665
-514.361
-325.638
-232.63
558.268
1168.56
-672.742
610.072
465.688
-1075.76
-1292.64
1292.64
-386.593
762.569
-283.662
-476.806
760.468
489.342
445.241
-934.583
390.06
-673.722
610.651
-868.781
258.131
-367.041
-494.127
1074.14
-661.578
-709.999
1371.58
-375.875
934.754
-1552.69
675.268
32.7272
-415.499
382.772
-510.305
712.392
252.247
324.183
170.027
305.761
-519.625
232.967
1869.44
-1965.25
264.883
-704.959
449.867
-821.709
371.842
-915.995
1412.77
-496.779
-429.593
-486.004
600.71
1124.2
-1724.91
-715.036
340.249
-460.673
1034.22
-779.555
1043.35
-379.659
-627.972
-488.621
727.939
540.362
-358.848
906.483
-305.821
-184.14
1599.02
-1816.57
-345.714
-605.878
-337.084
477.982
262.779
-591.932
-177.148
1061.92
-786.147
207.318
-288.407
-279.473
567.88
393.253
-879.208
485.954
-485.701
-452.148
-941.436
-349.454
577.588
-228.133
-449.358
-427.458
-334.352
-186.948
-391.043
641.927
-446.573
763.058
-1072.76
624.343
-1407.68
540.578
-27.9575
-1835.31
1863.27
569.879
-449.542
1216.07
-690.632
335.779
-335.779
670.782
-439.659
1040.87
-1635.42
-1158.73
-947.946
292.741
328.609
886.361
715.546
-495.815
-301.95
797.765
1657.42
-1685.37
-434.474
345.988
223.302
1134.89
-524.823
-943.332
1550.47
-607.141
443.539
-247.202
378.353
382.814
-761.167
531.816
471.527
-1003.34
-331.19
664.823
-37.872
1907.32
1589.99
992.867
-1696.97
727.171
-1177.11
449.94
-492.445
1367.9
837.725
-1341.26
-559.547
269.59
798.539
-401.47
552.097
-1188.58
636.485
-637.486
-1215.54
-695.647
1911.18
-194.094
548.509
-354.415
-173.703
304.699
-498.793
328.849
369.974
-698.823
-1483.2
756.951
726.246
884.107
-1434.47
824.844
-431.406
216.077
-361.842
-591.916
266.277
-641.583
-740.355
698.782
506.062
-1204.84
389.872
-203.115
-186.757
556.166
-958.525
-568.319
-426.087
731.34
-831.287
-1155.65
-1437.96
499.629
938.334
10.0363
-636.548
340.724
295.824
-1313.74
1046.02
267.725
-616.733
-456.025
-665.79
921.77
399.793
-200.421
-199.372
508.181
980.676
-1488.86
977.056
-564.74
167.466
397.274
-400.592
673.922
-409.039
-506.707
169.623
234.345
-1518.39
529.764
540.906
-754.638
244.333
150.893
-456.714
368.015
-820.163
1954.16
-1195.39
-758.769
417.373
-675.217
257.843
325.782
327.564
117.416
-444.98
-568.945
194.651
264.013
-691.69
1374.36
-682.671
423.927
463.155
-1177.77
266.819
1866.78
-1013.59
-853.189
784.969
-531.505
182.05
1402.37
-975.199
-427.174
332.67
-772.329
-616.497
1725.44
611.378
625.892
322.3
-17.8961
267.572
-1138.44
1725.71
-587.276
-1763.52
820.189
1755.47
-1686.14
-69.3284
-659.649
259.659
567.279
-714.909
226.288
1402.66
-564.931
388.434
443.163
-1858.55
1420.12
551.791
-432.579
-119.212
204.971
-539.322
-283.141
-184.232
-353.031
695.606
-578.086
214.694
610
551.054
-1161.05
1113.65
-1947.44
833.788
157.736
333.444
-1698.93
1661.06
313.865
-734.123
-165.546
381.622
754.507
679.501
-1434.01
1075.8
-1078.75
526.19
-1104.54
-629.802
253.078
376.724
525.114
-287.855
-603.577
-1031.84
293.614
-721.072
-912.32
177.03
163.724
226.148
391.136
291.773
-682.909
-629.944
-833.976
-978.42
490.532
-1059.48
-293.28
481.183
534.684
646.596
-281.482
-124.501
-410.759
717.81
269.151
-1198.94
568.999
1308.49
-553.984
443.385
-1011.7
-390.33
156.543
395.249
1023.38
551.564
-1715.08
1610.51
1629.22
-563.462
-1065.76
1903.26
-1891.76
-11.4954
209.284
-527.155
-346.742
554.06
-766.052
-322.061
-337.587
1025.65
699.851
-1502.73
802.877
339.601
-26.1906
1625.21
-1083.65
410.907
-1237.35
461.648
-60.435
1518.18
1197.43
-470.254
-489.677
-75.0633
-267.327
736.014
-1951.55
-710.291
352.289
-533.232
180.943
192.257
-509.871
1139.91
671.55
-1811.46
-611.225
178.646
942.045
-1497.35
-210.465
678.896
-468.431
875.661
1124.34
-737.916
1349.29
608.871
-485.42
-123.451
-346.205
1172.49
1041.25
-1980.1
938.847
-1172.12
543.782
1488.77
-585.804
-384.869
-149.091
-1241.38
573.191
1160.42
-114.52
946.066
775.525
-1721.59
-207.383
578.465
-1541.73
963.263
486.968
916.682
-1403.65
620.136
587.107
392.057
-1106.65
591.839
1107.16
1216.44
-452.399
-764.041
-1186.2
-1754.94
-7.34014
-1707.74
-203.054
-424.483
1607.21
-628.547
-978.666
-490.818
1121.62
-1317.67
636.202
681.467
-1361.56
1442.37
-1330.27
592.352
1520.51
-387.626
-571.725
186.856
-1479.46
232.089
176.37
229.134
379.737
437.656
398.293
-835.95
506.301
-939.058
900.802
-1444.81
-698.367
233.252
465.115
-1042.97
459.648
-475.027
863.461
695.696
26.1452
-525.913
171.498
-886.565
-1318.74
-715.289
350.047
365.242
403.501
-722.86
319.359
-479.101
-189.275
-709.873
719.42
1539.59
-593.524
814.908
737.959
1344.81
-844.721
-971.332
-570.397
-796.935
427.634
369.301
-1036.69
-642.366
304.416
337.95
-1433.69
-296.783
-790.617
398.362
392.255
-650.824
403.758
247.066
-677.725
268.686
412.471
487.81
389.538
441.141
479.264
384.35
596.846
-969.852
679.813
468.008
453.876
356.275
-810.151
1630.76
-1079.91
-550.859
-504.488
-285.082
-1028.66
454.508
347.44
409.493
594.296
-1003.79
-1380.63
752.088
-533.084
1146.05
355.839
-56.6394
411.905
-865.494
453.589
-1894.33
304.809
441.796
-726.452
284.656
-186.832
403.347
-216.515
-661.466
306.862
354.604
-674.085
320.236
370.487
392.082
612.905
-1021.01
753.194
661.747
-1414.94
438.661
625.56
340.102
392.796
-732.898
409.585
327.945
602.134
672.231
405.253
594.867
-1021.15
426.28
-1669.11
1194.55
474.562
1696.59
-539.171
621.013
-1147.21
526.194
-643.038
348.254
437.101
-935.207
498.106
752.06
-449.494
350.557
345.049
569.976
-915.69
651.193
-1253.02
601.826
374.28
734.843
-1224.77
769.631
509.481
-1279.11
484.818
405.807
-890.624
-501.636
-936.327
-300.935
629.784
352.415
542.082
-894.497
333.23
331.593
-502.178
1944.74
437.324
-847.302
409.978
-917.82
-807.154
-748.595
367.838
-1217.57
438.019
-1732.73
1604.88
127.847
1745.81
-1600.7
-145.105
-784.337
-592.639
266.143
326.496
-1755.47
1975.89
538.416
791.633
-1330.05
440.034
716.453
690.422
385.557
-1075.98
-75.6804
1617.13
-593.754
384.908
831.162
-650.003
326.999
323.004
-377.969
-297.568
552.78
-220.268
434.821
281.366
-666.609
385.243
265.097
-578.936
-282.936
442.393
-1033.55
591.159
538.038
1092.73
365.91
597.079
312.707
353.381
-666.088
1622.13
-922.283
1691.83
-1520.47
-171.367
-327.542
-823.289
414.637
857.565
-1068.03
-606.828
279.572
-1090.61
1628.65
-1583.56
-78.779
1662.33
-340.685
-349.626
-369.669
536.991
597.904
-502.397
-28.8032
-550.034
506.066
-282.641
-223.425
1746.59
-1297.77
-625.02
299.536
325.484
401.638
357.229
734.753
-296.41
-398.548
-1745.81
1685.37
459.44
-1101.01
641.567
-43.4267
1653.93
571.39
476.346
-1047.74
104.8
1144.9
-1452.11
-15.19
-1879.14
228.326
-598.955
306.959
291.996
-955.504
612.684
-898.344
468.751
-1128.62
673.631
454.986
368.528
268.045
-763.86
-310.341
1216.95
886.847
699.006
-1183
456.106
726.89
494.263
700.931
-1195.19
-358.965
-246.627
410.351
-960.73
438.325
522.405
21.2538
-1879.8
1079.95
-469.294
-497.071
558.067
-1378.2
820.132
-426.173
798.015
-404.989
497.583
-707.358
1724.75
410.63
-184.482
217.202
-170.274
-244.728
415.002
1895.32
-504.111
-1690.55
1051.57
-602.444
304.877
-1013.87
553.804
-312.118
544.258
905.335
-1449.59
-1103.88
438.085
-20.7675
-1944.48
1711.23
-669.98
-540.776
460.658
-1190.56
729.903
191.52
208.273
-282.673
769.476
700.464
838.226
818.524
-462.249
1085
-475.245
477.905
-193.931
-283.973
-1922.98
-714.354
-317.589
-644.52
-6.96306
651.483
466.223
-271.573
564.395
1057.74
-803.696
924.911
1244.32
-424.927
-193.856
-225.754
419.61
958.26
-888.567
-323.529
-1067.94
611.917
1556.62
-799.668
537.618
934.979
-392.338
735.391
-343.052
1130.46
-276.851
333.623
1349.7
-704.996
-219.69
448.243
-1198.69
750.444
-994.717
-107.966
1102.68
442.018
-955.728
513.71
175.149
732.96
483.48
739.742
-88.4136
853.046
-425.438
1182.6
-797.039
552.075
-1465.47
913.397
-1216.66
1800.97
-431.712
-1510.19
879.714
-1402.02
-310.655
-418.836
1457.22
-1523.36
784.831
1491.5
202.298
275.607
-355.814
-1732.73
-291.536
-1009.11
1573.5
-1765.39
1765.39
1563.38
-1004.5
-634.49
-339.298
368.317
605.264
-370.271
-363.609
-1389.86
897.413
1125.15
600.561
1202.81
1789.48
-1216.42
-611.836
272.292
1658.97
-1916.43
257.458
814.399
-1267.51
1545.25
-561.604
781.972
318.173
-342.524
554.72
795.14
673.357
1354.92
-225.525
-444.755
-362.719
497.774
-342.202
471.69
736.631
-299.299
-145.681
-330.918
568.053
-237.135
27.7588
-371.682
1107.47
-1720.27
-438.006
-487.493
-567.382
863.831
692.788
-1596.52
904.827
-451.449
-621.07
-513.76
1252.07
336.971
1723.68
-1702.42
-1657.42
1891.76
-1560.84
840.304
720.54
-374.962
-1795.71
917.669
583.059
819.597
-394.39
1794.27
-680.626
-413.914
678.989
429.773
-1108.76
-1099.83
444.05
753.375
-1617.18
473.176
901.186
177.017
-400.86
223.843
-1595.17
-384.063
-430.884
990.309
-672.382
1442.95
-978.161
1853.82
240.356
-540.615
496.593
-294.295
474.3
893.595
543.073
977.437
-462.625
-427.771
573.896
883.324
-1392.71
-40.988
1572.41
-834.455
519.94
971.564
-1475.82
-1115.9
1770.41
-1242.43
-527.982
1206.12
-318.966
-887.158
-192.354
453.848
-261.494
-457.173
-249.211
430.217
-181.006
145.509
-392.136
1729.57
-1736.91
-458.464
-530.834
-903.637
443.513
-207.146
-236.367
635.711
-457.066
-358.722
-314.385
673.108
-927.012
382.009
-1167.34
676.519
417.374
-634.864
-439.39
1574.82
-859.271
530.178
-457.708
-571.13
-462.422
373.274
-363.493
-9.78137
-1101.61
410.983
-664.719
-1033.68
1698.4
-599.58
-1423.31
713.308
562.17
-1596.26
1034.09
-389.675
-477.29
150.308
533.796
-1258.4
744.638
539.214
1006.04
-2133.18
999.99
1133.19
-362.292
420.572
-395.675
-24.8964
1478.05
-370.145
449.337
1212.71
582.148
906.618
567.916
527.336
-1095.25
165.623
-440.509
-1686.14
255.112
1127.59
-614.007
518.458
1013.78
-1532.24
1092.87
-1643.73
190.659
694.049
546.759
-870.288
-1086.54
-173.518
429.972
-256.453
-587.187
-429.299
-636.855
-629.655
346.981
-1618.66
939.786
-476.664
213.805
-398.287
534.734
-306.408
-605.898
1197.18
-1274
922.897
351.103
-1021.84
-368.178
-757.076
-824.251
1688.08
-476.783
1793.56
-1582.15
-211.404
-1556.64
1018.74
537.899
-725.318
-263.656
445.777
-182.12
-591.469
383.227
274.391
-657.618
-523.835
987.58
630.216
-350.643
-1620.29
1050.52
571.758
1103.55
-1675.31
-413.758
-292.292
-369.174
-744.433
-472.079
-329.915
499.943
1557.99
-995.819
-775.329
1497.46
660.145
-314.156
725.88
1152.37
-1878.25
289.756
306.697
-487.05
-1931.99
1719.7
212.284
738.542
-474.169
-264.373
531.821
1060.85
-1592.67
373.274
-1722.93
-233.209
1752.35
-1580.7
1073.79
506.913
-1723.02
0.0892631
-521.563
420.572
1698.93
-1719.7
939.72
624.464
-1564.18
385.244
-218.404
-166.84
-411.499
-266.226
70.5398
95.0675
-358.724
-430.691
-438.091
-406.151
219.32
1510.25
378.811
-215.78
-435.044
462.67
-198.657
320.581
1510.78
996.775
-153.263
-843.512
-1104.11
1704.82
-1728.76
1064.04
-707.132
-1021.63
-1265.09
1844.99
-579.9
1155.07
-1771.14
616.064
272.259
-878.214
1675.68
43.4509
-1719.13
-491.153
-1083.07
-1729.57
-982.222
554.451
1019.62
590.215
1133.04
-1723.26
283.434
-448.208
703.948
-383.712
378.774
924.909
680.6
-380.819
-640.328
582.881
1072.57
-1655.45
-400.442
-368.896
769.337
427.976
-1661.06
1520.47
140.596
583.399
-1044.07
544.741
1083.9
-1555.69
994.082
-238.278
230.341
323.718
1903.26
428.496
-77.1592
995.864
722.751
-1718.61
-697.39
1085.36
-1557.52
165.792
-571.716
198.271
264.399
-657.054
-560.52
582.476
1034.66
-711.231
-275.127
-1368.5
675.803
692.696
-413.932
764.876
62.6925
-827.568
561.62
-137.151
1557.27
-214.632
270.599
-771.271
-1931.99
1664.63
1031.89
389.016
301.162
450.899
-930.078
-992.904
-1767.27
636.305
1693.77
508.904
-474.216
1210.85
1087.14
-424.829
1030.09
-978.384
492.93
485.454
700.175
1047.94
-1748.12
485.043
482.218
-1494.01
-746.739
32.2343
780.341
-412.503
-884.895
387.824
-538.737
-802.524
643.394
-577.2
1397.33
1055.14
195.724
234.248
-550.605
1618.53
-772.469
1525.66
-1727.83
575.244
1152.59
543.751
-883.082
-1732.73
1916.43
-183.702
1721.74
182.275
-543.744
373.63
-278.563
-481.337
1211.24
568.268
1128.33
-491.191
431.456
858.099
-461.754
-772.868
426.689
346.179
1418.79
1089.61
-518.163
1422.99
-510.566
-533.552
1044.12
-602.743
474.46
-1199.32
1691.83
1839.58
-687.21
1585.63
-645.906
-1241.33
717.493
-562.423
205.569
-396.514
455.11
-245.048
-520.2
-1246.71
1870.94
-624.23
1173.3
-552.285
1120.29
-1659.46
1693.68
-573.925
-545.381
-549.811
1720.07
-317.132
-688.023
-473.257
1223.7
-1683.66
-1860.1
613.392
298.534
-933.658
168.723
213.951
-1719.03
1204.16
514.87
1162.86
558.887
-511.561
-465.332
1192.22
178.568
224.779
588.443
1251.14
-539.175
-1238.58
1777.76
-1025.4
999.991
866.79
-204.122
-1658.97
1702.42
-510.049
1411.23
-1732.73
-357.895
17.6965
340.199
-262.521
585.02
-322.499
75.3022
488.665
781.214
-377.713
1257.53
1270.89
-413.321
852.224
-437.587
1817.44
-662.368
1586.52
-1723.68
-412.785
-745.459
306.318
439.141
-559.616
-563.262
79.7162
-1138.77
-985.504
-669.669
1655.17
-943.708
-1189.47
159.15
-416.422
-648.454
705.614
1167.45
649.992
1410.27
-590.676
1636.75
1318.03
-573.392
-491.754
197.459
-503.259
1396.85
1240.05
-564.243
-999.989
893.305
54.6739
-947.979
603.439
-506.109
1403.52
1495.05
-588.428
-381.609
381.609
-589.403
1623.49
1239.53
-486.159
1134.16
-71.1065
1850.52
-390.874
1489.44
-588.638
-507.659
1347.96
-652.67
1218.52
-565.849
1554.79
-591.528
749.869
573.964
-1323.83
-653.875
279.211
494.56
600.123
-1957.3
-986.698
1586.52
382.363
-382.363
-68.5401
388.369
436.475
384.852
-9.33917
-342.858
895.565
-521.286
-425.831
814.2
-243.717
620.44
-432.924
1546.14
-444.325
-884.123
187.055
224.479
-411.534
601.167
1250.78
-1851.95
927.158
-458.408
-363.493
126.152
-1943.01
1816.86
-450.114
181.976
1181.28
-440.415
-740.863
-302.915
-581.98
-492.361
-395.675
-479.863
256.438
1158.2
-560.297
229.566
-379.308
149.742
-22.4011
-107.671
1376.08
-1268.41
34.4479
-599.207
-586.379
-460.443
460.443
-1262.36
1985.11
-1344.39
-213.959
-1823.73
241.575
-1025.76
-974.242
-185.993
-1637.61
707.535
1229.32
-1924.96
369.148
312.245
-681.393
-1850.01
1234.27
615.74
-564.704
564.704
-959.213
-39.871
-1866.05
-558.136
1650.86
-677.37
1636.17
-601.509
-175.168
-1703.97
-584.402
-444.297
-594.789
-473.539
473.539
-1537.81
194.525
1343.28
174.08
224.501
-398.582
487.066
509.709
997.137
-474.732
1751.3
768.718
-427.466
402.57
520.628
1702.05
-594.581
-552.957
1636.86
470.563
1812.73
-645.283
-1803.92
-1938.08
-646.938
-484.819
484.819
-588.608
225.888
-690.708
1019.53
-465.727
-1072.24
-286.874
1579.58
1852.3
1635.33
-1635.33
-275.157
739.441
1761.49
595.785
1275.15
175.623
209.621
576.541
592.004
1603.53
-1603.53
222.616
-353.712
-434.633
460.122
951.391
-458.461
-639.792
-1131.02
1706.26
280.59
-1650.26
609.871
-287.691
469.966
1744.64
-592.054
-214.95
-416.149
380.317
726.847
1738.57
-613.414
-511.761
-774.2
1960.53
-870.452
-1090.08
1642.78
-706.011
1223.97
-1824.94
600.967
333.017
-873.631
-186.007
-109.987
1098.33
-486.412
130.268
616.318
-1648.16
437.289
608.75
-1803.92
-583.272
1787.43
884.313
-1162.93
1760.49
-597.56
1783.83
-575.523
-1208.31
437.454
926.925
-1736.91
924.79
-1495.89
267.774
1228.11
-831.133
-1254.23
-385.32
77.564
307.756
581.716
269.797
1026.91
-444.049
846.374
-402.325
821.103
738.542
-1559.65
643.769
1066.26
-24.4975
-663.84
688.337
-1744.29
722.665
699.814
150.523
-1122.7
1936.75
-674.547
-1262.21
-537.173
1665.5
829.623
963.966
-1793.59
1227.87
683.318
-403.594
710.457
831.201
1028.36
-586.343
1761.49
626.737
1773.56
-1185.62
-587.935
-379.486
-330.077
709.563
121.435
-1185.71
1660.55
-540.263
-1437.84
1437.84
1250.57
594.414
1351.58
206.412
-563.293
280.768
-190.076
699.065
1113.67
480.555
-301.987
-870.256
-574.555
1736.82
-1736.82
1010.75
-1010.75
987.33
1025.17
-2012.5
1837.94
-613.967
-581.104
822.539
-947.848
-1052.16
998.356
690.525
-1688.88
-521.801
-347.839
-643.467
-808.422
2042.69
-1246.42
-613.678
1002.97
974.851
1289.77
646.984
325.979
1012.69
228.492
337.165
1186.29
1756.87
-1756.87
672.03
80.1619
-391.223
-997.052
-539.988
1674.15
990.29
1009.71
-1833.28
-223.559
-360.842
605.503
-350.391
1849.49
-1077.85
-771.63
376.785
-35.4821
-812.352
-1662.66
1662.66
912.942
1923.74
-648.583
577.998
-479.054
1708.01
-1228.95
729.511
1837.81
1149.77
-605.988
-576.121
1144.04
-813.502
-485.707
932.623
1106.49
398.816
419.708
368.738
1223.11
-1135.3
-584.973
-644.663
-1212.58
1857.24
-113.527
-261.286
328.875
-522.731
1250.31
991.529
777.036
-586.377
1878.06
-650.192
-381.526
655.917
1877.31
740.986
-551.101
375.352
-449.757
1450.55
-750.084
1172.22
588.265
-92.368
406.813
-314.445
-1244.42
903.637
405.676
1636.03
-711.124
1046.76
905.126
779.293
766.277
591.52
758.369
995.102
729.648
1835.81
-984.045
-851.767
538.901
-328.485
319.214
-319.214
-395.102
-674.462
290.749
833.073
382.64
352.751
1888.88
-659.557
1097.91
-13.6646
-769.538
1119.04
459.533
-1140.33
1140.33
1758.15
-671.01
739.671
452.551
-192.159
900.263
-642.686
1313.47
1200.56
889.195
1143.78
540.423
1096.44
-560.24
-84.28
-1090.66
1115.67
636.062
-1669.74
1198.04
-135.662
551.745
-416.084
211.695
-608.69
1859.47
1075.25
-1075.25
997.131
604.641
-1601.77
633.111
651.659
619.227
1115.32
767.957
-667.086
1731.13
398.56
1061.17
129.501
1563.64
526.712
713.333
-1215.38
-717.455
-527
1914.11
-1387.11
1852.19
-601.616
1513.37
-1852.26
338.893
984.437
-984.437
1772.49
-682.883
55.2489
-498.024
400.124
-647.329
1353.02
-705.695
674.775
-640.264
67.2492
532.706
612.317
-1145.02
1486.93
-749.632
1026.44
-1026.44
426.785
-343.583
343.583
327.24
1148.51
-693.917
-896.75
1590.67
1233.39
1266.33
661.061
-1927.39
-1311.44
-709.977
1423.28
1311.44
-545.927
-953.271
800.727
152.544
1154.96
-1154.96
1174.12
533.89
1202.81
-1848.09
1206.32
-1061.57
1061.57
1020.69
1042.04
811.778
586.623
-1764.16
1177.54
1092.18
-1735.44
1060.57
-600.921
-502.785
1011.69
-699.416
585.938
1291.37
1687.47
-827.389
-860.083
1048.77
-1048.77
-193.653
365.53
-171.877
-773.081
360.578
-1827.04
624.349
1202.69
-768.848
-759.85
1528.7
-326.136
-314.853
640.989
1123.38
1655.54
-715.757
266.307
204.256
876.727
-876.727
861.728
1679.46
-1035.69
635.13
-1277.82
1260.84
-1909.42
1132.26
-1794.63
-273.906
-400.555
1921.9
1136.05
-1136.05
1236.18
-1850.15
606.086
-606.086
429.63
-253.301
-176.329
612.819
953.607
-468.563
767.555
1768.26
-850.592
475.709
-853.095
853.095
1238.68
-1079.01
1254.71
-1868.39
1267.24
-1891.47
1125.51
1548.26
-763.428
-365.966
894.044
-1871.7
977.656
-348.171
527.357
-861.177
861.177
172.587
-459.461
1176.25
-1777.97
1190.03
-725.273
-1025.59
1750.87
573.531
-642.188
-180.109
-335.051
515.161
432.269
314.599
538.952
-358.009
636.755
1289.48
-1926.23
845.7
-845.7
1125.84
-1772.78
41.038
-456.537
1664.5
1205.12
612.657
-1817.78
375.074
-763.074
763.074
639.387
-1851.97
1243.5
1060.93
-623.473
-525.194
525.194
1222.26
619.817
-1842.07
1160.32
-1752.37
1123.21
-1762.89
639.674
572.12
-1379.01
806.891
1237.86
621.605
-1771.14
1173.58
488.197
627.895
1229.35
-692.893
-1368.12
1773.64
729.4
-729.4
1095.1
-1734.31
639.212
-829.233
391.646
-718.901
1717.26
241.284
299.502
200.441
539.429
1224.3
434.478
-852.459
-805.794
1658.25
-1166.71
-660.322
557.109
-1530.95
-632.204
1071.15
-686.238
668.408
-668.408
1011.7
-1011.7
-605.748
893.161
-720.775
1875.97
-642.577
-204.95
176.469
182.194
-358.664
610.818
1112.22
-1723.04
1813.99
-576.128
-719.347
1895.6
1079.45
-1772.34
552.868
-378.933
-531.023
531.023
167.139
195.565
-362.703
1835.98
214.405
144.031
-358.435
-286.309
608.632
-608.632
-1215.66
1767.92
-552.259
688.5
-420.928
443.656
-224.336
208.277
151.458
-359.735
1802.69
-1817.27
-1745.31
1131.89
554.451
-382.953
195.237
169.259
-364.497
-1685.34
659.933
632.673
-632.673
562.751
532.51
-320.815
-2087.47
-1193.43
-675.777
1878.58
1134.38
-1721.66
-1230.65
621.665
1707.25
-1091.19
-1170.02
196.996
169.26
-366.256
-588.421
588.421
38.7803
680.098
1092.96
-1773.06
1131.2
1086.86
-660.576
303.817
743.438
-743.438
-1453.37
575.953
877.42
1083.38
-1677.96
1810.55
-604.227
407.155
-715.826
-1640.69
1039.18
-598.606
1796.64
272.941
571.667
-571.667
1633.19
-895.924
437.517
-715.692
715.692
-1097.17
-850.267
-435.227
190.363
179.609
-369.972
653.993
-1301.32
-482.808
-1654.11
1069.14
527.075
562.149
147.672
221.241
-368.913
-1204.09
1805.05
-608.595
-1280.4
-779.887
1600.99
270.863
518.839
-281.877
629.203
-629.203
1792.32
1497.75
316.246
-625.667
625.667
704.287
-457.222
576.61
-389.754
-206.821
473.128
-510.758
204.35
711.05
-477.798
-717.53
336.004
-1658.99
1118.73
1091.07
817.404
-554.117
1451.92
-1557.38
965.854
1002.95
-1672.62
610.924
1106.21
-1717.13
-1586.99
1023.1
622.869
-622.869
1223.54
628.762
-1123.08
1088.2
-650.183
714.637
-445.951
-1486.27
897.842
1033.99
-1627.74
-1183.29
-580.871
1955.54
-1000.36
525.629
982.097
-1628
-164.598
-552.932
1603.56
-17.0399
-668.792
1209.6
-1885.38
551.714
-1681.13
1101.48
-530.435
311.605
218.83
554.237
-1189.1
1845.15
-1528.72
958.326
-266.124
-240.848
506.973
226.533
-457.842
-384.742
1451
-749.833
-823.408
1573.24
740.673
-1839.8
1099.13
-308.13
480.717
-1922.59
1948.22
-1948.22
-1800.47
807.57
1881.15
-649.562
182.889
-419.021
-536.706
-345.447
-880.446
390.772
-592.158
1967.84
851.449
-491.718
-359.731
-1664.58
843.295
-1852.4
1041.27
729.146
1836.09
-281.034
1669.24
1787.52
-586.956
-1627.69
545.685
1082
871.206
-1621.04
-605.99
-667.792
-131.88
643.575
-362.985
156.49
413.83
1022.31
427.368
-1449.68
1675.31
-543.421
-562.555
1633.43
-1704.54
918.842
-487.386
-1102.42
616.011
-26.473
-1417.6
1630.62
-524.412
-1435.29
860.732
608.826
-1679.32
1070.5
1671.41
-588.03
-1286.91
-689.771
1919.12
-1621.19
-14.1468
-368.311
-1799.18
603.827
-1179.95
-1468.04
879.402
-502.174
922.946
772.318
-1695.26
999.41
-1421.29
421.883
-64.3375
-250.134
-168.86
-1361.98
367.263
251.298
-928.613
529.333
-1516.58
747.737
-1589.28
789.617
-1115.22
2009.26
46.0692
-607.347
1772.83
942.116
151.609
-1819.52
1169.96
-625.603
433.066
-445.209
1071.95
-81.7037
-1090.63
1172.33
-482.857
1232.73
817.629
-1641.88
200.392
1196.71
760.372
-1532.84
150.437
1670.45
603.248
-1525.53
936.606
-1528.76
-552.157
226.022
-1399.29
913.135
449.493
-109.602
1200.54
-574.647
399.731
-715.737
1386.37
-670.634
-363.689
546.725
-332.031
-516.025
795.237
-1372.63
807.695
-478.192
-699.582
-367.01
-462.223
1853.06
-1066.72
-656.316
-631.421
1870.1
-1268.41
459.655
-1239.92
799.505
-937.454
855.75
-1302.68
743.064
-832.947
-257.239
-728.094
309.258
-486.651
1209.69
606.705
1026.49
-7.00586
598.845
-102.439
407.138
-225.511
450.291
954.19
1065.42
182.046
-1414.21
823.536
-749.265
-1129.07
388.207
-1338.23
764.842
-1584.85
750.395
1264.18
465.125
-230.877
-739.851
1313.82
-1082.88
-651.43
464.32
-336.673
20.2175
994.255
-1119.72
125.465
648.248
-713.853
218.144
-1744.49
-759.005
309.511
-237.563
1087.2
551.241
308.522
-859.763
-595.461
-800.596
356.299
-463.347
-23.717
1443.63
944.419
253.251
280.708
-533.958
-686.191
1787.67
-71.7493
-436.655
678.651
185.174
355.41
280.895
-596.1
1676.89
1380.41
1828.97
362.376
1079.63
-1765.82
794.299
679.193
-1473.49
-1503.78
1095
-1061.48
1709.72
-651.715
314.182
-792.068
-563.505
-984.886
1548.39
-1033.94
242.475
-347.701
1071.32
-1529.16
700.739
-1505.02
-842.581
567.844
274.737
-582.633
537.934
736.54
1112.94
-1668.22
1668.22
-599.055
807.005
1147.15
928.701
-1527.76
-604.815
-949.276
-419.395
-476.529
-281.82
617.667
648.224
-1414.28
-1580.77
721.501
865.295
-1625.14
636.921
740.572
741.246
-1512.52
-485.177
1390.3
-745.453
-514.604
1260.06
-1252.27
688.026
932.129
-405.791
582.665
-1307.98
-1380.41
-1338.33
613.486
724.844
-575.087
634.832
-1280.96
-682.382
743.996
-418.017
805.776
524.418
681.868
419.583
-1165.04
335.789
480.172
-815.961
-425.276
-110.018
876.136
-1591.89
1663.41
-158.604
-1053.21
-626.116
366.775
289.143
1654.68
-556.771
1476.11
-578.268
496.961
645.734
-1509.86
864.124
-1230.47
664.617
-1217.21
-492.327
1127.16
1168.65
696.72
-1211.32
736.843
-1727.69
839.529
468.963
1010.38
-470.954
-165.349
-1051.87
-254.376
419.998
-473.567
672.477
-1569.23
-1181.91
520.224
1034.88
695.939
-1188.27
-602.213
-1632.35
-0.979383
374.609
410.204
-901.755
1526.22
342.604
791.936
-416.585
5.82869
1574.44
881.678
-344.909
317.326
27.5833
-470.291
1238.25
563.434
-1047.22
483.79
-342.604
-20.8891
534.331
-1069.39
535.062
1179.34
-413.068
342.432
-746.027
72.574
940.872
432.819
-224.546
-500.249
-1071.62
-1191.68
639.394
-713.242
-1600.12
-658.309
798.626
607.308
871.357
-1478.66
1037.62
-1085.24
1660.55
-621.368
-481.923
-310.023
1146.26
-297.055
352.587
-383.278
30.6907
-734.718
-593.332
-1404.54
783.473
-975.923
-625.849
-46.4732
-14.0381
-240.45
476.382
-1130.26
253.01
-286.865
33.8552
-1092.12
-589.007
-678.132
589.576
-1149.87
-190.089
350.141
-387.732
37.5907
422.182
383.594
-1097.44
-589.347
812.296
430.761
-494.761
917.112
628.817
-1545.93
892.388
223.271
864.15
-437.365
461.347
520.54
515.48
-1036.02
591.296
490.241
-1081.54
688.128
606.517
803.283
-1409.8
969.662
1111.37
-634.988
943.595
647.072
880.01
-39.205
577.546
-1102.37
305.868
-347.69
41.8221
464.807
386.642
-388.059
331.791
56.2675
1112.47
512.339
-1015.12
-1627.38
863.95
1420.48
-758.736
-426.969
360.952
66.017
1113.48
-702.494
198.678
-1073.07
1712.28
319.044
-388.836
69.7925
1477.82
-598.418
343.559
-415.952
72.3932
-625.207
262.222
-450.304
384.553
65.7514
378.217
-435.482
57.2646
380.56
-426.743
46.1831
444.403
-465.033
20.6299
-435.646
448.811
-13.1642
444.986
-423.082
-21.9038
422.908
-393.819
-29.0893
419.116
-384.305
-34.8108
404.565
-365.147
-39.4182
-378.391
427.502
-49.1112
404.749
-353.662
-51.0876
381.972
-329.491
-52.4816
-396.142
450.144
-54.0023
-20.5717
-802.202
488.271
-155.536
752.614
-684.409
469.1
514.623
650.046
-1458.27
808.229
-595.17
-648.004
428.059
386.14
405.997
-409.994
339.197
70.797
372.494
-753.622
381.128
120.699
1571.38
-605.53
-1292.69
199.667
-555.481
447.823
-928.428
480.606
536.429
396.626
-839.569
442.943
1687.21
-742.789
1500.17
-877.528
-1587.79
-790.408
1763.52
-672.453
481.622
-950.916
759.103
-1354.27
1112.09
1575.5
509.574
422.555
430.818
342.584
-415.457
72.8729
-895.185
457.094
-372.928
419.326
-46.3974
-756.212
-572.658
503.999
640.038
-418.762
-577.494
1646.01
-575.516
491.71
536.651
505.873
-1017.73
511.858
-1537.45
1173.76
-681.808
1681.22
1127.35
-601.153
-339.672
-399.895
402.977
-3.08201
-288.797
429.803
547.056
-1039.42
477.025
1178.86
-550.047
-545.205
-317.675
343.82
1057.98
-357.738
-635.054
-534.963
510.574
-1059.22
548.642
1425.17
-601.634
1401.05
-500.791
499.891
-981.814
416.559
-373.342
-43.2173
198.569
-881.253
-670.82
1469.12
351.991
-820.567
486.52
-944.981
1825.65
-954.443
-726.499
285.99
544.656
591.073
654.296
-1245.37
682.777
-1431.94
749.16
1074.22
472.267
-906.9
733.319
619.704
-504.571
1417.51
-1770.13
1502.92
267.213
274.743
1453.33
-1018.35
1501.27
184.691
-696.212
239.146
443.019
-861.781
-645.162
-1110.44
292.789
1120.01
-169.237
1289.63
-601.6
-1600.41
1098.23
1921.09
-1110.5
-810.593
-578.859
844.778
1042.04
422.972
-825.298
-803.41
-1122.1
-647.747
-500.439
-388.325
-1346.08
-237.479
310.454
-577.18
208.483
427.238
-830.913
218.087
-632.001
856.453
-1807.76
-845.409
192.582
175.603
-368.185
-926.774
455.114
-1098.31
895.186
1017.34
420.661
1416.1
-1525.86
700.953
276.007
782.761
1378.81
572.327
-1183.64
611.31
464.729
-852.263
-889.56
1879.85
-447.293
181.169
-557.847
1121.28
208.471
622.949
690.519
-203.684
-395.436
599.12
1593.63
-1007.74
-508.194
1148.23
321.242
-267.459
-53.7827
628.241
-1249.16
-839.569
331.726
507.844
-1122.99
-1621.19
780.367
877.886
647.811
723.766
204.03
310.594
146.142
-515.635
369.493
546.384
-296.807
695.291
-1178.15
534.158
404.595
-782.308
-783.742
-626.059
6.02897
1593.63
-983.763
-817.378
968.906
1529.16
-851.695
-677.465
349.368
-691.172
341.804
-540.013
1298.38
1268.88
190.781
209.2
-1053.92
744.166
679.118
-510.188
152.179
-460.017
256.242
203.775
222.169
1469.12
381.895
-735.607
647.67
963.173
-1526.68
192.306
329.163
331.785
-660.947
1189.1
-599.521
366.176
700.279
-363.599
604.883
1282.8
472.715
-935.414
462.699
539.525
533.837
-1073.36
678.026
-1422.46
896.216
-450.081
-597.092
1679.09
-585.898
1770.47
-1184.57
-626.534
262.936
1508.27
-771.429
-354.379
889.512
293.709
-910.503
-384.507
673.65
822.957
-735.748
1277.24
438.808
-896.405
457.597
-1063.16
-756.362
-762.238
-1061.49
-974.89
-713.991
601.169
-601.169
-7.46268
-729.327
533.732
-1518.62
811.653
197.677
400.413
-754.069
353.656
655.708
873.452
-1286.22
1819.95
-880.033
1659.3
-717.182
1267.74
-856.794
460.625
-242.481
1402.88
313.684
-597.733
284.05
-1069.74
606.39
-934.592
1534.72
819.287
-132.809
-460.567
846.707
419.088
445.553
-392.32
-53.2328
-1631.95
779.688
-553.727
163.974
1622.89
-872.5
1122.99
17.3377
1523.66
-647.575
-1127.7
-407.513
-555.313
-850.307
-1678.7
1052.58
500.881
-600.782
99.9005
-258.5
335.718
-751.908
1840.52
10.5809
286.41
-601.263
-1523.66
-138.998
1108.29
-682.77
-425.52
-728.432
-117.268
583.586
270.339
-748.137
-591.145
1768.68
384.564
-739.94
1811.26
348.922
-864.947
271.45
298.728
-570.178
-335.942
362.009
348.448
-1377.07
-421.355
231.055
229.571
828.061
-1103.16
452.975
1074.95
-45.3051
-579.152
1156.83
-553.005
-942.44
-436.571
-482.994
-808.189
1291.18
-612.232
81.8634
240.437
-229.262
-940.251
1359.6
-419.345
-495.294
-682.76
1296.25
259.723
-518.837
259.114
618.864
1390.4
611.224
-1538
1165.76
-814.66
-463.881
-543.126
285.498
-332.058
46.5599
-534.059
-271.622
-14.1949
-626.912
-1197.78
736.733
461.045
-574.112
1098.31
-667.136
1391.98
-584.598
262.099
1627.82
-906.319
728.432
34.642
-62.3951
246.448
-487.297
802.328
-523.975
914.307
634.083
1021.59
-448.353
768.901
-1370.59
673.919
-248.64
1050.96
-654.471
1154.1
-381.747
341.876
-566.058
-890.746
1598.28
751.908
1730.95
532.169
-327.818
-523.681
864.996
-492.502
843.285
619.571
372.657
-320.578
-52.0789
709.991
-1590.02
-400.871
970.025
-636.657
-839.794
-743.201
378.659
-328.223
-50.4359
-449.747
-491.085
-606.713
370.363
1084.79
-623.442
859.671
-503.372
575.28
-420.703
1305.81
-1676.67
692.907
-1797.53
610.238
-530.858
498.559
-839.687
341.128
227.555
-543.209
315.653
-764.041
388.19
-347.579
166.991
558.827
-283.688
-462.98
1159.7
1106.06
-675.245
-587.839
-458.441
385.705
-419.389
33.6833
-493.822
200.154
445.487
-199.843
-327.851
-303.786
754.52
-1064.54
473.302
936.267
1031.57
-441.546
366.936
335.942
483.868
1030.17
518.832
852.423
1068.67
814.092
-1462.86
648.766
464.092
-1259.1
681.608
-199.972
-260.045
142.986
-386.24
600.184
786.186
-594.485
-171.976
225.911
232.568
217.722
1646.26
-462.426
-726.675
-318.285
358.55
-40.2653
1154.41
-450.533
-703.874
439.679
-404.657
262.349
411.57
-573.158
494.084
-710.987
1138.23
196.524
645.468
1399.16
-1204.64
689.195
-412.811
149.37
-190.931
-673.355
607.135
512.921
-311.324
1101.47
-652.424
1117.15
-493.711
1189.65
740.657
-628.478
359.969
-37.2402
1510.52
-769.951
1653.87
-993.939
1370.59
-1227.53
271.622
-79.1878
602.526
-781.196
-778.449
-408.087
1247.62
-53.8561
-515.242
-264.703
-1190.78
-590.85
732.493
-272.389
892.588
-455.072
-355.671
182.509
239.782
582.369
-226.695
-273.743
1230.38
-590.752
-540.303
583.186
-656.726
265.842
69.9373
373.757
-325.429
-48.3278
235.247
-1076.43
766.575
281.953
-1008.63
357.042
209.665
-566.707
627.044
-242.238
689.287
-447.049
-759.172
-378.498
-1025.15
507.985
455.351
-1166.34
-863.933
339.958
-107.926
185.192
937.528
-45.2774
495.842
-1148.27
1780.29
-898.61
-54.9213
25.2968
20.2603
28.3107
626.436
-473.897
124.497
-716.662
-435.252
-623.964
-496.514
766.853
-450.271
-962.91
-1204.58
-93.1815
-449.176
742.885
902.705
-422.1
167.395
-361.047
-25.4406
782.411
800.727
431.246
-325.323
368.385
-43.0622
-483.165
-614.91
257.172
-637.624
298.663
692.424
-227.957
311.779
1152.12
54.574
-518.882
646.602
-1593.49
946.889
291.921
188.796
-390.287
563.277
-365.6
224.806
-673.982
-415.218
190.672
-253.578
-222.132
920.29
755.973
199.94
315.22
-952.161
527.476
-76.2602
282.283
-740.747
-664.928
-969.881
816.618
-1220.64
-897.509
298.722
-503.727
156.496
-359.61
-428.284
888.998
-340.356
-481.094
693.452
68.8822
404.657
459.48
1154.35
-725.656
51.4121
-378.787
641.722
-517.238
-629.43
732.96
-434.316
1209.82
-311.574
286.768
24.8057
1779.08
869.21
513.815
-323.034
861.056
-1428.1
-1840.34
856.296
751.388
-339.589
1603.56
510.748
116.803
-164.138
-189.979
354.117
1695.66
705.324
-1375.96
1686.88
-732.689
1036.69
-42.4332
1216.95
45.9842
283.079
-712.378
-250.896
-352.01
290.892
-781.977
1020.05
516.783
220.86
-651.744
-701.257
-146.57
1199.67
-243.866
-274.845
-182.787
-161.71
344.497
-1032.38
-221.216
-689.777
-607.334
-1294.13
519.928
-552.423
-1241.72
1095.32
738.322
-337.708
-78.4407
357.056
-311.21
-45.8454
1770.36
-508.124
135.43
-366.307
-74.9001
-443.419
943.695
-633.602
476.637
536.474
-620.766
-63.3429
301.815
-111.119
284.48
158.532
206.998
-1154.35
-413.83
-184.898
-156.922
341.82
-757.78
-807.138
-376.499
-69.3128
-900.568
-1111.7
-1464.14
-535.886
-1464.14
1466.02
533.976
1466.02
352.01
-319.233
118.572
1034.71
724.524
1267.85
-1117.28
-463.918
-844.065
-436.208
-841.752
-244.748
659.608
-383.638
299.689
-1752.04
-446.866
25.0141
-369.862
734.97
-577.044
410.715
-652.954
-475.352
632.914
-423.249
-1114.32
-725.482
658.516
-1692.46
-772.465
-685.81
1679.63
-504.017
230.274
1056.37
-562.994
-100.846
-95.7177
-1456.08
574.825
1566.09
394.664
-1419.5
-454.757
-1398.52
257.304
-1018.15
459.407
443.298
1009.56
-863.257
-151.234
-199.836
351.07
-1292.69
-343.268
442.453
-233.97
-780.414
-418.909
-591.627
1486.81
687.637
352.644
-757.533
437.743
1114.31
-693.651
-821.954
-635.336
265.065
-643.933
-29.7886
-475.934
1230.95
-863.684
1460.36
-383.346
-367.939
728.378
-391.407
-897.251
-841.233
-427.014
497.683
-347.029
-147.614
494.643
126.777
411.818
-451.962
1415.93
1572.92
-604.018
-618.505
1151.21
-969.437
259.833
-306.343
-437.636
1099.87
-527.766
-218.261
947.075
-433.657
-159.618
372.182
757.78
-1342.41
-11.1229
-471.685
-274.065
274.065
-326.739
-427.33
931.811
-615.109
1296.72
-418.386
-510.526
-1585.98
815.564
-329.61
-362.907
-1193.95
1176.56
-565.255
182.93
416.675
-893.205
-723.911
249.897
493.605
-289.83
-631.949
-472.492
-202.792
-162.272
365.064
-819.732
-158.646
-202.132
360.778
-203.135
-153.012
356.147
-285.355
35.8505
915.326
-1509.77
369.933
-187.738
210.598
-980.136
1044.81
-500.152
-683.774
-385.794
1069.57
939.815
-211.44
-157.477
368.917
-382.27
428.255
1342.69
1660.61
1282.8
-1469.47
711.937
187.082
464.401
103.552
-377.618
442.423
-312.529
788.642
-434.986
479.01
-695.117
-606.204
-467.052
137.324
500.794
-46.292
-460.112
-391.565
-653.418
-1574.94
771.53
-213.168
-159.102
372.27
-888.627
-512.144
1610.38
-1510.21
-861.447
1129.96
-1175.27
1598.5
1051.2
-818.796
-899.819
125.622
-613.633
1671.61
891.697
911.589
681.136
-279.644
876.082
-349.866
-283.153
-364.531
712.979
391.572
579.878
601.496
531.411
-339.105
735.211
320.864
1577.11
1385.06
-447.535
319.106
-367.625
-682.361
-19.6636
144.815
-883.076
367.961
-795.252
944.24
826.232
265.842
-260.054
478.884
268.017
-577.773
784.147
213.974
215.693
202.147
1559.39
48.3246
905.8
-954.124
474.116
-403.525
184.709
-1099.61
475.645
53.2373
820.049
908.546
-184.265
-188.143
-378.564
-361.313
-502.62
-608.704
253.033
-929.57
459.326
-468.061
-346.605
58.0816
761.066
-455.778
878.551
-92.2119
-463.269
574.107
886.251
355.874
-179.672
276.376
932.258
602.458
53.3394
305.249
265.696
-1220.99
467.052
-886.313
584.726
301.587
1688.7
-430.355
-323.462
270.043
-402.706
977.564
116.862
336.632
1220.64
1514.52
-650.396
-679.822
697.663
-295.337
829.782
-534.445
-681.926
661.355
-379.81
822.375
377.667
609.141
-370.954
-1344.83
1038.76
-259.672
1857.44
-679.722
203.773
530.023
-185.215
694.924
-317.422
244.964
-1100.1
423.013
-1356.56
1339.36
406.402
-218.131
-157.048
375.179
-783.914
-1623.35
-909.934
174.71
41.6846
-619.64
1001.65
1190.78
-656.962
-742.386
-667.084
553.775
497.917
512.614
-1212.2
931.569
-250.323
1174.65
-528.073
777.494
-1289.05
1098.67
-105.622
371.464
-600.615
1383.03
216.409
-622.269
-904.409
386.205
1195.21
212.708
208.621
33.2267
-947.126
907.719
-972.056
-243.244
304.313
754.062
708.256
1150.25
350.017
-661.233
-331.332
-314.448
-289.26
-716.767
-452.962
556.662
-387.401
-29.3755
83.4193
-45.1488
-745.709
302.29
-1319.81
286.015
478.848
676.13
-1154.98
-1093.72
-358.03
-391.707
-1009.56
-1136.06
-1514.63
615.801
-315.662
-1103.8
-366.479
-377.288
781.513
388.793
-1082.44
-53.4189
344.874
289.747
270.457
602.472
-1005.43
323.79
-425.875
362.191
-216.326
-403.103
-201.973
-1519.52
281.894
-1508.57
-1457.74
-218.101
1080.03
31.6267
-438.323
1042.3
-523.468
-669.35
1114.84
812.715
366.996
-767.868
668.696
-260.113
-383.821
-411.522
-554.436
1038.3
361.438
-196.516
-164.922
-328.106
-794.274
-403.55
1197.82
1914.39
57.1749
372.234
177.889
-532.081
-307.606
275.421
341.483
-144.122
-197.361
-379.699
163.184
-389.785
441.197
-399.051
766.047
638.203
450.553
-417.326
-352.517
-98.5403
-905.344
359.94
-235.64
-776.069
637.952
502.147
1160.19
1019.9
-1145.01
801.02
-541.634
-104.192
1544.17
-571.398
1098.87
-346.608
1648.14
-112.856
-219.202
334.565
921.32
415.809
-1370.25
-327.694
-1422.05
1314.38
-633.245
708.177
-1342.34
675.554
362.959
-440.46
-621.896
-542.748
490.351
-201.079
-985.278
-830.875
298.795
1111.93
1511
1003.28
227.07
470.226
38.4699
445.21
524.092
969.985
558.147
-322.9
-292.251
1522.27
-175.605
888.342
-1353.76
956.043
441.481
-606.032
-190.603
-491.323
327.449
-589.17
1131.07
539.31
-313.4
310.091
431.51
-304.733
240.476
-430.97
-124.025
-795.164
365.611
-600.838
-491.789
417.077
-1013.09
197.782
1003.1
508.109
791.873
358.363
-240.733
-407.065
1530.85
-743.125
-477.869
20.8221
-736.667
1154.4
-1708.89
1163.44
-197.251
1323.27
299.579
-354.369
-174.239
585.809
-338.758
464.251
1517.2
-148.121
322.472
-539.627
1391.77
-1181.14
-1314.41
421.011
400.935
-964.612
121.1
-355.144
346.571
-373.712
463.287
1058.99
-563.095
-564.216
1203.6
-1192.91
505.329
318.469
-1189.54
-1271.43
-242.833
96.7609
-482.197
310.928
-750.156
295.399
-48.4539
-609.259
418.656
-370.645
264.389
-165.982
-899.688
-470.648
-359.616
1117.61
-380.139
-297.883
284.727
400.251
427.874
-535.128
264.814
1632.56
-1575.08
-324.793
532.817
-94.0483
-716.003
293.869
61.0689
-1094.65
-423.969
-872.846
244.368
975.114
-330.775
-958.279
-328.693
-21.7373
204.084
-706.867
768.076
-696.089
488.934
-167
-232.848
399.848
-326.618
50.5312
-352.518
973.563
998.896
-405.39
189.334
169.029
-651.2
229.273
502.346
-541.551
1080.27
223.094
-377.234
1116.81
-626.455
-280.561
294.401
143.768
-1671.5
366.245
1327.24
190.513
75.1269
8.12732
-427.044
184.561
1473.82
171.905
-800.759
427.755
-1532.94
1543.69
274.763
-158.524
-440.684
-189.551
1107.29
160.912
-289.728
299.228
-326.134
646.998
643.969
294.61
-628.484
-972.768
184.447
-164.341
582.674
-332.204
654.676
330.131
311.591
-763.672
1187.42
51.2547
350.723
-480.505
770.187
317.746
718.312
349.052
106.838
-625.69
910.484
318.091
-447.866
277.667
256.491
-948.267
-196.74
22.3746
-150.618
1500.66
-289.254
1328.38
-185.631
346.543
326.528
-1136.05
414.094
-806.823
358.957
-334.181
-676.563
1021.09
655.799
-487.483
-747.76
239.635
383.703
295.601
-324.252
-158.453
343.014
-557.554
-985.059
693.419
173.969
-607.856
-164.288
-759.534
-452.361
-110.974
-853.638
-141.463
1049.92
507.411
1716
-620.675
-83.7145
407.134
-653.729
-172.3
-161.881
-498.786
-137.96
-1462.96
424.681
-223.691
-293.231
-449.686
748.481
338.006
541.874
598.722
-301.321
564.048
211.726
996.558
-796.02
1286.47
587.435
389.818
-314.691
-542.905
-34.8732
-428.396
-1011.54
36.6846
-368.195
-382.163
59.4375
-344.083
-781.971
88.1884
5.85646
119.804
1110.86
-538.695
-126.448
804.33
278.648
-354.248
-974.279
627.215
-374.924
279.511
804.069
332.233
27.1288
-427.925
-251.547
1442.02
483.742
245.963
-97.5362
1208.4
-195.953
-174.691
372.46
-853.179
-218.974
194.273
160.871
-325.792
1380.32
-494.433
-165.508
-142.153
60.2328
13.5248
-160.679
147.154
-22.538
23.5875
-1.04953
-330.132
228.559
101.572
334.844
-50.313
-284.531
-186.778
235.342
-48.5638
-13.4028
179.212
-165.809
-4.99016
-9.41022
14.4004
82.1136
-36.9985
-45.1151
208.264
-194.739
48.0754
-234.853
233.084
-135.63
-97.4537
386.612
-400.699
14.0861
23.0693
-15.1899
-7.87937
182.649
50.4355
-234.605
299.692
-65.0866
-89.5601
90.6097
-1.04968
431.032
-175.953
-255.078
-228.02
124.186
103.834
-48.3481
134.671
-86.3227
368.867
16.645
-385.512
-482.639
458.271
24.3688
-23.2631
-52.9413
76.2044
-18.0189
-0.561802
18.5807
-138.303
124.9
63.5015
281.066
-344.568
-229.973
4.34497
225.628
274.154
-404.516
130.361
-69.8705
286.527
-216.656
-5.27431
-21.9366
27.2109
114.22
51.3316
-165.552
-47.1909
52.2526
-5.06171
-47.1785
52.2408
-5.0623
-47.1777
52.2462
-5.06851
-46.6799
52.1684
-5.48854
46.7199
-52.119
5.39902
-46.6773
52.1689
-5.49165
-297.911
228.041
-30.2116
201.287
-171.076
-34.8154
24.0914
10.724
178.116
252.916
-351.614
317.492
34.122
-17.9668
12.6925
-15.7378
-0.826119
16.5639
34.3728
116.342
-150.715
14.5652
67.5485
379.863
-316.362
88.7408
-287.09
198.349
281.372
-298.864
17.4926
120.459
-151.209
30.7498
-3.77295
30.1184
-26.3454
217.355
-182.982
103.795
66.4046
-170.2
-122.977
-123.25
246.227
-11.2774
-11.2606
132.209
-162.421
50.8402
61.0141
-111.854
281.387
61.0052
-342.392
21.3203
-26.3105
38.087
-70.8119
32.7249
-21.2659
-13.5494
-114.928
25.3682
-48.8168
41.1756
7.64121
319.23
-37.8583
75.0722
-72.7415
-2.33064
5.04474
-145.834
140.789
353.1
15.7667
-138.346
138.346
-294.701
-11.4453
306.146
30.4215
120.28
-150.701
-130.602
-2.00245
132.605
-244.655
-131.193
375.848
-261.984
27.3784
330.792
4.05201
129.192
3.36001
-132.552
130.165
2.50345
-132.668
129.179
3.32421
-132.503
129.184
3.32192
-132.506
131.113
2.63177
-133.745
130.163
2.50259
-132.666
-16.6913
0.953489
-3.20289
-14.8161
30.4679
112.754
-143.222
0.873368
15.6831
-16.5565
-228.529
105.552
167.852
-162.808
-21.3534
-172.628
193.982
-146.256
176.724
380.492
-106.338
10.4196
1.53612
-11.9557
-83.3362
-144.684
38.6846
-34.5815
-4.10312
-440.212
299.945
140.267
-272.634
222.321
310.971
-293.496
-17.4746
-208.025
296.766
-50.637
371.482
-320.845
-207.626
253.721
-46.0954
-280.034
114.387
165.646
-278.458
-51.6738
-53.5858
58.7454
-5.15952
-57.6098
10.4189
55.4701
-8.75014
-57.6077
10.4291
-57.6279
10.4502
-55.912
9.23214
-55.9085
9.23124
-281.213
366.414
-85.2007
-104.346
208.141
-162.446
319.626
-157.18
182.943
-398.013
215.07
437.361
-168.851
-268.511
7.90254
-8.15304
0.2505
40.9082
345.704
-128.444
153.515
-25.0714
45.9532
112.593
-158.546
5.36853
-2.31282
52.9954
-50.6825
-156.634
-55.5933
212.228
12.1063
316.51
-133.567
-67.1863
113.14
14.3351
-15.3884
1.05329
-55.8157
2.22985
193.153
-215.3
22.1474
-45.6317
-3.18513
118.759
-67.9193
31.8457
6.83887
-4.82192
-0.429686
5.25161
10.6232
108.136
-217.425
285.384
-67.9584
136.631
-47.8868
-88.7445
19.033
-4.69785
-191.77
360.565
-168.795
154.352
283.009
38.3595
36.7126
70.6239
-118.972
-427.394
376.758
-321.101
154.536
166.565
146.995
-112.199
-34.7959
-132.119
-23.2815
155.401
215.495
-215.495
-281.213
193.392
-316.642
0.351054
112.242
-42.5916
73.0131
-48.2578
53.744
-5.48617
-49.1858
54.6133
-5.42751
-48.2586
53.745
-5.48645
-47.2282
52.804
-5.57578
-49.1863
54.6204
-5.43412
-49.1902
54.6247
-5.43443
-6.27168
19.9095
-349.297
329.388
-57.5051
-15.2364
190.503
-248.316
57.8127
-87.9368
64.6737
263.104
-284.457
-25.3011
-24.2043
49.5053
-0.0802869
-36.0424
36.1227
-336.592
-15.0216
252.839
139.303
-392.143
26.3443
189.151
304.185
-22.7982
102.127
-293.897
-417.652
172.997
12.7844
10.8032
247.931
82.2119
-330.143
105.62
-394.719
289.099
78.3991
-286.424
-389.893
67.6122
322.281
9.48452
-106.247
354.177
-6.57561
27.8959
-5.37362
0.551695
38.7146
248.892
-287.607
15.1106
7.95867
-18.9509
-276.513
295.464
-120.813
-17.5326
221.084
-390.402
169.317
-36.7929
-237.94
-130.973
-248.005
40.379
47.8347
-53.3057
5.471
-256.568
-111.617
0.831059
7.07148
-53.278
-107.629
160.906
142.357
-28.1375
-2.37192
63.8134
-61.4415
-85.7675
146.782
-27.0189
-23.2804
50.2993
-17.1779
0.247918
16.93
-144.345
-260.171
130.808
19.6187
-150.427
-324.235
-158.404
-130.303
72.7818
57.5209
201.506
-8.35305
-311.829
149.383
-31.3857
216.669
-185.283
-356.143
180.189
-135.87
-8.99939
144.87
-113.793
-44.7532
-41.9109
8.89635
33.0146
-281.65
224.405
57.245
42.1257
-170.57
33.9245
-36.2964
-43.1874
36.6117
92.1609
20.334
-112.495
-269.091
-25.2756
294.366
-201.432
149.035
52.3973
55.628
-198.344
41.7091
-138.645
8.25952
130.386
272.036
-193.637
-271.178
109.239
161.939
200.358
-84.0159
-171.448
-184.695
14.731
-132.913
118.182
-137.579
-208.66
32.2283
176.432
-169.728
144.683
25.0456
14.2911
122.34
-308.261
32.8903
275.371
-269.331
51.9056
-85.8442
100.575
-9.57469
-32.3362
-14.6516
14.6516
-194.822
-33.7069
94.4998
-2.33888
-3.18219
-8.09525
45.7416
-55.3163
-235.626
293.555
-57.9294
49.7575
-18.9683
5.48679
13.4815
8.24643
51.378
-59.6245
0.344548
200.943
66.2861
-313.384
247.098
-11.6415
-31.5458
45.4524
133.759
-12.1139
-157.614
47.7314
-59.3729
21.6807
-141.871
-10.204
152.075
220.102
12.259
-232.361
9.84282
-11.1174
1.27456
-23.5788
52.8978
-56.6708
272.901
11.0885
-283.989
11.4172
-33.3539
-281.213
-0.571191
5.1683
-4.59711
-38.7964
-72.508
111.304
-157.992
110.105
28.3012
-31.504
-7.03599
-32.6914
-222.621
255.313
64.9313
-65.0115
23.6914
-18.2348
-5.45657
301.007
-48.168
-158.113
180.26
56.5788
-16.4423
-40.1365
71.1974
-33.1104
292.159
-264.211
-27.9471
-57.7697
0.159921
-57.7689
0.161211
-66.3184
68.0049
-1.68649
59.0613
-3.59121
-68.2689
70.0814
-1.81255
-67.9915
69.3508
-1.35928
-57.8098
0.181933
-59.289
3.37699
-66.361
68.0054
-1.64443
-59.2874
3.37888
-68.2595
69.9482
-1.68876
70.6887
-68.5757
-2.11303
-66.3855
68.0117
-1.62617
90.2507
51.0337
224.759
-275.793
-120.28
129.117
-8.83764
162.389
11.7617
-174.151
17.6452
366.294
-260.674
211.074
-62.9262
-148.147
181.291
138.335
-32.3597
-213.703
246.062
-11.2243
-297.037
-78.3997
-51.903
219.007
-1.65155
-35.5184
-1.33752
114.59
-28.4576
-23.7579
52.2155
323.929
134.487
-458.416
-337.216
99.2763
-40.8135
13.7946
-25.316
167.776
-142.46
244.153
-3.91415
39.167
-35.2529
6.25091
44.0961
-50.347
-241.311
68.6824
75.1941
15.4157
-26.9234
-95.6308
122.554
-144.27
30.4771
-386.86
244.732
142.128
245.35
-54.847
82.9356
-409.575
326.64
77.9728
-334.541
39.3769
-11.0757
230.178
-210.56
-166.654
34.5343
15.9006
-15.9006
80.5519
-105.868
245.842
27.0589
33.397
239.722
-273.119
188.86
-220.246
116.58
3.87927
322.064
-255.778
0.701328
-15.8912
0.763118
-181.701
-98.3328
223.392
-256.084
-6.10807
-13.0887
19.1968
-2.89749
56.6693
-53.7718
-1.01464
-16.1633
-356.004
375.914
-25.5015
78.3993
6.14232
-18.4556
12.3133
-0.228365
-26.8097
27.038
-260.736
-16.4855
277.222
2.23067
10.6841
-12.9148
73.2718
384.999
-103.32
304.153
-200.833
215.597
-318.917
27.3634
-25.1328
225.687
-237.801
-61.5317
405.603
-344.071
-90.6896
129.45
-38.7601
48.3035
-48.5319
35.2194
-32.3852
-2.83419
-52.5014
14.2204
38.281
-13.4318
88.6259
-72.6817
-10.2062
82.8879
-66.0949
-89.2538
155.349
22.5555
-57.137
-298.882
381.817
348.633
-93.5927
-255.04
-192.751
-247.461
-108.712
-29.9334
320.912
-32.9576
-287.955
-430.075
16.0698
-162.326
-91.4481
221.598
-130.15
216.703
-244.019
27.3155
-6.47838
-280.535
287.013
46.7003
39.8944
-86.5947
26.0637
-167.935
56.7759
-60.69
-147.913
80.7269
-0.901526
-207.759
5.33485
43.0172
-48.3521
135.466
-92.5411
-47.755
45.2142
2.54084
-47.7548
45.1073
2.64753
47.6613
-45.089
-2.57231
-47.7614
45.1087
2.65262
-57.3957
42.6082
14.7875
-47.7277
45.2012
2.52643
-47.7291
45.2028
2.52625
-1.91072
15.4571
-13.5464
-32.7277
33.6011
-111.983
193.916
-81.9324
-77.1999
38.4035
187.253
-210.534
17.3146
294.172
-311.487
-37.9945
12.6934
69.7142
-37.8685
271.907
-249.14
-22.767
319.114
-380.646
-119.158
-196.868
316.026
163.391
180.784
30.2899
-26.0961
34.3425
307.372
-296.283
250.283
-33.5801
-27.3928
359.627
118.234
20.1114
-28.833
-8.37457
37.2076
175.252
-185.456
-51.559
-19.2529
-25.3709
273.169
-247.798
-130.602
410.995
-256.643
-192.985
73.4715
119.513
128.127
-240.11
-210.257
24.1722
-0.48089
-38.147
-155.453
193.6
16.4293
99.9056
-116.335
-16.5112
6.293
10.2182
129.192
130.165
130.163
129.184
131.113
129.179
10.5439
-191.613
167.342
24.2712
227.737
154.725
144.967
79.1062
-32.4059
-133.282
67.1872
322.859
-289.462
338.525
-146.745
328.036
478.279
-354.515
-123.764
0.0646446
-67.6501
-203.528
33.8373
1.38213
180.546
-189.545
111.908
-195.244
-112.45
114.024
-1.57468
311.495
-107.771
-203.725
345.312
8.99981
-354.312
-160.855
2.74216
-96.6852
71.1837
312.636
98.8795
187.647
18.3949
-18.3949
289.194
-95.8018
-195.794
201.526
-52.4908
-164.386
176.148
-288.141
11.9384
276.203
-0.295321
-16.2159
74.3399
-10.5265
-95.1892
-52.7239
14.9864
-173.937
158.95
73.4327
-22.0547
300.613
-285.294
-15.3193
-247.992
-266.515
17.8595
248.655
20.2854
-281.022
-300.318
372.442
-72.1245
-282.766
6.25278
-65.2119
365.157
321.152
-270.119
-457.064
374.83
82.2335
-189.353
239.978
-50.6247
201.125
99.8822
-161.173
177.243
21.8867
363.097
-384.983
172.359
-77.2463
-95.1132
9.03383
0.808988
-16.3584
22.5008
271.517
39.9788
-13.9952
43.4925
-29.4973
-36.7896
30.6816
-159.796
176.225
-10.8825
-9.38839
20.2709
-32.2286
-20.2727
2.38409
-228.022
225.637
-167.262
55.875
-14.6994
13.1557
-19.8846
6.72889
38.7201
-7.0968
-31.6233
62.9434
-15.212
-3.51
348.822
198.38
-147.048
58.4556
-12.714
-155.635
-231.225
304.125
76.3666
71.1949
-338.645
267.45
374.032
-385.478
120.778
-34.3448
-86.4332
288.411
-304.896
-61.7709
-0.118668
61.8895
-193.749
148.448
45.3008
31.581
-1.4626
-259.682
227.322
284.04
16.573
-419.087
336.702
82.3847
17.3353
-3.3121
369.606
-9.44061
-257.074
292.471
38.3213
-132.259
-167.687
299.947
-110.107
434.036
-260.232
62.0696
-9.07423
-176.225
-39.2697
81.9788
-18.4222
-142.257
-135.957
20.1479
115.809
-28.2135
1.24901
23.9712
45.743
117.076
154.44
7.69513
46.9368
-14.9981
-31.9386
121.751
-146.311
24.5595
17.0586
-1.37551
-168.218
-89.5475
164.512
-74.9645
-198.499
-124.22
322.718
59.0674
-0.32206
185.193
-52.984
251.319
-302.656
51.3368
-188.871
-268.192
-4.45767
4.43985
4.48482
4.44077
4.48605
4.4976
369.37
-301.757
42.5753
-8.65075
425.471
-369.843
127.032
-137.367
10.3351
49.2357
259.681
-34.9215
-309.135
252.508
-250.124
6.33491
-252.878
227.602
429.168
-265.932
283.792
168.241
-66.3494
-101.891
120.813
12.6472
-133.46
31.9572
-34.8547
-259.904
10.7647
174.908
1.81593
10.419
-3.64893
-6.77004
262.504
-8.78257
49.9417
-363.351
14.0536
-24.4201
-11.4492
35.8693
-293.574
365.53
-71.9558
4.68627
-103.685
50.2024
287.331
-337.533
-11.4537
-427.205
26.5061
-214.592
25.2394
303.919
-65.8176
-6.86406
3.7926
11.92
-15.7126
390.994
-369.107
-173.513
82.9018
90.6108
-41.0627
29.2493
11.8133
13.7009
-126.151
-366.511
118.634
247.877
276.31
-45.7544
-45.8258
-45.756
-44.5965
-45.8644
-45.866
-48.5281
318.547
-270.019
-87.7039
-63.5049
-137.614
121.171
-3.39726
30.7607
13.9868
276.486
-325.014
-17.551
-34.942
29.4127
5.52934
-242.149
-17.7553
-42.4348
-70.1214
45.9171
-159.386
18.3714
141.015
-22.2948
249.591
-227.296
393.758
-307.409
-86.3496
-17.8804
-0.0864101
-68.7894
54.7942
-171.455
230.854
-59.3984
-296.575
3.00066
-123.039
123.039
121.751
49.3714
12.6982
287.512
-148.204
40.5752
-55.3426
48.2458
-242.368
439.084
-394.039
-45.0446
16.2423
24.8484
-32.7278
17.9144
-168.341
45.8322
-485.267
375.16
-26.8046
-262.017
288.822
-151.035
121.535
29.5004
-307.455
188.296
38.1744
-46.2095
8.03512
-39.6435
290.962
114.488
-127.92
14.0129
38.771
-52.784
-53.9714
45.5968
-25.7873
32.0382
-73.7777
50.4973
-233.307
304.502
275.591
-339.738
64.147
36.7036
10.2332
161.513
249.482
-62.9292
47.9311
24.1562
19.6119
-43.7681
-0.20532
-124.589
33.8998
-98.5785
-26.0109
-101.058
386.521
-336.318
-93.8881
316.137
-97.3985
-94.2148
63.0371
-18.9411
-39.2148
-127.439
-232.313
371.616
5.66173
7.67969
39.845
-47.5247
-388.704
402.79
6.50882
35.2906
-41.7995
-262.781
123.559
139.222
302.291
-57.5583
-47.1971
-10.5718
-47.1969
-10.5728
-46.26
-11.5498
-47.3978
-18.9877
-47.3962
-18.9647
-47.3988
-18.9196
38.8613
-2.98488
-28.4812
339.941
-64.3499
127.783
-27.8773
-348.29
283.368
-181.241
-208.008
81.8289
-144.755
424.102
-12.4194
-7.46518
-15.2322
-25.8305
-193.749
20.4273
297.065
33.9071
-132.486
6.55353
-32.3408
-17.7148
24.4436
-7.76306
14.3166
328.656
-127.531
-49.683
161.591
-414.042
58.0383
-274.832
228.737
260.316
12.8526
79.5413
-14.6101
-222.656
-143.855
50.7436
-16.9744
-33.7692
14.8717
-23.5541
8.68236
1.24385
-19.4786
10.8525
-55.122
207.57
-152.448
23.9925
30.5487
-54.5412
-123.401
135.2
-11.799
11.5592
10.9415
-353.933
-44.4771
-150.345
-89.1049
217.694
-205.435
27.1156
-11.4343
-15.6813
25.9852
112.991
59.3689
107.78
112.304
-344.617
198.161
-253.283
-2.45983
28.8173
-26.3574
-215.681
-18.5807
234.261
28.752
-22.2432
35.5735
-28.219
-8.07893
23.1895
-0.0161941
10.4304
-10.4142
239.642
-279.285
-160.411
32.9718
33.6649
-141.789
333.288
-191.498
59.1097
-9.73829
108.432
-263.643
155.211
-61.9227
81.7893
-19.8666
310.563
38.0703
43.6044
-12.3403
41.753
-1.52071
35.1176
227.386
-8.5809
-205.105
213.686
-213.891
21.4208
192.47
227.37
12.3513
58.2465
-19.4755
-146.649
-12.7372
199.775
-200.676
0.0392595
114.449
-20.0837
45.732
-7.55765
347.69
37.6102
-385.3
135.668
-78.9023
-56.7652
64.9377
-8.2684
10.6414
-11.9963
1.35491
-17.8354
74.6113
-155.564
-37.4208
11.3225
-23.7419
32.897
17.3641
-50.261
-41.2163
-166.529
207.746
-21.7086
44.1283
-22.4197
-54.1477
-10.8638
-211.245
176.685
34.5601
-321.829
124.961
-136.13
140.038
-3.90801
-189.671
-4.07797
10.3049
-122.504
-7.20818
40.8092
42.6511
-3.48406
108.536
-93.5496
57.0676
-8.76409
55.772
-39.1566
-16.6154
191.079
10.4268
-106.85
52.3084
-9.29115
17.7272
51.4912
-11.6462
-68.7379
11.2328
286.173
-60.4861
11.2088
9.06208
-34.5825
-15.7645
45.0809
-9.79026
150.106
-151.428
1.32198
-31.196
13.4813
10.7791
225.317
-36.4571
23.5754
-21.8045
-1.77092
-43.2722
-7.41037
-103.179
-241.048
344.228
17.6186
266.066
-208.254
240.452
-268.934
-0.462429
10.8285
-10.3661
-10.3503
247.543
-17.3645
-195.052
-25.1938
-67.9729
-28.7123
-9.90258
-196.683
206.585
-5.76312
78.8281
36.777
12.7283
-92.0075
-121.311
213.319
-0.0891572
15.5463
-9.99911
21.5583
-19.4806
78.5802
214.975
-191.652
-46.1493
52.3109
-87.1068
190.724
-9.94025
-27.9181
-11.8602
39.7783
-52.5974
-8.84409
-335.674
-69.3957
405.07
-32.4767
269.465
-236.989
-23.9439
-13.8474
37.7913
153.384
-351.882
-30.7824
-7.91955
38.7019
-26.7379
-12.4888
39.2267
-109.391
36.8828
-45.6184
-8.15343
241.696
186.287
-288.968
0.826404
22.649
-156.662
134.013
-13.3906
-2.51005
145.577
-137.317
167.593
40.3359
-207.929
-253.372
-137.03
-41.3285
-21.6007
-24.775
0.35497
-105.595
21.3097
16.8004
-38.1101
-54.0931
293.735
4.96194
-40.0953
-8.43662
188.233
-196.814
10.0639
-11.8243
1.76043
-388.493
-0.611599
-0.647124
0.743233
-0.647252
-1.98827
-0.663138
-0.663189
-191.341
-3.39884
-166.539
125.323
-46.1765
294.832
327.14
-50.6545
151.502
15.7531
-167.255
136.062
-74.9454
319.565
-25.3929
-45.1002
-10.2424
97.3186
-38.3749
-107.936
219.89
-15.0604
-192.698
-3.09225
-211.5
317.932
-10.5601
4.27049
33.6654
-39.3423
-9.00979
7.22686
6.54401
7.22418
6.54791
6.54713
7.21451
-290.478
-34.5357
-275.421
-2.11498
277.536
-3.95102
14.5924
11.4317
-286.264
179.749
-317.068
137.318
-185.139
20.753
31.4588
176.554
-1.302
-2.52729
-116.415
118.942
-291.127
-20.3595
53.8063
-20.9094
-177.876
177.626
0.250102
-44.7758
-10.5405
273.722
-165.291
13.6386
-37.5825
-210.598
0.0634417
128.359
26.3375
103.112
-47.9127
-5.39297
-40.7539
-13.2175
-13.7761
-60.2338
-113.279
-39.9589
-19.6656
-292.251
-4.03252
-18.1141
168.607
-154.129
-14.4781
326.291
-3.43289
-12.0442
-50.3269
-19.7945
-43.9117
-16.7783
-16.4099
21.8967
60.3069
-12.0612
-242.092
-150.051
-41.711
60.051
-18.3401
-57.4727
-11.3166
46.4235
159.11
-205.533
109.423
179.771
-34.3993
7.6615
40.2294
158.15
12.6089
29.9664
314.962
-386.918
9.47018
-35.1909
7.27285
-6.71541
-28.803
361.196
185.964
131.543
14.0341
-5.08402
-21.5946
26.6787
-68.1734
27.6664
54.1998
-17.4228
113.413
108.185
43.6053
42.2002
-85.8055
5.73863
-288.654
-0.807827
321.13
0.0217838
-195.243
5.69757
20.6952
-45.103
33.6687
-82.609
-6.30075
88.9097
-180.156
6.21962
-12.1897
27.0614
153.117
5.83298
185.467
-193.544
8.07648
-51.8296
-172.37
11.1975
190.683
-150.454
7.80546
169.437
-126.711
169.386
21.3381
29.0867
129.632
-103.287
-197.897
132.631
65.266
11.1427
-15.0903
84.2831
-69.1928
154.22
-78.9799
93.2003
9.58836
-266.663
-16.1611
-16.1797
59.4147
316.499
240.675
157.047
10.8053
-136.13
6.08435
160.176
-173.236
13.0603
-8.81794
-26.9782
35.7961
-5.61856
-9.76985
0.647272
-123.401
140.038
294.401
-5.99004
-130.011
-130.021
-130.013
130.033
-129.977
-129.979
-118.957
-280.767
-145.936
219.407
215.131
-237.426
52.952
115.289
22.3023
-292.286
298.618
-6.33156
127.896
205.795
-333.691
34.0408
8.92362
-20.8068
-1.80085
254.309
9.72524
-11.5116
1.78635
98.3619
141.054
19.8587
185.844
-205.702
-0.698402
-12.4259
39.7401
-34.1426
-5.59751
-54.4535
-19.3242
271.336
55.8044
-30.2949
-79.0959
359.543
-115.458
-244.085
-389.114
360.356
28.7576
67.6461
-29.3652
5.23852
-43.9222
118.616
-74.6934
-286.597
-50.9369
85.2935
10.9331
-189.671
363.029
-432.424
-14.3041
15.1115
-0.807378
12.1945
155.581
-16.1758
239.909
-262.676
13.8164
216.263
-334.02
117.756
97.2085
-141.131
-273.986
8.05433
-4.52546
-22.2988
26.8242
-31.2356
48.8542
-26.6542
12.1245
14.5297
272.391
11.4004
-124.183
-182.315
306.498
16.4562
-11.2176
108.778
-238.928
-24.5681
264.398
6.87035
-271.268
-238.057
299.421
-61.3647
-123.968
303.718
9.1859
-12.471
4.70796
5.31117
187.8
-334.545
36.4969
-126.044
-1.78953
190.94
-189.151
31.9548
200.541
-232.496
-265.477
-192.939
149.613
-36.8582
248.275
-223.036
-1.07333
25.5061
47.9266
-286.134
-127.37
-199.159
326.529
395.142
3.70471
-398.846
-396.381
420.75
-193.442
321.338
-145.835
-217.515
148.448
243.102
-134.323
4.86188
12.1608
108.374
-18.8117
29.6642
181.325
12.2744
42.2597
28.9377
-41.9368
-155.961
-164.821
-20.5408
51.0895
-25.1192
299.444
5.66227
-141.293
65.8455
-23.5858
7.44198
164.869
-239.821
74.9519
-10.3746
296.038
-116.268
-7.39576
-5.07526
-125.674
-12.6286
-347.777
386.401
-38.6245
404.653
-346.983
-57.6704
415.505
13.6633
-143.622
125.993
17.6291
-43.1618
3.02531
-153.221
49.6864
-65.4509
-22.5648
-159.796
-0.398886
-35.6435
0.707444
48.5198
-65.4942
19.9316
-368.484
179.324
-389.581
194.176
-228.619
34.4432
130.033
-130.013
-129.977
-129.979
-118.957
-130.021
-130.011
118.83
-150.701
-92.8668
50.2752
222.858
-301.572
78.714
-70.6913
51.7503
13.3237
208.836
-222.16
224
-204.141
304.81
100.26
428.78
10.9129
52.0304
-229.839
-13.119
24.0605
-244.36
0.00745197
-38.2916
12.4611
7.82304
-26.9677
-81.8629
61.0561
-109.715
22.4803
1.88095
9.56981
-11.4508
16.8742
335.24
-118.977
8.78491
49.6707
-20.6487
235.397
34.8414
-270.239
-233.889
6.59276
219.173
16.2431
58.0968
-178.228
82.4044
95.8234
54.1039
-75.7046
111.812
128.166
155.623
111.05
-128.601
381.977
-206.225
-5.27534
101.961
-229.312
371.44
-317.625
-314.136
131.821
-332.518
390.557
396.553
-337.138
-128.225
-79.1495
87.2691
-107.136
11.6952
-81.9076
351.5
-269.593
221.466
-218.373
-3.09286
-70.4834
9.84293
21.6711
-31.514
134.371
-168.399
34.0278
-19.8736
130.159
153.882
-292.15
-399.033
317.125
-73.2263
53.5608
19.2811
-327.94
308.659
-95.6028
-14.6798
390.101
-73.9644
10.7728
24.0482
-34.821
-71.8175
52.3421
-41.6088
235.785
119.164
-6.6477
-194.029
-68.0487
-110.179
-76.6344
56.84
-131.384
276.211
-40.8134
270.509
-30.6
142.511
211.606
149.496
-151.286
-127.787
-134.994
-293.657
64.3441
81.5577
-96.1678
63.1006
306.823
-369.923
164.182
71.8106
-235.993
287.798
-64.9399
29.0742
28.4324
-111.041
32.3138
-277.404
259.929
21.4854
-10.7126
190.94
-142.258
241.137
-74.1931
55.8531
-152.798
-12.7539
3.6535
217.812
-253.244
34.76
218.484
-70.607
53.9916
318.414
-12.8292
-305.585
80.49
10.4965
95.3609
-105.857
-160.662
14.013
149.472
178.564
-74.9428
58.1645
-24.6288
97.5569
108.59
-206.147
242.051
34.1601
-36.1343
81.5312
-92.395
301.151
-69.2779
56.0604
147.544
34.5982
-182.142
-242.562
-74.0451
60.269
-27.932
-42.0861
70.0181
128.203
-290.69
309.971
-67.3587
55.7125
-113.674
118.361
17.0914
-7.02754
78.1039
-87.8422
57.7139
-67.9562
-224.076
-121.612
92.9001
-74.3867
62.3255
-164.664
-69.4032
58.8626
57.8497
-67.1408
-62.5288
52.7385
-73.4159
-64.1979
-12.5121
21.698
-93.8721
78.6357
177.823
148.936
-326.759
-80.5928
72.3244
54.8945
244.527
-64.6905
55.6807
-66.0588
57.6222
333.396
-145.596
69.9696
-78.123
-212.653
-21.2361
-15.8537
107.613
-67.7191
-13.648
-197.519
164.663
32.856
338.07
-388.505
-143.664
68.0566
-77.1308
-14.0454
318.414
17.4237
-277.594
-80.2552
71.4111
118.948
-70.0554
61.2913
-23.6331
69.5502
-65.8654
58.3078
-42.7991
284.85
-79.9834
57.9288
387.461
-35.4823
231.752
-196.27
159.893
106.808
-232.136
125.328
-85.4156
57.4836
-67.8534
60.4431
-21.6108
275.545
96.8978
43.7445
-9.40196
149.3
-9.26109
33.1667
-78.8137
55.1806
216.173
103.057
-219.108
180.733
38.3753
-157.302
-86.5018
-92.5288
174.933
177.437
47.8859
-225.322
12.3995
-79.5375
60.2133
-242.7
-159.745
-112.4
-61.9882
174.388
256.364
73.4898
-15.101
-58.3889
8.089
-93.5073
111.153
202.375
-181.037
-178.972
199.725
-313.898
158.264
-80.3518
62.5164
118.723
124.378
-49.9753
249.333
-1.05769
245.738
-180.378
201.073
-27.2778
220.71
-328.481
-242.223
200.615
-219.167
-3.86917
-131.832
149.461
8.44574
-171.253
-303.519
193.38
143.869
-236.067
92.1976
-76.8222
61.6102
-183.053
195.328
31.4755
204.309
215.398
380.979
-139.061
261.765
-261.765
308.854
-144.307
106.438
29.0762
87.6079
-132.119
287.33
-72.0009
59.2869
383.219
-365.795
45.6299
-257.86
212.23
-249.939
216.114
33.8248
204.122
-307.807
-180.178
193.238
-134.398
-113.715
248.113
22.3746
51.1153
-7.56299
112.543
-70.3429
228.123
-214.799
-54.445
-80.9089
69.5922
19.1858
26.6975
-45.8833
-229.264
204.07
43.5418
-256.18
212.638
-259.656
229.056
99.3584
-149.3
118.234
197.964
-7.02349
-18.2459
-49.7456
-17.8137
-50.4552
-20.6237
-38.6653
19.8381
39.2231
-20.6541
-38.6333
-18.3794
-49.88
-7.46387
-38.1678
-18.5746
-50.001
33.1786
36.7696
33.3031
36.7783
16.3818
51.6236
16.5312
51.4736
17.3238
52.027
16.3193
51.6924
-82.5533
72.0269
201.902
-219.267
-22.7612
-206.254
202.856
338.769
-159.445
51.4366
113.075
-273.711
280.581
41.1829
-270.68
229.497
-203.526
201.875
-251.105
214.648
-64.585
22.4989
-178.136
188.942
-181.93
193.128
-179.604
187.68
212.465
-231.945
-64.7869
188.371
-179.926
112.884
222.357
-184.969
191.189
-180.949
188.754
197.422
-193.151
-293.818
-310.521
20.4436
-10.6007
-77.2506
305.488
-167.153
-255.358
225.925
29.4333
-192.594
222.071
-29.4775
-280.834
240.021
-212.67
194.556
209.254
-217.607
194.132
-193.787
-265.321
198.204
-198.141
127.198
-60.7938
242.738
-285.537
-208.033
200.997
196.544
-187.074
-143.35
28.8179
246.607
-275.082
283.136
-195.95
196.2
191.116
-185.418
39.9112
244.939
-194.053
192.751
-429.779
323.441
-186.181
192.014
217.024
-203.63
-13.3939
14.2581
-4.53282
194.561
-236.414
41.8533
-293.156
47.4328
245.723
179.037
-166.175
-89.1829
-64.31
194.334
45.3047
21.9183
45.7279
315.896
2.51786
-339.367
313.975
-32.5672
10.1475
-283.08
225.151
205.055
21.7618
-226.816
29.1234
13.5276
100.428
311.582
-294.089
-55.4757
-309.861
306.428
-296.662
302.746
-43.9497
142.995
-24.7603
312.861
-333.221
140.824
200.865
240.092
-440.957
178.084
353.836
296.113
-306.673
-10.9524
-222.721
-30.5223
-354.883
320.347
303.046
-303.854
-115.849
336.559
2.33921
248.361
-250.7
-20.1145
-227.878
-33.8756
327.267
-293.391
-52.5712
25.6035
-355.939
305.284
-299.441
295.408
-278.843
290.244
-291.05
301.983
315.896
-58.0425
-286.622
292.875
-50.4184
-77.3186
-15.7185
27.4137
181.589
-11.6279
-181.07
-20.2184
-312.489
12.8276
299.661
-294.95
299.002
-299.595
299.617
-212.471
-70.6095
-45.5162
197.964
-262.118
215.969
-47.9364
39.1185
430.476
-48.4991
-320.412
314.08
224.219
-304.691
298.701
-158.763
286.889
-363.09
314.54
48.5498
48.0101
-298.269
250.259
-303.075
290.649
-299.872
54.484
245.388
-209.577
4.47223
4.54647
-1.06942
12.9894
205.76
-175.471
-97.9621
327.02
-104.664
-305.585
-139.357
378.981
-244.978
308.627
-342.502
339.206
-161.384
-280.429
16.7618
-17.2803
-25.1545
-293.203
228.893
197.057
351.493
-152.955
292.372
92.1074
133.238
-225.346
-91.7422
-253.127
344.869
51.9459
275.321
224.156
-175.459
-20.4202
195.879
48.7571
280.021
-267.168
79.9884
4.2947
192.962
186.019
126.347
55.9354
-177.247
22.7061
51.9051
-15.4276
0.611582
-13.2429
-286.404
299.647
-31.676
-47.4636
316.564
-155.051
293.734
-76.3069
-190.298
-282.384
282.384
260.768
-354.36
333.913
-50.9043
-227.581
-162.001
62.5554
128.128
279.48
-155.921
-268.963
-52.8655
-221.556
-138.179
-365.263
271.375
-273.788
213.302
-294.203
243.785
49.1088
167.623
-357.921
130.401
-34.6775
-95.7235
40.5219
232.049
-67.867
-33.358
-172.175
2.67336
292.687
-295.36
-157.915
-351.489
403.435
-153.512
-284.16
209.214
241.62
-97.7509
-68.0519
75.4449
-110.739
363.166
-123.074
-295.368
199.566
-252.758
185.108
10.2532
-136.2
125.947
16.563
-102.407
-245.446
217.024
331.001
-293.471
47.2684
-21.005
-201.16
20.974
-85.1358
64.1618
-107.71
317.697
-368.601
-146.821
-81.8816
-346.13
208.55
308.966
-212.872
-16.9311
-27.759
52.1275
-100.888
144.447
-93.0105
298.95
-342.012
-24.1176
310.183
-347.423
-3.31392
-4.83911
-32.816
-23.891
307.229
-62.7023
-24.2924
-42.2615
123.803
-81.5419
169.741
193.425
22.3455
-26.4227
-224.442
251.045
-126.667
-341.018
-24.2766
-41.541
211.171
159.75
-23.9543
-52.7295
-12.7647
198.917
161.861
-63.2572
-47.0561
-58.63
304.018
-22.0656
-191.095
231.431
24.7521
119.695
263.92
-263.92
-21.9737
-137.892
13.7994
0.793006
-202.983
232.921
253.063
-176.863
375.78
-20.1097
-20.9512
-245.714
245.714
227.774
-221.219
-6.55491
256.632
32.3029
-288.935
-23.6845
-136.395
-17.7347
16.5452
214.37
-172.661
111.626
188.2
227.774
-178.477
274.524
-17.8923
6.43012
-52.8169
214.651
-161.834
-52.0176
302.276
14.5609
-3.83694
-17.3728
-17.9847
-20.1413
-18.1503
-192.542
380.742
-65.8396
374.499
-22.1872
-270.278
83.9392
-91.2354
248.599
13.1844
-179.247
166.063
88.5132
176.375
-207.957
262.227
-228.186
37.598
13.4915
-228.851
-170.906
-173.551
344.457
-16.5532
-15.3283
-34.3434
-13.6906
-316.759
54.0685
262.691
-203.63
-303.952
349.426
-45.4744
-13.5667
14.6578
-1.09109
232.349
-324.092
-46.4544
241.015
98.5583
-321.28
232.36
4.44442
52.0995
-56.5439
21.4428
-172.846
-258.714
261.054
6.34779
268.176
-360.561
214.5
-314.605
100.105
-12.8581
-25.5779
339.413
-56.045
-87.8946
132.641
-44.7468
-16.6728
-35.7643
54.9501
-98.4164
-227.184
325.6
-10.1066
-11.9519
261.839
31.8944
-304.869
0.917489
-13.1383
-18.7995
18.4006
16.4666
-11.4601
118.848
74.5318
-262.149
-70.8356
332.985
252.001
-15.8765
-121.441
42.0424
-320.189
53.1885
267.001
214.37
-37.5476
6.31194
-199.865
-295.949
278.056
-240.433
-17.7455
258.179
-19.8463
-302.29
240.925
51.9374
263.334
-315.272
225.793
-289.05
260.257
246.208
-308.91
-18.5833
27.4537
-115.348
-270.278
-14.6366
23.4026
46.9552
-85.7154
-11.2646
-177.873
-163.161
15.5215
-221.219
19.347
-2.68662
79.2887
-76.6021
-12.4332
45.736
256.54
-44.7467
103.762
-59.0157
-17.1385
-273.192
290.331
8.45372
214.033
135.393
79.746
-306.93
-166.624
140.306
-7.93081
-16.8317
18.0201
24.7237
-128.72
220.918
-26.2061
39.6976
215.661
-283.713
11.3953
-46.4012
35.0059
6.31014
148.942
307.073
-55.0726
-13.6094
-256.409
-342.822
238.158
-258.745
310.682
15.15
61.4852
-65.4941
311.702
268.577
5.49947
-18.7678
-19.7856
229.103
-353.323
-108.747
48.3287
-5.66625
-7.76868
260.465
-256.774
243.531
-84.4101
-134.192
264.35
-9.54565
-11.1422
-67.7526
281.786
265.207
155.356
-29.4091
325.309
-61.9747
-109.592
339.179
84.2143
-61.8398
163.919
-88.9851
-48.3824
-76.4972
307.575
-0.0460554
-67.9846
62.8199
-16.6877
-270.549
-82.6028
353.152
387.326
266.713
251.425
-316.919
-62.4355
-257.754
12.7571
-253.19
-1.08118
225.704
-344.681
2.78191
-103.433
11.3075
207.337
-277.946
-205.657
67.8463
-11.2392
-73.3889
319.271
316
6.67355
-22.3548
-126.803
108.558
-125.881
108.068
-141.371
120.747
-110.272
-108.558
-108.068
-126.601
108.221
-141.4
120.746
-108.221
-110.219
-141.121
133.657
-121.282
-126.511
107.936
-110.191
197.388
-273.695
59.6425
-83.2282
64.1967
-0.562467
251.786
-328.283
4.29259
-303.472
187.205
11.3471
183.331
-265.212
60.9326
250.769
10.235
-324.593
139.505
15.8513
12.1789
9.33802
-326.498
309.532
8.82885
233.052
-361.276
-254.459
-60.8127
237.221
-32.1669
2.71095
-301.632
4.16285
297.469
-42.8543
269.647
-354.057
271.615
-171.57
22.2876
149.283
39.756
3.62171
-282.118
5.99708
15.4883
1.82477
19.3862
86.6779
24.6984
63.2364
-96.3468
3.80756
-37.5768
206.872
-254.381
5.00778
7.03271
271.697
0.339255
-76.3763
-220.415
-4.86634
10.8634
221.01
-360.367
-271.615
1.53833
9.40135
2.75691
4.04182
182.22
124.278
201.417
48.0284
205.526
-307.594
231.217
-80.5583
6.59546
172.83
-262.013
196.97
-342.565
103.232
-323.08
325.862
-90.3643
-4.19502
261.233
-347.583
-171.139
-220.311
224.783
166.035
-336.941
-4.07234
-339.245
-70.6685
-61.0755
-6.10458
92.3821
-276.051
183.669
0.502243
-117.118
-254.298
156.547
102.339
47.274
-257.737
310.926
-4.37988
312.303
-61.5337
33.1641
-15.4369
5.053
-14.0423
-21.711
-239.121
-3.19863
-253.156
-1.94041
2.20894
21.6543
3.15105
-6.8154
-4.23649
172.661
120.717
-27.362
-98.735
121.08
-5.17704
-37.5552
277.188
-297.885
20.6969
-47.035
-297.529
-4.10309
-6.80176
-252.367
6.9878
-72.3147
-6.49426
-4.5258
11.0201
-0.528991
42.6731
-315.865
16.1665
-16.1665
-22.6917
101.565
-302.398
-264.512
137.845
384.885
46.8884
-13.2197
-37.1079
-111.629
189.212
-342.167
-16.6101
25.9427
95.7944
-11.2651
-235.488
287.482
-51.9935
251.49
123.688
-258.011
111.537
-85.1998
-269.598
239.075
166.698
64.7328
-68.1702
39.4676
239.121
19.7991
-256.279
236.48
112.823
17.5627
-47.47
140.692
231.578
-83.7147
-9.15217
253.156
253.528
-208.817
-16.4211
-279.528
237.173
-305.157
121.245
-268.065
-113.991
326.445
-73.5294
-35.5916
-272.079
-201.491
-6.84618
6.84618
225.172
-226.229
-55.6033
360.887
-53.3716
-105.466
-65.1111
81.996
35.5713
-117.567
118.387
-12.6723
-158.555
46.1547
36.4393
-132.042
-161.149
184.062
-276.603
17.449
5.26294
-5.26294
84.5729
39.2305
171.805
-185.199
186.193
-345.637
136.766
-144.639
34.9233
-210.696
36.7591
-115.855
8.52272
-8.52272
202.526
-376.078
4.00152
-4.00152
-163.397
13.9493
-57.7626
40.23
84.8299
-26.9012
2.89856
95.7652
-98.6638
120.031
-288.826
-4.4097
4.4097
-6.33137
33.0289
123.692
-4.03319
4.03319
183.523
-344.907
89.3759
54.9257
-5.29964
5.29964
-6.56515
283.754
317.307
-274.634
-19.0985
11.0033
-274.333
4.3076
-4.3076
5.11946
-5.11946
-5.08901
5.08901
4.59831
-4.59831
-0.995779
-4.76809
4.76809
-4.11586
4.11586
-4.60292
4.60292
117.469
-38.833
-157.38
25.5484
81.5087
-26.3281
15.4012
-129.076
184.258
-346.259
12.7618
-227.561
238.283
-356.148
-5.05481
5.05481
3.81414
-3.81414
85.7781
-28.2945
269.666
-5.27063
-283.54
288.811
-4.51931
4.51931
128.3
110.345
84.5265
31.8148
-116.341
-57.8185
-230.991
227.122
-19.9918
-153.353
136.047
-51.4741
3.74178
-3.74178
84.7716
-24.5583
101.501
-262.65
4.50643
-4.50643
60.3592
-19.2278
30.6231
-3.4623
3.4623
4.5562
-4.5562
4.33995
189.583
35.4469
-225.03
3.62188
-3.62188
3.73045
-70.8582
-12.0339
-7.06468
-73.2806
-4.47588
4.47588
131.413
-4.38672
4.38672
-38.5585
120.554
-5.69631
5.69631
0.554974
13.7616
34.2214
-101.94
-5.43904
5.43904
-86.1534
-9.83512
9.83512
-103.907
-4.38951
4.38951
10.4135
-258.211
84.5735
-22.0571
-17.3983
34.1601
346.014
9.85018
-237.728
-22.4362
25.44
-3.0038
78.5881
-240.422
-5.11801
5.11801
-27.8724
4.21061
-4.21061
-5.1641
5.1641
1.27356
-11.0434
-118.805
74.058
194.845
-23.0399
-5.17155
5.17155
-10.6391
1.22887
-31.8463
116.373
152.335
-235.883
222.274
290.606
-12.5499
101.586
-62.1183
-2.92396
2.92396
-78.7269
50.8496
-174.486
-296.817
313.462
4.076
-4.076
55.3225
46.2634
-3.96273
3.96273
-158.294
192.893
-112.945
187.477
-127.41
28.6754
113.551
42.0722
-307.053
290.632
-271.094
3.92617
-4.04996
4.04996
-268.446
-45.5105
148.743
90.8762
-29.2659
177.078
-39.4079
-164.1
27.6747
136.425
-11.8299
-212.612
4.53825
-246.012
241.474
4.88569
-4.88569
1.41151
-1.41151
-7.06646
275.243
5.38772
-5.38772
155.674
-83.3496
117.465
-34.1159
-18.0117
-3.81633
21.8281
-5.38357
5.38357
-7.83093
-6.62742
6.62742
-149.011
297.947
-121.841
27.9078
93.9328
-6.14653
6.14653
-155.975
27.175
-275.133
247.958
-7.62267
7.62267
65.5247
245.401
260.681
0.37282
4.86098
230.651
-45.5427
-4.03457
4.03457
-10.3157
-296.737
-242.423
58.4755
73.0249
-13.738
-7.64366
7.64366
-321.125
-17.204
55.9171
269.392
-1.824
1.824
301.857
-308.201
190.65
5.27889
-5.27889
-26.0172
-226.453
-180.506
32.3585
-121.171
18.3643
298.943
308.354
-144.434
-5.67615
5.67615
-13.4066
6.46737
-6.46737
-200.618
25.1474
281.047
-58.7254
-11.2911
-263.042
-120.178
-63.4824
-16.3584
-2.0745
2.0745
-2.26302
16.0624
9.53213
-262.722
-297.715
14.9788
-14.9788
-161.379
-302.087
-1.48833
1.48833
198.795
-329.768
-72.3068
-135.65
106.438
-77.7773
1.17521
-1.06513
1.06513
82.8291
-13.2369
-279.351
0.892495
0.859812
-0.859812
-140.657
35.0378
261.233
278.341
-278.341
-175.689
-350.426
-21.3902
72.5055
19.4332
-20.0462
-2.12321
2.12321
165.452
159.635
-325.088
168.341
-53.1492
146.049
-230.137
184.594
-162.736
-24.6064
-91.9976
116.604
-274.986
281.296
-244.526
167.922
317.015
141.458
-43.9449
-1.1702
-39.4179
110.602
-242.373
-32.7603
-3.78387
3.78387
-7.5542
7.5542
-135.298
-100.694
-26.3455
-1.71561
28.0611
-31.0788
-9.49927
40.5781
-108.199
-15.8531
88.6349
183.151
161.306
168.259
23.0268
-191.286
-122.457
-106.948
363.312
-2.16407
2.16407
-166.832
-95.283
79.5573
-7.5304
-4.39885
8.11078
-3.71193
361.245
-115.508
60.939
275.616
301.624
-138.551
61.6605
-14.5392
0.972498
-265.629
269.922
-181.334
-104.302
82.3285
69.0849
59.443
194.69
-259.801
-108.973
343.178
-234.205
-161.756
-3.5881
178.762
-154.039
77.999
-245.686
18.4842
-220.033
252.336
225.907
-221.046
-191.934
209.954
29.9876
-113.337
78.1917
-98.1835
193.94
-355.319
-307.458
272.979
-90.4496
291.999
-271.781
70.4125
-152.268
64.6619
-6.85877
-2.68571
2.68571
67.7213
84.7752
-117.591
195.681
-1.63559
-194.045
-224.966
215.063
9.72003
-114.79
71.3466
-93.5338
-8.61833
8.61833
-77.7388
95.1878
-152.831
-1.42489
204.623
-15.0405
60.3507
96.9404
-3.67457
139.942
-126.061
-13.8818
67.2007
-8.34251
3.54344
4.79907
-80.8818
-195.721
120.746
-121.282
133.657
-110.219
-110.191
120.747
119.592
-119.592
119.563
-119.563
-110.272
119.592
-119.592
-96.1257
72.1714
-82.2253
65.6721
-299.52
301.345
3.24444
37.6097
-44.4751
-3.67378
3.67378
-12.498
75.5479
149.885
-15.0064
-190.65
201.188
-354.648
192.892
31.0325
-169.584
-234.355
246.534
-24.2226
-102.115
88.9769
10.8464
-11.4088
-59.2199
273.736
73.4769
-100.378
274.968
-289.011
8.33008
-105.153
-17.3772
122.53
-75.6988
-28.2282
103.927
-32.0651
145.715
-301.636
-203.529
213.764
-79.277
-28.4803
107.757
60.1668
-156.339
277.057
97.4886
-32.1259
105.603
-272.547
-82.4441
70.984
46.1583
-314.808
12.2579
-110.922
-100.257
305.35
-207.605
-3.79604
-31.7604
-87.5283
70.5973
21.3317
99.5667
-88.1446
127.492
-39.347
-71.08
-279.952
87.7259
-106.309
-37.8187
87.7604
-204.729
209.736
209.187
-206.43
-88.4285
-25.6485
114.077
-3.05937
3.05937
0.173928
-101.334
-101.162
72.8679
-362.173
93.2097
-200.362
209.764
31.4515
152.726
-59.301
46.0813
2.8253
34.5839
71.5645
0.709755
-217.052
22.1458
-180.446
203.472
257.317
0.274408
20.9718
-290.004
-15.2362
20.2507
-5.01442
-0.193213
-81.6336
-1.33473
4.21311
-0.0826681
-8.71835
1.66377
222.464
-312.645
308.409
9.80032
24.3598
-222.486
-0.482453
-194.326
-161.822
-84.751
284.067
19.2016
7.7341
-3.677
-4.0571
-55.1001
-0.375612
0.144876
-57.2818
-244.526
103.269
113.134
89.6975
-100.84
-99.2387
287.535
149.301
159.053
-2.25267
187.488
264.746
-210.678
-272.656
279.644
65.6632
38.4056
-221.285
219.345
-224.156
-184.131
207.534
-235.047
230.667
14.7448
52.3335
51.5586
-103.892
100.845
-126.422
-8.2239
10.5322
-2.57356
71.7886
8.49022
2.04201
5.59876
-292.554
33.0694
-391.041
-218.31
-114.712
333.022
33.3813
-141.581
-254.297
378.639
-124.342
1.09391
-5.1398
5.1398
-32.9814
1.90256
-108.53
-152.122
-43.8664
56.5136
-0.853994
-222.07
-347.679
-162.911
271.517
-228.465
-112.072
340.538
-1.30959
-3.69752
3.69752
0.257265
164.111
-69.8853
201.709
-224.401
136.716
239.132
218.488
-143.043
168.578
267.101
-19.1424
-264.679
270.178
6.04894
17.1406
-7.28996
-243.41
12.8258
-275.868
-50.2546
-2.99912
2.99912
16.401
-343.558
101.443
15.8663
-117.309
-49.3779
-83.9042
3.2083
270.823
-266.897
-174.401
-18.9959
-1.06929
0.254113
-16.4174
-249.897
-150.603
106.631
26.6536
0.113275
4.27368
-4.27368
-0.0872268
185.276
-232.311
-243.965
144.726
7.15573
-7.15573
-153.153
254.339
64.8068
-91.2295
218.288
-329.906
49.4583
-119.801
-322.216
220.147
-200.8
-30.5705
0.60564
-20.3086
-192.564
68.889
-93.1813
-56.7734
294.932
68.4423
-92.1268
45.059
3.87401
0.00414542
-146.144
53.5012
-145.499
-281.845
285.466
-1.47614
-239.534
181.715
-31.0617
-148.186
-119.035
14.1913
67.9867
-88.9379
-100.965
87.728
5.06463
-0.412495
223.729
-47.2643
51.3617
123.027
-173.015
71.1231
284.097
1.43563
112.225
68.8373
-86.8221
243.08
-294.017
24.1111
-105.745
6.74479
5.6877
122.612
247.79
357.869
-329.111
213.023
-201.716
7.78838
157.067
-366.938
210.963
-263.603
-12.2646
-0.397264
237.626
-240.938
354.926
85.2486
14.95
-100.199
345.309
-46.366
202.602
-177.455
200.998
-198.287
-150.939
-141.245
95.7347
16.6176
-186.899
-3.37126
243.441
-240.07
68.2426
-140.314
72.071
65.8811
-77.833
-29.7373
-72.2031
222.536
-243.611
20.4484
12.5805
35.4132
-116.954
81.5409
-17.9969
110.023
4.70796
256.571
-160.776
4.54893
-282.746
-200.405
201.943
-290.994
298.027
0.423196
10.3569
42.5968
232.256
4.73695
-4.73695
-59.1337
-27.4611
-116.766
-10.6439
-0.0487077
9.24757
-9.63373
0.386153
-202.878
209.473
224.621
124.878
62.5988
-1.08683
72.783
183.54
-346.276
-88.6877
-9.49587
-16.3362
22.6711
-13.239
309.359
17.6487
-37.5223
-155.107
170.257
332.292
-0.539546
46.3765
-27.6552
-18.7213
105.046
-88.2606
75.8274
-44.7483
-23.4219
59.4057
-11.9226
19.7967
223.696
-185.625
-25.2233
-22.6922
-171.779
-29.569
3.57467
16.439
-32.6055
-0.0408573
-10.1716
84.0656
-3.677
66.2201
-21.1818
36.1606
-317.893
311.078
-32.2423
-32.6838
335.443
354.291
-25.5471
-33.4721
27.8543
-106.757
116.28
-3.71193
-167.384
176.213
255.891
-24.276
0.380565
-7.22675
97.6545
-13.5889
102.338
79.6511
-13.388
73.3605
147.968
19.6213
88.136
-1.31218
-96.0406
-38.8644
6.73322
3.54344
-45.8218
-66.6732
-1.06413
-0.521644
166.051
-162.009
1.47216
-43.5936
-4.90389
93.5368
-85.0831
-5.07526
-29.4443
101.901
-136.245
151.672
0.0304301
-28.664
-2.90671
3.24444
-180.401
-21.0898
25.0127
20.666
-130.781
3.2083
21.8564
100.484
11.437
55.8747
-67.3117
101.835
110.393
212.194
-298.347
65.3356
171.886
6.71625
-178.055
-17.6164
-276.221
-26.8264
-3.79604
-31.3662
48.7016
7.22675
2.60838
106.477
68.6939
-37.6603
-31.0337
-48.7015
-17.6662
-82.7272
31.2056
-88.871
-70.24
-18.631
-50.1001
-53.792
35.2219
4.30529
-10.0684
1.5805
-107.536
-147.022
-35.8246
-19.0381
7.02277
228.967
-32.1364
-5.4404
-5.22162
-10.9943
-112.86
-211.74
2.73296
-16.4146
-210.402
-2.73296
-158.281
-0.373661
183.179
-4.09268
2.746
116.678
-72.2093
-16.7522
16.7522
-2.746
5.36186
247.729
41.9676
-137.251
-395.485
74.6398
-16.6961
118.519
38.8614
-47.3578
8.49646
-216.594
-168.918
-12.4517
12.4517
38.4216
-24.0798
18.0599
-182.736
-154.204
-15.477
15.477
-27.4096
-335.172
287.702
-27.7621
11.0811
-11.0811
15.0576
-15.0576
9.42335
-9.42335
-16.7154
16.7154
-13.1911
13.1911
-16.7463
16.7463
-16.4747
16.4747
-14.9502
14.9502
-14.1939
14.1939
14.8496
-14.8496
16.6472
-16.6472
-13.1939
13.1939
-16.8907
16.8907
-15.3189
15.3189
-16.5681
16.5681
16.6782
-16.6782
15.0028
-15.0028
15.4612
-15.4612
-15.5203
15.5203
14.3388
-14.3388
15.024
-15.024
-13.9389
13.9389
14.7121
-14.7121
14.8572
-14.8572
-11.0757
11.0757
16.6366
-16.6366
-9.42213
9.42213
15.0781
-15.0781
14.8578
-14.8578
-9.31914
9.31914
-16.2401
16.2401
10.7585
-10.7585
15.5334
-15.5334
-15.521
15.521
16.5728
-16.5728
15.8654
-15.8654
-16.0253
16.0253
9.42306
-9.42306
9.31829
-9.31829
-16.6502
16.6502
-13.3906
-10.2356
10.2356
-11.0796
11.0796
-15.4524
15.4524
-9.31872
9.31872
14.6024
-14.6024
-16.0361
16.0361
9.31018
-9.31018
-15.8542
15.8542
14.7901
-14.7901
-15.4516
15.4516
14.8052
-14.8052
16.0278
-16.0278
10.9655
-10.9655
-11.0806
11.0806
16.8742
-15.8666
15.8666
14.8045
-14.8045
10.9636
-10.9636
-15.0877
15.0877
14.886
-14.886
10.9676
-10.9676
-12.8835
12.8835
-17.0745
17.0745
94.2553
8.8569
-29.1804
118.407
127.002
69.8063
-32.0518
16.4289
-7.1813
0.803939
-16.9885
16.1845
-117.357
293.79
-18.8212
291.615
-266.603
-52.8661
35.4003
125.506
-59.5184
20.0228
-2.67449
23.0568
-281.597
210.739
189.642
-4.09268
-7.17199
23.5838
102.414
64.3219
73.209
-296.398
139.966
193.057
-14.7057
14.6231
2.72608
18.9461
198.866
-2.72608
-12.7516
71.6954
-78.3367
-99.6132
168.926
-2.72796
2.39301
-108.959
-2.39301
70.0967
-58.6597
2.67448
1.10938
27.3128
34.2285
72.2486
-372.746
2.36105
2.72796
-0.638149
131.516
2.73777
59.7487
154.365
0.599893
327.17
5.66343
0.0127219
-5.66343
79.7324
-8.74841
4.02795
-36.1643
73.4159
55.7014
68.5528
189.626
-42.9392
27.4145
266.902
3.80672
-39.005
-13.8612
-3.80672
193.733
8.74292
-9.11658
-229.605
-149.896
4.32918
208.128
-38.3461
-226.975
-233.711
-202.339
242.426
-275.186
85.8472
-211.889
205.087
7.49658
40.3197
-306.922
34.481
-10.1794
307.462
202.93
-80.9447
2.96516
-53.2692
-79.4539
61.9537
-5.48094
-240.271
76.0277
-49.1704
73.1238
79.0536
-7.52634
11.2001
122.799
69.6258
-163.703
61.497
-15.186
133.573
-107.906
-243.16
-9.4156
75.0877
-135.092
-38.2798
103.129
292.656
-99.5994
-200.674
99.9797
7.12526
105.271
-96.1416
-30.1041
-31.4888
3.83359
-205.538
233.677
182.769
-198.945
272.566
-53.9984
207.983
9.55698
-9.55698
-4.78012
97.0079
85.0131
-85.0131
94.5413
-49.1248
46.869
-169.712
-10.7537
81.0282
-293.654
48.5673
-17.1158
-25.0177
-69.0673
-4.30046
13.9451
91.8268
-11.3867
12.1957
208.63
0.421847
70.1754
15.4465
-11.1875
-197.088
-304.51
268.918
61.3904
-114.769
134.737
-16.2611
-8.50585
-0.765764
9.27161
53.6453
177.022
-97.2208
10.1609
21.4097
-22.4965
114.312
-165.067
-225.974
-7.5184
8.95403
-17.9764
-10.5415
-385.441
269.934
36.5894
247.164
42.4045
237.239
86.7385
44.352
162.832
-351.357
189.535
79.7908
33.3436
-127.97
8.93546
-1.77179
-2.96516
-53.2102
-13.0912
66.3013
11.5863
170.433
-94.4748
84.9789
-114.132
88.585
84.1212
-2.73777
323.471
41.1946
-5.9999
-154.312
258.812
38.6569
-17.4481
29.5292
138.452
-224.855
13.4898
114.008
-80.6647
44.3812
-22.9144
2.1216
20.7928
-7.51753
275.43
-73.5893
-10.7537
51.4657
-231.383
-101.751
256.319
18.4134
6.25701
-33.0988
10.3243
-10.8067
-74.4441
-29.4665
-91.2555
30.8307
66.1772
39.4423
-21.0264
-247.395
6.21615
-13.002
-28.8918
191.379
21.0725
299.299
-42.2353
76.4639
47.3552
119.344
-98.4711
0.81594
-211.218
-148.147
133.461
2.4102
-19.1624
-13.2326
-18.8205
-13.9493
265.131
-217.546
-31.076
-5.56696
-10.4926
72.3342
88.1522
-85.9673
-48.4471
-77.8747
-112.524
175.816
-164.949
116.247
-213.698
166.2
71.5232
-20.7437
131.115
-244.46
1.86367
1.88703
-1.74351
-1.69137
-1.72804
-1.57176
0.408489
-1.05534
-248.842
70.6712
-1.04538
161.065
-176.105
-44.9476
-25.8147
23.4126
181.674
-77.1929
-18.9487
16.0565
7.40819
0.497338
50.6754
-203.123
53.7853
193.201
0.605844
36.7878
31.8697
-0.53256
63.8144
-49.6996
-52.0515
311.222
-42.7185
272.943
-47.5842
59.3857
-25.8427
-32.7223
171.845
-4.8113
-47.3472
317.281
-254.355
258.904
-46.0793
21.0744
283.687
-79.667
-21.5323
-10.8804
4.17391
229.438
-104.509
70.3932
21.1448
5.33294
0.88321
-16.5501
16.3126
103.769
8.37427
1.13879
-67.1684
-10.7672
-9.62837
-14.2565
-28.3017
-9.1852
8.91547
-11.4608
62.0338
-110.416
58.1562
-17.848
40.023
-21.4254
)
;
boundaryField
{
frontAndBack
{
type empty;
value nonuniform 0();
}
bottom
{
type calculated;
value uniform 0;
}
inlet
{
type calculated;
value uniform -2000;
}
top
{
type calculated;
value uniform 0;
}
outlet
{
type calculated;
value nonuniform List<scalar>
14
(
1999.99
1999.99
1999.98
1999.98
2000
1999.98
2000.01
2000.02
2000.02
2000.02
1999.98
2000.01
2000.02
2000
)
;
}
car
{
type calculated;
value uniform 0;
}
}
// ************************************************************************* //
| [
"kmeyer299@gmail.com"
] | kmeyer299@gmail.com | |
217810b995601401b06c1af96d3e53226893ae83 | 3f3095dbf94522e37fe897381d9c76ceb67c8e4f | /Current/ConsoleScreen_DeathStats.hpp | 624a1f4a7b59e428dae9b940158f4161512a162a | [] | no_license | DRG-Modding/Header-Dumps | 763c7195b9fb24a108d7d933193838d736f9f494 | 84932dc1491811e9872b1de4f92759616f9fa565 | refs/heads/main | 2023-06-25T11:11:10.298500 | 2023-06-20T13:52:18 | 2023-06-20T13:52:18 | 399,652,576 | 8 | 7 | null | null | null | null | UTF-8 | C++ | false | false | 591 | hpp | #ifndef UE4SS_SDK_ConsoleScreen_DeathStats_HPP
#define UE4SS_SDK_ConsoleScreen_DeathStats_HPP
class UConsoleScreen_DeathStats_C : public UUserWidget
{
FPointerToUberGraphFrame UberGraphFrame;
class UConsoleScreen_Notification_C* ConsoleScreen_Notification;
class UCanvasPanel* Empty;
class UUI_DeathStats_View_C* UI_DeathStats_View;
class ABP_PlayerController_SpaceRig_C* Player;
class AFSDPlayerState* Owner State;
void SetStatsOwner(const class AFSDPlayerState*& Player State);
void ExecuteUbergraph_ConsoleScreen_DeathStats(int32 EntryPoint);
};
#endif
| [
"bobby45900@gmail.com"
] | bobby45900@gmail.com |
b11b6710ac9b115e9f1d964bf4a9f64c489051f4 | 26524fec2231290c65a0bf126943101bb8b8300c | /OC_3DAcePilot_Finish/GameProgramming/CBillBoard.cpp | 9f3bd51797d737d57b7c6e55b859de4befe57828 | [] | no_license | programminggp/2DLV1 | d424a946fe9f92c15c20a76f5986f19a3bf628f5 | fbe8394189431897312e74caf32e500ea2c8cd13 | refs/heads/master | 2023-09-01T13:38:35.309123 | 2023-09-01T11:45:01 | 2023-09-01T11:45:01 | 176,943,495 | 2 | 1 | null | 2022-05-26T09:56:53 | 2019-03-21T12:49:43 | C | SHIFT_JIS | C++ | false | false | 1,653 | cpp | #include "CBillBoard.h"
#include "CCamera.h"
#define _USE_MATH_DEFINES
#include <math.h>
CBillBoard::CBillBoard()
: CCharacter(-1)
{
}
CBillBoard::CBillBoard(CVector pos, float w, float h)
: CCharacter(-1)
{
Set(pos, w, h);
}
void CBillBoard::Set(CVector pos, float w, float h) {
//位置
mPosition = pos;
//大きさの設定
mScale.mX = w;
mScale.mY = h;
//三角形の頂点座標設定
mT[0].SetVertex(CVector(1.0f, 1.0f, 0.0f), CVector(-1.0f, -1.0f, 0.0f), CVector(1.0f, -1.0f, 0.0f));
mT[1].SetVertex(CVector(-1.0f, 1.0f, 0.0f), CVector(-1.0f, -1.0f, 0.0f), CVector(1.0f, 1.0f, 0.0f));
//法線をZ軸方向
mT[0].SetNormal(CVector(0.0f, 0.0f, 1.0f));
mT[1].SetNormal(CVector(0.0f, 0.0f, 1.0f));
//色を白色を設定
mMaterial.mDiffuse[0] = mMaterial.mDiffuse[1] = mMaterial.mDiffuse[2] = mMaterial.mDiffuse[3] = 1.0f;
}
void CBillBoard::Update() {
//カメラへの方向ベクトルの取得
CVector dir = Camera.mEye - mPosition;
//Y軸の回転値を求める
mRotation.mY = atan2f(dir.mX, dir.mZ) * 180.0f / M_PI;
//X軸の回転値を求める
mRotation.mX = asinf(-dir.mY / dir.Length()) * 180.0f / M_PI;
//行列の更新
CCharacter::Update();
}
void CBillBoard::Render() {
//行列の保存
glPushMatrix();
//拡縮、回転、移動させる
glMultMatrixf(mMatrix.mM[0]);
//ライトオフ
glDisable(GL_LIGHTING);
//描画色の設定
glColor4fv(mMaterial.mDiffuse);
//マテリアル適用
mMaterial.Enabled();
//三角形の描画
mT[0].Render();
mT[1].Render();
//マテリアル解除
mMaterial.Disabled();
//ライトオン
glEnable(GL_LIGHTING);
//行列を戻す
glPopMatrix();
}
| [
"shinobu-takahashi@anabuki.ac.jp"
] | shinobu-takahashi@anabuki.ac.jp |
2ce829edaf209cfcee2e4194e50e6f07c3ee94c0 | 68c4bab1f5d5228078d603066b6c6cea87fdbc7a | /lab/frozen/with-some-problems/sinfonia-cpp/src/cpp/includeExt/biblia/jogos/superbonus/estados/Configuracao.h | 74903cb94f9f2187dda7f6b6fae79b6bac867ff7 | [] | no_license | felipelalli/micaroni | afab919dab304e21ba916aa6310dca102b1a04a5 | 741b628754b7c7085d3e68009a621242c2a1534e | refs/heads/master | 2023-08-03T06:25:15.405861 | 2023-07-25T14:44:56 | 2023-07-25T14:44:56 | 537,536 | 2 | 1 | null | null | null | null | ISO-8859-1 | C++ | false | false | 1,964 | h | /*
* $RCSfile: Configuracao.h,v $
* $Date: 2005/01/20 21:28:59 $
* $Revision: 1.12 $
*
* Implementação da biblioteca Bíblia.
* Streamworks, outubro de 2002. ($Name: $ , $Author: felipelalli $)
*/
#if !defined(AFX_CONFIGURACAO_H__60E6A4FB_7749_4E8A_BA73_D8A4BBBDC992__INCLUDED_)
#define AFX_CONFIGURACAO_H__60E6A4FB_7749_4E8A_BA73_D8A4BBBDC992__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#ifdef WIN32
#pragma warning(disable:4786) // para tirar o warn bizarro do Visual C++
#pragma warning(disable:4503)
#endif
#include <deque>
#include "biblia/jogos/superbonus/logica/Logicas.h"
#include "biblia/visual/imagem2d/FabricaDeImagens.h"
#include "biblia/visual/formulario/ControladorDeComponentesPorAcao.h"
#include "biblia/jogos/superbonus/io/botoes/Botoes.h"
#include "biblia/jogos/superbonus/io/botoes/Piscador.h"
#include "biblia/basico/Objeto.h"
using namespace std;
using namespace biblia::visual::imagem2d;
using namespace biblia::visual::formulario;
using namespace biblia::jogos::superbonus::logica;
using namespace biblia::jogos::superbonus::io::botoes;
using namespace biblia::basico;
namespace biblia {
namespace jogos {
namespace superbonus {
namespace estados {
class Configuracao : public Objeto {
private:
std::deque<int> Configuracao::pAcoes;
ControladorDeComponentesPorAcao
Configuracao::pControlador;
public:
Configuracao::Configuracao();
virtual Configuracao::~Configuracao();
virtual const std::deque<int>& Configuracao::acoes() const;
virtual std::deque<int>& Configuracao::acoes();
virtual const ControladorDeComponentesPorAcao&
Configuracao::controlador() const;
virtual ControladorDeComponentesPorAcao&
Configuracao::controlador();
};
}
}
}
}
#endif // !defined(AFX_CONFIGURACAO_H__60E6A4FB_7749_4E8A_BA73_D8A4BBBDC992__INCLUDED_)
| [
"micaroni@gmail.com"
] | micaroni@gmail.com |
21c671735aa5bb6685cfb26327324d19c838c3e5 | 29be7c52e05d32a4b02e6c0a1a6424abb2f60d57 | /fuse-qreader/Example/build/Android/Preview/app/src/main/include/Fuse.Scripting.Native-fa549b97.h | faecf2b4db8900bd0ba95914ab4b00f596dc2193 | [
"MIT"
] | permissive | redtree0/CITOS-APP | 3b8cbc86fd88f6adb5b480035788eac08290c7a6 | 624f69770d8573dffc174f1f9540c22f19c71f14 | refs/heads/master | 2020-03-29T05:42:49.041569 | 2018-09-25T14:24:55 | 2018-09-25T14:24:55 | 149,594,359 | 0 | 0 | null | 2018-09-20T10:47:57 | 2018-09-20T10:47:57 | null | UTF-8 | C++ | false | false | 3,325 | h | // This file was generated based on C:/Users/채재윤융합IT학부/AppData/Local/Fusetools/Packages/Fuse.Scripting/1.9.0/NativeEventEmitterModule.uno.
// WARNING: Changes might be lost if you edit this file directly.
#pragma once
#include <Fuse.Scripting.IModuleProvider.h>
#include <Fuse.Scripting.NativeModule.h>
#include <Uno.IDisposable.h>
namespace g{namespace Fuse{namespace Scripting{struct Context;}}}
namespace g{namespace Fuse{namespace Scripting{struct NativeEvent;}}}
namespace g{namespace Fuse{namespace Scripting{struct NativeEventEmitterModule;}}}
namespace g{namespace Fuse{namespace Scripting{struct Object;}}}
namespace g{namespace Uno{namespace Collections{struct List;}}}
namespace g{namespace Uno{namespace Collections{struct Queue;}}}
namespace g{namespace Uno{struct EventArgs;}}
namespace g{namespace Uno{struct Tuple2;}}
namespace g{
namespace Fuse{
namespace Scripting{
// public class NativeEventEmitterModule :9
// {
::g::Fuse::Scripting::NativeModule_type* NativeEventEmitterModule_typeof();
void NativeEventEmitterModule__ctor_2_fn(NativeEventEmitterModule* __this, bool* queueEventsBeforeInit, uArray* eventNames);
void NativeEventEmitterModule__CreateExportsObject_fn(NativeEventEmitterModule* __this, ::g::Fuse::Scripting::Context* c, uObject** __retval);
void NativeEventEmitterModule__Dispatch_fn(NativeEventEmitterModule* __this, uDelegate* action, bool* alwaysQueueEventBeforeInit);
void NativeEventEmitterModule__Emit_fn(NativeEventEmitterModule* __this, uArray* args);
void NativeEventEmitterModule__New2_fn(bool* queueEventsBeforeInit, uArray* eventNames, NativeEventEmitterModule** __retval);
void NativeEventEmitterModule__On_fn(NativeEventEmitterModule* __this, uObject* eventName, uDelegate* listener);
void NativeEventEmitterModule__On1_fn(NativeEventEmitterModule* __this, uObject* eventName, ::g::Fuse::Scripting::NativeEvent* nativeEvent);
void NativeEventEmitterModule__OnAppInitialized_fn(NativeEventEmitterModule* __this, ::g::Fuse::Scripting::Context* c);
void NativeEventEmitterModule__ResetListeners_fn(NativeEventEmitterModule* __this, uObject* sender, ::g::Uno::EventArgs* eventArgs);
void NativeEventEmitterModule__ResetListenersJS_fn(NativeEventEmitterModule* __this, ::g::Fuse::Scripting::Context* context);
struct NativeEventEmitterModule : ::g::Fuse::Scripting::NativeModule
{
uStrong<uArray*> _eventNames;
uStrong< ::g::Uno::Collections::List*> _listeningCallbacks;
uStrong< ::g::Fuse::Scripting::Object*> _this;
bool _initialized;
uStrong< ::g::Fuse::Scripting::Context*> _context;
bool _queueEventsBeforeInit;
uStrong<uObject*> _mutex;
uStrong< ::g::Uno::Collections::Queue*> _queuedEvents;
void ctor_2(bool queueEventsBeforeInit, uArray* eventNames);
void Dispatch(uDelegate* action, bool alwaysQueueEventBeforeInit);
void Emit(uArray* args);
void On(uObject* eventName, uDelegate* listener);
void On1(uObject* eventName, ::g::Fuse::Scripting::NativeEvent* nativeEvent);
void OnAppInitialized(::g::Fuse::Scripting::Context* c);
void ResetListeners(uObject* sender, ::g::Uno::EventArgs* eventArgs);
void ResetListenersJS(::g::Fuse::Scripting::Context* context);
static NativeEventEmitterModule* New2(bool queueEventsBeforeInit, uArray* eventNames);
};
// }
}}} // ::g::Fuse::Scripting
| [
"moter74@naver.com"
] | moter74@naver.com |
2e05be9648f32b475548425a3c1211c7cee283e0 | 08c7efb9955b499d9ae1731332df9ffd3ebeab2a | /project.ino | 491443c93c7e1c39aa5a12845e8f8e140312d5b3 | [] | no_license | YuraBerez/automatic-watering | 8ccbec5a3d1e00bbf9aaad3f890787297f08ff1b | 3553836e20d51d6d1bcc448bc22fe849a31c59a1 | refs/heads/master | 2020-03-25T00:20:49.397955 | 2018-08-01T16:42:53 | 2018-08-01T16:42:53 | 143,181,294 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 612 | ino | // contact for connecting the analog output of the sensor
int aPin=A0;
// pump connection
int outer = 13;
// variable for storing sensor values
int avalue = 0;
void setup()
{
// serial port initialization
Serial.begin(9600);
pinMode(outer,OUTPUT);
}
void loop()
{
// getting the value from the analog output of the sensor
avalue = analogRead(aPin);
Serial.print(avalue);
if(avalue < 400)
{
digitalWrite(outer,LOW); // turn on the pump
Serial.println(" Good");
}
else
{
digitalWrite(outer, HIGH); // turn off the pump
Serial.println(" BAD");
}
delay(500);
}
| [
"1313adas1313@gmail.com"
] | 1313adas1313@gmail.com |
8c79d2d842605c11c4a8749712a1e62ade7360de | 1bf6613e21a5695582a8e6d9aaa643af4a1a5fa8 | /src/chrome/browser/ui/gtk/infobars/.svn/text-base/before_translate_infobar_gtk.h.svn-base | c121fdcbb21291aea02d755d9d9cc562918e9558 | [
"BSD-3-Clause"
] | permissive | pqrkchqps/MusicBrowser | ef5c9603105b4f4508a430d285334667ec3c1445 | 03216439d1cc3dae160f440417fcb557bb72f8e4 | refs/heads/master | 2020-05-20T05:12:14.141094 | 2013-05-31T02:21:07 | 2013-05-31T02:21:07 | 10,395,498 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,330 | // Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_UI_GTK_INFOBARS_BEFORE_TRANSLATE_INFOBAR_GTK_H_
#define CHROME_BROWSER_UI_GTK_INFOBARS_BEFORE_TRANSLATE_INFOBAR_GTK_H_
#include "base/compiler_specific.h"
#include "chrome/browser/ui/gtk/infobars/translate_infobar_base_gtk.h"
class TranslateInfoBarDelegate;
class BeforeTranslateInfoBar : public TranslateInfoBarBase {
public:
BeforeTranslateInfoBar(InfoBarService* owner,
TranslateInfoBarDelegate* delegate);
virtual ~BeforeTranslateInfoBar();
// Overridden from TranslateInfoBarBase:
virtual void Init() OVERRIDE;
protected:
virtual bool ShowOptionsMenuButton() const OVERRIDE;
private:
CHROMEGTK_CALLBACK_0(BeforeTranslateInfoBar, void, OnLanguageModified);
CHROMEGTK_CALLBACK_0(BeforeTranslateInfoBar, void, OnAcceptPressed);
CHROMEGTK_CALLBACK_0(BeforeTranslateInfoBar, void, OnDenyPressed);
CHROMEGTK_CALLBACK_0(BeforeTranslateInfoBar, void, OnNeverTranslatePressed);
CHROMEGTK_CALLBACK_0(BeforeTranslateInfoBar, void, OnAlwaysTranslatePressed);
DISALLOW_COPY_AND_ASSIGN(BeforeTranslateInfoBar);
};
#endif // CHROME_BROWSER_UI_GTK_INFOBARS_BEFORE_TRANSLATE_INFOBAR_GTK_H_
| [
"creps002@umn.edu"
] | creps002@umn.edu | |
27c3ac8ecdec670180066cbcbb356526e1334f6b | 55903a9564931b4579e5c5030376f0989d15b00e | /P2pNet/ace/config-lite.h | e3f32a9ec7ccd03242871a95bbc3d34ff1c74093 | [] | no_license | zhenyouluo/liveshow_r2 | 04b391fd9ba4e809a88aa1e4eed1477ac4e9ef88 | 300441c14ed31cfa10ec0459bac5a67693f592ea | refs/heads/master | 2020-12-26T00:35:26.403288 | 2012-09-10T02:28:22 | 2012-09-10T02:28:22 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,233 | h | // -*- C++ -*-
//==========================================================================
/**
* @file config-lite.h
*
* $Id: config-lite.h 78957 2007-07-19 20:00:23Z mitza $
*
* @author (Originally in OS.h)Doug Schmidt <schmidt@cs.wustl.edu>
* @author Jesper S. M|ller<stophph@diku.dk>
* @author and a cast of thousands...
*
* This file contains the contents of the old config-all.h in order to
* avoid a circular dependency problem caused by some of the new
* includes added to config-all.h, e.g., OS_main.h.
*/
//==========================================================================
#ifndef ACE_CONFIG_LITE_H
#define ACE_CONFIG_LITE_H
#include /**/ "ace/pre.h"
#include "ace/config-macros.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
// Empty ACE_OS namespace to help identify compiler errors more
// easily. -- @@ Do we really need this?
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
namespace ACE_OS {}
ACE_END_VERSIONED_NAMESPACE_DECL
// ============================================================================
// UNICODE macros (to be added later)
// ============================================================================
// Get the unicode (i.e. ACE_TCHAR) defines
# include "ace/ace_wchar.h"
// ============================================================================
// at_exit declarations
// ============================================================================
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
// Marker for cleanup, used by ACE_Exit_Info.
extern int ace_exit_hook_marker;
ACE_END_VERSIONED_NAMESPACE_DECL
// For use by <ACE_OS::exit>.
extern "C"
{
typedef void (*ACE_EXIT_HOOK) (void);
}
// Signature for registering a cleanup function that is used by the
// ACE_Object_Manager and the ACE_Thread_Manager.
# if defined (ACE_HAS_SIG_C_FUNC)
extern "C" {
# endif /* ACE_HAS_SIG_C_FUNC */
typedef void (*ACE_CLEANUP_FUNC)(void *object, void *param) /* throw () */;
# if defined (ACE_HAS_SIG_C_FUNC)
}
# endif /* ACE_HAS_SIG_C_FUNC */
// ============================================================================
// log_msg declarations
// ============================================================================
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
# if defined (ACE_HAS_WIN32_STRUCTURAL_EXCEPTIONS)
typedef int (*ACE_SEH_EXCEPT_HANDLER)(void *);
// Prototype of win32 structured exception handler functions.
// They are used to get the exception handling expression or
// as exception handlers.
# endif /* ACE_HAS_WIN32_STRUCTURAL_EXCEPTIONS */
class ACE_OS_Thread_Descriptor;
class ACE_OS_Log_Msg_Attributes;
typedef void (*ACE_INIT_LOG_MSG_HOOK) (ACE_OS_Log_Msg_Attributes &attr
# if defined (ACE_HAS_WIN32_STRUCTURAL_EXCEPTIONS)
, ACE_SEH_EXCEPT_HANDLER selector
, ACE_SEH_EXCEPT_HANDLER handler
# endif /* ACE_HAS_WIN32_STRUCTURAL_EXCEPTIONS */
);
typedef void (*ACE_INHERIT_LOG_MSG_HOOK) (ACE_OS_Thread_Descriptor*,
ACE_OS_Log_Msg_Attributes &);
typedef void (*ACE_CLOSE_LOG_MSG_HOOK) (void);
typedef void (*ACE_SYNC_LOG_MSG_HOOK) (const ACE_TCHAR *prog_name);
typedef ACE_OS_Thread_Descriptor *(*ACE_THR_DESC_LOG_MSG_HOOK) (void);
ACE_END_VERSIONED_NAMESPACE_DECL
/**
* @deprecated ACE_DECLARE_STL_REVERSE_ITERATORS is a crutch to be
* used until all C++ compiler supported by ACE support
* the standard reverse_iterator adapters.
* @internal ACE_DECLARE_STL_REVERSE_ITERATORS is not meant for use
* outside of ACE.
*/
// STL reverse_iterator declaration generator
// Make sure you include <iterator> in the file you're using this
// generator, and that the following traits are available:
//
// iterator
// const_iterator
// value_type
// reference
// pointer
// const_reference
// const_pointer
// difference_type
//
// Once all C++ compilers support the standard reverse_iterator
// adapters, we can drop this generator macro or at least drop the
// MSVC++ or Sun Studio preprocessor conditional blocks.
#if defined (__SUNPRO_CC) && __SUNPRO_CC <= 0x590 \
&& !defined (_STLPORT_VERSION)
// If we're not using the stlport4 C++ library (which has standard
// iterators), we need to ensure this is included in order to test
// the _RWSTD_NO_CLASS_PARTIAL_SPEC feature test macro below.
# include <Cstd/stdcomp.h>
#endif /* __SUNPRO_CC <= 0x580 */
#if (defined (_MSC_VER) && (_MSC_VER <= 1310) && defined (_WIN64)) \
|| defined (ACE_HAS_BROKEN_STD_REVERSE_ITERATOR)
// VC 7.1 and the latest 64-bit platform SDK still don't define a standard
// compliant reverse_iterator adapter.
# define ACE_DECLARE_STL_REVERSE_ITERATORS \
typedef std::reverse_iterator<iterator, value_type> reverse_iterator; \
typedef std::reverse_iterator<const_iterator, \
value_type const> const_reverse_iterator;
#elif defined (__SUNPRO_CC) && __SUNPRO_CC <= 0x590 \
&& defined (_RWSTD_NO_CLASS_PARTIAL_SPEC)
# define ACE_DECLARE_STL_REVERSE_ITERATORS \
typedef std::reverse_iterator<iterator, \
std::input_iterator_tag, \
value_type, \
reference, \
pointer, \
difference_type> reverse_iterator; \
typedef std::reverse_iterator<const_iterator, \
std::input_iterator_tag, \
value_type const, \
const_reference, \
const_pointer, \
difference_type> const_reverse_iterator;
#else
# define ACE_DECLARE_STL_REVERSE_ITERATORS \
typedef std::reverse_iterator<iterator> reverse_iterator; \
typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
#endif /* _MSC_VER && _WIN64 */
#include /**/ "ace/post.h"
#endif /* ACE_CONFIG_LITE_H */
| [
"ankh2008@hotmail.com"
] | ankh2008@hotmail.com |
b0688f226014dc87d6886a3a6d17415296ff0688 | da1ba0378e1ed8ff8380afb9072efcd3bbead74e | /google/cloud/bigquery/analytics_hub_connection.h | f3e9cfeab66458d9624727a604599b436dc92e34 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | Jseph/google-cloud-cpp | 76894af7ce744cd44304b48bea32d5116ded7497 | fd8e70650ebac0c10bac4b293972e79eef46b128 | refs/heads/master | 2022-10-18T13:07:01.710328 | 2022-10-01T18:16:16 | 2022-10-01T18:16:16 | 192,397,663 | 0 | 0 | null | 2019-06-17T18:22:36 | 2019-06-17T18:22:35 | null | UTF-8 | C++ | false | false | 6,392 | h | // Copyright 2022 Google LLC
//
// 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
//
// https://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.
// Generated by the Codegen C++ plugin.
// If you make any local changes, they will be lost.
// source: google/cloud/bigquery/analyticshub/v1/analyticshub.proto
#ifndef GOOGLE_CLOUD_CPP_GOOGLE_CLOUD_BIGQUERY_ANALYTICS_HUB_CONNECTION_H
#define GOOGLE_CLOUD_CPP_GOOGLE_CLOUD_BIGQUERY_ANALYTICS_HUB_CONNECTION_H
#include "google/cloud/bigquery/analytics_hub_connection_idempotency_policy.h"
#include "google/cloud/bigquery/internal/analytics_hub_retry_traits.h"
#include "google/cloud/bigquery/internal/analytics_hub_stub.h"
#include "google/cloud/backoff_policy.h"
#include "google/cloud/options.h"
#include "google/cloud/status_or.h"
#include "google/cloud/stream_range.h"
#include "google/cloud/version.h"
#include <memory>
namespace google {
namespace cloud {
namespace bigquery {
GOOGLE_CLOUD_CPP_INLINE_NAMESPACE_BEGIN
using AnalyticsHubServiceRetryPolicy =
::google::cloud::internal::TraitBasedRetryPolicy<
bigquery_internal::AnalyticsHubServiceRetryTraits>;
using AnalyticsHubServiceLimitedTimeRetryPolicy =
::google::cloud::internal::LimitedTimeRetryPolicy<
bigquery_internal::AnalyticsHubServiceRetryTraits>;
using AnalyticsHubServiceLimitedErrorCountRetryPolicy =
::google::cloud::internal::LimitedErrorCountRetryPolicy<
bigquery_internal::AnalyticsHubServiceRetryTraits>;
/**
* The `AnalyticsHubServiceConnection` object for `AnalyticsHubServiceClient`.
*
* This interface defines virtual methods for each of the user-facing overload
* sets in `AnalyticsHubServiceClient`. This allows users to inject custom
* behavior (e.g., with a Google Mock object) when writing tests that use
* objects of type `AnalyticsHubServiceClient`.
*
* To create a concrete instance, see `MakeAnalyticsHubServiceConnection()`.
*
* For mocking, see `bigquery_mocks::MockAnalyticsHubServiceConnection`.
*/
class AnalyticsHubServiceConnection {
public:
virtual ~AnalyticsHubServiceConnection() = 0;
virtual Options options() { return Options{}; }
virtual StreamRange<google::cloud::bigquery::analyticshub::v1::DataExchange>
ListDataExchanges(
google::cloud::bigquery::analyticshub::v1::ListDataExchangesRequest
request);
virtual StreamRange<google::cloud::bigquery::analyticshub::v1::DataExchange>
ListOrgDataExchanges(
google::cloud::bigquery::analyticshub::v1::ListOrgDataExchangesRequest
request);
virtual StatusOr<google::cloud::bigquery::analyticshub::v1::DataExchange>
GetDataExchange(
google::cloud::bigquery::analyticshub::v1::GetDataExchangeRequest const&
request);
virtual StatusOr<google::cloud::bigquery::analyticshub::v1::DataExchange>
CreateDataExchange(google::cloud::bigquery::analyticshub::v1::
CreateDataExchangeRequest const& request);
virtual StatusOr<google::cloud::bigquery::analyticshub::v1::DataExchange>
UpdateDataExchange(google::cloud::bigquery::analyticshub::v1::
UpdateDataExchangeRequest const& request);
virtual Status DeleteDataExchange(
google::cloud::bigquery::analyticshub::v1::
DeleteDataExchangeRequest const& request);
virtual StreamRange<google::cloud::bigquery::analyticshub::v1::Listing>
ListListings(
google::cloud::bigquery::analyticshub::v1::ListListingsRequest request);
virtual StatusOr<google::cloud::bigquery::analyticshub::v1::Listing>
GetListing(google::cloud::bigquery::analyticshub::v1::GetListingRequest const&
request);
virtual StatusOr<google::cloud::bigquery::analyticshub::v1::Listing>
CreateListing(
google::cloud::bigquery::analyticshub::v1::CreateListingRequest const&
request);
virtual StatusOr<google::cloud::bigquery::analyticshub::v1::Listing>
UpdateListing(
google::cloud::bigquery::analyticshub::v1::UpdateListingRequest const&
request);
virtual Status DeleteListing(
google::cloud::bigquery::analyticshub::v1::DeleteListingRequest const&
request);
virtual StatusOr<
google::cloud::bigquery::analyticshub::v1::SubscribeListingResponse>
SubscribeListing(
google::cloud::bigquery::analyticshub::v1::SubscribeListingRequest const&
request);
virtual StatusOr<google::iam::v1::Policy> GetIamPolicy(
google::iam::v1::GetIamPolicyRequest const& request);
virtual StatusOr<google::iam::v1::Policy> SetIamPolicy(
google::iam::v1::SetIamPolicyRequest const& request);
virtual StatusOr<google::iam::v1::TestIamPermissionsResponse>
TestIamPermissions(google::iam::v1::TestIamPermissionsRequest const& request);
};
/**
* A factory function to construct an object of type
* `AnalyticsHubServiceConnection`.
*
* The returned connection object should not be used directly; instead it
* should be passed as an argument to the constructor of
* AnalyticsHubServiceClient.
*
* The optional @p options argument may be used to configure aspects of the
* returned `AnalyticsHubServiceConnection`. Expected options are any of the
* types in the following option lists:
*
* - `google::cloud::CommonOptionList`
* - `google::cloud::GrpcOptionList`
* - `google::cloud::UnifiedCredentialsOptionList`
* - `google::cloud::bigquery::AnalyticsHubServicePolicyOptionList`
*
* @note Unexpected options will be ignored. To log unexpected options instead,
* set `GOOGLE_CLOUD_CPP_ENABLE_CLOG=yes` in the environment.
*
* @param options (optional) Configure the `AnalyticsHubServiceConnection`
* created by this function.
*/
std::shared_ptr<AnalyticsHubServiceConnection>
MakeAnalyticsHubServiceConnection(Options options = {});
GOOGLE_CLOUD_CPP_INLINE_NAMESPACE_END
} // namespace bigquery
} // namespace cloud
} // namespace google
#endif // GOOGLE_CLOUD_CPP_GOOGLE_CLOUD_BIGQUERY_ANALYTICS_HUB_CONNECTION_H
| [
"noreply@github.com"
] | noreply@github.com |
5dc8ad96f4c362545715863d6ddcd8fbc6d7fb9c | fbb66f282c7896eb3d9100295c3e0512328bc539 | /Day8/补码反码原码工具/补码反码原码工具Dlg.h | 2701fac849e58e1c5d315d40c8c7b63db9ffa97c | [] | no_license | ya-dao/C_Code | 1e79c3a700c95c8571b320194440857baae2a449 | c9efd2c130ec87488566c2082ee37c466f23074c | refs/heads/master | 2022-07-07T15:13:20.737467 | 2020-02-22T04:12:12 | 2020-02-22T04:12:12 | 129,206,036 | 1 | 0 | null | null | null | null | GB18030 | C++ | false | false | 887 | h |
// 补码反码原码工具Dlg.h : 头文件
//
#pragma once
#include "afxwin.h"
// C补码反码原码工具Dlg 对话框
class C补码反码原码工具Dlg : public CDialogEx
{
// 构造
public:
C补码反码原码工具Dlg(CWnd* pParent = NULL); // 标准构造函数
// 对话框数据
#ifdef AFX_DESIGN_TIME
enum { IDD = IDD_MY_DIALOG };
#endif
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
// 实现
protected:
HICON m_hIcon;
// 生成的消息映射函数
virtual BOOL OnInitDialog();
afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
DECLARE_MESSAGE_MAP()
public:
CEdit number;
CEdit yuanMa;
CEdit fanMa;
CEdit buMa;
afx_msg void OnBnClickedButton1();
afx_msg void OnEnChangeEdit1();
CEdit numberEdit;
CEdit yuanMaEdit;
CEdit fanMaEdit;
CEdit buMaEdit;
};
| [
"cqnu_zhanghao@foxmail.com"
] | cqnu_zhanghao@foxmail.com |
9b21df5ea39427d40659c11059ea309e0bcd4bbc | fe2362eda423bb3574b651c21ebacbd6a1a9ac2a | /VTK-7.1.1/IO/XML/vtkXMLDataSetWriter.h | ee6aaafef96304507116931570d85ce39daac630 | [
"BSD-3-Clause"
] | permissive | likewatchk/python-pcl | 1c09c6b3e9de0acbe2f88ac36a858fe4b27cfaaf | 2a66797719f1b5af7d6a0d0893f697b3786db461 | refs/heads/master | 2023-01-04T06:17:19.652585 | 2020-10-15T21:26:58 | 2020-10-15T21:26:58 | 262,235,188 | 0 | 0 | NOASSERTION | 2020-05-08T05:29:02 | 2020-05-08T05:29:01 | null | UTF-8 | C++ | false | false | 2,673 | h | /*=========================================================================
Program: Visualization Toolkit
Module: vtkXMLDataSetWriter.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.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.
=========================================================================*/
/**
* @class vtkXMLDataSetWriter
* @brief Write any type of VTK XML file.
*
* vtkXMLDataSetWriter is a wrapper around the VTK XML file format
* writers. Given an input vtkDataSet, the correct writer is
* automatically selected based on the type of input.
*
* @sa
* vtkXMLImageDataWriter vtkXMLStructuredGridWriter
* vtkXMLRectilinearGridWriter vtkXMLPolyDataWriter
* vtkXMLUnstructuredGridWriter
*/
#ifndef vtkXMLDataSetWriter_h
#define vtkXMLDataSetWriter_h
#include "vtkIOXMLModule.h" // For export macro
#include "vtkXMLWriter.h"
class vtkCallbackCommand;
class VTKIOXML_EXPORT vtkXMLDataSetWriter : public vtkXMLWriter
{
public:
vtkTypeMacro(vtkXMLDataSetWriter,vtkXMLWriter);
void PrintSelf(ostream& os, vtkIndent indent);
static vtkXMLDataSetWriter* New();
/**
* Get/Set the writer's input.
*/
vtkDataSet* GetInput();
/**
* Creates a writer for the given dataset type. May return NULL for
* unsupported/unrecognized dataset types. Returns a new instance. The caller
* is responsible of calling vtkObject::Delete() or vtkObject::UnRegister() on
* it when done.
*/
static vtkXMLWriter* NewWriter(int dataset_type);
protected:
vtkXMLDataSetWriter();
~vtkXMLDataSetWriter();
// see algorithm for more info
virtual int FillInputPortInformation(int port, vtkInformation* info);
// Override writing method from superclass.
virtual int WriteInternal();
// Dummies to satisfy pure virtuals from superclass.
const char* GetDataSetName();
const char* GetDefaultFileExtension();
// Callback registered with the ProgressObserver.
static void ProgressCallbackFunction(vtkObject*, unsigned long, void*,
void*);
// Progress callback from internal writer.
virtual void ProgressCallback(vtkAlgorithm* w);
// The observer to report progress from the internal writer.
vtkCallbackCommand* ProgressObserver;
private:
vtkXMLDataSetWriter(const vtkXMLDataSetWriter&) VTK_DELETE_FUNCTION;
void operator=(const vtkXMLDataSetWriter&) VTK_DELETE_FUNCTION;
};
#endif
| [
"likewatchk@gmail.com"
] | likewatchk@gmail.com |
2606b3147c10512241c553dd178eb19db536ba90 | 27d5670a7739a866c3ad97a71c0fc9334f6875f2 | /CPP/Targets/MapLib/Shared/include/ClipUtil.h | 277647a40d87785d6d447ce817148188772cfbe6 | [
"BSD-3-Clause"
] | permissive | ravustaja/Wayfinder-S60-Navigator | ef506c418b8c2e6498ece6dcae67e583fb8a4a95 | 14d1b729b2cea52f726874687e78f17492949585 | refs/heads/master | 2021-01-16T20:53:37.630909 | 2010-06-28T09:51:10 | 2010-06-28T09:51:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,041 | h | /*
Copyright (c) 1999 - 2010, Vodafone Group Services Ltd
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
* Neither the name of the Vodafone Group Services Ltd nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef CLIP_UTIL_H
#define CLIP_UTIL_H
#include "config.h"
#include <vector>
//#include <iterator>
#include "MC2BoundingBox.h"
#include "MC2Point.h"
#include "MC2Coordinate.h"
class ClipUtil {
public:
/**
* Reduces the number of vertices outside the boundingbox and
* computes the Cohen-Sutherland outcodes for each of those
* vertices.
* <br />
* The XYHELPER is a class that should have the functions
* getX(POINT_SEQUENCE::value_type), getY(POINT_SEQUENCE::value_type)
* and getX(ITERATABLE::value_type), getY(ITERATABLE::value_type).
* If the value types are the same, then just two functions are
* needed.
* @see GfxUtility.
*
* @param bbox The boundingbox to reduce the polygon.
* @param vertices The input polygon.
* @param reducedVertices [OUT] The resulting reduced polygon.
* @param outcodes The Cohen-Sutherland outcodes of the
* reduced vertices are added to this
* vector<byte> if not NULL.
* @return True if the vectors got filled with any vertices /
* outcodes, false otherwise.
*/
template<class XYHELPER, class ITERATABLE, class POINT_SEQUENCE >
inline static bool reduceByBBox( const XYHELPER& xyhelper,
const MC2BoundingBox& bbox,
const ITERATABLE& vertices,
POINT_SEQUENCE& reducedVertices,
std::vector<uint8>* outcodes ) {
if ( vertices.size() < 3 ) {
return false;
}
// Initialize the vertice and outcode vector.
uint32 prevOutcode;
uint32 firstOutcode;
typename ITERATABLE::value_type currVertex;
typename POINT_SEQUENCE::value_type nextVertex;
// Add all of the polygon
typename POINT_SEQUENCE::const_iterator it = vertices.begin();
currVertex = *it;
prevOutcode = firstOutcode =
bbox.getCohenSutherlandOutcode(xyhelper.getY(currVertex),
xyhelper.getX(currVertex) );
// Add the first one.
reducedVertices.push_back( currVertex );
if ( outcodes ) {
outcodes->push_back( prevOutcode );
}
++it;
currVertex = *it;
uint32 currOutcode =
bbox.getCohenSutherlandOutcode(xyhelper.getY(currVertex),
xyhelper.getX(currVertex) );
++it;
for ( ; it != vertices.end(); ++it ) {
nextVertex = *it;
byte nextOutcode =
bbox.getCohenSutherlandOutcode(xyhelper.getY(nextVertex),
xyhelper.getX(nextVertex));
if ((prevOutcode & currOutcode & nextOutcode) == 0) {
reducedVertices.push_back( currVertex );
if ( outcodes ) {
outcodes->push_back( currOutcode );
}
prevOutcode = currOutcode;
}
currOutcode = nextOutcode;
currVertex = nextVertex;
}
// Check the last one.
if ((prevOutcode & currOutcode & firstOutcode) == 0) {
reducedVertices.push_back( currVertex );
if ( outcodes ) {
outcodes->push_back( currOutcode );
}
}
if ( xyhelper.getX(reducedVertices.back()) !=
xyhelper.getX(reducedVertices.front()) ||
xyhelper.getY(reducedVertices.back()) !=
xyhelper.getY(reducedVertices.front()) ) {
// Add first coordinate last again.
reducedVertices.push_back( reducedVertices.front() );
}
// If we end up with less than three coordinates then it's not a
// valid closed polygon anymore.
bool retVal;
if (reducedVertices.size() < 3) {
if ( outcodes ) {
outcodes->clear();
}
retVal = false;
} else {
retVal = true;
}
return (retVal);
}
typedef std::vector<MC2Coordinate> coordVector_t;
/// Static coordinate clipper.
static int clipPolyToBBoxFast( const MC2BoundingBox& bboxa,
std::vector<MC2Coordinate>& result,
const MC2Coordinate* begin,
const MC2Coordinate* end );
/// Static point clipper.
int static clipPolyToBBoxFast( const MC2BoundingBox& bbox,
std::vector<MC2Point>& vertices );
/// Member version of clipPolyToBBoxFast.
int clipPolyToBBoxFaster( const MC2BoundingBox& bbox,
std::vector<MC2Point>& vertices );
static int clipPolyLineLB( const MC2BoundingBox& bboxa,
std::vector<coordVector_t>& result,
const MC2Coordinate* begin,
const MC2Coordinate* end );
private:
static void clipSegment( const MC2Point& prevVertex,
const MC2Point& currVertex,
int prevInside,
int currInside,
byte currOutcode,
const MC2BoundingBox* bbox,
byte boundaryOutcode,
std::vector<byte>& resOutcodes,
std::vector<MC2Point>& resVertices );
static int clipToBoundary( const byte boundaryOutcode,
const MC2BoundingBox* bbox,
std::vector<MC2Point>& vertices,
std::vector<byte>& outcodes,
std::vector<MC2Point>& resVertices,
std::vector<byte>& resOutcodes );
int static clipLineLiangBarsky( const MC2BoundingBox& bboxa,
MC2Point& currVertex,
MC2Point& nextVertex );
/// Member vectors. Members in order to avoid to much reallocation.
std::vector<byte> m_outcodes1;
std::vector<byte> m_outcodes2;
std::vector<MC2Point> m_vertices2;
};
#endif
| [
"hlars@sema-ovpn-morpheus.itinerary.com"
] | hlars@sema-ovpn-morpheus.itinerary.com |
3635ecdb0e8975b7934f000f5936535963916179 | 912d38b91ffcdae2ddfa6ce2054f1f4002cf46a9 | /codeforce_650_div3_A.cpp | 1c32eea79b1f0c40377f9ad5f8ebb2a5f3d5ed23 | [] | no_license | anuragsinghjadon/data-structure | 4d6867e56f9184014ac921d94f2f1e5f49258f7a | 54e86933b3541deb0cd012e84d12dbd5a1f95f6f | refs/heads/master | 2021-04-07T14:48:29.495249 | 2021-02-12T16:44:14 | 2021-02-12T16:44:14 | 248,684,091 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 252 | cpp | #include<bits/stdc++.h>
using namespace std;
int main()
{
int t;
cin>>t;
while(t--)
{
string a, b;
cin>>b;
a = b.substr(0,2);
for(int i=3;i<b.length();i+=2)
{
a+=b[i];
}
cout<<a<<endl;
}
return 0;
}
| [
"anurags.jadon10@gmail.com"
] | anurags.jadon10@gmail.com |
1b83fad12729a9f1fd5ac0cb0ec00cbf35ee4b8b | fc5a6b245753d3821e07c7bd41dc5032e9b5f747 | /Lab7/Cartesian.cpp | c418b9eae300dc51daf0ab384c99d410d441eb93 | [] | no_license | FAFIERROJR/CECS282 | 6d7aea800f1330dabc4989f82365aa44ccfe7061 | b2a4b9f44bd195ebce1d5226685d07ace2b6e3bc | refs/heads/master | 2021-03-22T04:36:45.444441 | 2016-12-08T19:46:55 | 2016-12-08T19:46:55 | 66,624,908 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 871 | cpp | //CECS 282
//Lab 7
//Francisco Fierro
#include <iostream>
#include <math.h>
#include "Polar.h"
#include "Cartesian.h"
using namespace std;
Cartesian::Cartesian(){
xCoor = 0;
yCoor = 0;
}
Cartesian::Cartesian(double x, double y): xCoor(x), yCoor(y){}
Cartesian::Cartesian(Polar p){
//convert polar to rect coor
xCoor = p.getRadius() * cos(p.getAngle());
yCoor = p.getRadius() * sin(p.getAngle());
}
double Cartesian::getX(){
return xCoor;
}
double Cartesian::getY(){
return yCoor;
}
Cartesian operator +(Cartesian c1, Cartesian c2){
Cartesian result;
//add rect coor
result.xCoor = c1.xCoor + c2.xCoor;
result.yCoor = c2.yCoor + c1.yCoor;
return result;
}
Cartesian Cartesian::operator =(Polar p){
//convert polar to rect coor
xCoor = p.getRadius() * cos(p.getAngle());
yCoor = p.getRadius() * sin(p.getAngle());
return Cartesian(xCoor, yCoor);
}
| [
"f.a.fierrojr@gmail.com"
] | f.a.fierrojr@gmail.com |
3234523ecb4c80473a77786a7a4ea75a4f2c36e6 | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/rtorrent/gumtree/rtorrent_new_log_167.cpp | 44916e8641b5dabc84b8da8705609cfa485b744f | [] | no_license | niuxu18/logTracker-old | 97543445ea7e414ed40bdc681239365d33418975 | f2b060f13a0295387fe02187543db124916eb446 | refs/heads/master | 2021-09-13T21:39:37.686481 | 2017-12-11T03:36:34 | 2017-12-11T03:36:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 258 | cpp | print_buffer(first, last, " Rate: %5.1f / %5.1f KB Uploaded: %7.1f MB",
(double)d->download()->up_rate()->rate() / (1 << 10),
(double)d->download()->down_rate()->rate() / (1 << 10),
(double)d->download()->up_rate()->total() / (1 << 20)); | [
"993273596@qq.com"
] | 993273596@qq.com |
0cf416838768b3f382fae46f2882a423140f5c3c | 3cdfd2ecd8dcc40d85ab4a603023dc54a0c17d0b | /4.2 Unlabeled_ar/OpenGL_01/src/PatternDetector.hpp | 45ccf4c16e06e77584bf86b2ef485e5fa4e28b79 | [] | no_license | WavenZ/Image2019 | 4c26c6bcd928a9e06faaf67b4f490fa8c75a1767 | e77faad1293362a0774996bb3c98a4690da32513 | refs/heads/master | 2020-05-24T08:21:08.711409 | 2019-05-25T02:40:26 | 2019-05-25T02:40:26 | 187,180,283 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,464 | hpp | /*****************************************************************************
* Markerless AR desktop application.
******************************************************************************
* by Khvedchenia Ievgen, 5th Dec 2012
* http://computer-vision-talks.com
******************************************************************************
* Ch3 of the book "Mastering OpenCV with Practical Computer Vision Projects"
* Copyright Packt Publishing 2012.
* http://www.packtpub.com/cool-projects-with-opencv/book
*****************************************************************************/
#ifndef EXAMPLE_MARKERLESS_AR_PATTERNDETECTOR_HPP
#define EXAMPLE_MARKERLESS_AR_PATTERNDETECTOR_HPP
////////////////////////////////////////////////////////////////////
// File includes:
#include "Pattern.hpp"
#include <opencv2/core/core.hpp>
#include <opencv2/opencv.hpp>
#include <opencv2/features2d/features2d.hpp>
#include <opencv2/xfeatures2d/nonfree.hpp>
#include <opencv2/xfeatures2d.hpp>
class PatternDetector
{
public:
/**
* Initialize a pattern detector with specified feature detector, descriptor extraction and matching algorithm
*/
PatternDetector
(
cv::Ptr<cv::FeatureDetector> detector = cv::ORB::create(1000),
cv::Ptr<cv::DescriptorExtractor> extractor = cv::xfeatures2d::FREAK::create(false, false),
cv::Ptr<cv::DescriptorMatcher> matcher = new cv::BFMatcher(cv::NORM_HAMMING, true),
bool enableRatioTest = false
);
/**
*
*/
void train(const Pattern& pattern);
/**
* Initialize Pattern structure from the input image.
* This function finds the feature points and extract descriptors for them.
*/
void buildPatternFromImage(const cv::Mat& image, Pattern& pattern) const;
/**
* Tries to find a @pattern object on given @image.
* The function returns true if succeeded and store the result (pattern 2d location, homography) in @info.
*/
bool findPattern(const cv::Mat& image, PatternTrackingInfo& info);
bool enableRatioTest;
bool enableHomographyRefinement;
float homographyReprojectionThreshold;
protected:
bool extractFeatures(const cv::Mat& image, std::vector<cv::KeyPoint>& keypoints, cv::Mat& descriptors) const;
void getMatches(const cv::Mat& queryDescriptors, std::vector<cv::DMatch>& matches);
/**
* Get the gray image from the input image.
* Function performs necessary color conversion if necessary
* Supported input images types - 1 channel (no conversion is done), 3 channels (assuming BGR) and 4 channels (assuming BGRA).
*/
static void getGray(const cv::Mat& image, cv::Mat& gray);
/**
*
*/
static bool refineMatchesWithHomography(
const std::vector<cv::KeyPoint>& queryKeypoints,
const std::vector<cv::KeyPoint>& trainKeypoints,
float reprojectionThreshold,
std::vector<cv::DMatch>& matches,
cv::Mat& homography);
private:
std::vector<cv::KeyPoint> m_queryKeypoints;
cv::Mat m_queryDescriptors;
std::vector<cv::DMatch> m_matches;
std::vector< std::vector<cv::DMatch> > m_knnMatches;
cv::Mat m_grayImg;
cv::Mat m_warpedImg;
cv::Mat m_roughHomography;
cv::Mat m_refinedHomography;
Pattern m_pattern;
cv::Ptr<cv::FeatureDetector> m_detector;
cv::Ptr<cv::DescriptorExtractor> m_extractor;
cv::Ptr<cv::DescriptorMatcher> m_matcher;
};
#endif | [
"1435595081@qq.com"
] | 1435595081@qq.com |
374e412ed4693fac0298de34d9e2d4bafb5959c1 | dd80a584130ef1a0333429ba76c1cee0eb40df73 | /external/clang/lib/Sema/SemaInit.cpp | 407255077dcdaa627bc923e9ebb7b26b57e669a3 | [
"MIT",
"NCSA"
] | permissive | karunmatharu/Android-4.4-Pay-by-Data | 466f4e169ede13c5835424c78e8c30ce58f885c1 | fcb778e92d4aad525ef7a995660580f948d40bc9 | refs/heads/master | 2021-03-24T13:33:01.721868 | 2017-02-18T17:48:49 | 2017-02-18T17:48:49 | 81,847,777 | 0 | 2 | MIT | 2020-03-09T00:02:12 | 2017-02-13T16:47:00 | null | UTF-8 | C++ | false | false | 275,966 | cpp | //===--- SemaInit.cpp - Semantic Analysis for Initializers ----------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file implements semantic analysis for initializers.
//
//===----------------------------------------------------------------------===//
#include "clang/Sema/Initialization.h"
#include "clang/AST/ASTContext.h"
#include "clang/AST/DeclObjC.h"
#include "clang/AST/ExprCXX.h"
#include "clang/AST/ExprObjC.h"
#include "clang/AST/TypeLoc.h"
#include "clang/Lex/Preprocessor.h"
#include "clang/Sema/Designator.h"
#include "clang/Sema/Lookup.h"
#include "clang/Sema/SemaInternal.h"
#include "llvm/ADT/APInt.h"
#include "llvm/ADT/SmallString.h"
#include "llvm/Support/ErrorHandling.h"
#include "llvm/Support/raw_ostream.h"
#include <map>
using namespace clang;
//===----------------------------------------------------------------------===//
// Sema Initialization Checking
//===----------------------------------------------------------------------===//
/// \brief Check whether T is compatible with a wide character type (wchar_t,
/// char16_t or char32_t).
static bool IsWideCharCompatible(QualType T, ASTContext &Context) {
if (Context.typesAreCompatible(Context.getWideCharType(), T))
return true;
if (Context.getLangOpts().CPlusPlus || Context.getLangOpts().C11) {
return Context.typesAreCompatible(Context.Char16Ty, T) ||
Context.typesAreCompatible(Context.Char32Ty, T);
}
return false;
}
enum StringInitFailureKind {
SIF_None,
SIF_NarrowStringIntoWideChar,
SIF_WideStringIntoChar,
SIF_IncompatWideStringIntoWideChar,
SIF_Other
};
/// \brief Check whether the array of type AT can be initialized by the Init
/// expression by means of string initialization. Returns SIF_None if so,
/// otherwise returns a StringInitFailureKind that describes why the
/// initialization would not work.
static StringInitFailureKind IsStringInit(Expr *Init, const ArrayType *AT,
ASTContext &Context) {
if (!isa<ConstantArrayType>(AT) && !isa<IncompleteArrayType>(AT))
return SIF_Other;
// See if this is a string literal or @encode.
Init = Init->IgnoreParens();
// Handle @encode, which is a narrow string.
if (isa<ObjCEncodeExpr>(Init) && AT->getElementType()->isCharType())
return SIF_None;
// Otherwise we can only handle string literals.
StringLiteral *SL = dyn_cast<StringLiteral>(Init);
if (SL == 0)
return SIF_Other;
const QualType ElemTy =
Context.getCanonicalType(AT->getElementType()).getUnqualifiedType();
switch (SL->getKind()) {
case StringLiteral::Ascii:
case StringLiteral::UTF8:
// char array can be initialized with a narrow string.
// Only allow char x[] = "foo"; not char x[] = L"foo";
if (ElemTy->isCharType())
return SIF_None;
if (IsWideCharCompatible(ElemTy, Context))
return SIF_NarrowStringIntoWideChar;
return SIF_Other;
// C99 6.7.8p15 (with correction from DR343), or C11 6.7.9p15:
// "An array with element type compatible with a qualified or unqualified
// version of wchar_t, char16_t, or char32_t may be initialized by a wide
// string literal with the corresponding encoding prefix (L, u, or U,
// respectively), optionally enclosed in braces.
case StringLiteral::UTF16:
if (Context.typesAreCompatible(Context.Char16Ty, ElemTy))
return SIF_None;
if (ElemTy->isCharType())
return SIF_WideStringIntoChar;
if (IsWideCharCompatible(ElemTy, Context))
return SIF_IncompatWideStringIntoWideChar;
return SIF_Other;
case StringLiteral::UTF32:
if (Context.typesAreCompatible(Context.Char32Ty, ElemTy))
return SIF_None;
if (ElemTy->isCharType())
return SIF_WideStringIntoChar;
if (IsWideCharCompatible(ElemTy, Context))
return SIF_IncompatWideStringIntoWideChar;
return SIF_Other;
case StringLiteral::Wide:
if (Context.typesAreCompatible(Context.getWideCharType(), ElemTy))
return SIF_None;
if (ElemTy->isCharType())
return SIF_WideStringIntoChar;
if (IsWideCharCompatible(ElemTy, Context))
return SIF_IncompatWideStringIntoWideChar;
return SIF_Other;
}
llvm_unreachable("missed a StringLiteral kind?");
}
static StringInitFailureKind IsStringInit(Expr *init, QualType declType,
ASTContext &Context) {
const ArrayType *arrayType = Context.getAsArrayType(declType);
if (!arrayType)
return SIF_Other;
return IsStringInit(init, arrayType, Context);
}
/// Update the type of a string literal, including any surrounding parentheses,
/// to match the type of the object which it is initializing.
static void updateStringLiteralType(Expr *E, QualType Ty) {
while (true) {
E->setType(Ty);
if (isa<StringLiteral>(E) || isa<ObjCEncodeExpr>(E))
break;
else if (ParenExpr *PE = dyn_cast<ParenExpr>(E))
E = PE->getSubExpr();
else if (UnaryOperator *UO = dyn_cast<UnaryOperator>(E))
E = UO->getSubExpr();
else if (GenericSelectionExpr *GSE = dyn_cast<GenericSelectionExpr>(E))
E = GSE->getResultExpr();
else
llvm_unreachable("unexpected expr in string literal init");
}
}
static void CheckStringInit(Expr *Str, QualType &DeclT, const ArrayType *AT,
Sema &S) {
// Get the length of the string as parsed.
uint64_t StrLength =
cast<ConstantArrayType>(Str->getType())->getSize().getZExtValue();
if (const IncompleteArrayType *IAT = dyn_cast<IncompleteArrayType>(AT)) {
// C99 6.7.8p14. We have an array of character type with unknown size
// being initialized to a string literal.
llvm::APInt ConstVal(32, StrLength);
// Return a new array type (C99 6.7.8p22).
DeclT = S.Context.getConstantArrayType(IAT->getElementType(),
ConstVal,
ArrayType::Normal, 0);
updateStringLiteralType(Str, DeclT);
return;
}
const ConstantArrayType *CAT = cast<ConstantArrayType>(AT);
// We have an array of character type with known size. However,
// the size may be smaller or larger than the string we are initializing.
// FIXME: Avoid truncation for 64-bit length strings.
if (S.getLangOpts().CPlusPlus) {
if (StringLiteral *SL = dyn_cast<StringLiteral>(Str->IgnoreParens())) {
// For Pascal strings it's OK to strip off the terminating null character,
// so the example below is valid:
//
// unsigned char a[2] = "\pa";
if (SL->isPascal())
StrLength--;
}
// [dcl.init.string]p2
if (StrLength > CAT->getSize().getZExtValue())
S.Diag(Str->getLocStart(),
diag::err_initializer_string_for_char_array_too_long)
<< Str->getSourceRange();
} else {
// C99 6.7.8p14.
if (StrLength-1 > CAT->getSize().getZExtValue())
S.Diag(Str->getLocStart(),
diag::warn_initializer_string_for_char_array_too_long)
<< Str->getSourceRange();
}
// Set the type to the actual size that we are initializing. If we have
// something like:
// char x[1] = "foo";
// then this will set the string literal's type to char[1].
updateStringLiteralType(Str, DeclT);
}
//===----------------------------------------------------------------------===//
// Semantic checking for initializer lists.
//===----------------------------------------------------------------------===//
/// @brief Semantic checking for initializer lists.
///
/// The InitListChecker class contains a set of routines that each
/// handle the initialization of a certain kind of entity, e.g.,
/// arrays, vectors, struct/union types, scalars, etc. The
/// InitListChecker itself performs a recursive walk of the subobject
/// structure of the type to be initialized, while stepping through
/// the initializer list one element at a time. The IList and Index
/// parameters to each of the Check* routines contain the active
/// (syntactic) initializer list and the index into that initializer
/// list that represents the current initializer. Each routine is
/// responsible for moving that Index forward as it consumes elements.
///
/// Each Check* routine also has a StructuredList/StructuredIndex
/// arguments, which contains the current "structured" (semantic)
/// initializer list and the index into that initializer list where we
/// are copying initializers as we map them over to the semantic
/// list. Once we have completed our recursive walk of the subobject
/// structure, we will have constructed a full semantic initializer
/// list.
///
/// C99 designators cause changes in the initializer list traversal,
/// because they make the initialization "jump" into a specific
/// subobject and then continue the initialization from that
/// point. CheckDesignatedInitializer() recursively steps into the
/// designated subobject and manages backing out the recursion to
/// initialize the subobjects after the one designated.
namespace {
class InitListChecker {
Sema &SemaRef;
bool hadError;
bool VerifyOnly; // no diagnostics, no structure building
llvm::DenseMap<InitListExpr *, InitListExpr *> SyntacticToSemantic;
InitListExpr *FullyStructuredList;
void CheckImplicitInitList(const InitializedEntity &Entity,
InitListExpr *ParentIList, QualType T,
unsigned &Index, InitListExpr *StructuredList,
unsigned &StructuredIndex);
void CheckExplicitInitList(const InitializedEntity &Entity,
InitListExpr *IList, QualType &T,
unsigned &Index, InitListExpr *StructuredList,
unsigned &StructuredIndex,
bool TopLevelObject = false);
void CheckListElementTypes(const InitializedEntity &Entity,
InitListExpr *IList, QualType &DeclType,
bool SubobjectIsDesignatorContext,
unsigned &Index,
InitListExpr *StructuredList,
unsigned &StructuredIndex,
bool TopLevelObject = false);
void CheckSubElementType(const InitializedEntity &Entity,
InitListExpr *IList, QualType ElemType,
unsigned &Index,
InitListExpr *StructuredList,
unsigned &StructuredIndex);
void CheckComplexType(const InitializedEntity &Entity,
InitListExpr *IList, QualType DeclType,
unsigned &Index,
InitListExpr *StructuredList,
unsigned &StructuredIndex);
void CheckScalarType(const InitializedEntity &Entity,
InitListExpr *IList, QualType DeclType,
unsigned &Index,
InitListExpr *StructuredList,
unsigned &StructuredIndex);
void CheckReferenceType(const InitializedEntity &Entity,
InitListExpr *IList, QualType DeclType,
unsigned &Index,
InitListExpr *StructuredList,
unsigned &StructuredIndex);
void CheckVectorType(const InitializedEntity &Entity,
InitListExpr *IList, QualType DeclType, unsigned &Index,
InitListExpr *StructuredList,
unsigned &StructuredIndex);
void CheckStructUnionTypes(const InitializedEntity &Entity,
InitListExpr *IList, QualType DeclType,
RecordDecl::field_iterator Field,
bool SubobjectIsDesignatorContext, unsigned &Index,
InitListExpr *StructuredList,
unsigned &StructuredIndex,
bool TopLevelObject = false);
void CheckArrayType(const InitializedEntity &Entity,
InitListExpr *IList, QualType &DeclType,
llvm::APSInt elementIndex,
bool SubobjectIsDesignatorContext, unsigned &Index,
InitListExpr *StructuredList,
unsigned &StructuredIndex);
bool CheckDesignatedInitializer(const InitializedEntity &Entity,
InitListExpr *IList, DesignatedInitExpr *DIE,
unsigned DesigIdx,
QualType &CurrentObjectType,
RecordDecl::field_iterator *NextField,
llvm::APSInt *NextElementIndex,
unsigned &Index,
InitListExpr *StructuredList,
unsigned &StructuredIndex,
bool FinishSubobjectInit,
bool TopLevelObject);
InitListExpr *getStructuredSubobjectInit(InitListExpr *IList, unsigned Index,
QualType CurrentObjectType,
InitListExpr *StructuredList,
unsigned StructuredIndex,
SourceRange InitRange);
void UpdateStructuredListElement(InitListExpr *StructuredList,
unsigned &StructuredIndex,
Expr *expr);
int numArrayElements(QualType DeclType);
int numStructUnionElements(QualType DeclType);
void FillInValueInitForField(unsigned Init, FieldDecl *Field,
const InitializedEntity &ParentEntity,
InitListExpr *ILE, bool &RequiresSecondPass);
void FillInValueInitializations(const InitializedEntity &Entity,
InitListExpr *ILE, bool &RequiresSecondPass);
bool CheckFlexibleArrayInit(const InitializedEntity &Entity,
Expr *InitExpr, FieldDecl *Field,
bool TopLevelObject);
void CheckValueInitializable(const InitializedEntity &Entity);
public:
InitListChecker(Sema &S, const InitializedEntity &Entity,
InitListExpr *IL, QualType &T, bool VerifyOnly);
bool HadError() { return hadError; }
// @brief Retrieves the fully-structured initializer list used for
// semantic analysis and code generation.
InitListExpr *getFullyStructuredList() const { return FullyStructuredList; }
};
} // end anonymous namespace
void InitListChecker::CheckValueInitializable(const InitializedEntity &Entity) {
assert(VerifyOnly &&
"CheckValueInitializable is only inteded for verification mode.");
SourceLocation Loc;
InitializationKind Kind = InitializationKind::CreateValue(Loc, Loc, Loc,
true);
InitializationSequence InitSeq(SemaRef, Entity, Kind, None);
if (InitSeq.Failed())
hadError = true;
}
void InitListChecker::FillInValueInitForField(unsigned Init, FieldDecl *Field,
const InitializedEntity &ParentEntity,
InitListExpr *ILE,
bool &RequiresSecondPass) {
SourceLocation Loc = ILE->getLocStart();
unsigned NumInits = ILE->getNumInits();
InitializedEntity MemberEntity
= InitializedEntity::InitializeMember(Field, &ParentEntity);
if (Init >= NumInits || !ILE->getInit(Init)) {
// If there's no explicit initializer but we have a default initializer, use
// that. This only happens in C++1y, since classes with default
// initializers are not aggregates in C++11.
if (Field->hasInClassInitializer()) {
Expr *DIE = CXXDefaultInitExpr::Create(SemaRef.Context,
ILE->getRBraceLoc(), Field);
if (Init < NumInits)
ILE->setInit(Init, DIE);
else {
ILE->updateInit(SemaRef.Context, Init, DIE);
RequiresSecondPass = true;
}
return;
}
// FIXME: We probably don't need to handle references
// specially here, since value-initialization of references is
// handled in InitializationSequence.
if (Field->getType()->isReferenceType()) {
// C++ [dcl.init.aggr]p9:
// If an incomplete or empty initializer-list leaves a
// member of reference type uninitialized, the program is
// ill-formed.
SemaRef.Diag(Loc, diag::err_init_reference_member_uninitialized)
<< Field->getType()
<< ILE->getSyntacticForm()->getSourceRange();
SemaRef.Diag(Field->getLocation(),
diag::note_uninit_reference_member);
hadError = true;
return;
}
InitializationKind Kind = InitializationKind::CreateValue(Loc, Loc, Loc,
true);
InitializationSequence InitSeq(SemaRef, MemberEntity, Kind, None);
if (!InitSeq) {
InitSeq.Diagnose(SemaRef, MemberEntity, Kind, None);
hadError = true;
return;
}
ExprResult MemberInit
= InitSeq.Perform(SemaRef, MemberEntity, Kind, None);
if (MemberInit.isInvalid()) {
hadError = true;
return;
}
if (hadError) {
// Do nothing
} else if (Init < NumInits) {
ILE->setInit(Init, MemberInit.takeAs<Expr>());
} else if (InitSeq.isConstructorInitialization()) {
// Value-initialization requires a constructor call, so
// extend the initializer list to include the constructor
// call and make a note that we'll need to take another pass
// through the initializer list.
ILE->updateInit(SemaRef.Context, Init, MemberInit.takeAs<Expr>());
RequiresSecondPass = true;
}
} else if (InitListExpr *InnerILE
= dyn_cast<InitListExpr>(ILE->getInit(Init)))
FillInValueInitializations(MemberEntity, InnerILE,
RequiresSecondPass);
}
/// Recursively replaces NULL values within the given initializer list
/// with expressions that perform value-initialization of the
/// appropriate type.
void
InitListChecker::FillInValueInitializations(const InitializedEntity &Entity,
InitListExpr *ILE,
bool &RequiresSecondPass) {
assert((ILE->getType() != SemaRef.Context.VoidTy) &&
"Should not have void type");
SourceLocation Loc = ILE->getLocStart();
if (ILE->getSyntacticForm())
Loc = ILE->getSyntacticForm()->getLocStart();
if (const RecordType *RType = ILE->getType()->getAs<RecordType>()) {
const RecordDecl *RDecl = RType->getDecl();
if (RDecl->isUnion() && ILE->getInitializedFieldInUnion())
FillInValueInitForField(0, ILE->getInitializedFieldInUnion(),
Entity, ILE, RequiresSecondPass);
else if (RDecl->isUnion() && isa<CXXRecordDecl>(RDecl) &&
cast<CXXRecordDecl>(RDecl)->hasInClassInitializer()) {
for (RecordDecl::field_iterator Field = RDecl->field_begin(),
FieldEnd = RDecl->field_end();
Field != FieldEnd; ++Field) {
if (Field->hasInClassInitializer()) {
FillInValueInitForField(0, *Field, Entity, ILE, RequiresSecondPass);
break;
}
}
} else {
unsigned Init = 0;
for (RecordDecl::field_iterator Field = RDecl->field_begin(),
FieldEnd = RDecl->field_end();
Field != FieldEnd; ++Field) {
if (Field->isUnnamedBitfield())
continue;
if (hadError)
return;
FillInValueInitForField(Init, *Field, Entity, ILE, RequiresSecondPass);
if (hadError)
return;
++Init;
// Only look at the first initialization of a union.
if (RDecl->isUnion())
break;
}
}
return;
}
QualType ElementType;
InitializedEntity ElementEntity = Entity;
unsigned NumInits = ILE->getNumInits();
unsigned NumElements = NumInits;
if (const ArrayType *AType = SemaRef.Context.getAsArrayType(ILE->getType())) {
ElementType = AType->getElementType();
if (const ConstantArrayType *CAType = dyn_cast<ConstantArrayType>(AType))
NumElements = CAType->getSize().getZExtValue();
ElementEntity = InitializedEntity::InitializeElement(SemaRef.Context,
0, Entity);
} else if (const VectorType *VType = ILE->getType()->getAs<VectorType>()) {
ElementType = VType->getElementType();
NumElements = VType->getNumElements();
ElementEntity = InitializedEntity::InitializeElement(SemaRef.Context,
0, Entity);
} else
ElementType = ILE->getType();
for (unsigned Init = 0; Init != NumElements; ++Init) {
if (hadError)
return;
if (ElementEntity.getKind() == InitializedEntity::EK_ArrayElement ||
ElementEntity.getKind() == InitializedEntity::EK_VectorElement)
ElementEntity.setElementIndex(Init);
Expr *InitExpr = (Init < NumInits ? ILE->getInit(Init) : 0);
if (!InitExpr && !ILE->hasArrayFiller()) {
InitializationKind Kind = InitializationKind::CreateValue(Loc, Loc, Loc,
true);
InitializationSequence InitSeq(SemaRef, ElementEntity, Kind, None);
if (!InitSeq) {
InitSeq.Diagnose(SemaRef, ElementEntity, Kind, None);
hadError = true;
return;
}
ExprResult ElementInit
= InitSeq.Perform(SemaRef, ElementEntity, Kind, None);
if (ElementInit.isInvalid()) {
hadError = true;
return;
}
if (hadError) {
// Do nothing
} else if (Init < NumInits) {
// For arrays, just set the expression used for value-initialization
// of the "holes" in the array.
if (ElementEntity.getKind() == InitializedEntity::EK_ArrayElement)
ILE->setArrayFiller(ElementInit.takeAs<Expr>());
else
ILE->setInit(Init, ElementInit.takeAs<Expr>());
} else {
// For arrays, just set the expression used for value-initialization
// of the rest of elements and exit.
if (ElementEntity.getKind() == InitializedEntity::EK_ArrayElement) {
ILE->setArrayFiller(ElementInit.takeAs<Expr>());
return;
}
if (InitSeq.isConstructorInitialization()) {
// Value-initialization requires a constructor call, so
// extend the initializer list to include the constructor
// call and make a note that we'll need to take another pass
// through the initializer list.
ILE->updateInit(SemaRef.Context, Init, ElementInit.takeAs<Expr>());
RequiresSecondPass = true;
}
}
} else if (InitListExpr *InnerILE
= dyn_cast_or_null<InitListExpr>(InitExpr))
FillInValueInitializations(ElementEntity, InnerILE, RequiresSecondPass);
}
}
InitListChecker::InitListChecker(Sema &S, const InitializedEntity &Entity,
InitListExpr *IL, QualType &T,
bool VerifyOnly)
: SemaRef(S), VerifyOnly(VerifyOnly) {
hadError = false;
unsigned newIndex = 0;
unsigned newStructuredIndex = 0;
FullyStructuredList
= getStructuredSubobjectInit(IL, newIndex, T, 0, 0, IL->getSourceRange());
CheckExplicitInitList(Entity, IL, T, newIndex,
FullyStructuredList, newStructuredIndex,
/*TopLevelObject=*/true);
if (!hadError && !VerifyOnly) {
bool RequiresSecondPass = false;
FillInValueInitializations(Entity, FullyStructuredList, RequiresSecondPass);
if (RequiresSecondPass && !hadError)
FillInValueInitializations(Entity, FullyStructuredList,
RequiresSecondPass);
}
}
int InitListChecker::numArrayElements(QualType DeclType) {
// FIXME: use a proper constant
int maxElements = 0x7FFFFFFF;
if (const ConstantArrayType *CAT =
SemaRef.Context.getAsConstantArrayType(DeclType)) {
maxElements = static_cast<int>(CAT->getSize().getZExtValue());
}
return maxElements;
}
int InitListChecker::numStructUnionElements(QualType DeclType) {
RecordDecl *structDecl = DeclType->getAs<RecordType>()->getDecl();
int InitializableMembers = 0;
for (RecordDecl::field_iterator
Field = structDecl->field_begin(),
FieldEnd = structDecl->field_end();
Field != FieldEnd; ++Field) {
if (!Field->isUnnamedBitfield())
++InitializableMembers;
}
if (structDecl->isUnion())
return std::min(InitializableMembers, 1);
return InitializableMembers - structDecl->hasFlexibleArrayMember();
}
void InitListChecker::CheckImplicitInitList(const InitializedEntity &Entity,
InitListExpr *ParentIList,
QualType T, unsigned &Index,
InitListExpr *StructuredList,
unsigned &StructuredIndex) {
int maxElements = 0;
if (T->isArrayType())
maxElements = numArrayElements(T);
else if (T->isRecordType())
maxElements = numStructUnionElements(T);
else if (T->isVectorType())
maxElements = T->getAs<VectorType>()->getNumElements();
else
llvm_unreachable("CheckImplicitInitList(): Illegal type");
if (maxElements == 0) {
if (!VerifyOnly)
SemaRef.Diag(ParentIList->getInit(Index)->getLocStart(),
diag::err_implicit_empty_initializer);
++Index;
hadError = true;
return;
}
// Build a structured initializer list corresponding to this subobject.
InitListExpr *StructuredSubobjectInitList
= getStructuredSubobjectInit(ParentIList, Index, T, StructuredList,
StructuredIndex,
SourceRange(ParentIList->getInit(Index)->getLocStart(),
ParentIList->getSourceRange().getEnd()));
unsigned StructuredSubobjectInitIndex = 0;
// Check the element types and build the structural subobject.
unsigned StartIndex = Index;
CheckListElementTypes(Entity, ParentIList, T,
/*SubobjectIsDesignatorContext=*/false, Index,
StructuredSubobjectInitList,
StructuredSubobjectInitIndex);
if (!VerifyOnly) {
StructuredSubobjectInitList->setType(T);
unsigned EndIndex = (Index == StartIndex? StartIndex : Index - 1);
// Update the structured sub-object initializer so that it's ending
// range corresponds with the end of the last initializer it used.
if (EndIndex < ParentIList->getNumInits()) {
SourceLocation EndLoc
= ParentIList->getInit(EndIndex)->getSourceRange().getEnd();
StructuredSubobjectInitList->setRBraceLoc(EndLoc);
}
// Complain about missing braces.
if (T->isArrayType() || T->isRecordType()) {
SemaRef.Diag(StructuredSubobjectInitList->getLocStart(),
diag::warn_missing_braces)
<< StructuredSubobjectInitList->getSourceRange()
<< FixItHint::CreateInsertion(
StructuredSubobjectInitList->getLocStart(), "{")
<< FixItHint::CreateInsertion(
SemaRef.PP.getLocForEndOfToken(
StructuredSubobjectInitList->getLocEnd()),
"}");
}
}
}
void InitListChecker::CheckExplicitInitList(const InitializedEntity &Entity,
InitListExpr *IList, QualType &T,
unsigned &Index,
InitListExpr *StructuredList,
unsigned &StructuredIndex,
bool TopLevelObject) {
assert(IList->isExplicit() && "Illegal Implicit InitListExpr");
if (!VerifyOnly) {
SyntacticToSemantic[IList] = StructuredList;
StructuredList->setSyntacticForm(IList);
}
CheckListElementTypes(Entity, IList, T, /*SubobjectIsDesignatorContext=*/true,
Index, StructuredList, StructuredIndex, TopLevelObject);
if (!VerifyOnly) {
QualType ExprTy = T;
if (!ExprTy->isArrayType())
ExprTy = ExprTy.getNonLValueExprType(SemaRef.Context);
IList->setType(ExprTy);
StructuredList->setType(ExprTy);
}
if (hadError)
return;
if (Index < IList->getNumInits()) {
// We have leftover initializers
if (VerifyOnly) {
if (SemaRef.getLangOpts().CPlusPlus ||
(SemaRef.getLangOpts().OpenCL &&
IList->getType()->isVectorType())) {
hadError = true;
}
return;
}
if (StructuredIndex == 1 &&
IsStringInit(StructuredList->getInit(0), T, SemaRef.Context) ==
SIF_None) {
unsigned DK = diag::warn_excess_initializers_in_char_array_initializer;
if (SemaRef.getLangOpts().CPlusPlus) {
DK = diag::err_excess_initializers_in_char_array_initializer;
hadError = true;
}
// Special-case
SemaRef.Diag(IList->getInit(Index)->getLocStart(), DK)
<< IList->getInit(Index)->getSourceRange();
} else if (!T->isIncompleteType()) {
// Don't complain for incomplete types, since we'll get an error
// elsewhere
QualType CurrentObjectType = StructuredList->getType();
int initKind =
CurrentObjectType->isArrayType()? 0 :
CurrentObjectType->isVectorType()? 1 :
CurrentObjectType->isScalarType()? 2 :
CurrentObjectType->isUnionType()? 3 :
4;
unsigned DK = diag::warn_excess_initializers;
if (SemaRef.getLangOpts().CPlusPlus) {
DK = diag::err_excess_initializers;
hadError = true;
}
if (SemaRef.getLangOpts().OpenCL && initKind == 1) {
DK = diag::err_excess_initializers;
hadError = true;
}
SemaRef.Diag(IList->getInit(Index)->getLocStart(), DK)
<< initKind << IList->getInit(Index)->getSourceRange();
}
}
if (!VerifyOnly && T->isScalarType() && IList->getNumInits() == 1 &&
!TopLevelObject)
SemaRef.Diag(IList->getLocStart(), diag::warn_braces_around_scalar_init)
<< IList->getSourceRange()
<< FixItHint::CreateRemoval(IList->getLocStart())
<< FixItHint::CreateRemoval(IList->getLocEnd());
}
void InitListChecker::CheckListElementTypes(const InitializedEntity &Entity,
InitListExpr *IList,
QualType &DeclType,
bool SubobjectIsDesignatorContext,
unsigned &Index,
InitListExpr *StructuredList,
unsigned &StructuredIndex,
bool TopLevelObject) {
if (DeclType->isAnyComplexType() && SubobjectIsDesignatorContext) {
// Explicitly braced initializer for complex type can be real+imaginary
// parts.
CheckComplexType(Entity, IList, DeclType, Index,
StructuredList, StructuredIndex);
} else if (DeclType->isScalarType()) {
CheckScalarType(Entity, IList, DeclType, Index,
StructuredList, StructuredIndex);
} else if (DeclType->isVectorType()) {
CheckVectorType(Entity, IList, DeclType, Index,
StructuredList, StructuredIndex);
} else if (DeclType->isRecordType()) {
assert(DeclType->isAggregateType() &&
"non-aggregate records should be handed in CheckSubElementType");
RecordDecl *RD = DeclType->getAs<RecordType>()->getDecl();
CheckStructUnionTypes(Entity, IList, DeclType, RD->field_begin(),
SubobjectIsDesignatorContext, Index,
StructuredList, StructuredIndex,
TopLevelObject);
} else if (DeclType->isArrayType()) {
llvm::APSInt Zero(
SemaRef.Context.getTypeSize(SemaRef.Context.getSizeType()),
false);
CheckArrayType(Entity, IList, DeclType, Zero,
SubobjectIsDesignatorContext, Index,
StructuredList, StructuredIndex);
} else if (DeclType->isVoidType() || DeclType->isFunctionType()) {
// This type is invalid, issue a diagnostic.
++Index;
if (!VerifyOnly)
SemaRef.Diag(IList->getLocStart(), diag::err_illegal_initializer_type)
<< DeclType;
hadError = true;
} else if (DeclType->isReferenceType()) {
CheckReferenceType(Entity, IList, DeclType, Index,
StructuredList, StructuredIndex);
} else if (DeclType->isObjCObjectType()) {
if (!VerifyOnly)
SemaRef.Diag(IList->getLocStart(), diag::err_init_objc_class)
<< DeclType;
hadError = true;
} else {
if (!VerifyOnly)
SemaRef.Diag(IList->getLocStart(), diag::err_illegal_initializer_type)
<< DeclType;
hadError = true;
}
}
void InitListChecker::CheckSubElementType(const InitializedEntity &Entity,
InitListExpr *IList,
QualType ElemType,
unsigned &Index,
InitListExpr *StructuredList,
unsigned &StructuredIndex) {
Expr *expr = IList->getInit(Index);
if (ElemType->isReferenceType())
return CheckReferenceType(Entity, IList, ElemType, Index,
StructuredList, StructuredIndex);
if (InitListExpr *SubInitList = dyn_cast<InitListExpr>(expr)) {
if (!ElemType->isRecordType() || ElemType->isAggregateType()) {
unsigned newIndex = 0;
unsigned newStructuredIndex = 0;
InitListExpr *newStructuredList
= getStructuredSubobjectInit(IList, Index, ElemType,
StructuredList, StructuredIndex,
SubInitList->getSourceRange());
CheckExplicitInitList(Entity, SubInitList, ElemType, newIndex,
newStructuredList, newStructuredIndex);
++StructuredIndex;
++Index;
return;
}
assert(SemaRef.getLangOpts().CPlusPlus &&
"non-aggregate records are only possible in C++");
// C++ initialization is handled later.
}
if (ElemType->isScalarType())
return CheckScalarType(Entity, IList, ElemType, Index,
StructuredList, StructuredIndex);
if (const ArrayType *arrayType = SemaRef.Context.getAsArrayType(ElemType)) {
// arrayType can be incomplete if we're initializing a flexible
// array member. There's nothing we can do with the completed
// type here, though.
if (IsStringInit(expr, arrayType, SemaRef.Context) == SIF_None) {
if (!VerifyOnly) {
CheckStringInit(expr, ElemType, arrayType, SemaRef);
UpdateStructuredListElement(StructuredList, StructuredIndex, expr);
}
++Index;
return;
}
// Fall through for subaggregate initialization.
} else if (SemaRef.getLangOpts().CPlusPlus) {
// C++ [dcl.init.aggr]p12:
// All implicit type conversions (clause 4) are considered when
// initializing the aggregate member with an initializer from
// an initializer-list. If the initializer can initialize a
// member, the member is initialized. [...]
// FIXME: Better EqualLoc?
InitializationKind Kind =
InitializationKind::CreateCopy(expr->getLocStart(), SourceLocation());
InitializationSequence Seq(SemaRef, Entity, Kind, expr);
if (Seq) {
if (!VerifyOnly) {
ExprResult Result =
Seq.Perform(SemaRef, Entity, Kind, expr);
if (Result.isInvalid())
hadError = true;
UpdateStructuredListElement(StructuredList, StructuredIndex,
Result.takeAs<Expr>());
}
++Index;
return;
}
// Fall through for subaggregate initialization
} else {
// C99 6.7.8p13:
//
// The initializer for a structure or union object that has
// automatic storage duration shall be either an initializer
// list as described below, or a single expression that has
// compatible structure or union type. In the latter case, the
// initial value of the object, including unnamed members, is
// that of the expression.
ExprResult ExprRes = SemaRef.Owned(expr);
if ((ElemType->isRecordType() || ElemType->isVectorType()) &&
SemaRef.CheckSingleAssignmentConstraints(ElemType, ExprRes,
!VerifyOnly)
== Sema::Compatible) {
if (ExprRes.isInvalid())
hadError = true;
else {
ExprRes = SemaRef.DefaultFunctionArrayLvalueConversion(ExprRes.take());
if (ExprRes.isInvalid())
hadError = true;
}
UpdateStructuredListElement(StructuredList, StructuredIndex,
ExprRes.takeAs<Expr>());
++Index;
return;
}
ExprRes.release();
// Fall through for subaggregate initialization
}
// C++ [dcl.init.aggr]p12:
//
// [...] Otherwise, if the member is itself a non-empty
// subaggregate, brace elision is assumed and the initializer is
// considered for the initialization of the first member of
// the subaggregate.
if (!SemaRef.getLangOpts().OpenCL &&
(ElemType->isAggregateType() || ElemType->isVectorType())) {
CheckImplicitInitList(Entity, IList, ElemType, Index, StructuredList,
StructuredIndex);
++StructuredIndex;
} else {
if (!VerifyOnly) {
// We cannot initialize this element, so let
// PerformCopyInitialization produce the appropriate diagnostic.
SemaRef.PerformCopyInitialization(Entity, SourceLocation(),
SemaRef.Owned(expr),
/*TopLevelOfInitList=*/true);
}
hadError = true;
++Index;
++StructuredIndex;
}
}
void InitListChecker::CheckComplexType(const InitializedEntity &Entity,
InitListExpr *IList, QualType DeclType,
unsigned &Index,
InitListExpr *StructuredList,
unsigned &StructuredIndex) {
assert(Index == 0 && "Index in explicit init list must be zero");
// As an extension, clang supports complex initializers, which initialize
// a complex number component-wise. When an explicit initializer list for
// a complex number contains two two initializers, this extension kicks in:
// it exepcts the initializer list to contain two elements convertible to
// the element type of the complex type. The first element initializes
// the real part, and the second element intitializes the imaginary part.
if (IList->getNumInits() != 2)
return CheckScalarType(Entity, IList, DeclType, Index, StructuredList,
StructuredIndex);
// This is an extension in C. (The builtin _Complex type does not exist
// in the C++ standard.)
if (!SemaRef.getLangOpts().CPlusPlus && !VerifyOnly)
SemaRef.Diag(IList->getLocStart(), diag::ext_complex_component_init)
<< IList->getSourceRange();
// Initialize the complex number.
QualType elementType = DeclType->getAs<ComplexType>()->getElementType();
InitializedEntity ElementEntity =
InitializedEntity::InitializeElement(SemaRef.Context, 0, Entity);
for (unsigned i = 0; i < 2; ++i) {
ElementEntity.setElementIndex(Index);
CheckSubElementType(ElementEntity, IList, elementType, Index,
StructuredList, StructuredIndex);
}
}
void InitListChecker::CheckScalarType(const InitializedEntity &Entity,
InitListExpr *IList, QualType DeclType,
unsigned &Index,
InitListExpr *StructuredList,
unsigned &StructuredIndex) {
if (Index >= IList->getNumInits()) {
if (!VerifyOnly)
SemaRef.Diag(IList->getLocStart(),
SemaRef.getLangOpts().CPlusPlus11 ?
diag::warn_cxx98_compat_empty_scalar_initializer :
diag::err_empty_scalar_initializer)
<< IList->getSourceRange();
hadError = !SemaRef.getLangOpts().CPlusPlus11;
++Index;
++StructuredIndex;
return;
}
Expr *expr = IList->getInit(Index);
if (InitListExpr *SubIList = dyn_cast<InitListExpr>(expr)) {
if (!VerifyOnly)
SemaRef.Diag(SubIList->getLocStart(),
diag::warn_many_braces_around_scalar_init)
<< SubIList->getSourceRange();
CheckScalarType(Entity, SubIList, DeclType, Index, StructuredList,
StructuredIndex);
return;
} else if (isa<DesignatedInitExpr>(expr)) {
if (!VerifyOnly)
SemaRef.Diag(expr->getLocStart(),
diag::err_designator_for_scalar_init)
<< DeclType << expr->getSourceRange();
hadError = true;
++Index;
++StructuredIndex;
return;
}
if (VerifyOnly) {
if (!SemaRef.CanPerformCopyInitialization(Entity, SemaRef.Owned(expr)))
hadError = true;
++Index;
return;
}
ExprResult Result =
SemaRef.PerformCopyInitialization(Entity, expr->getLocStart(),
SemaRef.Owned(expr),
/*TopLevelOfInitList=*/true);
Expr *ResultExpr = 0;
if (Result.isInvalid())
hadError = true; // types weren't compatible.
else {
ResultExpr = Result.takeAs<Expr>();
if (ResultExpr != expr) {
// The type was promoted, update initializer list.
IList->setInit(Index, ResultExpr);
}
}
if (hadError)
++StructuredIndex;
else
UpdateStructuredListElement(StructuredList, StructuredIndex, ResultExpr);
++Index;
}
void InitListChecker::CheckReferenceType(const InitializedEntity &Entity,
InitListExpr *IList, QualType DeclType,
unsigned &Index,
InitListExpr *StructuredList,
unsigned &StructuredIndex) {
if (Index >= IList->getNumInits()) {
// FIXME: It would be wonderful if we could point at the actual member. In
// general, it would be useful to pass location information down the stack,
// so that we know the location (or decl) of the "current object" being
// initialized.
if (!VerifyOnly)
SemaRef.Diag(IList->getLocStart(),
diag::err_init_reference_member_uninitialized)
<< DeclType
<< IList->getSourceRange();
hadError = true;
++Index;
++StructuredIndex;
return;
}
Expr *expr = IList->getInit(Index);
if (isa<InitListExpr>(expr) && !SemaRef.getLangOpts().CPlusPlus11) {
if (!VerifyOnly)
SemaRef.Diag(IList->getLocStart(), diag::err_init_non_aggr_init_list)
<< DeclType << IList->getSourceRange();
hadError = true;
++Index;
++StructuredIndex;
return;
}
if (VerifyOnly) {
if (!SemaRef.CanPerformCopyInitialization(Entity, SemaRef.Owned(expr)))
hadError = true;
++Index;
return;
}
ExprResult Result =
SemaRef.PerformCopyInitialization(Entity, expr->getLocStart(),
SemaRef.Owned(expr),
/*TopLevelOfInitList=*/true);
if (Result.isInvalid())
hadError = true;
expr = Result.takeAs<Expr>();
IList->setInit(Index, expr);
if (hadError)
++StructuredIndex;
else
UpdateStructuredListElement(StructuredList, StructuredIndex, expr);
++Index;
}
void InitListChecker::CheckVectorType(const InitializedEntity &Entity,
InitListExpr *IList, QualType DeclType,
unsigned &Index,
InitListExpr *StructuredList,
unsigned &StructuredIndex) {
const VectorType *VT = DeclType->getAs<VectorType>();
unsigned maxElements = VT->getNumElements();
unsigned numEltsInit = 0;
QualType elementType = VT->getElementType();
if (Index >= IList->getNumInits()) {
// Make sure the element type can be value-initialized.
if (VerifyOnly)
CheckValueInitializable(
InitializedEntity::InitializeElement(SemaRef.Context, 0, Entity));
return;
}
if (!SemaRef.getLangOpts().OpenCL) {
// If the initializing element is a vector, try to copy-initialize
// instead of breaking it apart (which is doomed to failure anyway).
Expr *Init = IList->getInit(Index);
if (!isa<InitListExpr>(Init) && Init->getType()->isVectorType()) {
if (VerifyOnly) {
if (!SemaRef.CanPerformCopyInitialization(Entity, SemaRef.Owned(Init)))
hadError = true;
++Index;
return;
}
ExprResult Result =
SemaRef.PerformCopyInitialization(Entity, Init->getLocStart(),
SemaRef.Owned(Init),
/*TopLevelOfInitList=*/true);
Expr *ResultExpr = 0;
if (Result.isInvalid())
hadError = true; // types weren't compatible.
else {
ResultExpr = Result.takeAs<Expr>();
if (ResultExpr != Init) {
// The type was promoted, update initializer list.
IList->setInit(Index, ResultExpr);
}
}
if (hadError)
++StructuredIndex;
else
UpdateStructuredListElement(StructuredList, StructuredIndex,
ResultExpr);
++Index;
return;
}
InitializedEntity ElementEntity =
InitializedEntity::InitializeElement(SemaRef.Context, 0, Entity);
for (unsigned i = 0; i < maxElements; ++i, ++numEltsInit) {
// Don't attempt to go past the end of the init list
if (Index >= IList->getNumInits()) {
if (VerifyOnly)
CheckValueInitializable(ElementEntity);
break;
}
ElementEntity.setElementIndex(Index);
CheckSubElementType(ElementEntity, IList, elementType, Index,
StructuredList, StructuredIndex);
}
return;
}
InitializedEntity ElementEntity =
InitializedEntity::InitializeElement(SemaRef.Context, 0, Entity);
// OpenCL initializers allows vectors to be constructed from vectors.
for (unsigned i = 0; i < maxElements; ++i) {
// Don't attempt to go past the end of the init list
if (Index >= IList->getNumInits())
break;
ElementEntity.setElementIndex(Index);
QualType IType = IList->getInit(Index)->getType();
if (!IType->isVectorType()) {
CheckSubElementType(ElementEntity, IList, elementType, Index,
StructuredList, StructuredIndex);
++numEltsInit;
} else {
QualType VecType;
const VectorType *IVT = IType->getAs<VectorType>();
unsigned numIElts = IVT->getNumElements();
if (IType->isExtVectorType())
VecType = SemaRef.Context.getExtVectorType(elementType, numIElts);
else
VecType = SemaRef.Context.getVectorType(elementType, numIElts,
IVT->getVectorKind());
CheckSubElementType(ElementEntity, IList, VecType, Index,
StructuredList, StructuredIndex);
numEltsInit += numIElts;
}
}
// OpenCL requires all elements to be initialized.
if (numEltsInit != maxElements) {
if (!VerifyOnly)
SemaRef.Diag(IList->getLocStart(),
diag::err_vector_incorrect_num_initializers)
<< (numEltsInit < maxElements) << maxElements << numEltsInit;
hadError = true;
}
}
void InitListChecker::CheckArrayType(const InitializedEntity &Entity,
InitListExpr *IList, QualType &DeclType,
llvm::APSInt elementIndex,
bool SubobjectIsDesignatorContext,
unsigned &Index,
InitListExpr *StructuredList,
unsigned &StructuredIndex) {
const ArrayType *arrayType = SemaRef.Context.getAsArrayType(DeclType);
// Check for the special-case of initializing an array with a string.
if (Index < IList->getNumInits()) {
if (IsStringInit(IList->getInit(Index), arrayType, SemaRef.Context) ==
SIF_None) {
// We place the string literal directly into the resulting
// initializer list. This is the only place where the structure
// of the structured initializer list doesn't match exactly,
// because doing so would involve allocating one character
// constant for each string.
if (!VerifyOnly) {
CheckStringInit(IList->getInit(Index), DeclType, arrayType, SemaRef);
UpdateStructuredListElement(StructuredList, StructuredIndex,
IList->getInit(Index));
StructuredList->resizeInits(SemaRef.Context, StructuredIndex);
}
++Index;
return;
}
}
if (const VariableArrayType *VAT = dyn_cast<VariableArrayType>(arrayType)) {
// Check for VLAs; in standard C it would be possible to check this
// earlier, but I don't know where clang accepts VLAs (gcc accepts
// them in all sorts of strange places).
if (!VerifyOnly)
SemaRef.Diag(VAT->getSizeExpr()->getLocStart(),
diag::err_variable_object_no_init)
<< VAT->getSizeExpr()->getSourceRange();
hadError = true;
++Index;
++StructuredIndex;
return;
}
// We might know the maximum number of elements in advance.
llvm::APSInt maxElements(elementIndex.getBitWidth(),
elementIndex.isUnsigned());
bool maxElementsKnown = false;
if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(arrayType)) {
maxElements = CAT->getSize();
elementIndex = elementIndex.extOrTrunc(maxElements.getBitWidth());
elementIndex.setIsUnsigned(maxElements.isUnsigned());
maxElementsKnown = true;
}
QualType elementType = arrayType->getElementType();
while (Index < IList->getNumInits()) {
Expr *Init = IList->getInit(Index);
if (DesignatedInitExpr *DIE = dyn_cast<DesignatedInitExpr>(Init)) {
// If we're not the subobject that matches up with the '{' for
// the designator, we shouldn't be handling the
// designator. Return immediately.
if (!SubobjectIsDesignatorContext)
return;
// Handle this designated initializer. elementIndex will be
// updated to be the next array element we'll initialize.
if (CheckDesignatedInitializer(Entity, IList, DIE, 0,
DeclType, 0, &elementIndex, Index,
StructuredList, StructuredIndex, true,
false)) {
hadError = true;
continue;
}
if (elementIndex.getBitWidth() > maxElements.getBitWidth())
maxElements = maxElements.extend(elementIndex.getBitWidth());
else if (elementIndex.getBitWidth() < maxElements.getBitWidth())
elementIndex = elementIndex.extend(maxElements.getBitWidth());
elementIndex.setIsUnsigned(maxElements.isUnsigned());
// If the array is of incomplete type, keep track of the number of
// elements in the initializer.
if (!maxElementsKnown && elementIndex > maxElements)
maxElements = elementIndex;
continue;
}
// If we know the maximum number of elements, and we've already
// hit it, stop consuming elements in the initializer list.
if (maxElementsKnown && elementIndex == maxElements)
break;
InitializedEntity ElementEntity =
InitializedEntity::InitializeElement(SemaRef.Context, StructuredIndex,
Entity);
// Check this element.
CheckSubElementType(ElementEntity, IList, elementType, Index,
StructuredList, StructuredIndex);
++elementIndex;
// If the array is of incomplete type, keep track of the number of
// elements in the initializer.
if (!maxElementsKnown && elementIndex > maxElements)
maxElements = elementIndex;
}
if (!hadError && DeclType->isIncompleteArrayType() && !VerifyOnly) {
// If this is an incomplete array type, the actual type needs to
// be calculated here.
llvm::APSInt Zero(maxElements.getBitWidth(), maxElements.isUnsigned());
if (maxElements == Zero) {
// Sizing an array implicitly to zero is not allowed by ISO C,
// but is supported by GNU.
SemaRef.Diag(IList->getLocStart(),
diag::ext_typecheck_zero_array_size);
}
DeclType = SemaRef.Context.getConstantArrayType(elementType, maxElements,
ArrayType::Normal, 0);
}
if (!hadError && VerifyOnly) {
// Check if there are any members of the array that get value-initialized.
// If so, check if doing that is possible.
// FIXME: This needs to detect holes left by designated initializers too.
if (maxElementsKnown && elementIndex < maxElements)
CheckValueInitializable(InitializedEntity::InitializeElement(
SemaRef.Context, 0, Entity));
}
}
bool InitListChecker::CheckFlexibleArrayInit(const InitializedEntity &Entity,
Expr *InitExpr,
FieldDecl *Field,
bool TopLevelObject) {
// Handle GNU flexible array initializers.
unsigned FlexArrayDiag;
if (isa<InitListExpr>(InitExpr) &&
cast<InitListExpr>(InitExpr)->getNumInits() == 0) {
// Empty flexible array init always allowed as an extension
FlexArrayDiag = diag::ext_flexible_array_init;
} else if (SemaRef.getLangOpts().CPlusPlus) {
// Disallow flexible array init in C++; it is not required for gcc
// compatibility, and it needs work to IRGen correctly in general.
FlexArrayDiag = diag::err_flexible_array_init;
} else if (!TopLevelObject) {
// Disallow flexible array init on non-top-level object
FlexArrayDiag = diag::err_flexible_array_init;
} else if (Entity.getKind() != InitializedEntity::EK_Variable) {
// Disallow flexible array init on anything which is not a variable.
FlexArrayDiag = diag::err_flexible_array_init;
} else if (cast<VarDecl>(Entity.getDecl())->hasLocalStorage()) {
// Disallow flexible array init on local variables.
FlexArrayDiag = diag::err_flexible_array_init;
} else {
// Allow other cases.
FlexArrayDiag = diag::ext_flexible_array_init;
}
if (!VerifyOnly) {
SemaRef.Diag(InitExpr->getLocStart(),
FlexArrayDiag)
<< InitExpr->getLocStart();
SemaRef.Diag(Field->getLocation(), diag::note_flexible_array_member)
<< Field;
}
return FlexArrayDiag != diag::ext_flexible_array_init;
}
void InitListChecker::CheckStructUnionTypes(const InitializedEntity &Entity,
InitListExpr *IList,
QualType DeclType,
RecordDecl::field_iterator Field,
bool SubobjectIsDesignatorContext,
unsigned &Index,
InitListExpr *StructuredList,
unsigned &StructuredIndex,
bool TopLevelObject) {
RecordDecl* structDecl = DeclType->getAs<RecordType>()->getDecl();
// If the record is invalid, some of it's members are invalid. To avoid
// confusion, we forgo checking the intializer for the entire record.
if (structDecl->isInvalidDecl()) {
// Assume it was supposed to consume a single initializer.
++Index;
hadError = true;
return;
}
if (DeclType->isUnionType() && IList->getNumInits() == 0) {
RecordDecl *RD = DeclType->getAs<RecordType>()->getDecl();
// If there's a default initializer, use it.
if (isa<CXXRecordDecl>(RD) && cast<CXXRecordDecl>(RD)->hasInClassInitializer()) {
if (VerifyOnly)
return;
for (RecordDecl::field_iterator FieldEnd = RD->field_end();
Field != FieldEnd; ++Field) {
if (Field->hasInClassInitializer()) {
StructuredList->setInitializedFieldInUnion(*Field);
// FIXME: Actually build a CXXDefaultInitExpr?
return;
}
}
}
// Value-initialize the first named member of the union.
for (RecordDecl::field_iterator FieldEnd = RD->field_end();
Field != FieldEnd; ++Field) {
if (Field->getDeclName()) {
if (VerifyOnly)
CheckValueInitializable(
InitializedEntity::InitializeMember(*Field, &Entity));
else
StructuredList->setInitializedFieldInUnion(*Field);
break;
}
}
return;
}
// If structDecl is a forward declaration, this loop won't do
// anything except look at designated initializers; That's okay,
// because an error should get printed out elsewhere. It might be
// worthwhile to skip over the rest of the initializer, though.
RecordDecl *RD = DeclType->getAs<RecordType>()->getDecl();
RecordDecl::field_iterator FieldEnd = RD->field_end();
bool InitializedSomething = false;
bool CheckForMissingFields = true;
while (Index < IList->getNumInits()) {
Expr *Init = IList->getInit(Index);
if (DesignatedInitExpr *DIE = dyn_cast<DesignatedInitExpr>(Init)) {
// If we're not the subobject that matches up with the '{' for
// the designator, we shouldn't be handling the
// designator. Return immediately.
if (!SubobjectIsDesignatorContext)
return;
// Handle this designated initializer. Field will be updated to
// the next field that we'll be initializing.
if (CheckDesignatedInitializer(Entity, IList, DIE, 0,
DeclType, &Field, 0, Index,
StructuredList, StructuredIndex,
true, TopLevelObject))
hadError = true;
InitializedSomething = true;
// Disable check for missing fields when designators are used.
// This matches gcc behaviour.
CheckForMissingFields = false;
continue;
}
if (Field == FieldEnd) {
// We've run out of fields. We're done.
break;
}
// We've already initialized a member of a union. We're done.
if (InitializedSomething && DeclType->isUnionType())
break;
// If we've hit the flexible array member at the end, we're done.
if (Field->getType()->isIncompleteArrayType())
break;
if (Field->isUnnamedBitfield()) {
// Don't initialize unnamed bitfields, e.g. "int : 20;"
++Field;
continue;
}
// Make sure we can use this declaration.
bool InvalidUse;
if (VerifyOnly)
InvalidUse = !SemaRef.CanUseDecl(*Field);
else
InvalidUse = SemaRef.DiagnoseUseOfDecl(*Field,
IList->getInit(Index)->getLocStart());
if (InvalidUse) {
++Index;
++Field;
hadError = true;
continue;
}
InitializedEntity MemberEntity =
InitializedEntity::InitializeMember(*Field, &Entity);
CheckSubElementType(MemberEntity, IList, Field->getType(), Index,
StructuredList, StructuredIndex);
InitializedSomething = true;
if (DeclType->isUnionType() && !VerifyOnly) {
// Initialize the first field within the union.
StructuredList->setInitializedFieldInUnion(*Field);
}
++Field;
}
// Emit warnings for missing struct field initializers.
if (!VerifyOnly && InitializedSomething && CheckForMissingFields &&
Field != FieldEnd && !Field->getType()->isIncompleteArrayType() &&
!DeclType->isUnionType()) {
// It is possible we have one or more unnamed bitfields remaining.
// Find first (if any) named field and emit warning.
for (RecordDecl::field_iterator it = Field, end = RD->field_end();
it != end; ++it) {
if (!it->isUnnamedBitfield() && !it->hasInClassInitializer()) {
SemaRef.Diag(IList->getSourceRange().getEnd(),
diag::warn_missing_field_initializers) << it->getName();
break;
}
}
}
// Check that any remaining fields can be value-initialized.
if (VerifyOnly && Field != FieldEnd && !DeclType->isUnionType() &&
!Field->getType()->isIncompleteArrayType()) {
// FIXME: Should check for holes left by designated initializers too.
for (; Field != FieldEnd && !hadError; ++Field) {
if (!Field->isUnnamedBitfield() && !Field->hasInClassInitializer())
CheckValueInitializable(
InitializedEntity::InitializeMember(*Field, &Entity));
}
}
if (Field == FieldEnd || !Field->getType()->isIncompleteArrayType() ||
Index >= IList->getNumInits())
return;
if (CheckFlexibleArrayInit(Entity, IList->getInit(Index), *Field,
TopLevelObject)) {
hadError = true;
++Index;
return;
}
InitializedEntity MemberEntity =
InitializedEntity::InitializeMember(*Field, &Entity);
if (isa<InitListExpr>(IList->getInit(Index)))
CheckSubElementType(MemberEntity, IList, Field->getType(), Index,
StructuredList, StructuredIndex);
else
CheckImplicitInitList(MemberEntity, IList, Field->getType(), Index,
StructuredList, StructuredIndex);
}
/// \brief Expand a field designator that refers to a member of an
/// anonymous struct or union into a series of field designators that
/// refers to the field within the appropriate subobject.
///
static void ExpandAnonymousFieldDesignator(Sema &SemaRef,
DesignatedInitExpr *DIE,
unsigned DesigIdx,
IndirectFieldDecl *IndirectField) {
typedef DesignatedInitExpr::Designator Designator;
// Build the replacement designators.
SmallVector<Designator, 4> Replacements;
for (IndirectFieldDecl::chain_iterator PI = IndirectField->chain_begin(),
PE = IndirectField->chain_end(); PI != PE; ++PI) {
if (PI + 1 == PE)
Replacements.push_back(Designator((IdentifierInfo *)0,
DIE->getDesignator(DesigIdx)->getDotLoc(),
DIE->getDesignator(DesigIdx)->getFieldLoc()));
else
Replacements.push_back(Designator((IdentifierInfo *)0, SourceLocation(),
SourceLocation()));
assert(isa<FieldDecl>(*PI));
Replacements.back().setField(cast<FieldDecl>(*PI));
}
// Expand the current designator into the set of replacement
// designators, so we have a full subobject path down to where the
// member of the anonymous struct/union is actually stored.
DIE->ExpandDesignator(SemaRef.Context, DesigIdx, &Replacements[0],
&Replacements[0] + Replacements.size());
}
/// \brief Given an implicit anonymous field, search the IndirectField that
/// corresponds to FieldName.
static IndirectFieldDecl *FindIndirectFieldDesignator(FieldDecl *AnonField,
IdentifierInfo *FieldName) {
if (!FieldName)
return 0;
assert(AnonField->isAnonymousStructOrUnion());
Decl *NextDecl = AnonField->getNextDeclInContext();
while (IndirectFieldDecl *IF =
dyn_cast_or_null<IndirectFieldDecl>(NextDecl)) {
if (FieldName == IF->getAnonField()->getIdentifier())
return IF;
NextDecl = NextDecl->getNextDeclInContext();
}
return 0;
}
static DesignatedInitExpr *CloneDesignatedInitExpr(Sema &SemaRef,
DesignatedInitExpr *DIE) {
unsigned NumIndexExprs = DIE->getNumSubExprs() - 1;
SmallVector<Expr*, 4> IndexExprs(NumIndexExprs);
for (unsigned I = 0; I < NumIndexExprs; ++I)
IndexExprs[I] = DIE->getSubExpr(I + 1);
return DesignatedInitExpr::Create(SemaRef.Context, DIE->designators_begin(),
DIE->size(), IndexExprs,
DIE->getEqualOrColonLoc(),
DIE->usesGNUSyntax(), DIE->getInit());
}
namespace {
// Callback to only accept typo corrections that are for field members of
// the given struct or union.
class FieldInitializerValidatorCCC : public CorrectionCandidateCallback {
public:
explicit FieldInitializerValidatorCCC(RecordDecl *RD)
: Record(RD) {}
virtual bool ValidateCandidate(const TypoCorrection &candidate) {
FieldDecl *FD = candidate.getCorrectionDeclAs<FieldDecl>();
return FD && FD->getDeclContext()->getRedeclContext()->Equals(Record);
}
private:
RecordDecl *Record;
};
}
/// @brief Check the well-formedness of a C99 designated initializer.
///
/// Determines whether the designated initializer @p DIE, which
/// resides at the given @p Index within the initializer list @p
/// IList, is well-formed for a current object of type @p DeclType
/// (C99 6.7.8). The actual subobject that this designator refers to
/// within the current subobject is returned in either
/// @p NextField or @p NextElementIndex (whichever is appropriate).
///
/// @param IList The initializer list in which this designated
/// initializer occurs.
///
/// @param DIE The designated initializer expression.
///
/// @param DesigIdx The index of the current designator.
///
/// @param CurrentObjectType The type of the "current object" (C99 6.7.8p17),
/// into which the designation in @p DIE should refer.
///
/// @param NextField If non-NULL and the first designator in @p DIE is
/// a field, this will be set to the field declaration corresponding
/// to the field named by the designator.
///
/// @param NextElementIndex If non-NULL and the first designator in @p
/// DIE is an array designator or GNU array-range designator, this
/// will be set to the last index initialized by this designator.
///
/// @param Index Index into @p IList where the designated initializer
/// @p DIE occurs.
///
/// @param StructuredList The initializer list expression that
/// describes all of the subobject initializers in the order they'll
/// actually be initialized.
///
/// @returns true if there was an error, false otherwise.
bool
InitListChecker::CheckDesignatedInitializer(const InitializedEntity &Entity,
InitListExpr *IList,
DesignatedInitExpr *DIE,
unsigned DesigIdx,
QualType &CurrentObjectType,
RecordDecl::field_iterator *NextField,
llvm::APSInt *NextElementIndex,
unsigned &Index,
InitListExpr *StructuredList,
unsigned &StructuredIndex,
bool FinishSubobjectInit,
bool TopLevelObject) {
if (DesigIdx == DIE->size()) {
// Check the actual initialization for the designated object type.
bool prevHadError = hadError;
// Temporarily remove the designator expression from the
// initializer list that the child calls see, so that we don't try
// to re-process the designator.
unsigned OldIndex = Index;
IList->setInit(OldIndex, DIE->getInit());
CheckSubElementType(Entity, IList, CurrentObjectType, Index,
StructuredList, StructuredIndex);
// Restore the designated initializer expression in the syntactic
// form of the initializer list.
if (IList->getInit(OldIndex) != DIE->getInit())
DIE->setInit(IList->getInit(OldIndex));
IList->setInit(OldIndex, DIE);
return hadError && !prevHadError;
}
DesignatedInitExpr::Designator *D = DIE->getDesignator(DesigIdx);
bool IsFirstDesignator = (DesigIdx == 0);
if (!VerifyOnly) {
assert((IsFirstDesignator || StructuredList) &&
"Need a non-designated initializer list to start from");
// Determine the structural initializer list that corresponds to the
// current subobject.
StructuredList = IsFirstDesignator? SyntacticToSemantic.lookup(IList)
: getStructuredSubobjectInit(IList, Index, CurrentObjectType,
StructuredList, StructuredIndex,
SourceRange(D->getLocStart(),
DIE->getLocEnd()));
assert(StructuredList && "Expected a structured initializer list");
}
if (D->isFieldDesignator()) {
// C99 6.7.8p7:
//
// If a designator has the form
//
// . identifier
//
// then the current object (defined below) shall have
// structure or union type and the identifier shall be the
// name of a member of that type.
const RecordType *RT = CurrentObjectType->getAs<RecordType>();
if (!RT) {
SourceLocation Loc = D->getDotLoc();
if (Loc.isInvalid())
Loc = D->getFieldLoc();
if (!VerifyOnly)
SemaRef.Diag(Loc, diag::err_field_designator_non_aggr)
<< SemaRef.getLangOpts().CPlusPlus << CurrentObjectType;
++Index;
return true;
}
// Note: we perform a linear search of the fields here, despite
// the fact that we have a faster lookup method, because we always
// need to compute the field's index.
FieldDecl *KnownField = D->getField();
IdentifierInfo *FieldName = D->getFieldName();
unsigned FieldIndex = 0;
RecordDecl::field_iterator
Field = RT->getDecl()->field_begin(),
FieldEnd = RT->getDecl()->field_end();
for (; Field != FieldEnd; ++Field) {
if (Field->isUnnamedBitfield())
continue;
// If we find a field representing an anonymous field, look in the
// IndirectFieldDecl that follow for the designated initializer.
if (!KnownField && Field->isAnonymousStructOrUnion()) {
if (IndirectFieldDecl *IF =
FindIndirectFieldDesignator(*Field, FieldName)) {
// In verify mode, don't modify the original.
if (VerifyOnly)
DIE = CloneDesignatedInitExpr(SemaRef, DIE);
ExpandAnonymousFieldDesignator(SemaRef, DIE, DesigIdx, IF);
D = DIE->getDesignator(DesigIdx);
break;
}
}
if (KnownField && KnownField == *Field)
break;
if (FieldName && FieldName == Field->getIdentifier())
break;
++FieldIndex;
}
if (Field == FieldEnd) {
if (VerifyOnly) {
++Index;
return true; // No typo correction when just trying this out.
}
// There was no normal field in the struct with the designated
// name. Perform another lookup for this name, which may find
// something that we can't designate (e.g., a member function),
// may find nothing, or may find a member of an anonymous
// struct/union.
DeclContext::lookup_result Lookup = RT->getDecl()->lookup(FieldName);
FieldDecl *ReplacementField = 0;
if (Lookup.empty()) {
// Name lookup didn't find anything. Determine whether this
// was a typo for another field name.
FieldInitializerValidatorCCC Validator(RT->getDecl());
TypoCorrection Corrected = SemaRef.CorrectTypo(
DeclarationNameInfo(FieldName, D->getFieldLoc()),
Sema::LookupMemberName, /*Scope=*/0, /*SS=*/0, Validator,
RT->getDecl());
if (Corrected) {
std::string CorrectedStr(
Corrected.getAsString(SemaRef.getLangOpts()));
std::string CorrectedQuotedStr(
Corrected.getQuoted(SemaRef.getLangOpts()));
ReplacementField = Corrected.getCorrectionDeclAs<FieldDecl>();
SemaRef.Diag(D->getFieldLoc(),
diag::err_field_designator_unknown_suggest)
<< FieldName << CurrentObjectType << CorrectedQuotedStr
<< FixItHint::CreateReplacement(D->getFieldLoc(), CorrectedStr);
SemaRef.Diag(ReplacementField->getLocation(),
diag::note_previous_decl) << CorrectedQuotedStr;
hadError = true;
} else {
SemaRef.Diag(D->getFieldLoc(), diag::err_field_designator_unknown)
<< FieldName << CurrentObjectType;
++Index;
return true;
}
}
if (!ReplacementField) {
// Name lookup found something, but it wasn't a field.
SemaRef.Diag(D->getFieldLoc(), diag::err_field_designator_nonfield)
<< FieldName;
SemaRef.Diag(Lookup.front()->getLocation(),
diag::note_field_designator_found);
++Index;
return true;
}
if (!KnownField) {
// The replacement field comes from typo correction; find it
// in the list of fields.
FieldIndex = 0;
Field = RT->getDecl()->field_begin();
for (; Field != FieldEnd; ++Field) {
if (Field->isUnnamedBitfield())
continue;
if (ReplacementField == *Field ||
Field->getIdentifier() == ReplacementField->getIdentifier())
break;
++FieldIndex;
}
}
}
// All of the fields of a union are located at the same place in
// the initializer list.
if (RT->getDecl()->isUnion()) {
FieldIndex = 0;
if (!VerifyOnly)
StructuredList->setInitializedFieldInUnion(*Field);
}
// Make sure we can use this declaration.
bool InvalidUse;
if (VerifyOnly)
InvalidUse = !SemaRef.CanUseDecl(*Field);
else
InvalidUse = SemaRef.DiagnoseUseOfDecl(*Field, D->getFieldLoc());
if (InvalidUse) {
++Index;
return true;
}
if (!VerifyOnly) {
// Update the designator with the field declaration.
D->setField(*Field);
// Make sure that our non-designated initializer list has space
// for a subobject corresponding to this field.
if (FieldIndex >= StructuredList->getNumInits())
StructuredList->resizeInits(SemaRef.Context, FieldIndex + 1);
}
// This designator names a flexible array member.
if (Field->getType()->isIncompleteArrayType()) {
bool Invalid = false;
if ((DesigIdx + 1) != DIE->size()) {
// We can't designate an object within the flexible array
// member (because GCC doesn't allow it).
if (!VerifyOnly) {
DesignatedInitExpr::Designator *NextD
= DIE->getDesignator(DesigIdx + 1);
SemaRef.Diag(NextD->getLocStart(),
diag::err_designator_into_flexible_array_member)
<< SourceRange(NextD->getLocStart(),
DIE->getLocEnd());
SemaRef.Diag(Field->getLocation(), diag::note_flexible_array_member)
<< *Field;
}
Invalid = true;
}
if (!hadError && !isa<InitListExpr>(DIE->getInit()) &&
!isa<StringLiteral>(DIE->getInit())) {
// The initializer is not an initializer list.
if (!VerifyOnly) {
SemaRef.Diag(DIE->getInit()->getLocStart(),
diag::err_flexible_array_init_needs_braces)
<< DIE->getInit()->getSourceRange();
SemaRef.Diag(Field->getLocation(), diag::note_flexible_array_member)
<< *Field;
}
Invalid = true;
}
// Check GNU flexible array initializer.
if (!Invalid && CheckFlexibleArrayInit(Entity, DIE->getInit(), *Field,
TopLevelObject))
Invalid = true;
if (Invalid) {
++Index;
return true;
}
// Initialize the array.
bool prevHadError = hadError;
unsigned newStructuredIndex = FieldIndex;
unsigned OldIndex = Index;
IList->setInit(Index, DIE->getInit());
InitializedEntity MemberEntity =
InitializedEntity::InitializeMember(*Field, &Entity);
CheckSubElementType(MemberEntity, IList, Field->getType(), Index,
StructuredList, newStructuredIndex);
IList->setInit(OldIndex, DIE);
if (hadError && !prevHadError) {
++Field;
++FieldIndex;
if (NextField)
*NextField = Field;
StructuredIndex = FieldIndex;
return true;
}
} else {
// Recurse to check later designated subobjects.
QualType FieldType = Field->getType();
unsigned newStructuredIndex = FieldIndex;
InitializedEntity MemberEntity =
InitializedEntity::InitializeMember(*Field, &Entity);
if (CheckDesignatedInitializer(MemberEntity, IList, DIE, DesigIdx + 1,
FieldType, 0, 0, Index,
StructuredList, newStructuredIndex,
true, false))
return true;
}
// Find the position of the next field to be initialized in this
// subobject.
++Field;
++FieldIndex;
// If this the first designator, our caller will continue checking
// the rest of this struct/class/union subobject.
if (IsFirstDesignator) {
if (NextField)
*NextField = Field;
StructuredIndex = FieldIndex;
return false;
}
if (!FinishSubobjectInit)
return false;
// We've already initialized something in the union; we're done.
if (RT->getDecl()->isUnion())
return hadError;
// Check the remaining fields within this class/struct/union subobject.
bool prevHadError = hadError;
CheckStructUnionTypes(Entity, IList, CurrentObjectType, Field, false, Index,
StructuredList, FieldIndex);
return hadError && !prevHadError;
}
// C99 6.7.8p6:
//
// If a designator has the form
//
// [ constant-expression ]
//
// then the current object (defined below) shall have array
// type and the expression shall be an integer constant
// expression. If the array is of unknown size, any
// nonnegative value is valid.
//
// Additionally, cope with the GNU extension that permits
// designators of the form
//
// [ constant-expression ... constant-expression ]
const ArrayType *AT = SemaRef.Context.getAsArrayType(CurrentObjectType);
if (!AT) {
if (!VerifyOnly)
SemaRef.Diag(D->getLBracketLoc(), diag::err_array_designator_non_array)
<< CurrentObjectType;
++Index;
return true;
}
Expr *IndexExpr = 0;
llvm::APSInt DesignatedStartIndex, DesignatedEndIndex;
if (D->isArrayDesignator()) {
IndexExpr = DIE->getArrayIndex(*D);
DesignatedStartIndex = IndexExpr->EvaluateKnownConstInt(SemaRef.Context);
DesignatedEndIndex = DesignatedStartIndex;
} else {
assert(D->isArrayRangeDesignator() && "Need array-range designator");
DesignatedStartIndex =
DIE->getArrayRangeStart(*D)->EvaluateKnownConstInt(SemaRef.Context);
DesignatedEndIndex =
DIE->getArrayRangeEnd(*D)->EvaluateKnownConstInt(SemaRef.Context);
IndexExpr = DIE->getArrayRangeEnd(*D);
// Codegen can't handle evaluating array range designators that have side
// effects, because we replicate the AST value for each initialized element.
// As such, set the sawArrayRangeDesignator() bit if we initialize multiple
// elements with something that has a side effect, so codegen can emit an
// "error unsupported" error instead of miscompiling the app.
if (DesignatedStartIndex.getZExtValue()!=DesignatedEndIndex.getZExtValue()&&
DIE->getInit()->HasSideEffects(SemaRef.Context) && !VerifyOnly)
FullyStructuredList->sawArrayRangeDesignator();
}
if (isa<ConstantArrayType>(AT)) {
llvm::APSInt MaxElements(cast<ConstantArrayType>(AT)->getSize(), false);
DesignatedStartIndex
= DesignatedStartIndex.extOrTrunc(MaxElements.getBitWidth());
DesignatedStartIndex.setIsUnsigned(MaxElements.isUnsigned());
DesignatedEndIndex
= DesignatedEndIndex.extOrTrunc(MaxElements.getBitWidth());
DesignatedEndIndex.setIsUnsigned(MaxElements.isUnsigned());
if (DesignatedEndIndex >= MaxElements) {
if (!VerifyOnly)
SemaRef.Diag(IndexExpr->getLocStart(),
diag::err_array_designator_too_large)
<< DesignatedEndIndex.toString(10) << MaxElements.toString(10)
<< IndexExpr->getSourceRange();
++Index;
return true;
}
} else {
// Make sure the bit-widths and signedness match.
if (DesignatedStartIndex.getBitWidth() > DesignatedEndIndex.getBitWidth())
DesignatedEndIndex
= DesignatedEndIndex.extend(DesignatedStartIndex.getBitWidth());
else if (DesignatedStartIndex.getBitWidth() <
DesignatedEndIndex.getBitWidth())
DesignatedStartIndex
= DesignatedStartIndex.extend(DesignatedEndIndex.getBitWidth());
DesignatedStartIndex.setIsUnsigned(true);
DesignatedEndIndex.setIsUnsigned(true);
}
if (!VerifyOnly && StructuredList->isStringLiteralInit()) {
// We're modifying a string literal init; we have to decompose the string
// so we can modify the individual characters.
ASTContext &Context = SemaRef.Context;
Expr *SubExpr = StructuredList->getInit(0)->IgnoreParens();
// Compute the character type
QualType CharTy = AT->getElementType();
// Compute the type of the integer literals.
QualType PromotedCharTy = CharTy;
if (CharTy->isPromotableIntegerType())
PromotedCharTy = Context.getPromotedIntegerType(CharTy);
unsigned PromotedCharTyWidth = Context.getTypeSize(PromotedCharTy);
if (StringLiteral *SL = dyn_cast<StringLiteral>(SubExpr)) {
// Get the length of the string.
uint64_t StrLen = SL->getLength();
if (cast<ConstantArrayType>(AT)->getSize().ult(StrLen))
StrLen = cast<ConstantArrayType>(AT)->getSize().getZExtValue();
StructuredList->resizeInits(Context, StrLen);
// Build a literal for each character in the string, and put them into
// the init list.
for (unsigned i = 0, e = StrLen; i != e; ++i) {
llvm::APInt CodeUnit(PromotedCharTyWidth, SL->getCodeUnit(i));
Expr *Init = new (Context) IntegerLiteral(
Context, CodeUnit, PromotedCharTy, SubExpr->getExprLoc());
if (CharTy != PromotedCharTy)
Init = ImplicitCastExpr::Create(Context, CharTy, CK_IntegralCast,
Init, 0, VK_RValue);
StructuredList->updateInit(Context, i, Init);
}
} else {
ObjCEncodeExpr *E = cast<ObjCEncodeExpr>(SubExpr);
std::string Str;
Context.getObjCEncodingForType(E->getEncodedType(), Str);
// Get the length of the string.
uint64_t StrLen = Str.size();
if (cast<ConstantArrayType>(AT)->getSize().ult(StrLen))
StrLen = cast<ConstantArrayType>(AT)->getSize().getZExtValue();
StructuredList->resizeInits(Context, StrLen);
// Build a literal for each character in the string, and put them into
// the init list.
for (unsigned i = 0, e = StrLen; i != e; ++i) {
llvm::APInt CodeUnit(PromotedCharTyWidth, Str[i]);
Expr *Init = new (Context) IntegerLiteral(
Context, CodeUnit, PromotedCharTy, SubExpr->getExprLoc());
if (CharTy != PromotedCharTy)
Init = ImplicitCastExpr::Create(Context, CharTy, CK_IntegralCast,
Init, 0, VK_RValue);
StructuredList->updateInit(Context, i, Init);
}
}
}
// Make sure that our non-designated initializer list has space
// for a subobject corresponding to this array element.
if (!VerifyOnly &&
DesignatedEndIndex.getZExtValue() >= StructuredList->getNumInits())
StructuredList->resizeInits(SemaRef.Context,
DesignatedEndIndex.getZExtValue() + 1);
// Repeatedly perform subobject initializations in the range
// [DesignatedStartIndex, DesignatedEndIndex].
// Move to the next designator
unsigned ElementIndex = DesignatedStartIndex.getZExtValue();
unsigned OldIndex = Index;
InitializedEntity ElementEntity =
InitializedEntity::InitializeElement(SemaRef.Context, 0, Entity);
while (DesignatedStartIndex <= DesignatedEndIndex) {
// Recurse to check later designated subobjects.
QualType ElementType = AT->getElementType();
Index = OldIndex;
ElementEntity.setElementIndex(ElementIndex);
if (CheckDesignatedInitializer(ElementEntity, IList, DIE, DesigIdx + 1,
ElementType, 0, 0, Index,
StructuredList, ElementIndex,
(DesignatedStartIndex == DesignatedEndIndex),
false))
return true;
// Move to the next index in the array that we'll be initializing.
++DesignatedStartIndex;
ElementIndex = DesignatedStartIndex.getZExtValue();
}
// If this the first designator, our caller will continue checking
// the rest of this array subobject.
if (IsFirstDesignator) {
if (NextElementIndex)
*NextElementIndex = DesignatedStartIndex;
StructuredIndex = ElementIndex;
return false;
}
if (!FinishSubobjectInit)
return false;
// Check the remaining elements within this array subobject.
bool prevHadError = hadError;
CheckArrayType(Entity, IList, CurrentObjectType, DesignatedStartIndex,
/*SubobjectIsDesignatorContext=*/false, Index,
StructuredList, ElementIndex);
return hadError && !prevHadError;
}
// Get the structured initializer list for a subobject of type
// @p CurrentObjectType.
InitListExpr *
InitListChecker::getStructuredSubobjectInit(InitListExpr *IList, unsigned Index,
QualType CurrentObjectType,
InitListExpr *StructuredList,
unsigned StructuredIndex,
SourceRange InitRange) {
if (VerifyOnly)
return 0; // No structured list in verification-only mode.
Expr *ExistingInit = 0;
if (!StructuredList)
ExistingInit = SyntacticToSemantic.lookup(IList);
else if (StructuredIndex < StructuredList->getNumInits())
ExistingInit = StructuredList->getInit(StructuredIndex);
if (InitListExpr *Result = dyn_cast_or_null<InitListExpr>(ExistingInit))
return Result;
if (ExistingInit) {
// We are creating an initializer list that initializes the
// subobjects of the current object, but there was already an
// initialization that completely initialized the current
// subobject, e.g., by a compound literal:
//
// struct X { int a, b; };
// struct X xs[] = { [0] = (struct X) { 1, 2 }, [0].b = 3 };
//
// Here, xs[0].a == 0 and xs[0].b == 3, since the second,
// designated initializer re-initializes the whole
// subobject [0], overwriting previous initializers.
SemaRef.Diag(InitRange.getBegin(),
diag::warn_subobject_initializer_overrides)
<< InitRange;
SemaRef.Diag(ExistingInit->getLocStart(),
diag::note_previous_initializer)
<< /*FIXME:has side effects=*/0
<< ExistingInit->getSourceRange();
}
InitListExpr *Result
= new (SemaRef.Context) InitListExpr(SemaRef.Context,
InitRange.getBegin(), None,
InitRange.getEnd());
QualType ResultType = CurrentObjectType;
if (!ResultType->isArrayType())
ResultType = ResultType.getNonLValueExprType(SemaRef.Context);
Result->setType(ResultType);
// Pre-allocate storage for the structured initializer list.
unsigned NumElements = 0;
unsigned NumInits = 0;
bool GotNumInits = false;
if (!StructuredList) {
NumInits = IList->getNumInits();
GotNumInits = true;
} else if (Index < IList->getNumInits()) {
if (InitListExpr *SubList = dyn_cast<InitListExpr>(IList->getInit(Index))) {
NumInits = SubList->getNumInits();
GotNumInits = true;
}
}
if (const ArrayType *AType
= SemaRef.Context.getAsArrayType(CurrentObjectType)) {
if (const ConstantArrayType *CAType = dyn_cast<ConstantArrayType>(AType)) {
NumElements = CAType->getSize().getZExtValue();
// Simple heuristic so that we don't allocate a very large
// initializer with many empty entries at the end.
if (GotNumInits && NumElements > NumInits)
NumElements = 0;
}
} else if (const VectorType *VType = CurrentObjectType->getAs<VectorType>())
NumElements = VType->getNumElements();
else if (const RecordType *RType = CurrentObjectType->getAs<RecordType>()) {
RecordDecl *RDecl = RType->getDecl();
if (RDecl->isUnion())
NumElements = 1;
else
NumElements = std::distance(RDecl->field_begin(),
RDecl->field_end());
}
Result->reserveInits(SemaRef.Context, NumElements);
// Link this new initializer list into the structured initializer
// lists.
if (StructuredList)
StructuredList->updateInit(SemaRef.Context, StructuredIndex, Result);
else {
Result->setSyntacticForm(IList);
SyntacticToSemantic[IList] = Result;
}
return Result;
}
/// Update the initializer at index @p StructuredIndex within the
/// structured initializer list to the value @p expr.
void InitListChecker::UpdateStructuredListElement(InitListExpr *StructuredList,
unsigned &StructuredIndex,
Expr *expr) {
// No structured initializer list to update
if (!StructuredList)
return;
if (Expr *PrevInit = StructuredList->updateInit(SemaRef.Context,
StructuredIndex, expr)) {
// This initializer overwrites a previous initializer. Warn.
SemaRef.Diag(expr->getLocStart(),
diag::warn_initializer_overrides)
<< expr->getSourceRange();
SemaRef.Diag(PrevInit->getLocStart(),
diag::note_previous_initializer)
<< /*FIXME:has side effects=*/0
<< PrevInit->getSourceRange();
}
++StructuredIndex;
}
/// Check that the given Index expression is a valid array designator
/// value. This is essentially just a wrapper around
/// VerifyIntegerConstantExpression that also checks for negative values
/// and produces a reasonable diagnostic if there is a
/// failure. Returns the index expression, possibly with an implicit cast
/// added, on success. If everything went okay, Value will receive the
/// value of the constant expression.
static ExprResult
CheckArrayDesignatorExpr(Sema &S, Expr *Index, llvm::APSInt &Value) {
SourceLocation Loc = Index->getLocStart();
// Make sure this is an integer constant expression.
ExprResult Result = S.VerifyIntegerConstantExpression(Index, &Value);
if (Result.isInvalid())
return Result;
if (Value.isSigned() && Value.isNegative())
return S.Diag(Loc, diag::err_array_designator_negative)
<< Value.toString(10) << Index->getSourceRange();
Value.setIsUnsigned(true);
return Result;
}
ExprResult Sema::ActOnDesignatedInitializer(Designation &Desig,
SourceLocation Loc,
bool GNUSyntax,
ExprResult Init) {
typedef DesignatedInitExpr::Designator ASTDesignator;
bool Invalid = false;
SmallVector<ASTDesignator, 32> Designators;
SmallVector<Expr *, 32> InitExpressions;
// Build designators and check array designator expressions.
for (unsigned Idx = 0; Idx < Desig.getNumDesignators(); ++Idx) {
const Designator &D = Desig.getDesignator(Idx);
switch (D.getKind()) {
case Designator::FieldDesignator:
Designators.push_back(ASTDesignator(D.getField(), D.getDotLoc(),
D.getFieldLoc()));
break;
case Designator::ArrayDesignator: {
Expr *Index = static_cast<Expr *>(D.getArrayIndex());
llvm::APSInt IndexValue;
if (!Index->isTypeDependent() && !Index->isValueDependent())
Index = CheckArrayDesignatorExpr(*this, Index, IndexValue).take();
if (!Index)
Invalid = true;
else {
Designators.push_back(ASTDesignator(InitExpressions.size(),
D.getLBracketLoc(),
D.getRBracketLoc()));
InitExpressions.push_back(Index);
}
break;
}
case Designator::ArrayRangeDesignator: {
Expr *StartIndex = static_cast<Expr *>(D.getArrayRangeStart());
Expr *EndIndex = static_cast<Expr *>(D.getArrayRangeEnd());
llvm::APSInt StartValue;
llvm::APSInt EndValue;
bool StartDependent = StartIndex->isTypeDependent() ||
StartIndex->isValueDependent();
bool EndDependent = EndIndex->isTypeDependent() ||
EndIndex->isValueDependent();
if (!StartDependent)
StartIndex =
CheckArrayDesignatorExpr(*this, StartIndex, StartValue).take();
if (!EndDependent)
EndIndex = CheckArrayDesignatorExpr(*this, EndIndex, EndValue).take();
if (!StartIndex || !EndIndex)
Invalid = true;
else {
// Make sure we're comparing values with the same bit width.
if (StartDependent || EndDependent) {
// Nothing to compute.
} else if (StartValue.getBitWidth() > EndValue.getBitWidth())
EndValue = EndValue.extend(StartValue.getBitWidth());
else if (StartValue.getBitWidth() < EndValue.getBitWidth())
StartValue = StartValue.extend(EndValue.getBitWidth());
if (!StartDependent && !EndDependent && EndValue < StartValue) {
Diag(D.getEllipsisLoc(), diag::err_array_designator_empty_range)
<< StartValue.toString(10) << EndValue.toString(10)
<< StartIndex->getSourceRange() << EndIndex->getSourceRange();
Invalid = true;
} else {
Designators.push_back(ASTDesignator(InitExpressions.size(),
D.getLBracketLoc(),
D.getEllipsisLoc(),
D.getRBracketLoc()));
InitExpressions.push_back(StartIndex);
InitExpressions.push_back(EndIndex);
}
}
break;
}
}
}
if (Invalid || Init.isInvalid())
return ExprError();
// Clear out the expressions within the designation.
Desig.ClearExprs(*this);
DesignatedInitExpr *DIE
= DesignatedInitExpr::Create(Context,
Designators.data(), Designators.size(),
InitExpressions, Loc, GNUSyntax,
Init.takeAs<Expr>());
if (!getLangOpts().C99)
Diag(DIE->getLocStart(), diag::ext_designated_init)
<< DIE->getSourceRange();
return Owned(DIE);
}
//===----------------------------------------------------------------------===//
// Initialization entity
//===----------------------------------------------------------------------===//
InitializedEntity::InitializedEntity(ASTContext &Context, unsigned Index,
const InitializedEntity &Parent)
: Parent(&Parent), Index(Index)
{
if (const ArrayType *AT = Context.getAsArrayType(Parent.getType())) {
Kind = EK_ArrayElement;
Type = AT->getElementType();
} else if (const VectorType *VT = Parent.getType()->getAs<VectorType>()) {
Kind = EK_VectorElement;
Type = VT->getElementType();
} else {
const ComplexType *CT = Parent.getType()->getAs<ComplexType>();
assert(CT && "Unexpected type");
Kind = EK_ComplexElement;
Type = CT->getElementType();
}
}
InitializedEntity
InitializedEntity::InitializeBase(ASTContext &Context,
const CXXBaseSpecifier *Base,
bool IsInheritedVirtualBase) {
InitializedEntity Result;
Result.Kind = EK_Base;
Result.Parent = 0;
Result.Base = reinterpret_cast<uintptr_t>(Base);
if (IsInheritedVirtualBase)
Result.Base |= 0x01;
Result.Type = Base->getType();
return Result;
}
DeclarationName InitializedEntity::getName() const {
switch (getKind()) {
case EK_Parameter:
case EK_Parameter_CF_Audited: {
ParmVarDecl *D = reinterpret_cast<ParmVarDecl*>(Parameter & ~0x1);
return (D ? D->getDeclName() : DeclarationName());
}
case EK_Variable:
case EK_Member:
return VariableOrMember->getDeclName();
case EK_LambdaCapture:
return Capture.Var->getDeclName();
case EK_Result:
case EK_Exception:
case EK_New:
case EK_Temporary:
case EK_Base:
case EK_Delegating:
case EK_ArrayElement:
case EK_VectorElement:
case EK_ComplexElement:
case EK_BlockElement:
case EK_CompoundLiteralInit:
case EK_RelatedResult:
return DeclarationName();
}
llvm_unreachable("Invalid EntityKind!");
}
DeclaratorDecl *InitializedEntity::getDecl() const {
switch (getKind()) {
case EK_Variable:
case EK_Member:
return VariableOrMember;
case EK_Parameter:
case EK_Parameter_CF_Audited:
return reinterpret_cast<ParmVarDecl*>(Parameter & ~0x1);
case EK_Result:
case EK_Exception:
case EK_New:
case EK_Temporary:
case EK_Base:
case EK_Delegating:
case EK_ArrayElement:
case EK_VectorElement:
case EK_ComplexElement:
case EK_BlockElement:
case EK_LambdaCapture:
case EK_CompoundLiteralInit:
case EK_RelatedResult:
return 0;
}
llvm_unreachable("Invalid EntityKind!");
}
bool InitializedEntity::allowsNRVO() const {
switch (getKind()) {
case EK_Result:
case EK_Exception:
return LocAndNRVO.NRVO;
case EK_Variable:
case EK_Parameter:
case EK_Parameter_CF_Audited:
case EK_Member:
case EK_New:
case EK_Temporary:
case EK_CompoundLiteralInit:
case EK_Base:
case EK_Delegating:
case EK_ArrayElement:
case EK_VectorElement:
case EK_ComplexElement:
case EK_BlockElement:
case EK_LambdaCapture:
case EK_RelatedResult:
break;
}
return false;
}
unsigned InitializedEntity::dumpImpl(raw_ostream &OS) const {
assert(getParent() != this);
unsigned Depth = getParent() ? getParent()->dumpImpl(OS) : 0;
for (unsigned I = 0; I != Depth; ++I)
OS << "`-";
switch (getKind()) {
case EK_Variable: OS << "Variable"; break;
case EK_Parameter: OS << "Parameter"; break;
case EK_Parameter_CF_Audited: OS << "CF audited function Parameter";
break;
case EK_Result: OS << "Result"; break;
case EK_Exception: OS << "Exception"; break;
case EK_Member: OS << "Member"; break;
case EK_New: OS << "New"; break;
case EK_Temporary: OS << "Temporary"; break;
case EK_CompoundLiteralInit: OS << "CompoundLiteral";break;
case EK_RelatedResult: OS << "RelatedResult"; break;
case EK_Base: OS << "Base"; break;
case EK_Delegating: OS << "Delegating"; break;
case EK_ArrayElement: OS << "ArrayElement " << Index; break;
case EK_VectorElement: OS << "VectorElement " << Index; break;
case EK_ComplexElement: OS << "ComplexElement " << Index; break;
case EK_BlockElement: OS << "Block"; break;
case EK_LambdaCapture:
OS << "LambdaCapture ";
getCapturedVar()->printName(OS);
break;
}
if (Decl *D = getDecl()) {
OS << " ";
cast<NamedDecl>(D)->printQualifiedName(OS);
}
OS << " '" << getType().getAsString() << "'\n";
return Depth + 1;
}
void InitializedEntity::dump() const {
dumpImpl(llvm::errs());
}
//===----------------------------------------------------------------------===//
// Initialization sequence
//===----------------------------------------------------------------------===//
void InitializationSequence::Step::Destroy() {
switch (Kind) {
case SK_ResolveAddressOfOverloadedFunction:
case SK_CastDerivedToBaseRValue:
case SK_CastDerivedToBaseXValue:
case SK_CastDerivedToBaseLValue:
case SK_BindReference:
case SK_BindReferenceToTemporary:
case SK_ExtraneousCopyToTemporary:
case SK_UserConversion:
case SK_QualificationConversionRValue:
case SK_QualificationConversionXValue:
case SK_QualificationConversionLValue:
case SK_LValueToRValue:
case SK_ListInitialization:
case SK_ListConstructorCall:
case SK_UnwrapInitList:
case SK_RewrapInitList:
case SK_ConstructorInitialization:
case SK_ZeroInitialization:
case SK_CAssignment:
case SK_StringInit:
case SK_ObjCObjectConversion:
case SK_ArrayInit:
case SK_ParenthesizedArrayInit:
case SK_PassByIndirectCopyRestore:
case SK_PassByIndirectRestore:
case SK_ProduceObjCObject:
case SK_StdInitializerList:
case SK_OCLSamplerInit:
case SK_OCLZeroEvent:
break;
case SK_ConversionSequence:
delete ICS;
}
}
bool InitializationSequence::isDirectReferenceBinding() const {
return !Steps.empty() && Steps.back().Kind == SK_BindReference;
}
bool InitializationSequence::isAmbiguous() const {
if (!Failed())
return false;
switch (getFailureKind()) {
case FK_TooManyInitsForReference:
case FK_ArrayNeedsInitList:
case FK_ArrayNeedsInitListOrStringLiteral:
case FK_ArrayNeedsInitListOrWideStringLiteral:
case FK_NarrowStringIntoWideCharArray:
case FK_WideStringIntoCharArray:
case FK_IncompatWideStringIntoWideChar:
case FK_AddressOfOverloadFailed: // FIXME: Could do better
case FK_NonConstLValueReferenceBindingToTemporary:
case FK_NonConstLValueReferenceBindingToUnrelated:
case FK_RValueReferenceBindingToLValue:
case FK_ReferenceInitDropsQualifiers:
case FK_ReferenceInitFailed:
case FK_ConversionFailed:
case FK_ConversionFromPropertyFailed:
case FK_TooManyInitsForScalar:
case FK_ReferenceBindingToInitList:
case FK_InitListBadDestinationType:
case FK_DefaultInitOfConst:
case FK_Incomplete:
case FK_ArrayTypeMismatch:
case FK_NonConstantArrayInit:
case FK_ListInitializationFailed:
case FK_VariableLengthArrayHasInitializer:
case FK_PlaceholderType:
case FK_ExplicitConstructor:
return false;
case FK_ReferenceInitOverloadFailed:
case FK_UserConversionOverloadFailed:
case FK_ConstructorOverloadFailed:
case FK_ListConstructorOverloadFailed:
return FailedOverloadResult == OR_Ambiguous;
}
llvm_unreachable("Invalid EntityKind!");
}
bool InitializationSequence::isConstructorInitialization() const {
return !Steps.empty() && Steps.back().Kind == SK_ConstructorInitialization;
}
void
InitializationSequence
::AddAddressOverloadResolutionStep(FunctionDecl *Function,
DeclAccessPair Found,
bool HadMultipleCandidates) {
Step S;
S.Kind = SK_ResolveAddressOfOverloadedFunction;
S.Type = Function->getType();
S.Function.HadMultipleCandidates = HadMultipleCandidates;
S.Function.Function = Function;
S.Function.FoundDecl = Found;
Steps.push_back(S);
}
void InitializationSequence::AddDerivedToBaseCastStep(QualType BaseType,
ExprValueKind VK) {
Step S;
switch (VK) {
case VK_RValue: S.Kind = SK_CastDerivedToBaseRValue; break;
case VK_XValue: S.Kind = SK_CastDerivedToBaseXValue; break;
case VK_LValue: S.Kind = SK_CastDerivedToBaseLValue; break;
}
S.Type = BaseType;
Steps.push_back(S);
}
void InitializationSequence::AddReferenceBindingStep(QualType T,
bool BindingTemporary) {
Step S;
S.Kind = BindingTemporary? SK_BindReferenceToTemporary : SK_BindReference;
S.Type = T;
Steps.push_back(S);
}
void InitializationSequence::AddExtraneousCopyToTemporary(QualType T) {
Step S;
S.Kind = SK_ExtraneousCopyToTemporary;
S.Type = T;
Steps.push_back(S);
}
void
InitializationSequence::AddUserConversionStep(FunctionDecl *Function,
DeclAccessPair FoundDecl,
QualType T,
bool HadMultipleCandidates) {
Step S;
S.Kind = SK_UserConversion;
S.Type = T;
S.Function.HadMultipleCandidates = HadMultipleCandidates;
S.Function.Function = Function;
S.Function.FoundDecl = FoundDecl;
Steps.push_back(S);
}
void InitializationSequence::AddQualificationConversionStep(QualType Ty,
ExprValueKind VK) {
Step S;
S.Kind = SK_QualificationConversionRValue; // work around a gcc warning
switch (VK) {
case VK_RValue:
S.Kind = SK_QualificationConversionRValue;
break;
case VK_XValue:
S.Kind = SK_QualificationConversionXValue;
break;
case VK_LValue:
S.Kind = SK_QualificationConversionLValue;
break;
}
S.Type = Ty;
Steps.push_back(S);
}
void InitializationSequence::AddLValueToRValueStep(QualType Ty) {
assert(!Ty.hasQualifiers() && "rvalues may not have qualifiers");
Step S;
S.Kind = SK_LValueToRValue;
S.Type = Ty;
Steps.push_back(S);
}
void InitializationSequence::AddConversionSequenceStep(
const ImplicitConversionSequence &ICS,
QualType T) {
Step S;
S.Kind = SK_ConversionSequence;
S.Type = T;
S.ICS = new ImplicitConversionSequence(ICS);
Steps.push_back(S);
}
void InitializationSequence::AddListInitializationStep(QualType T) {
Step S;
S.Kind = SK_ListInitialization;
S.Type = T;
Steps.push_back(S);
}
void
InitializationSequence
::AddConstructorInitializationStep(CXXConstructorDecl *Constructor,
AccessSpecifier Access,
QualType T,
bool HadMultipleCandidates,
bool FromInitList, bool AsInitList) {
Step S;
S.Kind = FromInitList && !AsInitList ? SK_ListConstructorCall
: SK_ConstructorInitialization;
S.Type = T;
S.Function.HadMultipleCandidates = HadMultipleCandidates;
S.Function.Function = Constructor;
S.Function.FoundDecl = DeclAccessPair::make(Constructor, Access);
Steps.push_back(S);
}
void InitializationSequence::AddZeroInitializationStep(QualType T) {
Step S;
S.Kind = SK_ZeroInitialization;
S.Type = T;
Steps.push_back(S);
}
void InitializationSequence::AddCAssignmentStep(QualType T) {
Step S;
S.Kind = SK_CAssignment;
S.Type = T;
Steps.push_back(S);
}
void InitializationSequence::AddStringInitStep(QualType T) {
Step S;
S.Kind = SK_StringInit;
S.Type = T;
Steps.push_back(S);
}
void InitializationSequence::AddObjCObjectConversionStep(QualType T) {
Step S;
S.Kind = SK_ObjCObjectConversion;
S.Type = T;
Steps.push_back(S);
}
void InitializationSequence::AddArrayInitStep(QualType T) {
Step S;
S.Kind = SK_ArrayInit;
S.Type = T;
Steps.push_back(S);
}
void InitializationSequence::AddParenthesizedArrayInitStep(QualType T) {
Step S;
S.Kind = SK_ParenthesizedArrayInit;
S.Type = T;
Steps.push_back(S);
}
void InitializationSequence::AddPassByIndirectCopyRestoreStep(QualType type,
bool shouldCopy) {
Step s;
s.Kind = (shouldCopy ? SK_PassByIndirectCopyRestore
: SK_PassByIndirectRestore);
s.Type = type;
Steps.push_back(s);
}
void InitializationSequence::AddProduceObjCObjectStep(QualType T) {
Step S;
S.Kind = SK_ProduceObjCObject;
S.Type = T;
Steps.push_back(S);
}
void InitializationSequence::AddStdInitializerListConstructionStep(QualType T) {
Step S;
S.Kind = SK_StdInitializerList;
S.Type = T;
Steps.push_back(S);
}
void InitializationSequence::AddOCLSamplerInitStep(QualType T) {
Step S;
S.Kind = SK_OCLSamplerInit;
S.Type = T;
Steps.push_back(S);
}
void InitializationSequence::AddOCLZeroEventStep(QualType T) {
Step S;
S.Kind = SK_OCLZeroEvent;
S.Type = T;
Steps.push_back(S);
}
void InitializationSequence::RewrapReferenceInitList(QualType T,
InitListExpr *Syntactic) {
assert(Syntactic->getNumInits() == 1 &&
"Can only rewrap trivial init lists.");
Step S;
S.Kind = SK_UnwrapInitList;
S.Type = Syntactic->getInit(0)->getType();
Steps.insert(Steps.begin(), S);
S.Kind = SK_RewrapInitList;
S.Type = T;
S.WrappingSyntacticList = Syntactic;
Steps.push_back(S);
}
void InitializationSequence::SetOverloadFailure(FailureKind Failure,
OverloadingResult Result) {
setSequenceKind(FailedSequence);
this->Failure = Failure;
this->FailedOverloadResult = Result;
}
//===----------------------------------------------------------------------===//
// Attempt initialization
//===----------------------------------------------------------------------===//
static void MaybeProduceObjCObject(Sema &S,
InitializationSequence &Sequence,
const InitializedEntity &Entity) {
if (!S.getLangOpts().ObjCAutoRefCount) return;
/// When initializing a parameter, produce the value if it's marked
/// __attribute__((ns_consumed)).
if (Entity.isParameterKind()) {
if (!Entity.isParameterConsumed())
return;
assert(Entity.getType()->isObjCRetainableType() &&
"consuming an object of unretainable type?");
Sequence.AddProduceObjCObjectStep(Entity.getType());
/// When initializing a return value, if the return type is a
/// retainable type, then returns need to immediately retain the
/// object. If an autorelease is required, it will be done at the
/// last instant.
} else if (Entity.getKind() == InitializedEntity::EK_Result) {
if (!Entity.getType()->isObjCRetainableType())
return;
Sequence.AddProduceObjCObjectStep(Entity.getType());
}
}
static void TryListInitialization(Sema &S,
const InitializedEntity &Entity,
const InitializationKind &Kind,
InitListExpr *InitList,
InitializationSequence &Sequence);
/// \brief When initializing from init list via constructor, handle
/// initialization of an object of type std::initializer_list<T>.
///
/// \return true if we have handled initialization of an object of type
/// std::initializer_list<T>, false otherwise.
static bool TryInitializerListConstruction(Sema &S,
InitListExpr *List,
QualType DestType,
InitializationSequence &Sequence) {
QualType E;
if (!S.isStdInitializerList(DestType, &E))
return false;
if (S.RequireCompleteType(List->getExprLoc(), E, 0)) {
Sequence.setIncompleteTypeFailure(E);
return true;
}
// Try initializing a temporary array from the init list.
QualType ArrayType = S.Context.getConstantArrayType(
E.withConst(), llvm::APInt(S.Context.getTypeSize(S.Context.getSizeType()),
List->getNumInits()),
clang::ArrayType::Normal, 0);
InitializedEntity HiddenArray =
InitializedEntity::InitializeTemporary(ArrayType);
InitializationKind Kind =
InitializationKind::CreateDirectList(List->getExprLoc());
TryListInitialization(S, HiddenArray, Kind, List, Sequence);
if (Sequence)
Sequence.AddStdInitializerListConstructionStep(DestType);
return true;
}
static OverloadingResult
ResolveConstructorOverload(Sema &S, SourceLocation DeclLoc,
MultiExprArg Args,
OverloadCandidateSet &CandidateSet,
ArrayRef<NamedDecl *> Ctors,
OverloadCandidateSet::iterator &Best,
bool CopyInitializing, bool AllowExplicit,
bool OnlyListConstructors, bool InitListSyntax) {
CandidateSet.clear();
for (ArrayRef<NamedDecl *>::iterator
Con = Ctors.begin(), ConEnd = Ctors.end(); Con != ConEnd; ++Con) {
NamedDecl *D = *Con;
DeclAccessPair FoundDecl = DeclAccessPair::make(D, D->getAccess());
bool SuppressUserConversions = false;
// Find the constructor (which may be a template).
CXXConstructorDecl *Constructor = 0;
FunctionTemplateDecl *ConstructorTmpl = dyn_cast<FunctionTemplateDecl>(D);
if (ConstructorTmpl)
Constructor = cast<CXXConstructorDecl>(
ConstructorTmpl->getTemplatedDecl());
else {
Constructor = cast<CXXConstructorDecl>(D);
// If we're performing copy initialization using a copy constructor, we
// suppress user-defined conversions on the arguments. We do the same for
// move constructors.
if ((CopyInitializing || (InitListSyntax && Args.size() == 1)) &&
Constructor->isCopyOrMoveConstructor())
SuppressUserConversions = true;
}
if (!Constructor->isInvalidDecl() &&
(AllowExplicit || !Constructor->isExplicit()) &&
(!OnlyListConstructors || S.isInitListConstructor(Constructor))) {
if (ConstructorTmpl)
S.AddTemplateOverloadCandidate(ConstructorTmpl, FoundDecl,
/*ExplicitArgs*/ 0, Args,
CandidateSet, SuppressUserConversions);
else {
// C++ [over.match.copy]p1:
// - When initializing a temporary to be bound to the first parameter
// of a constructor that takes a reference to possibly cv-qualified
// T as its first argument, called with a single argument in the
// context of direct-initialization, explicit conversion functions
// are also considered.
bool AllowExplicitConv = AllowExplicit && !CopyInitializing &&
Args.size() == 1 &&
Constructor->isCopyOrMoveConstructor();
S.AddOverloadCandidate(Constructor, FoundDecl, Args, CandidateSet,
SuppressUserConversions,
/*PartialOverloading=*/false,
/*AllowExplicit=*/AllowExplicitConv);
}
}
}
// Perform overload resolution and return the result.
return CandidateSet.BestViableFunction(S, DeclLoc, Best);
}
/// \brief Attempt initialization by constructor (C++ [dcl.init]), which
/// enumerates the constructors of the initialized entity and performs overload
/// resolution to select the best.
/// If InitListSyntax is true, this is list-initialization of a non-aggregate
/// class type.
static void TryConstructorInitialization(Sema &S,
const InitializedEntity &Entity,
const InitializationKind &Kind,
MultiExprArg Args, QualType DestType,
InitializationSequence &Sequence,
bool InitListSyntax = false) {
assert((!InitListSyntax || (Args.size() == 1 && isa<InitListExpr>(Args[0]))) &&
"InitListSyntax must come with a single initializer list argument.");
// The type we're constructing needs to be complete.
if (S.RequireCompleteType(Kind.getLocation(), DestType, 0)) {
Sequence.setIncompleteTypeFailure(DestType);
return;
}
const RecordType *DestRecordType = DestType->getAs<RecordType>();
assert(DestRecordType && "Constructor initialization requires record type");
CXXRecordDecl *DestRecordDecl
= cast<CXXRecordDecl>(DestRecordType->getDecl());
// Build the candidate set directly in the initialization sequence
// structure, so that it will persist if we fail.
OverloadCandidateSet &CandidateSet = Sequence.getFailedCandidateSet();
// Determine whether we are allowed to call explicit constructors or
// explicit conversion operators.
bool AllowExplicit = Kind.AllowExplicit() || InitListSyntax;
bool CopyInitialization = Kind.getKind() == InitializationKind::IK_Copy;
// - Otherwise, if T is a class type, constructors are considered. The
// applicable constructors are enumerated, and the best one is chosen
// through overload resolution.
DeclContext::lookup_result R = S.LookupConstructors(DestRecordDecl);
// The container holding the constructors can under certain conditions
// be changed while iterating (e.g. because of deserialization).
// To be safe we copy the lookup results to a new container.
SmallVector<NamedDecl*, 16> Ctors(R.begin(), R.end());
OverloadingResult Result = OR_No_Viable_Function;
OverloadCandidateSet::iterator Best;
bool AsInitializerList = false;
// C++11 [over.match.list]p1:
// When objects of non-aggregate type T are list-initialized, overload
// resolution selects the constructor in two phases:
// - Initially, the candidate functions are the initializer-list
// constructors of the class T and the argument list consists of the
// initializer list as a single argument.
if (InitListSyntax) {
InitListExpr *ILE = cast<InitListExpr>(Args[0]);
AsInitializerList = true;
// If the initializer list has no elements and T has a default constructor,
// the first phase is omitted.
if (ILE->getNumInits() != 0 || !DestRecordDecl->hasDefaultConstructor())
Result = ResolveConstructorOverload(S, Kind.getLocation(), Args,
CandidateSet, Ctors, Best,
CopyInitialization, AllowExplicit,
/*OnlyListConstructor=*/true,
InitListSyntax);
// Time to unwrap the init list.
Args = MultiExprArg(ILE->getInits(), ILE->getNumInits());
}
// C++11 [over.match.list]p1:
// - If no viable initializer-list constructor is found, overload resolution
// is performed again, where the candidate functions are all the
// constructors of the class T and the argument list consists of the
// elements of the initializer list.
if (Result == OR_No_Viable_Function) {
AsInitializerList = false;
Result = ResolveConstructorOverload(S, Kind.getLocation(), Args,
CandidateSet, Ctors, Best,
CopyInitialization, AllowExplicit,
/*OnlyListConstructors=*/false,
InitListSyntax);
}
if (Result) {
Sequence.SetOverloadFailure(InitListSyntax ?
InitializationSequence::FK_ListConstructorOverloadFailed :
InitializationSequence::FK_ConstructorOverloadFailed,
Result);
return;
}
// C++11 [dcl.init]p6:
// If a program calls for the default initialization of an object
// of a const-qualified type T, T shall be a class type with a
// user-provided default constructor.
if (Kind.getKind() == InitializationKind::IK_Default &&
Entity.getType().isConstQualified() &&
!cast<CXXConstructorDecl>(Best->Function)->isUserProvided()) {
Sequence.SetFailed(InitializationSequence::FK_DefaultInitOfConst);
return;
}
// C++11 [over.match.list]p1:
// In copy-list-initialization, if an explicit constructor is chosen, the
// initializer is ill-formed.
CXXConstructorDecl *CtorDecl = cast<CXXConstructorDecl>(Best->Function);
if (InitListSyntax && !Kind.AllowExplicit() && CtorDecl->isExplicit()) {
Sequence.SetFailed(InitializationSequence::FK_ExplicitConstructor);
return;
}
// Add the constructor initialization step. Any cv-qualification conversion is
// subsumed by the initialization.
bool HadMultipleCandidates = (CandidateSet.size() > 1);
Sequence.AddConstructorInitializationStep(CtorDecl,
Best->FoundDecl.getAccess(),
DestType, HadMultipleCandidates,
InitListSyntax, AsInitializerList);
}
static bool
ResolveOverloadedFunctionForReferenceBinding(Sema &S,
Expr *Initializer,
QualType &SourceType,
QualType &UnqualifiedSourceType,
QualType UnqualifiedTargetType,
InitializationSequence &Sequence) {
if (S.Context.getCanonicalType(UnqualifiedSourceType) ==
S.Context.OverloadTy) {
DeclAccessPair Found;
bool HadMultipleCandidates = false;
if (FunctionDecl *Fn
= S.ResolveAddressOfOverloadedFunction(Initializer,
UnqualifiedTargetType,
false, Found,
&HadMultipleCandidates)) {
Sequence.AddAddressOverloadResolutionStep(Fn, Found,
HadMultipleCandidates);
SourceType = Fn->getType();
UnqualifiedSourceType = SourceType.getUnqualifiedType();
} else if (!UnqualifiedTargetType->isRecordType()) {
Sequence.SetFailed(InitializationSequence::FK_AddressOfOverloadFailed);
return true;
}
}
return false;
}
static void TryReferenceInitializationCore(Sema &S,
const InitializedEntity &Entity,
const InitializationKind &Kind,
Expr *Initializer,
QualType cv1T1, QualType T1,
Qualifiers T1Quals,
QualType cv2T2, QualType T2,
Qualifiers T2Quals,
InitializationSequence &Sequence);
static void TryValueInitialization(Sema &S,
const InitializedEntity &Entity,
const InitializationKind &Kind,
InitializationSequence &Sequence,
InitListExpr *InitList = 0);
/// \brief Attempt list initialization of a reference.
static void TryReferenceListInitialization(Sema &S,
const InitializedEntity &Entity,
const InitializationKind &Kind,
InitListExpr *InitList,
InitializationSequence &Sequence) {
// First, catch C++03 where this isn't possible.
if (!S.getLangOpts().CPlusPlus11) {
Sequence.SetFailed(InitializationSequence::FK_ReferenceBindingToInitList);
return;
}
QualType DestType = Entity.getType();
QualType cv1T1 = DestType->getAs<ReferenceType>()->getPointeeType();
Qualifiers T1Quals;
QualType T1 = S.Context.getUnqualifiedArrayType(cv1T1, T1Quals);
// Reference initialization via an initializer list works thus:
// If the initializer list consists of a single element that is
// reference-related to the referenced type, bind directly to that element
// (possibly creating temporaries).
// Otherwise, initialize a temporary with the initializer list and
// bind to that.
if (InitList->getNumInits() == 1) {
Expr *Initializer = InitList->getInit(0);
QualType cv2T2 = Initializer->getType();
Qualifiers T2Quals;
QualType T2 = S.Context.getUnqualifiedArrayType(cv2T2, T2Quals);
// If this fails, creating a temporary wouldn't work either.
if (ResolveOverloadedFunctionForReferenceBinding(S, Initializer, cv2T2, T2,
T1, Sequence))
return;
SourceLocation DeclLoc = Initializer->getLocStart();
bool dummy1, dummy2, dummy3;
Sema::ReferenceCompareResult RefRelationship
= S.CompareReferenceRelationship(DeclLoc, cv1T1, cv2T2, dummy1,
dummy2, dummy3);
if (RefRelationship >= Sema::Ref_Related) {
// Try to bind the reference here.
TryReferenceInitializationCore(S, Entity, Kind, Initializer, cv1T1, T1,
T1Quals, cv2T2, T2, T2Quals, Sequence);
if (Sequence)
Sequence.RewrapReferenceInitList(cv1T1, InitList);
return;
}
// Update the initializer if we've resolved an overloaded function.
if (Sequence.step_begin() != Sequence.step_end())
Sequence.RewrapReferenceInitList(cv1T1, InitList);
}
// Not reference-related. Create a temporary and bind to that.
InitializedEntity TempEntity = InitializedEntity::InitializeTemporary(cv1T1);
TryListInitialization(S, TempEntity, Kind, InitList, Sequence);
if (Sequence) {
if (DestType->isRValueReferenceType() ||
(T1Quals.hasConst() && !T1Quals.hasVolatile()))
Sequence.AddReferenceBindingStep(cv1T1, /*bindingTemporary=*/true);
else
Sequence.SetFailed(
InitializationSequence::FK_NonConstLValueReferenceBindingToTemporary);
}
}
/// \brief Attempt list initialization (C++0x [dcl.init.list])
static void TryListInitialization(Sema &S,
const InitializedEntity &Entity,
const InitializationKind &Kind,
InitListExpr *InitList,
InitializationSequence &Sequence) {
QualType DestType = Entity.getType();
// C++ doesn't allow scalar initialization with more than one argument.
// But C99 complex numbers are scalars and it makes sense there.
if (S.getLangOpts().CPlusPlus && DestType->isScalarType() &&
!DestType->isAnyComplexType() && InitList->getNumInits() > 1) {
Sequence.SetFailed(InitializationSequence::FK_TooManyInitsForScalar);
return;
}
if (DestType->isReferenceType()) {
TryReferenceListInitialization(S, Entity, Kind, InitList, Sequence);
return;
}
if (DestType->isRecordType()) {
if (S.RequireCompleteType(InitList->getLocStart(), DestType, 0)) {
Sequence.setIncompleteTypeFailure(DestType);
return;
}
// C++11 [dcl.init.list]p3:
// - If T is an aggregate, aggregate initialization is performed.
if (!DestType->isAggregateType()) {
if (S.getLangOpts().CPlusPlus11) {
// - Otherwise, if the initializer list has no elements and T is a
// class type with a default constructor, the object is
// value-initialized.
if (InitList->getNumInits() == 0) {
CXXRecordDecl *RD = DestType->getAsCXXRecordDecl();
if (RD->hasDefaultConstructor()) {
TryValueInitialization(S, Entity, Kind, Sequence, InitList);
return;
}
}
// - Otherwise, if T is a specialization of std::initializer_list<E>,
// an initializer_list object constructed [...]
if (TryInitializerListConstruction(S, InitList, DestType, Sequence))
return;
// - Otherwise, if T is a class type, constructors are considered.
Expr *InitListAsExpr = InitList;
TryConstructorInitialization(S, Entity, Kind, InitListAsExpr, DestType,
Sequence, /*InitListSyntax*/true);
} else
Sequence.SetFailed(
InitializationSequence::FK_InitListBadDestinationType);
return;
}
}
InitListChecker CheckInitList(S, Entity, InitList,
DestType, /*VerifyOnly=*/true);
if (CheckInitList.HadError()) {
Sequence.SetFailed(InitializationSequence::FK_ListInitializationFailed);
return;
}
// Add the list initialization step with the built init list.
Sequence.AddListInitializationStep(DestType);
}
/// \brief Try a reference initialization that involves calling a conversion
/// function.
static OverloadingResult TryRefInitWithConversionFunction(Sema &S,
const InitializedEntity &Entity,
const InitializationKind &Kind,
Expr *Initializer,
bool AllowRValues,
InitializationSequence &Sequence) {
QualType DestType = Entity.getType();
QualType cv1T1 = DestType->getAs<ReferenceType>()->getPointeeType();
QualType T1 = cv1T1.getUnqualifiedType();
QualType cv2T2 = Initializer->getType();
QualType T2 = cv2T2.getUnqualifiedType();
bool DerivedToBase;
bool ObjCConversion;
bool ObjCLifetimeConversion;
assert(!S.CompareReferenceRelationship(Initializer->getLocStart(),
T1, T2, DerivedToBase,
ObjCConversion,
ObjCLifetimeConversion) &&
"Must have incompatible references when binding via conversion");
(void)DerivedToBase;
(void)ObjCConversion;
(void)ObjCLifetimeConversion;
// Build the candidate set directly in the initialization sequence
// structure, so that it will persist if we fail.
OverloadCandidateSet &CandidateSet = Sequence.getFailedCandidateSet();
CandidateSet.clear();
// Determine whether we are allowed to call explicit constructors or
// explicit conversion operators.
bool AllowExplicit = Kind.AllowExplicit();
bool AllowExplicitConvs = Kind.allowExplicitConversionFunctions();
const RecordType *T1RecordType = 0;
if (AllowRValues && (T1RecordType = T1->getAs<RecordType>()) &&
!S.RequireCompleteType(Kind.getLocation(), T1, 0)) {
// The type we're converting to is a class type. Enumerate its constructors
// to see if there is a suitable conversion.
CXXRecordDecl *T1RecordDecl = cast<CXXRecordDecl>(T1RecordType->getDecl());
DeclContext::lookup_result R = S.LookupConstructors(T1RecordDecl);
// The container holding the constructors can under certain conditions
// be changed while iterating (e.g. because of deserialization).
// To be safe we copy the lookup results to a new container.
SmallVector<NamedDecl*, 16> Ctors(R.begin(), R.end());
for (SmallVectorImpl<NamedDecl *>::iterator
CI = Ctors.begin(), CE = Ctors.end(); CI != CE; ++CI) {
NamedDecl *D = *CI;
DeclAccessPair FoundDecl = DeclAccessPair::make(D, D->getAccess());
// Find the constructor (which may be a template).
CXXConstructorDecl *Constructor = 0;
FunctionTemplateDecl *ConstructorTmpl = dyn_cast<FunctionTemplateDecl>(D);
if (ConstructorTmpl)
Constructor = cast<CXXConstructorDecl>(
ConstructorTmpl->getTemplatedDecl());
else
Constructor = cast<CXXConstructorDecl>(D);
if (!Constructor->isInvalidDecl() &&
Constructor->isConvertingConstructor(AllowExplicit)) {
if (ConstructorTmpl)
S.AddTemplateOverloadCandidate(ConstructorTmpl, FoundDecl,
/*ExplicitArgs*/ 0,
Initializer, CandidateSet,
/*SuppressUserConversions=*/true);
else
S.AddOverloadCandidate(Constructor, FoundDecl,
Initializer, CandidateSet,
/*SuppressUserConversions=*/true);
}
}
}
if (T1RecordType && T1RecordType->getDecl()->isInvalidDecl())
return OR_No_Viable_Function;
const RecordType *T2RecordType = 0;
if ((T2RecordType = T2->getAs<RecordType>()) &&
!S.RequireCompleteType(Kind.getLocation(), T2, 0)) {
// The type we're converting from is a class type, enumerate its conversion
// functions.
CXXRecordDecl *T2RecordDecl = cast<CXXRecordDecl>(T2RecordType->getDecl());
std::pair<CXXRecordDecl::conversion_iterator,
CXXRecordDecl::conversion_iterator>
Conversions = T2RecordDecl->getVisibleConversionFunctions();
for (CXXRecordDecl::conversion_iterator
I = Conversions.first, E = Conversions.second; I != E; ++I) {
NamedDecl *D = *I;
CXXRecordDecl *ActingDC = cast<CXXRecordDecl>(D->getDeclContext());
if (isa<UsingShadowDecl>(D))
D = cast<UsingShadowDecl>(D)->getTargetDecl();
FunctionTemplateDecl *ConvTemplate = dyn_cast<FunctionTemplateDecl>(D);
CXXConversionDecl *Conv;
if (ConvTemplate)
Conv = cast<CXXConversionDecl>(ConvTemplate->getTemplatedDecl());
else
Conv = cast<CXXConversionDecl>(D);
// If the conversion function doesn't return a reference type,
// it can't be considered for this conversion unless we're allowed to
// consider rvalues.
// FIXME: Do we need to make sure that we only consider conversion
// candidates with reference-compatible results? That might be needed to
// break recursion.
if ((AllowExplicitConvs || !Conv->isExplicit()) &&
(AllowRValues || Conv->getConversionType()->isLValueReferenceType())){
if (ConvTemplate)
S.AddTemplateConversionCandidate(ConvTemplate, I.getPair(),
ActingDC, Initializer,
DestType, CandidateSet);
else
S.AddConversionCandidate(Conv, I.getPair(), ActingDC,
Initializer, DestType, CandidateSet);
}
}
}
if (T2RecordType && T2RecordType->getDecl()->isInvalidDecl())
return OR_No_Viable_Function;
SourceLocation DeclLoc = Initializer->getLocStart();
// Perform overload resolution. If it fails, return the failed result.
OverloadCandidateSet::iterator Best;
if (OverloadingResult Result
= CandidateSet.BestViableFunction(S, DeclLoc, Best, true))
return Result;
FunctionDecl *Function = Best->Function;
// This is the overload that will be used for this initialization step if we
// use this initialization. Mark it as referenced.
Function->setReferenced();
// Compute the returned type of the conversion.
if (isa<CXXConversionDecl>(Function))
T2 = Function->getResultType();
else
T2 = cv1T1;
// Add the user-defined conversion step.
bool HadMultipleCandidates = (CandidateSet.size() > 1);
Sequence.AddUserConversionStep(Function, Best->FoundDecl,
T2.getNonLValueExprType(S.Context),
HadMultipleCandidates);
// Determine whether we need to perform derived-to-base or
// cv-qualification adjustments.
ExprValueKind VK = VK_RValue;
if (T2->isLValueReferenceType())
VK = VK_LValue;
else if (const RValueReferenceType *RRef = T2->getAs<RValueReferenceType>())
VK = RRef->getPointeeType()->isFunctionType() ? VK_LValue : VK_XValue;
bool NewDerivedToBase = false;
bool NewObjCConversion = false;
bool NewObjCLifetimeConversion = false;
Sema::ReferenceCompareResult NewRefRelationship
= S.CompareReferenceRelationship(DeclLoc, T1,
T2.getNonLValueExprType(S.Context),
NewDerivedToBase, NewObjCConversion,
NewObjCLifetimeConversion);
if (NewRefRelationship == Sema::Ref_Incompatible) {
// If the type we've converted to is not reference-related to the
// type we're looking for, then there is another conversion step
// we need to perform to produce a temporary of the right type
// that we'll be binding to.
ImplicitConversionSequence ICS;
ICS.setStandard();
ICS.Standard = Best->FinalConversion;
T2 = ICS.Standard.getToType(2);
Sequence.AddConversionSequenceStep(ICS, T2);
} else if (NewDerivedToBase)
Sequence.AddDerivedToBaseCastStep(
S.Context.getQualifiedType(T1,
T2.getNonReferenceType().getQualifiers()),
VK);
else if (NewObjCConversion)
Sequence.AddObjCObjectConversionStep(
S.Context.getQualifiedType(T1,
T2.getNonReferenceType().getQualifiers()));
if (cv1T1.getQualifiers() != T2.getNonReferenceType().getQualifiers())
Sequence.AddQualificationConversionStep(cv1T1, VK);
Sequence.AddReferenceBindingStep(cv1T1, !T2->isReferenceType());
return OR_Success;
}
static void CheckCXX98CompatAccessibleCopy(Sema &S,
const InitializedEntity &Entity,
Expr *CurInitExpr);
/// \brief Attempt reference initialization (C++0x [dcl.init.ref])
static void TryReferenceInitialization(Sema &S,
const InitializedEntity &Entity,
const InitializationKind &Kind,
Expr *Initializer,
InitializationSequence &Sequence) {
QualType DestType = Entity.getType();
QualType cv1T1 = DestType->getAs<ReferenceType>()->getPointeeType();
Qualifiers T1Quals;
QualType T1 = S.Context.getUnqualifiedArrayType(cv1T1, T1Quals);
QualType cv2T2 = Initializer->getType();
Qualifiers T2Quals;
QualType T2 = S.Context.getUnqualifiedArrayType(cv2T2, T2Quals);
// If the initializer is the address of an overloaded function, try
// to resolve the overloaded function. If all goes well, T2 is the
// type of the resulting function.
if (ResolveOverloadedFunctionForReferenceBinding(S, Initializer, cv2T2, T2,
T1, Sequence))
return;
// Delegate everything else to a subfunction.
TryReferenceInitializationCore(S, Entity, Kind, Initializer, cv1T1, T1,
T1Quals, cv2T2, T2, T2Quals, Sequence);
}
/// Converts the target of reference initialization so that it has the
/// appropriate qualifiers and value kind.
///
/// In this case, 'x' is an 'int' lvalue, but it needs to be 'const int'.
/// \code
/// int x;
/// const int &r = x;
/// \endcode
///
/// In this case the reference is binding to a bitfield lvalue, which isn't
/// valid. Perform a load to create a lifetime-extended temporary instead.
/// \code
/// const int &r = someStruct.bitfield;
/// \endcode
static ExprValueKind
convertQualifiersAndValueKindIfNecessary(Sema &S,
InitializationSequence &Sequence,
Expr *Initializer,
QualType cv1T1,
Qualifiers T1Quals,
Qualifiers T2Quals,
bool IsLValueRef) {
bool IsNonAddressableType = Initializer->refersToBitField() ||
Initializer->refersToVectorElement();
if (IsNonAddressableType) {
// C++11 [dcl.init.ref]p5: [...] Otherwise, the reference shall be an
// lvalue reference to a non-volatile const type, or the reference shall be
// an rvalue reference.
//
// If not, we can't make a temporary and bind to that. Give up and allow the
// error to be diagnosed later.
if (IsLValueRef && (!T1Quals.hasConst() || T1Quals.hasVolatile())) {
assert(Initializer->isGLValue());
return Initializer->getValueKind();
}
// Force a load so we can materialize a temporary.
Sequence.AddLValueToRValueStep(cv1T1.getUnqualifiedType());
return VK_RValue;
}
if (T1Quals != T2Quals) {
Sequence.AddQualificationConversionStep(cv1T1,
Initializer->getValueKind());
}
return Initializer->getValueKind();
}
/// \brief Reference initialization without resolving overloaded functions.
static void TryReferenceInitializationCore(Sema &S,
const InitializedEntity &Entity,
const InitializationKind &Kind,
Expr *Initializer,
QualType cv1T1, QualType T1,
Qualifiers T1Quals,
QualType cv2T2, QualType T2,
Qualifiers T2Quals,
InitializationSequence &Sequence) {
QualType DestType = Entity.getType();
SourceLocation DeclLoc = Initializer->getLocStart();
// Compute some basic properties of the types and the initializer.
bool isLValueRef = DestType->isLValueReferenceType();
bool isRValueRef = !isLValueRef;
bool DerivedToBase = false;
bool ObjCConversion = false;
bool ObjCLifetimeConversion = false;
Expr::Classification InitCategory = Initializer->Classify(S.Context);
Sema::ReferenceCompareResult RefRelationship
= S.CompareReferenceRelationship(DeclLoc, cv1T1, cv2T2, DerivedToBase,
ObjCConversion, ObjCLifetimeConversion);
// C++0x [dcl.init.ref]p5:
// A reference to type "cv1 T1" is initialized by an expression of type
// "cv2 T2" as follows:
//
// - If the reference is an lvalue reference and the initializer
// expression
// Note the analogous bullet points for rvlaue refs to functions. Because
// there are no function rvalues in C++, rvalue refs to functions are treated
// like lvalue refs.
OverloadingResult ConvOvlResult = OR_Success;
bool T1Function = T1->isFunctionType();
if (isLValueRef || T1Function) {
if (InitCategory.isLValue() &&
(RefRelationship >= Sema::Ref_Compatible_With_Added_Qualification ||
(Kind.isCStyleOrFunctionalCast() &&
RefRelationship == Sema::Ref_Related))) {
// - is an lvalue (but is not a bit-field), and "cv1 T1" is
// reference-compatible with "cv2 T2," or
//
// Per C++ [over.best.ics]p2, we don't diagnose whether the lvalue is a
// bit-field when we're determining whether the reference initialization
// can occur. However, we do pay attention to whether it is a bit-field
// to decide whether we're actually binding to a temporary created from
// the bit-field.
if (DerivedToBase)
Sequence.AddDerivedToBaseCastStep(
S.Context.getQualifiedType(T1, T2Quals),
VK_LValue);
else if (ObjCConversion)
Sequence.AddObjCObjectConversionStep(
S.Context.getQualifiedType(T1, T2Quals));
ExprValueKind ValueKind =
convertQualifiersAndValueKindIfNecessary(S, Sequence, Initializer,
cv1T1, T1Quals, T2Quals,
isLValueRef);
Sequence.AddReferenceBindingStep(cv1T1, ValueKind == VK_RValue);
return;
}
// - has a class type (i.e., T2 is a class type), where T1 is not
// reference-related to T2, and can be implicitly converted to an
// lvalue of type "cv3 T3," where "cv1 T1" is reference-compatible
// with "cv3 T3" (this conversion is selected by enumerating the
// applicable conversion functions (13.3.1.6) and choosing the best
// one through overload resolution (13.3)),
// If we have an rvalue ref to function type here, the rhs must be
// an rvalue.
if (RefRelationship == Sema::Ref_Incompatible && T2->isRecordType() &&
(isLValueRef || InitCategory.isRValue())) {
ConvOvlResult = TryRefInitWithConversionFunction(S, Entity, Kind,
Initializer,
/*AllowRValues=*/isRValueRef,
Sequence);
if (ConvOvlResult == OR_Success)
return;
if (ConvOvlResult != OR_No_Viable_Function) {
Sequence.SetOverloadFailure(
InitializationSequence::FK_ReferenceInitOverloadFailed,
ConvOvlResult);
}
}
}
// - Otherwise, the reference shall be an lvalue reference to a
// non-volatile const type (i.e., cv1 shall be const), or the reference
// shall be an rvalue reference.
if (isLValueRef && !(T1Quals.hasConst() && !T1Quals.hasVolatile())) {
if (S.Context.getCanonicalType(T2) == S.Context.OverloadTy)
Sequence.SetFailed(InitializationSequence::FK_AddressOfOverloadFailed);
else if (ConvOvlResult && !Sequence.getFailedCandidateSet().empty())
Sequence.SetOverloadFailure(
InitializationSequence::FK_ReferenceInitOverloadFailed,
ConvOvlResult);
else
Sequence.SetFailed(InitCategory.isLValue()
? (RefRelationship == Sema::Ref_Related
? InitializationSequence::FK_ReferenceInitDropsQualifiers
: InitializationSequence::FK_NonConstLValueReferenceBindingToUnrelated)
: InitializationSequence::FK_NonConstLValueReferenceBindingToTemporary);
return;
}
// - If the initializer expression
// - is an xvalue, class prvalue, array prvalue, or function lvalue and
// "cv1 T1" is reference-compatible with "cv2 T2"
// Note: functions are handled below.
if (!T1Function &&
(RefRelationship >= Sema::Ref_Compatible_With_Added_Qualification ||
(Kind.isCStyleOrFunctionalCast() &&
RefRelationship == Sema::Ref_Related)) &&
(InitCategory.isXValue() ||
(InitCategory.isPRValue() && T2->isRecordType()) ||
(InitCategory.isPRValue() && T2->isArrayType()))) {
ExprValueKind ValueKind = InitCategory.isXValue()? VK_XValue : VK_RValue;
if (InitCategory.isPRValue() && T2->isRecordType()) {
// The corresponding bullet in C++03 [dcl.init.ref]p5 gives the
// compiler the freedom to perform a copy here or bind to the
// object, while C++0x requires that we bind directly to the
// object. Hence, we always bind to the object without making an
// extra copy. However, in C++03 requires that we check for the
// presence of a suitable copy constructor:
//
// The constructor that would be used to make the copy shall
// be callable whether or not the copy is actually done.
if (!S.getLangOpts().CPlusPlus11 && !S.getLangOpts().MicrosoftExt)
Sequence.AddExtraneousCopyToTemporary(cv2T2);
else if (S.getLangOpts().CPlusPlus11)
CheckCXX98CompatAccessibleCopy(S, Entity, Initializer);
}
if (DerivedToBase)
Sequence.AddDerivedToBaseCastStep(S.Context.getQualifiedType(T1, T2Quals),
ValueKind);
else if (ObjCConversion)
Sequence.AddObjCObjectConversionStep(
S.Context.getQualifiedType(T1, T2Quals));
ValueKind = convertQualifiersAndValueKindIfNecessary(S, Sequence,
Initializer, cv1T1,
T1Quals, T2Quals,
isLValueRef);
Sequence.AddReferenceBindingStep(cv1T1, ValueKind == VK_RValue);
return;
}
// - has a class type (i.e., T2 is a class type), where T1 is not
// reference-related to T2, and can be implicitly converted to an
// xvalue, class prvalue, or function lvalue of type "cv3 T3",
// where "cv1 T1" is reference-compatible with "cv3 T3",
if (T2->isRecordType()) {
if (RefRelationship == Sema::Ref_Incompatible) {
ConvOvlResult = TryRefInitWithConversionFunction(S, Entity,
Kind, Initializer,
/*AllowRValues=*/true,
Sequence);
if (ConvOvlResult)
Sequence.SetOverloadFailure(
InitializationSequence::FK_ReferenceInitOverloadFailed,
ConvOvlResult);
return;
}
if ((RefRelationship == Sema::Ref_Compatible ||
RefRelationship == Sema::Ref_Compatible_With_Added_Qualification) &&
isRValueRef && InitCategory.isLValue()) {
Sequence.SetFailed(
InitializationSequence::FK_RValueReferenceBindingToLValue);
return;
}
Sequence.SetFailed(InitializationSequence::FK_ReferenceInitDropsQualifiers);
return;
}
// - Otherwise, a temporary of type "cv1 T1" is created and initialized
// from the initializer expression using the rules for a non-reference
// copy-initialization (8.5). The reference is then bound to the
// temporary. [...]
InitializedEntity TempEntity = InitializedEntity::InitializeTemporary(cv1T1);
// FIXME: Why do we use an implicit conversion here rather than trying
// copy-initialization?
ImplicitConversionSequence ICS
= S.TryImplicitConversion(Initializer, TempEntity.getType(),
/*SuppressUserConversions=*/false,
/*AllowExplicit=*/false,
/*FIXME:InOverloadResolution=*/false,
/*CStyle=*/Kind.isCStyleOrFunctionalCast(),
/*AllowObjCWritebackConversion=*/false);
if (ICS.isBad()) {
// FIXME: Use the conversion function set stored in ICS to turn
// this into an overloading ambiguity diagnostic. However, we need
// to keep that set as an OverloadCandidateSet rather than as some
// other kind of set.
if (ConvOvlResult && !Sequence.getFailedCandidateSet().empty())
Sequence.SetOverloadFailure(
InitializationSequence::FK_ReferenceInitOverloadFailed,
ConvOvlResult);
else if (S.Context.getCanonicalType(T2) == S.Context.OverloadTy)
Sequence.SetFailed(InitializationSequence::FK_AddressOfOverloadFailed);
else
Sequence.SetFailed(InitializationSequence::FK_ReferenceInitFailed);
return;
} else {
Sequence.AddConversionSequenceStep(ICS, TempEntity.getType());
}
// [...] If T1 is reference-related to T2, cv1 must be the
// same cv-qualification as, or greater cv-qualification
// than, cv2; otherwise, the program is ill-formed.
unsigned T1CVRQuals = T1Quals.getCVRQualifiers();
unsigned T2CVRQuals = T2Quals.getCVRQualifiers();
if (RefRelationship == Sema::Ref_Related &&
(T1CVRQuals | T2CVRQuals) != T1CVRQuals) {
Sequence.SetFailed(InitializationSequence::FK_ReferenceInitDropsQualifiers);
return;
}
// [...] If T1 is reference-related to T2 and the reference is an rvalue
// reference, the initializer expression shall not be an lvalue.
if (RefRelationship >= Sema::Ref_Related && !isLValueRef &&
InitCategory.isLValue()) {
Sequence.SetFailed(
InitializationSequence::FK_RValueReferenceBindingToLValue);
return;
}
Sequence.AddReferenceBindingStep(cv1T1, /*bindingTemporary=*/true);
return;
}
/// \brief Attempt character array initialization from a string literal
/// (C++ [dcl.init.string], C99 6.7.8).
static void TryStringLiteralInitialization(Sema &S,
const InitializedEntity &Entity,
const InitializationKind &Kind,
Expr *Initializer,
InitializationSequence &Sequence) {
Sequence.AddStringInitStep(Entity.getType());
}
/// \brief Attempt value initialization (C++ [dcl.init]p7).
static void TryValueInitialization(Sema &S,
const InitializedEntity &Entity,
const InitializationKind &Kind,
InitializationSequence &Sequence,
InitListExpr *InitList) {
assert((!InitList || InitList->getNumInits() == 0) &&
"Shouldn't use value-init for non-empty init lists");
// C++98 [dcl.init]p5, C++11 [dcl.init]p7:
//
// To value-initialize an object of type T means:
QualType T = Entity.getType();
// -- if T is an array type, then each element is value-initialized;
T = S.Context.getBaseElementType(T);
if (const RecordType *RT = T->getAs<RecordType>()) {
if (CXXRecordDecl *ClassDecl = dyn_cast<CXXRecordDecl>(RT->getDecl())) {
bool NeedZeroInitialization = true;
if (!S.getLangOpts().CPlusPlus11) {
// C++98:
// -- if T is a class type (clause 9) with a user-declared constructor
// (12.1), then the default constructor for T is called (and the
// initialization is ill-formed if T has no accessible default
// constructor);
if (ClassDecl->hasUserDeclaredConstructor())
NeedZeroInitialization = false;
} else {
// C++11:
// -- if T is a class type (clause 9) with either no default constructor
// (12.1 [class.ctor]) or a default constructor that is user-provided
// or deleted, then the object is default-initialized;
CXXConstructorDecl *CD = S.LookupDefaultConstructor(ClassDecl);
if (!CD || !CD->getCanonicalDecl()->isDefaulted() || CD->isDeleted())
NeedZeroInitialization = false;
}
// -- if T is a (possibly cv-qualified) non-union class type without a
// user-provided or deleted default constructor, then the object is
// zero-initialized and, if T has a non-trivial default constructor,
// default-initialized;
// The 'non-union' here was removed by DR1502. The 'non-trivial default
// constructor' part was removed by DR1507.
if (NeedZeroInitialization)
Sequence.AddZeroInitializationStep(Entity.getType());
// C++03:
// -- if T is a non-union class type without a user-declared constructor,
// then every non-static data member and base class component of T is
// value-initialized;
// [...] A program that calls for [...] value-initialization of an
// entity of reference type is ill-formed.
//
// C++11 doesn't need this handling, because value-initialization does not
// occur recursively there, and the implicit default constructor is
// defined as deleted in the problematic cases.
if (!S.getLangOpts().CPlusPlus11 &&
ClassDecl->hasUninitializedReferenceMember()) {
Sequence.SetFailed(InitializationSequence::FK_TooManyInitsForReference);
return;
}
// If this is list-value-initialization, pass the empty init list on when
// building the constructor call. This affects the semantics of a few
// things (such as whether an explicit default constructor can be called).
Expr *InitListAsExpr = InitList;
MultiExprArg Args(&InitListAsExpr, InitList ? 1 : 0);
bool InitListSyntax = InitList;
return TryConstructorInitialization(S, Entity, Kind, Args, T, Sequence,
InitListSyntax);
}
}
Sequence.AddZeroInitializationStep(Entity.getType());
}
/// \brief Attempt default initialization (C++ [dcl.init]p6).
static void TryDefaultInitialization(Sema &S,
const InitializedEntity &Entity,
const InitializationKind &Kind,
InitializationSequence &Sequence) {
assert(Kind.getKind() == InitializationKind::IK_Default);
// C++ [dcl.init]p6:
// To default-initialize an object of type T means:
// - if T is an array type, each element is default-initialized;
QualType DestType = S.Context.getBaseElementType(Entity.getType());
// - if T is a (possibly cv-qualified) class type (Clause 9), the default
// constructor for T is called (and the initialization is ill-formed if
// T has no accessible default constructor);
if (DestType->isRecordType() && S.getLangOpts().CPlusPlus) {
TryConstructorInitialization(S, Entity, Kind, None, DestType, Sequence);
return;
}
// - otherwise, no initialization is performed.
// If a program calls for the default initialization of an object of
// a const-qualified type T, T shall be a class type with a user-provided
// default constructor.
if (DestType.isConstQualified() && S.getLangOpts().CPlusPlus) {
Sequence.SetFailed(InitializationSequence::FK_DefaultInitOfConst);
return;
}
// If the destination type has a lifetime property, zero-initialize it.
if (DestType.getQualifiers().hasObjCLifetime()) {
Sequence.AddZeroInitializationStep(Entity.getType());
return;
}
}
/// \brief Attempt a user-defined conversion between two types (C++ [dcl.init]),
/// which enumerates all conversion functions and performs overload resolution
/// to select the best.
static void TryUserDefinedConversion(Sema &S,
const InitializedEntity &Entity,
const InitializationKind &Kind,
Expr *Initializer,
InitializationSequence &Sequence) {
QualType DestType = Entity.getType();
assert(!DestType->isReferenceType() && "References are handled elsewhere");
QualType SourceType = Initializer->getType();
assert((DestType->isRecordType() || SourceType->isRecordType()) &&
"Must have a class type to perform a user-defined conversion");
// Build the candidate set directly in the initialization sequence
// structure, so that it will persist if we fail.
OverloadCandidateSet &CandidateSet = Sequence.getFailedCandidateSet();
CandidateSet.clear();
// Determine whether we are allowed to call explicit constructors or
// explicit conversion operators.
bool AllowExplicit = Kind.AllowExplicit();
if (const RecordType *DestRecordType = DestType->getAs<RecordType>()) {
// The type we're converting to is a class type. Enumerate its constructors
// to see if there is a suitable conversion.
CXXRecordDecl *DestRecordDecl
= cast<CXXRecordDecl>(DestRecordType->getDecl());
// Try to complete the type we're converting to.
if (!S.RequireCompleteType(Kind.getLocation(), DestType, 0)) {
DeclContext::lookup_result R = S.LookupConstructors(DestRecordDecl);
// The container holding the constructors can under certain conditions
// be changed while iterating. To be safe we copy the lookup results
// to a new container.
SmallVector<NamedDecl*, 8> CopyOfCon(R.begin(), R.end());
for (SmallVectorImpl<NamedDecl *>::iterator
Con = CopyOfCon.begin(), ConEnd = CopyOfCon.end();
Con != ConEnd; ++Con) {
NamedDecl *D = *Con;
DeclAccessPair FoundDecl = DeclAccessPair::make(D, D->getAccess());
// Find the constructor (which may be a template).
CXXConstructorDecl *Constructor = 0;
FunctionTemplateDecl *ConstructorTmpl
= dyn_cast<FunctionTemplateDecl>(D);
if (ConstructorTmpl)
Constructor = cast<CXXConstructorDecl>(
ConstructorTmpl->getTemplatedDecl());
else
Constructor = cast<CXXConstructorDecl>(D);
if (!Constructor->isInvalidDecl() &&
Constructor->isConvertingConstructor(AllowExplicit)) {
if (ConstructorTmpl)
S.AddTemplateOverloadCandidate(ConstructorTmpl, FoundDecl,
/*ExplicitArgs*/ 0,
Initializer, CandidateSet,
/*SuppressUserConversions=*/true);
else
S.AddOverloadCandidate(Constructor, FoundDecl,
Initializer, CandidateSet,
/*SuppressUserConversions=*/true);
}
}
}
}
SourceLocation DeclLoc = Initializer->getLocStart();
if (const RecordType *SourceRecordType = SourceType->getAs<RecordType>()) {
// The type we're converting from is a class type, enumerate its conversion
// functions.
// We can only enumerate the conversion functions for a complete type; if
// the type isn't complete, simply skip this step.
if (!S.RequireCompleteType(DeclLoc, SourceType, 0)) {
CXXRecordDecl *SourceRecordDecl
= cast<CXXRecordDecl>(SourceRecordType->getDecl());
std::pair<CXXRecordDecl::conversion_iterator,
CXXRecordDecl::conversion_iterator>
Conversions = SourceRecordDecl->getVisibleConversionFunctions();
for (CXXRecordDecl::conversion_iterator
I = Conversions.first, E = Conversions.second; I != E; ++I) {
NamedDecl *D = *I;
CXXRecordDecl *ActingDC = cast<CXXRecordDecl>(D->getDeclContext());
if (isa<UsingShadowDecl>(D))
D = cast<UsingShadowDecl>(D)->getTargetDecl();
FunctionTemplateDecl *ConvTemplate = dyn_cast<FunctionTemplateDecl>(D);
CXXConversionDecl *Conv;
if (ConvTemplate)
Conv = cast<CXXConversionDecl>(ConvTemplate->getTemplatedDecl());
else
Conv = cast<CXXConversionDecl>(D);
if (AllowExplicit || !Conv->isExplicit()) {
if (ConvTemplate)
S.AddTemplateConversionCandidate(ConvTemplate, I.getPair(),
ActingDC, Initializer, DestType,
CandidateSet);
else
S.AddConversionCandidate(Conv, I.getPair(), ActingDC,
Initializer, DestType, CandidateSet);
}
}
}
}
// Perform overload resolution. If it fails, return the failed result.
OverloadCandidateSet::iterator Best;
if (OverloadingResult Result
= CandidateSet.BestViableFunction(S, DeclLoc, Best, true)) {
Sequence.SetOverloadFailure(
InitializationSequence::FK_UserConversionOverloadFailed,
Result);
return;
}
FunctionDecl *Function = Best->Function;
Function->setReferenced();
bool HadMultipleCandidates = (CandidateSet.size() > 1);
if (isa<CXXConstructorDecl>(Function)) {
// Add the user-defined conversion step. Any cv-qualification conversion is
// subsumed by the initialization. Per DR5, the created temporary is of the
// cv-unqualified type of the destination.
Sequence.AddUserConversionStep(Function, Best->FoundDecl,
DestType.getUnqualifiedType(),
HadMultipleCandidates);
return;
}
// Add the user-defined conversion step that calls the conversion function.
QualType ConvType = Function->getCallResultType();
if (ConvType->getAs<RecordType>()) {
// If we're converting to a class type, there may be an copy of
// the resulting temporary object (possible to create an object of
// a base class type). That copy is not a separate conversion, so
// we just make a note of the actual destination type (possibly a
// base class of the type returned by the conversion function) and
// let the user-defined conversion step handle the conversion.
Sequence.AddUserConversionStep(Function, Best->FoundDecl, DestType,
HadMultipleCandidates);
return;
}
Sequence.AddUserConversionStep(Function, Best->FoundDecl, ConvType,
HadMultipleCandidates);
// If the conversion following the call to the conversion function
// is interesting, add it as a separate step.
if (Best->FinalConversion.First || Best->FinalConversion.Second ||
Best->FinalConversion.Third) {
ImplicitConversionSequence ICS;
ICS.setStandard();
ICS.Standard = Best->FinalConversion;
Sequence.AddConversionSequenceStep(ICS, DestType);
}
}
/// An egregious hack for compatibility with libstdc++-4.2: in <tr1/hashtable>,
/// a function with a pointer return type contains a 'return false;' statement.
/// In C++11, 'false' is not a null pointer, so this breaks the build of any
/// code using that header.
///
/// Work around this by treating 'return false;' as zero-initializing the result
/// if it's used in a pointer-returning function in a system header.
static bool isLibstdcxxPointerReturnFalseHack(Sema &S,
const InitializedEntity &Entity,
const Expr *Init) {
return S.getLangOpts().CPlusPlus11 &&
Entity.getKind() == InitializedEntity::EK_Result &&
Entity.getType()->isPointerType() &&
isa<CXXBoolLiteralExpr>(Init) &&
!cast<CXXBoolLiteralExpr>(Init)->getValue() &&
S.getSourceManager().isInSystemHeader(Init->getExprLoc());
}
/// The non-zero enum values here are indexes into diagnostic alternatives.
enum InvalidICRKind { IIK_okay, IIK_nonlocal, IIK_nonscalar };
/// Determines whether this expression is an acceptable ICR source.
static InvalidICRKind isInvalidICRSource(ASTContext &C, Expr *e,
bool isAddressOf, bool &isWeakAccess) {
// Skip parens.
e = e->IgnoreParens();
// Skip address-of nodes.
if (UnaryOperator *op = dyn_cast<UnaryOperator>(e)) {
if (op->getOpcode() == UO_AddrOf)
return isInvalidICRSource(C, op->getSubExpr(), /*addressof*/ true,
isWeakAccess);
// Skip certain casts.
} else if (CastExpr *ce = dyn_cast<CastExpr>(e)) {
switch (ce->getCastKind()) {
case CK_Dependent:
case CK_BitCast:
case CK_LValueBitCast:
case CK_NoOp:
return isInvalidICRSource(C, ce->getSubExpr(), isAddressOf, isWeakAccess);
case CK_ArrayToPointerDecay:
return IIK_nonscalar;
case CK_NullToPointer:
return IIK_okay;
default:
break;
}
// If we have a declaration reference, it had better be a local variable.
} else if (isa<DeclRefExpr>(e)) {
// set isWeakAccess to true, to mean that there will be an implicit
// load which requires a cleanup.
if (e->getType().getObjCLifetime() == Qualifiers::OCL_Weak)
isWeakAccess = true;
if (!isAddressOf) return IIK_nonlocal;
VarDecl *var = dyn_cast<VarDecl>(cast<DeclRefExpr>(e)->getDecl());
if (!var) return IIK_nonlocal;
return (var->hasLocalStorage() ? IIK_okay : IIK_nonlocal);
// If we have a conditional operator, check both sides.
} else if (ConditionalOperator *cond = dyn_cast<ConditionalOperator>(e)) {
if (InvalidICRKind iik = isInvalidICRSource(C, cond->getLHS(), isAddressOf,
isWeakAccess))
return iik;
return isInvalidICRSource(C, cond->getRHS(), isAddressOf, isWeakAccess);
// These are never scalar.
} else if (isa<ArraySubscriptExpr>(e)) {
return IIK_nonscalar;
// Otherwise, it needs to be a null pointer constant.
} else {
return (e->isNullPointerConstant(C, Expr::NPC_ValueDependentIsNull)
? IIK_okay : IIK_nonlocal);
}
return IIK_nonlocal;
}
/// Check whether the given expression is a valid operand for an
/// indirect copy/restore.
static void checkIndirectCopyRestoreSource(Sema &S, Expr *src) {
assert(src->isRValue());
bool isWeakAccess = false;
InvalidICRKind iik = isInvalidICRSource(S.Context, src, false, isWeakAccess);
// If isWeakAccess to true, there will be an implicit
// load which requires a cleanup.
if (S.getLangOpts().ObjCAutoRefCount && isWeakAccess)
S.ExprNeedsCleanups = true;
if (iik == IIK_okay) return;
S.Diag(src->getExprLoc(), diag::err_arc_nonlocal_writeback)
<< ((unsigned) iik - 1) // shift index into diagnostic explanations
<< src->getSourceRange();
}
/// \brief Determine whether we have compatible array types for the
/// purposes of GNU by-copy array initialization.
static bool hasCompatibleArrayTypes(ASTContext &Context,
const ArrayType *Dest,
const ArrayType *Source) {
// If the source and destination array types are equivalent, we're
// done.
if (Context.hasSameType(QualType(Dest, 0), QualType(Source, 0)))
return true;
// Make sure that the element types are the same.
if (!Context.hasSameType(Dest->getElementType(), Source->getElementType()))
return false;
// The only mismatch we allow is when the destination is an
// incomplete array type and the source is a constant array type.
return Source->isConstantArrayType() && Dest->isIncompleteArrayType();
}
static bool tryObjCWritebackConversion(Sema &S,
InitializationSequence &Sequence,
const InitializedEntity &Entity,
Expr *Initializer) {
bool ArrayDecay = false;
QualType ArgType = Initializer->getType();
QualType ArgPointee;
if (const ArrayType *ArgArrayType = S.Context.getAsArrayType(ArgType)) {
ArrayDecay = true;
ArgPointee = ArgArrayType->getElementType();
ArgType = S.Context.getPointerType(ArgPointee);
}
// Handle write-back conversion.
QualType ConvertedArgType;
if (!S.isObjCWritebackConversion(ArgType, Entity.getType(),
ConvertedArgType))
return false;
// We should copy unless we're passing to an argument explicitly
// marked 'out'.
bool ShouldCopy = true;
if (ParmVarDecl *param = cast_or_null<ParmVarDecl>(Entity.getDecl()))
ShouldCopy = (param->getObjCDeclQualifier() != ParmVarDecl::OBJC_TQ_Out);
// Do we need an lvalue conversion?
if (ArrayDecay || Initializer->isGLValue()) {
ImplicitConversionSequence ICS;
ICS.setStandard();
ICS.Standard.setAsIdentityConversion();
QualType ResultType;
if (ArrayDecay) {
ICS.Standard.First = ICK_Array_To_Pointer;
ResultType = S.Context.getPointerType(ArgPointee);
} else {
ICS.Standard.First = ICK_Lvalue_To_Rvalue;
ResultType = Initializer->getType().getNonLValueExprType(S.Context);
}
Sequence.AddConversionSequenceStep(ICS, ResultType);
}
Sequence.AddPassByIndirectCopyRestoreStep(Entity.getType(), ShouldCopy);
return true;
}
static bool TryOCLSamplerInitialization(Sema &S,
InitializationSequence &Sequence,
QualType DestType,
Expr *Initializer) {
if (!S.getLangOpts().OpenCL || !DestType->isSamplerT() ||
!Initializer->isIntegerConstantExpr(S.getASTContext()))
return false;
Sequence.AddOCLSamplerInitStep(DestType);
return true;
}
//
// OpenCL 1.2 spec, s6.12.10
//
// The event argument can also be used to associate the
// async_work_group_copy with a previous async copy allowing
// an event to be shared by multiple async copies; otherwise
// event should be zero.
//
static bool TryOCLZeroEventInitialization(Sema &S,
InitializationSequence &Sequence,
QualType DestType,
Expr *Initializer) {
if (!S.getLangOpts().OpenCL || !DestType->isEventT() ||
!Initializer->isIntegerConstantExpr(S.getASTContext()) ||
(Initializer->EvaluateKnownConstInt(S.getASTContext()) != 0))
return false;
Sequence.AddOCLZeroEventStep(DestType);
return true;
}
InitializationSequence::InitializationSequence(Sema &S,
const InitializedEntity &Entity,
const InitializationKind &Kind,
MultiExprArg Args)
: FailedCandidateSet(Kind.getLocation()) {
ASTContext &Context = S.Context;
// Eliminate non-overload placeholder types in the arguments. We
// need to do this before checking whether types are dependent
// because lowering a pseudo-object expression might well give us
// something of dependent type.
for (unsigned I = 0, E = Args.size(); I != E; ++I)
if (Args[I]->getType()->isNonOverloadPlaceholderType()) {
// FIXME: should we be doing this here?
ExprResult result = S.CheckPlaceholderExpr(Args[I]);
if (result.isInvalid()) {
SetFailed(FK_PlaceholderType);
return;
}
Args[I] = result.take();
}
// C++0x [dcl.init]p16:
// The semantics of initializers are as follows. The destination type is
// the type of the object or reference being initialized and the source
// type is the type of the initializer expression. The source type is not
// defined when the initializer is a braced-init-list or when it is a
// parenthesized list of expressions.
QualType DestType = Entity.getType();
if (DestType->isDependentType() ||
Expr::hasAnyTypeDependentArguments(Args)) {
SequenceKind = DependentSequence;
return;
}
// Almost everything is a normal sequence.
setSequenceKind(NormalSequence);
QualType SourceType;
Expr *Initializer = 0;
if (Args.size() == 1) {
Initializer = Args[0];
if (!isa<InitListExpr>(Initializer))
SourceType = Initializer->getType();
}
// - If the initializer is a (non-parenthesized) braced-init-list, the
// object is list-initialized (8.5.4).
if (Kind.getKind() != InitializationKind::IK_Direct) {
if (InitListExpr *InitList = dyn_cast_or_null<InitListExpr>(Initializer)) {
TryListInitialization(S, Entity, Kind, InitList, *this);
return;
}
}
// - If the destination type is a reference type, see 8.5.3.
if (DestType->isReferenceType()) {
// C++0x [dcl.init.ref]p1:
// A variable declared to be a T& or T&&, that is, "reference to type T"
// (8.3.2), shall be initialized by an object, or function, of type T or
// by an object that can be converted into a T.
// (Therefore, multiple arguments are not permitted.)
if (Args.size() != 1)
SetFailed(FK_TooManyInitsForReference);
else
TryReferenceInitialization(S, Entity, Kind, Args[0], *this);
return;
}
// - If the initializer is (), the object is value-initialized.
if (Kind.getKind() == InitializationKind::IK_Value ||
(Kind.getKind() == InitializationKind::IK_Direct && Args.empty())) {
TryValueInitialization(S, Entity, Kind, *this);
return;
}
// Handle default initialization.
if (Kind.getKind() == InitializationKind::IK_Default) {
TryDefaultInitialization(S, Entity, Kind, *this);
return;
}
// - If the destination type is an array of characters, an array of
// char16_t, an array of char32_t, or an array of wchar_t, and the
// initializer is a string literal, see 8.5.2.
// - Otherwise, if the destination type is an array, the program is
// ill-formed.
if (const ArrayType *DestAT = Context.getAsArrayType(DestType)) {
if (Initializer && isa<VariableArrayType>(DestAT)) {
SetFailed(FK_VariableLengthArrayHasInitializer);
return;
}
if (Initializer) {
switch (IsStringInit(Initializer, DestAT, Context)) {
case SIF_None:
TryStringLiteralInitialization(S, Entity, Kind, Initializer, *this);
return;
case SIF_NarrowStringIntoWideChar:
SetFailed(FK_NarrowStringIntoWideCharArray);
return;
case SIF_WideStringIntoChar:
SetFailed(FK_WideStringIntoCharArray);
return;
case SIF_IncompatWideStringIntoWideChar:
SetFailed(FK_IncompatWideStringIntoWideChar);
return;
case SIF_Other:
break;
}
}
// Note: as an GNU C extension, we allow initialization of an
// array from a compound literal that creates an array of the same
// type, so long as the initializer has no side effects.
if (!S.getLangOpts().CPlusPlus && Initializer &&
isa<CompoundLiteralExpr>(Initializer->IgnoreParens()) &&
Initializer->getType()->isArrayType()) {
const ArrayType *SourceAT
= Context.getAsArrayType(Initializer->getType());
if (!hasCompatibleArrayTypes(S.Context, DestAT, SourceAT))
SetFailed(FK_ArrayTypeMismatch);
else if (Initializer->HasSideEffects(S.Context))
SetFailed(FK_NonConstantArrayInit);
else {
AddArrayInitStep(DestType);
}
}
// Note: as a GNU C++ extension, we allow list-initialization of a
// class member of array type from a parenthesized initializer list.
else if (S.getLangOpts().CPlusPlus &&
Entity.getKind() == InitializedEntity::EK_Member &&
Initializer && isa<InitListExpr>(Initializer)) {
TryListInitialization(S, Entity, Kind, cast<InitListExpr>(Initializer),
*this);
AddParenthesizedArrayInitStep(DestType);
} else if (DestAT->getElementType()->isCharType())
SetFailed(FK_ArrayNeedsInitListOrStringLiteral);
else if (IsWideCharCompatible(DestAT->getElementType(), Context))
SetFailed(FK_ArrayNeedsInitListOrWideStringLiteral);
else
SetFailed(FK_ArrayNeedsInitList);
return;
}
// Determine whether we should consider writeback conversions for
// Objective-C ARC.
bool allowObjCWritebackConversion = S.getLangOpts().ObjCAutoRefCount &&
Entity.isParameterKind();
// We're at the end of the line for C: it's either a write-back conversion
// or it's a C assignment. There's no need to check anything else.
if (!S.getLangOpts().CPlusPlus) {
// If allowed, check whether this is an Objective-C writeback conversion.
if (allowObjCWritebackConversion &&
tryObjCWritebackConversion(S, *this, Entity, Initializer)) {
return;
}
if (TryOCLSamplerInitialization(S, *this, DestType, Initializer))
return;
if (TryOCLZeroEventInitialization(S, *this, DestType, Initializer))
return;
// Handle initialization in C
AddCAssignmentStep(DestType);
MaybeProduceObjCObject(S, *this, Entity);
return;
}
assert(S.getLangOpts().CPlusPlus);
// - If the destination type is a (possibly cv-qualified) class type:
if (DestType->isRecordType()) {
// - If the initialization is direct-initialization, or if it is
// copy-initialization where the cv-unqualified version of the
// source type is the same class as, or a derived class of, the
// class of the destination, constructors are considered. [...]
if (Kind.getKind() == InitializationKind::IK_Direct ||
(Kind.getKind() == InitializationKind::IK_Copy &&
(Context.hasSameUnqualifiedType(SourceType, DestType) ||
S.IsDerivedFrom(SourceType, DestType))))
TryConstructorInitialization(S, Entity, Kind, Args,
Entity.getType(), *this);
// - Otherwise (i.e., for the remaining copy-initialization cases),
// user-defined conversion sequences that can convert from the source
// type to the destination type or (when a conversion function is
// used) to a derived class thereof are enumerated as described in
// 13.3.1.4, and the best one is chosen through overload resolution
// (13.3).
else
TryUserDefinedConversion(S, Entity, Kind, Initializer, *this);
return;
}
if (Args.size() > 1) {
SetFailed(FK_TooManyInitsForScalar);
return;
}
assert(Args.size() == 1 && "Zero-argument case handled above");
// - Otherwise, if the source type is a (possibly cv-qualified) class
// type, conversion functions are considered.
if (!SourceType.isNull() && SourceType->isRecordType()) {
TryUserDefinedConversion(S, Entity, Kind, Initializer, *this);
MaybeProduceObjCObject(S, *this, Entity);
return;
}
// - Otherwise, the initial value of the object being initialized is the
// (possibly converted) value of the initializer expression. Standard
// conversions (Clause 4) will be used, if necessary, to convert the
// initializer expression to the cv-unqualified version of the
// destination type; no user-defined conversions are considered.
ImplicitConversionSequence ICS
= S.TryImplicitConversion(Initializer, Entity.getType(),
/*SuppressUserConversions*/true,
/*AllowExplicitConversions*/ false,
/*InOverloadResolution*/ false,
/*CStyle=*/Kind.isCStyleOrFunctionalCast(),
allowObjCWritebackConversion);
if (ICS.isStandard() &&
ICS.Standard.Second == ICK_Writeback_Conversion) {
// Objective-C ARC writeback conversion.
// We should copy unless we're passing to an argument explicitly
// marked 'out'.
bool ShouldCopy = true;
if (ParmVarDecl *Param = cast_or_null<ParmVarDecl>(Entity.getDecl()))
ShouldCopy = (Param->getObjCDeclQualifier() != ParmVarDecl::OBJC_TQ_Out);
// If there was an lvalue adjustment, add it as a separate conversion.
if (ICS.Standard.First == ICK_Array_To_Pointer ||
ICS.Standard.First == ICK_Lvalue_To_Rvalue) {
ImplicitConversionSequence LvalueICS;
LvalueICS.setStandard();
LvalueICS.Standard.setAsIdentityConversion();
LvalueICS.Standard.setAllToTypes(ICS.Standard.getToType(0));
LvalueICS.Standard.First = ICS.Standard.First;
AddConversionSequenceStep(LvalueICS, ICS.Standard.getToType(0));
}
AddPassByIndirectCopyRestoreStep(Entity.getType(), ShouldCopy);
} else if (ICS.isBad()) {
DeclAccessPair dap;
if (isLibstdcxxPointerReturnFalseHack(S, Entity, Initializer)) {
AddZeroInitializationStep(Entity.getType());
} else if (Initializer->getType() == Context.OverloadTy &&
!S.ResolveAddressOfOverloadedFunction(Initializer, DestType,
false, dap))
SetFailed(InitializationSequence::FK_AddressOfOverloadFailed);
else
SetFailed(InitializationSequence::FK_ConversionFailed);
} else {
AddConversionSequenceStep(ICS, Entity.getType());
MaybeProduceObjCObject(S, *this, Entity);
}
}
InitializationSequence::~InitializationSequence() {
for (SmallVectorImpl<Step>::iterator Step = Steps.begin(),
StepEnd = Steps.end();
Step != StepEnd; ++Step)
Step->Destroy();
}
//===----------------------------------------------------------------------===//
// Perform initialization
//===----------------------------------------------------------------------===//
static Sema::AssignmentAction
getAssignmentAction(const InitializedEntity &Entity, bool Diagnose = false) {
switch(Entity.getKind()) {
case InitializedEntity::EK_Variable:
case InitializedEntity::EK_New:
case InitializedEntity::EK_Exception:
case InitializedEntity::EK_Base:
case InitializedEntity::EK_Delegating:
return Sema::AA_Initializing;
case InitializedEntity::EK_Parameter:
if (Entity.getDecl() &&
isa<ObjCMethodDecl>(Entity.getDecl()->getDeclContext()))
return Sema::AA_Sending;
return Sema::AA_Passing;
case InitializedEntity::EK_Parameter_CF_Audited:
if (Entity.getDecl() &&
isa<ObjCMethodDecl>(Entity.getDecl()->getDeclContext()))
return Sema::AA_Sending;
return !Diagnose ? Sema::AA_Passing : Sema::AA_Passing_CFAudited;
case InitializedEntity::EK_Result:
return Sema::AA_Returning;
case InitializedEntity::EK_Temporary:
case InitializedEntity::EK_RelatedResult:
// FIXME: Can we tell apart casting vs. converting?
return Sema::AA_Casting;
case InitializedEntity::EK_Member:
case InitializedEntity::EK_ArrayElement:
case InitializedEntity::EK_VectorElement:
case InitializedEntity::EK_ComplexElement:
case InitializedEntity::EK_BlockElement:
case InitializedEntity::EK_LambdaCapture:
case InitializedEntity::EK_CompoundLiteralInit:
return Sema::AA_Initializing;
}
llvm_unreachable("Invalid EntityKind!");
}
/// \brief Whether we should bind a created object as a temporary when
/// initializing the given entity.
static bool shouldBindAsTemporary(const InitializedEntity &Entity) {
switch (Entity.getKind()) {
case InitializedEntity::EK_ArrayElement:
case InitializedEntity::EK_Member:
case InitializedEntity::EK_Result:
case InitializedEntity::EK_New:
case InitializedEntity::EK_Variable:
case InitializedEntity::EK_Base:
case InitializedEntity::EK_Delegating:
case InitializedEntity::EK_VectorElement:
case InitializedEntity::EK_ComplexElement:
case InitializedEntity::EK_Exception:
case InitializedEntity::EK_BlockElement:
case InitializedEntity::EK_LambdaCapture:
case InitializedEntity::EK_CompoundLiteralInit:
return false;
case InitializedEntity::EK_Parameter:
case InitializedEntity::EK_Parameter_CF_Audited:
case InitializedEntity::EK_Temporary:
case InitializedEntity::EK_RelatedResult:
return true;
}
llvm_unreachable("missed an InitializedEntity kind?");
}
/// \brief Whether the given entity, when initialized with an object
/// created for that initialization, requires destruction.
static bool shouldDestroyTemporary(const InitializedEntity &Entity) {
switch (Entity.getKind()) {
case InitializedEntity::EK_Result:
case InitializedEntity::EK_New:
case InitializedEntity::EK_Base:
case InitializedEntity::EK_Delegating:
case InitializedEntity::EK_VectorElement:
case InitializedEntity::EK_ComplexElement:
case InitializedEntity::EK_BlockElement:
case InitializedEntity::EK_LambdaCapture:
return false;
case InitializedEntity::EK_Member:
case InitializedEntity::EK_Variable:
case InitializedEntity::EK_Parameter:
case InitializedEntity::EK_Parameter_CF_Audited:
case InitializedEntity::EK_Temporary:
case InitializedEntity::EK_ArrayElement:
case InitializedEntity::EK_Exception:
case InitializedEntity::EK_CompoundLiteralInit:
case InitializedEntity::EK_RelatedResult:
return true;
}
llvm_unreachable("missed an InitializedEntity kind?");
}
/// \brief Look for copy and move constructors and constructor templates, for
/// copying an object via direct-initialization (per C++11 [dcl.init]p16).
static void LookupCopyAndMoveConstructors(Sema &S,
OverloadCandidateSet &CandidateSet,
CXXRecordDecl *Class,
Expr *CurInitExpr) {
DeclContext::lookup_result R = S.LookupConstructors(Class);
// The container holding the constructors can under certain conditions
// be changed while iterating (e.g. because of deserialization).
// To be safe we copy the lookup results to a new container.
SmallVector<NamedDecl*, 16> Ctors(R.begin(), R.end());
for (SmallVectorImpl<NamedDecl *>::iterator
CI = Ctors.begin(), CE = Ctors.end(); CI != CE; ++CI) {
NamedDecl *D = *CI;
CXXConstructorDecl *Constructor = 0;
if ((Constructor = dyn_cast<CXXConstructorDecl>(D))) {
// Handle copy/moveconstructors, only.
if (!Constructor || Constructor->isInvalidDecl() ||
!Constructor->isCopyOrMoveConstructor() ||
!Constructor->isConvertingConstructor(/*AllowExplicit=*/true))
continue;
DeclAccessPair FoundDecl
= DeclAccessPair::make(Constructor, Constructor->getAccess());
S.AddOverloadCandidate(Constructor, FoundDecl,
CurInitExpr, CandidateSet);
continue;
}
// Handle constructor templates.
FunctionTemplateDecl *ConstructorTmpl = cast<FunctionTemplateDecl>(D);
if (ConstructorTmpl->isInvalidDecl())
continue;
Constructor = cast<CXXConstructorDecl>(
ConstructorTmpl->getTemplatedDecl());
if (!Constructor->isConvertingConstructor(/*AllowExplicit=*/true))
continue;
// FIXME: Do we need to limit this to copy-constructor-like
// candidates?
DeclAccessPair FoundDecl
= DeclAccessPair::make(ConstructorTmpl, ConstructorTmpl->getAccess());
S.AddTemplateOverloadCandidate(ConstructorTmpl, FoundDecl, 0,
CurInitExpr, CandidateSet, true);
}
}
/// \brief Get the location at which initialization diagnostics should appear.
static SourceLocation getInitializationLoc(const InitializedEntity &Entity,
Expr *Initializer) {
switch (Entity.getKind()) {
case InitializedEntity::EK_Result:
return Entity.getReturnLoc();
case InitializedEntity::EK_Exception:
return Entity.getThrowLoc();
case InitializedEntity::EK_Variable:
return Entity.getDecl()->getLocation();
case InitializedEntity::EK_LambdaCapture:
return Entity.getCaptureLoc();
case InitializedEntity::EK_ArrayElement:
case InitializedEntity::EK_Member:
case InitializedEntity::EK_Parameter:
case InitializedEntity::EK_Parameter_CF_Audited:
case InitializedEntity::EK_Temporary:
case InitializedEntity::EK_New:
case InitializedEntity::EK_Base:
case InitializedEntity::EK_Delegating:
case InitializedEntity::EK_VectorElement:
case InitializedEntity::EK_ComplexElement:
case InitializedEntity::EK_BlockElement:
case InitializedEntity::EK_CompoundLiteralInit:
case InitializedEntity::EK_RelatedResult:
return Initializer->getLocStart();
}
llvm_unreachable("missed an InitializedEntity kind?");
}
/// \brief Make a (potentially elidable) temporary copy of the object
/// provided by the given initializer by calling the appropriate copy
/// constructor.
///
/// \param S The Sema object used for type-checking.
///
/// \param T The type of the temporary object, which must either be
/// the type of the initializer expression or a superclass thereof.
///
/// \param Entity The entity being initialized.
///
/// \param CurInit The initializer expression.
///
/// \param IsExtraneousCopy Whether this is an "extraneous" copy that
/// is permitted in C++03 (but not C++0x) when binding a reference to
/// an rvalue.
///
/// \returns An expression that copies the initializer expression into
/// a temporary object, or an error expression if a copy could not be
/// created.
static ExprResult CopyObject(Sema &S,
QualType T,
const InitializedEntity &Entity,
ExprResult CurInit,
bool IsExtraneousCopy) {
// Determine which class type we're copying to.
Expr *CurInitExpr = (Expr *)CurInit.get();
CXXRecordDecl *Class = 0;
if (const RecordType *Record = T->getAs<RecordType>())
Class = cast<CXXRecordDecl>(Record->getDecl());
if (!Class)
return CurInit;
// C++0x [class.copy]p32:
// When certain criteria are met, an implementation is allowed to
// omit the copy/move construction of a class object, even if the
// copy/move constructor and/or destructor for the object have
// side effects. [...]
// - when a temporary class object that has not been bound to a
// reference (12.2) would be copied/moved to a class object
// with the same cv-unqualified type, the copy/move operation
// can be omitted by constructing the temporary object
// directly into the target of the omitted copy/move
//
// Note that the other three bullets are handled elsewhere. Copy
// elision for return statements and throw expressions are handled as part
// of constructor initialization, while copy elision for exception handlers
// is handled by the run-time.
bool Elidable = CurInitExpr->isTemporaryObject(S.Context, Class);
SourceLocation Loc = getInitializationLoc(Entity, CurInit.get());
// Make sure that the type we are copying is complete.
if (S.RequireCompleteType(Loc, T, diag::err_temp_copy_incomplete))
return CurInit;
// Perform overload resolution using the class's copy/move constructors.
// Only consider constructors and constructor templates. Per
// C++0x [dcl.init]p16, second bullet to class types, this initialization
// is direct-initialization.
OverloadCandidateSet CandidateSet(Loc);
LookupCopyAndMoveConstructors(S, CandidateSet, Class, CurInitExpr);
bool HadMultipleCandidates = (CandidateSet.size() > 1);
OverloadCandidateSet::iterator Best;
switch (CandidateSet.BestViableFunction(S, Loc, Best)) {
case OR_Success:
break;
case OR_No_Viable_Function:
S.Diag(Loc, IsExtraneousCopy && !S.isSFINAEContext()
? diag::ext_rvalue_to_reference_temp_copy_no_viable
: diag::err_temp_copy_no_viable)
<< (int)Entity.getKind() << CurInitExpr->getType()
<< CurInitExpr->getSourceRange();
CandidateSet.NoteCandidates(S, OCD_AllCandidates, CurInitExpr);
if (!IsExtraneousCopy || S.isSFINAEContext())
return ExprError();
return CurInit;
case OR_Ambiguous:
S.Diag(Loc, diag::err_temp_copy_ambiguous)
<< (int)Entity.getKind() << CurInitExpr->getType()
<< CurInitExpr->getSourceRange();
CandidateSet.NoteCandidates(S, OCD_ViableCandidates, CurInitExpr);
return ExprError();
case OR_Deleted:
S.Diag(Loc, diag::err_temp_copy_deleted)
<< (int)Entity.getKind() << CurInitExpr->getType()
<< CurInitExpr->getSourceRange();
S.NoteDeletedFunction(Best->Function);
return ExprError();
}
CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(Best->Function);
SmallVector<Expr*, 8> ConstructorArgs;
CurInit.release(); // Ownership transferred into MultiExprArg, below.
S.CheckConstructorAccess(Loc, Constructor, Entity,
Best->FoundDecl.getAccess(), IsExtraneousCopy);
if (IsExtraneousCopy) {
// If this is a totally extraneous copy for C++03 reference
// binding purposes, just return the original initialization
// expression. We don't generate an (elided) copy operation here
// because doing so would require us to pass down a flag to avoid
// infinite recursion, where each step adds another extraneous,
// elidable copy.
// Instantiate the default arguments of any extra parameters in
// the selected copy constructor, as if we were going to create a
// proper call to the copy constructor.
for (unsigned I = 1, N = Constructor->getNumParams(); I != N; ++I) {
ParmVarDecl *Parm = Constructor->getParamDecl(I);
if (S.RequireCompleteType(Loc, Parm->getType(),
diag::err_call_incomplete_argument))
break;
// Build the default argument expression; we don't actually care
// if this succeeds or not, because this routine will complain
// if there was a problem.
S.BuildCXXDefaultArgExpr(Loc, Constructor, Parm);
}
return S.Owned(CurInitExpr);
}
// Determine the arguments required to actually perform the
// constructor call (we might have derived-to-base conversions, or
// the copy constructor may have default arguments).
if (S.CompleteConstructorCall(Constructor, CurInitExpr, Loc, ConstructorArgs))
return ExprError();
// Actually perform the constructor call.
CurInit = S.BuildCXXConstructExpr(Loc, T, Constructor, Elidable,
ConstructorArgs,
HadMultipleCandidates,
/*ListInit*/ false,
/*ZeroInit*/ false,
CXXConstructExpr::CK_Complete,
SourceRange());
// If we're supposed to bind temporaries, do so.
if (!CurInit.isInvalid() && shouldBindAsTemporary(Entity))
CurInit = S.MaybeBindToTemporary(CurInit.takeAs<Expr>());
return CurInit;
}
/// \brief Check whether elidable copy construction for binding a reference to
/// a temporary would have succeeded if we were building in C++98 mode, for
/// -Wc++98-compat.
static void CheckCXX98CompatAccessibleCopy(Sema &S,
const InitializedEntity &Entity,
Expr *CurInitExpr) {
assert(S.getLangOpts().CPlusPlus11);
const RecordType *Record = CurInitExpr->getType()->getAs<RecordType>();
if (!Record)
return;
SourceLocation Loc = getInitializationLoc(Entity, CurInitExpr);
if (S.Diags.getDiagnosticLevel(diag::warn_cxx98_compat_temp_copy, Loc)
== DiagnosticsEngine::Ignored)
return;
// Find constructors which would have been considered.
OverloadCandidateSet CandidateSet(Loc);
LookupCopyAndMoveConstructors(
S, CandidateSet, cast<CXXRecordDecl>(Record->getDecl()), CurInitExpr);
// Perform overload resolution.
OverloadCandidateSet::iterator Best;
OverloadingResult OR = CandidateSet.BestViableFunction(S, Loc, Best);
PartialDiagnostic Diag = S.PDiag(diag::warn_cxx98_compat_temp_copy)
<< OR << (int)Entity.getKind() << CurInitExpr->getType()
<< CurInitExpr->getSourceRange();
switch (OR) {
case OR_Success:
S.CheckConstructorAccess(Loc, cast<CXXConstructorDecl>(Best->Function),
Entity, Best->FoundDecl.getAccess(), Diag);
// FIXME: Check default arguments as far as that's possible.
break;
case OR_No_Viable_Function:
S.Diag(Loc, Diag);
CandidateSet.NoteCandidates(S, OCD_AllCandidates, CurInitExpr);
break;
case OR_Ambiguous:
S.Diag(Loc, Diag);
CandidateSet.NoteCandidates(S, OCD_ViableCandidates, CurInitExpr);
break;
case OR_Deleted:
S.Diag(Loc, Diag);
S.NoteDeletedFunction(Best->Function);
break;
}
}
void InitializationSequence::PrintInitLocationNote(Sema &S,
const InitializedEntity &Entity) {
if (Entity.isParameterKind() && Entity.getDecl()) {
if (Entity.getDecl()->getLocation().isInvalid())
return;
if (Entity.getDecl()->getDeclName())
S.Diag(Entity.getDecl()->getLocation(), diag::note_parameter_named_here)
<< Entity.getDecl()->getDeclName();
else
S.Diag(Entity.getDecl()->getLocation(), diag::note_parameter_here);
}
else if (Entity.getKind() == InitializedEntity::EK_RelatedResult &&
Entity.getMethodDecl())
S.Diag(Entity.getMethodDecl()->getLocation(),
diag::note_method_return_type_change)
<< Entity.getMethodDecl()->getDeclName();
}
static bool isReferenceBinding(const InitializationSequence::Step &s) {
return s.Kind == InitializationSequence::SK_BindReference ||
s.Kind == InitializationSequence::SK_BindReferenceToTemporary;
}
/// Returns true if the parameters describe a constructor initialization of
/// an explicit temporary object, e.g. "Point(x, y)".
static bool isExplicitTemporary(const InitializedEntity &Entity,
const InitializationKind &Kind,
unsigned NumArgs) {
switch (Entity.getKind()) {
case InitializedEntity::EK_Temporary:
case InitializedEntity::EK_CompoundLiteralInit:
case InitializedEntity::EK_RelatedResult:
break;
default:
return false;
}
switch (Kind.getKind()) {
case InitializationKind::IK_DirectList:
return true;
// FIXME: Hack to work around cast weirdness.
case InitializationKind::IK_Direct:
case InitializationKind::IK_Value:
return NumArgs != 1;
default:
return false;
}
}
static ExprResult
PerformConstructorInitialization(Sema &S,
const InitializedEntity &Entity,
const InitializationKind &Kind,
MultiExprArg Args,
const InitializationSequence::Step& Step,
bool &ConstructorInitRequiresZeroInit,
bool IsListInitialization) {
unsigned NumArgs = Args.size();
CXXConstructorDecl *Constructor
= cast<CXXConstructorDecl>(Step.Function.Function);
bool HadMultipleCandidates = Step.Function.HadMultipleCandidates;
// Build a call to the selected constructor.
SmallVector<Expr*, 8> ConstructorArgs;
SourceLocation Loc = (Kind.isCopyInit() && Kind.getEqualLoc().isValid())
? Kind.getEqualLoc()
: Kind.getLocation();
if (Kind.getKind() == InitializationKind::IK_Default) {
// Force even a trivial, implicit default constructor to be
// semantically checked. We do this explicitly because we don't build
// the definition for completely trivial constructors.
assert(Constructor->getParent() && "No parent class for constructor.");
if (Constructor->isDefaulted() && Constructor->isDefaultConstructor() &&
Constructor->isTrivial() && !Constructor->isUsed(false))
S.DefineImplicitDefaultConstructor(Loc, Constructor);
}
ExprResult CurInit = S.Owned((Expr *)0);
// C++ [over.match.copy]p1:
// - When initializing a temporary to be bound to the first parameter
// of a constructor that takes a reference to possibly cv-qualified
// T as its first argument, called with a single argument in the
// context of direct-initialization, explicit conversion functions
// are also considered.
bool AllowExplicitConv = Kind.AllowExplicit() && !Kind.isCopyInit() &&
Args.size() == 1 &&
Constructor->isCopyOrMoveConstructor();
// Determine the arguments required to actually perform the constructor
// call.
if (S.CompleteConstructorCall(Constructor, Args,
Loc, ConstructorArgs,
AllowExplicitConv,
IsListInitialization))
return ExprError();
if (isExplicitTemporary(Entity, Kind, NumArgs)) {
// An explicitly-constructed temporary, e.g., X(1, 2).
S.MarkFunctionReferenced(Loc, Constructor);
if (S.DiagnoseUseOfDecl(Constructor, Loc))
return ExprError();
TypeSourceInfo *TSInfo = Entity.getTypeSourceInfo();
if (!TSInfo)
TSInfo = S.Context.getTrivialTypeSourceInfo(Entity.getType(), Loc);
SourceRange ParenRange;
if (Kind.getKind() != InitializationKind::IK_DirectList)
ParenRange = Kind.getParenRange();
CurInit = S.Owned(
new (S.Context) CXXTemporaryObjectExpr(S.Context, Constructor,
TSInfo, ConstructorArgs,
ParenRange, IsListInitialization,
HadMultipleCandidates,
ConstructorInitRequiresZeroInit));
} else {
CXXConstructExpr::ConstructionKind ConstructKind =
CXXConstructExpr::CK_Complete;
if (Entity.getKind() == InitializedEntity::EK_Base) {
ConstructKind = Entity.getBaseSpecifier()->isVirtual() ?
CXXConstructExpr::CK_VirtualBase :
CXXConstructExpr::CK_NonVirtualBase;
} else if (Entity.getKind() == InitializedEntity::EK_Delegating) {
ConstructKind = CXXConstructExpr::CK_Delegating;
}
// Only get the parenthesis range if it is a direct construction.
SourceRange parenRange =
Kind.getKind() == InitializationKind::IK_Direct ?
Kind.getParenRange() : SourceRange();
// If the entity allows NRVO, mark the construction as elidable
// unconditionally.
if (Entity.allowsNRVO())
CurInit = S.BuildCXXConstructExpr(Loc, Entity.getType(),
Constructor, /*Elidable=*/true,
ConstructorArgs,
HadMultipleCandidates,
IsListInitialization,
ConstructorInitRequiresZeroInit,
ConstructKind,
parenRange);
else
CurInit = S.BuildCXXConstructExpr(Loc, Entity.getType(),
Constructor,
ConstructorArgs,
HadMultipleCandidates,
IsListInitialization,
ConstructorInitRequiresZeroInit,
ConstructKind,
parenRange);
}
if (CurInit.isInvalid())
return ExprError();
// Only check access if all of that succeeded.
S.CheckConstructorAccess(Loc, Constructor, Entity,
Step.Function.FoundDecl.getAccess());
if (S.DiagnoseUseOfDecl(Step.Function.FoundDecl, Loc))
return ExprError();
if (shouldBindAsTemporary(Entity))
CurInit = S.MaybeBindToTemporary(CurInit.take());
return CurInit;
}
/// Determine whether the specified InitializedEntity definitely has a lifetime
/// longer than the current full-expression. Conservatively returns false if
/// it's unclear.
static bool
InitializedEntityOutlivesFullExpression(const InitializedEntity &Entity) {
const InitializedEntity *Top = &Entity;
while (Top->getParent())
Top = Top->getParent();
switch (Top->getKind()) {
case InitializedEntity::EK_Variable:
case InitializedEntity::EK_Result:
case InitializedEntity::EK_Exception:
case InitializedEntity::EK_Member:
case InitializedEntity::EK_New:
case InitializedEntity::EK_Base:
case InitializedEntity::EK_Delegating:
return true;
case InitializedEntity::EK_ArrayElement:
case InitializedEntity::EK_VectorElement:
case InitializedEntity::EK_BlockElement:
case InitializedEntity::EK_ComplexElement:
// Could not determine what the full initialization is. Assume it might not
// outlive the full-expression.
return false;
case InitializedEntity::EK_Parameter:
case InitializedEntity::EK_Parameter_CF_Audited:
case InitializedEntity::EK_Temporary:
case InitializedEntity::EK_LambdaCapture:
case InitializedEntity::EK_CompoundLiteralInit:
case InitializedEntity::EK_RelatedResult:
// The entity being initialized might not outlive the full-expression.
return false;
}
llvm_unreachable("unknown entity kind");
}
/// Determine the declaration which an initialized entity ultimately refers to,
/// for the purpose of lifetime-extending a temporary bound to a reference in
/// the initialization of \p Entity.
static const ValueDecl *
getDeclForTemporaryLifetimeExtension(const InitializedEntity &Entity,
const ValueDecl *FallbackDecl = 0) {
// C++11 [class.temporary]p5:
switch (Entity.getKind()) {
case InitializedEntity::EK_Variable:
// The temporary [...] persists for the lifetime of the reference
return Entity.getDecl();
case InitializedEntity::EK_Member:
// For subobjects, we look at the complete object.
if (Entity.getParent())
return getDeclForTemporaryLifetimeExtension(*Entity.getParent(),
Entity.getDecl());
// except:
// -- A temporary bound to a reference member in a constructor's
// ctor-initializer persists until the constructor exits.
return Entity.getDecl();
case InitializedEntity::EK_Parameter:
case InitializedEntity::EK_Parameter_CF_Audited:
// -- A temporary bound to a reference parameter in a function call
// persists until the completion of the full-expression containing
// the call.
case InitializedEntity::EK_Result:
// -- The lifetime of a temporary bound to the returned value in a
// function return statement is not extended; the temporary is
// destroyed at the end of the full-expression in the return statement.
case InitializedEntity::EK_New:
// -- A temporary bound to a reference in a new-initializer persists
// until the completion of the full-expression containing the
// new-initializer.
return 0;
case InitializedEntity::EK_Temporary:
case InitializedEntity::EK_CompoundLiteralInit:
case InitializedEntity::EK_RelatedResult:
// We don't yet know the storage duration of the surrounding temporary.
// Assume it's got full-expression duration for now, it will patch up our
// storage duration if that's not correct.
return 0;
case InitializedEntity::EK_ArrayElement:
// For subobjects, we look at the complete object.
return getDeclForTemporaryLifetimeExtension(*Entity.getParent(),
FallbackDecl);
case InitializedEntity::EK_Base:
case InitializedEntity::EK_Delegating:
// We can reach this case for aggregate initialization in a constructor:
// struct A { int &&r; };
// struct B : A { B() : A{0} {} };
// In this case, use the innermost field decl as the context.
return FallbackDecl;
case InitializedEntity::EK_BlockElement:
case InitializedEntity::EK_LambdaCapture:
case InitializedEntity::EK_Exception:
case InitializedEntity::EK_VectorElement:
case InitializedEntity::EK_ComplexElement:
return 0;
}
llvm_unreachable("unknown entity kind");
}
static void performLifetimeExtension(Expr *Init, const ValueDecl *ExtendingD);
/// Update a glvalue expression that is used as the initializer of a reference
/// to note that its lifetime is extended.
/// \return \c true if any temporary had its lifetime extended.
static bool performReferenceExtension(Expr *Init, const ValueDecl *ExtendingD) {
if (InitListExpr *ILE = dyn_cast<InitListExpr>(Init)) {
if (ILE->getNumInits() == 1 && ILE->isGLValue()) {
// This is just redundant braces around an initializer. Step over it.
Init = ILE->getInit(0);
}
}
// Walk past any constructs which we can lifetime-extend across.
Expr *Old;
do {
Old = Init;
// Step over any subobject adjustments; we may have a materialized
// temporary inside them.
SmallVector<const Expr *, 2> CommaLHSs;
SmallVector<SubobjectAdjustment, 2> Adjustments;
Init = const_cast<Expr *>(
Init->skipRValueSubobjectAdjustments(CommaLHSs, Adjustments));
// Per current approach for DR1376, look through casts to reference type
// when performing lifetime extension.
if (CastExpr *CE = dyn_cast<CastExpr>(Init))
if (CE->getSubExpr()->isGLValue())
Init = CE->getSubExpr();
// FIXME: Per DR1213, subscripting on an array temporary produces an xvalue.
// It's unclear if binding a reference to that xvalue extends the array
// temporary.
} while (Init != Old);
if (MaterializeTemporaryExpr *ME = dyn_cast<MaterializeTemporaryExpr>(Init)) {
// Update the storage duration of the materialized temporary.
// FIXME: Rebuild the expression instead of mutating it.
ME->setExtendingDecl(ExtendingD);
performLifetimeExtension(ME->GetTemporaryExpr(), ExtendingD);
return true;
}
return false;
}
/// Update a prvalue expression that is going to be materialized as a
/// lifetime-extended temporary.
static void performLifetimeExtension(Expr *Init, const ValueDecl *ExtendingD) {
// Dig out the expression which constructs the extended temporary.
SmallVector<const Expr *, 2> CommaLHSs;
SmallVector<SubobjectAdjustment, 2> Adjustments;
Init = const_cast<Expr *>(
Init->skipRValueSubobjectAdjustments(CommaLHSs, Adjustments));
if (CXXBindTemporaryExpr *BTE = dyn_cast<CXXBindTemporaryExpr>(Init))
Init = BTE->getSubExpr();
if (CXXStdInitializerListExpr *ILE =
dyn_cast<CXXStdInitializerListExpr>(Init)) {
performReferenceExtension(ILE->getSubExpr(), ExtendingD);
return;
}
if (InitListExpr *ILE = dyn_cast<InitListExpr>(Init)) {
if (ILE->getType()->isArrayType()) {
for (unsigned I = 0, N = ILE->getNumInits(); I != N; ++I)
performLifetimeExtension(ILE->getInit(I), ExtendingD);
return;
}
if (CXXRecordDecl *RD = ILE->getType()->getAsCXXRecordDecl()) {
assert(RD->isAggregate() && "aggregate init on non-aggregate");
// If we lifetime-extend a braced initializer which is initializing an
// aggregate, and that aggregate contains reference members which are
// bound to temporaries, those temporaries are also lifetime-extended.
if (RD->isUnion() && ILE->getInitializedFieldInUnion() &&
ILE->getInitializedFieldInUnion()->getType()->isReferenceType())
performReferenceExtension(ILE->getInit(0), ExtendingD);
else {
unsigned Index = 0;
for (RecordDecl::field_iterator I = RD->field_begin(),
E = RD->field_end();
I != E; ++I) {
if (Index >= ILE->getNumInits())
break;
if (I->isUnnamedBitfield())
continue;
Expr *SubInit = ILE->getInit(Index);
if (I->getType()->isReferenceType())
performReferenceExtension(SubInit, ExtendingD);
else if (isa<InitListExpr>(SubInit) ||
isa<CXXStdInitializerListExpr>(SubInit))
// This may be either aggregate-initialization of a member or
// initialization of a std::initializer_list object. Either way,
// we should recursively lifetime-extend that initializer.
performLifetimeExtension(SubInit, ExtendingD);
++Index;
}
}
}
}
}
static void warnOnLifetimeExtension(Sema &S, const InitializedEntity &Entity,
const Expr *Init, bool IsInitializerList,
const ValueDecl *ExtendingDecl) {
// Warn if a field lifetime-extends a temporary.
if (isa<FieldDecl>(ExtendingDecl)) {
if (IsInitializerList) {
S.Diag(Init->getExprLoc(), diag::warn_dangling_std_initializer_list)
<< /*at end of constructor*/true;
return;
}
bool IsSubobjectMember = false;
for (const InitializedEntity *Ent = Entity.getParent(); Ent;
Ent = Ent->getParent()) {
if (Ent->getKind() != InitializedEntity::EK_Base) {
IsSubobjectMember = true;
break;
}
}
S.Diag(Init->getExprLoc(),
diag::warn_bind_ref_member_to_temporary)
<< ExtendingDecl << Init->getSourceRange()
<< IsSubobjectMember << IsInitializerList;
if (IsSubobjectMember)
S.Diag(ExtendingDecl->getLocation(),
diag::note_ref_subobject_of_member_declared_here);
else
S.Diag(ExtendingDecl->getLocation(),
diag::note_ref_or_ptr_member_declared_here)
<< /*is pointer*/false;
}
}
ExprResult
InitializationSequence::Perform(Sema &S,
const InitializedEntity &Entity,
const InitializationKind &Kind,
MultiExprArg Args,
QualType *ResultType) {
if (Failed()) {
Diagnose(S, Entity, Kind, Args);
return ExprError();
}
if (getKind() == DependentSequence) {
// If the declaration is a non-dependent, incomplete array type
// that has an initializer, then its type will be completed once
// the initializer is instantiated.
if (ResultType && !Entity.getType()->isDependentType() &&
Args.size() == 1) {
QualType DeclType = Entity.getType();
if (const IncompleteArrayType *ArrayT
= S.Context.getAsIncompleteArrayType(DeclType)) {
// FIXME: We don't currently have the ability to accurately
// compute the length of an initializer list without
// performing full type-checking of the initializer list
// (since we have to determine where braces are implicitly
// introduced and such). So, we fall back to making the array
// type a dependently-sized array type with no specified
// bound.
if (isa<InitListExpr>((Expr *)Args[0])) {
SourceRange Brackets;
// Scavange the location of the brackets from the entity, if we can.
if (DeclaratorDecl *DD = Entity.getDecl()) {
if (TypeSourceInfo *TInfo = DD->getTypeSourceInfo()) {
TypeLoc TL = TInfo->getTypeLoc();
if (IncompleteArrayTypeLoc ArrayLoc =
TL.getAs<IncompleteArrayTypeLoc>())
Brackets = ArrayLoc.getBracketsRange();
}
}
*ResultType
= S.Context.getDependentSizedArrayType(ArrayT->getElementType(),
/*NumElts=*/0,
ArrayT->getSizeModifier(),
ArrayT->getIndexTypeCVRQualifiers(),
Brackets);
}
}
}
if (Kind.getKind() == InitializationKind::IK_Direct &&
!Kind.isExplicitCast()) {
// Rebuild the ParenListExpr.
SourceRange ParenRange = Kind.getParenRange();
return S.ActOnParenListExpr(ParenRange.getBegin(), ParenRange.getEnd(),
Args);
}
assert(Kind.getKind() == InitializationKind::IK_Copy ||
Kind.isExplicitCast() ||
Kind.getKind() == InitializationKind::IK_DirectList);
return ExprResult(Args[0]);
}
// No steps means no initialization.
if (Steps.empty())
return S.Owned((Expr *)0);
if (S.getLangOpts().CPlusPlus11 && Entity.getType()->isReferenceType() &&
Args.size() == 1 && isa<InitListExpr>(Args[0]) &&
!Entity.isParameterKind()) {
// Produce a C++98 compatibility warning if we are initializing a reference
// from an initializer list. For parameters, we produce a better warning
// elsewhere.
Expr *Init = Args[0];
S.Diag(Init->getLocStart(), diag::warn_cxx98_compat_reference_list_init)
<< Init->getSourceRange();
}
// Diagnose cases where we initialize a pointer to an array temporary, and the
// pointer obviously outlives the temporary.
if (Args.size() == 1 && Args[0]->getType()->isArrayType() &&
Entity.getType()->isPointerType() &&
InitializedEntityOutlivesFullExpression(Entity)) {
Expr *Init = Args[0];
Expr::LValueClassification Kind = Init->ClassifyLValue(S.Context);
if (Kind == Expr::LV_ClassTemporary || Kind == Expr::LV_ArrayTemporary)
S.Diag(Init->getLocStart(), diag::warn_temporary_array_to_pointer_decay)
<< Init->getSourceRange();
}
QualType DestType = Entity.getType().getNonReferenceType();
// FIXME: Ugly hack around the fact that Entity.getType() is not
// the same as Entity.getDecl()->getType() in cases involving type merging,
// and we want latter when it makes sense.
if (ResultType)
*ResultType = Entity.getDecl() ? Entity.getDecl()->getType() :
Entity.getType();
ExprResult CurInit = S.Owned((Expr *)0);
// For initialization steps that start with a single initializer,
// grab the only argument out the Args and place it into the "current"
// initializer.
switch (Steps.front().Kind) {
case SK_ResolveAddressOfOverloadedFunction:
case SK_CastDerivedToBaseRValue:
case SK_CastDerivedToBaseXValue:
case SK_CastDerivedToBaseLValue:
case SK_BindReference:
case SK_BindReferenceToTemporary:
case SK_ExtraneousCopyToTemporary:
case SK_UserConversion:
case SK_QualificationConversionLValue:
case SK_QualificationConversionXValue:
case SK_QualificationConversionRValue:
case SK_LValueToRValue:
case SK_ConversionSequence:
case SK_ListInitialization:
case SK_UnwrapInitList:
case SK_RewrapInitList:
case SK_CAssignment:
case SK_StringInit:
case SK_ObjCObjectConversion:
case SK_ArrayInit:
case SK_ParenthesizedArrayInit:
case SK_PassByIndirectCopyRestore:
case SK_PassByIndirectRestore:
case SK_ProduceObjCObject:
case SK_StdInitializerList:
case SK_OCLSamplerInit:
case SK_OCLZeroEvent: {
assert(Args.size() == 1);
CurInit = Args[0];
if (!CurInit.get()) return ExprError();
break;
}
case SK_ConstructorInitialization:
case SK_ListConstructorCall:
case SK_ZeroInitialization:
break;
}
// Walk through the computed steps for the initialization sequence,
// performing the specified conversions along the way.
bool ConstructorInitRequiresZeroInit = false;
for (step_iterator Step = step_begin(), StepEnd = step_end();
Step != StepEnd; ++Step) {
if (CurInit.isInvalid())
return ExprError();
QualType SourceType = CurInit.get() ? CurInit.get()->getType() : QualType();
switch (Step->Kind) {
case SK_ResolveAddressOfOverloadedFunction:
// Overload resolution determined which function invoke; update the
// initializer to reflect that choice.
S.CheckAddressOfMemberAccess(CurInit.get(), Step->Function.FoundDecl);
if (S.DiagnoseUseOfDecl(Step->Function.FoundDecl, Kind.getLocation()))
return ExprError();
CurInit = S.FixOverloadedFunctionReference(CurInit,
Step->Function.FoundDecl,
Step->Function.Function);
break;
case SK_CastDerivedToBaseRValue:
case SK_CastDerivedToBaseXValue:
case SK_CastDerivedToBaseLValue: {
// We have a derived-to-base cast that produces either an rvalue or an
// lvalue. Perform that cast.
CXXCastPath BasePath;
// Casts to inaccessible base classes are allowed with C-style casts.
bool IgnoreBaseAccess = Kind.isCStyleOrFunctionalCast();
if (S.CheckDerivedToBaseConversion(SourceType, Step->Type,
CurInit.get()->getLocStart(),
CurInit.get()->getSourceRange(),
&BasePath, IgnoreBaseAccess))
return ExprError();
if (S.BasePathInvolvesVirtualBase(BasePath)) {
QualType T = SourceType;
if (const PointerType *Pointer = T->getAs<PointerType>())
T = Pointer->getPointeeType();
if (const RecordType *RecordTy = T->getAs<RecordType>())
S.MarkVTableUsed(CurInit.get()->getLocStart(),
cast<CXXRecordDecl>(RecordTy->getDecl()));
}
ExprValueKind VK =
Step->Kind == SK_CastDerivedToBaseLValue ?
VK_LValue :
(Step->Kind == SK_CastDerivedToBaseXValue ?
VK_XValue :
VK_RValue);
CurInit = S.Owned(ImplicitCastExpr::Create(S.Context,
Step->Type,
CK_DerivedToBase,
CurInit.get(),
&BasePath, VK));
break;
}
case SK_BindReference:
// References cannot bind to bit-fields (C++ [dcl.init.ref]p5).
if (CurInit.get()->refersToBitField()) {
// We don't necessarily have an unambiguous source bit-field.
FieldDecl *BitField = CurInit.get()->getSourceBitField();
S.Diag(Kind.getLocation(), diag::err_reference_bind_to_bitfield)
<< Entity.getType().isVolatileQualified()
<< (BitField ? BitField->getDeclName() : DeclarationName())
<< (BitField != NULL)
<< CurInit.get()->getSourceRange();
if (BitField)
S.Diag(BitField->getLocation(), diag::note_bitfield_decl);
return ExprError();
}
if (CurInit.get()->refersToVectorElement()) {
// References cannot bind to vector elements.
S.Diag(Kind.getLocation(), diag::err_reference_bind_to_vector_element)
<< Entity.getType().isVolatileQualified()
<< CurInit.get()->getSourceRange();
PrintInitLocationNote(S, Entity);
return ExprError();
}
// Reference binding does not have any corresponding ASTs.
// Check exception specifications
if (S.CheckExceptionSpecCompatibility(CurInit.get(), DestType))
return ExprError();
// Even though we didn't materialize a temporary, the binding may still
// extend the lifetime of a temporary. This happens if we bind a reference
// to the result of a cast to reference type.
if (const ValueDecl *ExtendingDecl =
getDeclForTemporaryLifetimeExtension(Entity)) {
if (performReferenceExtension(CurInit.get(), ExtendingDecl))
warnOnLifetimeExtension(S, Entity, CurInit.get(), false,
ExtendingDecl);
}
break;
case SK_BindReferenceToTemporary: {
// Make sure the "temporary" is actually an rvalue.
assert(CurInit.get()->isRValue() && "not a temporary");
// Check exception specifications
if (S.CheckExceptionSpecCompatibility(CurInit.get(), DestType))
return ExprError();
// Maybe lifetime-extend the temporary's subobjects to match the
// entity's lifetime.
const ValueDecl *ExtendingDecl =
getDeclForTemporaryLifetimeExtension(Entity);
if (ExtendingDecl) {
performLifetimeExtension(CurInit.get(), ExtendingDecl);
warnOnLifetimeExtension(S, Entity, CurInit.get(), false, ExtendingDecl);
}
// Materialize the temporary into memory.
MaterializeTemporaryExpr *MTE = new (S.Context) MaterializeTemporaryExpr(
Entity.getType().getNonReferenceType(), CurInit.get(),
Entity.getType()->isLValueReferenceType(), ExtendingDecl);
// If we're binding to an Objective-C object that has lifetime, we
// need cleanups. Likewise if we're extending this temporary to automatic
// storage duration -- we need to register its cleanup during the
// full-expression's cleanups.
if ((S.getLangOpts().ObjCAutoRefCount &&
MTE->getType()->isObjCLifetimeType()) ||
(MTE->getStorageDuration() == SD_Automatic &&
MTE->getType().isDestructedType()))
S.ExprNeedsCleanups = true;
CurInit = S.Owned(MTE);
break;
}
case SK_ExtraneousCopyToTemporary:
CurInit = CopyObject(S, Step->Type, Entity, CurInit,
/*IsExtraneousCopy=*/true);
break;
case SK_UserConversion: {
// We have a user-defined conversion that invokes either a constructor
// or a conversion function.
CastKind CastKind;
bool IsCopy = false;
FunctionDecl *Fn = Step->Function.Function;
DeclAccessPair FoundFn = Step->Function.FoundDecl;
bool HadMultipleCandidates = Step->Function.HadMultipleCandidates;
bool CreatedObject = false;
if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Fn)) {
// Build a call to the selected constructor.
SmallVector<Expr*, 8> ConstructorArgs;
SourceLocation Loc = CurInit.get()->getLocStart();
CurInit.release(); // Ownership transferred into MultiExprArg, below.
// Determine the arguments required to actually perform the constructor
// call.
Expr *Arg = CurInit.get();
if (S.CompleteConstructorCall(Constructor,
MultiExprArg(&Arg, 1),
Loc, ConstructorArgs))
return ExprError();
// Build an expression that constructs a temporary.
CurInit = S.BuildCXXConstructExpr(Loc, Step->Type, Constructor,
ConstructorArgs,
HadMultipleCandidates,
/*ListInit*/ false,
/*ZeroInit*/ false,
CXXConstructExpr::CK_Complete,
SourceRange());
if (CurInit.isInvalid())
return ExprError();
S.CheckConstructorAccess(Kind.getLocation(), Constructor, Entity,
FoundFn.getAccess());
if (S.DiagnoseUseOfDecl(FoundFn, Kind.getLocation()))
return ExprError();
CastKind = CK_ConstructorConversion;
QualType Class = S.Context.getTypeDeclType(Constructor->getParent());
if (S.Context.hasSameUnqualifiedType(SourceType, Class) ||
S.IsDerivedFrom(SourceType, Class))
IsCopy = true;
CreatedObject = true;
} else {
// Build a call to the conversion function.
CXXConversionDecl *Conversion = cast<CXXConversionDecl>(Fn);
S.CheckMemberOperatorAccess(Kind.getLocation(), CurInit.get(), 0,
FoundFn);
if (S.DiagnoseUseOfDecl(FoundFn, Kind.getLocation()))
return ExprError();
// FIXME: Should we move this initialization into a separate
// derived-to-base conversion? I believe the answer is "no", because
// we don't want to turn off access control here for c-style casts.
ExprResult CurInitExprRes =
S.PerformObjectArgumentInitialization(CurInit.take(), /*Qualifier=*/0,
FoundFn, Conversion);
if(CurInitExprRes.isInvalid())
return ExprError();
CurInit = CurInitExprRes;
// Build the actual call to the conversion function.
CurInit = S.BuildCXXMemberCallExpr(CurInit.get(), FoundFn, Conversion,
HadMultipleCandidates);
if (CurInit.isInvalid() || !CurInit.get())
return ExprError();
CastKind = CK_UserDefinedConversion;
CreatedObject = Conversion->getResultType()->isRecordType();
}
bool RequiresCopy = !IsCopy && !isReferenceBinding(Steps.back());
bool MaybeBindToTemp = RequiresCopy || shouldBindAsTemporary(Entity);
if (!MaybeBindToTemp && CreatedObject && shouldDestroyTemporary(Entity)) {
QualType T = CurInit.get()->getType();
if (const RecordType *Record = T->getAs<RecordType>()) {
CXXDestructorDecl *Destructor
= S.LookupDestructor(cast<CXXRecordDecl>(Record->getDecl()));
S.CheckDestructorAccess(CurInit.get()->getLocStart(), Destructor,
S.PDiag(diag::err_access_dtor_temp) << T);
S.MarkFunctionReferenced(CurInit.get()->getLocStart(), Destructor);
if (S.DiagnoseUseOfDecl(Destructor, CurInit.get()->getLocStart()))
return ExprError();
}
}
CurInit = S.Owned(ImplicitCastExpr::Create(S.Context,
CurInit.get()->getType(),
CastKind, CurInit.get(), 0,
CurInit.get()->getValueKind()));
if (MaybeBindToTemp)
CurInit = S.MaybeBindToTemporary(CurInit.takeAs<Expr>());
if (RequiresCopy)
CurInit = CopyObject(S, Entity.getType().getNonReferenceType(), Entity,
CurInit, /*IsExtraneousCopy=*/false);
break;
}
case SK_QualificationConversionLValue:
case SK_QualificationConversionXValue:
case SK_QualificationConversionRValue: {
// Perform a qualification conversion; these can never go wrong.
ExprValueKind VK =
Step->Kind == SK_QualificationConversionLValue ?
VK_LValue :
(Step->Kind == SK_QualificationConversionXValue ?
VK_XValue :
VK_RValue);
CurInit = S.ImpCastExprToType(CurInit.take(), Step->Type, CK_NoOp, VK);
break;
}
case SK_LValueToRValue: {
assert(CurInit.get()->isGLValue() && "cannot load from a prvalue");
CurInit = S.Owned(ImplicitCastExpr::Create(S.Context, Step->Type,
CK_LValueToRValue,
CurInit.take(),
/*BasePath=*/0,
VK_RValue));
break;
}
case SK_ConversionSequence: {
Sema::CheckedConversionKind CCK
= Kind.isCStyleCast()? Sema::CCK_CStyleCast
: Kind.isFunctionalCast()? Sema::CCK_FunctionalCast
: Kind.isExplicitCast()? Sema::CCK_OtherCast
: Sema::CCK_ImplicitConversion;
ExprResult CurInitExprRes =
S.PerformImplicitConversion(CurInit.get(), Step->Type, *Step->ICS,
getAssignmentAction(Entity), CCK);
if (CurInitExprRes.isInvalid())
return ExprError();
CurInit = CurInitExprRes;
break;
}
case SK_ListInitialization: {
InitListExpr *InitList = cast<InitListExpr>(CurInit.get());
// If we're not initializing the top-level entity, we need to create an
// InitializeTemporary entity for our target type.
QualType Ty = Step->Type;
bool IsTemporary = !S.Context.hasSameType(Entity.getType(), Ty);
InitializedEntity TempEntity = InitializedEntity::InitializeTemporary(Ty);
InitializedEntity InitEntity = IsTemporary ? TempEntity : Entity;
InitListChecker PerformInitList(S, InitEntity,
InitList, Ty, /*VerifyOnly=*/false);
if (PerformInitList.HadError())
return ExprError();
// Hack: We must update *ResultType if available in order to set the
// bounds of arrays, e.g. in 'int ar[] = {1, 2, 3};'.
// Worst case: 'const int (&arref)[] = {1, 2, 3};'.
if (ResultType &&
ResultType->getNonReferenceType()->isIncompleteArrayType()) {
if ((*ResultType)->isRValueReferenceType())
Ty = S.Context.getRValueReferenceType(Ty);
else if ((*ResultType)->isLValueReferenceType())
Ty = S.Context.getLValueReferenceType(Ty,
(*ResultType)->getAs<LValueReferenceType>()->isSpelledAsLValue());
*ResultType = Ty;
}
InitListExpr *StructuredInitList =
PerformInitList.getFullyStructuredList();
CurInit.release();
CurInit = shouldBindAsTemporary(InitEntity)
? S.MaybeBindToTemporary(StructuredInitList)
: S.Owned(StructuredInitList);
break;
}
case SK_ListConstructorCall: {
// When an initializer list is passed for a parameter of type "reference
// to object", we don't get an EK_Temporary entity, but instead an
// EK_Parameter entity with reference type.
// FIXME: This is a hack. What we really should do is create a user
// conversion step for this case, but this makes it considerably more
// complicated. For now, this will do.
InitializedEntity TempEntity = InitializedEntity::InitializeTemporary(
Entity.getType().getNonReferenceType());
bool UseTemporary = Entity.getType()->isReferenceType();
assert(Args.size() == 1 && "expected a single argument for list init");
InitListExpr *InitList = cast<InitListExpr>(Args[0]);
S.Diag(InitList->getExprLoc(), diag::warn_cxx98_compat_ctor_list_init)
<< InitList->getSourceRange();
MultiExprArg Arg(InitList->getInits(), InitList->getNumInits());
CurInit = PerformConstructorInitialization(S, UseTemporary ? TempEntity :
Entity,
Kind, Arg, *Step,
ConstructorInitRequiresZeroInit,
/*IsListInitialization*/ true);
break;
}
case SK_UnwrapInitList:
CurInit = S.Owned(cast<InitListExpr>(CurInit.take())->getInit(0));
break;
case SK_RewrapInitList: {
Expr *E = CurInit.take();
InitListExpr *Syntactic = Step->WrappingSyntacticList;
InitListExpr *ILE = new (S.Context) InitListExpr(S.Context,
Syntactic->getLBraceLoc(), E, Syntactic->getRBraceLoc());
ILE->setSyntacticForm(Syntactic);
ILE->setType(E->getType());
ILE->setValueKind(E->getValueKind());
CurInit = S.Owned(ILE);
break;
}
case SK_ConstructorInitialization: {
// When an initializer list is passed for a parameter of type "reference
// to object", we don't get an EK_Temporary entity, but instead an
// EK_Parameter entity with reference type.
// FIXME: This is a hack. What we really should do is create a user
// conversion step for this case, but this makes it considerably more
// complicated. For now, this will do.
InitializedEntity TempEntity = InitializedEntity::InitializeTemporary(
Entity.getType().getNonReferenceType());
bool UseTemporary = Entity.getType()->isReferenceType();
CurInit = PerformConstructorInitialization(S, UseTemporary ? TempEntity
: Entity,
Kind, Args, *Step,
ConstructorInitRequiresZeroInit,
/*IsListInitialization*/ false);
break;
}
case SK_ZeroInitialization: {
step_iterator NextStep = Step;
++NextStep;
if (NextStep != StepEnd &&
(NextStep->Kind == SK_ConstructorInitialization ||
NextStep->Kind == SK_ListConstructorCall)) {
// The need for zero-initialization is recorded directly into
// the call to the object's constructor within the next step.
ConstructorInitRequiresZeroInit = true;
} else if (Kind.getKind() == InitializationKind::IK_Value &&
S.getLangOpts().CPlusPlus &&
!Kind.isImplicitValueInit()) {
TypeSourceInfo *TSInfo = Entity.getTypeSourceInfo();
if (!TSInfo)
TSInfo = S.Context.getTrivialTypeSourceInfo(Step->Type,
Kind.getRange().getBegin());
CurInit = S.Owned(new (S.Context) CXXScalarValueInitExpr(
TSInfo->getType().getNonLValueExprType(S.Context),
TSInfo,
Kind.getRange().getEnd()));
} else {
CurInit = S.Owned(new (S.Context) ImplicitValueInitExpr(Step->Type));
}
break;
}
case SK_CAssignment: {
QualType SourceType = CurInit.get()->getType();
ExprResult Result = CurInit;
Sema::AssignConvertType ConvTy =
S.CheckSingleAssignmentConstraints(Step->Type, Result, true,
Entity.getKind() == InitializedEntity::EK_Parameter_CF_Audited);
if (Result.isInvalid())
return ExprError();
CurInit = Result;
// If this is a call, allow conversion to a transparent union.
ExprResult CurInitExprRes = CurInit;
if (ConvTy != Sema::Compatible &&
Entity.isParameterKind() &&
S.CheckTransparentUnionArgumentConstraints(Step->Type, CurInitExprRes)
== Sema::Compatible)
ConvTy = Sema::Compatible;
if (CurInitExprRes.isInvalid())
return ExprError();
CurInit = CurInitExprRes;
bool Complained;
if (S.DiagnoseAssignmentResult(ConvTy, Kind.getLocation(),
Step->Type, SourceType,
CurInit.get(),
getAssignmentAction(Entity, true),
&Complained)) {
PrintInitLocationNote(S, Entity);
return ExprError();
} else if (Complained)
PrintInitLocationNote(S, Entity);
break;
}
case SK_StringInit: {
QualType Ty = Step->Type;
CheckStringInit(CurInit.get(), ResultType ? *ResultType : Ty,
S.Context.getAsArrayType(Ty), S);
break;
}
case SK_ObjCObjectConversion:
CurInit = S.ImpCastExprToType(CurInit.take(), Step->Type,
CK_ObjCObjectLValueCast,
CurInit.get()->getValueKind());
break;
case SK_ArrayInit:
// Okay: we checked everything before creating this step. Note that
// this is a GNU extension.
S.Diag(Kind.getLocation(), diag::ext_array_init_copy)
<< Step->Type << CurInit.get()->getType()
<< CurInit.get()->getSourceRange();
// If the destination type is an incomplete array type, update the
// type accordingly.
if (ResultType) {
if (const IncompleteArrayType *IncompleteDest
= S.Context.getAsIncompleteArrayType(Step->Type)) {
if (const ConstantArrayType *ConstantSource
= S.Context.getAsConstantArrayType(CurInit.get()->getType())) {
*ResultType = S.Context.getConstantArrayType(
IncompleteDest->getElementType(),
ConstantSource->getSize(),
ArrayType::Normal, 0);
}
}
}
break;
case SK_ParenthesizedArrayInit:
// Okay: we checked everything before creating this step. Note that
// this is a GNU extension.
S.Diag(Kind.getLocation(), diag::ext_array_init_parens)
<< CurInit.get()->getSourceRange();
break;
case SK_PassByIndirectCopyRestore:
case SK_PassByIndirectRestore:
checkIndirectCopyRestoreSource(S, CurInit.get());
CurInit = S.Owned(new (S.Context)
ObjCIndirectCopyRestoreExpr(CurInit.take(), Step->Type,
Step->Kind == SK_PassByIndirectCopyRestore));
break;
case SK_ProduceObjCObject:
CurInit = S.Owned(ImplicitCastExpr::Create(S.Context, Step->Type,
CK_ARCProduceObject,
CurInit.take(), 0, VK_RValue));
break;
case SK_StdInitializerList: {
S.Diag(CurInit.get()->getExprLoc(),
diag::warn_cxx98_compat_initializer_list_init)
<< CurInit.get()->getSourceRange();
// Maybe lifetime-extend the array temporary's subobjects to match the
// entity's lifetime.
const ValueDecl *ExtendingDecl =
getDeclForTemporaryLifetimeExtension(Entity);
if (ExtendingDecl) {
performLifetimeExtension(CurInit.get(), ExtendingDecl);
warnOnLifetimeExtension(S, Entity, CurInit.get(), true, ExtendingDecl);
}
// Materialize the temporary into memory.
MaterializeTemporaryExpr *MTE = new (S.Context)
MaterializeTemporaryExpr(CurInit.get()->getType(), CurInit.get(),
/*lvalue reference*/ false, ExtendingDecl);
// Wrap it in a construction of a std::initializer_list<T>.
CurInit = S.Owned(
new (S.Context) CXXStdInitializerListExpr(Step->Type, MTE));
// Bind the result, in case the library has given initializer_list a
// non-trivial destructor.
if (shouldBindAsTemporary(Entity))
CurInit = S.MaybeBindToTemporary(CurInit.take());
break;
}
case SK_OCLSamplerInit: {
assert(Step->Type->isSamplerT() &&
"Sampler initialization on non sampler type.");
QualType SourceType = CurInit.get()->getType();
if (Entity.isParameterKind()) {
if (!SourceType->isSamplerT())
S.Diag(Kind.getLocation(), diag::err_sampler_argument_required)
<< SourceType;
} else if (Entity.getKind() != InitializedEntity::EK_Variable) {
llvm_unreachable("Invalid EntityKind!");
}
break;
}
case SK_OCLZeroEvent: {
assert(Step->Type->isEventT() &&
"Event initialization on non event type.");
CurInit = S.ImpCastExprToType(CurInit.take(), Step->Type,
CK_ZeroToOCLEvent,
CurInit.get()->getValueKind());
break;
}
}
}
// Diagnose non-fatal problems with the completed initialization.
if (Entity.getKind() == InitializedEntity::EK_Member &&
cast<FieldDecl>(Entity.getDecl())->isBitField())
S.CheckBitFieldInitialization(Kind.getLocation(),
cast<FieldDecl>(Entity.getDecl()),
CurInit.get());
return CurInit;
}
/// Somewhere within T there is an uninitialized reference subobject.
/// Dig it out and diagnose it.
static bool DiagnoseUninitializedReference(Sema &S, SourceLocation Loc,
QualType T) {
if (T->isReferenceType()) {
S.Diag(Loc, diag::err_reference_without_init)
<< T.getNonReferenceType();
return true;
}
CXXRecordDecl *RD = T->getBaseElementTypeUnsafe()->getAsCXXRecordDecl();
if (!RD || !RD->hasUninitializedReferenceMember())
return false;
for (CXXRecordDecl::field_iterator FI = RD->field_begin(),
FE = RD->field_end(); FI != FE; ++FI) {
if (FI->isUnnamedBitfield())
continue;
if (DiagnoseUninitializedReference(S, FI->getLocation(), FI->getType())) {
S.Diag(Loc, diag::note_value_initialization_here) << RD;
return true;
}
}
for (CXXRecordDecl::base_class_iterator BI = RD->bases_begin(),
BE = RD->bases_end();
BI != BE; ++BI) {
if (DiagnoseUninitializedReference(S, BI->getLocStart(), BI->getType())) {
S.Diag(Loc, diag::note_value_initialization_here) << RD;
return true;
}
}
return false;
}
//===----------------------------------------------------------------------===//
// Diagnose initialization failures
//===----------------------------------------------------------------------===//
/// Emit notes associated with an initialization that failed due to a
/// "simple" conversion failure.
static void emitBadConversionNotes(Sema &S, const InitializedEntity &entity,
Expr *op) {
QualType destType = entity.getType();
if (destType.getNonReferenceType()->isObjCObjectPointerType() &&
op->getType()->isObjCObjectPointerType()) {
// Emit a possible note about the conversion failing because the
// operand is a message send with a related result type.
S.EmitRelatedResultTypeNote(op);
// Emit a possible note about a return failing because we're
// expecting a related result type.
if (entity.getKind() == InitializedEntity::EK_Result)
S.EmitRelatedResultTypeNoteForReturn(destType);
}
}
bool InitializationSequence::Diagnose(Sema &S,
const InitializedEntity &Entity,
const InitializationKind &Kind,
ArrayRef<Expr *> Args) {
if (!Failed())
return false;
QualType DestType = Entity.getType();
switch (Failure) {
case FK_TooManyInitsForReference:
// FIXME: Customize for the initialized entity?
if (Args.empty()) {
// Dig out the reference subobject which is uninitialized and diagnose it.
// If this is value-initialization, this could be nested some way within
// the target type.
assert(Kind.getKind() == InitializationKind::IK_Value ||
DestType->isReferenceType());
bool Diagnosed =
DiagnoseUninitializedReference(S, Kind.getLocation(), DestType);
assert(Diagnosed && "couldn't find uninitialized reference to diagnose");
(void)Diagnosed;
} else // FIXME: diagnostic below could be better!
S.Diag(Kind.getLocation(), diag::err_reference_has_multiple_inits)
<< SourceRange(Args.front()->getLocStart(), Args.back()->getLocEnd());
break;
case FK_ArrayNeedsInitList:
S.Diag(Kind.getLocation(), diag::err_array_init_not_init_list) << 0;
break;
case FK_ArrayNeedsInitListOrStringLiteral:
S.Diag(Kind.getLocation(), diag::err_array_init_not_init_list) << 1;
break;
case FK_ArrayNeedsInitListOrWideStringLiteral:
S.Diag(Kind.getLocation(), diag::err_array_init_not_init_list) << 2;
break;
case FK_NarrowStringIntoWideCharArray:
S.Diag(Kind.getLocation(), diag::err_array_init_narrow_string_into_wchar);
break;
case FK_WideStringIntoCharArray:
S.Diag(Kind.getLocation(), diag::err_array_init_wide_string_into_char);
break;
case FK_IncompatWideStringIntoWideChar:
S.Diag(Kind.getLocation(),
diag::err_array_init_incompat_wide_string_into_wchar);
break;
case FK_ArrayTypeMismatch:
case FK_NonConstantArrayInit:
S.Diag(Kind.getLocation(),
(Failure == FK_ArrayTypeMismatch
? diag::err_array_init_different_type
: diag::err_array_init_non_constant_array))
<< DestType.getNonReferenceType()
<< Args[0]->getType()
<< Args[0]->getSourceRange();
break;
case FK_VariableLengthArrayHasInitializer:
S.Diag(Kind.getLocation(), diag::err_variable_object_no_init)
<< Args[0]->getSourceRange();
break;
case FK_AddressOfOverloadFailed: {
DeclAccessPair Found;
S.ResolveAddressOfOverloadedFunction(Args[0],
DestType.getNonReferenceType(),
true,
Found);
break;
}
case FK_ReferenceInitOverloadFailed:
case FK_UserConversionOverloadFailed:
switch (FailedOverloadResult) {
case OR_Ambiguous:
if (Failure == FK_UserConversionOverloadFailed)
S.Diag(Kind.getLocation(), diag::err_typecheck_ambiguous_condition)
<< Args[0]->getType() << DestType
<< Args[0]->getSourceRange();
else
S.Diag(Kind.getLocation(), diag::err_ref_init_ambiguous)
<< DestType << Args[0]->getType()
<< Args[0]->getSourceRange();
FailedCandidateSet.NoteCandidates(S, OCD_ViableCandidates, Args);
break;
case OR_No_Viable_Function:
if (!S.RequireCompleteType(Kind.getLocation(),
DestType.getNonReferenceType(),
diag::err_typecheck_nonviable_condition_incomplete,
Args[0]->getType(), Args[0]->getSourceRange()))
S.Diag(Kind.getLocation(), diag::err_typecheck_nonviable_condition)
<< Args[0]->getType() << Args[0]->getSourceRange()
<< DestType.getNonReferenceType();
FailedCandidateSet.NoteCandidates(S, OCD_AllCandidates, Args);
break;
case OR_Deleted: {
S.Diag(Kind.getLocation(), diag::err_typecheck_deleted_function)
<< Args[0]->getType() << DestType.getNonReferenceType()
<< Args[0]->getSourceRange();
OverloadCandidateSet::iterator Best;
OverloadingResult Ovl
= FailedCandidateSet.BestViableFunction(S, Kind.getLocation(), Best,
true);
if (Ovl == OR_Deleted) {
S.NoteDeletedFunction(Best->Function);
} else {
llvm_unreachable("Inconsistent overload resolution?");
}
break;
}
case OR_Success:
llvm_unreachable("Conversion did not fail!");
}
break;
case FK_NonConstLValueReferenceBindingToTemporary:
if (isa<InitListExpr>(Args[0])) {
S.Diag(Kind.getLocation(),
diag::err_lvalue_reference_bind_to_initlist)
<< DestType.getNonReferenceType().isVolatileQualified()
<< DestType.getNonReferenceType()
<< Args[0]->getSourceRange();
break;
}
// Intentional fallthrough
case FK_NonConstLValueReferenceBindingToUnrelated:
S.Diag(Kind.getLocation(),
Failure == FK_NonConstLValueReferenceBindingToTemporary
? diag::err_lvalue_reference_bind_to_temporary
: diag::err_lvalue_reference_bind_to_unrelated)
<< DestType.getNonReferenceType().isVolatileQualified()
<< DestType.getNonReferenceType()
<< Args[0]->getType()
<< Args[0]->getSourceRange();
break;
case FK_RValueReferenceBindingToLValue:
S.Diag(Kind.getLocation(), diag::err_lvalue_to_rvalue_ref)
<< DestType.getNonReferenceType() << Args[0]->getType()
<< Args[0]->getSourceRange();
break;
case FK_ReferenceInitDropsQualifiers:
S.Diag(Kind.getLocation(), diag::err_reference_bind_drops_quals)
<< DestType.getNonReferenceType()
<< Args[0]->getType()
<< Args[0]->getSourceRange();
break;
case FK_ReferenceInitFailed:
S.Diag(Kind.getLocation(), diag::err_reference_bind_failed)
<< DestType.getNonReferenceType()
<< Args[0]->isLValue()
<< Args[0]->getType()
<< Args[0]->getSourceRange();
emitBadConversionNotes(S, Entity, Args[0]);
break;
case FK_ConversionFailed: {
QualType FromType = Args[0]->getType();
PartialDiagnostic PDiag = S.PDiag(diag::err_init_conversion_failed)
<< (int)Entity.getKind()
<< DestType
<< Args[0]->isLValue()
<< FromType
<< Args[0]->getSourceRange();
S.HandleFunctionTypeMismatch(PDiag, FromType, DestType);
S.Diag(Kind.getLocation(), PDiag);
emitBadConversionNotes(S, Entity, Args[0]);
break;
}
case FK_ConversionFromPropertyFailed:
// No-op. This error has already been reported.
break;
case FK_TooManyInitsForScalar: {
SourceRange R;
if (InitListExpr *InitList = dyn_cast<InitListExpr>(Args[0]))
R = SourceRange(InitList->getInit(0)->getLocEnd(),
InitList->getLocEnd());
else
R = SourceRange(Args.front()->getLocEnd(), Args.back()->getLocEnd());
R.setBegin(S.PP.getLocForEndOfToken(R.getBegin()));
if (Kind.isCStyleOrFunctionalCast())
S.Diag(Kind.getLocation(), diag::err_builtin_func_cast_more_than_one_arg)
<< R;
else
S.Diag(Kind.getLocation(), diag::err_excess_initializers)
<< /*scalar=*/2 << R;
break;
}
case FK_ReferenceBindingToInitList:
S.Diag(Kind.getLocation(), diag::err_reference_bind_init_list)
<< DestType.getNonReferenceType() << Args[0]->getSourceRange();
break;
case FK_InitListBadDestinationType:
S.Diag(Kind.getLocation(), diag::err_init_list_bad_dest_type)
<< (DestType->isRecordType()) << DestType << Args[0]->getSourceRange();
break;
case FK_ListConstructorOverloadFailed:
case FK_ConstructorOverloadFailed: {
SourceRange ArgsRange;
if (Args.size())
ArgsRange = SourceRange(Args.front()->getLocStart(),
Args.back()->getLocEnd());
if (Failure == FK_ListConstructorOverloadFailed) {
assert(Args.size() == 1 && "List construction from other than 1 argument.");
InitListExpr *InitList = cast<InitListExpr>(Args[0]);
Args = MultiExprArg(InitList->getInits(), InitList->getNumInits());
}
// FIXME: Using "DestType" for the entity we're printing is probably
// bad.
switch (FailedOverloadResult) {
case OR_Ambiguous:
S.Diag(Kind.getLocation(), diag::err_ovl_ambiguous_init)
<< DestType << ArgsRange;
FailedCandidateSet.NoteCandidates(S, OCD_ViableCandidates, Args);
break;
case OR_No_Viable_Function:
if (Kind.getKind() == InitializationKind::IK_Default &&
(Entity.getKind() == InitializedEntity::EK_Base ||
Entity.getKind() == InitializedEntity::EK_Member) &&
isa<CXXConstructorDecl>(S.CurContext)) {
// This is implicit default initialization of a member or
// base within a constructor. If no viable function was
// found, notify the user that she needs to explicitly
// initialize this base/member.
CXXConstructorDecl *Constructor
= cast<CXXConstructorDecl>(S.CurContext);
if (Entity.getKind() == InitializedEntity::EK_Base) {
S.Diag(Kind.getLocation(), diag::err_missing_default_ctor)
<< (Constructor->getInheritedConstructor() ? 2 :
Constructor->isImplicit() ? 1 : 0)
<< S.Context.getTypeDeclType(Constructor->getParent())
<< /*base=*/0
<< Entity.getType();
RecordDecl *BaseDecl
= Entity.getBaseSpecifier()->getType()->getAs<RecordType>()
->getDecl();
S.Diag(BaseDecl->getLocation(), diag::note_previous_decl)
<< S.Context.getTagDeclType(BaseDecl);
} else {
S.Diag(Kind.getLocation(), diag::err_missing_default_ctor)
<< (Constructor->getInheritedConstructor() ? 2 :
Constructor->isImplicit() ? 1 : 0)
<< S.Context.getTypeDeclType(Constructor->getParent())
<< /*member=*/1
<< Entity.getName();
S.Diag(Entity.getDecl()->getLocation(), diag::note_field_decl);
if (const RecordType *Record
= Entity.getType()->getAs<RecordType>())
S.Diag(Record->getDecl()->getLocation(),
diag::note_previous_decl)
<< S.Context.getTagDeclType(Record->getDecl());
}
break;
}
S.Diag(Kind.getLocation(), diag::err_ovl_no_viable_function_in_init)
<< DestType << ArgsRange;
FailedCandidateSet.NoteCandidates(S, OCD_AllCandidates, Args);
break;
case OR_Deleted: {
OverloadCandidateSet::iterator Best;
OverloadingResult Ovl
= FailedCandidateSet.BestViableFunction(S, Kind.getLocation(), Best);
if (Ovl != OR_Deleted) {
S.Diag(Kind.getLocation(), diag::err_ovl_deleted_init)
<< true << DestType << ArgsRange;
llvm_unreachable("Inconsistent overload resolution?");
break;
}
// If this is a defaulted or implicitly-declared function, then
// it was implicitly deleted. Make it clear that the deletion was
// implicit.
if (S.isImplicitlyDeleted(Best->Function))
S.Diag(Kind.getLocation(), diag::err_ovl_deleted_special_init)
<< S.getSpecialMember(cast<CXXMethodDecl>(Best->Function))
<< DestType << ArgsRange;
else
S.Diag(Kind.getLocation(), diag::err_ovl_deleted_init)
<< true << DestType << ArgsRange;
S.NoteDeletedFunction(Best->Function);
break;
}
case OR_Success:
llvm_unreachable("Conversion did not fail!");
}
}
break;
case FK_DefaultInitOfConst:
if (Entity.getKind() == InitializedEntity::EK_Member &&
isa<CXXConstructorDecl>(S.CurContext)) {
// This is implicit default-initialization of a const member in
// a constructor. Complain that it needs to be explicitly
// initialized.
CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(S.CurContext);
S.Diag(Kind.getLocation(), diag::err_uninitialized_member_in_ctor)
<< (Constructor->getInheritedConstructor() ? 2 :
Constructor->isImplicit() ? 1 : 0)
<< S.Context.getTypeDeclType(Constructor->getParent())
<< /*const=*/1
<< Entity.getName();
S.Diag(Entity.getDecl()->getLocation(), diag::note_previous_decl)
<< Entity.getName();
} else {
S.Diag(Kind.getLocation(), diag::err_default_init_const)
<< DestType << (bool)DestType->getAs<RecordType>();
}
break;
case FK_Incomplete:
S.RequireCompleteType(Kind.getLocation(), FailedIncompleteType,
diag::err_init_incomplete_type);
break;
case FK_ListInitializationFailed: {
// Run the init list checker again to emit diagnostics.
InitListExpr* InitList = cast<InitListExpr>(Args[0]);
QualType DestType = Entity.getType();
InitListChecker DiagnoseInitList(S, Entity, InitList,
DestType, /*VerifyOnly=*/false);
assert(DiagnoseInitList.HadError() &&
"Inconsistent init list check result.");
break;
}
case FK_PlaceholderType: {
// FIXME: Already diagnosed!
break;
}
case FK_ExplicitConstructor: {
S.Diag(Kind.getLocation(), diag::err_selected_explicit_constructor)
<< Args[0]->getSourceRange();
OverloadCandidateSet::iterator Best;
OverloadingResult Ovl
= FailedCandidateSet.BestViableFunction(S, Kind.getLocation(), Best);
(void)Ovl;
assert(Ovl == OR_Success && "Inconsistent overload resolution");
CXXConstructorDecl *CtorDecl = cast<CXXConstructorDecl>(Best->Function);
S.Diag(CtorDecl->getLocation(), diag::note_constructor_declared_here);
break;
}
}
PrintInitLocationNote(S, Entity);
return true;
}
void InitializationSequence::dump(raw_ostream &OS) const {
switch (SequenceKind) {
case FailedSequence: {
OS << "Failed sequence: ";
switch (Failure) {
case FK_TooManyInitsForReference:
OS << "too many initializers for reference";
break;
case FK_ArrayNeedsInitList:
OS << "array requires initializer list";
break;
case FK_ArrayNeedsInitListOrStringLiteral:
OS << "array requires initializer list or string literal";
break;
case FK_ArrayNeedsInitListOrWideStringLiteral:
OS << "array requires initializer list or wide string literal";
break;
case FK_NarrowStringIntoWideCharArray:
OS << "narrow string into wide char array";
break;
case FK_WideStringIntoCharArray:
OS << "wide string into char array";
break;
case FK_IncompatWideStringIntoWideChar:
OS << "incompatible wide string into wide char array";
break;
case FK_ArrayTypeMismatch:
OS << "array type mismatch";
break;
case FK_NonConstantArrayInit:
OS << "non-constant array initializer";
break;
case FK_AddressOfOverloadFailed:
OS << "address of overloaded function failed";
break;
case FK_ReferenceInitOverloadFailed:
OS << "overload resolution for reference initialization failed";
break;
case FK_NonConstLValueReferenceBindingToTemporary:
OS << "non-const lvalue reference bound to temporary";
break;
case FK_NonConstLValueReferenceBindingToUnrelated:
OS << "non-const lvalue reference bound to unrelated type";
break;
case FK_RValueReferenceBindingToLValue:
OS << "rvalue reference bound to an lvalue";
break;
case FK_ReferenceInitDropsQualifiers:
OS << "reference initialization drops qualifiers";
break;
case FK_ReferenceInitFailed:
OS << "reference initialization failed";
break;
case FK_ConversionFailed:
OS << "conversion failed";
break;
case FK_ConversionFromPropertyFailed:
OS << "conversion from property failed";
break;
case FK_TooManyInitsForScalar:
OS << "too many initializers for scalar";
break;
case FK_ReferenceBindingToInitList:
OS << "referencing binding to initializer list";
break;
case FK_InitListBadDestinationType:
OS << "initializer list for non-aggregate, non-scalar type";
break;
case FK_UserConversionOverloadFailed:
OS << "overloading failed for user-defined conversion";
break;
case FK_ConstructorOverloadFailed:
OS << "constructor overloading failed";
break;
case FK_DefaultInitOfConst:
OS << "default initialization of a const variable";
break;
case FK_Incomplete:
OS << "initialization of incomplete type";
break;
case FK_ListInitializationFailed:
OS << "list initialization checker failure";
break;
case FK_VariableLengthArrayHasInitializer:
OS << "variable length array has an initializer";
break;
case FK_PlaceholderType:
OS << "initializer expression isn't contextually valid";
break;
case FK_ListConstructorOverloadFailed:
OS << "list constructor overloading failed";
break;
case FK_ExplicitConstructor:
OS << "list copy initialization chose explicit constructor";
break;
}
OS << '\n';
return;
}
case DependentSequence:
OS << "Dependent sequence\n";
return;
case NormalSequence:
OS << "Normal sequence: ";
break;
}
for (step_iterator S = step_begin(), SEnd = step_end(); S != SEnd; ++S) {
if (S != step_begin()) {
OS << " -> ";
}
switch (S->Kind) {
case SK_ResolveAddressOfOverloadedFunction:
OS << "resolve address of overloaded function";
break;
case SK_CastDerivedToBaseRValue:
OS << "derived-to-base case (rvalue" << S->Type.getAsString() << ")";
break;
case SK_CastDerivedToBaseXValue:
OS << "derived-to-base case (xvalue" << S->Type.getAsString() << ")";
break;
case SK_CastDerivedToBaseLValue:
OS << "derived-to-base case (lvalue" << S->Type.getAsString() << ")";
break;
case SK_BindReference:
OS << "bind reference to lvalue";
break;
case SK_BindReferenceToTemporary:
OS << "bind reference to a temporary";
break;
case SK_ExtraneousCopyToTemporary:
OS << "extraneous C++03 copy to temporary";
break;
case SK_UserConversion:
OS << "user-defined conversion via " << *S->Function.Function;
break;
case SK_QualificationConversionRValue:
OS << "qualification conversion (rvalue)";
break;
case SK_QualificationConversionXValue:
OS << "qualification conversion (xvalue)";
break;
case SK_QualificationConversionLValue:
OS << "qualification conversion (lvalue)";
break;
case SK_LValueToRValue:
OS << "load (lvalue to rvalue)";
break;
case SK_ConversionSequence:
OS << "implicit conversion sequence (";
S->ICS->DebugPrint(); // FIXME: use OS
OS << ")";
break;
case SK_ListInitialization:
OS << "list aggregate initialization";
break;
case SK_ListConstructorCall:
OS << "list initialization via constructor";
break;
case SK_UnwrapInitList:
OS << "unwrap reference initializer list";
break;
case SK_RewrapInitList:
OS << "rewrap reference initializer list";
break;
case SK_ConstructorInitialization:
OS << "constructor initialization";
break;
case SK_ZeroInitialization:
OS << "zero initialization";
break;
case SK_CAssignment:
OS << "C assignment";
break;
case SK_StringInit:
OS << "string initialization";
break;
case SK_ObjCObjectConversion:
OS << "Objective-C object conversion";
break;
case SK_ArrayInit:
OS << "array initialization";
break;
case SK_ParenthesizedArrayInit:
OS << "parenthesized array initialization";
break;
case SK_PassByIndirectCopyRestore:
OS << "pass by indirect copy and restore";
break;
case SK_PassByIndirectRestore:
OS << "pass by indirect restore";
break;
case SK_ProduceObjCObject:
OS << "Objective-C object retension";
break;
case SK_StdInitializerList:
OS << "std::initializer_list from initializer list";
break;
case SK_OCLSamplerInit:
OS << "OpenCL sampler_t from integer constant";
break;
case SK_OCLZeroEvent:
OS << "OpenCL event_t from zero";
break;
}
OS << " [" << S->Type.getAsString() << ']';
}
OS << '\n';
}
void InitializationSequence::dump() const {
dump(llvm::errs());
}
static void DiagnoseNarrowingInInitList(Sema &S, InitializationSequence &Seq,
QualType EntityType,
const Expr *PreInit,
const Expr *PostInit) {
if (Seq.step_begin() == Seq.step_end() || PreInit->isValueDependent())
return;
// A narrowing conversion can only appear as the final implicit conversion in
// an initialization sequence.
const InitializationSequence::Step &LastStep = Seq.step_end()[-1];
if (LastStep.Kind != InitializationSequence::SK_ConversionSequence)
return;
const ImplicitConversionSequence &ICS = *LastStep.ICS;
const StandardConversionSequence *SCS = 0;
switch (ICS.getKind()) {
case ImplicitConversionSequence::StandardConversion:
SCS = &ICS.Standard;
break;
case ImplicitConversionSequence::UserDefinedConversion:
SCS = &ICS.UserDefined.After;
break;
case ImplicitConversionSequence::AmbiguousConversion:
case ImplicitConversionSequence::EllipsisConversion:
case ImplicitConversionSequence::BadConversion:
return;
}
// Determine the type prior to the narrowing conversion. If a conversion
// operator was used, this may be different from both the type of the entity
// and of the pre-initialization expression.
QualType PreNarrowingType = PreInit->getType();
if (Seq.step_begin() + 1 != Seq.step_end())
PreNarrowingType = Seq.step_end()[-2].Type;
// C++11 [dcl.init.list]p7: Check whether this is a narrowing conversion.
APValue ConstantValue;
QualType ConstantType;
switch (SCS->getNarrowingKind(S.Context, PostInit, ConstantValue,
ConstantType)) {
case NK_Not_Narrowing:
// No narrowing occurred.
return;
case NK_Type_Narrowing:
// This was a floating-to-integer conversion, which is always considered a
// narrowing conversion even if the value is a constant and can be
// represented exactly as an integer.
S.Diag(PostInit->getLocStart(),
S.getLangOpts().MicrosoftExt || !S.getLangOpts().CPlusPlus11?
diag::warn_init_list_type_narrowing
: S.isSFINAEContext()?
diag::err_init_list_type_narrowing_sfinae
: diag::err_init_list_type_narrowing)
<< PostInit->getSourceRange()
<< PreNarrowingType.getLocalUnqualifiedType()
<< EntityType.getLocalUnqualifiedType();
break;
case NK_Constant_Narrowing:
// A constant value was narrowed.
S.Diag(PostInit->getLocStart(),
S.getLangOpts().MicrosoftExt || !S.getLangOpts().CPlusPlus11?
diag::warn_init_list_constant_narrowing
: S.isSFINAEContext()?
diag::err_init_list_constant_narrowing_sfinae
: diag::err_init_list_constant_narrowing)
<< PostInit->getSourceRange()
<< ConstantValue.getAsString(S.getASTContext(), ConstantType)
<< EntityType.getLocalUnqualifiedType();
break;
case NK_Variable_Narrowing:
// A variable's value may have been narrowed.
S.Diag(PostInit->getLocStart(),
S.getLangOpts().MicrosoftExt || !S.getLangOpts().CPlusPlus11?
diag::warn_init_list_variable_narrowing
: S.isSFINAEContext()?
diag::err_init_list_variable_narrowing_sfinae
: diag::err_init_list_variable_narrowing)
<< PostInit->getSourceRange()
<< PreNarrowingType.getLocalUnqualifiedType()
<< EntityType.getLocalUnqualifiedType();
break;
}
SmallString<128> StaticCast;
llvm::raw_svector_ostream OS(StaticCast);
OS << "static_cast<";
if (const TypedefType *TT = EntityType->getAs<TypedefType>()) {
// It's important to use the typedef's name if there is one so that the
// fixit doesn't break code using types like int64_t.
//
// FIXME: This will break if the typedef requires qualification. But
// getQualifiedNameAsString() includes non-machine-parsable components.
OS << *TT->getDecl();
} else if (const BuiltinType *BT = EntityType->getAs<BuiltinType>())
OS << BT->getName(S.getLangOpts());
else {
// Oops, we didn't find the actual type of the variable. Don't emit a fixit
// with a broken cast.
return;
}
OS << ">(";
S.Diag(PostInit->getLocStart(), diag::note_init_list_narrowing_override)
<< PostInit->getSourceRange()
<< FixItHint::CreateInsertion(PostInit->getLocStart(), OS.str())
<< FixItHint::CreateInsertion(
S.getPreprocessor().getLocForEndOfToken(PostInit->getLocEnd()), ")");
}
//===----------------------------------------------------------------------===//
// Initialization helper functions
//===----------------------------------------------------------------------===//
bool
Sema::CanPerformCopyInitialization(const InitializedEntity &Entity,
ExprResult Init) {
if (Init.isInvalid())
return false;
Expr *InitE = Init.get();
assert(InitE && "No initialization expression");
InitializationKind Kind
= InitializationKind::CreateCopy(InitE->getLocStart(), SourceLocation());
InitializationSequence Seq(*this, Entity, Kind, InitE);
return !Seq.Failed();
}
ExprResult
Sema::PerformCopyInitialization(const InitializedEntity &Entity,
SourceLocation EqualLoc,
ExprResult Init,
bool TopLevelOfInitList,
bool AllowExplicit) {
if (Init.isInvalid())
return ExprError();
Expr *InitE = Init.get();
assert(InitE && "No initialization expression?");
if (EqualLoc.isInvalid())
EqualLoc = InitE->getLocStart();
InitializationKind Kind = InitializationKind::CreateCopy(InitE->getLocStart(),
EqualLoc,
AllowExplicit);
InitializationSequence Seq(*this, Entity, Kind, InitE);
Init.release();
ExprResult Result = Seq.Perform(*this, Entity, Kind, InitE);
if (!Result.isInvalid() && TopLevelOfInitList)
DiagnoseNarrowingInInitList(*this, Seq, Entity.getType(),
InitE, Result.get());
return Result;
}
| [
"karun.matharu@gmail.com"
] | karun.matharu@gmail.com |
d097743694d511790645c65c5de642d669d51981 | 9e7501993d2ede32cdc7d00702953af0ee011391 | /src/MVC/View/MultiChoiceDialog.cpp | d1319e3249773353dc18fc49fae11e4d568c3900 | [
"MIT"
] | permissive | leandromacrini/Retro-End | be85634bd2fd9f90b72785a6edb3d10a47441fe5 | 8b420e7106f2518925dc57fc44cca268a1f1cf9b | refs/heads/master | 2021-03-12T23:33:00.388380 | 2014-03-21T09:03:36 | 2014-03-21T09:03:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,167 | cpp | #include "MultiChoiceDialog.h"
using namespace RetroEnd::Model;
using namespace RetroEnd::View;
using namespace RetroEnd::Controller;
MultiChoiceDialog::MultiChoiceDialog() : BaseView(), mValues(NULL)
{
float W = (float) RenderController::getInstance().getScreenWidth();
float H = (float) RenderController::getInstance().getScreenHeight();
mSize = Eigen::Vector2f(W,H);
BackgroundColor = 0x1d1d1d99;
mBack = new BaseView();
mBack->BackgroundColor = 0xEDEDEDFF;
mBack->setSize(W * 5/10, H * 8/10);
mBack->setPosition(W* 2.5f/10, H);
addChild(mBack);
mTitle = new Label();
mTitle->setSize(mBack->getSize().x(), 0);
mTitle->HorizontalTextAlign = TextAlign::Center;
mBack->addChild(mTitle);
mMessage = new Label();
mMessage->setSize(mBack->getSize().x(), 0);
mMessage->setPosition(0, mTitle->getFont()->getSize() * 2.0f);
mMessage->HorizontalTextAlign = TextAlign::Center;
mMessage->WrapText = true;
mBack->addChild(mMessage);
mValuesList = new ListView();
mValuesList->setSize(mBack->getSize().x(), mBack->getSize().y()/2);
mValuesList->setPosition(0, mBack->getSize().y()/2);
mValuesList->HorizontalTextAlign = TextAlign::Center;
mValuesList->TitleColor = 0x000000FF;
mValuesList->SelectedRowBackgroundColor = 0x1d1d1d99;
mValuesList->SelectedTitleColor = 0xFFFFFFFF;
mValuesList->Focused = true;
mValuesList->onItemPressed += [this](unsigned int index)
{
if(mCallback) mCallback(index);
};
mBack->addChild(mValuesList);
Animation* a = new Animation();
a->moveOffset = Eigen::Vector3f(0, -(H *9/10) -50, 0);
a->millisDuration = 250;
a->endCallback = [H, this] ()
{
Animation* a = new Animation();
a->moveOffset = Eigen::Vector3f(0, 50, 0);
a->millisDuration = 100;
mBack->animate(a);
};
mBack->animate(a);
}
void MultiChoiceDialog::showDialog(string message, string title, vector<string>* values, function<void (unsigned int selectedIndex)> callback, int selected)
{
mTitle->setText(title);
mMessage->setText(message);
mCallback = callback;
mValues = values;
for(unsigned int i = 0; i < mValues->size(); i++)
{
mValuesList->addRow(mValues->at(i));
}
mValuesList->setSelectedIndex(selected);
} | [
"leandromacrini@gmail.com"
] | leandromacrini@gmail.com |
914bb2860b716242a5e3a02f2a2a785986de01cc | 6b978172df044df1417ebf758f19c47210153fef | /Lab 4/Hedgehog/Hedgehog/game.cpp | 8803ddaf9f7ee18be20ed964d00e99506923ee85 | [] | no_license | WhyHollow/LabsOOP | 53fd3485520385e630eba7e8b4a7214268cf5fc1 | fc0d02bb591c5fe6764a8f120240d38fc4f63ee4 | refs/heads/master | 2021-09-01T09:13:43.925524 | 2017-12-26T05:55:33 | 2017-12-26T05:55:33 | 115,389,993 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,390 | cpp | #include <GL/glut.h>
#include <iostream>
#include <ctime>
#include "game.h"
void unit(int, int);
int random(int, int);
bool seedflag = false;
bool food = false;
int rows = 0, columns = 0;
int direction = NULL;
int foodx[10], foody[10];
int posx = 1;
int posy = 1;
int count;
bool check[10];
GLuint texture[4];
void initGrid(int x, int y)
{
columns = x;
rows = y;
}
void draw_grid()
{
for (int i = 0; i<columns; i++)
{
for (int j = 0; j<rows; j++)
{
unit(i, j);
}
}
}
void draw_snake()
{
glColor4f(1.0, 1.0, 1.0, 1.0);
switch (direction)
{
case UP:
posy++;
direction = NULL;
break;
case DOWN:
posy--;
direction = NULL;
break;
case RIGHT:
posx++;
direction = NULL;
break;
case LEFT:
posx--;
direction = NULL;
break;
default:
break;
}
if (posx != 0 && posx != columns - 1 && posy != 0 && posy != rows - 1)
{
for (int i = 0; i < 10; i++) {
if (posx == foodx[i] && posy == foody[i]) {
check[i] = false;
}
}
}
if (posx == 0)
posx = 1;
if(posx == columns - 1)
posx = columns - 2;
if(posy == 0)
posy = 1;
if (posy == rows - 1)
posy = rows - 2;
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
glEnable(GL_TEXTURE_2D);
glBindTexture(GL_TEXTURE_2D, texture[3]);
glLoadIdentity();
glBegin(GL_QUADS);
glTexCoord2f(0.0f, 0.0f); glVertex2d(posx, posy);
glTexCoord2f(1.0f, 0.0f); glVertex2d(posx + 1, posy);
glTexCoord2f(1.0f, 1.0f); glVertex2d(posx + 1, posy + 1);
glTexCoord2f(0.0f, 1.0f); glVertex2d(posx, posy + 1);
glEnd();
glFlush();
glDisable(GL_TEXTURE_2D);
}
void foods(int check, int i){
if (check != 0){
glEnable(GL_TEXTURE_2D);
glBindTexture(GL_TEXTURE_2D, texture[2]);
glLoadIdentity();
glBegin(GL_QUADS);
glTexCoord2f(0.0f, 0.0f); glVertex2d(foodx[i], foody[i]);
glTexCoord2f(1.0f, 0.0f); glVertex2d(foodx[i] + 1, foody[i]);
glTexCoord2f(1.0f, 1.0f); glVertex2d(foodx[i] + 1, foody[i] + 1);
glTexCoord2f(0.0f, 1.0f); glVertex2d(foodx[i], foody[i] + 1);
glEnd();
glFlush();
glDisable(GL_TEXTURE_2D);
count++;
}
}
void draw_food()
{
if (count == 0)
food = false;
count = 0;
if (!food)
{
for (int i = 0; i < 10; i++){
foodx[i] = random(2, columns - 2);
foody[i] = random(2, rows - 2);
check[i] = true;
std::cout << foodx[i] << " " << foody[i] << std::endl;
}
food = true;
}
for (int i = 0; i < 10; i++){
foods(check[i], i);
}
}
void unit(int x, int y)
{
if (x == 0 || x == columns - 1 || y == 0 || y == rows - 1)
{
glEnable(GL_TEXTURE_2D);
glBindTexture(GL_TEXTURE_2D, texture[0]);
glLoadIdentity();
glBegin(GL_QUADS);
glTexCoord2f(0.0f, 0.0f); glVertex2d(x, y);
glTexCoord2f(1.0f, 0.0f); glVertex2d(x + 1, y);
glTexCoord2f(1.0f, 1.0f); glVertex2d(x + 1, y + 1);
glTexCoord2f(0.0f, 1.0f); glVertex2d(x, y + 1);
glEnd();
glFlush();
glDisable(GL_TEXTURE_2D);
}
else
{
glEnable(GL_TEXTURE_2D);
glBindTexture(GL_TEXTURE_2D, texture[1]);
glLoadIdentity();
glBegin(GL_QUADS);
glTexCoord2f(0.0f, 0.0f); glVertex2d(x, y);
glTexCoord2f(1.0f, 0.0f); glVertex2d(x + 1, y);
glTexCoord2f(1.0f, 1.0f); glVertex2d(x + 1, y + 1);
glTexCoord2f(0.0f, 1.0f); glVertex2d(x, y + 1);
glEnd();
glFlush();
glDisable(GL_TEXTURE_2D);
}
}
int random(int _min, int _max)
{
if (!seedflag)
{
srand(time(NULL));
seedflag = true;
}
//else
//seedflag = false;
return _min + rand() % (_max - _min);
}
| [
"Hollow666Metal@gmail.com"
] | Hollow666Metal@gmail.com |
350bbbe60bac72a5c6415579bf6ce2d76c98df32 | 8bab00c188c5ea7836fa372c29f3fd04360a9ee2 | /CrossCppPrototype/CommonLibrary/CommonLibrary.Shared/Text.h | 14783bdf9a088ee57b613b44dfec393dbcd482a3 | [
"MIT"
] | permissive | bobbyz-dk/cross-cpp-prototype | 92f80250ae710a7fba9bc99a4ea4d3bf069198df | 2e6261e72a13934fae966a8843507f051264a8f2 | refs/heads/master | 2021-01-25T09:00:30.594225 | 2015-06-05T09:53:56 | 2015-06-05T09:53:56 | 35,742,053 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 214 | h | #pragma once
#include <string>
using namespace std;
class Text {
private:
int id;
string text;
public:
Text();
Text(string _text);
Text(int _id, string _text);
~Text();
int getId();
string getText();
};
| [
"bobby@bobbyz.dk"
] | bobby@bobbyz.dk |
fb76b18a8ad80ddbaf29563aa041a930f386953b | 4e221ff3fc81fb015f69588f50032f82af02753b | /MeshLib/MeshEditing/RasterDataToMesh.cpp | dfd66b9ef6478239708714c7f719977ee9b1d060 | [
"BSD-3-Clause",
"BSD-2-Clause"
] | permissive | fwitte/ogs | 74e65e465cc2f69c1b154e505cc3b56ee47cc3fb | 0b367872fc58ecd4e1dbfe1dcebbc847da6639d7 | refs/heads/master | 2022-11-23T11:14:58.900119 | 2020-07-30T09:48:17 | 2020-07-30T09:48:17 | 283,438,669 | 0 | 0 | BSD-3-Clause | 2020-07-29T08:10:24 | 2020-07-29T08:10:23 | null | UTF-8 | C++ | false | false | 2,846 | cpp | /**
* \file
* \copyright
* Copyright (c) 2012-2020, OpenGeoSys Community (http://www.opengeosys.org)
* Distributed under a Modified BSD License.
* See accompanying file LICENSE.txt or
* http://www.opengeosys.org/project/license
*
*/
#include "RasterDataToMesh.h"
#include "BaseLib/StringTools.h"
#include "MeshLib/Node.h"
#include "MeshLib/Elements/Element.h"
namespace MeshLib
{
namespace RasterDataToMesh
{
static bool checkMesh(MeshLib::Mesh const& mesh)
{
if (mesh.getDimension() > 2)
{
ERR("This functionality is currently only available for 2D meshes.");
return false;
}
return true;
}
static double evaluatePixel(double const value, double const no_data,
double const replacement)
{
if (std::abs(value - no_data) < std::numeric_limits<double>::epsilon())
{
return replacement;
}
return value;
}
bool projectToNodes(MeshLib::Mesh& mesh, GeoLib::Raster const& raster,
double const default_replacement,
std::string const& array_name)
{
if (!checkMesh(mesh))
{
return false;
}
auto& nodes = mesh.getNodes();
auto& props = mesh.getProperties();
std::string const name =
BaseLib::getUniqueName(props.getPropertyVectorNames(), array_name);
auto vec = props.createNewPropertyVector<double>(
name, MeshLib::MeshItemType::Node, 1);
double const no_data = raster.getHeader().no_data;
std::transform(nodes.cbegin(), nodes.cend(), std::back_inserter(*vec),
[&](auto const node) {
return evaluatePixel(raster.getValueAtPoint(*node),
no_data, default_replacement);
});
return true;
}
bool projectToElements(MeshLib::Mesh& mesh, GeoLib::Raster const& raster,
double const default_replacement,
std::string const& array_name)
{
if (!checkMesh(mesh))
{
return false;
}
auto& elems = mesh.getElements();
auto& props = mesh.getProperties();
std::string const name =
BaseLib::getUniqueName(props.getPropertyVectorNames(), array_name);
auto vec = props.createNewPropertyVector<double>(
name, MeshLib::MeshItemType::Cell, 1);
double const no_data = raster.getHeader().no_data;
std::transform(elems.cbegin(), elems.cend(), std::back_inserter(*vec),
[&](auto const elem) {
auto node = elem->getCenterOfGravity();
return evaluatePixel(raster.getValueAtPoint(node),
no_data, default_replacement);
});
return true;
}
} // end namespace RasterDataToMesh
} // end namespace MeshLib
| [
"thomas.fischer@ufz.de"
] | thomas.fischer@ufz.de |
e392670c1299e24cf32b6f16a34f9a096b50fffd | 35a2a3f5fa6573c32e411d399a60e6f67ae51556 | /src/operator/nn/lrn.cc | 68d32617e9d1746624f7206723ca52d063c0799c | [
"Apache-2.0",
"BSD-2-Clause-Views",
"Zlib",
"BSD-2-Clause",
"BSD-3-Clause",
"Intel"
] | permissive | TuSimple/mxnet | 21c1b8fedd1a626cb57189f33ee5c4b2b382fd79 | 4cb69b85b4db8e1492e378c6d1a0a0a07bd737fb | refs/heads/master | 2021-01-09T07:59:24.301512 | 2019-07-27T00:56:52 | 2019-07-27T00:56:52 | 53,660,918 | 33 | 47 | Apache-2.0 | 2019-07-27T01:09:17 | 2016-03-11T10:56:36 | Python | UTF-8 | C++ | false | false | 7,706 | cc | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
/*!
* Copyright (c) 2015 by Contributors
* \file lrn.cc
* \brief
* \author Bing Xu, Patric Zhao (patric.zhao@intel.com)
*/
#include "./lrn-inl.h"
#include "../operator_common.h"
#if MXNET_USE_MKLDNN == 1
#include "./mkldnn/mkldnn_lrn-inl.h"
#endif
namespace mxnet {
namespace op {
bool LRNShape(const nnvm::NodeAttrs& attrs,
std::vector<TShape> *in_shape,
std::vector<TShape> *out_shape) {
using namespace mshadow;
CHECK_EQ(in_shape->size(), 1U) << "Input:[data]";
const TShape &dshape = in_shape->at(0);
if (dshape.ndim() == 0) return false;
out_shape->clear();
out_shape->push_back(dshape);
out_shape->push_back(dshape);
return true;
}
inline std::vector<std::string> ListArguments() {
return {"data"};
}
bool LRNType(const nnvm::NodeAttrs& attrs,
std::vector<int> *in_type,
std::vector<int> *out_type) {
CHECK_GE(in_type->size(), 1U);
int dtype = (*in_type)[0];
CHECK_NE(dtype, -1) << "First input must have specified type";
for (index_t i = 0; i < in_type->size(); ++i) {
if ((*in_type)[i] == -1) {
(*in_type)[i] = dtype;
} else {
UNIFORM_TYPE_CHECK((*in_type)[i], dtype, ListArguments()[i]);
}
}
int n_out = 2;
out_type->clear();
for (int i = 0; i < n_out; ++i ) out_type->push_back(dtype);
return true;
}
struct LRNGrad {
const char *op_name;
std::vector<nnvm::NodeEntry> operator()(const nnvm::NodePtr& n,
const std::vector<nnvm::NodeEntry>& ograds) const {
std::vector<nnvm::NodeEntry> heads;
heads.push_back(ograds[0]); // out_grad
heads.push_back(n->inputs[lrn_enum::kData]);
heads.emplace_back(nnvm::NodeEntry{n, lrn_enum::kTmpNorm, 0});
return MakeGradNode(op_name, n, heads, n->attrs.dict);
}
};
bool LRNForwardInferStorageType(const nnvm::NodeAttrs& attrs,
const int dev_mask,
DispatchMode* dispatch_mode,
std::vector<int> *in_attrs,
std::vector<int> *out_attrs) {
CHECK(!in_attrs->empty());
#if MXNET_USE_MKLDNN == 1
if (dev_mask == mshadow::cpu::kDevMask) {
storage_type_assign(out_attrs, mxnet::kDefaultStorage,
dispatch_mode, DispatchMode::kFComputeEx);
return true;
}
#endif
storage_type_assign(out_attrs, mxnet::kDefaultStorage,
dispatch_mode, DispatchMode::kFCompute);
return true;
}
bool LRNBackwardInferStorageType(const nnvm::NodeAttrs& attrs,
const int dev_mask,
DispatchMode* dispatch_mode,
std::vector<int> *in_attrs,
std::vector<int> *out_attrs) {
CHECK(!in_attrs->empty());
#if MXNET_USE_MKLDNN == 1
if (dev_mask == mshadow::cpu::kDevMask) {
storage_type_assign(out_attrs, mxnet::kDefaultStorage,
dispatch_mode, DispatchMode::kFComputeEx);
return true;
}
#endif
storage_type_assign(out_attrs, mxnet::kDefaultStorage,
dispatch_mode, DispatchMode::kFCompute);
return true;
}
#if MXNET_USE_MKLDNN == 1
void LRNComputeExCPU(const nnvm::NodeAttrs &attrs,
const OpContext &ctx,
const std::vector<NDArray> &inputs,
const std::vector<OpReqType> &req,
const std::vector<NDArray> &outputs) {
const LRNParam ¶m = nnvm::get<LRNParam>(attrs.parsed);
if (SupportMKLDNN(inputs[0])) {
// We only need to test one output array.
MKLDNN_OPCHECK_INIT(false, 1, inputs, outputs);
MKLDNNLRNForward(ctx, param, inputs[0], req[0], outputs[0]);
MKLDNN_OPCHECK_RUN(LRNCompute<cpu>, attrs, ctx, inputs, req, outputs);
return;
}
FallBackCompute(LRNCompute<cpu>, attrs, ctx, inputs, req, outputs);
}
void LRNGradComputeExCPU(const nnvm::NodeAttrs &attrs,
const OpContext &ctx,
const std::vector<NDArray> &inputs,
const std::vector<OpReqType> &req,
const std::vector<NDArray> &outputs) {
const LRNParam ¶m = nnvm::get<LRNParam>(attrs.parsed);
const NDArray &out_grad = inputs[0];
const NDArray &in_data = inputs[1];
const NDArray &in_grad = outputs[0];
if (SupportMKLDNN(inputs[0])) {
MKLDNN_OPCHECK_INIT(true, outputs.size(), inputs, outputs);
MKLDNNLRNBackward(ctx, param, out_grad, in_data, req[0], in_grad);
MKLDNN_OPCHECK_RUN(LRNGradCompute<cpu>, attrs, ctx, inputs, req, outputs);
return;
}
FallBackCompute(LRNGradCompute<cpu>, attrs, ctx, inputs, req, outputs);
}
#endif
DMLC_REGISTER_PARAMETER(LRNParam);
NNVM_REGISTER_OP(LRN)
.describe(R"code(Applies local response normalization to the input.
The local response normalization layer performs "lateral inhibition" by normalizing
over local input regions.
If :math:`a_{x,y}^{i}` is the activity of a neuron computed by applying kernel :math:`i` at position
:math:`(x, y)` and then applying the ReLU nonlinearity, the response-normalized
activity :math:`b_{x,y}^{i}` is given by the expression:
.. math::
b_{x,y}^{i} = \frac{a_{x,y}^{i}}{\Bigg({k + \alpha \sum_{j=max(0, i-\frac{n}{2})}^{min(N-1, i+\frac{n}{2})} (a_{x,y}^{j})^{2}}\Bigg)^{\beta}}
where the sum runs over :math:`n` "adjacent" kernel maps at the same spatial position, and :math:`N` is the total
number of kernels in the layer.
)code" ADD_FILELINE)
.set_num_inputs(1)
.set_num_outputs(2)
.set_attr<nnvm::FNumVisibleOutputs>("FNumVisibleOutputs",
[](const NodeAttrs& attrs) { return 1; })
.set_attr_parser(ParamParser<LRNParam>)
.set_attr<nnvm::FInferShape>("FInferShape", LRNShape)
.set_attr<nnvm::FInferType>("FInferType", LRNType)
.set_attr<FInferStorageType>("FInferStorageType", LRNForwardInferStorageType)
.set_attr<nnvm::FListInputNames>("FListInputNames",
[](const NodeAttrs& attrs) {
return std::vector<std::string>{"data"};
})
.set_attr<nnvm::FListInputNames>("FListOutputNames",
[](const NodeAttrs& attrs) {
return std::vector<std::string>{"output", "tmp_norm"};
})
.set_attr<FCompute>("FCompute<cpu>", LRNCompute<cpu>)
#if MXNET_USE_MKLDNN == 1
.set_attr<FComputeEx>("FComputeEx<cpu>", LRNComputeExCPU)
#endif
.set_attr<nnvm::FGradient>("FGradient", LRNGrad{"_backward_LRN"})
.add_argument("data", "NDArray-or-Symbol", "Input data to LRN")
.add_arguments(LRNParam::__FIELDS__());
NNVM_REGISTER_OP(_backward_LRN)
.set_num_outputs(1)
.set_attr_parser(ParamParser<LRNParam>)
.set_attr<FInferStorageType>("FInferStorageType", LRNBackwardInferStorageType)
.set_attr<nnvm::TIsBackward>("TIsBackward", true)
#if MXNET_USE_MKLDNN == 1
.set_attr<FComputeEx>("FComputeEx<cpu>", LRNGradComputeExCPU)
#endif
.set_attr<FCompute>("FCompute<cpu>", LRNGradCompute<cpu>);
} // namespace op
} // namespace mxnet
| [
"piiswrong@users.noreply.github.com"
] | piiswrong@users.noreply.github.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.