blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
264
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
5
140
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
905 values
visit_date
timestamp[us]date
2015-08-09 11:21:18
2023-09-06 10:45:07
revision_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-17 19:19:19
committer_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-06 06:22:19
github_id
int64
3.89k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]date
2012-06-07 00:51:45
2023-09-14 21:58:39
gha_created_at
timestamp[us]date
2008-03-27 23:40:48
2023-08-21 23:17:38
gha_language
stringclasses
141 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
10.4M
extension
stringclasses
115 values
content
stringlengths
3
10.4M
authors
listlengths
1
1
author_id
stringlengths
0
158
598d07d7d88dae7ed1eeca617198fd5597cb49a1
5466c25ca58b5a5c6fdd128f882c1405a8373d80
/modules/engine/include/bullet3/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h
758733be004921ea0912476717c5c0c76a43bf65
[ "MIT" ]
permissive
alexlitty/randar
73781d877daafb1a62b5e86251c31ee101831bcb
95daae57b1ec7d87194cdbcf6e3946b4ed9fc79b
refs/heads/master
2020-05-27T12:59:49.744931
2018-03-27T05:15:35
2018-03-27T05:16:01
73,526,607
1
0
null
null
null
null
UTF-8
C++
false
false
9,942
h
/* Bullet Continuous Collision Detection and Physics Library Copyright (c) 2003-2006 Erwin Coumans http://continuousphysics.com/Bullet/ This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. */ #ifndef BT_SEQUENTIAL_IMPULSE_CONSTRAINT_SOLVER_H #define BT_SEQUENTIAL_IMPULSE_CONSTRAINT_SOLVER_H class btIDebugDraw; class btPersistentManifold; class btDispatcher; class btCollisionObject; #include "BulletDynamics/ConstraintSolver/btTypedConstraint.h" #include "BulletDynamics/ConstraintSolver/btContactSolverInfo.h" #include "BulletDynamics/ConstraintSolver/btSolverBody.h" #include "BulletDynamics/ConstraintSolver/btSolverConstraint.h" #include "BulletCollision/NarrowPhaseCollision/btManifoldPoint.h" #include "BulletDynamics/ConstraintSolver/btConstraintSolver.h" typedef btSimdScalar(*btSingleConstraintRowSolver)(btSolverBody&, btSolverBody&, const btSolverConstraint&); ///The btSequentialImpulseConstraintSolver is a fast SIMD implementation of the Projected Gauss Seidel (iterative LCP) method. ATTRIBUTE_ALIGNED16(class) btSequentialImpulseConstraintSolver : public btConstraintSolver { protected: btAlignedObjectArray<btSolverBody> m_tmpSolverBodyPool; btConstraintArray m_tmpSolverContactConstraintPool; btConstraintArray m_tmpSolverNonContactConstraintPool; btConstraintArray m_tmpSolverContactFrictionConstraintPool; btConstraintArray m_tmpSolverContactRollingFrictionConstraintPool; btAlignedObjectArray<int> m_orderTmpConstraintPool; btAlignedObjectArray<int> m_orderNonContactConstraintPool; btAlignedObjectArray<int> m_orderFrictionConstraintPool; btAlignedObjectArray<btTypedConstraint::btConstraintInfo1> m_tmpConstraintSizesPool; int m_maxOverrideNumSolverIterations; int m_fixedBodyId; btSingleConstraintRowSolver m_resolveSingleConstraintRowGeneric; btSingleConstraintRowSolver m_resolveSingleConstraintRowLowerLimit; void setupFrictionConstraint( btSolverConstraint& solverConstraint, const btVector3& normalAxis,int solverBodyIdA,int solverBodyIdB, btManifoldPoint& cp,const btVector3& rel_pos1,const btVector3& rel_pos2, btCollisionObject* colObj0,btCollisionObject* colObj1, btScalar relaxation, btScalar desiredVelocity=0., btScalar cfmSlip=0.); void setupTorsionalFrictionConstraint( btSolverConstraint& solverConstraint, const btVector3& normalAxis,int solverBodyIdA,int solverBodyIdB, btManifoldPoint& cp,btScalar combinedTorsionalFriction, const btVector3& rel_pos1,const btVector3& rel_pos2, btCollisionObject* colObj0,btCollisionObject* colObj1, btScalar relaxation, btScalar desiredVelocity=0., btScalar cfmSlip=0.); btSolverConstraint& addFrictionConstraint(const btVector3& normalAxis,int solverBodyIdA,int solverBodyIdB,int frictionIndex,btManifoldPoint& cp,const btVector3& rel_pos1,const btVector3& rel_pos2,btCollisionObject* colObj0,btCollisionObject* colObj1, btScalar relaxation, btScalar desiredVelocity=0., btScalar cfmSlip=0.); btSolverConstraint& addTorsionalFrictionConstraint(const btVector3& normalAxis,int solverBodyIdA,int solverBodyIdB,int frictionIndex,btManifoldPoint& cp,btScalar torsionalFriction, const btVector3& rel_pos1,const btVector3& rel_pos2,btCollisionObject* colObj0,btCollisionObject* colObj1, btScalar relaxation, btScalar desiredVelocity=0, btScalar cfmSlip=0.f); void setupContactConstraint(btSolverConstraint& solverConstraint, int solverBodyIdA, int solverBodyIdB, btManifoldPoint& cp, const btContactSolverInfo& infoGlobal,btScalar& relaxation, const btVector3& rel_pos1, const btVector3& rel_pos2); static void applyAnisotropicFriction(btCollisionObject* colObj,btVector3& frictionDirection, int frictionMode); void setFrictionConstraintImpulse( btSolverConstraint& solverConstraint, int solverBodyIdA,int solverBodyIdB, btManifoldPoint& cp, const btContactSolverInfo& infoGlobal); ///m_btSeed2 is used for re-arranging the constraint rows. improves convergence/quality of friction unsigned long m_btSeed2; btScalar restitutionCurve(btScalar rel_vel, btScalar restitution); virtual void convertContacts(btPersistentManifold** manifoldPtr, int numManifolds, const btContactSolverInfo& infoGlobal); void convertContact(btPersistentManifold* manifold,const btContactSolverInfo& infoGlobal); void resolveSplitPenetrationSIMD( btSolverBody& bodyA,btSolverBody& bodyB, const btSolverConstraint& contactConstraint); void resolveSplitPenetrationImpulseCacheFriendly( btSolverBody& bodyA,btSolverBody& bodyB, const btSolverConstraint& contactConstraint); //internal method int getOrInitSolverBody(btCollisionObject& body,btScalar timeStep); void initSolverBody(btSolverBody* solverBody, btCollisionObject* collisionObject, btScalar timeStep); btSimdScalar resolveSingleConstraintRowGeneric(btSolverBody& bodyA,btSolverBody& bodyB,const btSolverConstraint& contactConstraint); btSimdScalar resolveSingleConstraintRowGenericSIMD(btSolverBody& bodyA,btSolverBody& bodyB,const btSolverConstraint& contactConstraint); btSimdScalar resolveSingleConstraintRowLowerLimit(btSolverBody& bodyA,btSolverBody& bodyB,const btSolverConstraint& contactConstraint); btSimdScalar resolveSingleConstraintRowLowerLimitSIMD(btSolverBody& bodyA,btSolverBody& bodyB,const btSolverConstraint& contactConstraint); protected: virtual void solveGroupCacheFriendlySplitImpulseIterations(btCollisionObject** bodies,int numBodies,btPersistentManifold** manifoldPtr, int numManifolds,btTypedConstraint** constraints,int numConstraints,const btContactSolverInfo& infoGlobal,btIDebugDraw* debugDrawer); virtual btScalar solveGroupCacheFriendlyFinish(btCollisionObject** bodies,int numBodies,const btContactSolverInfo& infoGlobal); virtual btScalar solveSingleIteration(int iteration, btCollisionObject** bodies ,int numBodies,btPersistentManifold** manifoldPtr, int numManifolds,btTypedConstraint** constraints,int numConstraints,const btContactSolverInfo& infoGlobal,btIDebugDraw* debugDrawer); virtual btScalar solveGroupCacheFriendlySetup(btCollisionObject** bodies,int numBodies,btPersistentManifold** manifoldPtr, int numManifolds,btTypedConstraint** constraints,int numConstraints,const btContactSolverInfo& infoGlobal,btIDebugDraw* debugDrawer); virtual btScalar solveGroupCacheFriendlyIterations(btCollisionObject** bodies,int numBodies,btPersistentManifold** manifoldPtr, int numManifolds,btTypedConstraint** constraints,int numConstraints,const btContactSolverInfo& infoGlobal,btIDebugDraw* debugDrawer); public: BT_DECLARE_ALIGNED_ALLOCATOR(); btSequentialImpulseConstraintSolver(); virtual ~btSequentialImpulseConstraintSolver(); virtual btScalar solveGroup(btCollisionObject** bodies,int numBodies,btPersistentManifold** manifold,int numManifolds,btTypedConstraint** constraints,int numConstraints,const btContactSolverInfo& info, btIDebugDraw* debugDrawer,btDispatcher* dispatcher); ///clear internal cached data and reset random seed virtual void reset(); unsigned long btRand2(); int btRandInt2 (int n); void setRandSeed(unsigned long seed) { m_btSeed2 = seed; } unsigned long getRandSeed() const { return m_btSeed2; } virtual btConstraintSolverType getSolverType() const { return BT_SEQUENTIAL_IMPULSE_SOLVER; } btSingleConstraintRowSolver getActiveConstraintRowSolverGeneric() { return m_resolveSingleConstraintRowGeneric; } void setConstraintRowSolverGeneric(btSingleConstraintRowSolver rowSolver) { m_resolveSingleConstraintRowGeneric = rowSolver; } btSingleConstraintRowSolver getActiveConstraintRowSolverLowerLimit() { return m_resolveSingleConstraintRowLowerLimit; } void setConstraintRowSolverLowerLimit(btSingleConstraintRowSolver rowSolver) { m_resolveSingleConstraintRowLowerLimit = rowSolver; } ///Various implementations of solving a single constraint row using a generic equality constraint, using scalar reference, SSE2 or SSE4 btSingleConstraintRowSolver getScalarConstraintRowSolverGeneric(); btSingleConstraintRowSolver getSSE2ConstraintRowSolverGeneric(); btSingleConstraintRowSolver getSSE4_1ConstraintRowSolverGeneric(); ///Various implementations of solving a single constraint row using an inequality (lower limit) constraint, using scalar reference, SSE2 or SSE4 btSingleConstraintRowSolver getScalarConstraintRowSolverLowerLimit(); btSingleConstraintRowSolver getSSE2ConstraintRowSolverLowerLimit(); btSingleConstraintRowSolver getSSE4_1ConstraintRowSolverLowerLimit(); }; #endif //BT_SEQUENTIAL_IMPULSE_CONSTRAINT_SOLVER_H
[ "github@alexlitty.com" ]
github@alexlitty.com
9b3249bb25758cacb95ff35a54c14f6891a2de22
1955334b1ebb919db4f7526d604ddbbd75d697f1
/src/MageCore/Util/BitHacks.cpp
61b9b0036e2efc2735e1142a445e6d89e789c5ea
[]
no_license
hydraskillz/NetworkShooter
4fd89c2a311d758f7eaa240c12a25df30629eeb5
ef3c1b76e957a2798695274d2e9458a9650a0bd7
refs/heads/master
2016-09-06T19:30:59.077515
2014-01-16T04:03:14
2014-01-16T04:03:14
15,957,046
0
1
null
null
null
null
UTF-8
C++
false
false
44
cpp
#include "CoreLib.h" using namespace mage;
[ "hydraskillz@gmail.com" ]
hydraskillz@gmail.com
47661af85f2895cc4980a889fa57d72511b5d786
e68c1f9134b44ddea144f7efa7523076f3f12d3a
/FinalCode/Stitch_Death.cpp
6d36d5a42ce322758592c83bbf0b0f49e189c4b5
[]
no_license
iso5930/Direct-3D-Team-Portfolio
4ac710ede0c9176702595cba5579af42887611cf
84e64eb4e91c7e5b4aed77212cd08cfee038fcd3
refs/heads/master
2021-08-23T08:15:00.128591
2017-12-04T06:14:39
2017-12-04T06:14:39
112,998,717
0
0
null
null
null
null
UTF-8
C++
false
false
1,005
cpp
#include "StdAfx.h" #include "Stitch_Death.h" CStitch_Death::CStitch_Death(void) { // StateType m_eStateType = STATE_TYPE_STITCH_DEATH; // Death m_bDeath = false; } CStitch_Death::~CStitch_Death(void) { } void CStitch_Death::Initialize() { CMonsterState::Initialize(); // SetAnimation m_pOwner->SetAnimation(7); CSoundMgr::GetInstance()->PlaySoundForMonster(_T("Stitch_Death.ogg")); } CMonsterState* CStitch_Death::Action() { if(!m_bDeath) { m_pOwner->Death(); m_bDeath = true; } if(m_pAnimController->m_dFrameTime - 0.25 <= m_pAnimController->GetTrackPos()) { CDestory_DustEffect* pDustEffect = new CDestory_DustEffect(NULL, OBJ_TYPE_DYNAMIC, m_pOwner); m_pOwner->GetLayer()->AddObject(pDustEffect, LAYER_TYPE_EFFECT); CTransformCom* pTransformCom = (CTransformCom*)pDustEffect->GetComponent(COM_TYPE_TRANSFORM); pTransformCom->m_vPos = m_pTransformCom->m_vPos; pTransformCom->m_vPos.y += 50.f; pDustEffect->Initialize(); m_pOwner->Destroy(); } return NULL; }
[ "iso5930@naver.com" ]
iso5930@naver.com
14bfdbf22836a03e9fa13376ab740f130a99d5fc
90047daeb462598a924d76ddf4288e832e86417c
/third_party/WebKit/Source/core/layout/LayoutButton.h
56f2d81a2262f401a025cea2a374207610256164
[ "LGPL-2.0-or-later", "LicenseRef-scancode-warranty-disclaimer", "LGPL-2.1-only", "GPL-1.0-or-later", "GPL-2.0-only", "LGPL-2.0-only", "BSD-2-Clause", "LicenseRef-scancode-other-copyleft", "BSD-3-Clause", "MIT", "Apache-2.0" ]
permissive
massbrowser/android
99b8c21fa4552a13c06bbedd0f9c88dd4a4ad080
a9c4371682c9443d6e1d66005d4db61a24a9617c
refs/heads/master
2022-11-04T21:15:50.656802
2017-06-08T12:31:39
2017-06-08T12:31:39
93,747,579
2
2
BSD-3-Clause
2022-10-31T10:34:25
2017-06-08T12:36:07
null
UTF-8
C++
false
false
2,639
h
/* * Copyright (C) 2005 Apple Computer * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public License * along with this library; see the file COPYING.LIB. If not, write to * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. * */ #ifndef LayoutButton_h #define LayoutButton_h #include "core/editing/EditingUtilities.h" #include "core/html/HTMLInputElement.h" #include "core/layout/LayoutFlexibleBox.h" namespace blink { // LayoutButtons are just like normal flexboxes except that they will generate // an anonymous block child. // For inputs, they will also generate an anonymous LayoutText and keep its // style and content up to date as the button changes. class LayoutButton final : public LayoutFlexibleBox { public: explicit LayoutButton(Element*); ~LayoutButton() override; const char* GetName() const override { return "LayoutButton"; } bool IsOfType(LayoutObjectType type) const override { return type == kLayoutObjectLayoutButton || LayoutFlexibleBox::IsOfType(type); } bool CanBeSelectionLeaf() const override { return GetNode() && HasEditableStyle(*GetNode()); } void AddChild(LayoutObject* new_child, LayoutObject* before_child = nullptr) override; void RemoveChild(LayoutObject*) override; void RemoveLeftoverAnonymousBlock(LayoutBlock*) override {} bool CreatesAnonymousWrapper() const override { return true; } bool HasControlClip() const override; LayoutRect ControlClipRect(const LayoutPoint&) const override; int BaselinePosition(FontBaseline, bool first_line, LineDirectionMode, LinePositionMode) const override; private: void UpdateAnonymousChildStyle(const LayoutObject& child, ComputedStyle& child_style) const override; bool HasLineIfEmpty() const override { return isHTMLInputElement(GetNode()); } LayoutBlock* inner_; }; DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutButton, IsLayoutButton()); } // namespace blink #endif // LayoutButton_h
[ "xElvis89x@gmail.com" ]
xElvis89x@gmail.com
bd49f05d46771666fb2bcd9d420690da05372d25
ac5d7af6801f4f97f138c1f354f7cb1b5fc336e1
/traffic-simulator-extended/LivingCity/Geometry/parcelBuildingAttributes.h
2af282b68607bb4c8a922181c3f2394914359620
[ "BSD-3-Clause" ]
permissive
ual/DOE-repo-deliverable
398cf3f1b145d205242a5970cd04963379805c28
4bafdd9a702a9a6466dd32ae62f440644d735d3c
refs/heads/master
2020-03-07T03:06:20.981677
2018-09-29T00:15:17
2018-09-29T00:15:17
127,226,304
0
0
null
null
null
null
UTF-8
C++
false
false
3,898
h
//--------------------------------------------------------------------------------------------------------------------- // Copyright 2017, 2018 Purdue University, Ignacio Garcia Dorado, Daniel Aliaga // // Redistribution and use in source and binary forms, with or without modification, are permitted provided that the // following conditions are met: // // 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the // following disclaimer. // // 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the // following disclaimer in the documentation and/or other materials provided with the distribution. // // 3. Neither the name of the copyright holder 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. //--------------------------------------------------------------------------------------------------------------------- #pragma once //#include "misctools.h" //#include "global.h" #include <QColor> namespace LC{ //namespace geometry{ class ParcelBuildingAttributes { public: ParcelBuildingAttributes(void); ~ParcelBuildingAttributes(void); float att_stories; // number of stories float att_footprint_area; // m^2 of building footprint float att_frontage_width; // width of building front in m float att_setback; // distance of building from road in m float att_facades_area; // total area of the facade of the building float att_orientation; int att_building_type; bool att_is_park; bool att_is_landmark; bool att_is_square; QColor att_facade_color; // building main color QColor att_roof_color; // building roof color //LC::misctools::t_land_use myLandUse; /** * Copy constructor. **/ ParcelBuildingAttributes(const ParcelBuildingAttributes &ref) { att_stories = ref.att_stories; att_footprint_area = ref.att_footprint_area; att_frontage_width = ref.att_frontage_width; att_setback = ref.att_setback; att_facades_area = ref.att_facades_area; att_orientation = ref.att_orientation; att_building_type = ref.att_building_type; att_is_park = ref.att_is_park; att_is_landmark = ref.att_is_landmark; att_is_square = ref.att_is_square; att_facade_color = ref.att_facade_color; att_roof_color = ref.att_roof_color; //myLandUse = ref.myLandUse; } /** * Assignment operator. **/ inline ParcelBuildingAttributes &operator=(const ParcelBuildingAttributes &ref) { att_stories = ref.att_stories; att_footprint_area = ref.att_footprint_area; att_frontage_width = ref.att_frontage_width; att_setback = ref.att_setback; att_facades_area = ref.att_facades_area; att_orientation = ref.att_orientation; att_building_type = ref.att_building_type; att_is_park = ref.att_is_park; att_is_landmark = ref.att_is_landmark; att_is_square = ref.att_is_square; att_facade_color = ref.att_facade_color; att_roof_color = ref.att_roof_color; //myLandUse = ref.myLandUse; return (*this); } }; //} }
[ "gboeing@berkeley.edu" ]
gboeing@berkeley.edu
ec9dce584949da420eccb43f44ae2bddba3ad3f9
fe7b28c973ae08925427159ac611ac302c297435
/Dev/Cpp/src/Utils/EffekseerGodot.Utils.h
c4823ad7c55af17c14d7a821c9ecaff9be50ae8c
[ "MIT" ]
permissive
GodotCollection/EffekseerForGodot3
5aba08a73447c30d7b1b098c861090d11c224b59
24be11d4f54d11630926c3181088d346c13fb188
refs/heads/main
2023-03-12T15:04:52.217025
2021-03-03T01:21:09
2021-03-03T01:21:09
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,808
h
#pragma once #include <stdint.h> #include <Effekseer.h> #include <String.hpp> #include <RID.hpp> #include <Vector2.hpp> #include <Vector3.hpp> #include <Transform.hpp> #include <Color.hpp> #include <Script.hpp> namespace EffekseerGodot { inline int64_t RIDToInt64(godot::RID rid) { int64_t val; memcpy(&val, &rid, sizeof(rid)); return val; } inline godot::RID Int64ToRID(int64_t val) { godot::RID rid; memcpy(&rid, &val, sizeof(rid)); return rid; } inline Effekseer::Vector2D ToEfkVector2(godot::Vector2 v) { return { v.x, v.y }; } inline godot::Vector2 ToGdVector2(Effekseer::Vector2D v) { return { v.X, v.Y }; } inline Effekseer::Vector3D ToEfkVector3(godot::Vector3 v) { return { v.x, v.y, v.z }; } inline godot::Vector3 ToGdVector3(Effekseer::Vector3D v) { return { v.X, v.Y, v.Z }; } inline Effekseer::Matrix44 ToEfkMatrix44(const godot::Transform& transform) { Effekseer::Matrix44 matrix; matrix.Values[0][0] = transform.basis[0][0]; matrix.Values[0][1] = transform.basis[0][1]; matrix.Values[0][2] = transform.basis[0][2]; matrix.Values[0][3] = 0.0f; matrix.Values[1][0] = transform.basis[1][0]; matrix.Values[1][1] = transform.basis[1][1]; matrix.Values[1][2] = transform.basis[1][2]; matrix.Values[1][3] = 0.0f; matrix.Values[2][0] = transform.basis[2][0]; matrix.Values[2][1] = transform.basis[2][1]; matrix.Values[2][2] = transform.basis[2][2]; matrix.Values[2][3] = 0.0f; matrix.Values[3][0] = transform.origin.x; matrix.Values[3][1] = transform.origin.y; matrix.Values[3][2] = transform.origin.z; matrix.Values[3][3] = 1.0f; return matrix; } inline Effekseer::Matrix44 ToEfkMatrix44(const godot::Transform2D& transform) { Effekseer::Matrix44 matrix; matrix.Values[0][0] = transform.elements[0].x; matrix.Values[0][1] = transform.elements[0].y; matrix.Values[0][2] = 0.0f; matrix.Values[0][3] = 0.0f; matrix.Values[1][0] = transform.elements[1].x; matrix.Values[1][1] = transform.elements[1].y; matrix.Values[1][2] = 0.0f; matrix.Values[1][3] = 0.0f; matrix.Values[2][0] = 0.0f; matrix.Values[2][1] = 0.0f; matrix.Values[2][2] = 1.0f; matrix.Values[2][3] = 0.0f; matrix.Values[3][0] = transform.elements[2].x; matrix.Values[3][1] = transform.elements[2].y; matrix.Values[3][2] = 0.0f; matrix.Values[3][3] = 1.0f; return matrix; } inline Effekseer::Matrix43 ToEfkMatrix43(const godot::Transform& transform) { Effekseer::Matrix43 matrix; matrix.Value[0][0] = transform.basis[0][0]; matrix.Value[0][1] = transform.basis[0][1]; matrix.Value[0][2] = transform.basis[0][2]; matrix.Value[1][0] = transform.basis[1][0]; matrix.Value[1][1] = transform.basis[1][1]; matrix.Value[1][2] = transform.basis[1][2]; matrix.Value[2][0] = transform.basis[2][0]; matrix.Value[2][1] = transform.basis[2][1]; matrix.Value[2][2] = transform.basis[2][2]; matrix.Value[3][0] = transform.origin.x; matrix.Value[3][1] = transform.origin.y; matrix.Value[3][2] = transform.origin.z; return matrix; } inline Effekseer::Matrix43 ToEfkMatrix43(const godot::Transform2D& transform) { Effekseer::Matrix43 matrix; matrix.Value[0][0] = transform.elements[0].x; matrix.Value[0][1] = transform.elements[0].y; matrix.Value[0][2] = 0.0f; matrix.Value[1][0] = transform.elements[1].x; matrix.Value[1][1] = transform.elements[1].y; matrix.Value[1][2] = 0.0f; matrix.Value[2][0] = 0.0f; matrix.Value[2][1] = 0.0f; matrix.Value[2][2] = 1.0f; matrix.Value[3][0] = transform.elements[2].x; matrix.Value[3][1] = transform.elements[2].y; matrix.Value[3][2] = 0.0f; return matrix; } inline godot::Transform ToGdMatrix(Effekseer::Matrix44 matrix) { godot::Transform transform; transform.basis[0][0] = matrix.Values[0][0]; transform.basis[1][0] = matrix.Values[1][0]; transform.basis[2][0] = matrix.Values[2][0]; transform.basis[0][1] = matrix.Values[0][1]; transform.basis[1][1] = matrix.Values[1][1]; transform.basis[2][1] = matrix.Values[2][1]; transform.basis[0][2] = matrix.Values[0][2]; transform.basis[1][2] = matrix.Values[1][2]; transform.basis[2][2] = matrix.Values[2][2]; transform.origin.x = matrix.Values[3][0]; transform.origin.y = matrix.Values[3][1]; transform.origin.z = matrix.Values[3][2]; return transform; } inline Effekseer::Color ToEfkColor(godot::Color c) { return { (uint8_t)Effekseer::Clamp((int)(c.r * 255.0f), 255, 0), (uint8_t)Effekseer::Clamp((int)(c.g * 255.0f), 255, 0), (uint8_t)Effekseer::Clamp((int)(c.b * 255.0f), 255, 0), (uint8_t)Effekseer::Clamp((int)(c.a * 255.0f), 255, 0), }; } inline godot::Color ToGdColor(Effekseer::Color c) { return { c.R / 255.0f, c.G / 255.0f, c.B / 255.0f, c.A / 255.0f }; } size_t ToEfkString(char16_t* to, const godot::String& from, size_t size); godot::String ToGdString(const char16_t* from); godot::Variant ScriptNew(godot::Ref<godot::Script> script); }
[ "nalto32@gmail.com" ]
nalto32@gmail.com
49fa618584c45f3d69577a02f7cbf71a96dda15b
f4db0d27a535be2270249b2b9433f23f1085e4fd
/Navi/glUtil/CTextureLoader.cpp
74aa75ac1ca70babb156e8be71eb31de517198db
[]
no_license
jpinilloslr/navi
e2e2ac9f3a4e806f562085f602a2348d63308f90
8e28df64b670d395b82001f2ef577b4a26094de3
refs/heads/master
2021-04-27T00:08:09.902108
2011-12-27T03:38:27
2011-12-27T03:38:27
120,402,501
0
0
null
null
null
null
UTF-8
C++
false
false
8,593
cpp
#include "CTextureLoader.h" // GL_EXT_texture_filter_anisotropic #define GL_TEXTURE_MAX_ANISOTROPY_EXT 0x84FE #define GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT 0x84FF CTextureLoader::CTextureLoader() { } CTextureLoader::~CTextureLoader() { } void *CTextureLoader::ReadTGA(char *filename, int *tam) { GLubyte TGAheader[12] = {0,0,2,0,0,0,0,0,0,0,0,0}; GLubyte TGAcompare[12]; GLubyte header[6]; GLuint bytesPerPixel; GLuint imageSize; GLuint temp,i; glImage texture; GLubyte *aux; FILE *file; fopen_s(&file, filename, "rb"); if (!file) { return NULL; } fread(TGAcompare, 1, sizeof(TGAcompare), file); if (memcmp(TGAheader, TGAcompare,sizeof(TGAheader)) !=0 ) { return NULL; } fread(header, 1, sizeof(header), file); texture.width = header[1] * 256 + header[0]; texture.height = header[3] * 256 + header[2]; texture.bpp = header[4]; bytesPerPixel = texture.bpp/8; imageSize = texture.width*texture.height*bytesPerPixel; texture.imageData=(GLubyte *)malloc(imageSize); if( texture.imageData==NULL || fread(texture.imageData, 1, imageSize, file) != imageSize) { if(texture.imageData!=NULL) { free(texture.imageData); } fclose(file); return NULL; } for(i=0; i<(GLuint)(imageSize); i+=bytesPerPixel) { temp = texture.imageData[i]; texture.imageData[i] = texture.imageData[i + 2]; texture.imageData[i + 2] = temp; } fclose (file); aux=(GLubyte *)malloc(imageSize); for(i=0; i<texture.height; i++) { memcpy(&aux[imageSize-((i+1)*texture.width*4)],&texture.imageData[i*texture.width*4],texture.width*4); } *tam=texture.width; free(texture.imageData); return aux; } bool CTextureLoader::LoadTGA(char *filename, GLuint &Texture) { int nSize; void *texture_data = (char *)ReadTGA(filename, &nSize); if (!texture_data) { return FALSE; } glPixelStorei(GL_UNPACK_ALIGNMENT, 4); glGenTextures(1, &Texture); glBindTexture(GL_TEXTURE_2D, Texture); glTexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR_MIPMAP_NEAREST); gluBuild2DMipmaps(GL_TEXTURE_2D, 4, nSize, nSize, GL_RGBA, GL_UNSIGNED_BYTE, texture_data); free(texture_data); return TRUE; } bool CTextureLoader::LoadTexture(char *filename, GLuint &Texture) { char szExt[MAX_PATH]; char *p; maxAnisotrophy = 0; strcpy_s(szExt, sizeof(szExt), filename); p = szExt + strlen(filename) - 4; for(int i=1; i<4; i++) { p[i] = ::tolower(p[i]); } if(!strcmp(p, ".tga")) { return LoadTGA(filename, Texture); } return BuildTexture(filename, Texture); } bool CTextureLoader::BuildTexture(char *szPathName, GLuint &texid) // Load Image And Convert To A Texture { HDC hdcTemp; // The DC To Hold Our Bitmap HBITMAP hbmpTemp; // Holds The Bitmap Temporarily IPicture *pPicture; // IPicture Interface OLECHAR wszPath[MAX_PATH+1]; // Full Path To Picture (WCHAR) char szPath[MAX_PATH+1]; // Full Path To Picture long lWidth; // Width In Logical Units long lHeight; // Height In Logical Units long lWidthPixels; // Width In Pixels long lHeightPixels; // Height In Pixels GLint glMaxTexDim ; // Holds Maximum Texture Size strcpy_s(szPath, sizeof(szPath), szPathName); GetCurrentDirectoryA(MAX_PATH, szPath); if (strstr(szPathName, "http://") || strstr(szPathName, ":\\")) { strcpy_s(szPath, sizeof(szPath), szPathName); } else // Otherwise... We Are Loading From A File { strcat_s(szPath, sizeof(szPath), "\\"); // Append "\" After The Working Directory strcat_s(szPath, sizeof(szPath), szPathName); // Append The PathName } MultiByteToWideChar(CP_ACP, 0, szPath, -1, wszPath, MAX_PATH); // Convert From ASCII To Unicode HRESULT hr = OleLoadPicturePath(wszPath, 0, 0, 0, IID_IPicture, (void**)&pPicture); if(FAILED(hr)) // If Loading Failed return FALSE; // Return False hdcTemp = CreateCompatibleDC(GetDC(0)); // Create The Windows Compatible Device Context if(!hdcTemp) // Did Creation Fail? { pPicture->Release(); // Decrements IPicture Reference Count return FALSE; // Return False (Failure) } glMaxTexDim = 0; glGetIntegerv(GL_MAX_TEXTURE_SIZE, &glMaxTexDim); // Get Maximum Texture Size Supported pPicture->get_Width(&lWidth); // Get IPicture Width (Convert To Pixels) lWidthPixels = MulDiv(lWidth, GetDeviceCaps(hdcTemp, LOGPIXELSX), 2540); pPicture->get_Height(&lHeight); // Get IPicture Height (Convert To Pixels) lHeightPixels = MulDiv(lHeight, GetDeviceCaps(hdcTemp, LOGPIXELSY), 2540); if(glMaxTexDim > 0) { // Resize Image To Closest Power Of Two if (lWidthPixels <= glMaxTexDim) // Is Image Width Less Than Or Equal To Cards Limit lWidthPixels = 1 << (int)floor((log((double)lWidthPixels)/log(2.0f)) + 0.5f); else // Otherwise Set Width To "Max Power Of Two" That The Card Can Handle lWidthPixels = glMaxTexDim; if (lHeightPixels <= glMaxTexDim) // Is Image Height Greater Than Cards Limit lHeightPixels = 1 << (int)floor((log((double)lHeightPixels)/log(2.0f)) + 0.5f); else // Otherwise Set Height To "Max Power Of Two" That The Card Can Handle lHeightPixels = glMaxTexDim; } // Create A Temporary Bitmap BITMAPINFO bi = {0}; // The Type Of Bitmap We Request DWORD *pBits = 0; // Pointer To The Bitmap Bits bi.bmiHeader.biSize = sizeof(BITMAPINFOHEADER); // Set Structure Size bi.bmiHeader.biBitCount = 32; // 32 Bit bi.bmiHeader.biWidth = lWidthPixels; // Power Of Two Width bi.bmiHeader.biHeight = lHeightPixels; // Make Image Top Up (Positive Y-Axis) bi.bmiHeader.biCompression = BI_RGB; // RGB Encoding bi.bmiHeader.biPlanes = 1; // 1 Bitplane // Creating A Bitmap This Way Allows Us To Specify Color Depth And Gives Us Imediate Access To The Bits hbmpTemp = CreateDIBSection(hdcTemp, &bi, DIB_RGB_COLORS, (void**)&pBits, 0, 0); if(!hbmpTemp) // Did Creation Fail? { DeleteDC(hdcTemp); // Delete The Device Context pPicture->Release(); // Decrements IPicture Reference Count return FALSE; // Return False (Failure) } SelectObject(hdcTemp, hbmpTemp); // Select Handle To Our Temp DC And Our Temp Bitmap Object // Render The IPicture On To The Bitmap pPicture->Render(hdcTemp, 0, 0, lWidthPixels, lHeightPixels, 0, lHeight, lWidth, -lHeight, 0); // Convert From BGR To RGB Format And Add An Alpha Value Of 255 for(long i = 0; i < lWidthPixels * lHeightPixels; i++) // Loop Through All Of The Pixels { BYTE* pPixel = (BYTE*)(&pBits[i]); // Grab The Current Pixel BYTE temp = pPixel[0]; // Store 1st Color In Temp Variable (Blue) pPixel[0] = pPixel[2]; // Move Red Value To Correct Position (1st) pPixel[2] = temp; // Move Temp Value To Correct Blue Position (3rd) // This Will Make Any Black Pixels, Completely Transparent (You Can Hardcode The Value If You Wish) /*if ((pPixel[0]==0) && (pPixel[1]==0) && (pPixel[2]==0)) // Is Pixel Completely Black pPixel[3] = 0; // Set The Alpha Value To 0 else */ // Otherwise pPixel[3] = 255; // Set The Alpha Value To 255 } glGenTextures(1, &texid); // Create The Texture // Typical Texture Generation Using Data From The Bitmap glBindTexture(GL_TEXTURE_2D, texid); // Bind To The Texture ID glTexParameteri(GL_TEXTURE_2D,GL_TEXTURE_MIN_FILTER, GL_LINEAR_MIPMAP_LINEAR); // (Modify This For The Type Of Filtering You Want) glTexParameteri(GL_TEXTURE_2D,GL_TEXTURE_MAG_FILTER, GL_LINEAR); // (Modify This For The Type Of Filtering You Want) if (maxAnisotrophy > 1) glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAX_ANISOTROPY_EXT, maxAnisotrophy); gluBuild2DMipmaps(GL_TEXTURE_2D, 3, lWidthPixels, lHeightPixels, GL_RGBA, GL_UNSIGNED_BYTE, pBits); //glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA8, lWidthPixels, lHeightPixels, 0, GL_RGBA, GL_UNSIGNED_BYTE, pBits); DeleteObject(hbmpTemp); // Delete The Object DeleteDC(hdcTemp); // Delete The Device Context pPicture->Release(); // Decrements IPicture Reference Count return TRUE; // Return True (All Good) }
[ "jpinilloslr@gmail.com" ]
jpinilloslr@gmail.com
a3f1e93ad168234325d8a2f7c74d9be0871111f6
6e5f0fbfb1e5c3f61601d6fd4eb67e2f6e18c314
/zlibrary/ui/src/symbian/view/ImageProvider.h
107e49bf6def85ef7430849275f5e1223e99c654
[]
no_license
ljo/FBReader
46aae22f6437a7d27d1e85cd30361ad138b3797b
fcad069d18258d628077639ebe423cd1b473d111
refs/heads/develop
2020-12-25T20:32:31.806694
2017-02-15T08:20:16
2017-02-15T08:20:16
16,029,772
10
6
null
2020-07-21T20:54:26
2014-01-18T17:02:27
C++
UTF-8
C++
false
false
1,834
h
#ifndef __IMAGEPROVIDER_H__ #define __IMAGEPROVIDER_H__ #include <QtCore/QObject> #include <QtCore/QRunnable> #include <QtNetwork/QNetworkAccessManager> #include <QtNetwork/QNetworkReply> #include <QtNetwork/QNetworkRequest> #include <QtCore/QUrl> #include <QtCore/QSet> #include <QtGui/QPixmap> #include <ZLTreeTitledNode.h> #include <ZLImageManager.h> Q_DECLARE_METATYPE(const ZLTreeTitledNode*) Q_DECLARE_METATYPE(shared_ptr<ZLImage>) class ImageRunnable : public QRunnable { public: ImageRunnable(const ZLTreeTitledNode *node, QObject *requester); void run(); private: QWeakPointer<QObject> myRequester; const ZLTreeTitledNode *myNode; }; class ImageProvider : public QObject { Q_OBJECT public: enum Mode { THUMBNAIL, FULL }; public: static QUrl generateUrl(const ZLTreeTitledNode* node); public: ImageProvider(Mode mode, QObject* parent = 0); public: QPixmap getImageForNode(const ZLTreeTitledNode *titledNode); signals: void cacheUpdated() const; private slots: void onRequestFinished(QNetworkReply*); void handleImageResult(const ZLTreeTitledNode *node, shared_ptr<ZLImage> image); private: QPixmap getZLImage(shared_ptr<ZLImage> image) const; QPixmap getFSImage(QUrl imageUrl) const; void getNetworkImage(QUrl url) const; private: QSize getImageSize() const; void updateCache(QString cacheUrl, QPixmap pixmap); private: Mode myMode; QMap<QString,QPixmap> myCache; QSet<const ZLTreeTitledNode*> myProcessedNodes; QPixmap myEmptyPixmap; //TODO implement download manager in other class, or using ZLQtNetworkManager mutable QNetworkAccessManager myManager; //TODO cache should not be deleted after closing net library dialog (??) }; #endif /* __IMAGEPROVIDER_H__ */
[ "snowwlex@gmail.com" ]
snowwlex@gmail.com
3da310271c78d53a358abccdfa0036b094c1b432
01af78fbb7dcd83ab542723aac6fb44412415503
/samsung_sw_mock_test/making_rome_number/making_rome_number.cpp
ed1945bec7f1555071e07c9a102225bd1aaed401
[]
no_license
mcdaniel13/backjoon
6db09877a7fa4d125c7562ab680dce9995d77e21
312c1954b89560724ab18a67fd0b3aa84660bcd5
refs/heads/master
2020-05-02T07:14:54.010934
2019-04-23T18:51:31
2019-04-23T18:51:31
177,812,990
0
0
null
null
null
null
UTF-8
C++
false
false
764
cpp
/* * https://www.acmicpc.net/problem/16922 */ #include <iostream> using namespace std; int n; int arr[4]; int num[4] = {1, 5, 10 ,50}; bool visit[1001]; void init() { for(int i = 0; i < 4; i++) { arr[i] = 0; } for(int i = 0; i < 1001; i++) { visit[i] = false; } } void calculate() { int total = 0; for(int i = 0; i < 4; i ++) { total += arr[i] * num[i]; } visit[total] = true; } void solve(int cur, int num) { if(cur == 3) { arr[3] = num; calculate(); return; } for(int i = 0; i <= num; i++) { arr[cur] = i; solve(cur + 1, num - i); } } int counting() { int cnt = 0; for(int i = 0; i < 1001; i++) { if(visit[i]) cnt++; } return cnt; } int main() { cin >> n; init(); solve(0, n); cout << counting() << endl; }
[ "whansrl92@gmail.com" ]
whansrl92@gmail.com
b18f301ea190ed1e0e46a6a60a67f2b3d1d8274b
f0b98ec52aaadb19b9f59886b39324d9a8472e34
/2019-10-18-arreglos/array1.cpp
a9bdad7b33e18bc4498b6686fb439a1b531d665e
[]
no_license
mmesap/Prog
0aba2c19140f6f21b96fef19190a47f60bfe0ebc
cd5f18b17060a17ac5c2bf9e04fb6fbcc5876e1f
refs/heads/master
2021-06-21T16:46:25.913078
2021-03-01T03:44:01
2021-03-01T03:44:01
206,789,854
0
0
null
null
null
null
UTF-8
C++
false
false
119
cpp
#include <iostream> int main() { int billy [5] = {1}; std::cout << billy[1] << "\n"; billy [2]=7; return 0; }
[ "mmesap@darkstar.org" ]
mmesap@darkstar.org
aca2d77fb65c885cb577564d9899718e705f4617
c6ee45e86bc7bbddb1e0b77a0c72b08204848146
/wpilibsuite/allwpilib/wpilibc/shared/include/Commands/StartCommand.h
2daa147526c7e8d9888a9cd53927da4269ebdfe2
[ "BSD-3-Clause" ]
permissive
frc1678/third-party
725e942cd68239f16ebc006e696d6ff4679d0fac
27e0b79194bdcb0b15e52f2eef231a94654b50a3
refs/heads/master
2021-01-20T20:15:24.120483
2016-08-16T00:35:25
2016-08-16T00:35:25
61,973,483
0
0
null
null
null
null
UTF-8
C++
false
false
848
h
/*----------------------------------------------------------------------------*/ /* Copyright (c) FIRST 2011-2016. All Rights Reserved. */ /* Open Source Software - may be modified and shared by FRC teams. The code */ /* must be accompanied by the FIRST BSD license file in the root directory of */ /* the project. */ /*----------------------------------------------------------------------------*/ #pragma once #include "Commands/Command.h" class StartCommand : public Command { public: StartCommand(Command* commandToStart); virtual ~StartCommand() = default; protected: virtual void Initialize(); virtual void Execute(); virtual bool IsFinished(); virtual void End(); virtual void Interrupted(); private: Command* m_commandToFork; };
[ "kylestach99@gmail.com" ]
kylestach99@gmail.com
3c91ead4c404e251f1ec1dd9266d4d5be80efb89
44ab57520bb1a9b48045cb1ee9baee8816b44a5b
/EngineTesting/Code/System/SystemTesting/SecuritySuite/SecuritySid/CopySecurityIdentifierTesting.h
16d9a6caaa83fde03e957c2b1f42da5bfee74517
[ "BSD-3-Clause" ]
permissive
WuyangPeng/Engine
d5d81fd4ec18795679ce99552ab9809f3b205409
738fde5660449e87ccd4f4878f7bf2a443ae9f1f
refs/heads/master
2023-08-17T17:01:41.765963
2023-08-16T07:27:05
2023-08-16T07:27:05
246,266,843
10
0
null
null
null
null
GB18030
C++
false
false
1,042
h
/// Copyright (c) 2010-2023 /// Threading Core Render Engine /// /// 作者:彭武阳,彭晔恩,彭晔泽 /// 联系作者:94458936@qq.com /// /// 标准:std:c++20 /// 引擎测试版本:0.9.0.1 (2023/01/29 20:48) #ifndef SYSTEM_SECURITY_SUITE_COPY_SECURITY_IDENTIFIER_TESTING_H #define SYSTEM_SECURITY_SUITE_COPY_SECURITY_IDENTIFIER_TESTING_H #include "SecuritySidTestingBase.h" namespace System { class CopySecurityIdentifierTesting final : public SecuritySidTestingBase { public: using ClassType = CopySecurityIdentifierTesting; using ParentType = SecuritySidTestingBase; public: explicit CopySecurityIdentifierTesting(const OStreamShared& stream); CLASS_INVARIANT_FINAL_DECLARE; private: void DoRunUnitTest() final; void MainTest(); void CopySecurityIdentifierTest(); void DoCopySecurityIdentifierTest(SecuritySIDIndentifierAuthority& identifierAuthority); }; } #endif // SYSTEM_SECURITY_SUITE_COPY_SECURITY_IDENTIFIER_TESTING_H
[ "94458936@qq.com" ]
94458936@qq.com
7db93740dca62cafb1b75f33308446711e3e1ced
d41db05c6e70df03d48e5210755d0dea99cb72bf
/dependencies/probt_spl_2_3_99/include/plCndUnknown.h
b92dd0ba4c5c06f1251f83dec1402e0cd28b8035
[]
no_license
samogwas/samogwas
f035a17981fa4fead254dd456f249249c44f49a4
7d98883814e2f2d12dee754cca4ae023e07fa097
refs/heads/master
2016-09-08T01:42:07.577903
2015-07-21T10:06:56
2015-07-21T10:06:56
34,456,818
1
1
null
null
null
null
UTF-8
C++
false
false
2,598
h
/*============================================================================= * Product : ProBT * File : plCndUnknown.h * Author : Emmanuel Mazer * Creation : July 6 :08:40 2001 * *============================================================================= * (c) Copyright 2000, Centre National de la Recherche Scientifique, * all rights reserved *============================================================================= * *------------------------- Description --------------------------------------- * * *----------------------------------------------------------------------------- */ #ifndef plCndUnknown_h #define plCndUnknown_h #include "plConfig.h" #include <plCndDistribution.h> #include <plDistribution.h> /***************************************************************************** * Classes Definitions *****************************************************************************/ /** This class allows defining an unknown distribution on a set of variables \em left knowing an other set of variables \em right. */ class PL_DLL_API plCndUnknown : public plCndDistribution { public: /** Empty constructor */ plCndUnknown(); /** Construct an unknown conditional distribution. Unknown conditional distribution are used for to provide the user with a formal way of writing correct decomposition, but are not intended to produce any numerical results (i.e the inferred expressions do not contain the P(v) term). All methods applied to this distribution will result into an error. Excepted for the method instantiate which will return an Unknown distribution. Unknown distribution are used to build descriptions (joint distributions). Inference (using "ask" method) using this joint distribution should always contain all the set of "left" variables into their known variables. \param left is the set of variables on which the distribution applies. \param right is the set of variables which conditionalize the distribution. */ plCndUnknown(const plVariablesConjunction& left, const plVariablesConjunction& right); /** Destructor */ virtual ~plCndUnknown(){}; /** Promote from a plCndDistribution. If the object being copied is actually of the wrong type, an exception is raised. */ explicit plCndUnknown(const plCndDistribution&); }; #endif // Local Variables: // mode: c++ // indent-tabs-mode: nil // c-basic-offset: 2 // fill-column: 79 // End:
[ "thanh.phan@outlook.com" ]
thanh.phan@outlook.com
be95c1b36cf0a468b10c633919bd4b72efc31f03
ff1f8e352bcbf059e2c1c0aaafff120c56f3cf49
/SXOJ/SXOJ17.cpp
b609aecb3ce96f1e04bc900463b3e598bda3fc78
[]
no_license
keywet06/code
040bc189fbabd06fc3026525ae3553cd4f395bf3
fe0d570144e580f37281b13fd4106438d3169ab9
refs/heads/master
2022-12-19T12:12:16.635994
2022-11-27T11:39:29
2022-11-27T11:39:29
182,518,309
6
1
null
null
null
null
UTF-8
C++
false
false
1,548
cpp
#include <bits/stdc++.h> using uint64 = unsigned long long; const int E = 37; const int N = 1000005; int T, n, l, r, mid; uint64 hs[N], pre[N]; std::string s; std::unordered_set<uint64> set; inline uint64 hash(int l, int r) { return hs[r] - hs[l - 1] * pre[r - l + 1]; } int main() { std::ios::sync_with_stdio(0); std::cin.tie(0), std::cout.tie(0); std::cin >> T; while (T--) { std::cin >> s, n = s.length(), s = ' ' + s, pre[0] = 1; for (int i = 1; i <= n; ++i) { hs[i] = hs[i - 1] * E + s[i]; pre[i] = pre[i - 1] * E; } set.clear(), set.insert(0); for (int i = 1; i <= n >> 1; ++i) { l = 0, r = i; while (l < r) { mid = l + r + 1 >> 1; if (hash(1, mid) == hash(i + 1, i + mid)) { l = mid; } else { r = mid - 1; } } if (hash(l + 1, i) == hash(n - i + l + 1, n)) { set.insert(hash(1, i)); } l = 0, r = i; while (l < r) { mid = l + r + 1 >> 1; if (hash(1, mid) == hash(n - i + 1, n - i + mid)) { l = mid; } else { r = mid - 1; } } if (hash(n - i + l + 1, n) == hash(n - i - i + l + 1, n - i)) { set.insert(hash(n - i + 1, n)); } } std::cout << set.size() << '\n'; } return 0; }
[ "keywet06@tom.com" ]
keywet06@tom.com
f2a20a4174f6afcf001a84b8e3d8c564617a7964
36c525cd82caeafffa32f2042058e94774d60a3e
/main.cpp
2a6f22094885759672bb7fd0bb7813634d8ce1b6
[]
no_license
stamhoffman/algorithms
1d7ee84eb9c0eb9b8f72498c0475a6fd83b85d13
74c4e748ad52630169e80c5c5bf188ae23f890a5
refs/heads/master
2020-12-20T07:06:11.692840
2020-02-19T20:07:59
2020-02-19T20:07:59
235,996,332
0
0
null
null
null
null
UTF-8
C++
false
false
346
cpp
#include "bst.h" #include "function.h" using namespace function; using namespace bst; int main() { BST bst(5); bst.Insert(3); bst.Insert(6); bst.Insert(8); bst.Insert(9); bst.Insert(15); bst.Insert(10); bst.Insert(3); bst.Insert(1); bst.Insert(4); bst.Insert(2); auto root = bst.Traverse(bst.root_node_); return 0; }
[ "stamhoffman@yandex.ru" ]
stamhoffman@yandex.ru
2067dbcfd27ac86a6d43130e2e0acc2a1076daa2
44631c3fbb32eec79ec89049c6ae2ab6a4bf431a
/unit2/program_design.cpp
b82beb62189af98955e411906c29dc8299101b54
[]
no_license
jackliaoontheway/cpp_exam_practice
40bb1a92c891022683f4c34726eb4cb70a86b8aa
58f43c242ad32e265afde797f8843b83020e2a4b
refs/heads/master
2021-01-14T21:01:56.066268
2020-04-12T00:00:09
2020-04-12T00:00:09
242,758,917
0
0
null
null
null
null
UTF-8
C++
false
false
303
cpp
#include <iostream> #include "Mx.h" using namespace std; Mx operator + (Mx &a, Mx &b) { Mx c; for(int i = 0;i < 2; i++) { for(int j = 0; j < 3; j++) { c.m[i][j] = a.m[i][j] + b.m[i][j]; } } return c; } int main() { Mx a,b,c; a.input(); b.input(); c = a + b; c.show(); return 0; }
[ "ldhontheway@live.com" ]
ldhontheway@live.com
a2cb4434e2cbe6526ec21db33377922499722c31
f5a934834ee35fe17bf3f87ab29fc3436d083204
/Reverse_Integer.cpp
69a9d93ed33df67e985edbea480a497f4bdc6b47
[]
no_license
Ugongjae/leetcode
21e3c45f332032aedd6f37b21ba4251706948f69
bc162d94707b80cbabc5541fc0bdf83756cf040f
refs/heads/master
2023-08-24T16:56:48.313602
2021-10-29T12:54:22
2021-10-29T12:54:22
341,912,050
0
0
null
null
null
null
UTF-8
C++
false
false
779
cpp
#include <iostream> #include <algorithm> using namespace std; class Solution { public: int reverse(int x) { if(x==0) return x; long res=0; int isMinus=1; if(x<0){ if(x==INT32_MIN){ return 0; } x*=-1; isMinus=-1; } while(x>0){ res*=(long)10; int tmp=x%10; res+=(long)tmp; x/=10; } if(res>INT32_MAX){ return 0; } return res*(long)isMinus; } }; int main(){ Solution s; cout<<s.reverse(1534236469)<<endl; cout<<s.reverse(120)<<endl; cout<<s.reverse(1)<<endl; cout<<s.reverse(0)<<endl; cout<<s.reverse(-123)<<endl; return 0; }
[ "turtle0191@naver.com" ]
turtle0191@naver.com
a0343fe84cf91c87bf84c83fd8e47daef941ea20
fea03f3156797a87a0578ee5e97f2ac397eeb1e6
/C++/study/concept/example/example_01.cpp
29b4143c6f3c65a1e12137fc22c03d80458a1150
[]
no_license
dduynam/tutorial
0649f1d37e05a444f495f6cd9df8fe8c0f980a58
7b91268207e8f608df9196eb9d7f48b61a3c45ab
refs/heads/main
2023-07-15T03:28:53.135038
2021-08-30T16:34:08
2021-08-30T16:34:24
392,336,487
0
0
null
null
null
null
UTF-8
C++
false
false
403
cpp
#include <iostream> #include <math.h> using namespace std; int main() { int res = 0; int n = -5; cout << pow(2, 3) << endl; for (unsigned int i = 0; i < n; ++i) { res = i; //cout << res << endl; if (i == 100) { cout << "n: " << n << endl; break; } } cout << res << endl; //cout << n << endl; return 0; }
[ "nam2.do@lge.com" ]
nam2.do@lge.com
4d58f7b596fab831f0f9bcba09f36a6d6f67d0fd
e2a7a60e13303bde79e926d45fb75aa430c3a596
/11878.cpp
8bdbbfab2f610dd7a5fda83c51b597681d10f542
[]
no_license
jonathandarryl/UVa-Code
9ab900ee87e67469ffaa753ae57e070ed60d0b8c
0cbe8b6e091fc699abba25cbd72ebf1aa9e1709d
refs/heads/master
2016-09-05T15:45:46.105512
2015-01-08T05:16:31
2015-01-08T05:16:31
27,748,480
0
0
null
null
null
null
UTF-8
C++
false
false
983
cpp
#include<iostream> #include<string.h> using namespace std; int main(void){ string input; char rem; int in1, in2, res; int track, right = 0; while(cin>>input){ track = in1 = in2 = res = 0; while(input.at(track)>='0' && input.at(track)<='9'){ in1*=10; in1+=input.at(track) -'0'; track++; } rem = input.at(track); track++; while(input.at(track)>='0' && input.at(track)<='9'){ in2*=10; in2+=input.at(track) -'0'; track++; } track++; for(int i=track;i<input.length();i++){ if(input.at(track)=='?') res = -10000000l; else{ res*=10; res+=input.at(i)-'0'; } } if(rem=='+') in1+=in2; if(rem=='-') in1-=in2; if(in1==res) right++; } cout<<right<<endl; return 0; }
[ "jonathandarrylw@gmail.com" ]
jonathandarrylw@gmail.com
61b354ef1215fcfd44e5471661302389b7099c54
2cba5b3a723bce26d22d0fa8995c0ffb95769331
/Bài 1/Bai1.cpp
dfc0dfdd440945cba1f2fc941fc51e379ff8b4b0
[]
no_license
tranlongthien/Game-bau-cua
c51999f676f173f06e1e42334876d80b1a1fbd70
3fbe87ea92a0d377abc21d4a38c17001a3c02084
refs/heads/master
2021-05-03T10:28:30.302312
2017-06-07T14:56:54
2017-06-07T14:56:54
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,677
cpp
//Nhap vao hai phan so. Tinh tong hieu tich thuong vaf xuat ra ket qua o dang rut gon??? #include <iostream> using namespace std; int main() { int t1, t2, m1, m2, a, b, c, d; int tong, hieu, tich, tuthuong, mauthuong, mautong, mauhieu, mautich; do{ cout << "\nNhap vao tu so cua phan so thu nhat: "; cin >> t1; cout << "\nNhap vao mau so cua phan so thu nhat: "; cin >> m1; cout << "\nNhap vao tu so cua phan so thu hai: "; cin >> t2 ; cout << "\nNhap vao mau so cua phan so thu hai: "; cin >> m2; if (m1 == 0 || m2 == 0) { cout << "\nMau so phai khac 0! Hay kiem tra lai!"; } } while (m1 == 0 || m2 == 0); //Tong tong = t1*m2 + t2*m1; mautong = m1*m2; for (int i = 1;; ++i) { int t = tong % mautong; tong = mautong; mautong = t; if (t == 0) { a = fabs((double)tong); break; } } if (((m1*m2) / a)) { cout << "\nTong cua hai phan so " << t1 << "/" << m1 << " va " << t2 << "/" << m2 << " la: " << ((t1*m2 + t2*m1) / a); } else { cout << "\nTong cua hai phan so " << t1 << "/" << m1 << " va " << t2 << "/" << m2 << " la: " << ((t1*m2 + t2*m1) / a) << "/" << ((m1*m2) / a); } //Hieu hieu = t1*m2 - t2*m1; mauhieu = m1*m2; for (int i = 1;; ++i) { int t = hieu % mauhieu; hieu = mauhieu; mauhieu = t; if (t == 0) { b = fabs((double)hieu); break; } } if (((m1*m2) / b) == 1) { cout << "\nHieu cua hai phan so " << t1 << "/" << m1 << " va " << t2 << "/" << m2 << " la: " << ((t1*m2 - t2*m1) / b); } else { cout << "\nHieu cua hai phan so " << t1 << "/" << m1 << " va " << t2 << "/" << m2 << " la: " << ((t1*m2 - t2*m1) / b) << "/" << ((m1*m2) / b); } //Tich tich = t1*t2; mautich = m1*m2; for (int i = 1;; ++i) { int t = tich % mautich; tich = mautich; mautich = t; if (t == 0) { c = fabs((double)tich); break; } } if (((m1*m2) / c) == 1) { cout << "\nTich cua hai phan so " << t1 << "/" << m1 << " va " << t2 << "/" << m2 << " la: " << ((t1*t2) / c); } else { cout << "\nTich cua hai phan so " << t1 << "/" << m1 << " va " << t2 << "/" << m2 << " la: " << ((t1*t2) / c) << "/" << ((m1*m2) / c); } //Thuong tuthuong = t1*m2; mauthuong = m1*t2; for (int i = 1;; ++i) { int t = tuthuong % mauthuong; tuthuong = mauthuong; mauthuong = t; if (t == 0) { d = fabs((double)tuthuong); break; } } if (((m1*t2) / d) == 1) { cout << "\nThuong cua hai phan so " << t1 << "/" << m1 << " va " << t2 << "/" << m2 << " la: " << ((t1*m2) / d); } else { cout << "\nThuong cua hai phan so " << t1 << "/" << m1 << " va " << t2 << "/" << m2 << " la: " << ((t1*m2) / d) << "/" << ((m1*t2) / d); } system("pause"); return 0; }
[ "sonkun246@gmail.com" ]
sonkun246@gmail.com
d4c8e6f4cc7414f6ebd8baff162819e8b815aa1d
79cd3aed34bdff83575ea0b5973812e396fc089b
/TehnikeProgramiranja/Tutorijali/T8/Z4.cpp
5a37fc5b3ccb7e239a98a2085c8461649623775a
[]
no_license
lmujic1/CppCode
42be834f9e170d00a8843f316dce9205637e5c1a
628a21c3b16e3906160589b97cec25c46af654e8
refs/heads/master
2023-08-14T03:49:38.149481
2021-09-20T23:56:51
2021-09-20T23:56:51
407,698,782
0
0
null
null
null
null
UTF-8
C++
false
false
3,627
cpp
// // Created by 38760 on 18. 9. 2021.. // //TP 2018/2019: Tutorijal 8, Zadatak 4 #include <iostream> #include <map> #include <string> #include <algorithm> std::string ZamijeniPremaRjecniku(std::string s,std::map<std::string,std::string> mapa) { std::string novi; for(int i=0;i<s.length();i++) { if((s[i]>='A' && s[i]<='Z')||(s[i]>='a'&&s[i]<='z')) { std::string pom; while((s[i]>='A' && s[i]<='Z')||(s[i]>='a'&&s[i]<='z')) { if(i==s.length()) break; pom.push_back(s[i]); i++; } auto it(mapa.find(pom)); if(it!=mapa.end()) novi+=it->second; else novi+=pom; } if(i==s.length()) break; novi.push_back(s[i]); } return novi; } int main () { return 0; } /* Napišite funkciju “ZamijeniPremaRjecniku” koja određene riječi u nekom stringu zamjenjuje nekim drugim riječima. Prvi parametar je tipa “string” i on predstavlja string u kojem se vrši zamjena. Drugi parametar je mapa (tj. objekat tipa “map”) kod koje su i ključno polje i pridružena vrijednost tipa “string”. Ova mapa se sastoji od uređenih parova, u kojima prvi element predstavlja riječ koja se zamjenjuje, a drugi element predstavlja zamjensku riječ koja se treba ubaciti umjesto riječi koja se zamjenjuje. Funkcija treba kao da rezultat vrati novi string koji se dobija nakon izvršenih zamjena. Na primjer, sljedeći testni primjer treba da ispiše “how yes no”: std::map<std::string, std::string> moj_rjecnik{{"jabuka", "apple"}, {"da", "yes"}, {"kako", "how"}, {"ne", "no"}, {"majmun", "monkey"}}; std::cout << ZamijeniPremaRjecniku("kako da ne", moj_rjecnik); Radi jednostavnosti, pretpostavite da string koji se transformira sadrži samo mala slova i razmake (i ništa drugo). Isto tako, pretpostavite da riječi u parovima koje čine mapu koja predstavlja rječnik sadrže samo mala slova, bez razmaka. Ove pretpostavke ne morate provjeravati, već je samo uzmite kao takvu. Međutim, vodite računa da je moguće da riječi budu razdvojene sa više razmaka, kao i da se na početku odnosno kraju stringa mogu također nalaziti razmaci. Drugim riječima, string poput “ kako da ne ” uz pomoć istog “rječnika” kao i gore navedenom primjeru treba da se prevede u “ how yes no ”. Treba paziti da se uvijek se zamjenjuju samo cijele riječi, nikad njihovi dijelovi. Na primjer, ukoliko string koji se transformira glasi “davor martić ima sestre maju i juliju” i ukoliko se mapa koja definira rječnik sastoji od parova (“mart”, “ožujak”), (“maj”, “svibanj”) i (“jul”, “srpanj”), rezultat transformacije treba da bude isti string bez ikakve promjene, odnosno rezultat ne treba da bude string “davor ožujakić ima sestre svibanju i srpanjiju”. Inače, nešto slično tome desilo se prije nekoliko godina prilikom pokušaja automatskog “prevođenja” transkripta jedne parlamentarne sjednice sa bosanskog na hrvatski jezik uz pomoć Word-ove “Find & Replace” komande, kada je poslanik Martić postao Ožujakić. Interesantno je što bez obzira što Word ima opciju “Whole words only” kojom bi se izbjegao taj problem, “prevodioci” su je držali isključenom, jer su smatrali da na taj način “rješavaju” problem promjene riječi po padežima, koje inače komanda “Find & Replace” ne može da “uhvati”. Napišite i kratki testni program u kojem ćete demonstrirati napisanu funkciju. Način komunikacije između korisnika i programa izvedite prema vlastitoj volji (neće se testirati). */
[ "lmujic1@etf.unsa.ba" ]
lmujic1@etf.unsa.ba
5f6ea9c71d1ef5c5b2e75007fbf94b65d141c681
9e41c0037601302e13aa8a71fbae2736c0d48249
/apollo_13/include/apollo_13/CommonProperties.h
761d9a8a3adef8dbbeff773a196f9fda89876c7e
[]
no_license
SiChiTong/Apollo_13
bb6382b6f0437a40be447e9f2a3f4027ced781e1
d5c2d2510111a3b6ca94e379e196679906aabd25
refs/heads/master
2021-04-06T02:31:09.437997
2017-01-20T18:04:22
2017-01-20T18:04:22
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,974
h
/* Auto-generated by genmsg_cpp for file /home/pses/catkin_ws/src/rososc/touchosc_msgs/msg/CommonProperties.msg */ #ifndef TOUCHOSC_MSGS_MESSAGE_COMMONPROPERTIES_H #define TOUCHOSC_MSGS_MESSAGE_COMMONPROPERTIES_H #include <string> #include <vector> #include <map> #include <ostream> #include "ros/serialization.h" #include "ros/builtin_message_traits.h" #include "ros/message_operations.h" #include "ros/time.h" #include "ros/macros.h" #include "ros/assert.h" namespace touchosc_msgs { template <class ContainerAllocator> struct CommonProperties_ { typedef CommonProperties_<ContainerAllocator> Type; CommonProperties_() : tabpage() , name() , x(0) , y(0) , width(0) , height(0) , visible() , color() { } CommonProperties_(const ContainerAllocator& _alloc) : tabpage(_alloc) , name(_alloc) , x(0) , y(0) , width(0) , height(0) , visible(_alloc) , color(_alloc) { } typedef std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other > _tabpage_type; std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other > tabpage; typedef std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other > _name_type; std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other > name; typedef int16_t _x_type; int16_t x; typedef int16_t _y_type; int16_t y; typedef uint16_t _width_type; uint16_t width; typedef uint16_t _height_type; uint16_t height; typedef std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other > _visible_type; std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other > visible; typedef std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other > _color_type; std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other > color; typedef boost::shared_ptr< ::touchosc_msgs::CommonProperties_<ContainerAllocator> > Ptr; typedef boost::shared_ptr< ::touchosc_msgs::CommonProperties_<ContainerAllocator> const> ConstPtr; }; // struct CommonProperties typedef ::touchosc_msgs::CommonProperties_<std::allocator<void> > CommonProperties; typedef boost::shared_ptr< ::touchosc_msgs::CommonProperties> CommonPropertiesPtr; typedef boost::shared_ptr< ::touchosc_msgs::CommonProperties const> CommonPropertiesConstPtr; template<typename ContainerAllocator> std::ostream& operator<<(std::ostream& s, const ::touchosc_msgs::CommonProperties_<ContainerAllocator> & v) { ros::message_operations::Printer< ::touchosc_msgs::CommonProperties_<ContainerAllocator> >::stream(s, "", v); return s;} } // namespace touchosc_msgs namespace ros { namespace message_traits { template<class ContainerAllocator> struct IsMessage< ::touchosc_msgs::CommonProperties_<ContainerAllocator> > : public TrueType {}; template<class ContainerAllocator> struct IsMessage< ::touchosc_msgs::CommonProperties_<ContainerAllocator> const> : public TrueType {}; template<class ContainerAllocator> struct MD5Sum< ::touchosc_msgs::CommonProperties_<ContainerAllocator> > { static const char* value() { return "2c6057f4de35b509307640ef1d0f3aac"; } static const char* value(const ::touchosc_msgs::CommonProperties_<ContainerAllocator> &) { return value(); } static const uint64_t static_value1 = 0x2c6057f4de35b509ULL; static const uint64_t static_value2 = 0x307640ef1d0f3aacULL; }; template<class ContainerAllocator> struct DataType< ::touchosc_msgs::CommonProperties_<ContainerAllocator> > { static const char* value() { return "touchosc_msgs/CommonProperties"; } static const char* value(const ::touchosc_msgs::CommonProperties_<ContainerAllocator> &) { return value(); } }; template<class ContainerAllocator> struct Definition< ::touchosc_msgs::CommonProperties_<ContainerAllocator> > { static const char* value() { return "# Common functionality to all TouchOSC controls\n\ \n\ string tabpage # Control tabpage\n\ string name # Control Name\n\ int16 x # X position of the control\n\ int16 y # Y position of the control\n\ uint16 width # Width of the control\n\ uint16 height # Height of the control\n\ string visible # Visibility of the control\n\ \n\ # Possible colors are:\n\ # \"red\", \"green\", \"blue\", \"yellow\", \"orange\", \"purple\", \"gray\"\n\ string color # Color of the control\n\ \n\ "; } static const char* value(const ::touchosc_msgs::CommonProperties_<ContainerAllocator> &) { return value(); } }; } // namespace message_traits } // namespace ros namespace ros { namespace serialization { template<class ContainerAllocator> struct Serializer< ::touchosc_msgs::CommonProperties_<ContainerAllocator> > { template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m) { stream.next(m.tabpage); stream.next(m.name); stream.next(m.x); stream.next(m.y); stream.next(m.width); stream.next(m.height); stream.next(m.visible); stream.next(m.color); } ROS_DECLARE_ALLINONE_SERIALIZER; }; // struct CommonProperties_ } // namespace serialization } // namespace ros namespace ros { namespace message_operations { template<class ContainerAllocator> struct Printer< ::touchosc_msgs::CommonProperties_<ContainerAllocator> > { template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::touchosc_msgs::CommonProperties_<ContainerAllocator> & v) { s << indent << "tabpage: "; Printer<std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other > >::stream(s, indent + " ", v.tabpage); s << indent << "name: "; Printer<std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other > >::stream(s, indent + " ", v.name); s << indent << "x: "; Printer<int16_t>::stream(s, indent + " ", v.x); s << indent << "y: "; Printer<int16_t>::stream(s, indent + " ", v.y); s << indent << "width: "; Printer<uint16_t>::stream(s, indent + " ", v.width); s << indent << "height: "; Printer<uint16_t>::stream(s, indent + " ", v.height); s << indent << "visible: "; Printer<std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other > >::stream(s, indent + " ", v.visible); s << indent << "color: "; Printer<std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other > >::stream(s, indent + " ", v.color); } }; } // namespace message_operations } // namespace ros #endif // TOUCHOSC_MSGS_MESSAGE_COMMONPROPERTIES_H
[ "aceronicolas@hotmail.com" ]
aceronicolas@hotmail.com
d90513f934d66abf1db3aa40a8f558298968f425
f1e40f0d5d5d96fdab4a0cb76f06a6ae9e3927cc
/final/workspace/speech/devel/include/tum_alle_common_msgs/msgHotwordCommand.h
a731a168fe59d9ea94c3703b65edf08b8e954403
[]
no_license
Eddiesyn/RoboCup-Home
fedcda033a787ea8e451d53a930bdeb741c4de6d
6d8e56a9186d29736e2464bee4b124536cb2878e
refs/heads/master
2020-03-18T16:25:30.706778
2018-08-08T18:41:26
2018-08-08T18:41:26
134,964,590
1
0
null
null
null
null
UTF-8
C++
false
false
6,019
h
// Generated by gencpp from file tum_alle_common_msgs/msgHotwordCommand.msg // DO NOT EDIT! #ifndef TUM_ALLE_COMMON_MSGS_MESSAGE_MSGHOTWORDCOMMAND_H #define TUM_ALLE_COMMON_MSGS_MESSAGE_MSGHOTWORDCOMMAND_H #include <string> #include <vector> #include <map> #include <ros/types.h> #include <ros/serialization.h> #include <ros/builtin_message_traits.h> #include <ros/message_operations.h> namespace tum_alle_common_msgs { template <class ContainerAllocator> struct msgHotwordCommand_ { typedef msgHotwordCommand_<ContainerAllocator> Type; msgHotwordCommand_() : command() { } msgHotwordCommand_(const ContainerAllocator& _alloc) : command(_alloc) { (void)_alloc; } typedef std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other > _command_type; _command_type command; typedef boost::shared_ptr< ::tum_alle_common_msgs::msgHotwordCommand_<ContainerAllocator> > Ptr; typedef boost::shared_ptr< ::tum_alle_common_msgs::msgHotwordCommand_<ContainerAllocator> const> ConstPtr; }; // struct msgHotwordCommand_ typedef ::tum_alle_common_msgs::msgHotwordCommand_<std::allocator<void> > msgHotwordCommand; typedef boost::shared_ptr< ::tum_alle_common_msgs::msgHotwordCommand > msgHotwordCommandPtr; typedef boost::shared_ptr< ::tum_alle_common_msgs::msgHotwordCommand const> msgHotwordCommandConstPtr; // constants requiring out of line definition template<typename ContainerAllocator> std::ostream& operator<<(std::ostream& s, const ::tum_alle_common_msgs::msgHotwordCommand_<ContainerAllocator> & v) { ros::message_operations::Printer< ::tum_alle_common_msgs::msgHotwordCommand_<ContainerAllocator> >::stream(s, "", v); return s; } } // namespace tum_alle_common_msgs namespace ros { namespace message_traits { // BOOLTRAITS {'IsFixedSize': False, 'IsMessage': True, 'HasHeader': False} // {'sensor_msgs': ['/opt/ros/kinetic/share/sensor_msgs/cmake/../msg'], 'geometry_msgs': ['/opt/ros/kinetic/share/geometry_msgs/cmake/../msg'], 'std_msgs': ['/opt/ros/kinetic/share/std_msgs/cmake/../msg'], 'tum_alle_common_msgs': ['/home/atHomeSS18/God-Watcher/workspace/speech/src/tum_alle_common_msgs/msg']} // !!!!!!!!!!! ['__class__', '__delattr__', '__dict__', '__doc__', '__eq__', '__format__', '__getattribute__', '__hash__', '__init__', '__module__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', '_parsed_fields', 'constants', 'fields', 'full_name', 'has_header', 'header_present', 'names', 'package', 'parsed_fields', 'short_name', 'text', 'types'] template <class ContainerAllocator> struct IsFixedSize< ::tum_alle_common_msgs::msgHotwordCommand_<ContainerAllocator> > : FalseType { }; template <class ContainerAllocator> struct IsFixedSize< ::tum_alle_common_msgs::msgHotwordCommand_<ContainerAllocator> const> : FalseType { }; template <class ContainerAllocator> struct IsMessage< ::tum_alle_common_msgs::msgHotwordCommand_<ContainerAllocator> > : TrueType { }; template <class ContainerAllocator> struct IsMessage< ::tum_alle_common_msgs::msgHotwordCommand_<ContainerAllocator> const> : TrueType { }; template <class ContainerAllocator> struct HasHeader< ::tum_alle_common_msgs::msgHotwordCommand_<ContainerAllocator> > : FalseType { }; template <class ContainerAllocator> struct HasHeader< ::tum_alle_common_msgs::msgHotwordCommand_<ContainerAllocator> const> : FalseType { }; template<class ContainerAllocator> struct MD5Sum< ::tum_alle_common_msgs::msgHotwordCommand_<ContainerAllocator> > { static const char* value() { return "cba5e21e920a3a2b7b375cb65b64cdea"; } static const char* value(const ::tum_alle_common_msgs::msgHotwordCommand_<ContainerAllocator>&) { return value(); } static const uint64_t static_value1 = 0xcba5e21e920a3a2bULL; static const uint64_t static_value2 = 0x7b375cb65b64cdeaULL; }; template<class ContainerAllocator> struct DataType< ::tum_alle_common_msgs::msgHotwordCommand_<ContainerAllocator> > { static const char* value() { return "tum_alle_common_msgs/msgHotwordCommand"; } static const char* value(const ::tum_alle_common_msgs::msgHotwordCommand_<ContainerAllocator>&) { return value(); } }; template<class ContainerAllocator> struct Definition< ::tum_alle_common_msgs::msgHotwordCommand_<ContainerAllocator> > { static const char* value() { return "# Contains the last hotword command recognised\n\ # By tum_alle_athome_speech_hotword published at:\n\ # \"/hotword_command\"\n\ # the command will be recognised when saying:\n\ # \"Tiago $COMMAND\", with command having the possible values of:\n\ # say, follow, bring, move, start, wait, move\n\ string command\n\ "; } static const char* value(const ::tum_alle_common_msgs::msgHotwordCommand_<ContainerAllocator>&) { return value(); } }; } // namespace message_traits } // namespace ros namespace ros { namespace serialization { template<class ContainerAllocator> struct Serializer< ::tum_alle_common_msgs::msgHotwordCommand_<ContainerAllocator> > { template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m) { stream.next(m.command); } ROS_DECLARE_ALLINONE_SERIALIZER }; // struct msgHotwordCommand_ } // namespace serialization } // namespace ros namespace ros { namespace message_operations { template<class ContainerAllocator> struct Printer< ::tum_alle_common_msgs::msgHotwordCommand_<ContainerAllocator> > { template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::tum_alle_common_msgs::msgHotwordCommand_<ContainerAllocator>& v) { s << indent << "command: "; Printer<std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other > >::stream(s, indent + " ", v.command); } }; } // namespace message_operations } // namespace ros #endif // TUM_ALLE_COMMON_MSGS_MESSAGE_MSGHOTWORDCOMMAND_H
[ "sen.wang@tum.de" ]
sen.wang@tum.de
a11692e6fd82a79e675826034f739419f80a239e
999fdf150a93dc69d920786641fc9cd8e83f2a75
/src/oraifutils/opencl/oraOpenCLWrapper.h
6ac7d931b903290299766b949c66c6a19fa36c00
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
agravgaard/Plastimatch
f79294947a1d44dd0c56798277374222fa92df57
7b5b79bb1a258d69a653bc82849ed420e673de3d
refs/heads/master
2021-01-17T06:53:30.814597
2020-08-21T12:51:14
2020-08-21T12:51:14
52,898,082
11
0
null
null
null
null
UTF-8
C++
false
false
596
h
#ifndef ORAOPENCLWRAPPER_H_ #define ORAOPENCLWRAPPER_H_ // allow c++ like exceptions for openCL functions #define __CL_ENABLE_EXCEPTIONS // opencl #include <CL/cl.hpp> // std #include <vector> #include <iostream> namespace ora { /* * oraOpenCLWrapper.h */ class OpenCLWrapper { public: typedef OpenCLWrapper self; OpenCLWrapper(); ~OpenCLWrapper(); bool Initalize(); bool CommitKernel(int *a, int *b, int *c, int bufferSize); protected: /** * */ std::vector<cl::Platform> m_PlatformList; cl_uint m_PlatformNum; private: }; } #endif /* ORAOPENCLWRAPPER_H_ */
[ "andreasga22@gmail.com" ]
andreasga22@gmail.com
0fe693105836da2572b56eb7138bf16e7e6359ff
b7f3edb5b7c62174bed808079c3b21fb9ea51d52
/gpu/command_buffer/tests/texture_image_factory.h
82509cbe2080b710b9183b09c81ad570db700002
[ "BSD-3-Clause" ]
permissive
otcshare/chromium-src
26a7372773b53b236784c51677c566dc0ad839e4
64bee65c921db7e78e25d08f1e98da2668b57be5
refs/heads/webml
2023-03-21T03:20:15.377034
2020-11-16T01:40:14
2020-11-16T01:40:14
209,262,645
18
21
BSD-3-Clause
2023-03-23T06:20:07
2019-09-18T08:52:07
null
UTF-8
C++
false
false
1,506
h
// Copyright 2016 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef GPU_COMMAND_BUFFER_TESTS_TEXTURE_IMAGE_FACTORY_H_ #define GPU_COMMAND_BUFFER_TESTS_TEXTURE_IMAGE_FACTORY_H_ #include "gpu/command_buffer/service/image_factory.h" namespace gpu { // The images created by this factory have no inherent storage. When the image // is bound to a texture, storage is allocated for the texture via glTexImage2D. class TextureImageFactory : public gpu::ImageFactory { public: scoped_refptr<gl::GLImage> CreateImageForGpuMemoryBuffer( gfx::GpuMemoryBufferHandle handle, const gfx::Size& size, gfx::BufferFormat format, int client_id, SurfaceHandle surface_handle) override; bool SupportsCreateAnonymousImage() const override; scoped_refptr<gl::GLImage> CreateAnonymousImage(const gfx::Size& size, gfx::BufferFormat format, gfx::BufferUsage usage, SurfaceHandle surface_handle, bool* is_cleared) override; unsigned RequiredTextureType() override; bool SupportsFormatRGB() override; void SetRequiredTextureType(unsigned type); private: unsigned required_texture_type_ = 0; }; } // namespace gpu #endif // GPU_COMMAND_BUFFER_TESTS_TEXTURE_IMAGE_FACTORY_H_
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
5cbd676fc2e3fb1787ebda5b39b89136b5179fff
2041079aab20a4df0d53faeca8350d3607c7fc3a
/trunk/teaf(isgw)/dll/dll_impl.cpp
581029b0f4aaa3f6be54f7d9ad41dd796752ebbb
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
ashirali227/Testing
bdc7bfdd27cf5b03776b7d067822dc83317fd920
213d607a09e186433094328c11a375f701a8173b
refs/heads/master
2023-04-29T12:01:37.393671
2021-05-19T10:21:56
2021-05-19T10:21:56
368,592,105
0
0
null
2021-05-19T09:43:35
2021-05-18T16:07:57
C++
UTF-8
C++
false
false
444
cpp
//g++ dll_impl.cpp -fPIC -shared -o libperson.so #include "dll_impl.h" person::person(const string& name, unsigned int age) : m_name(name), m_age(age) { cout << m_name << " say hello!" << endl; }; person::~person() { cout << m_name << " say byebye!" << endl; }; string person::get_person_name() const {return m_name;} person create_person(const string& name, unsigned int age) { return person(name, age); };
[ "away@awaydeMacBook-Pro.local" ]
away@awaydeMacBook-Pro.local
690d2c3aac4b507aa9bb14702565a2e6e659835f
9e6592940d44df37f9ba748f19b6c36db3a9e300
/src/robot_control/lib/NXTControl/include/nxt/TelegramFactory.hpp
a5597dcc98084eb814680e92b871688d4d0d36a9
[]
no_license
Smart-Minotaur/nxt_minotaur
f6fdddb4feea956f0c528fb0d884ffbb5bc26b36
0ff5451002dad5066b325d619a738a3d8aaf2824
refs/heads/master
2021-03-12T21:38:15.556994
2014-10-11T15:12:38
2014-10-11T15:12:38
18,295,217
0
1
null
null
null
null
UTF-8
C++
false
false
2,152
hpp
#ifndef NXT_TELEGRAM_FACTORY_HPP #define NXT_TELEGRAM_FACTORY_HPP #include <string> #include "nxt/Telegram.hpp" namespace nxt { /** * \brief Provides methods to create Telegram objects. */ class TelegramFactory { private: void addString(Telegram &p_telegram, const std::string &p_string) const; void addUINT16(Telegram &p_telegram, const uint16_t p_value) const; void addUINT32(Telegram &p_telegram, const uint32_t p_value) const; public: TelegramFactory(); ~TelegramFactory(); Telegram startProgramMsg(const std::string &p_file) const; Telegram stopProgramMsg() const; Telegram playSoundFileMsg(const uint8_t p_loop, const std::string &p_file) const; Telegram playToneMsg(const uint16_t p_frequency, const uint16_t p_durationMS) const; Telegram setOutputStateMsg(const uint8_t p_port, const uint8_t p_power, const uint8_t p_motorMode, const uint8_t p_regulationMode, const uint8_t p_turnRatio, const uint8_t p_runState, const uint32_t p_tachoLimit) const; Telegram setInputModeMsg(const uint8_t p_port, const uint8_t p_type, const uint8_t p_mode) const; Telegram getOutputStateMsg(const uint8_t p_port) const; Telegram resetInputScaledValueMsg(const uint8_t p_port) const; Telegram getInputValuesMsg(const uint8_t p_port) const; Telegram messageWriteMsg(const uint8_t p_mailbox, const std::string& p_message) const; Telegram resetMotorPositionMsg(const uint8_t p_port, const uint8_t p_relative) const; Telegram getBatteryLevelMsg() const; Telegram stopSoundPlaybackMsg() const; Telegram keepAliveMsg() const; Telegram lsGetStatusMsg(const uint8_t p_port) const; Telegram lsWriteMsg(const uint8_t p_port, const uint8_t p_txDataLength, const uint8_t p_rxDataLength, const unsigned char *p_txData) const; Telegram lsReadMsg(const uint8_t p_port) const; Telegram getCurrentProgramNameMsg() const; Telegram messageReadMsg(const uint8_t p_remoteMailbox, const uint8_t p_localMailbox, const uint8_t p_removeMessage) const; }; } #endif
[ "rookfighter@develop" ]
rookfighter@develop
1c96d4c0f966c03bb831a7ad12a00a2c5f7219ee
a22e075e5cd68cd61c822b7d6b28b63f5dcb4c1c
/algorithm/201115_bfs_map.cpp
340cd90d3d9f8211c101c23d0c01af4648e9976b
[]
no_license
Liuqianqian007/learncs
52cc81f638653138799627f6269ed2f0bd9cae60
497aab2b44e505b3c2d3d174aba07f0f97f928e5
refs/heads/main
2023-07-11T03:33:12.003729
2021-08-21T03:59:06
2021-08-21T03:59:06
320,240,746
0
0
null
null
null
null
UTF-8
C++
false
false
1,836
cpp
/************************************************************************* > File Name: bfs_map.cpp > Author: liuqian > Mail: > Created Time: Sun 15 Nov 2020 08:29:40 PM CST ************************************************************************/ #include<iostream> #include<queue> using namespace std; /* 输入数据:S为起点,T为终点 S... ##.. ##.. T... */ //广度优先搜索, oj399 //解决问题一:连通性问题 //解决问题二:最短路径问题 //结构体记录当前点坐标和走到当前点用的步数 struct node { int x, y, step; }; int n, m, sx, sy; int dir[4][2] = {0, 1, 1, 0, 0, -1, -1, 0}; char mmap[105][105]; int main() { cin >> n >> m; //输入数据并记录起点坐标 for (int i = 1; i <= n; i++) { for (int j = 1;j <= m; j++) { cin >> mmap[i][j]; if (mmap[i][j] == 'S') { sx = i, sy = j; } } } //队列记录已搜索过的点 queue<node> que; que.push(node({sx, sy, 0})); while (!que.empty()) { //队列不为空则每次从队首取出一个点扩张 node temp = que.front(); que.pop(); //扩张:遍历上右下左四个方向 for (int i = 0; i < 4; i++) { int x = temp.x + dir[i][0]; int y = temp.y + dir[i][1]; //找到终点,输出步数并返回 if (mmap[x][y] == 'T') { cout << temp.step + 1 << endl; return 0; } //如果是可走的点,则标记避免重复,并加入队列 if (mmap[x][y] == '.') { mmap[x][y] = 0; que.push((node){x, y, temp.step + 1}); } } } //队列遍历结束还没找到终点 cout << "NO" << endl; return 0; }
[ "liuq@github.com" ]
liuq@github.com
3dcb370c188b8450111c7e027ba628d424cc0625
9f520bcbde8a70e14d5870fd9a88c0989a8fcd61
/pitzDaily/925/alpha
b053fb45cad54b5251b4c84af4b3d00d65e8b33c
[]
no_license
asAmrita/adjoinShapOptimization
6d47c89fb14d090941da706bd7c39004f515cfea
079cbec87529be37f81cca3ea8b28c50b9ceb8c5
refs/heads/master
2020-08-06T21:32:45.429939
2019-10-06T09:58:20
2019-10-06T09:58:20
213,144,901
1
0
null
null
null
null
UTF-8
C++
false
false
68,743
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: v1806 | | \\ / A nd | Web: www.OpenFOAM.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "925"; object alpha; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 0 -1 0 0 0 0]; internalField nonuniform List<scalar> 6400 ( 0.912352755121 1.48960763839 2.3841882791 3.03148541347 3.64802539988 4.25593748307 4.98582894667 5.79639263621 6.35872823753 7.17252006575 8.51424151129 9.54103776907 10.4311726743 11.4027074552 12.5534445022 13.769364452 14.9053147804 15.9819380653 16.903083084 17.5246110524 17.9659689878 18.5771518472 19.544156458 20.8257699025 22.2031779351 23.4765594442 24.5886723298 25.6402948618 26.7240218805 27.8551278527 28.9782637199 29.9199155487 30.6037520487 31.1348835812 31.5648153572 31.9148033933 32.4225890279 33.1039827417 33.5121144125 33.7272627287 34.2654299061 35.235871485 36.1851081168 36.7682965128 37.0136180697 37.0152777091 36.8367203019 36.515852275 36.0653921056 35.5034916225 34.7615969124 33.6528923479 32.1418504719 30.3190285411 28.5647645466 26.8750965709 24.7130865929 21.9150352387 18.9972284289 16.3701976434 13.7213358363 10.9724548347 8.50768701409 7.79121570665 10.1109177828 14.2896389079 16.8903482909 16.3167347027 14.1003702392 12.3348962114 11.3973313595 11.6255821618 12.2528228009 12.1977196905 14.4064180696 13.8973215922 15.8798264606 9.7725232141 12.8500336175 4.79736576871 3.18480212464 2.58621490967 3.2466735348 4.54311793217 4.59715267158 4.65445873342 4.99283341298 5.55043688323 6.32040038227 7.28577027189 8.42779962734 9.57202224426 10.6048803594 11.602163409 12.6286825396 13.7919226536 15.0200873007 16.190915041 17.3323883332 17.8008398014 18.084622146 18.6868640881 19.6467696321 20.9225976273 22.394445826 23.6243798193 24.7133143526 25.7949509979 26.8894940179 27.9940269224 29.0950618617 30.104368888 30.7816721857 31.3043152558 31.7583504146 32.0492292984 32.5908961539 33.2971892438 33.6779469899 33.7965061002 34.3130611629 35.6446230052 36.7973327205 37.3077945403 37.5079272475 37.4600903931 37.220687512 36.8579291401 36.2977109931 35.6153623476 34.9190798668 34.1676362171 32.7870805269 30.5406198827 28.8619542373 27.020211776 24.4875776344 21.7449279808 18.9852479198 16.2308029367 13.5931015706 11.2227750127 8.85403326701 8.27799802075 10.4406850472 15.3343350158 18.6469011452 17.1169797257 14.7386089358 12.6670364899 11.9121992324 12.359502762 13.5577024413 13.0174149545 12.951093906 12.5059102758 11.3870571648 9.60492511894 8.11391459632 4.19297023908 3.34658607308 2.99135384345 3.5245640561 3.91309000541 4.5875235618 5.11527314974 5.16955822358 5.43424897543 6.21147690644 7.25494500933 8.4097951617 9.57296038823 10.646931771 11.6427889616 12.5258342515 13.5938076356 16.104734649 18.1256165383 18.7629588427 18.549041881 17.8912024042 18.4148599338 19.7436504978 21.0636805593 22.340340566 23.6185102871 24.7922008229 25.8757314899 26.951404853 28.0482450102 29.1237021925 30.2033284873 30.8699345714 31.2163713249 31.8980958804 32.2104813973 32.5323608968 33.3694079273 33.807558733 33.9958067579 34.527018766 35.4691609033 36.387814592 36.9701809875 37.240342615 37.2813009153 37.1354794845 36.8222303612 36.3449081462 35.721408463 34.9462785099 33.9074287299 32.4846434443 30.8781274232 29.1722462607 26.9714278943 24.4169788616 21.7208578148 18.9773073133 16.2661885315 13.6721628457 11.1797557168 9.37245492261 9.55704340406 12.6831629347 16.3665021601 18.1109760491 17.9228650949 16.1608507527 14.3894993682 13.6606688445 13.5639131431 12.9019935489 12.3433991032 12.4062651699 12.1627508675 11.2675955057 9.68896520134 7.2521644743 7.47079699752 3.47772149688 5.62735370329 3.94911261772 4.14509987086 4.89809245752 12.0023674791 10.4540439314 5.90825161202 6.16046262416 7.23654871416 8.42486024377 9.61047568647 10.6588630537 11.6482053831 13.318814208 15.382155602 17.1454610918 17.8508001802 17.3521148792 17.1160087598 17.7480237146 18.6357146775 19.7470617081 21.054421156 22.4070140826 23.7089412035 24.9044018206 25.9732795542 27.0586419543 28.1027698204 29.264852942 30.198639392 31.0670109092 31.3866232695 31.5702692514 32.2655545787 32.673318531 33.1043209669 33.6776465745 34.2037268865 34.8234438331 35.6392657594 36.4480454605 37.026412375 37.333467284 37.408933198 37.2890685276 36.9949468119 36.5352291374 35.9144534328 35.1117496931 34.0610909287 32.7171412738 31.1303886087 29.2718898625 27.027154074 24.4624344246 21.7530676622 19.0190170368 16.3562250915 13.8793443157 11.8267069981 10.812827792 11.1455722413 12.7421029606 16.8673518986 19.8019953527 19.6889345213 17.8565626255 15.3898052558 13.70428512 12.8694678592 13.0546339731 14.5533086508 14.5558675755 13.2940950865 13.2258495968 16.5899034685 12.952092961 10.9370134841 5.91265817271 7.74265152661 4.85474921826 5.17894606031 6.8703161647 11.9055969736 8.60385318254 6.48706837097 6.68982312298 7.44701306742 8.55470863219 9.7493283198 11.2160505101 13.3843239319 14.5080665743 15.1298022259 15.5352683218 15.8340399091 16.3412149846 17.1474015635 17.8594149461 18.6930575578 19.8317422178 21.1375136349 22.4965193132 23.8195632936 24.9965974418 26.1549403483 27.1485435734 28.3124163289 29.2997869842 30.6334913965 31.0135298601 31.1202185335 31.6150454584 31.9544619927 32.5227194786 33.1864677736 33.8333638193 34.4419486512 35.0935465115 35.8408403994 36.5737390817 37.1380304288 37.4702231407 37.5772561177 37.4842355341 37.212068296 36.7713132151 36.1600991248 35.3548097623 34.3117827424 33.0000588479 31.4085350941 29.4810253215 27.174397236 24.5874359938 21.888347971 19.215742948 16.7079633789 14.5640587391 13.1134516859 12.6835509329 12.6507870585 13.4545653526 16.7573609605 20.0438170733 21.0581560854 19.7020440899 16.8243617651 14.2402260382 13.8436656814 16.1317058431 17.0297735972 16.0271473025 15.1545969593 17.893408201 20.9580226293 16.2040218355 15.3081666102 10.1796351267 9.37829759845 6.05682199241 6.52182211134 12.2006985625 11.7204799017 7.2714589383 7.13945588584 7.34804455617 7.80314105606 8.76956764835 11.2798871971 14.3401905985 14.9296186142 14.8289606787 14.3715849448 14.5168595181 15.256945893 16.3839944731 17.0921504849 17.7755648201 18.7567883726 19.9535971917 21.2772574146 22.5774277773 23.9037383481 25.2609668487 26.2431107044 27.5185803416 28.3611038483 29.8705862003 30.4727227379 31.4267763907 31.2538438431 31.2140973752 31.7759746875 32.5589004015 33.3306912107 34.036554212 34.6955492447 35.3676793989 36.0796267038 36.7635906579 37.3122545179 37.6597609517 37.7933596914 37.7267584916 37.479077243 37.0616007217 36.4698833186 35.6803622832 34.6560471655 33.3587219456 31.745823765 29.7672009143 27.4327609057 24.8675394917 22.2450322381 19.7296780626 17.5077759227 15.8134142757 14.9325974505 14.8617914428 14.1065813985 15.4824916737 18.9066268563 21.5735141624 22.4647570046 21.3004280374 17.8075415747 15.4884432127 17.1924612395 19.3621449011 18.8242809118 17.8490887885 17.9507295663 22.6280731764 24.2561359089 19.1743722341 18.9766931746 12.3353250885 9.39067626882 7.35167493192 6.89446332683 12.2047654971 8.88914845855 7.62746897918 7.78232226211 7.96809458193 8.71199412552 9.32473666133 13.8920682772 14.7387195286 14.9437767852 13.9995550747 13.5361501001 14.1828641042 15.604148031 16.3021358749 16.8321405413 17.7719799756 18.8467719892 20.0471788082 21.3663703065 22.7993704536 24.1733685287 25.2726496564 26.8165937916 27.6104173203 29.1912806172 29.6827920573 30.8946959312 31.0333054196 31.0740704469 31.1153876287 31.7703763257 32.6629515772 33.5104922066 34.2632541456 34.9616992861 35.6550022546 36.3535930637 37.0101388122 37.5473384902 37.9052114833 38.0610819734 38.0207880468 37.8014900897 37.4143058275 36.8530768782 36.0925895509 35.0931791101 33.8059707618 32.179175301 30.1854734176 27.8786799953 25.4077365585 22.9542922899 20.6883192936 18.7859179475 17.4579903692 16.7770176405 16.294448142 16.1747784204 17.5757808658 21.7859000119 23.2572471351 23.0486458672 21.6698236621 19.2287971075 18.7636932269 21.1493745173 21.4825953563 20.6174853161 20.0233152919 22.0579824638 24.8923548044 26.4239689845 21.7710835267 20.6210759675 12.1341188817 9.21404458004 8.55023056695 12.4669451096 12.3975452228 8.1857709361 8.33386172519 8.52624049927 8.62824473314 9.25524784532 13.5765755491 14.5745001814 14.8233152332 14.5662811683 13.0465115771 13.2098215819 14.8070248477 15.680060904 15.9832588797 16.6994835995 17.7815505587 18.9725890255 20.2094619043 21.5715824444 22.8726471586 24.4294243808 25.3179711899 26.8219256515 28.5082584972 29.3235528521 29.4444454208 30.4810675082 31.0431722022 30.7291937064 31.1360639114 31.922328342 32.8267091836 33.7062782406 34.5048422433 35.2440221321 35.9623066905 36.663563808 37.3096302098 37.8416922027 38.2084468573 38.3846035847 38.3720664034 38.1864364572 37.8378528194 37.3180627218 36.5985413355 35.6338531266 34.3687203342 32.7582461769 30.8077560346 28.6090902985 26.3212421678 24.0980519889 22.0576441283 20.3510538469 19.1752440068 18.5451448168 18.3024140137 18.4912129891 18.4692541405 22.6275550709 25.4305220841 24.829799066 23.8418183181 22.603111978 23.0935128145 24.1912117384 23.3567526595 22.6070619948 22.80006735 25.2262755928 25.9838313476 26.6541290034 23.7522565615 21.5911730372 11.5255366076 9.28090177237 9.24435134881 13.4928098396 11.5646067209 8.93367573899 9.1037362015 9.43018152538 10.4776571795 9.42656968812 14.3404989021 15.1349946713 14.8928184276 13.5267536732 12.8060412572 13.3309183878 14.8403407915 15.4341877348 15.87424615 16.6925213579 17.7594417514 19.0061121481 20.3268472583 22.0251055495 23.4773311014 24.3912841017 26.3328232119 26.7592846855 28.6171299098 28.9636796127 30.239167713 30.0015515223 30.2264974134 30.6769625019 31.3102022583 32.1257313208 33.0240397626 33.9207458105 34.7618914576 35.5462390177 36.2957894372 37.0108580226 37.659758321 38.1944934626 38.5716099839 38.7687017764 38.7875179474 38.6422364459 38.3412335025 37.8743136879 37.2097710394 36.2979080947 35.0847571632 33.544737125 31.7194593367 29.7234423611 27.6827963678 25.6523986636 23.686689248 22.0498097277 21.0657701593 20.7555534719 20.8067211889 20.83160083 20.6138389103 21.1236326344 26.1449376336 27.1788160675 26.6118246367 26.7083970269 27.2759042839 26.5655469822 25.3236414373 24.9964842273 25.9840018779 27.2832451412 27.2536569386 26.7445301232 25.773018978 24.4201779041 11.143833963 9.82950204078 10.39145675 13.6143278861 9.90997483 9.96857921463 9.87815926476 10.1750228148 12.9897809452 11.8513261553 15.172853675 15.4458742787 15.0235012343 13.0032705146 12.882552513 14.4138266991 15.0287847828 15.2129567354 15.8220789761 16.7996035712 17.8562161229 19.0468948496 20.2272187214 22.1196358216 24.2898578535 24.33116076 26.2542224521 27.7773180804 28.7995217532 29.7692389453 29.7381035235 30.1365386214 30.0105448882 30.6152292392 31.474390759 32.3514945677 33.2499139834 34.1567538207 35.0349064072 35.8683374251 36.6587066183 37.3984166719 38.0604732805 38.6057688101 38.9980316068 39.2194973239 39.274807674 39.1778318825 38.9345215249 38.5332795831 37.9419758116 37.111918191 35.999801909 34.6082306842 33.0094313418 31.301755348 29.493114305 27.4815643126 25.4568070002 24.0615689867 23.6080040925 23.7593128068 23.9300024086 23.7389908454 23.1537470602 21.6662132522 20.7301685187 29.2979196327 31.4764303224 31.7619982949 30.9554005 29.0124391477 27.7139695704 27.7789661754 28.9264513062 29.3854986089 29.3495675467 29.2538089874 29.7230313586 29.9861036151 11.2812537327 10.7559940787 13.6654621033 13.8996339945 10.184435368 10.7725469271 10.6534297659 11.0758466959 12.6667167086 15.1848216229 16.068624513 15.7851754733 15.3477408871 13.1414100046 13.0554006391 14.86733549 15.1486507309 15.1992596384 15.8213065267 16.888820907 18.1428292914 19.367180208 20.3510663071 21.7328221726 24.4072010045 25.8031108406 25.9700138178 27.8341726804 27.9627830932 29.7480078232 30.477971756 30.1210774321 30.0045320841 30.7165028261 31.6616969078 32.5851645242 33.4988028095 34.4184600861 35.3266198871 36.209415248 37.0510930592 37.8277982299 38.5132119468 39.0771052069 39.491324425 39.7441954268 39.8437547951 39.8036610929 39.6284324343 39.3074474149 38.8128258216 38.1051367701 37.1626044395 36.0199634386 34.7549069109 33.3666795554 31.6457320563 29.479885248 27.5833669574 26.9474148537 27.423967439 27.9932055606 28.1597395168 27.7023589513 26.6185265353 24.6970204413 22.1234124925 21.886846771 33.2889227753 37.5526687855 35.4813317916 32.2847233367 30.8196386816 30.9193922366 31.6166776691 32.1363342826 32.8884522483 33.8118412138 34.6201907197 35.4151846737 11.7678762252 11.6920940977 15.3459453459 14.7328754752 13.0158912716 12.0424428729 11.6634550293 12.5075581002 12.3012211223 16.1651264675 16.7965025624 16.2091930571 15.5583798706 13.859407812 13.804656888 15.2920826235 15.2041940855 15.2915533395 15.9090248014 16.8935360349 18.2326632821 19.7833116686 21.5370776586 21.789847931 23.897892374 26.1009906553 25.8900848789 27.997179129 29.1863296898 29.1351243378 29.7867297671 29.7268997764 30.2541765179 31.0056043202 31.9013766024 32.8375160359 33.7729570978 34.7120337448 35.643658683 36.5677049091 37.4687572312 38.3001087382 39.0209514448 39.6110954152 40.056109515 40.3510435827 40.5054668693 40.5317937302 40.4347796034 40.2089752579 39.8378052108 39.3037227356 38.6186186668 37.8381032627 36.9787959064 35.823045171 34.0603262283 31.9489777631 30.5665171007 31.4958918494 33.883286447 34.5710962476 34.6837751696 34.0577908878 32.7129283304 30.2864134638 26.7076381582 21.8777599276 28.6134306338 38.6636106622 40.5362803886 36.7116061547 35.0721755633 34.9372812869 35.1771573904 35.6837415368 37.5136758923 39.0698465886 39.2955874502 39.7036233699 12.4527098273 12.3910827213 15.175035482 15.3116475146 15.3730135531 13.2623581548 12.7981677213 15.2426216135 12.7924030125 17.0341567389 17.3532179295 16.6382716599 15.7562606953 14.5480409058 16.1476367881 16.3114187721 15.4491279048 15.5237568235 16.1327059126 16.9899637784 18.1479316037 19.751355101 22.6463219939 23.6812324399 23.4211798058 26.0835052678 27.2838068386 27.583210933 29.1037200704 29.9177461422 30.0274075192 29.7648158318 30.4338277718 31.3023856089 32.1933285111 33.1225051454 34.0670245895 35.0355415928 36.0046275805 36.960011393 37.9090604915 38.8057681315 39.582691788 40.2124130627 40.6985036267 41.0490818732 41.2725174289 41.3759735656 41.3654441792 41.2466375685 41.025913839 40.7248774822 40.3952272521 40.0683263325 39.581080375 38.5291888738 37.2716402195 36.2138261253 34.8173065951 37.4424658747 36.6133117408 34.6110331203 31.9110044453 28.8253194289 24.3253261992 18.6519808189 15.4413049953 0.350387813343 0.014793671297 27.3036970822 36.5488835082 36.5301549465 32.1432368909 31.5869701511 33.8224480505 36.6173409913 41.4685286389 44.5199717488 44.8989311819 45.2774921332 13.1859221288 13.1385348219 12.7894673618 15.6966338532 15.9747473074 14.1159192946 13.8077628067 16.2933955744 13.5340702651 17.9464855974 17.8627806475 17.078573295 16.0445510162 14.9176824599 17.2732220231 16.9728275096 15.9581483629 15.9417532538 16.4712391798 17.2567204378 18.1819424474 19.5826760519 23.0608908165 24.7096426937 23.7186421866 26.0015021332 27.7196965862 27.2003249979 28.678702517 29.5453214321 29.405065325 30.0656783231 30.8267654431 31.6482070784 32.5161876148 33.4528400482 34.4077045264 35.3774352052 36.3869916282 37.3995183299 38.3942788448 39.3469739508 40.1897341423 40.8788610759 41.4243010553 41.8491068634 42.1589901026 42.3497197558 42.4302730932 42.4247112033 42.3750174758 42.3680835785 42.4824318779 42.6179633575 42.2837210256 41.5967806303 42.0177282624 34.5206137201 26.6540324775 6.04672695579 2.56476445086e-10 5.20845887935e-14 1.8039610634e-16 1.84054156862e-17 1.46057872145e-18 4.11415557573e-19 4.8426706695e-18 4.94801361359e-17 5.58930387604e-16 1.45987457405e-15 2.42423551602e-12 6.36349960096e-10 5.80679392856e-07 0.000300783458707 0.760233067853 38.8710073873 43.3150497416 48.1202272921 51.653238741 51.9777207027 14.0936291275 14.1952634052 16.3503109157 16.4032201966 16.4951114516 14.8436939957 14.8759991377 17.2126010114 14.59355145 18.754937675 18.3586207466 17.5439037087 16.4113092041 15.3421521197 17.5913117796 17.2642453233 16.4545652564 16.4236541269 16.8604536326 17.5597642322 18.3946233782 19.5245226501 22.5277566939 25.4689358191 25.7640157613 25.4252509438 27.8592870235 28.9546899182 27.8355784197 28.3690670497 29.3196812634 30.2635785504 31.1533562816 32.009837283 32.8898990044 33.8127997325 34.781592917 35.7793776801 36.7996048949 37.8634915477 38.9268867398 39.9396984071 40.8450224111 41.6041743265 42.2332153795 42.7592337251 43.1786866538 43.4717545742 43.6405742972 43.7337655342 43.8690563047 44.211537285 44.8039209178 45.1848653797 44.4002709435 42.5608054051 27.5896633579 6.11744511915e-20 6.7285552512e-23 1.26136357344e-24 2.13809769645e-26 6.18604712414e-29 1.75793955892e-31 3.0429601033e-36 2.38021242105e-36 5.77860841882e-36 3.8952389492e-35 1.82450817641e-34 6.73974231104e-34 4.28300091321e-33 3.35349410547e-33 2.90933846259e-31 1.6558997057e-28 1.66453254375e-26 1.26309901854e-24 2.90861182402e-22 4.89610897229e-18 38.8039308886 55.7281017292 51.3221950074 14.9488084204 15.1446589727 17.9867860464 17.1510307142 16.7220887767 15.5628884812 15.901491563 18.0125566849 17.9960423413 19.7642863284 18.9276298843 18.1061193561 16.8672873298 15.9008828016 17.9272133584 17.4765341904 16.9110921685 16.9048686702 17.2604258582 17.8675540983 18.6521635556 19.6931437078 22.0385028747 25.6727357106 27.0372658192 25.2315261642 27.288230061 29.0183935191 29.26452105 28.6827085462 29.3351891203 30.428801142 31.4663694521 32.4015889539 33.2671580805 34.2021182833 35.1807743649 36.2100907699 37.266013527 38.3651341029 39.4965230553 40.5873080294 41.5563780994 42.3800164329 43.110568135 43.7924847218 44.374292488 44.7721234633 44.9790862907 45.1488363268 45.502383468 46.2246815162 47.2827281074 47.2613818401 39.1431662653 16.0030100927 3.3828900884e-26 1.36990723273e-28 3.961549959e-30 5.76729055631e-32 4.68580170256e-35 7.81870918835e-38 5.51144398949e-39 0 0 0 0 0 0 0 0 7.66547869476e-43 2.58540727011e-40 3.86721820014e-38 2.24363615549e-35 3.13380908302e-32 1.69703771254e-27 2.57715663237e-23 2.00925002468e-16 61.5948684968 15.6411723563 15.858636658 20.0716669264 17.7385162822 16.7123019138 16.1882563576 16.6413516541 18.1629786192 19.5648010887 20.9064664422 19.6462943689 18.802008898 17.5687162135 16.7360863786 18.4665499606 17.8311376332 17.4330210244 17.4240098158 17.6943399627 18.2094056706 18.9143566021 19.8754683921 21.8114435452 25.4960468689 27.9650675222 27.4235501591 26.7524285081 28.3323627117 29.0694796059 28.7814919518 29.7041502949 30.8092535651 31.8950308782 32.8365717771 33.7314203386 34.6296259835 35.6260520347 36.6720205265 37.7707879053 38.9155849683 40.1013386109 41.2756623779 42.3419291829 43.235160328 44.0711152696 44.9422951529 45.7286502613 46.2345564377 46.4669837695 46.697104573 47.269032502 48.4250232103 49.6362540128 37.5397037841 0.0645404150114 4.8976493688e-29 1.60621574521e-32 6.49487309942e-34 8.85556395386e-36 2.42843630483e-38 0 0 0 0 0 0 0 0 0 0 0 0 0 9.87696842262e-42 9.81491613637e-41 2.15164227573e-39 1.04330158653e-37 5.7936931092e-34 4.8224592963e-25 9.29606870202e-30 16.1677487881 16.3778071525 22.0674676538 18.1827180398 16.9082236744 16.7509849228 17.4267549956 17.6626630266 20.4841566624 21.7185480964 20.3292400665 19.5049465434 18.45139775 18.516411836 19.2242314732 18.4230741762 18.1435278916 18.128200919 18.2327156608 18.633182633 19.2254916602 20.099737681 21.755831532 25.2797670688 28.3127246443 28.9849218164 26.7320686748 27.3901675216 28.0260915544 28.8195476004 29.9515896221 31.2122336848 32.3201410529 33.3171735969 34.2448856648 35.1957343228 36.1348169145 37.1928886405 38.3185863365 39.4964068922 40.7642027737 42.0366922049 43.1938130822 44.117984353 45.0104351327 46.3623234092 47.9475874785 48.680122574 48.3894371263 48.4939901901 49.1867392343 50.511742117 37.0713603694 2.59174844981e-23 3.90610441958e-28 1.75233985762e-39 1.77076113451e-36 2.88939418041e-38 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.52596065553e-40 1.03335535169e-39 1.90559294303e-37 94.7763991504 16.6012587766 16.7783262507 21.9336436529 17.7131686136 17.1438348689 17.2254778887 18.3073579059 17.7294027622 21.2667460039 22.4601480346 20.9619533601 20.1434678313 19.1356120003 20.6087724624 20.2542749223 19.2090349213 18.9584140104 19.1546429085 18.9877359262 19.2219140668 19.6316697845 20.3710035134 21.832986371 25.0495354952 28.1174017232 30.006938795 29.0743219483 28.4782517975 28.6751356574 28.9535829169 30.1461636146 31.7015673074 32.7289356809 33.8104037754 34.9344459901 35.779497085 36.7265247777 37.8040109861 38.964364855 40.1720727743 41.4460004577 42.800252351 44.1028213552 45.3208500751 46.616383887 48.3023158658 49.8403102836 50.4366450202 50.7794259587 51.0126763303 51.2749646253 40.5399565734 1.17862606711e-22 1.07585023571e-27 1.41401413961e-31 1.92050222836e-33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4.69535633736e-40 3.41753211677e-29 17.0776334008 17.2300994046 21.5965196819 17.4344558276 17.4324316826 17.6022370323 19.0598035712 18.2041568128 21.9588939845 23.1825541785 21.5755149499 20.7609866259 19.6903560678 21.3701358668 21.1937643173 20.0419176894 19.7510391144 20.0365854321 19.8851848981 20.0212996279 20.2256066939 20.7022371707 22.0667520582 24.9518919563 27.7566802762 30.2280610373 30.1834315661 29.0658833796 28.3203340004 29.3375142376 30.5117344519 32.0446055109 33.3971984881 34.6300240201 35.7115062846 36.4765792725 37.4012082721 38.4961269303 39.6897323124 40.9495181379 42.2598238054 43.7075509261 45.2777227118 46.9441965028 48.2707557566 49.3331337758 50.7232683192 52.0503055256 53.986416568 55.0581484209 44.7562953659 1.07395755013e-21 1.42601059844e-27 2.45908216572e-31 5.04370415824e-34 1.22117779774e-35 4.09907935148e-38 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7.89070424328e-41 1.04401224344e-40 17.7774030243 17.9290463296 21.3066616236 17.7128775402 17.9571828379 18.0640888987 19.1009983066 18.8984836475 22.4687870862 23.8645835484 22.2079088368 21.4092253585 20.3379066135 22.0420605106 22.0182604438 20.930836197 20.5756500446 20.8788764697 20.755212535 20.9541964279 21.0691351103 21.1826430987 22.4912121837 25.0599291957 27.5373292671 30.2099438958 30.6834125345 29.8645736038 28.8181043975 29.4785008996 30.9539792128 32.1900037101 33.4591702154 34.8767723981 36.5503527586 37.4567443497 38.3100250691 39.3003999401 40.4712402323 41.8095938174 43.2348144225 44.8170445589 46.8631631497 48.6811496012 49.5129144742 50.5080729011 52.4754080362 56.0587866389 61.9524215374 49.3661848284 3.06833016787e-22 5.09703513493e-29 2.10927233115e-33 6.91561173736e-37 4.33917549071e-39 8.79515707173e-39 1.35060793334e-39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5.83225108388e-42 2.64825384318e-41 18.8425419283 18.958441602 21.6140996346 18.6033179494 19.0520604582 18.8789173949 19.4235302553 20.1416950144 22.5636806482 24.3814243197 22.8877997089 22.111871869 21.0760937311 22.8065928025 22.8609100536 21.9592644587 21.556329696 21.8457659905 21.6265886358 21.9694295521 22.1959212988 21.8645066953 23.0008296041 25.3812419001 27.5219520035 29.9970056461 30.8624495679 30.5280931082 30.5969794201 30.2358288597 31.218490564 32.7608519401 34.5546662657 35.4117676307 36.8489653319 38.40756334 39.344944516 40.3832876464 41.4780951198 42.758029521 44.3165074175 46.4585285683 48.9793994016 50.2250272012 50.6882665694 52.2342594558 56.3752287753 62.5258628538 55.8729872242 34.1441500396 7.72228336663e-31 7.20980447512e-36 4.9331858944e-38 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20.3380809179 20.2380995726 22.4244519019 20.3912664928 20.9052029999 20.0815491125 20.331180018 21.9381642658 22.7994683027 24.9867648094 23.6645935444 22.8783125328 21.8792540217 23.6026709528 23.6956222633 23.0850058345 22.9751892286 23.1058849876 22.5868329602 23.0623807699 23.5933465922 22.8243785719 23.3960502658 25.7935539925 27.7182596926 29.8110933758 30.9356539102 30.6543970698 31.7070644461 31.7127027114 32.1268988225 32.4928633251 34.3383519317 36.4455790676 37.7336930641 39.1496088911 40.3772981051 41.4706844998 42.6825256936 43.9899292398 45.8597724434 48.7952470712 51.0746348871 51.8989761945 52.8576001852 56.1970627457 63.126120168 59.1087078419 34.421616661 6.89149946213e-33 1.20477956236e-35 5.51653200272e-38 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 21.9116067408 21.4274762571 23.2812977536 22.7594649193 22.5274451684 21.4528320503 21.3080513113 23.0073997731 22.1156116902 25.4534362833 24.5206032461 23.69894293 22.7344798182 24.3975131867 24.4614726958 24.01621041 24.8973638992 24.6082769528 23.6460930261 24.2412465865 24.8368810297 24.0337081926 23.5350690981 25.7170031212 27.8121218811 29.6412246304 30.8942437394 30.6354421506 32.0279044889 32.9057511846 33.4496396871 33.1751219322 34.3916029511 36.3545936622 38.553205268 40.2953176584 41.6287526176 42.7186297442 43.9285867874 45.549260847 48.313081157 51.4423991343 53.3422185333 54.5306043979 56.9021297708 61.7225675995 60.8012267134 33.5021465983 1.85559592731e-32 2.68636660013e-35 9.40817407895e-38 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22.6543241151 22.2201096616 23.7942746051 23.7332682503 23.505126731 22.7191773239 22.3975395106 24.2821538865 23.0889072523 26.0447443611 25.3812941688 24.5462918319 23.6349613295 25.2012476151 25.2110961352 24.7684356068 25.7997665074 25.6409649389 24.6247778483 25.3533347595 25.4946604095 24.7534168509 24.3814956773 24.5873043519 27.1360862624 28.9616695247 30.5133548329 30.429726281 31.9536470249 33.3437729924 34.5114793057 34.8094426386 34.7373023634 36.3052789382 38.6856417603 41.0929357593 42.9889072615 44.3430717222 45.5473561399 47.9454152501 51.3657448261 54.2341063009 55.95668834 57.9170630343 61.5669364638 58.2352374818 35.7362024422 25.4627298435 8.8304042353e-35 2.51494484206e-37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22.6561422741 22.6571205937 24.0542046195 23.8682732049 24.07444752 23.6649764943 23.3181693081 25.5300414213 24.6500339912 26.7804728812 26.2798553216 25.4028402585 24.5751821521 26.0289407789 26.0046500613 25.6198955907 26.523785908 26.5054158261 25.6077209643 26.2607782049 25.3401495013 25.3778463067 25.2544335822 25.4711403716 26.2257489505 27.3302757086 29.397580951 29.9188423536 31.3478063301 33.1787708379 34.8008388829 36.0216460155 36.11383069 36.9627226722 38.8002301695 41.2362406227 43.8692594728 46.0335052452 47.8432536489 51.0467895797 54.5317023682 57.0079815689 58.527620637 60.5475872001 56.3416236347 37.9832468784 39.9797117662 3.06729010799e-34 6.87101677386e-37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22.7768250505 22.9094609368 24.234292202 22.9292948743 24.2513601227 24.1277042133 23.8847215426 26.0509088242 25.3904632507 27.4911726939 27.1809509028 26.2328482236 25.5597277301 26.8678459112 26.8200743991 26.5895773119 27.3426045739 27.4757142494 26.7183617431 27.5448078281 26.5515825218 26.8274295648 26.3800377352 26.660948744 27.8240858859 28.4190703679 28.7238636026 29.2804585888 30.6132120341 32.8089922946 34.4926996842 36.0242326844 37.1468212336 37.8780882508 39.8424031245 41.8131769412 44.5375997081 47.5654485992 50.6401805948 54.4425605847 57.6526995901 59.5455185381 59.6433151835 57.7003344107 57.9252373853 35.3578524032 2.57384353082e-33 5.85948074323e-36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 23.3106802263 23.4094065246 24.4073345027 23.1788960181 24.3745838371 24.3139968853 24.2223115601 26.1454917396 25.8467340515 27.9713055752 28.0265456106 26.9757742331 26.5736396288 27.66454492 27.5690765606 27.5082317797 28.1155870353 28.5147498896 27.8734205126 28.857258445 28.1927128763 28.6946237393 28.5611428859 27.5643944706 28.4954564467 29.3353597955 29.5453068977 28.6963411627 29.7472959301 32.3211527443 34.2482809678 35.3791790848 36.6717440227 37.8811602261 40.0018891394 42.2876197603 45.2625880032 49.0711957601 53.6168148578 57.9999515114 60.6308771861 61.3397194371 59.8754542018 55.1995639538 35.7414398245 48.57409478 4.08311653438e-35 1.65571283256e-37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 24.0056938732 25.0257304594 24.6964229077 23.940275733 24.7344030745 24.5258703198 24.5126417413 26.1784677521 26.2294366421 28.0894619477 28.8081161573 27.5905147192 27.4295890683 28.2631828929 28.2191932626 28.1495754807 28.3433709801 29.4184867307 29.0566303171 29.9644234509 29.9274653097 29.8902798849 29.7969826891 29.4251350066 28.7044781103 29.2725126988 30.1218297996 27.784329834 28.6894229687 31.1634896294 33.8234534387 35.3886620018 36.7480595142 37.3578516921 39.3811100518 42.1251573022 45.5453551682 50.4165001414 56.6158152765 61.5200206338 63.3046706761 60.5560113472 59.1973124314 62.4780649273 42.3692162481 2.76757342569e-34 7.06351305732e-37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 24.4545898079 25.5245040083 25.1756921947 24.5765990381 25.2049688435 24.8671334348 24.8329351379 26.2506860627 26.5696807761 27.9169079749 29.4528097947 28.1254650027 27.8630763986 28.6836298023 28.8642314713 28.658090442 28.4549082234 30.00271162 30.22454696 30.8818970173 31.0641314319 31.3046177508 30.2780011758 30.2791432106 29.7171924896 30.5282332602 31.0400755155 28.7808364364 27.4795309811 29.4167818852 32.3754521199 34.8476590624 36.4163886639 37.1987167906 38.2487816486 41.0732896683 44.9368839574 51.2723477399 59.4596566772 65.1312105251 65.1664088107 61.5639449986 55.4467567051 32.0242296914 53.5231078117 8.16030420231e-36 2.74232564283e-38 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 24.6792071857 25.648920731 25.5248643213 24.9151414843 25.6164777401 25.2925712835 25.1844724315 26.4249829536 26.9104663291 27.3451821425 29.8082535217 28.652399428 28.0778174552 28.4818670001 29.472264131 29.228474907 28.8226888004 30.4336179251 30.7979012003 31.5756116144 31.8611671453 32.3954119335 32.5839385796 32.5900762624 32.1815305791 31.5077976004 32.1660289116 30.1150687126 26.6333989138 27.4449762533 29.4491030758 32.486320785 35.0218497282 37.1230479237 37.5908468694 39.0376027299 42.7207353549 50.7237560127 61.9635000997 67.756510927 65.706293308 67.0984160707 67.3230432066 35.5096569699 1.16920093722e-34 3.19682248839e-37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 24.8320737703 25.6959451732 25.7180953103 25.028549813 25.9017698831 25.7651844702 25.5003940241 26.6445254411 27.3696916924 26.6170100627 29.9375532361 29.2287293468 28.4081767276 27.8887766116 29.9707725287 29.8301484906 29.4331487373 30.9794461162 31.1558749211 31.7902974101 32.6380689808 32.2797195576 33.8094066349 34.3347336343 34.3362172914 34.1271388186 34.0285015296 32.9185039211 28.0954587901 25.9364729323 26.9542044439 28.7628563632 31.6153916045 33.962165457 36.5032831539 37.0439467541 38.8666537409 46.2816424854 64.6056365376 70.4245010062 63.7238987207 60.4863272386 68.2148859279 63.1387663833 3.96688802036e-36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 24.9131364736 25.6619125263 25.4129399234 24.9757091214 26.0469443999 26.1409852231 25.6758755941 26.3782250307 28.0122701622 27.2555799648 29.9459695779 29.8604939593 28.9397392081 28.3054459219 30.4750851773 30.4314355642 30.3023994444 31.7203538074 31.7750483294 31.6025451999 33.4888083363 33.3836309842 34.6899182938 35.2953264774 35.8270530625 36.366171733 36.6643795583 36.5092807731 33.851095985 27.2625257217 25.9105931366 26.3416517777 28.59995568 30.1011809069 32.2437805547 33.934876435 34.3987734557 36.0154479171 59.4240041191 72.3968403339 71.909572528 60.4173700251 18.8226709823 54.6816877105 3.26580393139e-37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 24.8888500791 25.5109551481 24.9311100061 25.0380547052 26.1596080322 26.2144155225 25.7562134449 25.932943572 28.1653042703 27.9122236439 29.5493298445 30.4833725764 29.4954638758 29.2166921338 30.9610205469 30.9658846284 31.2732549838 32.3813120552 32.6651294111 32.5231523014 34.3009310144 34.6777630287 35.7042251422 36.0094141144 37.3222449564 37.9973562716 39.1229165979 40.0844426809 40.4999887276 35.8602686434 28.7474386483 27.3264254613 25.8716814665 27.4424530257 28.1520881591 28.4201659505 27.5257197257 21.4861141073 31.2513386305 62.5825910942 79.836425941 83.4628933465 44.4718552673 8.12195109776e-36 9.94818796957e-39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 24.8272162656 24.9747746222 25.1975215539 25.8247314391 26.3296361126 26.2557918135 25.8886393246 25.9317112556 27.762365232 28.1908354414 28.9489373917 30.9226211756 29.9183269093 29.8463497116 31.0996067204 31.3815811929 31.5214684454 32.5592507706 33.4301996507 33.6946671203 35.009053923 35.5387273351 36.4343056619 37.5079787224 38.5929499101 38.8244027007 40.7173631223 42.2889736815 43.9939841901 45.1218269434 39.9268794745 32.462179916 29.2470241811 26.5256138491 24.9878457646 23.1494689673 17.8174520464 14.2236811656 0.192310365389 0.031619051568 56.9559303993 84.9044056096 75.9866337454 6.06985109626e-37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 24.7357399758 24.8319263086 26.4296083807 26.4071395379 26.3335499633 26.2136354206 26.0701510347 26.0723976328 27.5061378226 28.4718663339 27.9385547447 30.8286581515 30.2669771282 29.7899905037 30.3770501989 31.6971914159 31.5033791896 31.6121944496 33.7911333328 34.0715312984 35.2278599955 36.3486926314 36.28423896 38.6978557076 39.6878971887 41.0281210862 42.3630216987 43.9190717455 46.0159983625 48.355266056 49.8717052305 45.8654832285 40.394451352 35.5720481076 32.8246297155 31.1674014301 30.6800085412 31.4493757519 20.550737204 21.2260828344 1.71236132969e-06 38.0692396259 72.1143118816 7.67366724776e-38 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.32783853001e-42 24.4843883422 24.7192605071 24.9989972162 25.9553036249 25.9939817968 26.0243533807 26.1911232567 26.0459019895 27.2658473683 28.5654515871 27.9554526463 30.0909328727 30.7340314335 29.774167459 29.3576641758 31.8337898685 31.7103366308 31.7376913414 33.8758557576 34.2767596745 34.5353333697 37.1521697251 37.4189414196 39.2779723751 40.3013048686 42.4611431966 43.6830747759 45.3745250568 47.5506251674 49.9893878128 52.5829837763 55.3877117655 54.468818255 52.0150717287 50.2115442393 49.7635906189 50.6218654663 53.2176268864 56.4135574456 63.1149169119 53.5956632999 1.51174732344e-11 2.47235364078e-36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5.83225108388e-42 24.0953172168 24.3693323748 24.2707509921 25.3709509271 25.8102202979 25.8338539888 26.0417445484 25.7597656011 26.398344761 28.2152612178 28.0462442033 28.8806637677 31.1202357962 30.0234727138 29.8421206133 31.6398331123 32.0550587771 32.2203045157 33.6862499377 34.7534692284 35.1524645672 37.3847662962 38.2252731095 39.5925716927 41.3834587272 42.9566783793 44.746555115 46.7795536405 48.7375750409 51.3930488214 53.6339783768 57.4322507752 60.271796705 62.8250753552 62.9343640047 63.5991363853 64.7985581912 68.543347894 75.24457744 84.9287190628 94.3716362152 57.9855679903 3.34089895141e-37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5.83225108388e-42 5.83225108388e-42 23.6944205377 23.9910345948 24.580017322 25.7197288005 25.9238654265 25.6375278455 25.6456907162 25.3238893144 25.5611888349 27.3378148068 28.0574935492 27.1971028615 30.2690654551 30.4234996454 29.8114737719 30.4123290105 32.2723831815 32.1465071491 32.4748944753 34.8683072456 35.4273095068 37.1707105396 38.7790346619 39.06896577 41.8606165455 42.7263829981 45.7187597351 47.2686065956 49.2202873677 52.0629759318 54.547287158 57.2358882364 60.0256090044 62.9871809642 65.0146469751 66.1048482824 67.5117403809 70.2680901475 75.0070968503 83.2291762053 99.981768633 97.5588362463 4.64998171151e-38 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.84650221791e-42 5.83225108388e-42 5.83225108388e-42 23.2498264826 23.5078292118 24.905375925 26.2113802338 25.564807927 25.2126489113 25.1236302315 24.879245519 24.9497677684 26.4562549546 27.6974541928 27.4114085832 28.5319632636 30.9409283644 29.7256970796 29.5279651235 32.0029774566 32.1427742857 32.3811746082 34.5683661061 35.4984145275 36.1947941083 38.9480600294 39.7306379198 41.8570339892 43.609629096 45.5720298158 47.2730843247 49.593793437 51.7141712122 54.1317205887 56.3890786806 58.6617686272 61.0319227278 62.9527897614 63.9414178904 63.7141105849 62.5053526726 59.6724445768 59.1683535461 64.430811375 87.5164354048 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.5437235959e-42 5.83225108388e-42 9.35067426759e-41 9.86669646688e-41 22.7477042722 22.9215509274 23.9258083031 24.8410078993 24.7978956085 24.5648647388 24.483070509 24.4445530315 24.2522765596 25.0424996544 26.6306556696 27.2844473771 26.4067306731 29.5738048318 29.9573613122 29.2268044588 30.2258741444 32.0882281033 32.1432172956 33.0357254045 35.4733907987 36.024625301 38.3912476738 40.0808718807 40.4879754798 43.463383215 45.2150283798 47.5596208486 49.3341592366 51.2854219366 54.0446910856 56.0032102367 58.1052136626 60.0847147632 61.1820981866 62.0502789788 60.649023904 57.3607156389 38.2132678509 53.997793015 1.59328211323e-10 3.68608130244e-37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7.25819222459e-41 2.44996627409e-40 3.65148655157e-40 22.2377432351 22.3183043899 23.1924123109 21.9963548972 23.5958000967 23.8008892344 23.7343246804 23.8210156247 23.3162363581 23.6715620788 25.3020751646 26.6725469058 26.6115879202 27.3416593235 29.9632258064 29.1682467639 29.0834203875 31.6234379621 32.1497273199 32.2508420608 34.9336653029 35.9519145626 36.6592205693 39.1583043759 40.5905530119 42.7021344348 45.1330683302 47.0487370151 49.3828896713 51.7007243956 53.9343810208 56.0543381821 58.4804693393 60.6581753753 62.3252606264 63.1987975957 63.6307485755 62.8564097228 55.304965998 64.3792224505 5.2177528e-07 1.0932693614e-37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.30451659572e-41 1.18383053338e-40 1.66435180574e-39 1.12860077575e-35 21.5212463742 21.571460827 23.0465554554 21.9561552996 22.5947582641 22.8963806266 22.8757259963 22.8860708097 22.4369143215 22.5118736491 23.4800689318 25.1817839212 26.5047495072 26.2825740166 27.7708050669 29.510385129 28.5784212987 28.3706735081 31.5891482223 31.4315543469 31.9086320063 34.9433350278 35.6977025518 38.0308374152 40.0379656224 41.5869382249 44.2792590626 46.4965566662 49.2642326259 51.2791626328 53.9330178152 57.1457404473 60.1598629606 62.7538253327 65.2767088039 67.7535667767 69.7511992875 71.1503121124 76.3080326809 81.4115210712 50.7673180237 2.91463963844e-39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.08513777811e-41 6.9312432383e-41 6.65000355384e-39 1.92764028411e-36 9.30806869894e-27 20.4074608319 20.4226735491 21.8224541903 22.2345922816 20.8498202029 21.8409973829 21.97853924 21.999199031 21.9039361434 21.4568474839 21.7629151023 23.4216466251 24.9162655314 25.8383736904 25.139416083 28.1196723746 28.60649324 27.446733816 29.8972879436 30.7307920839 30.7277948825 33.4827016665 35.011804213 36.7745289028 39.0051836946 41.4113235793 43.4247677798 46.5916077627 48.6191136463 50.9767159292 55.0587038326 58.5230707481 62.1088434633 65.4453929784 69.5323209125 73.0784489152 76.3968741876 78.3574686832 81.1930899765 82.2399439359 40.5509301912 2.00261586862e-40 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6.70113251421e-41 8.29825071428e-39 1.90830181105e-36 7.16629505339e-32 1.45301416223e-21 19.2851473094 19.217374764 19.2373354443 21.5381962768 19.6782518979 20.7852998594 21.2055783882 21.2416825561 21.3391608612 20.5692619802 20.6536450774 20.7812245279 22.9113897877 24.5180491946 24.3108197395 23.9252837799 26.7985034169 26.7434971122 26.6472479933 29.0742155926 29.8642161443 31.009281549 33.5426372775 35.483427095 37.7974959126 40.1661193649 42.9324704142 45.5565157726 48.3100382157 52.0709955394 55.9645975395 60.0433518695 64.5841993869 69.620805435 75.2671151697 81.1470656269 86.1526274102 91.0401299913 95.33530269 85.6537970666 8.62322527467e-09 4.87136662175e-40 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.08513777811e-41 4.94659907377e-39 1.11404531534e-36 1.64912625479e-32 4.12823722149e-23 1.67493598607e-06 18.6756831696 18.4944025267 18.3517599071 21.2721153347 21.7458330165 20.6440424335 20.6722922607 20.5915211129 20.5129541528 20.0602258803 19.5028708816 19.8068522166 20.5923494466 22.1493733478 23.3220218342 22.0807769518 23.3451182493 25.0316200196 25.1129376244 25.1084474787 28.0209977246 29.2969478666 30.7025750514 33.6838290112 36.0818963411 38.557302783 41.6984747766 44.8677163009 49.3142256697 53.5170584373 58.4221268427 63.7312688774 68.8455718421 74.9238760904 81.8712610282 89.1204900607 98.6598279064 100 100 100 45.7446275539 4.87136662175e-40 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.03919208886e-39 3.40397343198e-37 1.62772654057e-33 3.92586754684e-26 3.64607847633e-10 75.9405290412 18.407450111 18.0134055301 18.5578684647 20.1829712854 21.34088838 20.7336740208 20.7898921604 20.2501938637 19.8224496156 19.6841873073 18.5266359212 18.6589812295 18.0823562498 19.4383757759 20.2098733346 20.8100781591 19.8804576925 22.1369362386 22.7052971245 23.017550648 23.01100174 26.5455925587 28.3630729971 30.8955652043 33.8107303119 37.6076428107 41.1125246057 46.1169199756 50.396665024 55.8051096373 60.4544389229 65.7865921106 71.7140223042 78.7149829422 86.085588759 95.3918085782 99.9999999997 100 100 100 52.6246790539 1.30781087897e-42 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5.22372927618e-41 4.84395532536e-38 1.26750483519e-34 3.37861449256e-29 1.67443950099e-15 65.8217229445 69.2492023404 17.9841399439 17.1612197326 18.0464556614 17.9059493639 19.6424702126 21.4313852339 22.2594711143 20.5069499961 19.2846823008 18.7006977456 18.0913239255 16.5557107288 16.8758235121 15.1660684859 15.6746332627 17.2894188639 17.3627071264 16.3978783705 19.190540043 19.4054117069 20.2729934222 20.458330261 25.046104456 27.6853782691 31.6665521437 36.5531491137 41.4869152685 45.9702266798 50.9051231542 55.4653710159 60.4524007974 66.7547240767 73.921789902 80.9473552551 88.5890619981 99.3074483751 99.9999999992 100 100 99.9999999999 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.00862103633e-39 5.32426610009e-36 2.45276257279e-31 1.29543836713e-21 44.4285112798 57.0888149989 60.2757792166 17.5556899249 15.8685536335 15.7509866812 15.8831463332 16.5165615945 19.6373961137 22.2952268154 20.2304298271 18.7158061885 17.6979448446 17.1177632694 15.4248093175 15.3237901045 13.4545180439 12.1997508479 7.87249953809 14.0659462836 12.6092771814 13.0084644588 15.2110382844 14.2784875086 15.6578580658 17.5610873617 24.4683477037 29.9477054951 35.268420776 40.0922513951 44.745980186 50.0232393887 55.2479330257 62.3700424882 68.614968871 74.9464492837 81.6042031634 90.0858718971 99.392722137 99.9999993675 99.9999999812 99.9999999997 99.9999999992 99.9999999959 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7.41830381603e-38 2.08191293437e-33 2.49173326076e-26 4.19089149781e-07 53.3639675714 52.8619302555 51.6476166993 17.5315336553 14.47268063 13.8949346554 13.9606494864 14.4393668816 16.5228920763 19.2393371364 19.7303821824 18.0018511132 16.8004870962 15.8278508283 15.1887943682 11.92348242 11.8969324856 6.02636235651 10.456648529 1.06083378613 11.0614926414 10.1354378881 4.58200182708 10.4647711554 8.21847804149 11.3576136279 20.4216609015 28.3676510265 34.3892437502 38.8329875677 45.012033579 50.6284334369 57.843401527 63.0014991924 68.4721502887 74.8533738643 82.5360829058 91.7155155137 99.9963359009 99.9999999951 100 100 95.0305147703 9.62644567953e-11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5.58241243598e-41 8.13603532952e-36 8.09107297925e-30 1.94692511437e-15 52.5810639485 53.4788965295 47.3096050198 45.55325327 17.8330922432 13.3705256498 12.3326167855 11.9879288269 12.3699958704 13.72290999 16.4825950633 18.9821332142 17.4582856903 15.9758829248 14.8092835575 13.6210386482 12.1932787707 5.66601541215 5.46038987082 0.0338140800802 5.89375129653 0.0139415982664 11.2610223038 0.572438370661 0.165636902862 0.410770608015 11.7797963126 18.9988863332 27.6494818091 33.8558199569 39.9259484872 46.0596294106 53.0776638343 57.6068068257 62.070472746 69.0958041203 76.4991867687 85.012319217 94.7342026512 99.9999934474 100 100 68.1397856791 9.03150818813e-24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6.75292213399e-40 1.81123303787e-33 5.25566050942e-21 53.2586081498 57.1027123266 50.4788254656 44.6487296472 42.2130651094 16.8080991904 12.7003693191 10.9392789242 10.5223552186 10.4390491585 11.3519567932 11.470011998 16.3237909899 17.221396169 15.3544233579 13.9784266033 12.6230080655 10.6820783021 6.63744671136 7.58337382955 0.0221204318917 0.000286386127536 0.041064134806 0.0125999990728 0.00420853094979 0.24158420785 0.21141119911 13.7529449779 20.307338938 28.3175875723 34.4335589948 41.0801459108 47.6484791831 52.1754277723 56.1592742645 63.4583835216 70.3980352185 77.913867569 86.3874569064 95.7070138082 99.9999950946 99.9999999997 100 3.24792837488e-25 1.80336129967e-24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7.96908228232e-37 4.69898596228e-28 46.6689129083 63.4146463026 55.1024146909 48.1673264139 44.1387747128 42.7444647566 15.1725017748 12.4098200867 9.87906371166 9.38593834573 9.26852135879 9.05140673773 10.8147559071 10.9526210163 15.3652570205 14.6783772806 13.2868651015 12.003310074 9.37405340763 6.88702420759 0.000128353587469 0.000201772188635 5.47244113969e-05 0.721968175219 0.000677701142867 0.00688285846257 0.00779149053726 10.7558986601 14.390558579 23.6696002934 29.3473550087 36.3113975359 42.0106576699 47.2470010137 51.2827245969 58.2787497458 64.7465233728 71.6414102346 78.9091943085 86.815656553 95.1749658277 99.9992976648 99.999999748 99.9999999989 4.55782056496e-24 8.02084478215e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.51348058705e-41 5.94066154379e-34 6.69684281056e-07 67.7724419237 61.5435937241 54.2979986343 48.6634993709 45.4994808618 44.6553593135 14.2539259246 11.5148933023 9.0030248168 8.13270997594 8.44292758689 8.08214871149 7.1186731195 9.47915363785 9.31739719574 13.7411762965 12.8677275122 11.6999552562 6.96916874185 3.8750711916 3.96241295448e-05 5.88636488313e-06 9.39023014284e-05 2.70924403261e-05 0.000382399185897 0.000269254151213 9.88393671135 12.4229393954 20.5253621947 25.764399033 31.4348846585 37.3112356377 43.4410054914 47.6225135662 54.0617101069 59.8791513636 66.2315829822 72.1425537342 78.4553242444 85.0677182405 91.6625185739 99.6154414738 99.9999972999 94.3846710089 6.03819180562e-24 1.05215451415e-15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4.72029667887e-40 7.18303113368e-22 68.3958524331 67.0115515829 60.2983182068 54.5799294587 50.5298148626 48.3275229335 47.9653963787 14.4357638185 9.98783476482 7.63771307344 6.58277818258 7.64370749078 7.7747536428 5.86493301871 4.02299543623 6.82232764323 7.64281317619 13.2939508923 12.7354738891 7.60948622256 2.25473004665e-05 1.82205076246e-06 2.520530492e-06 2.75247676554e-06 3.50386988848e-05 2.97437662934e-05 9.27218246851 10.6872929689 19.31430119 23.6847002654 28.4079815731 33.8505534976 39.744502933 44.6279809199 50.598510358 55.8150077476 61.4677820513 66.6452267665 72.217113584 77.4283465915 82.4763245351 87.6993364374 95.9699218223 99.8107938825 28.8927013404 2.20670474292e-23 3.10912223974e-12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.00441941117e-35 62.7097886821 72.9926775796 65.9388635352 60.3026824438 55.9604900314 53.0598764462 51.4743299481 50.3971610342 15.3755519248 8.05939509249 3.75864962918 4.95881033074 6.69994009623 7.87286931001 6.54902067658 0.371938409194 5.41993831331 5.23482360148 7.84636013737 11.4176784527 8.25126612178e-07 8.95212249534e-07 3.84241443239e-07 6.08625442327e-07 2.12154913722e-06 5.34989344305e-06 8.05539532724 9.84423216646 17.7764515084 21.978443698 26.6417105568 31.8118010485 36.5638624054 41.7045304086 47.4849093588 52.3975056473 57.6924217838 62.410666632 67.6955413764 71.833224561 75.5246236519 79.2757452086 83.5735202087 89.4241714046 81.8392116852 7.76992869612e-05 3.74319644187e-22 85.012829938 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.33441554179e-41 41.4463011473 78.2098940294 72.3986812762 66.1131595371 61.6693361466 58.4959800839 56.2897594593 55.1706644262 54.3911840186 15.1859046408 9.05328644976 0.620540755762 0.734336216497 5.63474352264 7.50493626762 6.77242178278 1.19106586159 0.353906780854 7.12442857543e-06 1.99100217266 9.03825057197 8.43557606026e-06 6.67061815212e-08 1.51472700588e-07 2.7476718578e-07 1.61488187705e-06 5.22169174016 9.87835160374 16.6378888746 20.319711467 25.4656662496 30.0506893314 34.6248635285 39.1824715278 44.37584904 49.0312422189 54.5461948381 58.9640637246 63.8271521937 67.7584537949 71.6194315458 74.4079900997 77.6526192339 79.4171809849 77.5788584526 74.5216252942 39.9791946327 5.57816093243e-21 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.39552929083e-17 77.7634353115 76.4649862621 71.7738777953 67.3099929392 64.223979601 62.7206522154 61.5173119347 60.4621589919 60.2112743182 13.8301719332 0.000118087483994 5.2047193765e-07 0.00260770344799 5.46102663856 7.06518770856 6.78264805981 4.05399587381 0.177398203841 4.48421541599 0.206444882742 1.15584088688e-06 2.89908940434e-09 2.24464701456e-06 7.66043417662e-08 2.70821576444e-07 0.171713977471 10.2042622318 14.9537902649 18.5611056279 23.4105357652 27.3279111102 32.4036836967 37.0268666175 41.1846322941 46.0823477622 51.4225313055 55.9777520148 60.7527767076 64.7405494647 69.1510120463 72.0462833857 74.976194239 78.2223920002 77.286780741 76.8331592831 81.696871533 64.7199185534 1.2080187784e-20 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.27907918442e-40 71.2863007996 74.9691813575 75.0414344121 72.0919867957 69.5089801297 67.9301940085 67.6368904263 68.5207598314 66.83348495 68.0672288376 12.1182889575 1.4625349312e-08 5.92379167373e-09 1.05115338017 6.15458993395 7.36932219297 7.395536647 5.80924271289 8.4280316025e-09 1.09462703679e-09 1.5641982799e-08 6.15761794711e-09 2.56066514188e-09 8.448393047e-09 2.31622487077e-08 0.00137841535902 10.7600862318 13.1211783097 17.953350371 21.540691914 24.9095287005 29.8842059959 34.810117753 39.0333295528 43.2877932795 48.2045446795 52.7312639924 57.9312052987 61.9487793582 66.3238433318 70.1695527852 74.3098098995 77.9288644179 78.6973287371 77.3616840837 76.1295751682 77.5542623098 82.1902205412 3.27172144592e-20 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48.7489464108 81.6440735916 78.5063984556 76.2667307786 73.8814355228 72.2343477781 71.3618161594 71.0923426853 72.6869343956 71.835238963 71.3479398003 10.2102580123 4.67347470392e-09 7.82764195126e-10 4.25913846859 7.3258038403 8.09117788818 7.79237417458 6.40296095858 1.43828459496e-06 5.0298246808e-10 2.23043661734e-10 9.28482439823e-10 8.42961388008e-09 3.70370453199e-09 3.41690098222e-07 8.65498321996 13.4771425981 17.2600577541 21.4212707437 23.265175638 27.3691259018 31.7802436945 36.4441202598 40.6623892826 44.6567970183 49.4475812891 54.6722454182 58.9832596925 63.5964833455 67.9780197295 74.0081315346 78.2278371302 81.1847759346 81.4615255991 79.4473047075 73.2871070664 72.1421222803 82.9089907543 5.65404368008e-20 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.43888681792e-34 85.5745646467 81.4576498226 79.6329343928 77.6952336148 75.9224853749 74.7117410801 73.9583574943 73.4752864354 74.138367526 73.9290593101 72.735988304 6.77045220059 3.74467484603e-10 1.40483850761e-10 7.16540380678 8.99697600003 9.09291202928 8.37545608563 6.76914950904 2.20322423584 2.0867267248e-10 9.28120326288e-11 9.98409778681e-11 5.03706244278e-10 0.000987756768214 6.75466918376 12.1801694605 14.8703036437 18.6032397961 22.127968713 25.7816826851 29.9249662857 33.078029964 37.6347929076 41.8732805496 46.1211209925 51.0211583867 55.7127810437 60.8856389021 65.4046220107 72.5260570282 79.175473734 83.0368514006 85.7586122656 87.2892952484 83.9595003094 78.5382757266 72.5752927954 76.7752256187 3.99809438374e-20 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 72.3200880619 75.7445998423 81.198600681 80.2915785363 79.2223921611 77.9584270679 76.9732507769 76.229386951 75.664383964 76.0333813208 75.5406795781 74.4816615856 1.08588889363e-11 3.61761964544e-11 3.01952946183e-08 10.1749482963 10.7273583757 10.239209156 9.10434197537 7.54549461176 4.12851308228 9.59959398908e-11 4.02636707978e-11 3.86964300871e-11 1.25678560647e-10 6.26371405686e-07 10.4202969343 9.69898639601 16.9030466256 19.4563467709 23.0186941875 26.4896452489 30.652262556 34.5268742758 38.4719174412 42.8363740619 47.2366717807 52.175142714 57.6127440349 62.4220236906 70.0681020018 78.0141968908 82.9618195097 88.2611007319 92.8308466164 95.3215010542 96.0032465839 97.407602439 99.3025056257 99.9999999965 75.4937637619 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.03179783782e-19 97.2323336848 87.1117978367 84.5255716445 82.4279542514 81.0987029672 79.9173664872 78.9953529115 78.2689507709 77.708164901 77.7840555521 77.0948106096 76.6575778421 4.15950497524e-12 7.19432551253e-12 6.91077345703 10.3218693136 10.5166386011 10.284431132 9.81455096424 8.25235631178 5.62149683942 4.66902235487e-11 1.81228006319e-11 1.72478765036e-11 2.75616956457e-11 0.0441407873732 2.30198356081 14.9220171324 18.2286198635 21.0548337056 24.6601609334 27.8261280956 31.5595180722 35.0975555865 39.2794332054 43.6665376365 48.3815410893 54.0513081309 59.2455011401 66.4955055291 74.4215211197 80.8170079517 87.2669971305 93.9829140871 99.9798830618 99.9999998773 100 100 100 100 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 92.1572483438 89.0431210232 88.5443267926 85.7150699889 83.7632969615 82.2787546118 81.1097941425 80.1891641019 79.5006006833 79.0193542247 78.5954026516 77.9226658473 77.8285260783 3.87211272934e-12 3.08198931916e-12 5.98541450459 9.8423955993 10.406733441 10.1876816621 9.51766191631 8.48259366873 6.61231611294 2.20405983165e-11 8.62814152586e-12 8.11080758507e-12 1.52195143158e-11 7.6185842093e-11 11.5884338571 17.0469787054 18.211927289 22.7695653494 26.2407160526 28.5633368266 31.7433153719 35.6180631233 40.1696563147 44.4231290615 50.0390030024 55.577729558 61.860963734 69.1837704318 76.7231362877 83.9695363208 91.4597360975 99.9698985239 99.999999986 100 100 100 100 100 99.0972991406 7.69424228034e-12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.20589029421e-26 93.9735631317 89.8489943815 87.9820627287 85.8321055717 84.0365294477 82.2710401615 80.9635114154 79.869933458 79.0297179899 78.7232215589 78.0466815302 77.2590191423 77.5455456598 5.21077121563e-12 1.56648298707e-12 1.56802609686e-11 10.1216349586 10.7536464651 10.2825677912 9.39733840778 8.03657468197 6.21844564146 4.46403372e-11 4.72194740831e-12 4.24424242854e-12 8.55497230391e-12 1.95171345323 9.7895655594 14.4104763317 20.5372326672 23.6363465779 25.3544202918 29.4850856977 33.2010155729 36.2418966584 40.1057233096 45.7547631523 51.5920455737 56.6710968536 63.5527179771 71.5236186983 79.0836002024 86.641061391 96.9944465818 99.9999988536 100 100 100 100 100 100 1.38414979499e-18 7.11479689614e-20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 97.5001871143 88.5438323765 89.6125745013 87.2259104616 85.5195847479 83.3560260467 81.3171186233 79.6942116395 78.2922071546 77.1135757042 76.1690596196 75.6546227301 75.3364928083 76.1756242179 1.50246161555e-11 9.83534458433e-13 1.03853504964e-12 10.6396671301 11.1846346766 10.4253498738 9.27717446024 7.60113600018 4.91574198469 4.87918432377e-12 3.07457886527e-12 2.77153055069e-12 4.42811415178e-12 3.20038024137 9.80343833144 13.8391025287 19.2064295552 23.5223170756 26.4034779409 30.292055562 31.9393663374 36.3438003092 42.0700996645 47.2474907407 51.4718942081 58.3517305316 65.8513644168 72.6743552863 80.8299794281 90.827363085 99.9887067038 99.9999999934 100 100 100 100 100 100 1.15319716146e-23 12.2486608287 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5.24276424906e-39 99.9999996579 96.1263385559 91.5346338765 87.9199424169 85.2120028503 82.8478026358 80.0825460933 78.0997768678 76.4801822876 75.1886603333 74.2051244735 73.7961028833 73.2260708535 73.7530308213 6.89408844301e-10 8.82273957605e-13 4.46235447415e-13 10.9343399806 11.4589760889 10.4926666012 9.10725196509 7.21891298348 4.58058378435 2.86986275703e-12 1.64242203493e-12 1.80044445266e-12 5.22262830503e-12 5.48306085298 10.3861074151 14.317353207 17.5993821372 22.1452344719 26.7824903431 29.3002492358 32.6934851049 37.7810105159 42.8634154998 46.2033876642 52.7490770711 59.9163532322 66.2269869839 74.022763899 83.4430669872 93.2112574843 99.9996167741 99.9999999999 100 100 100 100 100 100 2.71332210262e-28 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 95.6438908243 88.5019701759 95.6299388612 91.975731561 88.4682678104 85.1671083145 82.099762396 78.9755962269 76.6612659091 74.8551675103 73.4630051604 72.5359833883 72.1812056007 71.339736477 70.6245311871 2.30399428017e-12 9.14310949081e-10 2.84559845408e-13 10.2316824743 11.5317940101 10.3867999197 8.63311497288 5.50162888971 1.60846471834e-12 7.24449066752e-13 5.95268754131e-13 7.07593783777e-13 1.41672638181e-12 5.93932040431 11.8719942644 15.3190104631 17.7507555392 20.2672682477 24.4229757492 28.9908185855 32.7898652714 37.2977010913 41.1565405873 46.4608260309 54.0298246841 60.4252417728 66.2672332083 74.4934766206 84.2914161834 95.7073594735 99.9999874775 100 100 100 100 100 100 100 7.19904900283e-28 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 99.9999999998 99.9746672397 94.6452970908 90.0131050317 85.4738630068 81.4775898972 78.1938798315 75.6011730703 73.6042326345 72.0648838676 71.1257523225 70.5227079876 69.6097344481 68.8968440075 1.47249040079e-12 5.0816762977 1.73419337941e-13 9.27545966821 11.5975049855 10.214921676 8.28108513743 6.77217050058 4.59484830193 2.38078815132e-11 3.81890959184e-12 2.95285464105e-12 8.43306136153e-12 6.73605674027 12.2638471948 15.5135642381 18.0833669292 20.5220932576 22.7681858355 25.4845380897 30.4387743021 35.5507960807 40.1766952708 46.495606324 53.6541793809 59.7379080926 66.404935811 75.5028329204 85.9322091543 95.9934049545 99.9999907776 100 100 100 100 100 100 100 9.33473257425e-22 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.22274325488e-13 83.5931159162 99.9999998693 99.9981411835 96.8000884405 90.9794802618 86.3819527184 81.4135440088 77.8080821797 74.8982974116 72.6992820251 71.1333975699 70.4266497392 69.092497655 68.1260814555 67.522148736 3.05287508617e-13 5.69131432396 1.00547998916e-13 9.72400477861 10.9613393397 8.56059973461 5.60125054399 2.72705566528 1.27282997142e-13 7.32148436477e-14 6.64731588721e-14 8.42898682928e-14 1.81387935931e-13 4.44713170816 12.7965075349 16.5639195333 18.1125897262 19.4744668766 21.4174171421 24.3557447718 27.8845627698 32.1659106389 38.0094313011 45.7544583329 53.094017902 59.7817640151 65.7181700181 74.4403123153 84.7924068694 96.737270749 99.999999303 100 100 100 100 100 100 100 1.18597110626e-20 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100 99.9999998239 99.6733866479 93.010154659 86.8256520743 81.7715149618 77.523845369 74.1216390431 71.6160215878 69.9209368519 68.8696238022 67.3953110597 66.5895631819 66.6961207688 4.18198459959e-13 1.95483147638 5.86923028276e-14 9.34343389424 8.34660728889 6.08580608067 4.41323729924 2.96085469989 3.48670658865e-14 3.74604983423e-14 5.44243310097e-14 1.16527384396e-13 1.65650890715e-12 6.02493134307 12.3849387723 14.9279169764 16.1045190801 17.0185024305 19.0753838886 22.9198786651 26.651718055 31.1816927966 36.7632691993 43.5686232198 50.3869587893 56.4452045756 63.5858548293 73.6490827638 84.8480948465 97.6472581762 99.9999997054 100 100 100 100 100 100 100 1.75722881253e-19 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.06219445838e-39 99.9999999999 100 100 99.9999999999 99.9981825405 94.9745191133 87.618971767 81.7882706531 76.8769907983 72.8284343575 69.8294590102 67.8827614581 66.2189497342 64.8979226885 63.9754559774 64.6759741948 3.77161266954 3.90520860754e-14 3.5788076974e-14 10.8164731599 9.34905884172 6.26354322442 4.41048152582 2.95489988078 2.4995939605e-14 2.35960549435e-14 2.48486580136e-14 2.99639341432e-14 5.5705776954e-14 0.018228050463 12.811871641 15.5542784848 16.1035843349 16.2638473234 17.0025376093 19.2062798894 23.423952538 29.0974380339 35.2664198056 41.8359196121 47.7063775386 53.7990322479 61.7005679657 71.8942155956 84.0042726965 96.6337261876 99.9999971974 100 100 100 100 100 100 100 7.03160677046e-19 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 79.8071339512 100 100 100 100 99.9999991905 96.2887674781 88.2363321418 81.3761922824 75.7283525346 71.0865381554 67.4451488316 64.830859336 62.6057311647 61.1701980921 60.1164715047 61.0816524613 8.38344901505 1.1526836429e-12 3.31650068723e-14 11.427718802 10.6598581349 6.11883024965 4.8593168995 3.41638563379 1.63277048686e-14 1.92578050063e-14 3.8428579445e-14 9.23157692722e-14 1.05944627088e-13 2.53044562746e-07 11.4281914872 15.2858145445 15.3588171469 14.1163868219 13.0066344352 14.8995419712 19.9885261234 26.2243168625 32.6552281349 39.1794968805 45.7826065358 51.9001453489 60.2831459136 70.114486888 81.0543146093 93.4373724807 99.9999358451 100 100 100 100 100 100 100 3.00183191007e-17 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100 100 100 99.9999999999 99.6170683543 89.2972490732 80.8735641304 74.3385319786 69.0751733086 64.0883242628 60.5332811871 58.0275364556 56.6257292826 55.6015802452 56.4004569284 9.69553056411 0.00573806166488 4.29687540936e-14 0.614682499151 6.48967535568 6.89703123818 6.06192290715 5.55391164587 6.21599506709 1.16107987732e-13 3.68628015198e-14 2.7313463083e-14 2.74619774202e-14 5.4948453417e-14 9.68870066894 15.520098213 15.2946960381 11.8849136331 5.25896826558 7.02643435939 14.7443396637 23.5751444181 30.7205926609 36.6721743042 42.496028788 49.2017520132 57.6348039058 67.5126929102 78.401661804 89.9849941422 99.9685133095 99.9999999974 100 100 100 100 100 100 1.18858735385e-16 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5.28973061215e-39 100 100 100 100 100 100 99.9999591766 91.5892630535 80.9202915055 72.6483136363 66.3533959798 61.2222477608 57.1574551655 53.6505102531 51.3993312005 50.8528890722 50.7803320295 7.44424623229 3.99237444631 1.23301127976e-13 2.50837021741e-11 7.18520098184 9.58034637035 10.4834338755 8.85057994482 6.04010136053 1.39927395607e-13 3.28613593863e-14 2.11111449702e-14 1.75419182177e-14 2.16564592082e-14 6.89653867346 15.7745917584 16.5458526844 12.4522902631 4.10282580632 3.049753893e-08 9.66978537393 19.8765118653 27.0345212082 32.8401282243 38.7209851208 45.6542706162 54.3288328639 64.2795646652 74.2849328972 84.077330273 95.802476132 99.9999996371 100 100 100 100 100 100 0.197505835443 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 95.7852029823 100 100 100 100 100 100 99.9999999913 94.7985176414 81.8210381742 71.4180551633 63.589896971 57.3087648431 52.6803760921 49.1784237917 45.5779712218 45.4166800953 44.5724371213 4.86852923714 5.46382502144 5.2328724602e-13 9.99515725827e-13 9.4260931805 11.2523832761 10.6517992647 9.86600758842 8.61407881847 0.931925035085 7.51193961694e-14 2.08825479605e-14 1.42769257188e-14 1.42459415412e-14 9.59812883318e-08 18.0083387161 20.5291009917 9.5253633714 6.56426131609e-13 3.41747712273e-14 3.7080786698e-14 6.47648932754 22.3381142652 28.6640362231 33.9842648003 40.8471469899 49.6619679056 60.0554532101 68.8563462133 76.4516203791 87.0518227839 99.9649588599 99.9999999719 100 100 100 100 100 3.4068412943e-10 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100 100 100 100 100 100 98.7017993289 83.9471950747 71.3133887806 61.8596637305 54.059952019 47.9537955392 43.8135239473 39.7572983803 38.9497222044 39.4924317622 4.53288581401 7.56693604142 1.88436491979e-11 3.07283396353e-13 11.3280475907 11.7827821677 11.7194819505 11.3473284189 10.7702812543 8.40712231485 5.24914566303e-08 3.08539840201e-14 1.15381554379e-14 9.53642236694e-15 10.4051296608 23.1541634365 17.174735755 1.53498580679e-10 3.14337870979e-12 9.09532534441e-15 2.2055485621e-15 6.52369475347e-07 11.2984305123 20.7853546562 24.6843400394 33.5830289456 43.0273566962 55.7641561212 63.3314457288 66.5781876216 74.2016461755 87.9896921779 99.2179036842 99.9999999517 100 100 100 100 99.9999999965 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.22689813682e-39 100 100 100 100 100 100 100 100 99.9995307143 86.7107734981 72.0806449202 60.7160079567 52.2454922224 44.6935524297 38.4948310209 33.7210440782 33.3496394105 37.2624584678 0.246984986611 6.9676349732e-05 1.16412206002e-11 6.93595482018e-06 13.027065165 13.4913080524 13.7471151253 13.5786214267 13.4012870106 12.8206136067 4.17263320045 4.11818746095e-11 2.03769150709e-14 6.08956023993e-15 3.93612509735e-15 24.9362464786 8.454323335e-08 1.70375945594e-10 3.64023979961e-09 0.424826978638 7.3648032985e-16 1.76298840097e-16 1.2552397454e-07 13.4164369213 23.1764986637 23.6740406212 28.4161850513 46.8935826901 60.2522702174 54.3109497994 55.8331993489 65.943058235 77.7022583357 94.4493366963 99.999999972 100 100 100 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100 100 100 100 100 100 100 99.9999992544 89.0533776167 73.2799526437 60.4886501171 50.6290266782 42.8563887507 36.4420101282 31.601824025 31.1194444816 29.8308590512 1.49228620319 2.37114187282e-11 3.74171292552e-09 1.43715632672e-13 13.8041264572 15.8092170855 16.7551612955 16.6374868206 16.8096975294 15.6152803802 13.77566309 0.00871448609871 1.21266376543e-13 4.63691516286e-15 3.21317887747e-15 4.41731361485e-14 3.43464574139e-11 0.278433213611 22.7415825725 13.9294490636 1.62012919884e-16 3.16859384621e-17 7.24808697268e-18 5.51404284949e-18 5.59279260601e-18 2.98561811927e-11 2.55574844346 2.49488317796e-15 35.7133198588 42.0050959183 39.4969413861 60.5753472878 64.4424170443 81.9109772674 94.5642871676 99.9999972938 99.9999999856 100 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.98636809388e-41 97.3813465163 100 100 100 100 100 100 100 100 99.9999999583 90.5889420415 74.866916116 61.5067344555 50.6997473039 42.4007232698 35.5292104991 29.6166509053 25.8591023634 19.2394253547 1.12415342956 6.27372448485 0.259121587919 2.84814618321e-13 3.66736856933e-15 1.01921847927e-14 1.14659725523e-11 7.41599689917e-14 5.23186539242e-14 2.77514991782e-14 1.47931157316e-14 7.42712999487e-15 3.21932525033e-15 1.09574149954e-15 4.04290508251e-16 1.13588711258e-16 5.68430664461e-17 5.32807422414e-17 3.88014317492e-17 2.43860249143e-17 1.60315352536e-17 9.54690448385e-18 4.75223579481e-18 2.56975066428e-18 2.07811759969e-18 1.3216467239e-18 6.38766284649e-19 2.66609015142e-19 1.88843235253e-19 6.85055076479e-20 6.18719842116e-20 3.33048284692e-21 8.33209209871e-19 6.07898853328e-24 8.9872458686e-19 4.32048541107e-27 7.31473209448e-18 9.39906340849e-33 5.94188211329e-32 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.30451659572e-41 100 1.45936156318e-20 100 100 100 100 100 100 100 99.9999999534 90.1268661088 74.5911619145 61.3307618923 49.9257626805 40.6063209946 33.0261784039 27.0112223673 22.9177819592 12.9507535599 ) ; boundaryField { frontAndBack { type empty; } upperWall { type calculated; value uniform 0; } lowerWall { type calculated; value uniform 0; } inlet { type calculated; value uniform 1.18103084448e-38; } outlet { type calculated; value nonuniform List<scalar> 20 ( 6.80125607649e-41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5.83225108388e-42 1.32198017838e-40 ) ; } } // ************************************************************************* //
[ "as998@snu.edu.in" ]
as998@snu.edu.in
e7342592750078f287a06478992b6a6752c6282d
e6317162fd2ac60acf13090eec30c6e577f5bcb1
/leetCode/121.Best Time to Buy and Sell Stock.hpp
0d78057765d324f4154eed7a85aac6f555b88991
[ "Apache-2.0" ]
permissive
CainHsu/ProgramStudy-leetcode
024a9fb093a0ce9cdaab6b8ece82ba94ede5b5c2
23653e8927902aed64ba13a23a1d6c983b7ea5d5
refs/heads/master
2021-06-26T10:35:34.447660
2021-05-16T12:47:04
2021-05-16T12:47:04
226,617,577
1
0
null
null
null
null
UTF-8
C++
false
false
614
hpp
// // Created by xuche on 2020/7/18. // #ifndef PROGRAMSTUDY_LEETCODE_121_BEST_TIME_TO_BUY_AND_SELL_STOCK_HPP #define PROGRAMSTUDY_LEETCODE_121_BEST_TIME_TO_BUY_AND_SELL_STOCK_HPP #include "vector" #include "algorithm" using namespace std; int maxProfit(vector<int>& prices) { if(prices.empty()) return 0; int minPrice = prices[0], profit = 0; for(int index = 0; index < prices.size(); ++index){ minPrice = min(prices[index], minPrice); profit = max(prices[index]-minPrice, profit); } return profit; } #endif //PROGRAMSTUDY_LEETCODE_121_BEST_TIME_TO_BUY_AND_SELL_STOCK_HPP
[ "xu.chen28@qq.com" ]
xu.chen28@qq.com
16b36faae6a607aafeaf9bac33fee1f28a83a9b4
9a3b9d80afd88e1fa9a24303877d6e130ce22702
/src/Providers/UNIXProviders/AssociatedPrivilege/tests/AssociatedPrivilege.Tests/main.cpp
f1c25b5b7f516620e8704fe498e19d41a5ef75df
[ "MIT" ]
permissive
brunolauze/openpegasus-providers
3244b76d075bc66a77e4ed135893437a66dd769f
f24c56acab2c4c210a8d165bb499cd1b3a12f222
refs/heads/master
2020-04-17T04:27:14.970917
2015-01-04T22:08:09
2015-01-04T22:08:09
19,707,296
0
0
null
null
null
null
UTF-8
C++
false
false
2,058
cpp
//%LICENSE//////////////////////////////////////////////////////////////// // // Licensed to The Open Group (TOG) under one or more contributor license // agreements. Refer to the OpenPegasusNOTICE.txt file distributed with // this work for additional information regarding copyright ownership. // Each contributor licenses this file to you under the OpenPegasus Open // Source License; you may not use this file except in compliance with the // License. // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the "Software"), // to deal in the Software without restriction, including without limitation // the rights to use, copy, modify, merge, publish, distribute, sublicense, // and/or sell copies of the Software, and to permit persons to whom the // Software is furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included // in all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY // CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE // SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // ////////////////////////////////////////////////////////////////////////// // //%///////////////////////////////////////////////////////////////////////// #include <UNIX_Common.h> #include "UNIX_AssociatedPrivilegeFixture.h" #include <iostream> int main (int argc, char *argv[]) { std::cout << "Starting Pegasus Providers Testing Framework..." << std::endl; std::cout << "Testing UNIX_AssociatedPrivilege Provider..." << endl; UNIX_AssociatedPrivilegeFixture __associatedPrivilege; __associatedPrivilege.Run(); }
[ "brunolauze@msn.com" ]
brunolauze@msn.com
f7b7e22191d74d65646edea2056d64b64fc582f8
6e863f09100749c10e2bc64b690e2dfd5ab681b2
/자료형과 연산(1)/자료형과 연산(1).cpp
8e98cac1ebfb2417a56cd57f62b6c75a9e0deb99
[]
no_license
Juhye/c-study
de9fae7c406c483cac8cbbe3ce3c818933644232
da3c307acf1c985a51df953e2fa33c7314af4a93
refs/heads/master
2020-04-26T22:09:27.932416
2019-05-14T07:19:38
2019-05-14T07:19:38
173,863,295
2
0
null
null
null
null
UHC
C++
false
false
537
cpp
#include<iostream> #include<climits>//형의 최대크기,최소크기를 알수있다 using namespace std; int main() { short year = SHRT_MAX; int sale = INT_MAX; long total_sale = LONG_MAX; cout << "short형의 크기" << sizeof(short) << endl; cout << "int형의 크기" << sizeof(int) << endl; cout << "long형의 크기" << sizeof(long) << endl<<endl; cout << "short형의 최대" << year << endl<<endl; cout << "int형의 최대" <<sale<< endl<<endl; cout << "long형의 최대" << LONG_MAX << endl<<endl; getchar(); }
[ "0julie@naver.com" ]
0julie@naver.com
b5c04f5fd3d18f36667194c576ca80647427ac9c
53b62066493bbfb0a8492f4f065af7abbc0314be
/_engine/src/engine/render/camera.h
25af7cdfc48e784edc4e0084b6a962a0b36d2945
[]
no_license
mevoroth/meet-minecraft-bots
5d39892c27322bbb1837845d1fdefa961eb45e96
8e699f797eaad7f2751e5c9bdacf3e697f11f3b9
refs/heads/master
2020-03-25T17:24:21.352175
2014-08-23T23:54:45
2014-08-23T23:54:45
null
0
0
null
null
null
null
ISO-8859-1
C++
false
false
3,611
h
#ifndef __SIMPLE_CAM_H__ #define __SIMPLE_CAM_H__ #include "external/gl/glew.h" #include "external/gl/freeglut.h" #include "engine/utils/types_3d.h" #include "engine/utils/ny_utils.h" class NYCamera { public: NYVert3Df _Position; ///< Position de la camera NYVert3Df _LookAt; ///< Point regarde par la camera NYVert3Df _Direction; ///< Direction de la camera NYVert3Df _UpVec; ///< Vecteur up de la camera NYVert3Df _NormVec; ///< Si on se place dans la camera, indique la droite NYVert3Df _UpRef; ///< Ce qu'on considère comme le "haut" dans notre monde (et pas le up de la cam) NYFloatMatrix _InvertViewMatrix; ///< Pour les shaders, pour repasser de la modelview a la model NYCamera() { _Position = NYVert3Df(0,-1,0); _LookAt = NYVert3Df(0,0,0); _UpRef = NYVert3Df(0,0,1); _UpVec = _UpRef; updateVecs(); } /** * Mise a jour de la camera */ virtual void update(float elapsed) { } /** * Definition du point regarde */ void setLookAt(NYVert3Df lookat) { _LookAt = lookat; updateVecs(); } /** * Definition de la position de la camera */ void setPosition(NYVert3Df pos) { _Position = pos; updateVecs(); } /** * Definition du haut de notre monde */ void setUpRef(NYVert3Df upRef) { _UpRef = upRef; updateVecs(); } /** * Deplacement de la camera d'un delta donné */ void move(NYVert3Df delta) { _Position += delta; _LookAt += delta; updateVecs(); } /** * Deplacement de la camera d'un delta donné */ void moveTo(NYVert3Df & target) { this->move(target-_Position); } /** * On recalcule les vecteurs utiles au déplacement de la camera (_Direction, _NormVec, _UpVec) * on part du principe que sont connus : * - la position de la camera * - le point regarde par la camera * - la vecteur up de notre monde */ void updateVecs(void) { _Direction = _LookAt; _Direction -= _Position; _Direction.normalize(); _UpVec = _UpRef; _NormVec = _Direction.vecProd(_UpVec); _NormVec.normalize(); _UpVec = _NormVec.vecProd(_Direction); _UpVec.normalize(); } /** * Rotation droite gauche en subjectif */ void rotate(float angle) { _LookAt -= _Position; _LookAt.rotate(_UpRef,angle); _LookAt += _Position; updateVecs(); } /** * Rotation haut bas en subjectif */ void rotateUp(float angle) { _LookAt -= _Position; _LookAt.rotate(_NormVec,angle); _LookAt += _Position; updateVecs(); } /** * Rotation droite gauche en troisième personne */ void rotateAround(float angle) { _Position -= _LookAt; _Position.rotate(_UpRef,angle); _Position += _LookAt; updateVecs(); } /** * Rotation haut bas en troisième personne */ void rotateUpAround(float angle) { _Position -= _LookAt; //On ne monte pas trop haut pour ne pas passer de l'autre coté NYVert3Df previousPos = _Position; _Position.rotate(_NormVec,angle); NYVert3Df normPos = _Position; normPos.normalize(); float newAngle = normPos.scalProd(_UpRef); if(newAngle > 0.99 || newAngle < -0.99) _Position = previousPos; _Position += _LookAt; updateVecs(); } /** * Calcul du bon repère de départ pour la matrice monde */ void look(void) { gluLookAt(_Position.X, _Position.Y,_Position.Z,_LookAt.X,_LookAt.Y,_LookAt.Z,_UpVec.X,_UpVec.Y,_UpVec.Z); _InvertViewMatrix.createViewMatrix(_Position,_LookAt,_UpVec); _InvertViewMatrix.invert(); } }; #endif
[ "mevoroth@gmail.com" ]
mevoroth@gmail.com
8df28c62b9aa8b98ea3391fb16a4caf4b94fe6d2
861c0b2803e37f2cb2be97de0c40613a65c62e0b
/build-MultipurposeApplication-Desktop_Qt_5_6_3_MinGW_32bit-Debug/ui_mainwindow.h
463c3afbd188d15c0549fd70ff40fc49d3cef13a
[]
no_license
KavinduTheekshana/Multipurpose-Application
6e9c16e4beab307e772254c381c6848c7fe2822c
52856b7999161b97152127f0c0b8cc04a5e2eadc
refs/heads/master
2020-12-04T10:00:09.337929
2020-01-13T13:28:10
2020-01-13T13:28:10
231,720,341
2
0
null
null
null
null
UTF-8
C++
false
false
5,566
h
/******************************************************************************** ** Form generated from reading UI file 'mainwindow.ui' ** ** Created by: Qt User Interface Compiler version 5.6.3 ** ** WARNING! All changes made in this file will be lost when recompiling UI file! ********************************************************************************/ #ifndef UI_MAINWINDOW_H #define UI_MAINWINDOW_H #include <QtCore/QVariant> #include <QtWidgets/QAction> #include <QtWidgets/QApplication> #include <QtWidgets/QButtonGroup> #include <QtWidgets/QHeaderView> #include <QtWidgets/QLabel> #include <QtWidgets/QMainWindow> #include <QtWidgets/QPushButton> #include <QtWidgets/QWidget> QT_BEGIN_NAMESPACE class Ui_MainWindow { public: QWidget *centralWidget; QPushButton *btnCalculator; QPushButton *pushButton_2; QPushButton *pushButton_3; QPushButton *pushButton_4; QLabel *DigitalClock; QLabel *label; void setupUi(QMainWindow *MainWindow) { if (MainWindow->objectName().isEmpty()) MainWindow->setObjectName(QStringLiteral("MainWindow")); MainWindow->resize(537, 437); QIcon icon; icon.addFile(QStringLiteral(":/img/img/software_3k5_icon.ico"), QSize(), QIcon::Normal, QIcon::Off); MainWindow->setWindowIcon(icon); centralWidget = new QWidget(MainWindow); centralWidget->setObjectName(QStringLiteral("centralWidget")); btnCalculator = new QPushButton(centralWidget); btnCalculator->setObjectName(QStringLiteral("btnCalculator")); btnCalculator->setGeometry(QRect(10, 170, 251, 121)); btnCalculator->setStyleSheet(QLatin1String("QPushButton {\n" " background-color: rgb(255, 151, 57);\n" " color: white; \n" " border: 1px solid gray;\n" " border-radius: 30px;\n" "}\n" "\n" "QPushButton:pressed {\n" " background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,\n" " stop: 0 #FF7832, stop: 1 #FF9739);\n" "}")); pushButton_2 = new QPushButton(centralWidget); pushButton_2->setObjectName(QStringLiteral("pushButton_2")); pushButton_2->setGeometry(QRect(270, 170, 251, 121)); pushButton_2->setStyleSheet(QLatin1String("QPushButton {\n" " background-color: #5cb85c;\n" " color: white; \n" " border: 1px solid gray;\n" " border-radius: 30px;\n" "}\n" "\n" "QPushButton:pressed {\n" " background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,\n" " stop: 0 #428c42, stop: 1 #12e312);\n" "}\n" "\n" "")); pushButton_3 = new QPushButton(centralWidget); pushButton_3->setObjectName(QStringLiteral("pushButton_3")); pushButton_3->setGeometry(QRect(270, 300, 251, 121)); pushButton_3->setStyleSheet(QLatin1String("QPushButton {\n" " background-color: #d9534f;\n" " color: white; \n" " border: 1px solid gray;\n" " border-radius: 30px;\n" "}\n" "\n" "QPushButton:pressed {\n" " background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,\n" " stop: 0 #bd1f1a, stop: 1 #f50800);\n" "}\n" "\n" "")); pushButton_4 = new QPushButton(centralWidget); pushButton_4->setObjectName(QStringLiteral("pushButton_4")); pushButton_4->setGeometry(QRect(10, 300, 251, 121)); pushButton_4->setStyleSheet(QLatin1String("QPushButton {\n" " background-color: #337ab7;\n" " color: white; \n" " border: 1px solid gray;\n" " border-radius: 30px;\n" "}\n" "\n" "QPushButton:pressed {\n" " background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,\n" " stop: 0 #29689e, stop: 1 #0084f5);\n" "}\n" "\n" "")); DigitalClock = new QLabel(centralWidget); DigitalClock->setObjectName(QStringLiteral("DigitalClock")); DigitalClock->setGeometry(QRect(10, 100, 511, 51)); QFont font; font.setFamily(QStringLiteral("Nexa Bold")); font.setPointSize(36); DigitalClock->setFont(font); DigitalClock->setStyleSheet(QStringLiteral("color : #181f1b;")); DigitalClock->setAlignment(Qt::AlignCenter); label = new QLabel(centralWidget); label->setObjectName(QStringLiteral("label")); label->setGeometry(QRect(10, 19, 511, 51)); QFont font1; font1.setFamily(QStringLiteral("Montserrat ExtraBold")); font1.setPointSize(20); label->setFont(font1); label->setAlignment(Qt::AlignCenter); MainWindow->setCentralWidget(centralWidget); retranslateUi(MainWindow); QMetaObject::connectSlotsByName(MainWindow); } // setupUi void retranslateUi(QMainWindow *MainWindow) { MainWindow->setWindowTitle(QApplication::translate("MainWindow", "Multi Purpose Application", Q_NULLPTR)); btnCalculator->setText(QApplication::translate("MainWindow", "Calculator", Q_NULLPTR)); pushButton_2->setText(QApplication::translate("MainWindow", "Encrypted Text Editor", Q_NULLPTR)); pushButton_3->setText(QApplication::translate("MainWindow", "Convertor", Q_NULLPTR)); pushButton_4->setText(QApplication::translate("MainWindow", "Audio Player", Q_NULLPTR)); DigitalClock->setText(QApplication::translate("MainWindow", "TextLabel", Q_NULLPTR)); label->setText(QApplication::translate("MainWindow", "Multi Purpose Application", Q_NULLPTR)); } // retranslateUi }; namespace Ui { class MainWindow: public Ui_MainWindow {}; } // namespace Ui QT_END_NAMESPACE #endif // UI_MAINWINDOW_H
[ "kavindutheekshana@gmail.com" ]
kavindutheekshana@gmail.com
c6ce1704a6ec39943be3ef5c527b4b5e9e717b72
5581e60b6de66a24c150003e36382f2ae8afd1e0
/CvGameCoreDLL_Expansion2/CvProjectClasses.cpp
2afacd027b9b2e64c51642017a8b3725645f91eb
[]
no_license
HungryForFood/Community-Patch-DLL
bf86b3809cd11eda8aa44c1b05af67fff8f56548
6411822d8f0976317ad8ac2a936df46c76d34251
refs/heads/master
2021-12-08T12:47:12.557952
2021-08-13T15:36:24
2021-08-13T15:36:24
113,146,758
0
0
null
2017-12-05T07:13:30
2017-12-05T07:13:30
null
WINDOWS-1252
C++
false
false
11,709
cpp
/* ------------------------------------------------------------------------------------------------------- © 1991-2012 Take-Two Interactive Software and its subsidiaries. Developed by Firaxis Games. Sid Meier's Civilization V, Civ, Civilization, 2K Games, Firaxis Games, Take-Two Interactive Software and their respective logos are all trademarks of Take-Two interactive Software, Inc. All other marks and trademarks are the property of their respective owners. All rights reserved. ------------------------------------------------------------------------------------------------------- */ #include "CvGameCoreDLLPCH.h" #include "ICvDLLUserInterface.h" #include "CvGameCoreUtils.h" // include this after all other headers! #include "LintFree.h" CvProjectEntry::CvProjectEntry(void): m_piResourceQuantityRequirements(NULL), m_piVictoryThreshold(NULL), m_piVictoryMinThreshold(NULL), m_piProjectsNeeded(NULL), #if defined(MOD_BALANCE_CORE) m_piHappinessNeedModifier(NULL), m_eFreeBuilding(NO_BUILDINGCLASS), m_eFreePolicy(NO_POLICY), #endif m_piFlavorValue(NULL) { } //------------------------------------------------------------------------------ CvProjectEntry::~CvProjectEntry(void) { SAFE_DELETE_ARRAY(m_piHappinessNeedModifier); SAFE_DELETE_ARRAY(m_piResourceQuantityRequirements); SAFE_DELETE_ARRAY(m_piVictoryThreshold); SAFE_DELETE_ARRAY(m_piVictoryMinThreshold); SAFE_DELETE_ARRAY(m_piProjectsNeeded); SAFE_DELETE_ARRAY(m_piFlavorValue); } //------------------------------------------------------------------------------ bool CvProjectEntry::CacheResults(Database::Results& kResults, CvDatabaseUtility& kUtility) { if(!CvBaseInfo::CacheResults(kResults, kUtility)) return false; m_iMaxGlobalInstances = kResults.GetInt("MaxGlobalInstances"); m_iMaxTeamInstances = kResults.GetInt("MaxTeamInstances"); m_iProductionCost = kResults.GetInt("Cost"); m_iNukeInterception = kResults.GetInt("NukeInterception"); m_iCultureBranchesRequired = kResults.GetInt("CultureBranchesRequired"); m_iTechShare = kResults.GetInt("TechShare"); m_iVictoryDelayPercent = kResults.GetInt("VictoryDelayPercent"); m_bSpaceship = kResults.GetBool("Spaceship"); m_bAllowsNukes = kResults.GetBool("AllowsNukes"); #if defined(MOD_BALANCE_CORE) m_iGoldMaintenance = kResults.GetInt("Maintenance"); m_iCostScalerEra = kResults.GetInt("CostScalerEra"); m_iCostScalerNumRepeats = kResults.GetInt("CostScalerNumRepeats"); m_bIsRepeatable = kResults.GetBool("IsRepeatable"); m_iNumRequiredTier3Tenets = kResults.GetInt("NumRequiredTier3Tenets"); m_bInfluenceAllRequired = kResults.GetBool("InfluenceAllRequired"); m_bIdeologyRequired = kResults.GetBool("IdeologyRequired"); m_iHappiness = kResults.GetInt("Happiness"); m_iEmpireMod = kResults.GetInt("EmpireMod"); m_iEspionageMod = kResults.GetInt("EspionageMod"); const char* szFreeBuilding = kResults.GetText("FreeBuildingClassIfFirst"); if(szFreeBuilding) { m_eFreeBuilding = (BuildingClassTypes)GC.getInfoTypeForString(szFreeBuilding, true); } const char* szFreePolicy = kResults.GetText("FreePolicyIfFirst"); if(szFreePolicy) { m_eFreePolicy = (PolicyTypes)GC.getInfoTypeForString(szFreePolicy, true); } #endif m_strMovieArtDef = kResults.GetText("MovieDefineTag"); const char* szVictoryPrereq = kResults.GetText("VictoryPrereq"); m_iVictoryPrereq = GC.getInfoTypeForString(szVictoryPrereq, true); const char* szTechPrereq = kResults.GetText("TechPrereq"); m_iTechPrereq = GC.getInfoTypeForString(szTechPrereq, true); const char* szEveryoneSpecialUnit = kResults.GetText("EveryoneSpecialUnit"); m_iEveryoneSpecialUnit = GC.getInfoTypeForString(szEveryoneSpecialUnit, true); const char* szCreateSound = kResults.GetText("CreateSound"); SetCreateSound(szCreateSound); const char* szAnyonePrereqProject = kResults.GetText("AnyonePrereqProject"); m_iAnyoneProjectPrereq = GC.getInfoTypeForString(szAnyonePrereqProject, true); //Arrays const char* szProjectType = GetType(); kUtility.PopulateArrayByValue(m_piResourceQuantityRequirements, "Resources", "Project_ResourceQuantityRequirements", "ResourceType", "ProjectType", szProjectType, "Quantity"); kUtility.SetYields(m_piHappinessNeedModifier, "Project_NeedsModifierYield", "ProjectType", szProjectType); //Victory Thresholds { const int iNumVictories = kUtility.MaxRows("Victories"); kUtility.InitializeArray(m_piVictoryThreshold, iNumVictories); kUtility.InitializeArray(m_piVictoryMinThreshold, iNumVictories); Database::Results kDBResults; char szQuery[512] = {0}; sprintf_s(szQuery, "select VictoryType, Threshold, MinThreshold from Project_VictoryThresholds where ProjectType = '%s';", szProjectType); if(DB.Execute(kDBResults, szQuery)) { while(kDBResults.Step()) { const char* szVictoryType = kDBResults.GetText("VictoryType"); const int idx = GC.getInfoTypeForString(szVictoryType, true); const int iThreshold = kDBResults.GetInt("Threshold"); const int iMinThreshold = kDBResults.GetInt("MinThreshold"); m_piVictoryThreshold[idx] = iThreshold; m_piVictoryMinThreshold[idx] = iMinThreshold; } } } kUtility.SetFlavors(m_piFlavorValue, "Project_Flavors", "ProjectType", szProjectType); kUtility.PopulateArrayByValue(m_piProjectsNeeded, "Projects", "Project_Prereqs", "PrereqProjectType", "ProjectType", szProjectType, "AmountNeeded"); return true; } //------------------------------------------------------------------------------ /// What victory does this contribute to? int CvProjectEntry::GetVictoryPrereq() const { return m_iVictoryPrereq; } /// Technology prerequisite int CvProjectEntry::GetTechPrereq() const { return m_iTechPrereq; } /// Is there a project someone must have completed? int CvProjectEntry::GetAnyoneProjectPrereq() const { return m_iAnyoneProjectPrereq; } /// Set whether or not there a project someone must have completed void CvProjectEntry::SetAnyoneProjectPrereq(int i) { m_iAnyoneProjectPrereq = i; } /// Is there a maximum number of these in the world? int CvProjectEntry::GetMaxGlobalInstances() const { return m_iMaxGlobalInstances; } /// Is there a maximum number of these for one team? int CvProjectEntry::GetMaxTeamInstances() const { return m_iMaxTeamInstances; } /// Shields to construct the building int CvProjectEntry::GetProductionCost() const { return m_iProductionCost; } /// Percent chance of intercepting nukes int CvProjectEntry::GetNukeInterception() const { return m_iNukeInterception; } /// Number of Policy branches required to build this project int CvProjectEntry::GetCultureBranchesRequired() const { return m_iCultureBranchesRequired; } /// Does it grant all techs known by X civs? (X is value returned) int CvProjectEntry::GetTechShare() const { return m_iTechShare; } /// Special unit enabled by this wonder int CvProjectEntry::GetEveryoneSpecialUnit() const { return m_iEveryoneSpecialUnit; } /// Percent delay in declaring victory int CvProjectEntry::GetVictoryDelayPercent() const { return m_iVictoryDelayPercent; } /// Find value of flavors associated with this building int CvProjectEntry::GetFlavorValue(int i) const { CvAssertMsg(i < GC.getNumFlavorTypes(), "Index out of bounds"); CvAssertMsg(i > -1, "Index out of bounds"); if(i > -1 && i < GC.getNumFlavorTypes() && m_piFlavorValue) { return m_piFlavorValue[i]; } return 0; } /// Is this a spaceship part? bool CvProjectEntry::IsSpaceship() const { return m_bSpaceship; } /// Does this allow you to build nukes? bool CvProjectEntry::IsAllowsNukes() const { return m_bAllowsNukes; } #if defined(MOD_BALANCE_CORE) int CvProjectEntry::CostScalerEra() const { return m_iCostScalerEra; } int CvProjectEntry::GetGoldMaintenance() const { return m_iGoldMaintenance; } int CvProjectEntry::CostScalerNumberOfRepeats() const { return m_iCostScalerNumRepeats; } /// Free building if first BuildingClassTypes CvProjectEntry::GetFreeBuilding() const { return m_eFreeBuilding; } PolicyTypes CvProjectEntry::GetFreePolicy() const { return m_eFreePolicy; } int CvProjectEntry::GetNumRequiredTier3Tenets() const { return m_iNumRequiredTier3Tenets; } bool CvProjectEntry::InfluenceAllRequired() const { return m_bInfluenceAllRequired; } bool CvProjectEntry::IdeologyRequired() const { return m_bIdeologyRequired; } bool CvProjectEntry::IsRepeatable() const { return m_bIsRepeatable; } int CvProjectEntry::GetHappinessNeedModifier(int i) const { CvAssertMsg(i < NUM_YIELD_TYPES, "Index out of bounds"); CvAssertMsg(i > -1, "Index out of bounds"); if (i > -1 && i < NUM_YIELD_TYPES && m_piHappinessNeedModifier) { return m_piHappinessNeedModifier[i]; } return 0; } int CvProjectEntry::GetHappiness() const { return m_iHappiness; } int CvProjectEntry::GetEmpireMod() const { return m_iEmpireMod; } int CvProjectEntry::GetEspionageMod() const { return m_iEspionageMod; } #endif /// Retrieve movie file name const char* CvProjectEntry::GetMovieArtDef() const { return m_strMovieArtDef; } /// Retrieve sound to play on creation const char* CvProjectEntry::GetCreateSound() const { return m_strCreateSound; } /// Set sound to play on creation void CvProjectEntry::SetCreateSound(const char* szVal) { m_strCreateSound = szVal; } // ARRAYS /// Resources consumed to construct int CvProjectEntry::GetResourceQuantityRequirement(int i) const { CvAssertMsg(i < GC.getNumResourceInfos(), "Index out of bounds"); CvAssertMsg(i > -1, "Index out of bounds"); if(i > -1 && i < GC.getNumResourceInfos() && m_piResourceQuantityRequirements) { return m_piResourceQuantityRequirements[i]; } return -1; } /// Maximum number of these needed for victory condition int CvProjectEntry::GetVictoryThreshold(int i) const { CvAssertMsg(i < GC.getNumVictoryInfos(), "Index out of bounds"); CvAssertMsg(i > -1, "Index out of bounds"); if(i > -1 && i < GC.getNumVictoryInfos() && m_piVictoryThreshold) { return m_piVictoryThreshold[i]; } return -1; } /// Minimum number of these needed for victory condition int CvProjectEntry::GetVictoryMinThreshold(int i) const { CvAssertMsg(i < GC.getNumVictoryInfos(), "Index out of bounds"); CvAssertMsg(i > -1, "Index out of bounds"); if(i > -1 && i < GC.getNumVictoryInfos()) { if(m_piVictoryMinThreshold && m_piVictoryMinThreshold[i] != 0) { return m_piVictoryMinThreshold[i]; } return GetVictoryThreshold(i); } return 0; } /// Other projects required before this one can be built int CvProjectEntry::GetProjectsNeeded(int i) const { CvAssertMsg(i < GC.getNumProjectInfos(), "Index out of bounds"); CvAssertMsg(i > -1, "Index out of bounds"); if(i > -1 && i < GC.getNumProjectInfos() && m_piProjectsNeeded) { return m_piProjectsNeeded[i]; } return 0; } //===================================== // CvProjectXMLEntries //===================================== /// Constructor CvProjectXMLEntries::CvProjectXMLEntries(void) { } /// Destructor CvProjectXMLEntries::~CvProjectXMLEntries(void) { DeleteArray(); } /// Returns vector of project entries std::vector<CvProjectEntry*>& CvProjectXMLEntries::GetProjectEntries() { return m_paProjectEntries; } /// Number of defined projects int CvProjectXMLEntries::GetNumProjects() { return m_paProjectEntries.size(); } /// Clear project entries void CvProjectXMLEntries::DeleteArray() { for(std::vector<CvProjectEntry*>::iterator it = m_paProjectEntries.begin(); it != m_paProjectEntries.end(); ++it) { SAFE_DELETE(*it); } m_paProjectEntries.clear(); } /// Get a specific entry CvProjectEntry* CvProjectXMLEntries::GetEntry(int index) { #if defined(MOD_BALANCE_CORE) return (index!=NO_PROJECT) ? m_paProjectEntries[index] : NULL; #else return m_paProjectEntries[index]; #endif }
[ "thewizardofwas@gmail.com" ]
thewizardofwas@gmail.com
7014f929550b76df086512657799abaefcc381fd
2aa13805fefde015f78a9007210749f7b02ddd17
/OpenGL/OpenGL/header/Assets/FBXProgram.h
d30ba60e207af535f5a34565c71946216621e8fe
[]
no_license
Brandon-Bruce/AIE-Projects
7df184007193dca7effbbd2f0e5de95047fb4a9c
95105eb46b257bb8130893c7a35d0e2185e1406e
refs/heads/master
2021-01-19T09:10:18.264070
2016-03-30T06:52:22
2016-03-30T06:52:22
50,803,740
0
0
null
null
null
null
UTF-8
C++
false
false
495
h
#ifndef FBXPROGRAM_H #define FBXPROGRAM_H #include "Program.h" #include "glm\mat4x4.hpp" class FBXFile; class Camera; class SphereCollider; class FBXProgram : public Program { public: void Startup(const char* fileName, glm::mat4 position, char* name, float scale); void CreateOpenGLBuffers(); void CleanUpOpenGLBuffers(); void Draw(glm::mat4 projectionView, Camera* camera); private: FBXFile* fbx; glm::mat4 position; char* name; SphereCollider* collider; float scale; }; #endif
[ "brandon.bruce@ad.aie.edu" ]
brandon.bruce@ad.aie.edu
b948103f90ff958ce1b0c2ad60591dd03de12b05
5100674f94aca3f0a0e9c4f3bcb16006d11e5c6b
/classic_interview_questions/lru_cplusplus.cpp
704f2e2bd93205e240309d9d33b06cc0b1bdbff2
[]
no_license
erikliu123/algorithm_problems
0702655ed61d60702395390e377d4e480aae75dc
7cab9006dc37a745ac9a5f96a9d4265508b712af
refs/heads/master
2023-08-11T13:01:07.235840
2021-09-27T03:28:41
2021-09-27T03:28:41
357,453,683
0
0
null
null
null
null
UTF-8
C++
false
false
1,889
cpp
#include <unordered_map> #include <list> #include <vector> using namespace std; struct Node { Node(int k = 0, int v = 0) : key(k), val(v) {} int key; int val; }; class LRUCache { public: /** * lru design * @param operators int整型vector<vector<>> the ops * @param k int整型 the k * @return int整型vector */ vector<int> LRU(vector<vector<int>> &operators, int k) { // write code here cap = k; vector<int> ans; for (auto &input : operators) { if (input[0] == 1) { put(input[1], input[2]); } else { ans.push_back(get(input[1])); } } return ans; } LRUCache(int capacity) { cap = capacity; } //删除 int remove(std::list<Node>::iterator &ite) { int key = ite->key; int val = ite->val; L.erase(ite); H.erase(key); return val; } // 添加 void add(int key, int val) { L.push_front(Node(key, val)); H[key] = L.begin(); if (L.size() > cap) { auto last = L.end(); --last; remove(last); } } void put(int x, int y) { auto ite = H.find(x); //已经存在,删除了再添加到头部 if (ite != H.end()) { remove(ite->second); } add(x, y); } int get(int x) { int val = 0; //已经存在,删除了再添加到头部 auto ite = H.find(x); if (ite != H.end()) { val = remove(ite->second); add(x, val); return val; } return -1; } private: std::list<Node> L; std::unordered_map<int, std::list<Node>::iterator> H; int cap; };
[ "1171045702@qq.com" ]
1171045702@qq.com
4dc53ae0cd68ee3d431c04825f2c98e794ff552d
a5edb9bc455f8e1e4cb7e20842ab0eeb8f602049
/source/net/udp/udpclient.cpp
5ba44f1e834a749c1bb26e70b7a9a1e12be3ba7a
[ "Apache-2.0" ]
permissive
lwIoT/lwiot-core
32d148b4527c9ca9f4b9716bd89ae10d4a99030e
07d2a3ba962aef508911e453268427b006c57701
refs/heads/master
2020-03-13T06:47:44.493308
2019-08-30T15:15:21
2019-08-30T15:15:21
131,012,032
1
0
null
null
null
null
UTF-8
C++
false
false
3,169
cpp
/* * UDP client implementation. * * @author Michel Megens * @email dev@bietje.net */ #include <stdlib.h> #include <stdio.h> #include <lwiot.h> #include <lwiot/types.h> #include <lwiot/log.h> #include <lwiot/stl/string.h> #include <lwiot/error.h> #include <lwiot/network/stdnet.h> #include <lwiot/network/udpclient.h> #include <lwiot/network/ipaddress.h> #include <lwiot/stl/move.h> namespace lwiot { UdpClient::UdpClient() : _remote(IPAddress::fromBindAddress(BIND_ADDR_ANY)), _port(0) { } UdpClient::UdpClient(const lwiot::IPAddress &addr, uint16_t port) : _remote(addr), _port(to_netorders(port)) { } UdpClient::UdpClient(const lwiot::String &host, uint16_t port) : _remote((uint32_t)0), _port(to_netorders(port)), _host(host) { this->resolve(); } const IPAddress& lwiot::UdpClient::address() const { return this->_remote; } uint16_t UdpClient::port() const { return this->_port; } void UdpClient::resolve() { remote_addr_t remote; if(this->_host.length() <= 0) return; remote.version = 4; if(dns_resolve_host(this->_host.c_str(), &remote) != -EOK) { this->_remote = stl::move(IPAddress(0,0,0,0)); } else { this->_remote = stl::move(IPAddress(remote)); } } uint8_t UdpClient::read() { uint8_t tmp; auto rc = this->read(&tmp, sizeof(tmp)); if(rc < 0) return 0; return tmp; } bool UdpClient::write(uint8_t byte) { return this->write(&byte, sizeof(byte)) == sizeof(byte); } Stream& UdpClient::operator<<(char x) { this->write((uint8_t)x); return *this; } Stream& UdpClient::operator<<(short x) { this->write((uint8_t*)&x, sizeof(x)); return *this; } Stream& UdpClient::operator<<(int x) { this->write((uint8_t*)&x, sizeof(x)); return *this; } Stream& UdpClient::operator<<(const long & x) { this->write((uint8_t*)&x, sizeof(x)); return *this; } Stream& UdpClient::operator<<(const long long& x) { this->write((uint8_t*)&x, sizeof(x)); return *this; } Stream& UdpClient::operator<<(unsigned char x) { this->write((uint8_t)x); return *this; } Stream& UdpClient::operator<<(unsigned short x) { this->write((uint8_t*)&x, sizeof(x)); return *this; } Stream& UdpClient::operator<<(unsigned int x) { this->write((uint8_t*)&x, sizeof(x)); return *this; } Stream& UdpClient::operator<<(unsigned const long & x) { this->write((uint8_t*)&x, sizeof(x)); return *this; } Stream& UdpClient::operator<<(const unsigned long long& x) { this->write((uint8_t*)&x, sizeof(x)); return *this; } Stream& UdpClient::operator<<(const float &x) { this->write((uint8_t*)&x, sizeof(x)); return *this; } Stream& UdpClient::operator<<(const double &x) { this->write((uint8_t*)&x, sizeof(x)); return *this; } Stream& UdpClient::operator<<(const lwiot::String &str) { *this << str.c_str(); return *this; } Stream& UdpClient::operator<<(const char *cstr) { this->write(reinterpret_cast<const uint8_t *>(cstr), strlen(cstr)); return *this; } }
[ "dev@bietje.net" ]
dev@bietje.net
c5d7b9e727f41812cb8cf9d4650c8fd7807e0729
f7ea25dec016933bea8599fde12e448ec668c1a2
/src/http/verbs.cpp
978138c366839c33b4391b7133157d40aac385f7
[ "Apache-2.0" ]
permissive
NeuralNoise/poseidon
3629b73e0f67b7194727b84733f92ab15dab12a8
27c8145641a171a1a239391f84248b7b55730f4c
refs/heads/master
2021-07-01T10:33:40.343882
2017-09-22T09:52:54
2017-09-22T09:52:54
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,067
cpp
// 这个文件是 Poseidon 服务器应用程序框架的一部分。 // Copyleft 2014 - 2017, LH_Mouse. All wrongs reserved. #include "../precompiled.hpp" #include "verbs.hpp" namespace Poseidon { namespace { CONSTEXPR const char VERB_TABLE[][16] = { "INVALID_VERB", "GET", "POST", "HEAD", "PUT", "DELETE", "TRACE", "CONNECT", "OPTIONS", }; } namespace Http { Verb get_verb_from_string(const char *str){ const unsigned len = std::strlen(str); if(len == 0){ return V_INVALID_VERB; } const char *const begin = VERB_TABLE[0]; const AUTO(pos, static_cast<const char *>(::memmem(begin, sizeof(VERB_TABLE), str, len + 1))); if(!pos){ return V_INVALID_VERB; } const unsigned i = (unsigned)(pos - begin) / sizeof(VERB_TABLE[0]); if(pos != VERB_TABLE[i]){ return V_INVALID_VERB; } return static_cast<Verb>(i); } const char *get_string_from_verb(Verb verb){ unsigned i = static_cast<unsigned>(verb); if(i >= COUNT_OF(VERB_TABLE)){ i = static_cast<unsigned>(V_INVALID_VERB); } return VERB_TABLE[i]; } } }
[ "lh_mouse@126.com" ]
lh_mouse@126.com
ce7a4864c0d3b9423648a7e7e3cea7f986aa7c2c
0840e722dd777fc8f2235d9828cc1294eda7fc73
/static_router.h
a84dc2b9ba067f75769f46c781b9c88a87115d91
[]
no_license
vincenscotti/convsim
34793eed9f17b44c7ac1306e9c0d14484baa143d
8d9638381b75e670b1d43e710026c9fca64b3a68
refs/heads/master
2020-09-05T09:31:47.468881
2020-01-09T14:50:35
2020-01-09T14:50:35
220,057,880
0
0
null
null
null
null
UTF-8
C++
false
false
3,045
h
#pragma once #include <systemc> #include <array> namespace convsim { using namespace std; using namespace sc_core; template <size_t Srcs, size_t Dsts> struct mcast_config { typedef array<array<bool, Dsts>, Srcs> routing_matrix; mcast_config() { for (auto &row : m) { row.fill(false); } } inline bool path(size_t src, size_t dst) { return m[src][dst]; } void groupEnable(size_t src, initializer_list<size_t> dsts) { for (auto dst : dsts) { assert(dst < Dsts); m[src][dst] = true; } } void print(ostream &os = cout) { for (size_t src = 0; src < Srcs; src++) { os << "source " << src << ": "; for (size_t dst = 0; dst < Dsts; dst++) { os << m[src][dst] << " "; } os << endl; } } bool valid() { for (size_t dst = 0; dst < Dsts; dst++) { size_t routes_for_dst = 0; for (size_t src = 0; src < Srcs; src++) { if (m[src][dst]) routes_for_dst++; } if (routes_for_dst > 1) return false; } return true; } private: routing_matrix m; }; typedef enum { N, E, S, W, GLB, PE, N_DIRECTIONS } direction; template <typename DataType> SC_MODULE(router) { // configuration matrix: a row for each src port, a col for each dst port typedef mcast_config<N_DIRECTIONS, N_DIRECTIONS> config; typedef DataType data_type; // router interface // a clk signal to know the propagation delay to model sc_in<bool> clk; // N input fifos, one for each source port array<sc_fifo_in<DataType>, N_DIRECTIONS> in; // N output fifos, one for each output port array<sc_fifo_out<DataType>, N_DIRECTIONS> out; SC_CTOR(router) : clk("clk") { // each source port has its own control flow (so a stall on one port doesn't stall the whole router) for (size_t i = 0; i < N_DIRECTIONS; i++) { sc_spawn_options opts; opts.set_sensitivity(&clk.pos()); direction dir = static_cast<direction>(i); sc_spawn(bind(&router::port_thread, this, dir), 0, &opts); } } void set_config(config new_cfg) { cfg = new_cfg; // first we validate the new configuration if (!cfg.valid()) throw runtime_error(string(name()) + " invalid router configuration"); cerr << "Router " << name() << endl; cerr << "Setting new circuit configuration" << endl; cfg.print(cerr); } private: // the route configuration config cfg; void port_thread(direction src) { DataType data_in; while (true) { in[src].read(data_in); wait(1); for (size_t dst = 0; dst < N_DIRECTIONS; dst++) { // for each dst port, check if we should send there if (cfg.path(src, dst)) { out[dst].write(data_in); } } } } }; }
[ "vscotti@gap.upv.es" ]
vscotti@gap.upv.es
45468650fa734cd7d4edc688475a605a5ec91a53
0ec75f71699b7abbff707ac11907cd01312a66e8
/NewSplittingPlacement.cpp
58212cea97b749e679e5e437fd8081e8a0cdce44
[]
no_license
stonetree/NewSplittingPlacement
84b490d66919c4223f1b326d1a4d0f2513d87d26
7c0433a866d9c8e69cbc10bcb98be62621479172
refs/heads/master
2020-05-20T06:41:18.617043
2014-11-26T01:47:40
2014-11-26T01:47:40
26,755,539
0
0
null
null
null
null
GB18030
C++
false
false
2,358
cpp
// NewSplittingPlacement.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include "common.h" #include "cVMRequest.h" #include "cServer.h" uint total_num_profile_55 = 100; uint total_num_profile_70 = 0; uint total_num_servers = 50; double total_server_capacity = 100; double splitable_percentage = 1; double total_used = 0; uint request_index = 0; map<double,MappingFunction> resourceRequirement; map<ID,cServer*> usedServers; map<ID,cServer*> unusedServers; double lambda_low_55 = 0.7; double lambda_high_55 = 1.4; double lambda_low_70 = 0.5; double lambda_high_70 = 1.2; double lambda_low_80 = 0.4; double lambda_high_80 = 1; double lambda_low_90 = 0.2; double lambda_high_90 = 0.8; double lambda_low_100 = 0.1; double lambda_high_100 = 0.6; int _tmain(int argc, _TCHAR* argv[]) { //store the resource required by the original vm or its svms vector<vector<double>> resource_request_vec; //input the info about resource requests if (initializeInputFile(resource_request_vec)) { cout<<"Can not locate the input file"<<endl; exit(0); } vector<vector<double>>::iterator input_iterator = resource_request_vec.begin(); for (;input_iterator != resource_request_vec.end();input_iterator++) { unusedServers.clear(); usedServers.clear(); //initialize parameters initializeInputParameters((*input_iterator)); //servers vector<cServer> server_vec; //Initialize servers initializeServers(server_vec); //vm requests vector<cVMRequest> vmrequests_vec; initializeVMRequests(vmrequests_vec); //resource requirement map<pair<double,uint>,double> resource_request; //initialize the resource request //initializeResourceRequest(*input_iterator,resource_request); initializeResourceRequest(); vector<cVMRequest>::iterator iter_vm_request; //allocate vm requests request_index = 1; //allocateGlobalVMRequest(vmrequests_vec,server_vec,resource_request); for (iter_vm_request = vmrequests_vec.begin();iter_vm_request != vmrequests_vec.end();iter_vm_request++) { cout<<"The "<<request_index<<"th request"<<endl; allocateVMRequest(*iter_vm_request,server_vec,resource_request); //allocateVMRequestGreedy(*iter_vm_request,server_vec,resource_request); request_index++; } //collect output data outputResults((*input_iterator)[0],server_vec); } return 0; }
[ "liuliu.sky@gmail.com" ]
liuliu.sky@gmail.com
9c4e7440d705e0f51b5fb610a2d74603a072e726
7b277abc452923a6b75eaacfba77142ebcf8dfee
/NaoCodeBackup/UTNaoTool/calibration/JointCalibrator.cpp
f7d053685097f2817425d0389fd335956f8892b0
[]
no_license
sbha2431/Abstractions-Learning
26ad5848e69e1436bffc2988cc68755e2bd39ee0
4ad7ed5a9ea1a942263fca27ae4a1bc9a1e03f91
refs/heads/master
2020-05-25T11:30:48.617375
2019-02-27T17:46:20
2019-02-27T17:46:20
83,600,277
0
1
null
null
null
null
UTF-8
C++
false
false
11,197
cpp
#include "JointCalibrator.h" #include <memory/MemoryFrame.h> #include <memory/MemoryCache.h> #include <memory/LogViewer.h> #include <vision/ImageProcessor.h> #include <math/GaussNewtonOptimizer.h> #define OPTIMIZE_POSITION false using namespace std; using namespace Eigen; using Corners = JointCalibrator::Corners; std::vector<int> rjointMap = { HeadYaw, HeadPitch, RHipYawPitch, RHipRoll, RHipPitch, RKneePitch, RAnklePitch, RAnkleRoll }; std::vector<int> ljointMap = { HeadYaw, HeadPitch, LHipYawPitch, LHipRoll, LHipPitch, LKneePitch, LAnklePitch, LAnkleRoll }; std::vector<float> weights = { 1.0f, 1.0f, 1.0f, 1.0f, 1.0f, 1.0f, 1.0f, 1.0f, 100.0f, 100.0f, 100.0f, 1.0f }; JCSettings::JCSettings() { boardOffset = 165.0f; squareSize = 25.0f; boardSize.width = 6; boardSize.height = 4; corners = 24; oX = oY = 0; oZ = -3; oT = 0; } JointCalibrator::JointCalibrator() { memory_ = std::make_unique<MemoryFrame>(false, MemoryOwner::TOOL_MEM, 0, 1); //printf("creating cache\n"); cache_ = std::make_unique<MemoryCache>(); //printf("creating blocks\n"); vblocks_ = std::make_unique<VisionBlocks>(*cache_); //printf("creating params\n"); params_ = std::make_unique<ImageParams>(Camera::BOTTOM); //printf("creating processor\n"); processor_ = std::make_unique<ImageProcessor>(*vblocks_, *params_, Camera::BOTTOM); processor_->enableCalibration(true); datafile_ = string(getenv("NAO_HOME")) + "/data/jcalibration.yaml"; reset(); } JointCalibrator::~JointCalibrator() { stop(); } void JointCalibrator::reset() { cal_ = std::make_unique<RobotCalibration>(); processor_->setCalibration(*cal_); stop(); } void JointCalibrator::stop() { calibrating_ = false; if(thread_) { thread_->join(); thread_.reset(); } } void JointCalibrator::start(int iterations, function<void()> callback) { if(thread_) { thread_->join(); thread_.reset(); } calibrating_ = true; thread_ = std::make_unique<std::thread>(&JointCalibrator::calibrate, (JointCalibrator*)this, iterations, callback); } void JointCalibrator::pause() { calibrating_ = false; //TODO: fill in } void JointCalibrator::setCalibration(const RobotCalibration& cal) { cal_ = std::make_unique<RobotCalibration>(cal); processor_->setCalibration(*cal_); processor_->updateTransform(); } void JointCalibrator::setMemory(MemoryFrame* memory) { //memory_ = std::make_unique<MemoryFrame>(*memory); //memory_ = memory; cache_->fill(memory); processor_->updateTransform(); } void JointCalibrator::takeSamples(LogViewer* log) { printf("getting samples\n"); Dataset dataset; for(int i = 0; i < log->size(); i++) { auto& frame = log->getFrame(i); cache_->fill(frame); auto m = takeSample(&frame); printf("found %lu corners in frame %i\n", m.corners.size(), i); if(m.corners.size() != settings_.corners) continue; dataset.push_back(m); } dataset.saveToFile(datafile_); } JointCalibrator::Measurement JointCalibrator::takeSample(MemoryFrame* frame) { unsigned char* imgraw = processor_->getImg(); const ImageParams& iparams = processor_->getImageParams(); cv::Mat cvimage = color::rawToMat(imgraw, iparams); Measurement m; m.left = left(); m.corners = findChessboardCorners(cvimage); if(m.corners.size() == 0) return m; MemoryCache cache(frame); for(int i = 0; i < jointMap().size(); i++) m.joints.push_back(cache.joint->values_[jointMap()[i]]); return m; } void JointCalibrator::calibrate(int iterations, function<void()> callback) { cache_->fill(*memory_); Dataset dataset; dataset.loadFromFile(datafile_); vector<float> iparams = convertParams(*cal_); GaussNewtonOptimizer<Measurement,JointCalibrator> optimizer(iparams, dataset, *this, &JointCalibrator::evaluate); printf("created optimizer\n"); for(int i = 0; i < iterations; i++) { if(!calibrating_) break; error_ = optimizer.iterate(); printf("ITERATION CHANGE: %2.5f\n", error_); auto params = optimizer.getParameters(); printf("ITERATION ERROR: %2.5f\n", evaluate(dataset, params)); if(error_ < .01) break; } printf("\n--------------------------------------\n"); auto params = optimizer.getParameters(); *cal_ = convertParams(params); callback(); } vector<float> JointCalibrator::convertParams(const RobotCalibration& cal) const { printf("start!\n"); vector<float> offsets; for(int i = 0; i < jointMap().size(); i++) { offsets.push_back(cal.jointValues_[jointMap()[i]] / weights[i]); } printf("poses\n"); if(OPTIMIZE_POSITION) { offsets.push_back(cal.poseX / weights[jointMap().size()]); offsets.push_back(cal.poseY / weights[jointMap().size() + 1]); offsets.push_back(cal.poseZ / weights[jointMap().size() + 2]); offsets.push_back(cal.poseTheta / weights[jointMap().size() + 3]); } printf("done: %lu\n",offsets.size()); return offsets; } RobotCalibration JointCalibrator::convertParams(const vector<float>& offsets) const { RobotCalibration cal; cal.useLeft = left(); //printf("applying offsets:\n"); for(int i = 0; i < jointMap().size(); i++) { //printf("[%s:%2.5f],",JointNames[jointMap()[i]].c_str(),offsets[i]); cal.jointValues_[jointMap()[i]] = offsets[i] * weights[i]; } if(OPTIMIZE_POSITION) { cal.poseX = offsets[jointMap().size()] * weights[jointMap().size()]; cal.poseY = offsets[jointMap().size() + 1] * weights[jointMap().size() + 1]; cal.poseZ = offsets[jointMap().size() + 2] * weights[jointMap().size() + 2]; cal.poseTheta = offsets[jointMap().size() + 3] * weights[jointMap().size() + 3]; } else { cal.poseX = settings_.oX; cal.poseY = settings_.oY; cal.poseZ = settings_.oZ; cal.poseTheta = settings_.oT; } //printf("pose offset: %2.3f,%2.3f,%2.3f @ %2.f", cal.poseX, cal.poseY, cal.poseZ, cal.poseTheta * RAD_T_DEG); //printf("\n"); return cal; } float JointCalibrator::evaluate(const Dataset& d, const vector<float>& offsets) const { float sqerror = 0; for(auto m : d) { sqerror += pow(evaluate(m,offsets),2); } return sqrt(sqerror / d.size()); } float JointCalibrator::evaluate(const Measurement& m, const vector<float>& offsets) const { *cal_ = convertParams(offsets); cal_->useLeft = m.left; // This is redundant, just want to avoid mistakes for(int i = 0; i < jointMap().size(); i++) { assert(m.joints.size() == jointMap().size()); cache_->joint->values_[jointMap()[i]] = m.joints[i]; } processor_->setCalibration(*cal_); processor_->updateTransform(); //printf("projecting corners\n"); auto pcorners = projectChessboardCorners(m.left); //printf("computing projection error\n"); float error = computeProjectionError(m.corners, pcorners); //printf("error: %2.2f\n", error); for(int i = 0; i < pcorners.size(); i++) { auto mc = m.corners[i]; auto pc = pcorners[i]; //printf("[(%2.2f,%2.2f) vs (%2.2f,%2.2f)],", mc[0], mc[1], pc[0], pc[1]); } //printf("\n"); return error; } Corners JointCalibrator::findChessboardCorners(unsigned char* image) const { const ImageParams& iparams = processor_->getImageParams(); cv::Mat cvimage = color::rawToMat(image, iparams); return findChessboardCorners(cvimage); } Corners JointCalibrator::findChessboardCorners(cv::Mat& image) const { //printf("find corners\n"); cv::Mat grayImage, sharpened; // Sharpen the image first to improve detection rates cv::GaussianBlur(image, sharpened, cv::Size(0, 0), 3); cv::addWeighted(image, 3, sharpened, -2, 0, sharpened); // Convert to gray cvtColor(sharpened, grayImage, CV_BGR2GRAY); // Detect checkerboard corners vector<cv::Point2f> imagePoints; bool found = cv::findChessboardCorners(grayImage, settings_.boardSize, imagePoints, CV_CALIB_CB_ADAPTIVE_THRESH | CV_CALIB_CB_NORMALIZE_IMAGE); // This doesn't seem to be necessary //if(settings_.patternType == CalibratorSettings::CHESSBOARD && found) { //cv::cornerSubPix(grayImage, imagePoints, cv::Size(11,11), cv::Size(-1, -1), //cv::TermCriteria(CV_TERMCRIT_EPS + CV_TERMCRIT_ITER, 30, 0.1)); //} auto corners = Corners(); //printf("%i corners found:\n", imagePoints.size()); processor_->updateTransform(); for(auto p : imagePoints) { corners.push_back(Vector2f(p.x,p.y)); //printf("(%2.f,%2.f) ",p.x,p.y); const auto& cmat = processor_->getCameraMatrix(); auto world = cmat.getWorldPosition(p.x,p.y); //printf(" <- [%2.f,%2.f,%2.f], ", world.x, world.y, world.z); } //printf("\n"); return corners; } Corners JointCalibrator::projectChessboardCorners(bool left) const { vector<Vector3f> fcorners; Vector2f topLeft( settings_.boardOffset + (settings_.boardSize.height / 2.0f - .5) * settings_.squareSize, (settings_.boardSize.width / 2.0f - .5) * settings_.squareSize ); //printf("top left (foot rel): %2.f,%2.f,0\n",topLeft[0],topLeft[1]); for(int x = 0; x < settings_.boardSize.height; x++) { for(int y = 0; y < settings_.boardSize.width; y++) { fcorners.push_back(Vector3f( topLeft[0] - settings_.squareSize * x, topLeft[1] - settings_.squareSize * y, 0 )); } } Corners corners; //printf("converting %i world coordinates\n", fcorners.size()); for(auto fc : fcorners) { Pose3D foot = cache_->body_model->abs_parts_[left ? BodyPart::left_bottom_foot : BodyPart::right_bottom_foot]; //printf("%s foot at %2.2f,%2.2f,%2.2f\n", left ? "left" : "right", foot.translation.x, foot.translation.y, foot.translation.z); foot.translate(cal_->poseX, cal_->poseY, cal_->poseZ); foot.rotateZ(cal_->poseTheta); foot.translate(fc[0], fc[1], fc[2]); auto wc = foot.translation; //printf("converting foot-rel to world: %2.2f,%2.2f,%2.2f --> %2.2f,%2.2f,%2.2f\n", fc[0], fc[1], fc[2], wc[0], wc[1], wc[2]); const auto& cmat = processor_->getCameraMatrix(); auto coords = cmat.getImageCoordinates(wc[0], wc[1], wc[2]); Vector2f ic(coords.x, coords.y); //printf("converting world coordinate: %2.2f,%2.2f,%2.2f --> %2.f,%2.f\n", wc[0], wc[1], wc[2], ic[0], ic[1]); corners.push_back(ic); } return corners; } float JointCalibrator::computeProjectionError(const Corners& icorners, const Corners& pcorners) const { assert(icorners.size() == pcorners.size()); float sqSum = 0.0f; const ImageParams& iparams = processor_->getImageParams(); for(int i = 0; i < icorners.size(); i++) { if(pcorners[i][0] < 0 || pcorners[i][0] > iparams.width || pcorners[i][1] < 0 || pcorners[i][1] > iparams.height) continue; sqSum += (icorners[i] - pcorners[i]).squaredNorm(); } float sum = sqrt(sqSum); return sum; } bool& JointCalibrator::left() { return cal_->useLeft; } const bool& JointCalibrator::left() const { return cal_->useLeft; } vector<int>& JointCalibrator::jointMap() { if(left()) return ljointMap; else return rjointMap; } const vector<int>& JointCalibrator::jointMap() const { if(left()) return ljointMap; else return rjointMap; } bool JointCalibrator::validateProjection(const Corners& icorners, const Corners& pcorners) const { return icorners.size() == pcorners.size() && icorners.size() > 0; }
[ "stevencarr@utexas.edu" ]
stevencarr@utexas.edu
cf624a66c5af950f27a35bfedb672dc2d598b0ff
d4a154e192e790d8607a5f3de9c1f95109599b20
/project4/proj4B/PNMwriter.h
97116e7794d225e495cd57a2201dfae7aba41d1f
[]
no_license
fabiancaraballo/CS330-C-CPP-UNIX
80b5baa018bd4b01902ec31ab1c7e36c6726a0fa
2992348a0a7ff4d1924e9db2b75f0a4ec793efdd
refs/heads/master
2020-06-11T02:58:25.686134
2019-06-26T05:01:11
2019-06-26T05:01:11
193,832,508
0
0
null
null
null
null
UTF-8
C++
false
false
155
h
#ifndef PNMWRITER_H #define PNMWRITER_H #include <stdio.h> #include "sink.h" class PNMwriter: public Sink { public: void Write(char *file); }; #endif
[ "fabian.caraballo@gmail.com" ]
fabian.caraballo@gmail.com
1b732abc79c81b5afe02c4c9aa0a8fca7e305013
7dd209afc5217ece1f71c1d7875d5e237d1a6c95
/Test/1.cpp
e86a00af0463172def005c92b388750797a72c06
[]
no_license
hieudt183739/Aglorithm
9a9ef6b01f46a67ba7d19f857be796765dadb55d
3377789e97cd8af0522d44b85c9767b771263c04
refs/heads/master
2023-07-05T22:51:04.662621
2021-08-04T08:37:19
2021-08-04T08:37:19
346,371,022
0
0
null
null
null
null
UTF-8
C++
false
false
985
cpp
#include<iostream> #include<algorithm> #include<vector> using namespace std; const int N = 1e5 + 10; int num[N]; int main(){ ios_base::sync_with_stdio(false);cin.tie(NULL); int n; cin >> n; for(int i = 0; i < n; i++){ cin >> num[i]; } int res = 0; int sum = 0; for(int i = 0; i < n; i++){ res += num[i] * i; sum += num[i]; } int tmp = res; for(int i = n -1; i >= 1; i--){ tmp = tmp - num[i] * (n - 1) + sum - num[i]; res = max(res, tmp); } cout << res << endl; return 0; } // https://leetcode.com/problems/rotate-function // f(0) = num[0] x 0 + num[1] x 1 + num[2] x 2 + num[3] x 3 // f(1) = num[3] x 0 + num[0] x 1 + num[1] x 2 + num[2] x 3 = f(0) - num[3] x 3 + num[0] + num[1] + num[2] // = f(0) - num[3] x 3 + sum -num[3] // f(2) = num[2] x 0 + num[3] x 1 + num[0] x 2 + num[1] x 3 = f(1) - num[2] x 3 + num[3] + num[0] + num[1] // = f(1) - num[2] x 3 + sum - num[2];
[ "video06072000@gmail.com" ]
video06072000@gmail.com
c964695b3dedcc8f631ea26d8979a20f9aa431bc
6a3a50538c544c9f8d65bcb8f96d4e3b68a4e848
/Sources/Bomberman/Header/InputComponent.hh
1f6984a0922f86a604ca7a41430dfef308b1012d
[]
no_license
lejard-h/cpp_bomberman
8f2d7eabebc1b872e189f066caeee78bc2550569
3ba7dcbc77ac87fb47be006446c537da7055b2dc
refs/heads/master
2016-09-06T08:57:09.230787
2014-07-11T08:55:12
2014-07-11T08:55:12
21,691,750
0
1
null
null
null
null
UTF-8
C++
false
false
931
hh
/* ** InputComponent.hh for Bomberman in /home/lejard_h/rendu/cpp_bomberman/Bomberman/Header ** ** Made by hadrien lejard ** Login <lejard_h@epitech.net> ** ** Started on jeu. mai 29 14:19:36 2014 hadrien lejard // Last update Sat Jun 14 10:59:46 2014 Marc Le Labourier */ #ifndef __INPUTCOMPONENT_HH__ # define __INPUTCOMPONENT_HH__ #include <queue> #include "SysGame.hh" #include "Component.hh" #include "EventDispatcher.hh" #include "Settings.hpp" #include "PositionComponent.hh" #include "PhysicComponent.hh" #include "KeyboardManager.hh" #include "LeapManager.hh" namespace Bomb { class InputComponent : public BaseComponent { public: InputComponent(); void Destroy(); void OnEvent(Event::Event *); protected: std::list<Event::Event *> _events; std::map<std::string, double> _rMap; void Move(std::string const &) const; void Move(int) const; void PutBomb() const; }; } #endif
[ "lejard_h@epitech.eu" ]
lejard_h@epitech.eu
883b9d3d5ca995b9d32e2f5e3fbaa243e098a4d5
a92b18defb50c5d1118a11bc364f17b148312028
/src/prod/src/Management/ClusterManager/ClearComposeDeploymentUpgradeContextAsyncOperation.h
132b02c32eff3728827733371aab24939fff577e
[ "MIT" ]
permissive
KDSBest/service-fabric
34694e150fde662286e25f048fb763c97606382e
fe61c45b15a30fb089ad891c68c893b3a976e404
refs/heads/master
2023-01-28T23:19:25.040275
2020-11-30T11:11:58
2020-11-30T11:11:58
301,365,601
1
0
MIT
2020-11-30T11:11:59
2020-10-05T10:05:53
null
UTF-8
C++
false
false
1,080
h
// ------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License (MIT). See License.txt in the repo root for license information. // ------------------------------------------------------------ #pragma once namespace Management { namespace ClusterManager { class ClearComposeDeploymentUpgradeContextAsyncOperation : public ProcessRolloutContextAsyncOperationBase { public: ClearComposeDeploymentUpgradeContextAsyncOperation( __in RolloutManager &, __in ComposeDeploymentUpgradeContext &, Common::TimeSpan const, Common::AsyncCallback const &, Common::AsyncOperationSPtr const &); void OnStart(Common::AsyncOperationSPtr const &); private: void OnCommitComplete(Common::AsyncOperationSPtr const &, bool expectedCompletedSynchronously); ComposeDeploymentUpgradeContext & context_; }; } }
[ "noreply-sfteam@microsoft.com" ]
noreply-sfteam@microsoft.com
ad3ddd9ca0d56abf0c41cbccdf6ca84d57bc0271
d11be72d86ffb16a89e89c84e387c04329b28d2f
/SampleLib/samplelib.cpp
71aee070b161ff3ae3100847227206e4dcc8059d
[]
no_license
PlumpMath/InteropTest
734cce3c8a9a0f9624652ea853a9a9147303b9be
d58a75207497d69c9220a57b805f324e8a235e2e
refs/heads/master
2021-01-19T23:12:06.453327
2013-09-09T05:27:31
2013-09-09T05:27:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
301
cpp
#include <iostream> #include "samplelib.h" #include "time.h" int Test() { std::cout << "Calling Add(2, 3)" << std::endl; int res = Add(2, 3); std::cout << "Calling Sub(5, 1)" << std::endl; return Sub(res, 1); } int Add(int a, int b) { return a + b; } int Sub(int a, int b) { return a - b; }
[ "klein.yang@outlook.com" ]
klein.yang@outlook.com
cad13824c7090334fa8047497629e7a821ba5fb6
ad295aa0208a892bedad00918d02c227c00e1b90
/ComparatorSyntacticSugarProject/ComparatorSyntacticSugarProject.cpp
eb61c30013a40a419e32e217c17352f9c54bf0f8
[]
no_license
michallub/ComparatorSyntacticSugarRepo
3a4243516c775b8423caad44a05df478f3478d0c
e3c5aaf8ac933dcda9b1af7faf8b114fddf37276
refs/heads/master
2023-08-14T06:35:05.953930
2021-09-14T02:30:26
2021-09-14T02:30:26
406,183,347
0
0
null
null
null
null
UTF-8
C++
false
false
227
cpp
// ComparatorSyntacticSugarProject.cpp : Defines the functions for the static library. // #include "pch.h" #include "framework.h" // TODO: This is an example of a library function void fnComparatorSyntacticSugarProject() { }
[ "michallub@outlook.com" ]
michallub@outlook.com
aafe10247283705be3e7cc3fb06cc7eac9f91d98
93427e5015233aea8284ab7dc37a4b59b9d6c500
/tree/pruefer-code.hpp
1b14c5676092d6e781dc240bf27962c3dda6b135
[ "CC0-1.0" ]
permissive
zxc123qwe456asd789/library
fd978a387c8dd805ef1a7ffc1118272c6878b64a
13c01442cc5082da181acdaa414554ace30b6ae3
refs/heads/master
2023-05-28T22:50:47.466753
2021-06-12T04:10:24
2021-06-12T04:10:24
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,035
hpp
#pragma once #include "../misc/rng.hpp" // input: [c \in [0, n)] * (n-2), n>=3 vector<vector<int>> pruefer_code(const vector<int>& code) { int n = code.size() + 2; assert(n > 2); vector<vector<int>> g(n); vector<int> deg(n, 1); int e = 0; for (auto& x : code) deg[x]++; for (auto& i : code) { for (int j = 0; j < n; j++) { if (deg[j] == 1) { g[i].push_back(j); g[j].push_back(i); deg[i]--, deg[j]--; e++; break; } } } int u = -1, v = -1; for (int i = 0; i < n; i++) { if (deg[i] == 1) (u == -1 ? u : v) = i; } assert(u != -1 and v != -1); g[u].push_back(v); g[v].push_back(u); e++; assert(e == n - 1); return g; } vector<vector<int>> random_tree(int n) { if (n <= 2) { vector<vector<int>> g(n); if (n == 2) { g[0].push_back(1); g[1].push_back(0); } return g; } vector<int> pruefer(n - 2); for (auto& x : pruefer) x = randint(0, n); return pruefer_code(pruefer); } /** * @brief Pruefer Code */
[ "suteakadapyon3@gmail.com" ]
suteakadapyon3@gmail.com
5b06f21dc372f55d01016625c6053de945a43bd8
3a7215dc6b8ec2ca51af991c0625eca3230b94cf
/c++/reconstruct_itenerary.cpp
460dc818c2b9bb612b15c58c7219547f44607853
[]
no_license
ajayt6/AlgoPractice
55fd60dc5ac3df28680eedb0d3776b7dfabe0823
6ab6c65a11ddd47be2e3b8de904a46af7da77868
refs/heads/master
2020-12-24T11:37:01.050541
2018-02-23T04:11:49
2018-02-23T04:11:49
73,027,996
0
0
null
null
null
null
UTF-8
C++
false
false
1,939
cpp
/* https://leetcode.com/problems/reconstruct-itinerary/ This is colution only for the base case */ #include<vector> #include<iostream> #include<unordered_map> #include<string> using namespace std; class Node { public: string value; Node * next; Node() { value = ""; next = NULL; } }; vector<pair<string, string>> tickets;// = ("MUC", "LHR"), ("JFK", "MUC"), ("SFO", "SJC"), ("LHR", "SFO") }; vector<string> findItinerary(vector<pair<string, string>> tickets) { unordered_map<string, pair<Node*, int>> airportMap; string a; vector<string> resultVector; Node *temp = NULL,*begin = NULL; for (auto i = tickets.begin(); i != tickets.end(); i++) { //cout << i->first << " " << i->second << endl; //First check if the airport is already there in the map if (airportMap.find(i->first) == airportMap.end()) { temp = new Node; temp->value = i->first; airportMap[i->first].first = temp; airportMap[i->first].second = 0; } else { temp = airportMap[i->first].first; } if (airportMap.find(i->second) == airportMap.end()) { temp->next = new Node; temp->next->value = i->second; airportMap[i->second].first = temp->next; airportMap[i->second].second = 1; } else { temp->next= airportMap[i->second].first; } if (i->first.compare("JFK") == 0) begin = temp; } if (begin != NULL) { temp = begin; while (temp != NULL) { resultVector.push_back(temp->value); temp = temp->next; } return resultVector; } else return{ "Invalid" }; } int main() { vector<string> result; tickets.push_back(pair<string,string>("MUC", "LHR")); tickets.push_back(pair<string, string>("JFK", "MUC")); tickets.push_back(pair<string, string>("SFO", "SJC")); tickets.push_back(pair<string, string>("LHR", "SFO")); result = findItinerary(tickets); cout << "The result is: " << endl; for (auto i : result) { cout << i << " "; } getchar(); return 0; }
[ "ajayt6@gmail.com" ]
ajayt6@gmail.com
e3a4b75644d9f4c2862cae627f85e0bd24d4873a
0674e81a160161996251fb4b063c801330ccd1e2
/codeforces/Gym/2009-ACMICPC-SouthEast_USA_regional/F.cpp
1666e7a85e238a962015ced150f1466acbf72ad1
[]
no_license
joshuabezaleel/cp
8a2c9b44605810da4367efeb981f822ae5e1e9a2
57f365458cca38c3c0fb1f5af1c6b44b74f3b53e
refs/heads/master
2022-07-19T00:39:34.395495
2020-05-23T20:37:20
2020-05-23T20:37:20
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,946
cpp
#include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <stack> #include <algorithm> #include <utility> #include <numeric> #include <sstream> #include <iostream> #include <iomanip> #include <cstdio> #include <cstring> #include <cmath> #include <cstdlib> #include <ctime> #include <cassert> using namespace std; #ifdef DEBUG #define debug(...) printf(__VA_ARGS__) #define GetTime() fprintf(stderr,"Running time: %.3lf second\n",((double)clock())/CLOCKS_PER_SEC) #else #define debug(...) #define GetTime() #endif //type definitions typedef long long ll; typedef double db; typedef pair<int,int> pii; //abbreviations #define A first #define B second #define MP make_pair #define PB push_back #define LLD "%I64d" //macros #define REP(i,n) for (int i = 0; i < (n); ++i) #define REPD(i,n) for (int i = (n)-1; 0 <= i; --i) #define FOR(i,a,b) for (int i = (a); i <= (b); ++i) #define FORD(i,a,b) for (int i = (a); (b) <= i; --i) #define FORIT(it,c) for (__typeof ((c).begin()) it = (c).begin(); it != (c).end(); it++) #define ALL(a) (a).begin(),(a).end() #define SZ(a) ((int)(a).size()) #define RESET(a,x) memset(a,x,sizeof(a)) #define EXIST(a,s) ((s).find(a) != (s).end()) #define MX(a,b) a = max((a),(b)); #define MN(a,b) a = min((a),(b)); /* -------------- end of azaky's template -------------- */ int n, d, a[1111]; int main(){ scanf("%d%d",&n,&d); if (n + d == 0) return 0; priority_queue <pii> pq; map<int,int> pos; FOR(i,1,n){ scanf("%d",&a[i]); pos[a[i]] = i; pq.push(MP(-a[i],i)); } bool left = pos[*max_element(a+1,a+n+1)] < pos[*min_element(a+1,a+n+1)]; int lastpos = pq.top().B; pq.pop(); int ans = 0; FOR(i,2,n){ int nowpos = pq.top().B; pq.pop(); if ((nowpos < lastpos && !left) || (nowpos > lastpos && left)) ans += d; lastpos = nowpos; } printf("%d\n",ans); main(); return 0; }
[ "ahmadzaky003@gmail.com" ]
ahmadzaky003@gmail.com
501ea5736b5be5f5fe1d428708faf715991e82ed
1bf8b46afad5402fe6fa74293b464e1ca5ee5fd7
/SDK/BPF_Clipper_parameters.h
7d551adaae71f6d48b1151b5c506aa2a96e513af
[]
no_license
LemonHaze420/ShenmueIIISDK
a4857eebefc7e66dba9f667efa43301c5efcdb62
47a433b5e94f171bbf5256e3ff4471dcec2c7d7e
refs/heads/master
2021-06-30T17:33:06.034662
2021-01-19T20:33:33
2021-01-19T20:33:33
214,824,713
4
0
null
null
null
null
UTF-8
C++
false
false
819
h
#pragma once #include "../SDK.h" // Name: Shenmue3SDK, Version: 1.4.1 #ifdef _MSC_VER #pragma pack(push, 0x8) #endif namespace SDK { //--------------------------------------------------------------------------- // Parameters //--------------------------------------------------------------------------- // Function BPF_Clipper.BPF_Clipper_C.getS3ClipperManager struct UBPF_Clipper_C_getS3ClipperManager_Params { class UObject* __WorldContext; // (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData) class ABP_Clipper_C* AsBP_Clipper; // (Parm, OutParm, ZeroConstructor, IsPlainOldData) }; } #ifdef _MSC_VER #pragma pack(pop) #endif
[ "35783139+LemonHaze420@users.noreply.github.com" ]
35783139+LemonHaze420@users.noreply.github.com
1f9032dea2539747238aabc906df53027f987265
73cfd700522885a3fec41127e1f87e1b78acd4d3
/_Include/boost/preprocessor/repetition/enum_binary_params.hpp
401144b4590a3306ecfd7465c723704a4eb8f1b3
[]
no_license
pu2oqa/muServerDeps
88e8e92fa2053960671f9f57f4c85e062c188319
92fcbe082556e11587887ab9d2abc93ec40c41e4
refs/heads/master
2023-03-15T12:37:13.995934
2019-02-04T10:07:14
2019-02-04T10:07:14
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,141
hpp
//////////////////////////////////////////////////////////////////////////////// // enum_binary_params.hpp # /* ************************************************************************** # * * # * (C) Copyright Paul Mensonides 2002. # * Distributed under the Boost Software License, Version 1.0. (See # * accompanying file LICENSE_1_0.txt or copy at # * http://www.boost.org/LICENSE_1_0.txt) # * * # ************************************************************************** */ # # /* See http://www.boost.org for most recent version. */ # # ifndef BOOST_PREPROCESSOR_REPETITION_ENUM_BINARY_PARAMS_HPP # define BOOST_PREPROCESSOR_REPETITION_ENUM_BINARY_PARAMS_HPP # # include <boost/preprocessor/cat.hpp> # include <boost/preprocessor/config/config.hpp> # include <boost/preprocessor/punctuation/comma_if.hpp> # include <boost/preprocessor/repetition/repeat.hpp> # include <boost/preprocessor/tuple/elem.hpp> # include <boost/preprocessor/tuple/rem.hpp> # # /* BOOST_PP_ENUM_BINARY_PARAMS */ # # if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_EDG() # define BOOST_PP_ENUM_BINARY_PARAMS(count, p1, p2) BOOST_PP_REPEAT(count, BOOST_PP_ENUM_BINARY_PARAMS_M, (p1, p2)) # else # define BOOST_PP_ENUM_BINARY_PARAMS(count, p1, p2) BOOST_PP_ENUM_BINARY_PARAMS_I(count, p1, p2) # define BOOST_PP_ENUM_BINARY_PARAMS_I(count, p1, p2) BOOST_PP_REPEAT(count, BOOST_PP_ENUM_BINARY_PARAMS_M, (p1, p2)) # endif # # if BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_STRICT() # define BOOST_PP_ENUM_BINARY_PARAMS_M(z, n, pp) BOOST_PP_ENUM_BINARY_PARAMS_M_IM(z, n, BOOST_PP_TUPLE_REM_2 pp) # define BOOST_PP_ENUM_BINARY_PARAMS_M_IM(z, n, im) BOOST_PP_ENUM_BINARY_PARAMS_M_I(z, n, im) # else # define BOOST_PP_ENUM_BINARY_PARAMS_M(z, n, pp) BOOST_PP_ENUM_BINARY_PARAMS_M_I(z, n, BOOST_PP_TUPLE_ELEM(2, 0, pp), BOOST_PP_TUPLE_ELEM(2, 1, pp)) # endif # # if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_MSVC() # define BOOST_PP_ENUM_BINARY_PARAMS_M_I(z, n, p1, p2) BOOST_PP_ENUM_BINARY_PARAMS_M_II(z, n, p1, p2) # define BOOST_PP_ENUM_BINARY_PARAMS_M_II(z, n, p1, p2) BOOST_PP_COMMA_IF(n) p1 ## n p2 ## n # else # define BOOST_PP_ENUM_BINARY_PARAMS_M_I(z, n, p1, p2) BOOST_PP_COMMA_IF(n) BOOST_PP_CAT(p1, n) BOOST_PP_CAT(p2, n) # endif # # /* BOOST_PP_ENUM_BINARY_PARAMS_Z */ # # if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_EDG() # define BOOST_PP_ENUM_BINARY_PARAMS_Z(z, count, p1, p2) BOOST_PP_REPEAT_ ## z(count, BOOST_PP_ENUM_BINARY_PARAMS_M, (p1, p2)) # else # define BOOST_PP_ENUM_BINARY_PARAMS_Z(z, count, p1, p2) BOOST_PP_ENUM_BINARY_PARAMS_Z_I(z, count, p1, p2) # define BOOST_PP_ENUM_BINARY_PARAMS_Z_I(z, count, p1, p2) BOOST_PP_REPEAT_ ## z(count, BOOST_PP_ENUM_BINARY_PARAMS_M, (p1, p2)) # endif # # endif ///////////////////////////////////////////////// // vnDev.Games - Trong.LIVE - DAO VAN TRONG // ////////////////////////////////////////////////////////////////////////////////
[ "langley.joshua@gmail.com" ]
langley.joshua@gmail.com
5dbe044817981a43cf7abbe1bdf154dfe5251619
8217aa42cc20e705f6793fa30cbab28ed93eb262
/LeetCode/036 Valid Sudoku/solution.h
4b6dec1d537312be8e62aca07226232fd91ba370
[]
no_license
AverJing/LeetCode
53634d30aec1f36e15fb25b88f4f0c49c7e4830f
b1e31c7f18fc42e59d5dadf38c7e0a63dcef127f
refs/heads/master
2020-03-24T16:17:20.886107
2019-03-17T05:56:32
2019-03-17T05:56:32
116,369,838
0
0
null
null
null
null
UTF-8
C++
false
false
2,793
h
/* * * *@author: Aver Jing *@description: *@date: * * */ /* Determine if a 9x9 Sudoku board is valid. Only the filled cells need to be validated according to the following rules: Each row must contain the digits 1-9 without repetition. Each column must contain the digits 1-9 without repetition. Each of the 9 3x3 sub-boxes of the grid must contain the digits 1-9 without repetition. The Sudoku board could be partially filled, where empty cells are filled with the character '.'. Example 1: Input: [ ["5","3",".",".","7",".",".",".","."], ["6",".",".","1","9","5",".",".","."], [".","9","8",".",".",".",".","6","."], ["8",".",".",".","6",".",".",".","3"], ["4",".",".","8",".","3",".",".","1"], ["7",".",".",".","2",".",".",".","6"], [".","6",".",".",".",".","2","8","."], [".",".",".","4","1","9",".",".","5"], [".",".",".",".","8",".",".","7","9"] ] Output: true Example 2: Input: [ ["8","3",".",".","7",".",".",".","."], ["6",".",".","1","9","5",".",".","."], [".","9","8",".",".",".",".","6","."], ["8",".",".",".","6",".",".",".","3"], ["4",".",".","8",".","3",".",".","1"], ["7",".",".",".","2",".",".",".","6"], [".","6",".",".",".",".","2","8","."], [".",".",".","4","1","9",".",".","5"], [".",".",".",".","8",".",".","7","9"] ] Output: false Explanation: Same as Example 1, except with the 5 in the top left corner being modified to 8. Since there are two 8's in the top left 3x3 sub-box, it is invalid. Note: A Sudoku board (partially filled) could be valid but is not necessarily solvable. Only the filled cells need to be validated according to the mentioned rules. The given board contain only digits 1-9 and the character '.'. The given board size is always 9x9. */ #pragma once #include <vector> #include <unordered_map> #include <unordered_set> using std::vector; class Solution { public: /* bool isValidSudoku(vector<vector<char> > &board) { std::unordered_map<size_t, std::unordered_set<char>> row_map, col_map, cel_map; for (size_t i = 0; i < board.size(); ++i) for (size_t j = 0; j < board[0].size(); ++j) { if (board[i][j] == '.') continue; if (!row_map[i].insert(board[i][j]).second) return false; if (!col_map[j].insert(board[i][j]).second) return false; if (!cel_map[i / 3 * 10 + j / 3].insert(board[i][j]).second) return false; } return true; }*/ bool isValidSudoku(vector<vector<char>>& board) { vector<std::unordered_set<char>> row(9), col(9), box(9); for (int i = 0; i < 9; ++i) { for (int j = 0; j < 9; ++j) { if (board[i][j] == '.') continue; int boxNum = i / 3 + j / 3 * 3; if (!(row[i].insert(board[i][j]).second) || !(col[j].insert(board[i][j]).second) || !(box[boxNum].insert(board[i][j]).second)) return false; } } return true; } };
[ "panda12396@163.com" ]
panda12396@163.com
b9b9d848a05d3b1f2c57526390e471f9c211a80b
45e0fbd9a9dbcdd4fbe6aaa2fdb2aed296f81e33
/FindSecret/Classes/Native/UnityEngine_UnityEngine_VRTextureUsage3142149582.h
7eaa3d518be681b895afa360dc594964f9b500db
[ "MIT" ]
permissive
GodIsWord/NewFindSecret
d4a5d2d810ee1f9d6b3bc91168895cc808bac817
4f98f316d29936380f9665d6a6d89962d9ee5478
refs/heads/master
2020-03-24T09:54:50.239014
2018-10-27T05:22:11
2018-10-27T05:22:11
142,641,511
0
0
null
null
null
null
UTF-8
C++
false
false
986
h
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> #include "mscorlib_System_Enum4135868527.h" #include "UnityEngine_UnityEngine_VRTextureUsage3142149582.h" #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.VRTextureUsage struct VRTextureUsage_t3142149582 { public: // System.Int32 UnityEngine.VRTextureUsage::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(VRTextureUsage_t3142149582, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif
[ "zhangyide@9fbank.cc" ]
zhangyide@9fbank.cc
081f2bedd9ac5ff707c6004025f032b8a58bdb69
bb82a5f977bef455714c16e24e2d8254e2d0faa5
/src/vendor/cget/cget/pkg/chriskohlhoff__asio/install/include/asio/detail/reactive_socket_service.hpp
309fd8db13235be842c690d847a22671d33a5923
[ "Unlicense" ]
permissive
pqrs-org/Karabiner-Elements
4ae307d82f8b67547c161c7d46d2083a0fd07630
d05057d7c769e2ff35638282e888a6d5eca566be
refs/heads/main
2023-09-01T03:11:08.474417
2023-09-01T00:44:19
2023-09-01T00:44:19
63,037,806
8,197
389
Unlicense
2023-09-01T00:11:00
2016-07-11T04:57:55
C++
UTF-8
C++
false
false
21,440
hpp
// // detail/reactive_socket_service.hpp // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // // Copyright (c) 2003-2023 Christopher M. Kohlhoff (chris at kohlhoff dot com) // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // #ifndef ASIO_DETAIL_REACTIVE_SOCKET_SERVICE_HPP #define ASIO_DETAIL_REACTIVE_SOCKET_SERVICE_HPP #if defined(_MSC_VER) && (_MSC_VER >= 1200) # pragma once #endif // defined(_MSC_VER) && (_MSC_VER >= 1200) #include "asio/detail/config.hpp" #if !defined(ASIO_HAS_IOCP) \ && !defined(ASIO_HAS_IO_URING_AS_DEFAULT) #include "asio/buffer.hpp" #include "asio/error.hpp" #include "asio/execution_context.hpp" #include "asio/socket_base.hpp" #include "asio/detail/buffer_sequence_adapter.hpp" #include "asio/detail/memory.hpp" #include "asio/detail/noncopyable.hpp" #include "asio/detail/reactive_null_buffers_op.hpp" #include "asio/detail/reactive_socket_accept_op.hpp" #include "asio/detail/reactive_socket_connect_op.hpp" #include "asio/detail/reactive_socket_recvfrom_op.hpp" #include "asio/detail/reactive_socket_sendto_op.hpp" #include "asio/detail/reactive_socket_service_base.hpp" #include "asio/detail/reactor.hpp" #include "asio/detail/reactor_op.hpp" #include "asio/detail/socket_holder.hpp" #include "asio/detail/socket_ops.hpp" #include "asio/detail/socket_types.hpp" #include "asio/detail/push_options.hpp" namespace asio { namespace detail { template <typename Protocol> class reactive_socket_service : public execution_context_service_base<reactive_socket_service<Protocol> >, public reactive_socket_service_base { public: // The protocol type. typedef Protocol protocol_type; // The endpoint type. typedef typename Protocol::endpoint endpoint_type; // The native type of a socket. typedef socket_type native_handle_type; // The implementation type of the socket. struct implementation_type : reactive_socket_service_base::base_implementation_type { // Default constructor. implementation_type() : protocol_(endpoint_type().protocol()) { } // The protocol associated with the socket. protocol_type protocol_; }; // Constructor. reactive_socket_service(execution_context& context) : execution_context_service_base< reactive_socket_service<Protocol> >(context), reactive_socket_service_base(context) { } // Destroy all user-defined handler objects owned by the service. void shutdown() { this->base_shutdown(); } // Move-construct a new socket implementation. void move_construct(implementation_type& impl, implementation_type& other_impl) ASIO_NOEXCEPT { this->base_move_construct(impl, other_impl); impl.protocol_ = other_impl.protocol_; other_impl.protocol_ = endpoint_type().protocol(); } // Move-assign from another socket implementation. void move_assign(implementation_type& impl, reactive_socket_service_base& other_service, implementation_type& other_impl) { this->base_move_assign(impl, other_service, other_impl); impl.protocol_ = other_impl.protocol_; other_impl.protocol_ = endpoint_type().protocol(); } // Move-construct a new socket implementation from another protocol type. template <typename Protocol1> void converting_move_construct(implementation_type& impl, reactive_socket_service<Protocol1>&, typename reactive_socket_service< Protocol1>::implementation_type& other_impl) { this->base_move_construct(impl, other_impl); impl.protocol_ = protocol_type(other_impl.protocol_); other_impl.protocol_ = typename Protocol1::endpoint().protocol(); } // Open a new socket implementation. asio::error_code open(implementation_type& impl, const protocol_type& protocol, asio::error_code& ec) { if (!do_open(impl, protocol.family(), protocol.type(), protocol.protocol(), ec)) impl.protocol_ = protocol; ASIO_ERROR_LOCATION(ec); return ec; } // Assign a native socket to a socket implementation. asio::error_code assign(implementation_type& impl, const protocol_type& protocol, const native_handle_type& native_socket, asio::error_code& ec) { if (!do_assign(impl, protocol.type(), native_socket, ec)) impl.protocol_ = protocol; ASIO_ERROR_LOCATION(ec); return ec; } // Get the native socket representation. native_handle_type native_handle(implementation_type& impl) { return impl.socket_; } // Bind the socket to the specified local endpoint. asio::error_code bind(implementation_type& impl, const endpoint_type& endpoint, asio::error_code& ec) { socket_ops::bind(impl.socket_, endpoint.data(), endpoint.size(), ec); ASIO_ERROR_LOCATION(ec); return ec; } // Set a socket option. template <typename Option> asio::error_code set_option(implementation_type& impl, const Option& option, asio::error_code& ec) { socket_ops::setsockopt(impl.socket_, impl.state_, option.level(impl.protocol_), option.name(impl.protocol_), option.data(impl.protocol_), option.size(impl.protocol_), ec); ASIO_ERROR_LOCATION(ec); return ec; } // Set a socket option. template <typename Option> asio::error_code get_option(const implementation_type& impl, Option& option, asio::error_code& ec) const { std::size_t size = option.size(impl.protocol_); socket_ops::getsockopt(impl.socket_, impl.state_, option.level(impl.protocol_), option.name(impl.protocol_), option.data(impl.protocol_), &size, ec); if (!ec) option.resize(impl.protocol_, size); ASIO_ERROR_LOCATION(ec); return ec; } // Get the local endpoint. endpoint_type local_endpoint(const implementation_type& impl, asio::error_code& ec) const { endpoint_type endpoint; std::size_t addr_len = endpoint.capacity(); if (socket_ops::getsockname(impl.socket_, endpoint.data(), &addr_len, ec)) { ASIO_ERROR_LOCATION(ec); return endpoint_type(); } endpoint.resize(addr_len); return endpoint; } // Get the remote endpoint. endpoint_type remote_endpoint(const implementation_type& impl, asio::error_code& ec) const { endpoint_type endpoint; std::size_t addr_len = endpoint.capacity(); if (socket_ops::getpeername(impl.socket_, endpoint.data(), &addr_len, false, ec)) { ASIO_ERROR_LOCATION(ec); return endpoint_type(); } endpoint.resize(addr_len); return endpoint; } // Disable sends or receives on the socket. asio::error_code shutdown(base_implementation_type& impl, socket_base::shutdown_type what, asio::error_code& ec) { socket_ops::shutdown(impl.socket_, what, ec); ASIO_ERROR_LOCATION(ec); return ec; } // Send a datagram to the specified endpoint. Returns the number of bytes // sent. template <typename ConstBufferSequence> size_t send_to(implementation_type& impl, const ConstBufferSequence& buffers, const endpoint_type& destination, socket_base::message_flags flags, asio::error_code& ec) { typedef buffer_sequence_adapter<asio::const_buffer, ConstBufferSequence> bufs_type; size_t n; if (bufs_type::is_single_buffer) { n = socket_ops::sync_sendto1(impl.socket_, impl.state_, bufs_type::first(buffers).data(), bufs_type::first(buffers).size(), flags, destination.data(), destination.size(), ec); } else { bufs_type bufs(buffers); n = socket_ops::sync_sendto(impl.socket_, impl.state_, bufs.buffers(), bufs.count(), flags, destination.data(), destination.size(), ec); } ASIO_ERROR_LOCATION(ec); return n; } // Wait until data can be sent without blocking. size_t send_to(implementation_type& impl, const null_buffers&, const endpoint_type&, socket_base::message_flags, asio::error_code& ec) { // Wait for socket to become ready. socket_ops::poll_write(impl.socket_, impl.state_, -1, ec); ASIO_ERROR_LOCATION(ec); return 0; } // Start an asynchronous send. The data being sent must be valid for the // lifetime of the asynchronous operation. template <typename ConstBufferSequence, typename Handler, typename IoExecutor> void async_send_to(implementation_type& impl, const ConstBufferSequence& buffers, const endpoint_type& destination, socket_base::message_flags flags, Handler& handler, const IoExecutor& io_ex) { bool is_continuation = asio_handler_cont_helpers::is_continuation(handler); typename associated_cancellation_slot<Handler>::type slot = asio::get_associated_cancellation_slot(handler); // Allocate and construct an operation to wrap the handler. typedef reactive_socket_sendto_op<ConstBufferSequence, endpoint_type, Handler, IoExecutor> op; typename op::ptr p = { asio::detail::addressof(handler), op::ptr::allocate(handler), 0 }; p.p = new (p.v) op(success_ec_, impl.socket_, buffers, destination, flags, handler, io_ex); // Optionally register for per-operation cancellation. if (slot.is_connected()) { p.p->cancellation_key_ = &slot.template emplace<reactor_op_cancellation>( &reactor_, &impl.reactor_data_, impl.socket_, reactor::write_op); } ASIO_HANDLER_CREATION((reactor_.context(), *p.p, "socket", &impl, impl.socket_, "async_send_to")); start_op(impl, reactor::write_op, p.p, is_continuation, true, false, &io_ex, 0); p.v = p.p = 0; } // Start an asynchronous wait until data can be sent without blocking. template <typename Handler, typename IoExecutor> void async_send_to(implementation_type& impl, const null_buffers&, const endpoint_type&, socket_base::message_flags, Handler& handler, const IoExecutor& io_ex) { bool is_continuation = asio_handler_cont_helpers::is_continuation(handler); typename associated_cancellation_slot<Handler>::type slot = asio::get_associated_cancellation_slot(handler); // Allocate and construct an operation to wrap the handler. typedef reactive_null_buffers_op<Handler, IoExecutor> op; typename op::ptr p = { asio::detail::addressof(handler), op::ptr::allocate(handler), 0 }; p.p = new (p.v) op(success_ec_, handler, io_ex); // Optionally register for per-operation cancellation. if (slot.is_connected()) { p.p->cancellation_key_ = &slot.template emplace<reactor_op_cancellation>( &reactor_, &impl.reactor_data_, impl.socket_, reactor::write_op); } ASIO_HANDLER_CREATION((reactor_.context(), *p.p, "socket", &impl, impl.socket_, "async_send_to(null_buffers)")); start_op(impl, reactor::write_op, p.p, is_continuation, false, false, &io_ex, 0); p.v = p.p = 0; } // Receive a datagram with the endpoint of the sender. Returns the number of // bytes received. template <typename MutableBufferSequence> size_t receive_from(implementation_type& impl, const MutableBufferSequence& buffers, endpoint_type& sender_endpoint, socket_base::message_flags flags, asio::error_code& ec) { typedef buffer_sequence_adapter<asio::mutable_buffer, MutableBufferSequence> bufs_type; std::size_t addr_len = sender_endpoint.capacity(); std::size_t n; if (bufs_type::is_single_buffer) { n = socket_ops::sync_recvfrom1(impl.socket_, impl.state_, bufs_type::first(buffers).data(), bufs_type::first(buffers).size(), flags, sender_endpoint.data(), &addr_len, ec); } else { bufs_type bufs(buffers); n = socket_ops::sync_recvfrom(impl.socket_, impl.state_, bufs.buffers(), bufs.count(), flags, sender_endpoint.data(), &addr_len, ec); } if (!ec) sender_endpoint.resize(addr_len); ASIO_ERROR_LOCATION(ec); return n; } // Wait until data can be received without blocking. size_t receive_from(implementation_type& impl, const null_buffers&, endpoint_type& sender_endpoint, socket_base::message_flags, asio::error_code& ec) { // Wait for socket to become ready. socket_ops::poll_read(impl.socket_, impl.state_, -1, ec); // Reset endpoint since it can be given no sensible value at this time. sender_endpoint = endpoint_type(); ASIO_ERROR_LOCATION(ec); return 0; } // Start an asynchronous receive. The buffer for the data being received and // the sender_endpoint object must both be valid for the lifetime of the // asynchronous operation. template <typename MutableBufferSequence, typename Handler, typename IoExecutor> void async_receive_from(implementation_type& impl, const MutableBufferSequence& buffers, endpoint_type& sender_endpoint, socket_base::message_flags flags, Handler& handler, const IoExecutor& io_ex) { bool is_continuation = asio_handler_cont_helpers::is_continuation(handler); typename associated_cancellation_slot<Handler>::type slot = asio::get_associated_cancellation_slot(handler); // Allocate and construct an operation to wrap the handler. typedef reactive_socket_recvfrom_op<MutableBufferSequence, endpoint_type, Handler, IoExecutor> op; typename op::ptr p = { asio::detail::addressof(handler), op::ptr::allocate(handler), 0 }; int protocol = impl.protocol_.type(); p.p = new (p.v) op(success_ec_, impl.socket_, protocol, buffers, sender_endpoint, flags, handler, io_ex); // Optionally register for per-operation cancellation. if (slot.is_connected()) { p.p->cancellation_key_ = &slot.template emplace<reactor_op_cancellation>( &reactor_, &impl.reactor_data_, impl.socket_, reactor::read_op); } ASIO_HANDLER_CREATION((reactor_.context(), *p.p, "socket", &impl, impl.socket_, "async_receive_from")); start_op(impl, (flags & socket_base::message_out_of_band) ? reactor::except_op : reactor::read_op, p.p, is_continuation, true, false, &io_ex, 0); p.v = p.p = 0; } // Wait until data can be received without blocking. template <typename Handler, typename IoExecutor> void async_receive_from(implementation_type& impl, const null_buffers&, endpoint_type& sender_endpoint, socket_base::message_flags flags, Handler& handler, const IoExecutor& io_ex) { bool is_continuation = asio_handler_cont_helpers::is_continuation(handler); typename associated_cancellation_slot<Handler>::type slot = asio::get_associated_cancellation_slot(handler); // Allocate and construct an operation to wrap the handler. typedef reactive_null_buffers_op<Handler, IoExecutor> op; typename op::ptr p = { asio::detail::addressof(handler), op::ptr::allocate(handler), 0 }; p.p = new (p.v) op(success_ec_, handler, io_ex); // Optionally register for per-operation cancellation. if (slot.is_connected()) { p.p->cancellation_key_ = &slot.template emplace<reactor_op_cancellation>( &reactor_, &impl.reactor_data_, impl.socket_, reactor::read_op); } ASIO_HANDLER_CREATION((reactor_.context(), *p.p, "socket", &impl, impl.socket_, "async_receive_from(null_buffers)")); // Reset endpoint since it can be given no sensible value at this time. sender_endpoint = endpoint_type(); start_op(impl, (flags & socket_base::message_out_of_band) ? reactor::except_op : reactor::read_op, p.p, is_continuation, false, false, &io_ex, 0); p.v = p.p = 0; } // Accept a new connection. template <typename Socket> asio::error_code accept(implementation_type& impl, Socket& peer, endpoint_type* peer_endpoint, asio::error_code& ec) { // We cannot accept a socket that is already open. if (peer.is_open()) { ec = asio::error::already_open; ASIO_ERROR_LOCATION(ec); return ec; } std::size_t addr_len = peer_endpoint ? peer_endpoint->capacity() : 0; socket_holder new_socket(socket_ops::sync_accept(impl.socket_, impl.state_, peer_endpoint ? peer_endpoint->data() : 0, peer_endpoint ? &addr_len : 0, ec)); // On success, assign new connection to peer socket object. if (new_socket.get() != invalid_socket) { if (peer_endpoint) peer_endpoint->resize(addr_len); peer.assign(impl.protocol_, new_socket.get(), ec); if (!ec) new_socket.release(); } ASIO_ERROR_LOCATION(ec); return ec; } // Start an asynchronous accept. The peer and peer_endpoint objects must be // valid until the accept's handler is invoked. template <typename Socket, typename Handler, typename IoExecutor> void async_accept(implementation_type& impl, Socket& peer, endpoint_type* peer_endpoint, Handler& handler, const IoExecutor& io_ex) { bool is_continuation = asio_handler_cont_helpers::is_continuation(handler); typename associated_cancellation_slot<Handler>::type slot = asio::get_associated_cancellation_slot(handler); // Allocate and construct an operation to wrap the handler. typedef reactive_socket_accept_op<Socket, Protocol, Handler, IoExecutor> op; typename op::ptr p = { asio::detail::addressof(handler), op::ptr::allocate(handler), 0 }; p.p = new (p.v) op(success_ec_, impl.socket_, impl.state_, peer, impl.protocol_, peer_endpoint, handler, io_ex); // Optionally register for per-operation cancellation. if (slot.is_connected() && !peer.is_open()) { p.p->cancellation_key_ = &slot.template emplace<reactor_op_cancellation>( &reactor_, &impl.reactor_data_, impl.socket_, reactor::read_op); } ASIO_HANDLER_CREATION((reactor_.context(), *p.p, "socket", &impl, impl.socket_, "async_accept")); start_accept_op(impl, p.p, is_continuation, peer.is_open(), &io_ex, 0); p.v = p.p = 0; } #if defined(ASIO_HAS_MOVE) // Start an asynchronous accept. The peer_endpoint object must be valid until // the accept's handler is invoked. template <typename PeerIoExecutor, typename Handler, typename IoExecutor> void async_move_accept(implementation_type& impl, const PeerIoExecutor& peer_io_ex, endpoint_type* peer_endpoint, Handler& handler, const IoExecutor& io_ex) { bool is_continuation = asio_handler_cont_helpers::is_continuation(handler); typename associated_cancellation_slot<Handler>::type slot = asio::get_associated_cancellation_slot(handler); // Allocate and construct an operation to wrap the handler. typedef reactive_socket_move_accept_op<Protocol, PeerIoExecutor, Handler, IoExecutor> op; typename op::ptr p = { asio::detail::addressof(handler), op::ptr::allocate(handler), 0 }; p.p = new (p.v) op(success_ec_, peer_io_ex, impl.socket_, impl.state_, impl.protocol_, peer_endpoint, handler, io_ex); // Optionally register for per-operation cancellation. if (slot.is_connected()) { p.p->cancellation_key_ = &slot.template emplace<reactor_op_cancellation>( &reactor_, &impl.reactor_data_, impl.socket_, reactor::read_op); } ASIO_HANDLER_CREATION((reactor_.context(), *p.p, "socket", &impl, impl.socket_, "async_accept")); start_accept_op(impl, p.p, is_continuation, false, &io_ex, 0); p.v = p.p = 0; } #endif // defined(ASIO_HAS_MOVE) // Connect the socket to the specified endpoint. asio::error_code connect(implementation_type& impl, const endpoint_type& peer_endpoint, asio::error_code& ec) { socket_ops::sync_connect(impl.socket_, peer_endpoint.data(), peer_endpoint.size(), ec); ASIO_ERROR_LOCATION(ec); return ec; } // Start an asynchronous connect. template <typename Handler, typename IoExecutor> void async_connect(implementation_type& impl, const endpoint_type& peer_endpoint, Handler& handler, const IoExecutor& io_ex) { bool is_continuation = asio_handler_cont_helpers::is_continuation(handler); typename associated_cancellation_slot<Handler>::type slot = asio::get_associated_cancellation_slot(handler); // Allocate and construct an operation to wrap the handler. typedef reactive_socket_connect_op<Handler, IoExecutor> op; typename op::ptr p = { asio::detail::addressof(handler), op::ptr::allocate(handler), 0 }; p.p = new (p.v) op(success_ec_, impl.socket_, handler, io_ex); // Optionally register for per-operation cancellation. if (slot.is_connected()) { p.p->cancellation_key_ = &slot.template emplace<reactor_op_cancellation>( &reactor_, &impl.reactor_data_, impl.socket_, reactor::connect_op); } ASIO_HANDLER_CREATION((reactor_.context(), *p.p, "socket", &impl, impl.socket_, "async_connect")); start_connect_op(impl, p.p, is_continuation, peer_endpoint.data(), peer_endpoint.size(), &io_ex, 0); p.v = p.p = 0; } }; } // namespace detail } // namespace asio #include "asio/detail/pop_options.hpp" #endif // !defined(ASIO_HAS_IOCP) // && !defined(ASIO_HAS_IO_URING_AS_DEFAULT) #endif // ASIO_DETAIL_REACTIVE_SOCKET_SERVICE_HPP
[ "tekezo@pqrs.org" ]
tekezo@pqrs.org
b7c424b0d213f38f3888321d9c176a1a4fb2bdd7
f3a853e4b0854aef4e8b968c730fce717c16d105
/ScreenElements.h
10cb57617b5b0e1ce06e6ee66a3f701274a23bc7
[]
no_license
scanti/Oblivion-Graphics-Extender-v2
e5990287aae968c3f9b4be8f3788d63593ef5d3c
a25c5fffc5ad252454d11bada92bd05abc3a35da
refs/heads/master
2021-01-25T05:34:28.361134
2010-03-20T02:14:09
2010-03-20T02:14:09
469,766
6
1
null
null
null
null
UTF-8
C++
false
false
1,583
h
#pragma once #include <d3d9.h> #include <d3dx9.h> #include <vector> class ScreenElement { public: bool enabled; D3DXVECTOR3 pos; D3DXVECTOR2 scale; float rot; D3DXMATRIX transform; DWORD color; void SetPosition(float x, float y, float z); void SetScale(float x, float y); void SetRotation(float rotation); void UpdateTransform(void); void SetColor(float red, float green, float blue); void SetAlpha(float alpha); virtual void Render(ID3DXSprite *sprite)=0; }; class Sprite : public ScreenElement { public: int tex; bool SetTexture(int texture); int GetTexture(void); virtual void Render(ID3DXSprite *sprite); }; /* class AnimatedSprite : public Sprite { public: float fps; float time; int CurrentFrame; int Width; int Height; void SetFramesPerSecond(float speed); void SetCurrentFrame(int index); void SetFilmStripDimensions(int width,int height); void Render(ID3DXSprite *sprite); }; */ class HUDManager { public: static HUDManager* Singleton; ::std::vector<Sprite*> ScreenElementList; int NextElementIndex; LPD3DXSPRITE sprite; private: HUDManager(); // Declare as private. Use GetSingleton to initialise HUDManager. // This is so we can't init multiple HUD managers. public: static HUDManager *GetSingleton(void); int AddScreenElement(Sprite *data); Sprite *index(int ind); void PurgeTexture(int TextureIndex); void Render(void); void DeviceLost(void); void DeviceReset(void); void NewGame(void); void LoadGame(void); void SaveGame(void); };
[ "scanti@bulldoghome.com" ]
scanti@bulldoghome.com
4872dea847c551be2a6ae77e1bcb3603583578d0
fd4681cefece4c3efd7a0ec4105d1a8f909165ac
/src/codes/rlnc_example.cpp
3fc4cc1e139834ade507baf91cd69cd977eb810b
[]
no_license
kishori82/COLAS
05b0a6a0fadb2626769d2319c7b1056d5e502e33
eb6c2b441f23ce321b1e978a8adfdd50b57d1455
refs/heads/master
2020-04-16T02:08:19.815374
2017-09-20T14:58:59
2017-09-20T14:58:59
65,014,280
5
2
null
null
null
null
UTF-8
C++
false
false
3,835
cpp
// Copyright Steinwurf ApS 2016. // Distributed under the "STEINWURF RESEARCH LICENSE 1.0". // See accompanying file LICENSE.rst or // http://www.steinwurf.com/licensing #include <cstdint> #include <algorithm> #include <iostream> #include <vector> #include <kodocpp/kodocpp.hpp> // Prints out the elements of a vector to the // screen for debugging purposes // vector<uint8_t> vector the vector to be printed void printVectorBytes(std::vector<uint8_t> vector){ for (std::vector<uint8_t>::const_iterator i = vector.begin(); i != vector.end(); ++i){ printf("%.2x ", unsigned(*i)); } std::cout << std::endl; } void printVectorChars(std::vector<uint8_t> vector){ for (std::vector<uint8_t>::const_iterator i = vector.begin(); i != vector.end(); ++i){ printf("%c", *i); } std::cout << std::endl; } void printVectorCharsN(std::vector<uint8_t> vector, int N){ int j=0; for (std::vector<uint8_t>::const_iterator i = vector.begin(); i != vector.end(); ++i){ if( j++ >= N ) printf("%c", *i); } std::cout << std::endl; } int main() { //! [0] // Set the number of symbols (i.e. the generation size in RLNC // terminology) and the size of a symbol in bytes uint32_t max_symbols = 6; uint32_t max_symbol_size = 10; //! [1] // In the following we will make an encoder/decoder factory. // The factories are used to build actual encoders/decoders kodocpp::encoder_factory encoder_factory( kodocpp::codec::full_vector, kodocpp::field::binary8, max_symbols, max_symbol_size); kodocpp::encoder encoder = encoder_factory.build(); kodocpp::decoder_factory decoder_factory( kodocpp::codec::full_vector, kodocpp::field::binary8, max_symbols, max_symbol_size); //! [2] std::vector<uint8_t> payload(encoder.payload_size()); std::vector<uint8_t> data_in(encoder.block_size()); char a[] = "My name is Mary! I am a member of the local choir at the St Bishop's church"; char *b; b = a; std::generate(data_in.begin(), data_in.end(), [&b]{ return *b++; }); printVectorChars(data_in); kodocpp::decoder decoder = decoder_factory.build(); //! [3] // Assign the data buffer to the encoder so that we may start // to produce encoded symbols from it encoder.set_const_symbols(data_in.data(), encoder.block_size()); //! [4] // Create a buffer which will contain the decoded data, and we assign // that buffer to the decoder std::vector<uint8_t> data_out(decoder.block_size()); decoder.set_mutable_symbols(data_out.data(), decoder.block_size()); //! [5] bool DEBUG_MODE = true; uint32_t lost_payloads = 0; uint32_t encoded_count = 0; while (!decoder.is_complete()) { // Encode a packet into the payload buffer uint32_t bytes_used = encoder.write_payload(payload.data()); std::cout << "Bytes used = " << bytes_used << std::endl; ++encoded_count; if(DEBUG_MODE){ // printf("%.2d: ", j); printVectorBytes(payload); printVectorChars(payload); printVectorCharsN(payload, 7); if ( (rand() % 2) == 0) { lost_payloads++; continue; } } // Pass that packet to the decoder decoder.read_payload(payload.data()); } std::cout << "Number of lost payloads: " << lost_payloads << std::endl; std::cout << "Encoded count = " << encoded_count << std::endl; //! [6] // Check if we properly decoded the data if (data_in == data_out) { printVectorChars(data_in); std::cout << "Data decoded correctly" << std::endl; printVectorChars(data_out); } //! [7] return 0; }
[ "kishori82@gmail.com" ]
kishori82@gmail.com
e17e57fbd004def3bc2ab8507b76163e07134d15
7a7c2f632ee2c78b3402d8e857a42eb5c9cf3909
/03shader/src/ofApp.h
6afb40b831294a541445aa614d0a8f8ea74e1e69
[ "MIT" ]
permissive
micuat/GRAND2014WorkshopKinectPCL
25ff5eabafa9f13b864760bdc5fb9aba8004799b
6ac5f6243b7bebd203d135224b53987f4cf7313f
refs/heads/master
2021-01-01T15:31:18.702171
2014-05-27T16:41:42
2014-05-27T16:41:42
19,116,592
0
1
null
null
null
null
UTF-8
C++
false
false
599
h
#pragma once #include "ofMain.h" #include "ofxPCL.h" #include "ofxKinect.h" class ofApp : public ofBaseApp{ public: void setup(); void update(); void draw(); void exit(); void keyPressed(int key); void keyReleased(int key); void mouseMoved(int x, int y ); void mouseDragged(int x, int y, int button); void mousePressed(int x, int y, int button); void mouseReleased(int x, int y, int button); void windowResized(int w, int h); void dragEvent(ofDragInfo dragInfo); void gotMessage(ofMessage msg); ofxKinect kinect; ofEasyCam easyCam; bool toggleWireframe; ofShader shader; };
[ "micuat@aim.com" ]
micuat@aim.com
dc4cee70a88315d4cc33b61d12163600211b7e5b
cefd6c17774b5c94240d57adccef57d9bba4a2e9
/WebKit/Source/JavaScriptCore/ftl/FTLAbstractHeapRepository.h
f3e2bdd7c6e5eb763bb7b75acc6585b1d04015cb
[ "BSL-1.0" ]
permissive
adzhou/oragle
9c054c25b24ff0a65cb9639bafd02aac2bcdce8b
5442d418b87d0da161429ffa5cb83777e9b38e4d
refs/heads/master
2022-11-01T05:04:59.368831
2014-03-12T15:50:08
2014-03-12T15:50:08
17,238,063
0
1
BSL-1.0
2022-10-18T04:23:53
2014-02-27T05:39:44
C++
UTF-8
C++
false
false
6,948
h
/* * Copyright (C) 2013 Apple Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``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 APPLE INC. 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 FTLAbstractHeapRepository_h #define FTLAbstractHeapRepository_h #if ENABLE(FTL_JIT) #include "DFGArrayMode.h" #include "FTLAbstractHeap.h" #include "IndexingType.h" namespace JSC { namespace FTL { #define FOR_EACH_ABSTRACT_HEAP(macro) \ macro(length) \ macro(typedArrayProperties) \ macro(WriteBarrierBuffer_bufferContents) #define FOR_EACH_ABSTRACT_FIELD(macro) \ macro(ArrayBuffer_data, ArrayBuffer::offsetOfData()) \ macro(Butterfly_arrayBuffer, Butterfly::offsetOfArrayBuffer()) \ macro(Butterfly_publicLength, Butterfly::offsetOfPublicLength()) \ macro(Butterfly_vectorLength, Butterfly::offsetOfVectorLength()) \ macro(CallFrame_callerFrame, CallFrame::callerFrameOffset()) \ macro(JSArrayBufferView_length, JSArrayBufferView::offsetOfLength()) \ macro(JSArrayBufferView_mode, JSArrayBufferView::offsetOfMode()) \ macro(JSArrayBufferView_vector, JSArrayBufferView::offsetOfVector()) \ macro(JSCell_structureID, JSCell::structureIDOffset()) \ macro(JSCell_typeInfoFlags, JSCell::typeInfoFlagsOffset()) \ macro(JSCell_typeInfoType, JSCell::typeInfoTypeOffset()) \ macro(JSCell_indexingType, JSCell::indexingTypeOffset()) \ macro(JSCell_gcData, JSCell::gcDataOffset()) \ macro(JSFunction_executable, JSFunction::offsetOfExecutable()) \ macro(JSFunction_scope, JSFunction::offsetOfScopeChain()) \ macro(JSObject_butterfly, JSObject::butterflyOffset()) \ macro(JSScope_next, JSScope::offsetOfNext()) \ macro(JSString_flags, JSString::offsetOfFlags()) \ macro(JSString_length, JSString::offsetOfLength()) \ macro(JSString_value, JSString::offsetOfValue()) \ macro(JSVariableObject_registers, JSVariableObject::offsetOfRegisters()) \ macro(JSWrapperObject_internalValue, JSWrapperObject::internalValueOffset()) \ macro(MarkedAllocator_freeListHead, MarkedAllocator::offsetOfFreeListHead()) \ macro(MarkedBlock_markBits, MarkedBlock::offsetOfMarks()) \ macro(StringImpl_data, StringImpl::dataOffset()) \ macro(StringImpl_hashAndFlags, StringImpl::flagsOffset()) \ macro(Structure_structureID, Structure::structureIDOffset()) \ macro(Structure_classInfo, Structure::classInfoOffset()) \ macro(Structure_globalObject, Structure::globalObjectOffset()) \ #define FOR_EACH_INDEXED_ABSTRACT_HEAP(macro) \ macro(JSRopeString_fibers, JSRopeString::offsetOfFibers(), sizeof(WriteBarrier<JSString>)) \ macro(characters8, 0, sizeof(LChar)) \ macro(characters16, 0, sizeof(UChar)) \ macro(indexedInt32Properties, 0, sizeof(EncodedJSValue)) \ macro(indexedDoubleProperties, 0, sizeof(double)) \ macro(indexedContiguousProperties, 0, sizeof(EncodedJSValue)) \ macro(indexedArrayStorageProperties, 0, sizeof(EncodedJSValue)) \ macro(singleCharacterStrings, 0, sizeof(JSString*)) \ macro(variables, 0, sizeof(Register)) #define FOR_EACH_NUMBERED_ABSTRACT_HEAP(macro) \ macro(properties) // This class is meant to be cacheable between compilations, but it doesn't have to be. // Doing so saves on creation of nodes. But clearing it will save memory. class AbstractHeapRepository { WTF_MAKE_NONCOPYABLE(AbstractHeapRepository); public: AbstractHeapRepository(LContext); ~AbstractHeapRepository(); AbstractHeap root; #define ABSTRACT_HEAP_DECLARATION(name) AbstractHeap name; FOR_EACH_ABSTRACT_HEAP(ABSTRACT_HEAP_DECLARATION) #undef ABSTRACT_HEAP_DECLARATION #define ABSTRACT_FIELD_DECLARATION(name, offset) AbstractField name; FOR_EACH_ABSTRACT_FIELD(ABSTRACT_FIELD_DECLARATION) #undef ABSTRACT_FIELD_DECLARATION AbstractField& JSCell_freeListNext; #define INDEXED_ABSTRACT_HEAP_DECLARATION(name, offset, size) IndexedAbstractHeap name; FOR_EACH_INDEXED_ABSTRACT_HEAP(INDEXED_ABSTRACT_HEAP_DECLARATION) #undef INDEXED_ABSTRACT_HEAP_DECLARATION #define NUMBERED_ABSTRACT_HEAP_DECLARATION(name) NumberedAbstractHeap name; FOR_EACH_NUMBERED_ABSTRACT_HEAP(NUMBERED_ABSTRACT_HEAP_DECLARATION) #undef NUMBERED_ABSTRACT_HEAP_DECLARATION AbsoluteAbstractHeap absolute; IndexedAbstractHeap* forIndexingType(IndexingType indexingType) { switch (indexingType) { case ALL_BLANK_INDEXING_TYPES: case ALL_UNDECIDED_INDEXING_TYPES: return 0; case ALL_INT32_INDEXING_TYPES: return &indexedInt32Properties; case ALL_DOUBLE_INDEXING_TYPES: return &indexedDoubleProperties; case ALL_CONTIGUOUS_INDEXING_TYPES: return &indexedContiguousProperties; case ALL_ARRAY_STORAGE_INDEXING_TYPES: return &indexedArrayStorageProperties; default: RELEASE_ASSERT_NOT_REACHED(); return 0; } } IndexedAbstractHeap& forArrayType(DFG::Array::Type type) { switch (type) { case DFG::Array::Int32: return indexedInt32Properties; case DFG::Array::Double: return indexedDoubleProperties; case DFG::Array::Contiguous: return indexedContiguousProperties; case DFG::Array::ArrayStorage: case DFG::Array::SlowPutArrayStorage: return indexedArrayStorageProperties; default: RELEASE_ASSERT_NOT_REACHED(); return indexedInt32Properties; } } private: friend class AbstractHeap; LContext m_context; unsigned m_tbaaKind; }; } } // namespace JSC::FTL #endif // ENABLE(FTL_JIT) #endif // FTLAbstractHeapRepository_h
[ "adzhou@hp.com" ]
adzhou@hp.com
e26ae8c1cc51fe52b87f603f0d82f73519a339b1
4158d1aff880a2949ab032e5107773f4736d46f3
/Zappin' Kraken v1.0.6/src/main/include/Auto/Actions/ResetPosition.h
f8c0c55729f632c57d0e8cd6d6a381949a073b91
[]
no_license
FRC1410/infiniterecharge2020
37023c2af913ed1c6ecc9fa1c76310b589de35a2
00e0bf970debda2e1e232ff2261f6b489ba3a51c
refs/heads/master
2021-01-02T13:08:01.256723
2020-03-11T06:02:14
2020-03-11T06:02:14
239,635,589
5
4
null
2020-02-17T17:27:54
2020-02-10T23:32:11
C++
UTF-8
C++
false
false
357
h
#pragma once #include "Util/Libraries.h" class ResetPosition : public frc::Command { private: double x, z, angle; public: ResetPosition(double x_input, double z_input, double angle_input); void Initialize() override; void Execute() override; bool IsFinished() override; void End() override; void Interrupted() override; };
[ "35178937+RandyNgo02@users.noreply.github.com" ]
35178937+RandyNgo02@users.noreply.github.com
db29bbc3b0e11197476522d03de4aee074862eb8
5debc2cb3b9a0c7650ab5bfcb6bf3b04d7cf8998
/Sort/Merge_Sort.cpp
8f20f7f3481dfbe4cd2145353a6efafe6a34f762
[]
no_license
thientoan0101/DataStructures-and-Algorithms
8d84a727b45c89776173b14e9f9dc3e1d2ef5442
bba62dc79795f0de910594a1174ea02502a8f2fc
refs/heads/main
2023-01-23T06:15:52.573090
2020-11-30T13:44:54
2020-11-30T13:44:54
309,021,042
2
0
null
null
null
null
UTF-8
C++
false
false
1,630
cpp
// Idea: // - Partition the original array into two sub arrays.Repeat partitioning on // the sub array until the array has 1 element. (top - down) // - Merge each pair of sub arrays into an array in order and repeat for its // two parent arrays, until the original array size is reached. (bottom - up) // // Steps : // - S1 : mid = (l + r) / 2; // - S2: Split array a into 2 subarrays b, c // - S3 : If the subarray b, c has more than 2 elements, then repeat S2. // - S4 : Merge two child arrays to get an ordered parent array. // Repeat until the array is full of elements #include <iostream> #include <algorithm> using namespace std; void print(int a[], int n) { for (int i = 0; i < n; i++) { cout << a[i] << " "; } cout << endl; } void merge(int a[], int l, int m, int r) { int n1 = m - l + 1; int n2 = r - m; int* L = new int[n1]; int* R = new int[n2]; for (int i = 0; i < n1; i++) L[i] = a[l + i]; for (int i = 0; i < n2; i++) R[i] = a[m + 1 + i]; int i = 0, j = 0; for (int k = l; k <= r; k++) { if (i < n1 && (j >= n2 || L[i] < R[j])) { a[k] = L[i]; i++; } else { a[k] = R[j]; j++; } } delete[] L; delete[] R; } void MergeSort(int a[], int l, int r) { if (l >= r) return; int mid = l + (r - l) / 2; MergeSort(a, l, mid); MergeSort(a, mid + 1, r); merge(a, l, mid, r); } int main() { int a[] = { 7,3,9,10,1,5,2,4,8 }; for (int i = 0; i < 9; i++) cout << a[i] << " "; cout << endl; mergeSort(a, 0, 8); for (int i = 0; i < 9; i++) cout << a[i] << " "; }
[ "66426299+thientoan0101@users.noreply.github.com" ]
66426299+thientoan0101@users.noreply.github.com
e4fc0cf98c9e812e5a31effc52fdbb06244c2d4c
0b51715dec7831108d53b40bfb7dc083a3fd3432
/src/DeviceEventCallbackInvoker.cc
4a69211907594bf106384742de06a599b79c3588
[ "MIT" ]
permissive
spuun/node-jontelldus
d8f65faa754724b5ab73d63333aaf07973dedabc
002c503da2604551e74f00d0c0a0543af113749a
refs/heads/master
2021-01-10T03:44:28.249390
2017-03-04T20:27:12
2017-03-04T20:27:12
47,183,600
2
0
null
null
null
null
UTF-8
C++
false
false
619
cc
#include "DeviceEventCallbackInvoker.h" namespace JonTelldus { DeviceEventCallbackInvoker::DeviceEventCallbackInvoker( Nan::Callback *callback, int deviceId_, int method_, const char* data_) : CallbackInvoker(callback), deviceId(deviceId_), method(method_), data(data_) { } void DeviceEventCallbackInvoker::Execute() { v8::Local<v8::Object> eventObj = Nan::New<v8::Object>(); Set(eventObj, "deviceId", deviceId); Set(eventObj, "method", method); Set(eventObj, "data", data.c_str()); v8::Local<v8::Value> argv[] = { eventObj }; callback->Call(1, argv); } }
[ "jon@spuun.se" ]
jon@spuun.se
b49e05c27b542a6ea6572262c63cec0e4aac3a9d
2b9e3c3a7cf48650157e9e860148f16597078ff3
/TextServiceFile.h
fc634a39f6580d80ff7a335b8bd337cedd372201
[]
no_license
zhaojidabao/MGCode
2a7fa089aaed9c2f99a2fd55cd4743fd1ae3d59e
c742915c8170869d5b2fbf791f339a1c28350334
refs/heads/master
2020-03-31T20:35:23.596990
2018-10-11T07:05:00
2018-10-11T07:05:00
152,546,612
0
6
null
null
null
null
GB18030
C++
false
false
1,091
h
#pragma once #include"cpp11_std_files.h" #include"TextService.h" using namespace std; class text_service_file{ private: wfstream fs; text_service_file(){}; public: wstring file_name; public: void read_frm_file(wstring& content,ios:: ios_base::openmode mode){ try { fs.open(file_name,ios_base::in|mode); if(fs.is_open()){ if(mode&ios_base::binary){ //暂时没实现二进制输入 }else{ locale loc(""); fs.imbue(loc); wostringstream wos; wos<<fs.rdbuf(); wstring rlt=wos.str(); content+=rlt; textLsReplae(content,L"\n",L"\r\n"); //another way,but with bad efficiency,just comment it for now //wstring temp; //while(fs){ // getline(fs,temp); // content+=std::move(temp); // temp.clear(); //} } } fs.close(); }catch(const exception& e){ fs.close(); auto ms=e.what(); } } void write_to_file(wstring& contenet,ios_base::openmode mode){ //no implemention now } static text_service_file& Instance() { static text_service_file singleton; return singleton; } };
[ "42225836+zhaojidabao@users.noreply.github.com" ]
42225836+zhaojidabao@users.noreply.github.com
95d9bcd967b81a7e3982c9bce70bf1e6cd2832ba
e895750cb2172867a2a049e2f404314085827b05
/FKCore/FKMessage.cpp
d0357113c2177d20197ed143d9b5f34aecdd3d9f
[ "MIT" ]
permissive
FajraKatviro/FKFramework2
32e18621a7ef5bfe7bf61a010932d00dc59de4f9
0b55b402c255b50fe07ee568bbf46acd6617a6e4
refs/heads/master
2021-01-17T10:07:36.601902
2016-04-07T14:50:22
2016-04-07T14:50:22
21,795,178
2
0
null
null
null
null
UTF-8
C++
false
false
1,123
cpp
#include "FKMessage.h" #include "FKLogger.h" /*! \class FKMessage \brief Class provides simple message container to deliver into another infrastructure */ /*! * \brief Default constructor. Create empty message object */ FKMessage::FKMessage():FKSystemObject(),_subject(){ FK_CBEGIN FK_CEND } /*! * \brief Create message containing \i subject */ FKMessage::FKMessage(const QString& subject):FKSystemObject(),_subject(subject){ FK_CBEGIN FK_CEND } /*! * \brief Destructs message object */ FKMessage::~FKMessage(){ FK_CBEGIN FK_CEND } /*! * \fn QString FKMessage::subject()const * \brief Returns message text */ /*! * \brief This is reimplemented function. Pack subject to stream. */ bool FKMessage::packObject(QDataStream &stream) const{ stream<<_subject; return true; } /*! * \brief This is reimplemented function. Read subject from stream. */ bool FKMessage::loadObject(QDataStream &stream){ stream>>_subject; return true; } /*! * \brief This is reimplemented function. */ FKSystemObject* FKMessage::clone() const{ return new FKMessage(_subject); }
[ "pahaa7@mail.ru" ]
pahaa7@mail.ru
77cb76261a4f1524597a2f19d572752306687d0f
572580660d475027fa349e47a078479222066726
/Server/kennel/Ecc_Common/opens/snmp++/snmp++/Snmp++/include/snmp_pp/usertimeout.h
b101c4f7829310e3843dba5029587b51401dbda8
[]
no_license
SiteView/ecc82Server
30bae118932435e226ade01bfbb05b662742e6dd
084b06af3a7ca6c5abf5064e0d1f3f8069856d25
refs/heads/master
2021-01-10T21:11:37.487455
2013-01-16T09:22:02
2013-01-16T09:22:02
7,639,874
6
3
null
null
null
null
UTF-8
C++
false
false
6,796
h
/*_############################################################################ _## _## usertimeout.h _## _## SNMP++v3.2.15 _## ----------------------------------------------- _## Copyright (c) 2001-2004 Jochen Katz, Frank Fock _## _## This software is based on SNMP++2.6 from Hewlett Packard: _## _## Copyright (c) 1996 _## Hewlett-Packard Company _## _## ATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS. _## Permission to use, copy, modify, distribute and/or sell this software _## and/or its documentation is hereby granted without fee. User agrees _## to display the above copyright notice and this license notice in all _## copies of the software and any documentation of the software. User _## agrees to assume all liability for the use of the software; _## Hewlett-Packard and Jochen Katz make no representations about the _## suitability of this software for any purpose. It is provided _## "AS-IS" without warranty of any kind, either express or implied. User _## hereby grants a royalty-free license to any and all derivatives based _## upon this software code base. _## _## Stuttgart, Germany, Tue Jan 4 21:42:42 CET 2005 _## _##########################################################################*/ /*=================================================================== Copyright (c) 1999 Hewlett-Packard Company ATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS. Permission to use, copy, modify, distribute and/or sell this software and/or its documentation is hereby granted without fee. User agrees to display the above copyright notice and this license notice in all copies of the software and any documentation of the software. User agrees to assume all liability for the use of the software; Hewlett-Packard makes no representations about the suitability of this software for any purpose. It is provided "AS-IS without warranty of any kind,either express or implied. User hereby grants a royalty-free license to any and all derivatives based upon this software code base. U S E R T I M E O U T . H CUTEventQueue CLASS DEFINITION COPYRIGHT HEWLETT PACKARD COMPANY 1999 INFORMATION NETWORKS DIVISION NETWORK MANAGEMENT SECTION DESIGN + AUTHOR: Tom Murray LANGUAGE: ANSI C++ DESCRIPTION: Queue for holding callback associated with user defined timeouts =====================================================================*/ // $Id: usertimeout.h,v 1.6 2004/03/03 23:11:21 katz Exp $ #ifndef _USERTIMEOUT #define _USERTIMEOUT //----[ includes ]----------------------------------------------------- #ifndef WIN32 #include <sys/types.h> // NOTE: due to 10.10 bug, order is important // in that all routines must include types.h // and time.h in same order otherwise you // will get conflicting definitions of // "fd_set" resulting in link time errors. #include <sys/time.h> // time stuff and fd_set #endif //----[ snmp++ includes ]---------------------------------------------- #include "snmp_pp/msec.h" #include "snmp_pp/eventlist.h" #ifdef SNMP_PP_NAMESPACE namespace Snmp_pp { #endif //----[ defines ]------------------------------------------------------ typedef unsigned long UtId; /* User-defined callback */ typedef void (*ut_callback)(void * callData, UtId id); class EventListHolder; //----[ CUTEvent class ]------------------------------------------- /*-----------------------------------------------------------*/ /* CUTEvent */ /* a description of a single MIB access operation. */ /*-----------------------------------------------------------*/ class DLLOPT CUTEvent { public: CUTEvent(const UtId uniqueId, const msec &timeout, const ut_callback callBack, const void * callData); ~CUTEvent() {}; UtId GetId() { return m_uniqueId ; }; void GetTimeout(msec &timeout) { timeout = m_timeout; }; int Callback(); protected: UtId m_uniqueId; msec m_timeout; ut_callback m_callBack; void * m_callData; }; /*-----------------------------------------------------------*/ /* CUTEventQueue */ /* class describing a collection of outstanding SNMP msgs. */ /*-----------------------------------------------------------*/ class DLLOPT CUTEventQueue: public CEvents { public: CUTEventQueue(EventListHolder *holder) : m_head(0, 0, 0), m_msgCount(0), m_id(1), my_holder(holder) {}; ~CUTEventQueue(); UtId AddEntry(const msec &timeout, const ut_callback callBack, const void * callData); CUTEvent *GetEntry(const UtId uniqueId); void DeleteEntry(const UtId uniqueId); UtId MakeId(); // find the next msg that will timeout CUTEvent *GetNextTimeoutEntry(); // find the next timeout int GetNextTimeout(msec &timeout); // set up parameters for select void GetFdSets(int &/*maxfds*/, fd_set &/*readfds*/, fd_set &/*writefds*/, fd_set &/*exceptfds*/) {} // we never have any event sources // return number of outstanding messages int GetCount() { return m_msgCount; }; int HandleEvents(const int /*maxfds*/, const fd_set &/*readfds*/, const fd_set &/*writefds*/, const fd_set &/*exceptfds*/) { msec now; return DoRetries(now); }; int DoRetries(const msec &sendtime); int Done() { return 0; }; // we are never done protected: /*-----------------------------------------------------------*/ /* CUTEventQueueElt */ /* a container for a single item on a linked lists of */ /* CUTEvents. */ /*-----------------------------------------------------------*/ class DLLOPT CUTEventQueueElt { public: CUTEventQueueElt(CUTEvent *utevent, CUTEventQueueElt *next, CUTEventQueueElt *previous); ~CUTEventQueueElt(); CUTEventQueueElt *GetNext() { return m_next; }; CUTEvent *GetUTEvent() { return m_utevent; }; CUTEvent *TestId(const UtId uniqueId); private: CUTEvent *m_utevent; class CUTEventQueueElt *m_next; class CUTEventQueueElt *m_previous; }; CUTEventQueueElt m_head; int m_msgCount; UtId m_id; EventListHolder *my_holder; }; #ifdef SNMP_PP_NAMESPACE }; // end of namespace Snmp_pp #endif #endif
[ "xingyu.cheng@dragonflow.com" ]
xingyu.cheng@dragonflow.com
dff5ffa1d7e1c2e1d4cd8ea049dd72b5f6f2f04a
55dcd3f3f19438f27a86a291e14b9521a2504e23
/UnrealEngine-4.14-substance_plugin/Engine/Source/Runtime/Engine/Classes/Engine/HairWorksInstance.h
1c421e1d85a74523cbcefd9d849a64f2ce46c62e
[]
no_license
wangganggreat/UE4NVIDIAHairWorks-Substance
539faf7eadd131decfe8d2ba04bacd5bee25ed53
64ca06a501618ee42189ebf630144e87b8b899e4
refs/heads/master
2021-01-19T09:24:55.914028
2017-02-28T17:12:47
2017-02-28T17:12:47
null
0
0
null
null
null
null
UTF-8
C++
false
false
743
h
// @third party code - BEGIN HairWorks #pragma once #include "HairWorksInstance.generated.h" class UHairWorksMaterial; class UHairWorksAsset; USTRUCT(BlueprintType) struct ENGINE_API FHairWorksInstance { GENERATED_USTRUCT_BODY() /** Assign HairWorks asset here. */ UPROPERTY(EditDefaultsOnly, BlueprintReadOnly, Category = Asset) UHairWorksAsset* Hair; /** Whether override Hair Material of the HairWorks asset. */ UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = Asset) bool bOverride = false; /** A Hair Material to override the Hair Material of the HairWorks asset. */ UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Instanced, Category = Hair) UHairWorksMaterial* HairMaterial; }; // @third party code - END HairWorks
[ "smagnani@emblazongames.com" ]
smagnani@emblazongames.com
b01bde5d01381c10f886608af61a24fcca71bf39
29ed8cdb18e199c6f78f49b9a82fdea099dd03ad
/Firmware/Panel/Button.cpp
e1d1acb4da3854e6f6631e68c304dc783f6d5782
[]
no_license
kurrosetra/RCWS
a1a63e928d4c3be894d5a015227dc716584f3d6c
dca746c2e56fc7f3f74dfd68fdbe2fdabfca725f
refs/heads/master
2021-04-27T05:18:28.801598
2018-04-27T10:32:03
2018-04-27T10:32:03
117,524,029
1
0
null
2018-01-17T10:07:01
2018-01-15T09:22:11
Arduino
UTF-8
C++
false
false
2,556
cpp
// // // #include "Button.h" byte ButtonClass::asci2byte(String s) { char lsb = '0', msb = '0'; byte ret = 0; if (s.length() > 1) { msb = s.charAt(0); lsb = s.charAt(1); } else lsb = s.charAt(0); ret = char2byte(msb) << 4 | (char2byte(lsb) & 0xF); return ret; } byte ButtonClass::char2byte(char c) { byte i = 0; if (c >= '0' && c <= '9') i = c - '0'; else if (c >= 'a' && c <= 'f') i = (c - 'a') + 10; else if (c >= 'A' && c <= 'F') i = (c - 'A') + 10; return i; } ButtonClass::ButtonClass(HardwareSerial & uart, uint32_t baud) :_uart(&uart) { _baud = baud; _header = "$BUT"; } ButtonClass::ButtonClass(HardwareSerial & uart, uint32_t baud, String header) :_uart(&uart) { _baud = baud; _header = header; } void ButtonClass::init() { _uart->begin(_baud); in.reserve(BUT_MAX_BUFSIZE); } bool ButtonClass::read() { static byte _prevDataIn = 0; static uint16_t _prevVolVal = 0; bool ret = 0; char c; byte awal, akhir, b; uint16_t _v = 0; String s; if (_uart->available()) { c = _uart->read(); if (c == _header.charAt(0)) { in = ""; inCompleted = 0; } else if (c == BUT_CHAR_TERMINATOR) inCompleted = 1; in += c; } if (inCompleted) { //Serial.println(in); if (in.indexOf(_header) == 0) { akhir = in.indexOf(BUT_CHAR_SEPARATOR); //button command value awal = akhir + 1; akhir = in.indexOf(BUT_CHAR_SEPARATOR, awal); s = in.substring(awal, akhir); b = asci2byte(s); //dataIn = asci2byte(s); if (_prevDataIn != dataIn) { dataIn = _prevDataIn; } else { if (_prevDataIn != b) { _prevDataIn = b; } } //voltage value awal = akhir + 1; akhir = in.indexOf(BUT_CHAR_TERMINATOR, awal); s = in.substring(awal, akhir); _v = s.toInt(); //volValue = s.toInt(); if (_prevVolVal != volValue) { volValue = _prevVolVal; } else { if (_prevVolVal != _v) { _prevVolVal = _v; } } ret = 1; } } return ret; } byte ButtonClass::getCamera() { byte i = CAMERA_NONE; if (bitRead(dataIn, BUT_POS_SONY)) i = CAMERA_SONY; else if (bitRead(dataIn, BUT_POS_FLIR)) i = CAMERA_THERMAL; return i; } byte ButtonClass::getMovementMode() { byte i = MOVE_MANUAL; if (bitRead(dataIn, BUT_POS_TRACK)) i = MOVE_TRACK; else if (bitRead(dataIn, BUT_POS_STAB)) i = MOVE_STAB; return i; } bool ButtonClass::getLrfPower() { return bitRead(dataIn, BUT_POS_LRF_PWR); } bool ButtonClass::getTriggerEnable() { return bitRead(dataIn, BUT_POS_TRIGGER_EN); } uint16_t ButtonClass::getVoltage() { return volValue; }
[ "kurrosetra@gmail.com" ]
kurrosetra@gmail.com
fed2f2887fc82f40f5b45bacce54337c08c3ef83
62a94e72253ab1d830d0ceadee094192b23922f1
/UAlbertaBot/Source/Micro.cpp
4d1abcd256acffde9c7d7d1056bdafe189156a67
[]
no_license
machinsk/CMPUT350_UAlberrtaBot_ProtossKing
6edba135da8a4016ee05740abd3dffe0f4f95575
17cbe5fe0d220bd07533b7262209cf515dfa8a11
refs/heads/master
2021-01-10T07:46:48.281113
2015-11-19T04:38:38
2015-11-19T04:38:38
46,467,031
0
0
null
null
null
null
UTF-8
C++
false
false
6,944
cpp
#include "Micro.h" using namespace UAlbertaBot; size_t TotalCommands = 0; const int dotRadius = 2; void Micro::drawAPM(int x, int y) { int bwapiAPM = BWAPI::Broodwar->getAPM(); int myAPM = (int)(TotalCommands / ((double)BWAPI::Broodwar->getFrameCount() / (24*60))); BWAPI::Broodwar->drawTextScreen(x, y, "%d %d", bwapiAPM, myAPM); } void Micro::SmartAttackUnit(BWAPI::UnitInterface* attacker, BWAPI::UnitInterface* target) { UAB_ASSERT(attacker, "SmartAttackUnit: Attacker not valid"); UAB_ASSERT(target, "SmartAttackUnit: Target not valid"); if (!attacker || !target) { return; } // if we have issued a command to this unit already this frame, ignore this one if (attacker->getLastCommandFrame() >= BWAPI::Broodwar->getFrameCount() || attacker->isAttackFrame()) { return; } // get the unit's current command BWAPI::UnitCommand currentCommand(attacker->getLastCommand()); // if we've already told this unit to attack this target, ignore this command if (currentCommand.getType() == BWAPI::UnitCommandTypes::Attack_Unit && currentCommand.getTarget() == target) { return; } // if nothing prevents it, attack the target attacker->attack(target); TotalCommands++; if (Config::Debug::DrawUnitTargetInfo) { BWAPI::Broodwar->drawCircleMap(attacker->getPosition(), dotRadius, BWAPI::Colors::Red, true); BWAPI::Broodwar->drawCircleMap(target->getPosition(), dotRadius, BWAPI::Colors::Red, true); BWAPI::Broodwar->drawLineMap( attacker->getPosition(), target->getPosition(), BWAPI::Colors::Red ); } } void Micro::SmartAttackMove(BWAPI::UnitInterface* attacker, const BWAPI::Position & targetPosition) { UAB_ASSERT(attacker, "SmartAttackMove: Attacker not valid"); UAB_ASSERT(targetPosition.isValid(), "SmartAttackMove: targetPosition not valid"); if (!attacker || !targetPosition.isValid()) { return; } // if we have issued a command to this unit already this frame, ignore this one if (attacker->getLastCommandFrame() >= BWAPI::Broodwar->getFrameCount() || attacker->isAttackFrame()) { return; } // get the unit's current command BWAPI::UnitCommand currentCommand(attacker->getLastCommand()); // if we've already told this unit to attack this target, ignore this command if (currentCommand.getType() == BWAPI::UnitCommandTypes::Attack_Move && currentCommand.getTargetPosition() == targetPosition) { return; } // if nothing prevents it, attack the target attacker->attack(targetPosition); TotalCommands++; if (Config::Debug::DrawUnitTargetInfo) { BWAPI::Broodwar->drawCircleMap(attacker->getPosition(), dotRadius, BWAPI::Colors::Orange, true); BWAPI::Broodwar->drawCircleMap(targetPosition, dotRadius, BWAPI::Colors::Orange, true); BWAPI::Broodwar->drawLineMap(attacker->getPosition(), targetPosition, BWAPI::Colors::Orange); } } void Micro::SmartMove(BWAPI::UnitInterface* attacker, const BWAPI::Position & targetPosition) { UAB_ASSERT(attacker, "SmartAttackMove: Attacker not valid"); UAB_ASSERT(targetPosition.isValid(), "SmartAttackMove: targetPosition not valid"); if (!attacker || !targetPosition.isValid()) { return; } // if we have issued a command to this unit already this frame, ignore this one if (attacker->getLastCommandFrame() >= BWAPI::Broodwar->getFrameCount() || attacker->isAttackFrame()) { return; } // get the unit's current command BWAPI::UnitCommand currentCommand(attacker->getLastCommand()); // if we've already told this unit to move to this position, ignore this command if ((currentCommand.getType() == BWAPI::UnitCommandTypes::Move) && (currentCommand.getTargetPosition() == targetPosition) && attacker->isMoving()) { return; } // if nothing prevents it, attack the target attacker->move(targetPosition); TotalCommands++; if (Config::Debug::DrawUnitTargetInfo) { BWAPI::Broodwar->drawCircleMap(attacker->getPosition(), dotRadius, BWAPI::Colors::White, true); BWAPI::Broodwar->drawCircleMap(targetPosition, dotRadius, BWAPI::Colors::White, true); BWAPI::Broodwar->drawLineMap(attacker->getPosition(), targetPosition, BWAPI::Colors::White); } } void Micro::SmartRightClick(BWAPI::UnitInterface * unit, BWAPI::UnitInterface * target) { UAB_ASSERT(unit, "SmartRightClick: Unit not valid"); UAB_ASSERT(target, "SmartRightClick: Target not valid"); if (!unit || !target) { return; } // if we have issued a command to this unit already this frame, ignore this one if (unit->getLastCommandFrame() >= BWAPI::Broodwar->getFrameCount() || unit->isAttackFrame()) { return; } // get the unit's current command BWAPI::UnitCommand currentCommand(unit->getLastCommand()); // if we've already told this unit to move to this position, ignore this command if ((currentCommand.getType() == BWAPI::UnitCommandTypes::Right_Click_Unit) && (currentCommand.getTargetPosition() == target->getPosition())) { return; } // if nothing prevents it, attack the target unit->rightClick(target); TotalCommands++; if (Config::Debug::DrawUnitTargetInfo) { BWAPI::Broodwar->drawCircleMap(unit->getPosition(), dotRadius, BWAPI::Colors::Cyan, true); BWAPI::Broodwar->drawCircleMap(target->getPosition(), dotRadius, BWAPI::Colors::Cyan, true); BWAPI::Broodwar->drawLineMap(unit->getPosition(), target->getPosition(), BWAPI::Colors::Cyan); } } void Micro::SmartRepair(BWAPI::UnitInterface * unit, BWAPI::UnitInterface * target) { UAB_ASSERT(unit, "SmartRightClick: Unit not valid"); UAB_ASSERT(target, "SmartRightClick: Target not valid"); if (!unit || !target) { return; } // if we have issued a command to this unit already this frame, ignore this one if (unit->getLastCommandFrame() >= BWAPI::Broodwar->getFrameCount() || unit->isAttackFrame()) { return; } // get the unit's current command BWAPI::UnitCommand currentCommand(unit->getLastCommand()); // if we've already told this unit to move to this position, ignore this command if ((currentCommand.getType() == BWAPI::UnitCommandTypes::Repair) && (currentCommand.getTarget() == target)) { return; } // if nothing prevents it, attack the target unit->repair(target); TotalCommands++; if (Config::Debug::DrawUnitTargetInfo) { BWAPI::Broodwar->drawCircleMap(unit->getPosition(), dotRadius, BWAPI::Colors::Cyan, true); BWAPI::Broodwar->drawCircleMap(target->getPosition(), dotRadius, BWAPI::Colors::Cyan, true); BWAPI::Broodwar->drawLineMap(unit->getPosition(), target->getPosition(), BWAPI::Colors::Cyan); } }
[ "dave.churchill@gmail.com" ]
dave.churchill@gmail.com
67dfa6b95c256a5556b72138915bce0541690d74
b01299f1d8972949863b3862ac6b83da580d443f
/lib/tlucene/test/utf8.cc
c64d0cc3df4c4b85818508ece2091d75e4b74d33
[]
no_license
neophytos-sk/phigita-star
daf170f29212f601270c8182ffb1835163485efe
dd48dc5f5768acb199c3ee2866d01efb4ef98f8a
refs/heads/master
2021-01-25T10:21:12.039782
2016-02-24T09:50:28
2016-02-24T09:50:28
35,161,947
3
2
null
2023-03-20T11:47:34
2015-05-06T14:01:52
HTML
UTF-8
C++
false
false
13
cc
../cc/utf8.cc
[ "neophytos@gmail.com" ]
neophytos@gmail.com
8891a1aa802b46e40806bd2418a7dba9854505a2
44dc6efc21e4a86cfc07d08dcc1e94aa6094d75f
/MATE71/IOManager.h
a317ecf487f3be3a38639f898db625993accf381
[]
no_license
KareshiKraise/Prototype3DModelling
3b36f92b38c95f41a9d568778b22b8be2382d681
dca57b05b77b3cd3c12c733decac602f2448613e
refs/heads/main
2023-03-29T02:18:43.490724
2021-04-02T11:35:52
2021-04-02T11:35:52
354,000,137
0
0
null
null
null
null
UTF-8
C++
false
false
280
h
#ifndef _LOADER_ #define _LOADER_ #include <vector> #include <string> class IOManager { public: static bool readFileToBuffer(std::string filePath, std::vector<unsigned char>& buffer); static bool readFileToBuffer(std::string filePath, std::string& buffer); }; #endif
[ "vitormoraesaranha@gmail.com" ]
vitormoraesaranha@gmail.com
f796855a84b2234e4adf98ef925fb529eb061681
ee57390d0b7c7299ab37939a3c9b11e427b470ad
/lib/Target/Hexagon/HexagonSubtarget.cpp
1c5c7a97b815fb50ccd90ebf0ee5292d3cee6562
[ "NCSA" ]
permissive
Hatelix/NyuziToolchain
2bf3af1da8f63f131590d9d245ea4003ebe0a4c8
f7f036b55c1839328ee630a1d81919d1f294e801
refs/heads/master
2020-04-04T14:17:08.192165
2018-05-12T19:33:08
2018-05-12T19:33:08
155,993,376
0
0
NOASSERTION
2018-11-03T14:56:39
2018-11-03T14:56:39
null
UTF-8
C++
false
false
21,854
cpp
//===- HexagonSubtarget.cpp - Hexagon Subtarget Information ---------------===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // This file implements the Hexagon specific subclass of TargetSubtarget. // //===----------------------------------------------------------------------===// #include "Hexagon.h" #include "HexagonInstrInfo.h" #include "HexagonRegisterInfo.h" #include "HexagonSubtarget.h" #include "MCTargetDesc/HexagonMCTargetDesc.h" #include "llvm/ADT/STLExtras.h" #include "llvm/ADT/SmallSet.h" #include "llvm/ADT/SmallVector.h" #include "llvm/ADT/StringRef.h" #include "llvm/CodeGen/MachineInstr.h" #include "llvm/CodeGen/MachineOperand.h" #include "llvm/CodeGen/MachineScheduler.h" #include "llvm/CodeGen/ScheduleDAG.h" #include "llvm/CodeGen/ScheduleDAGInstrs.h" #include "llvm/Support/CommandLine.h" #include "llvm/Support/ErrorHandling.h" #include <algorithm> #include <cassert> #include <map> using namespace llvm; #define DEBUG_TYPE "hexagon-subtarget" #define GET_SUBTARGETINFO_CTOR #define GET_SUBTARGETINFO_TARGET_DESC #include "HexagonGenSubtargetInfo.inc" static cl::opt<bool> EnableMemOps("enable-hexagon-memops", cl::Hidden, cl::ZeroOrMore, cl::ValueDisallowed, cl::init(true), cl::desc("Generate V4 MEMOP in code generation for Hexagon target")); static cl::opt<bool> DisableMemOps("disable-hexagon-memops", cl::Hidden, cl::ZeroOrMore, cl::ValueDisallowed, cl::init(false), cl::desc("Do not generate V4 MEMOP in code generation for Hexagon target")); static cl::opt<bool> EnableIEEERndNear("enable-hexagon-ieee-rnd-near", cl::Hidden, cl::ZeroOrMore, cl::init(false), cl::desc("Generate non-chopped conversion from fp to int.")); static cl::opt<bool> EnableBSBSched("enable-bsb-sched", cl::Hidden, cl::ZeroOrMore, cl::init(true)); static cl::opt<bool> EnableTCLatencySched("enable-tc-latency-sched", cl::Hidden, cl::ZeroOrMore, cl::init(false)); static cl::opt<bool> EnableDotCurSched("enable-cur-sched", cl::Hidden, cl::ZeroOrMore, cl::init(true), cl::desc("Enable the scheduler to generate .cur")); static cl::opt<bool> EnableVecFrwdSched("enable-evec-frwd-sched", cl::Hidden, cl::ZeroOrMore, cl::init(true)); static cl::opt<bool> DisableHexagonMISched("disable-hexagon-misched", cl::Hidden, cl::ZeroOrMore, cl::init(false), cl::desc("Disable Hexagon MI Scheduling")); static cl::opt<bool> EnableSubregLiveness("hexagon-subreg-liveness", cl::Hidden, cl::ZeroOrMore, cl::init(true), cl::desc("Enable subregister liveness tracking for Hexagon")); static cl::opt<bool> OverrideLongCalls("hexagon-long-calls", cl::Hidden, cl::ZeroOrMore, cl::init(false), cl::desc("If present, forces/disables the use of long calls")); static cl::opt<bool> EnablePredicatedCalls("hexagon-pred-calls", cl::Hidden, cl::ZeroOrMore, cl::init(false), cl::desc("Consider calls to be predicable")); static cl::opt<bool> SchedPredsCloser("sched-preds-closer", cl::Hidden, cl::ZeroOrMore, cl::init(true)); static cl::opt<bool> SchedRetvalOptimization("sched-retval-optimization", cl::Hidden, cl::ZeroOrMore, cl::init(true)); static cl::opt<bool> EnableCheckBankConflict("hexagon-check-bank-conflict", cl::Hidden, cl::ZeroOrMore, cl::init(true), cl::desc("Enable checking for cache bank conflicts")); HexagonSubtarget::HexagonSubtarget(const Triple &TT, StringRef CPU, StringRef FS, const TargetMachine &TM) : HexagonGenSubtargetInfo(TT, CPU, FS), OptLevel(TM.getOptLevel()), CPUString(Hexagon_MC::selectHexagonCPU(CPU)), InstrInfo(initializeSubtargetDependencies(CPU, FS)), RegInfo(getHwMode()), TLInfo(TM, *this), InstrItins(getInstrItineraryForCPU(CPUString)) { // Beware of the default constructor of InstrItineraryData: it will // reset all members to 0. assert(InstrItins.Itineraries != nullptr && "InstrItins not initialized"); } HexagonSubtarget & HexagonSubtarget::initializeSubtargetDependencies(StringRef CPU, StringRef FS) { static std::map<StringRef, Hexagon::ArchEnum> CpuTable{ {"hexagonv4", Hexagon::ArchEnum::V4}, {"hexagonv5", Hexagon::ArchEnum::V5}, {"hexagonv55", Hexagon::ArchEnum::V55}, {"hexagonv60", Hexagon::ArchEnum::V60}, {"hexagonv62", Hexagon::ArchEnum::V62}, {"hexagonv65", Hexagon::ArchEnum::V65}, }; auto FoundIt = CpuTable.find(CPUString); if (FoundIt != CpuTable.end()) HexagonArchVersion = FoundIt->second; else llvm_unreachable("Unrecognized Hexagon processor version"); UseHVX128BOps = false; UseHVX64BOps = false; UseLongCalls = false; UseMemOps = DisableMemOps ? false : EnableMemOps; ModeIEEERndNear = EnableIEEERndNear; UseBSBScheduling = hasV60TOps() && EnableBSBSched; ParseSubtargetFeatures(CPUString, FS); if (OverrideLongCalls.getPosition()) UseLongCalls = OverrideLongCalls; FeatureBitset Features = getFeatureBits(); if (HexagonDisableDuplex) setFeatureBits(Features.set(Hexagon::FeatureDuplex, false)); setFeatureBits(Hexagon_MC::completeHVXFeatures(Features)); return *this; } void HexagonSubtarget::UsrOverflowMutation::apply(ScheduleDAGInstrs *DAG) { for (SUnit &SU : DAG->SUnits) { if (!SU.isInstr()) continue; SmallVector<SDep, 4> Erase; for (auto &D : SU.Preds) if (D.getKind() == SDep::Output && D.getReg() == Hexagon::USR_OVF) Erase.push_back(D); for (auto &E : Erase) SU.removePred(E); } } void HexagonSubtarget::HVXMemLatencyMutation::apply(ScheduleDAGInstrs *DAG) { for (SUnit &SU : DAG->SUnits) { // Update the latency of chain edges between v60 vector load or store // instructions to be 1. These instruction cannot be scheduled in the // same packet. MachineInstr &MI1 = *SU.getInstr(); auto *QII = static_cast<const HexagonInstrInfo*>(DAG->TII); bool IsStoreMI1 = MI1.mayStore(); bool IsLoadMI1 = MI1.mayLoad(); if (!QII->isHVXVec(MI1) || !(IsStoreMI1 || IsLoadMI1)) continue; for (SDep &SI : SU.Succs) { if (SI.getKind() != SDep::Order || SI.getLatency() != 0) continue; MachineInstr &MI2 = *SI.getSUnit()->getInstr(); if (!QII->isHVXVec(MI2)) continue; if ((IsStoreMI1 && MI2.mayStore()) || (IsLoadMI1 && MI2.mayLoad())) { SI.setLatency(1); SU.setHeightDirty(); // Change the dependence in the opposite direction too. for (SDep &PI : SI.getSUnit()->Preds) { if (PI.getSUnit() != &SU || PI.getKind() != SDep::Order) continue; PI.setLatency(1); SI.getSUnit()->setDepthDirty(); } } } } } // Check if a call and subsequent A2_tfrpi instructions should maintain // scheduling affinity. We are looking for the TFRI to be consumed in // the next instruction. This should help reduce the instances of // double register pairs being allocated and scheduled before a call // when not used until after the call. This situation is exacerbated // by the fact that we allocate the pair from the callee saves list, // leading to excess spills and restores. bool HexagonSubtarget::CallMutation::shouldTFRICallBind( const HexagonInstrInfo &HII, const SUnit &Inst1, const SUnit &Inst2) const { if (Inst1.getInstr()->getOpcode() != Hexagon::A2_tfrpi) return false; // TypeXTYPE are 64 bit operations. unsigned Type = HII.getType(*Inst2.getInstr()); return Type == HexagonII::TypeS_2op || Type == HexagonII::TypeS_3op || Type == HexagonII::TypeALU64 || Type == HexagonII::TypeM; } void HexagonSubtarget::CallMutation::apply(ScheduleDAGInstrs *DAGInstrs) { ScheduleDAGMI *DAG = static_cast<ScheduleDAGMI*>(DAGInstrs); SUnit* LastSequentialCall = nullptr; // Map from virtual register to physical register from the copy. DenseMap<unsigned, unsigned> VRegHoldingReg; // Map from the physical register to the instruction that uses virtual // register. This is used to create the barrier edge. DenseMap<unsigned, SUnit *> LastVRegUse; auto &TRI = *DAG->MF.getSubtarget().getRegisterInfo(); auto &HII = *DAG->MF.getSubtarget<HexagonSubtarget>().getInstrInfo(); // Currently we only catch the situation when compare gets scheduled // before preceding call. for (unsigned su = 0, e = DAG->SUnits.size(); su != e; ++su) { // Remember the call. if (DAG->SUnits[su].getInstr()->isCall()) LastSequentialCall = &DAG->SUnits[su]; // Look for a compare that defines a predicate. else if (DAG->SUnits[su].getInstr()->isCompare() && LastSequentialCall) DAG->addEdge(&DAG->SUnits[su], SDep(LastSequentialCall, SDep::Barrier)); // Look for call and tfri* instructions. else if (SchedPredsCloser && LastSequentialCall && su > 1 && su < e-1 && shouldTFRICallBind(HII, DAG->SUnits[su], DAG->SUnits[su+1])) DAG->addEdge(&DAG->SUnits[su], SDep(&DAG->SUnits[su-1], SDep::Barrier)); // Prevent redundant register copies due to reads and writes of physical // registers. The original motivation for this was the code generated // between two calls, which are caused both the return value and the // argument for the next call being in %r0. // Example: // 1: <call1> // 2: %vreg = COPY %r0 // 3: <use of %vreg> // 4: %r0 = ... // 5: <call2> // The scheduler would often swap 3 and 4, so an additional register is // needed. This code inserts a Barrier dependence between 3 & 4 to prevent // this. // The code below checks for all the physical registers, not just R0/D0/V0. else if (SchedRetvalOptimization) { const MachineInstr *MI = DAG->SUnits[su].getInstr(); if (MI->isCopy() && TargetRegisterInfo::isPhysicalRegister(MI->getOperand(1).getReg())) { // %vregX = COPY %r0 VRegHoldingReg[MI->getOperand(0).getReg()] = MI->getOperand(1).getReg(); LastVRegUse.erase(MI->getOperand(1).getReg()); } else { for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { const MachineOperand &MO = MI->getOperand(i); if (!MO.isReg()) continue; if (MO.isUse() && !MI->isCopy() && VRegHoldingReg.count(MO.getReg())) { // <use of %vregX> LastVRegUse[VRegHoldingReg[MO.getReg()]] = &DAG->SUnits[su]; } else if (MO.isDef() && TargetRegisterInfo::isPhysicalRegister(MO.getReg())) { for (MCRegAliasIterator AI(MO.getReg(), &TRI, true); AI.isValid(); ++AI) { if (LastVRegUse.count(*AI) && LastVRegUse[*AI] != &DAG->SUnits[su]) // %r0 = ... DAG->addEdge(&DAG->SUnits[su], SDep(LastVRegUse[*AI], SDep::Barrier)); LastVRegUse.erase(*AI); } } } } } } } void HexagonSubtarget::BankConflictMutation::apply(ScheduleDAGInstrs *DAG) { if (!EnableCheckBankConflict) return; const auto &HII = static_cast<const HexagonInstrInfo&>(*DAG->TII); // Create artificial edges between loads that could likely cause a bank // conflict. Since such loads would normally not have any dependency // between them, we cannot rely on existing edges. for (unsigned i = 0, e = DAG->SUnits.size(); i != e; ++i) { SUnit &S0 = DAG->SUnits[i]; MachineInstr &L0 = *S0.getInstr(); if (!L0.mayLoad() || L0.mayStore() || HII.getAddrMode(L0) != HexagonII::BaseImmOffset) continue; int Offset0; unsigned Size0; unsigned Base0 = HII.getBaseAndOffset(L0, Offset0, Size0); // Is the access size is longer than the L1 cache line, skip the check. if (Base0 == 0 || Size0 >= 32) continue; // Scan only up to 32 instructions ahead (to avoid n^2 complexity). for (unsigned j = i+1, m = std::min(i+32, e); j != m; ++j) { SUnit &S1 = DAG->SUnits[j]; MachineInstr &L1 = *S1.getInstr(); if (!L1.mayLoad() || L1.mayStore() || HII.getAddrMode(L1) != HexagonII::BaseImmOffset) continue; int Offset1; unsigned Size1; unsigned Base1 = HII.getBaseAndOffset(L1, Offset1, Size1); if (Base1 == 0 || Size1 >= 32 || Base0 != Base1) continue; // Check bits 3 and 4 of the offset: if they differ, a bank conflict // is unlikely. if (((Offset0 ^ Offset1) & 0x18) != 0) continue; // Bits 3 and 4 are the same, add an artificial edge and set extra // latency. SDep A(&S0, SDep::Artificial); A.setLatency(1); S1.addPred(A, true); } } } /// \brief Enable use of alias analysis during code generation (during MI /// scheduling, DAGCombine, etc.). bool HexagonSubtarget::useAA() const { if (OptLevel != CodeGenOpt::None) return true; return false; } /// \brief Perform target specific adjustments to the latency of a schedule /// dependency. void HexagonSubtarget::adjustSchedDependency(SUnit *Src, SUnit *Dst, SDep &Dep) const { MachineInstr *SrcInst = Src->getInstr(); MachineInstr *DstInst = Dst->getInstr(); if (!Src->isInstr() || !Dst->isInstr()) return; const HexagonInstrInfo *QII = getInstrInfo(); // Instructions with .new operands have zero latency. SmallSet<SUnit *, 4> ExclSrc; SmallSet<SUnit *, 4> ExclDst; if (QII->canExecuteInBundle(*SrcInst, *DstInst) && isBestZeroLatency(Src, Dst, QII, ExclSrc, ExclDst)) { Dep.setLatency(0); return; } if (!hasV60TOps()) return; // Set the latency for a copy to zero since we hope that is will get removed. if (DstInst->isCopy()) Dep.setLatency(0); // If it's a REG_SEQUENCE/COPY, use its destination instruction to determine // the correct latency. if ((DstInst->isRegSequence() || DstInst->isCopy()) && Dst->NumSuccs == 1) { unsigned DReg = DstInst->getOperand(0).getReg(); MachineInstr *DDst = Dst->Succs[0].getSUnit()->getInstr(); unsigned UseIdx = -1; for (unsigned OpNum = 0; OpNum < DDst->getNumOperands(); OpNum++) { const MachineOperand &MO = DDst->getOperand(OpNum); if (MO.isReg() && MO.getReg() && MO.isUse() && MO.getReg() == DReg) { UseIdx = OpNum; break; } } int DLatency = (InstrInfo.getOperandLatency(&InstrItins, *SrcInst, 0, *DDst, UseIdx)); DLatency = std::max(DLatency, 0); Dep.setLatency((unsigned)DLatency); } // Try to schedule uses near definitions to generate .cur. ExclSrc.clear(); ExclDst.clear(); if (EnableDotCurSched && QII->isToBeScheduledASAP(*SrcInst, *DstInst) && isBestZeroLatency(Src, Dst, QII, ExclSrc, ExclDst)) { Dep.setLatency(0); return; } updateLatency(*SrcInst, *DstInst, Dep); } void HexagonSubtarget::getPostRAMutations( std::vector<std::unique_ptr<ScheduleDAGMutation>> &Mutations) const { Mutations.push_back(llvm::make_unique<UsrOverflowMutation>()); Mutations.push_back(llvm::make_unique<HVXMemLatencyMutation>()); Mutations.push_back(llvm::make_unique<BankConflictMutation>()); } void HexagonSubtarget::getSMSMutations( std::vector<std::unique_ptr<ScheduleDAGMutation>> &Mutations) const { Mutations.push_back(llvm::make_unique<UsrOverflowMutation>()); Mutations.push_back(llvm::make_unique<HVXMemLatencyMutation>()); } // Pin the vtable to this file. void HexagonSubtarget::anchor() {} bool HexagonSubtarget::enableMachineScheduler() const { if (DisableHexagonMISched.getNumOccurrences()) return !DisableHexagonMISched; return true; } bool HexagonSubtarget::usePredicatedCalls() const { return EnablePredicatedCalls; } void HexagonSubtarget::updateLatency(MachineInstr &SrcInst, MachineInstr &DstInst, SDep &Dep) const { if (Dep.isArtificial()) { Dep.setLatency(1); return; } if (!hasV60TOps()) return; auto &QII = static_cast<const HexagonInstrInfo&>(*getInstrInfo()); // BSB scheduling. if (QII.isHVXVec(SrcInst) || useBSBScheduling()) Dep.setLatency((Dep.getLatency() + 1) >> 1); } void HexagonSubtarget::restoreLatency(SUnit *Src, SUnit *Dst) const { MachineInstr *SrcI = Src->getInstr(); for (auto &I : Src->Succs) { if (!I.isAssignedRegDep() || I.getSUnit() != Dst) continue; unsigned DepR = I.getReg(); int DefIdx = -1; for (unsigned OpNum = 0; OpNum < SrcI->getNumOperands(); OpNum++) { const MachineOperand &MO = SrcI->getOperand(OpNum); if (MO.isReg() && MO.isDef() && MO.getReg() == DepR) DefIdx = OpNum; } assert(DefIdx >= 0 && "Def Reg not found in Src MI"); MachineInstr *DstI = Dst->getInstr(); SDep T = I; for (unsigned OpNum = 0; OpNum < DstI->getNumOperands(); OpNum++) { const MachineOperand &MO = DstI->getOperand(OpNum); if (MO.isReg() && MO.isUse() && MO.getReg() == DepR) { int Latency = (InstrInfo.getOperandLatency(&InstrItins, *SrcI, DefIdx, *DstI, OpNum)); // For some instructions (ex: COPY), we might end up with < 0 latency // as they don't have any Itinerary class associated with them. Latency = std::max(Latency, 0); I.setLatency(Latency); updateLatency(*SrcI, *DstI, I); } } // Update the latency of opposite edge too. T.setSUnit(Src); auto F = std::find(Dst->Preds.begin(), Dst->Preds.end(), T); assert(F != Dst->Preds.end()); F->setLatency(I.getLatency()); } } /// Change the latency between the two SUnits. void HexagonSubtarget::changeLatency(SUnit *Src, SUnit *Dst, unsigned Lat) const { for (auto &I : Src->Succs) { if (!I.isAssignedRegDep() || I.getSUnit() != Dst) continue; SDep T = I; I.setLatency(Lat); // Update the latency of opposite edge too. T.setSUnit(Src); auto F = std::find(Dst->Preds.begin(), Dst->Preds.end(), T); assert(F != Dst->Preds.end()); F->setLatency(Lat); } } /// If the SUnit has a zero latency edge, return the other SUnit. static SUnit *getZeroLatency(SUnit *N, SmallVector<SDep, 4> &Deps) { for (auto &I : Deps) if (I.isAssignedRegDep() && I.getLatency() == 0 && !I.getSUnit()->getInstr()->isPseudo()) return I.getSUnit(); return nullptr; } // Return true if these are the best two instructions to schedule // together with a zero latency. Only one dependence should have a zero // latency. If there are multiple choices, choose the best, and change // the others, if needed. bool HexagonSubtarget::isBestZeroLatency(SUnit *Src, SUnit *Dst, const HexagonInstrInfo *TII, SmallSet<SUnit*, 4> &ExclSrc, SmallSet<SUnit*, 4> &ExclDst) const { MachineInstr &SrcInst = *Src->getInstr(); MachineInstr &DstInst = *Dst->getInstr(); // Ignore Boundary SU nodes as these have null instructions. if (Dst->isBoundaryNode()) return false; if (SrcInst.isPHI() || DstInst.isPHI()) return false; if (!TII->isToBeScheduledASAP(SrcInst, DstInst) && !TII->canExecuteInBundle(SrcInst, DstInst)) return false; // The architecture doesn't allow three dependent instructions in the same // packet. So, if the destination has a zero latency successor, then it's // not a candidate for a zero latency predecessor. if (getZeroLatency(Dst, Dst->Succs) != nullptr) return false; // Check if the Dst instruction is the best candidate first. SUnit *Best = nullptr; SUnit *DstBest = nullptr; SUnit *SrcBest = getZeroLatency(Dst, Dst->Preds); if (SrcBest == nullptr || Src->NodeNum >= SrcBest->NodeNum) { // Check that Src doesn't have a better candidate. DstBest = getZeroLatency(Src, Src->Succs); if (DstBest == nullptr || Dst->NodeNum <= DstBest->NodeNum) Best = Dst; } if (Best != Dst) return false; // The caller frequently adds the same dependence twice. If so, then // return true for this case too. if ((Src == SrcBest && Dst == DstBest ) || (SrcBest == nullptr && Dst == DstBest) || (Src == SrcBest && Dst == nullptr)) return true; // Reassign the latency for the previous bests, which requires setting // the dependence edge in both directions. if (SrcBest != nullptr) { if (!hasV60TOps()) changeLatency(SrcBest, Dst, 1); else restoreLatency(SrcBest, Dst); } if (DstBest != nullptr) { if (!hasV60TOps()) changeLatency(Src, DstBest, 1); else restoreLatency(Src, DstBest); } // Attempt to find another opprotunity for zero latency in a different // dependence. if (SrcBest && DstBest) // If there is an edge from SrcBest to DstBst, then try to change that // to 0 now. changeLatency(SrcBest, DstBest, 0); else if (DstBest) { // Check if the previous best destination instruction has a new zero // latency dependence opportunity. ExclSrc.insert(Src); for (auto &I : DstBest->Preds) if (ExclSrc.count(I.getSUnit()) == 0 && isBestZeroLatency(I.getSUnit(), DstBest, TII, ExclSrc, ExclDst)) changeLatency(I.getSUnit(), DstBest, 0); } else if (SrcBest) { // Check if previous best source instruction has a new zero latency // dependence opportunity. ExclDst.insert(Dst); for (auto &I : SrcBest->Succs) if (ExclDst.count(I.getSUnit()) == 0 && isBestZeroLatency(SrcBest, I.getSUnit(), TII, ExclSrc, ExclDst)) changeLatency(SrcBest, I.getSUnit(), 0); } return true; } unsigned HexagonSubtarget::getL1CacheLineSize() const { return 32; } unsigned HexagonSubtarget::getL1PrefetchDistance() const { return 32; } bool HexagonSubtarget::enableSubRegLiveness() const { return EnableSubregLiveness; }
[ "jeffbush001@gmail.com" ]
jeffbush001@gmail.com
eda1615a6395dc0cbfedce96eff9fb4595f469a2
744c38647f9ad6ef13da1c1be711491cfdc4effe
/aula5.cpp
f63b3add508c5d9acfa22a7ad27c519876233361
[]
no_license
pauloatavila/estrutura_dados_II
e041a29431d8ba03bbc9c2f6804d508663fa4856
97f79548618120cf062343425f65a1b94c19b15c
refs/heads/master
2019-05-16T13:48:55.304533
2016-06-16T00:44:20
2016-06-16T00:44:20
55,104,997
0
2
null
null
null
null
UTF-8
C++
false
false
876
cpp
#include <iostream> #include "pessoa.hpp" using namespace std; int main(int argc, char **argv){ string nome; int idade; int i; Pessoa *raiz = NULL; for (i=0; i<1; i++){ Pessoa *novo; cout << "Insira nome" << endl; cin >> nome; cout << "Insira idade" << endl; cin >> idade; novo = new Pessoa(nome,idade); if (raiz == NULL){ raiz = novo; novo->setPai(); } else { raiz->inserirFilho(novo); } } raiz->caminhoPreOrdem(); cout << endl; // raiz->caminhoOrdem(); // cout << endl; // raiz->caminhoPosOrdem(); // cout << endl; cout << "Insira idade do elemento para apagar" << endl; cin >> idade; Pessoa *b = raiz->buscar(idade); if (b != NULL) b->deleteEscolhido(&b,&raiz); else cout << "Não Encontrado" << endl; if (raiz != NULL){ raiz->caminhoPreOrdem(); cout << endl; } return 0; }
[ "psjunior_atavila@hotmail.com" ]
psjunior_atavila@hotmail.com
4cb4153f784afae611c5fd510b1d49c7d76e9547
92e67b30497ffd29d3400e88aa553bbd12518fe9
/assignment2/part6/Re=110/23.9/uniform/time
6e1acd7b0bfcb399017db1164011bc586a386b3a
[]
no_license
henryrossiter/OpenFOAM
8b89de8feb4d4c7f9ad4894b2ef550508792ce5c
c54b80dbf0548b34760b4fdc0dc4fb2facfdf657
refs/heads/master
2022-11-18T10:05:15.963117
2020-06-28T15:24:54
2020-06-28T15:24:54
241,991,470
0
0
null
null
null
null
UTF-8
C++
false
false
823
/*--------------------------------*- 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 dictionary; location "23.9/uniform"; object time; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // value 23.9000000000002046; name "23.9"; index 478; deltaT 0.05; deltaT0 0.05; // ************************************************************************* //
[ "henry.rossiter@utexas.edu" ]
henry.rossiter@utexas.edu
8451f1131a96db8fb803aa19de15f0682b2c5e59
bbb70fe8bc76c63e6b77e88606657e6f04a4cf69
/ArrayAsArgument/stdafx.cpp
5ac311f81fa50f7b056133b94cf610bda3b48629
[]
no_license
Ravindrakumarg/C-Programs
e724087aefe36773c90ab40302671e9c90305bb5
5a4ed4e0d8806449ab69a9b6f9e1463e1cedb4c4
refs/heads/master
2021-07-11T20:00:05.767778
2020-03-30T16:39:51
2020-03-30T16:39:51
123,067,511
1
0
null
null
null
null
UTF-8
C++
false
false
302
cpp
// stdafx.cpp : source file that includes just the standard includes // ArrayAsArgument.pch will be the pre-compiled header // stdafx.obj will contain the pre-compiled type information #include "stdafx.h" // TODO: reference any additional headers you need in STDAFX.H // and not in this file
[ "ravindra.gupta@tallysolutions.com" ]
ravindra.gupta@tallysolutions.com
cbadf54f2e385df2d3a43c36ac03a3d614406072
45ed5892ba778229ebcc0b72631cf8cc7d229c55
/Exception.h
c661099a2eadec18fd1a1ecf86dce9760da50b7b
[]
no_license
SaricZarko/Data-Flow-Machine
d3e763f3831ca86c7e00c1b657f23e479a3b3e01
ba0aac0e15003b3ebe8fa060b9e8eff5f00c39b4
refs/heads/master
2023-08-23T07:24:15.188158
2021-10-10T21:43:50
2021-10-10T21:43:50
415,707,211
0
0
null
null
null
null
UTF-8
C++
false
false
340
h
#ifndef _EXCEPTION_H #define _EXCEPTION_H #include<exception> #include<iostream> using namespace std; class VarNotAvailableException : public exception { public: VarNotAvailableException(const char* msg) :exception(msg) { }; }; class TokenNotReady: public exception { public: TokenNotReady(const char* msg) :exception(msg) { }; }; #endif
[ "sz180214d@student.etf.bg.ac.rs" ]
sz180214d@student.etf.bg.ac.rs
fa636e79152f25cf5fddca53b0338a6d5e222afe
400bcebcf07282b1817b9ffed654914605d463fd
/examples/00Style/main.h
8fbc92df56c1a13e117e92782a984c2d2f7a2d4f
[]
no_license
c4181/csce240
c367f092a523168402c39c33cd38ce9f00d34af8
4f78a602b06ac764532b3349f58818331ae6bc3b
refs/heads/master
2021-06-11T22:59:53.097351
2021-05-12T02:55:21
2021-05-12T02:55:21
151,420,442
0
0
null
2018-12-04T17:06:30
2018-10-03T13:51:45
C++
UTF-8
C++
false
false
531
h
/****************************************************************************** *3456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 * This is a program to test 'cpplint' in catching problems. * * Author/copyright: Duncan A. Buell. All rights reserved. * Used with permission and modified by: Jane Random Hacker * Date: 14 August 2018 **/ #ifndef MAIN_H #define MAIN_H #include <iostream> #include <string> using std::cin; using std::cout; using std::endl; using std::string; #endif // MAIN_H
[ "cm4181@gmail.com" ]
cm4181@gmail.com
afe0179c53390358af59ed9deff234ffcce74c09
6ffc5fc03c2a07b78ecbf7f3b80d9d33a072a191
/24. Swap Nodes in Pairs.cpp
769c10df6b21753c8247263cd241f5b46272e59a
[]
no_license
zhueh/leetCode
e4ef985cbe28a2700c1436754a0be12365f4767e
3a372137eddd0d0d26ffed8938d04fb201709bac
refs/heads/master
2020-04-06T07:04:48.908954
2016-09-02T09:59:45
2016-09-02T09:59:45
63,349,878
0
0
null
null
null
null
UTF-8
C++
false
false
834
cpp
//24. Swap Nodes in Pairs //Given a linked list, swap every two adjacent nodes and return its head. // //For example, //Given 1->2->3->4, you should return the list as 2->1->4->3. // //Your algorithm should use only constant space.You may not modify the values in the list, only nodes itself can be changed. // //Subscribe to see which companies asked this question /** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} * }; */ class Solution { public: ListNode* swapPairs(ListNode* head) { if (head == NULL || head->next == NULL){ return head; } ListNode *cur = head; //ListNode *temp = head; head = head->next; cur->next = cur->next->next; head->next = cur; head->next->next = swapPairs(head->next->next); return head; } };
[ "zhueh1991@sina.com" ]
zhueh1991@sina.com
271bb7ac3a0f40fb546f94ab2452684381939350
d0fb46aecc3b69983e7f6244331a81dff42d9595
/green/include/alibabacloud/green/model/VodAsyncScanResultsResult.h
9becbef08797c3f4907f375a99f19d14653bade4
[ "Apache-2.0" ]
permissive
aliyun/aliyun-openapi-cpp-sdk
3d8d051d44ad00753a429817dd03957614c0c66a
e862bd03c844bcb7ccaa90571bceaa2802c7f135
refs/heads/master
2023-08-29T11:54:00.525102
2023-08-29T03:32:48
2023-08-29T03:32:48
115,379,460
104
82
NOASSERTION
2023-09-14T06:13:33
2017-12-26T02:53:27
C++
UTF-8
C++
false
false
1,353
h
/* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef ALIBABACLOUD_GREEN_MODEL_VODASYNCSCANRESULTSRESULT_H_ #define ALIBABACLOUD_GREEN_MODEL_VODASYNCSCANRESULTSRESULT_H_ #include <string> #include <vector> #include <utility> #include <alibabacloud/core/ServiceResult.h> #include <alibabacloud/green/GreenExport.h> namespace AlibabaCloud { namespace Green { namespace Model { class ALIBABACLOUD_GREEN_EXPORT VodAsyncScanResultsResult : public ServiceResult { public: VodAsyncScanResultsResult(); explicit VodAsyncScanResultsResult(const std::string &payload); ~VodAsyncScanResultsResult(); protected: void parse(const std::string &payload); private: }; } } } #endif // !ALIBABACLOUD_GREEN_MODEL_VODASYNCSCANRESULTSRESULT_H_
[ "sdk-team@alibabacloud.com" ]
sdk-team@alibabacloud.com
5cad0fc6e38bcb4f3d27577fc72007db8e6bb8f1
8a3f96ec6be1a07de4849f64c9f795e094d3cb52
/BCPlayerBuilder/target_h/MPlayer.h
9e53b32ea3c8ef39cf4aab8555a17a82ef766f7e
[ "MIT" ]
permissive
ljcduo/bcplayer
0e6b5cdae49f5dd077a8916bf3d2ff4a68d051b2
4222e1f38059f3c26d23b4a33ee7d85603bb4f96
refs/heads/master
2021-01-20T02:37:04.054750
2017-04-26T02:14:04
2017-04-26T02:14:04
89,427,314
0
0
null
2017-04-26T02:13:23
2017-04-26T02:13:23
null
UTF-8
C++
false
false
4,844
h
// MPlayer.h ////////////////////////////////////////// // MPlayer Class - Definition ///////////////////////// #ifndef MPLAYER_H #define MPLAYER_H // forward declared dependencies class MData; class DData; class OSC; class NOSC; class DelayLine; #include <string> #include "OSC.h" #include "NOSC.h" #include "DelayLine.h" #include "MData.h" #include "DData.h" #include "BC/portaudio.h" #include "SFX.h" //#include "SFX.h" class MPlayer { static const int SAMPLE_RATE; static const int FRAMES_PER_BUFFER; public: OSC osc[9]; // can use nine channels max NOSC nosc; // noise channel DelayLine delay[2]; // stereo, thus 2 channels MData data[9]; // this holds the music data DData ddata; // this holds the drum track data bool playing; bool enabled[9]; bool dEnabled; bool silenced[9]; bool dSilenced; long framePos; long songLastFrame; long songLastFramePure; long bookmark; float masterGain; int tableType; float masterOutCap; float compThreshold; float compRatio; bool delayEnabled; bool ringModEnabled[9]; int ringModFeed[9]; bool ringModMute[9]; bool loopEnabled; int repeatsRemaining; bool songFinished; bool channelDone[9]; bool dChannelDone; int remainingFrames[9]; int dRemainingFrames; double freqNote[9]; int noteIndex[9]; int dNoteIndex; int eventIndex[9]; int dEventIndex; int currentDrumNote; float sndBuffer[88200]; PaStreamParameters outputParameters; PaStream* stream; PaError err; bool appIsExiting; MPlayer(); ~MPlayer(); void setNewNote(int channel, double freq); void setToRest(int channel); void setNewDrumHit(int drumType); void restDrum(); void setAllChannelGain(float gain1, float gain2, float gain3, float gain4, float gain5, float gain6, float gain7, float gain8, float gain9, float gainD); void setChannelGain(int channel, float gain); float getChannelGain(int channel); void setDChannelGain(float gain); float getDChannelGain(); void enableChannels(bool enable1, bool enable2, bool enable3, bool enable4, bool enable5, bool enable6, bool enable7, bool enable8, bool enable9, bool enableD); void enableChannel(int channel); void disableChannel(int channel); void enableDrumChannel(); void disableDrumChannel(); void silenceChannel(int channel); void silenceDrumChannel(); void activateChannel(int channel); void activateDrumChannel(); void enableLooping(); void disableLooping(); void setRepeatsRemaining(int value); void advance(); float getMix(int channel); float compress(float input); float getMasterGain(); void setMasterGain(float g); int playerCallback ( const void *inputBuffer, void *outputBuffer, unsigned long framesPerBuffer, const PaStreamCallbackTimeInfo* timeInfo, PaStreamCallbackFlags statusFlags ); // this static function will only redirect to audio engine callback (above) static int paCallback( const void *inputBuffer, void *outputBuffer, unsigned long framesPerBuffer, const PaStreamCallbackTimeInfo* timeInfo, PaStreamCallbackFlags statusFlags, void *userData ) { return ((MPlayer*)userData) ->playerCallback(inputBuffer, outputBuffer, framesPerBuffer, timeInfo, statusFlags); } void playerStoppedCallback(); // this static function will only redirect to stream-stopped callback (above) static void paStoppedCallback( void *userData ) { cout << "stream finished callback called! step 1\n"; // DEBUG ((MPlayer*)userData)->playerStoppedCallback(); } void handlePaError( PaError e ); void initialize(); void restartStream(); void stopStream(); void declareAppTermination(); std::string getStreamStateString(); bool getStreamState(); void resetForNewSong(); void close(); void start(); void pause(); void restart(); void cleanUpForNewFile(); void goToBeginning(); long getSongLastFrame(); long getSongLastFramePure(); long getFramePos(); bool isPlaying(); int getTableType(); void setTableType(int type); bool delayIsEnabled(); void enableDelay(); void disableDelay(); void setAstro(int channel, int nCyclesPerSecond); void disableAstro(int channel); void enableRingMod(int channel, int modulatorChannel); void disableRingMod(int channel); void processEvent(int channel, int eType, int eParam); void processDrumEvent(int eType, int eParam); std::string exportToFile(string filename); int fillExportBuffer(float* buffer, int framesToWrite, long startFrame, int songFrameLen); float getHistoricalAverage(int channel); void seek(long destination); void seekAndStart(long destination); float getProgressRatio(); long getNextSeekPoint(); long getPreviousSeekPoint(); void setBookmark(long bm); long getBookmark(); bool reachedSongLastFramePure(); bool isSongFinished(); void bindSFX(SFX* sfxObj); SFX* sfx; // void bindSFX(SFX* sfxObj); // SFX* sfx; }; #endif
[ "hiro@hiromorozumi.com" ]
hiro@hiromorozumi.com
1642d58fc4798f55735703eb4a2440d83e11a12d
bc034b187c9058c30bbac0a20aebba581ab1e510
/source/0_3242733_27494_10274_784/t0_3242733_27494_10274_784_1_4.cpp
4cc02fcf46a0d6b4d310624b2aa60ac19a9d1d5b
[]
no_license
ToolTech/GeneticMNIST
2d1d3af68b17c1d6c3440246f335e184ce2086e9
1e9c2c1dd9dc0cc8451ec543fafe1e3100141b0b
refs/heads/master
2020-12-19T04:14:05.092882
2020-02-17T10:56:16
2020-02-17T10:56:16
235,614,718
4
0
null
null
null
null
UTF-8
C++
false
false
3,192
cpp
// Cpp file for ctxVirtualMachineProgram : 0_3242733_27494_10274_784 Pass:1 Thread:4 #include "t0_3242733_27494_10274_784_1_4.h" gzBool t0_3242733_27494_10274_784_1_4(ctxVirtualMachineProgram *program) { if(!m0_3242733_27494_10274_784_1_4_371(program)) return FALSE; if(!m0_3242733_27494_10274_784_1_4_372(program)) return FALSE; if(!m0_3242733_27494_10274_784_1_4_373(program)) return FALSE; if(!m0_3242733_27494_10274_784_1_4_374(program)) return FALSE; if(!m0_3242733_27494_10274_784_1_4_375(program)) return FALSE; if(!m0_3242733_27494_10274_784_1_4_376(program)) return FALSE; if(!m0_3242733_27494_10274_784_1_4_377(program)) return FALSE; if(!m0_3242733_27494_10274_784_1_4_378(program)) return FALSE; if(!m0_3242733_27494_10274_784_1_4_379(program)) return FALSE; if(!m0_3242733_27494_10274_784_1_4_380(program)) return FALSE; if(!m0_3242733_27494_10274_784_1_4_381(program)) return FALSE; if(!m0_3242733_27494_10274_784_1_4_382(program)) return FALSE; if(!m0_3242733_27494_10274_784_1_4_383(program)) return FALSE; if(!m0_3242733_27494_10274_784_1_4_384(program)) return FALSE; if(!m0_3242733_27494_10274_784_1_4_385(program)) return FALSE; if(!m0_3242733_27494_10274_784_1_4_386(program)) return FALSE; if(!m0_3242733_27494_10274_784_1_4_387(program)) return FALSE; if(!m0_3242733_27494_10274_784_1_4_388(program)) return FALSE; if(!m0_3242733_27494_10274_784_1_4_389(program)) return FALSE; if(!m0_3242733_27494_10274_784_1_4_390(program)) return FALSE; if(!m0_3242733_27494_10274_784_1_4_391(program)) return FALSE; if(!m0_3242733_27494_10274_784_1_4_392(program)) return FALSE; if(!m0_3242733_27494_10274_784_1_4_393(program)) return FALSE; if(!m0_3242733_27494_10274_784_1_4_394(program)) return FALSE; if(!m0_3242733_27494_10274_784_1_4_395(program)) return FALSE; if(!m0_3242733_27494_10274_784_1_4_396(program)) return FALSE; if(!m0_3242733_27494_10274_784_1_4_397(program)) return FALSE; if(!m0_3242733_27494_10274_784_1_4_398(program)) return FALSE; if(!m0_3242733_27494_10274_784_1_4_399(program)) return FALSE; if(!m0_3242733_27494_10274_784_1_4_400(program)) return FALSE; if(!m0_3242733_27494_10274_784_1_4_401(program)) return FALSE; if(!m0_3242733_27494_10274_784_1_4_402(program)) return FALSE; if(!m0_3242733_27494_10274_784_1_4_403(program)) return FALSE; if(!m0_3242733_27494_10274_784_1_4_404(program)) return FALSE; if(!m0_3242733_27494_10274_784_1_4_405(program)) return FALSE; if(!m0_3242733_27494_10274_784_1_4_406(program)) return FALSE; if(!m0_3242733_27494_10274_784_1_4_407(program)) return FALSE; if(!m0_3242733_27494_10274_784_1_4_408(program)) return FALSE; if(!m0_3242733_27494_10274_784_1_4_409(program)) return FALSE; if(!m0_3242733_27494_10274_784_1_4_410(program)) return FALSE; if(!m0_3242733_27494_10274_784_1_4_411(program)) return FALSE; if(!m0_3242733_27494_10274_784_1_4_412(program)) return FALSE; if(!m0_3242733_27494_10274_784_1_4_413(program)) return FALSE; if(!m0_3242733_27494_10274_784_1_4_414(program)) return FALSE; if(!m0_3242733_27494_10274_784_1_4_415(program)) return FALSE; return TRUE; }
[ "anders.moden@saabgroup.com" ]
anders.moden@saabgroup.com
af651417e0492d39479cfc6dde8c75b12c46e641
656a5c2c0ec1820dcc07a5c76282cd49f31d793f
/backend/third_party/xviz/include/xviz/third_party/asio/detail/reactive_socket_sendto_op.hpp
da970b76a66c15e4d9370f81873bd00b72a8c749
[ "MIT" ]
permissive
sdhanush13/carlaviz
9386c0843d5e507782ef070eeee15311db329c7d
bb0071c197a33e402fa749e087f57797f672d979
refs/heads/main
2023-01-20T00:21:55.469396
2020-11-15T16:19:14
2020-11-15T16:19:14
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,399
hpp
// // detail/reactive_socket_sendto_op.hpp // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // // Copyright (c) 2003-2018 Christopher M. Kohlhoff (chris at kohlhoff dot com) // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // #ifndef ASIO_DETAIL_REACTIVE_SOCKET_SENDTO_OP_HPP #define ASIO_DETAIL_REACTIVE_SOCKET_SENDTO_OP_HPP #if defined(_MSC_VER) && (_MSC_VER >= 1200) # pragma once #endif // defined(_MSC_VER) && (_MSC_VER >= 1200) #include "xviz/third_party/asio/detail/config.hpp" #include "xviz/third_party/asio/detail/bind_handler.hpp" #include "xviz/third_party/asio/detail/buffer_sequence_adapter.hpp" #include "xviz/third_party/asio/detail/fenced_block.hpp" #include "xviz/third_party/asio/detail/memory.hpp" #include "xviz/third_party/asio/detail/reactor_op.hpp" #include "xviz/third_party/asio/detail/socket_ops.hpp" #include "xviz/third_party/asio/detail/push_options.hpp" namespace asio { namespace detail { template <typename ConstBufferSequence, typename Endpoint> class reactive_socket_sendto_op_base : public reactor_op { public: reactive_socket_sendto_op_base(socket_type socket, const ConstBufferSequence& buffers, const Endpoint& endpoint, socket_base::message_flags flags, func_type complete_func) : reactor_op(&reactive_socket_sendto_op_base::do_perform, complete_func), socket_(socket), buffers_(buffers), destination_(endpoint), flags_(flags) { } static status do_perform(reactor_op* base) { reactive_socket_sendto_op_base* o( static_cast<reactive_socket_sendto_op_base*>(base)); buffer_sequence_adapter<asio::const_buffer, ConstBufferSequence> bufs(o->buffers_); status result = socket_ops::non_blocking_sendto(o->socket_, bufs.buffers(), bufs.count(), o->flags_, o->destination_.data(), o->destination_.size(), o->ec_, o->bytes_transferred_) ? done : not_done; ASIO_HANDLER_REACTOR_OPERATION((*o, "non_blocking_sendto", o->ec_, o->bytes_transferred_)); return result; } private: socket_type socket_; ConstBufferSequence buffers_; Endpoint destination_; socket_base::message_flags flags_; }; template <typename ConstBufferSequence, typename Endpoint, typename Handler> class reactive_socket_sendto_op : public reactive_socket_sendto_op_base<ConstBufferSequence, Endpoint> { public: ASIO_DEFINE_HANDLER_PTR(reactive_socket_sendto_op); reactive_socket_sendto_op(socket_type socket, const ConstBufferSequence& buffers, const Endpoint& endpoint, socket_base::message_flags flags, Handler& handler) : reactive_socket_sendto_op_base<ConstBufferSequence, Endpoint>(socket, buffers, endpoint, flags, &reactive_socket_sendto_op::do_complete), handler_(ASIO_MOVE_CAST(Handler)(handler)) { handler_work<Handler>::start(handler_); } static void do_complete(void* owner, operation* base, const asio::error_code& /*ec*/, std::size_t /*bytes_transferred*/) { // Take ownership of the handler object. reactive_socket_sendto_op* o(static_cast<reactive_socket_sendto_op*>(base)); ptr p = { asio::detail::addressof(o->handler_), o, o }; handler_work<Handler> w(o->handler_); ASIO_HANDLER_COMPLETION((*o)); // Make a copy of the handler so that the memory can be deallocated before // the upcall is made. Even if we're not about to make an upcall, a // sub-object of the handler may be the true owner of the memory associated // with the handler. Consequently, a local copy of the handler is required // to ensure that any owning sub-object remains valid until after we have // deallocated the memory here. detail::binder2<Handler, asio::error_code, std::size_t> handler(o->handler_, o->ec_, o->bytes_transferred_); p.h = asio::detail::addressof(handler.handler_); p.reset(); // Make the upcall if required. if (owner) { fenced_block b(fenced_block::half); ASIO_HANDLER_INVOCATION_BEGIN((handler.arg1_, handler.arg2_)); w.complete(handler, handler.handler_); ASIO_HANDLER_INVOCATION_END; } } private: Handler handler_; }; } // namespace detail } // namespace asio #include "xviz/third_party/asio/detail/pop_options.hpp" #endif // ASIO_DETAIL_REACTIVE_SOCKET_SENDTO_OP_HPP
[ "harish.jartarghar@gmail.com" ]
harish.jartarghar@gmail.com
f1bf3905a21aa287290f0243fdb348138956f141
3e27864309375d72adaf3d31c678f8066b536484
/uloading.cpp
72b3ee9c6ff7f8894b98d1c2b0206fc7d442c899
[]
no_license
Uking33/180622-QT-OilManageSystem
c83ca4a9a8f6865d6329dc3a8a70fcb0bb14a42a
979c9fd5fbd849c3baaea5ccf2d0ec3b9aa41ef1
refs/heads/main
2023-04-13T21:44:56.319947
2021-04-23T05:55:05
2021-04-23T05:55:05
360,778,133
0
0
null
null
null
null
UTF-8
C++
false
false
2,386
cpp
#include "uloading.h" #include <QHBoxLayout> #include <QProgressBar> #include <QPushButton> #include <QLabel> #include "uthread.h" #include "output.h" #include <QCloseEvent> #include <QMessageBox> #include <QTimer> ULoading::ULoading(OutPut *output){ //init m_output = output; m_thread = NULL; //界面 progressBar = new QProgressBar(); debug = new QLabel(); layout = new QHBoxLayout(); debug->setFixedWidth(120); debug->setAlignment(Qt::AlignLeft|Qt::AlignVCenter); layout->addWidget(progressBar); layout->addWidget(debug); this->setLayout(layout); } ULoading::~ULoading(){ delete progressBar; delete debug; delete layout; if(m_thread!=NULL){ m_thread->stop(); delete m_thread; } } void ULoading::RunGet(QString str){ debug->setText("加载-"+str); m_gress++; progressBar->setValue(m_gress*100/m_count); if(m_gress==m_count) End(); } void ULoading::Start(int count, QString fun, QString str1, QString str2, QString str3){ m_gress=0; progressBar->setValue(0); m_count = count; m_thread = new UThread; m_thread->Set(m_output,fun,str1,str2,str3); connect(m_thread, &UThread::finished, m_thread, &UThread::deleteLater); connect(m_output, &OutPut::LoadHit, this, &ULoading::RunGet, Qt::QueuedConnection); m_thread->start(); this->exec(); disconnect(m_output, &OutPut::LoadHit, this, &ULoading::RunGet); } //void ULoading::Start(int count, QString fun, QString str1, QString str2, QList<QList<QVariant>> *list){ // m_gress=0; // progressBar->setValue(0); // m_count = count; // m_thread = new UThread; // m_thread->Set(m_output,fun,str1,str2,list); // connect(m_thread, &UThread::finished, m_thread, &UThread::deleteLater); // connect(m_output, &OutPut::LoadHit, // this, &ULoading::RunGet, Qt::QueuedConnection); // m_thread->start(); // this->exec(); // disconnect(m_output, &OutPut::LoadHit, // this, &ULoading::RunGet); //} void ULoading::End(){ this->close(); } void ULoading::closeEvent(QCloseEvent *event) { if(progressBar->value()<100){ event->ignore(); //忽略退出信号,程序继续运行 QMessageBox message(QMessageBox::Information, "提示", QString("请等待运行完毕!")); message.exec(); } }
[ "60296340+Uking33@users.noreply.github.com" ]
60296340+Uking33@users.noreply.github.com
c150721c07a896cbad2d7e2c6c0ec31e5612024a
98c491ce647b8ac38466c8cbf2a3a03fc4de3c58
/src/GridPoint.h
20f458362283365a968177ae0edcb93b192af85d
[]
no_license
hhellbusch/mcee704ritprem
266ec92fdbad7f623f886f0911e064a9931a0734
0c3b98443c1048389009882697f5f18375dbf42a
refs/heads/master
2021-01-23T13:17:53.266781
2013-10-09T23:45:03
2013-10-09T23:45:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
362
h
/** * GridPoint.h */ #pragma once #include <vector> #include <string> #include "PeriodicElement.h" #include "Concentration.h" class GridPoint { public: GridPoint(); public: std::vector<Concentration> getConcentrations(); void addConcentration(Concentration concentration); void display() const; private: std::vector<Concentration> concentrations; };
[ "hhellbusch@gmail.com" ]
hhellbusch@gmail.com
06b301fa34778ee4ea0454526d7f33ac5df39803
7ba404d5bfc9851fb7cb761193187b70f9bc6cbe
/backend/modules/Antivirus/firewallbackend.cpp
f0c1e354f935e372ddc5bb65e9c160da8e69e922
[]
no_license
hosein-gh/Ubuntu-Touch-Antivirus
2de5a5c2eff4ce9dba63173af35150aeedf06151
b52e1e8d398b8b72e321ce2d4165626245a1f34f
refs/heads/master
2022-12-05T19:16:07.720344
2020-08-29T08:47:26
2020-08-29T08:47:26
291,232,332
1
0
null
null
null
null
UTF-8
C++
false
false
103
cpp
#include "firewallbackend.h" firewallBackend::firewallBackend(QObject *parent) : QObject(parent) { }
[ "hosein.iprogramer@yahoo.com" ]
hosein.iprogramer@yahoo.com
9ca08bb51c2a8766050695c7696d4505f8e8e57e
f477772ac3766df6185774cfce4baab481e7a07a
/include/targetver.h
0022c72184debed773d4ea781c3f891dd82fa25c
[ "MIT" ]
permissive
Bbenchaya/PointCloud_Viewer
283280aaf1614723958b6b3e5e89e9f4ec5b29d2
8c7ce1bf25bda24b5cfdabffb3b544f929cafc59
refs/heads/master
2016-09-01T07:18:23.241337
2016-03-21T12:34:54
2016-03-21T12:34:54
55,712,465
0
0
null
null
null
null
UTF-8
C++
false
false
19,181
h
// File Location: l:\tests\testgszf\targetver.h #pragma once #include <pcl/common/common_headers.h> #define MIN_INTENSITY 8 // The following macros define the minimum required platform. The minimum required platform // is the earliest version of Windows, Internet Explorer etc. that has the necessary features to run // your application. The macros work by enabling all features available on platform versions up to and // including the version specified. // Modify the following defines if you have to target a platform prior to the ones specified below. // Refer to MSDN for the latest info on corresponding values for different platforms. #ifndef _WIN32_WINNT // Specifies that the minimum required platform is Windows Vista. #define _WIN32_WINNT 0x0600 // Change this to the appropriate value to target other versions of Windows. #endif /****************************************************************************** * INTERNAL CONSTANTS * ******************************************************************************/ #undef M_PI const double M_PI = 3.14159265358979323846264338327950288; const double K_ToRad = M_PI / 180.0; void Log (const char *Xi_pFormat,...); #include "windows.h" #include <stdlib.h> #include <map> /****************************************************************************** * INTERNAL CLASSES * ******************************************************************************/ /////////////////////////////////////////////////////////////////////////////// // // SLDGEN_LSRZF_TPoint // /////////////////////////////////////////////////////////////////////////////// #pragma once #pragma pack(1) struct SLDGEN_LSRZF_TPoint { SLDGEN_LSRZF_TPoint(); SLDGEN_LSRZF_TPoint(float Xi_X, float Xi_Y, float Xi_Z, BYTE Xi_Intensity); bool GetPolar(float& Xo_Pitch, float& Xo_Yaw, float * Xo_pDist = 0) const; float m_X, m_Y, m_Z; BYTE m_Intensity; }; #pragma pack() /////////////////////////////////////////////////////////////////////////////// // // SLDGEN_LSRZF_TLineData // /////////////////////////////////////////////////////////////////////////////// struct SLDGEN_LSRZF_TLineData { SLDGEN_LSRZF_TLineData(int Xi_NumBeams) : m_NumBeams(Xi_NumBeams) , m_arrPoints(new SLDGEN_LSRZF_TPoint[m_NumBeams]) { } ~SLDGEN_LSRZF_TLineData() { delete m_arrPoints; m_arrPoints = 0; m_NumBeams = 0; } int m_NumBeams; SLDGEN_LSRZF_TPoint * m_arrPoints; }; /////////////////////////////////////////////////////////////////////////////// // // SLDGEN_LSRZF_CLine // /////////////////////////////////////////////////////////////////////////////// struct SLDGEN_LSRZF_CLine { SLDGEN_LSRZF_CLine(int Xi_NumBeams) : m_pImpl(new SLDGEN_LSRZF_TLineData(Xi_NumBeams)) {} SLDGEN_LSRZF_CLine::~SLDGEN_LSRZF_CLine() { delete m_pImpl; m_pImpl = 0; } SLDGEN_LSRZF_TPoint& SLDGEN_LSRZF_CLine::operator[](int Xi_Idx) { return m_pImpl->m_arrPoints[Xi_Idx]; } const SLDGEN_LSRZF_TPoint& SLDGEN_LSRZF_CLine::operator[](int Xi_Idx) const { return m_pImpl->m_arrPoints[Xi_Idx]; } int SLDGEN_LSRZF_CLine::GetNumBeams() const { return m_pImpl->m_NumBeams; } operator const void *() const { return m_pImpl->m_arrPoints; } struct SLDGEN_LSRZF_TLineData * m_pImpl; }; /****************************************************************************** * EXPORTED CLASS METHODS * ******************************************************************************/ /////////////////////////////////////////////////////////////////////////////// // // SLDGEN_LSRZF_TScan // /////////////////////////////////////////////////////////////////////////////// struct SLDGEN_LSRZF_TScan { enum {K_BUFF_SIZE = 4096}; SLDGEN_LSRZF_TScan() : m_hFile(0) {} ~SLDGEN_LSRZF_TScan() { if(m_hFile) ::CloseHandle(m_hFile); } HANDLE m_hFile; char m_Buff[K_BUFF_SIZE]; #pragma pack(1) struct ScanBasicMetadata { BYTE m_Version; int m_CountLines; int m_MsrsPerLine; float m_HFOV; float m_YawStartAngle; // degrees float m_HResolution; // degrees float m_VFOV; // degrees float m_PitchStartAngle; // degrees float m_VResolution; // degrees } m_MetaData; #pragma pack() }; /////////////////////////////////////////////////////////////////////////////// // // SLDGEN_LSRZF_CLaserScan // /////////////////////////////////////////////////////////////////////////////// class SLDGEN_LSRZF_CLaserScan { public: /****************************************************************************** * *: Method name: SLDGEN_LSRZF_CLaserScan * ******************************************************************************/ SLDGEN_LSRZF_CLaserScan::SLDGEN_LSRZF_CLaserScan () : m_pImpl(new SLDGEN_LSRZF_TScan) {} /****************************************************************************** * *: Method name: ~SLDGEN_LSRZF_CLaserScan * ******************************************************************************/ SLDGEN_LSRZF_CLaserScan::~SLDGEN_LSRZF_CLaserScan () { delete m_pImpl; m_pImpl = 0; } /****************************************************************************** * *: Method name: OpenForRead * ******************************************************************************/ bool SLDGEN_LSRZF_CLaserScan::OpenForRead(const char * Xi_szFileName) { m_pImpl->m_hFile = ::CreateFileA(Xi_szFileName, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL); if(m_pImpl->m_hFile == INVALID_HANDLE_VALUE) { Log("[SLDGEN_LSRZF_CLaserScan::OpenScan], Failed to open file %s for reading", Xi_szFileName); return false; } DWORD l_ReadBytes; if(!ReadFile(m_pImpl->m_hFile, &m_pImpl->m_MetaData, sizeof m_pImpl->m_MetaData, &l_ReadBytes, NULL) || l_ReadBytes != sizeof m_pImpl->m_MetaData) { Log("[SLDGEN_LSRZF_CLaserScan::OpenScan], Failed to read the version num of the scan"); return false; } Log("[SLDGEN_LSRZF_CLaserScan::OpenForRead], Metadata of \"%s\": version#: %d, CountLines: %d, MsrsPerLine: %d, HFOV: %lf, YawStartAngle: %lf, HResolution: %lf, VFOV: %lf, PitchStartAngle: %lf, VResolution: %lf", Xi_szFileName, int(m_pImpl->m_MetaData.m_Version), m_pImpl->m_MetaData.m_CountLines, m_pImpl->m_MetaData.m_MsrsPerLine, m_pImpl->m_MetaData.m_HFOV, m_pImpl->m_MetaData.m_YawStartAngle, m_pImpl->m_MetaData.m_HResolution, m_pImpl->m_MetaData.m_VFOV, m_pImpl->m_MetaData.m_PitchStartAngle, m_pImpl->m_MetaData.m_VResolution); return true; } /****************************************************************************** * *: Method name: GetVersionID * ******************************************************************************/ int SLDGEN_LSRZF_CLaserScan::GetVersionID() const { return int(m_pImpl->m_MetaData.m_Version); } /****************************************************************************** * *: Method name: GetCountMrmntsPerLine * ******************************************************************************/ int SLDGEN_LSRZF_CLaserScan::GetCountMrmntsPerLine() const { return m_pImpl->m_MetaData.m_MsrsPerLine; } /****************************************************************************** * *: Method name: GetCountLinesPerScan * ******************************************************************************/ int SLDGEN_LSRZF_CLaserScan::GetCountLinesPerScan() const { return m_pImpl->m_MetaData.m_CountLines; } /****************************************************************************** * *: Method name: GetHFOV * ******************************************************************************/ float SLDGEN_LSRZF_CLaserScan::GetHFOV() const { return m_pImpl->m_MetaData.m_HFOV; } /****************************************************************************** * *: Method name: GetInitialYawAngle * ******************************************************************************/ float SLDGEN_LSRZF_CLaserScan::GetInitialYawAngle() const { return m_pImpl->m_MetaData.m_YawStartAngle; } /****************************************************************************** * *: Method name: GetInitialPitchAngle * ******************************************************************************/ float SLDGEN_LSRZF_CLaserScan::GetInitialPitchAngle() const { return m_pImpl->m_MetaData.m_PitchStartAngle; } /****************************************************************************** * *: Method name: GetAngularResolution * ******************************************************************************/ float SLDGEN_LSRZF_CLaserScan::GetAngularResolution() const { return m_pImpl->m_MetaData.m_HResolution; } /****************************************************************************** * *: Method name: GetVFOV * ******************************************************************************/ float SLDGEN_LSRZF_CLaserScan::GetVFOV() const { return m_pImpl->m_MetaData.m_VFOV; } /****************************************************************************** * *: Method name: GetLine * ******************************************************************************/ bool SLDGEN_LSRZF_CLaserScan::GetLine(int Xi_LineNum, SLDGEN_LSRZF_CLine * Xo_pLine) { const int l_LineSize(m_pImpl->m_MetaData.m_MsrsPerLine*sizeof SLDGEN_LSRZF_TPoint); int l_OffsetToLine(sizeof m_pImpl->m_MetaData + Xi_LineNum*l_LineSize); if(Xi_LineNum != -1 && ::SetFilePointer(m_pImpl->m_hFile, l_OffsetToLine, 0, FILE_BEGIN) == INVALID_SET_FILE_POINTER) { Log("[SLDGEN_LSRZF_CLaserScan::GetLine], SetFilePointer(with %d bytes offset) failed, GetLastError = %d", l_OffsetToLine, GetLastError()); return false; } DWORD l_ReadBytes; if(!ReadFile(m_pImpl->m_hFile, Xo_pLine->m_pImpl->m_arrPoints, l_LineSize, &l_ReadBytes, NULL) || l_ReadBytes != l_LineSize) { Log("[SLDGEN_LSRZF_CLaserScan::GetLine], Failed to read the Line data"); return false; } return true; } /****************************************************************************** * *: Method name: GetNextLine * ******************************************************************************/ bool SLDGEN_LSRZF_CLaserScan::GetNextLine(SLDGEN_LSRZF_CLine * Xo_pLine) { return GetLine(-1, Xo_pLine); } /****************************************************************************** * *: Method name: ConvertToGSFormat - FYI: done at route recording from raw sensor format * ****************************************************************************** bool SLDGEN_LSRZF_CLaserScan::ConvertToGSFormat(const char * Xi_ZFSFileName, const char * Xi_GSZFFileName) { int flags = OPEN_DEFAULTFLAGS_LBL; if(!ZFSDLL_SetLicense("SDK_GEOSIM", "unlimited", "e194f33e" ) ) { Log("[SLDGEN_LSRZF_CLaserScan::ConvertToGSFormat], SDK license initialization (ZFSDLL_SetLicense) failed"); return false; } zfs::zfserr_t err; ZFSLinebyline * p = OpenLineByLine(std::string(Xi_ZFSFileName), flags, &err ); // open a zfs scanfile with line by line access if( p==NULL ) { Log("[SLDC2SNS_ZF_CZFLaser::StoreInGSFormat], OpenLineByLine failed for \"%s\"", Xi_ZFSFileName); return false; } else { int wm = p->DetectWayMode(); if( wm>=0 ) p->InitWay( wm, 0 ); int px = p->Pixel(); // number of pixel each line int ln = p->Lines(); // number of lines (number of lines of all parts) // registration double matrix[16]; memset( matrix, 0, sizeof(double)*16 ); if( p->Matrix().HasTR() ) // Check if available p->Matrix().GetTRMatrix4x4( matrix ); ZFSHeader* firsthead = p->GetFirstZFSHeader(); // access to zfs file header. if scan exist of more scans it is the header of the first scan otherwise it is the same as GetZFSHeader ZFSHeader* head = p->GetZFSHeader(); // access to zfs file header. if scan exist of more than one scans it is the head of the last scan if( firsthead && head ) { // not relevant } else { delete p; return false; } SLDGEN_LSRZF_CLaserScan l_GSScan; if(!l_GSScan.OpenForWrite(Xi_GSZFFileName)) { MessageBox(NULL, "Failed to open file for write", "Error", MB_OK|MB_ICONHAND); return false; } double l_YawStart = head->getDouble(67,0.), l_YawFinish= head->getDouble(68,0.), l_HFOV = l_YawFinish - l_YawStart, l_YawAngleResolution = l_HFOV / head->getLong(4,0), l_PitchStartAngle = float(head->getLong(61,0))*360.0f / head->getLong(73,0) + head->getDouble(45,0), l_PitchEndAngle = float(head->getLong(62,0))*360.0f / head->getLong(73,0) + head->getDouble(45,0); int l_Pixels360Width = head->getLong(21,0), l_Pixels360Height= l_Pixels360Width/2; unsigned char * l_pScanBuff = new unsigned char[l_Pixels360Width * l_Pixels360Height]; memset(l_pScanBuff, 1, l_Pixels360Width*l_Pixels360Height); long l_MaxRef = head->getLong(112,0); int minrf = p->MinRf(); // minimum usable intensity int maxrf = p->MaxRf(); // maximum intensity of device. You will get higher values if laser is overloaded l_GSScan.WriteMetadata(p->Lines(), p->Pixel(), float(l_HFOV), float(l_YawStart), float(l_YawAngleResolution), float(l_PitchEndAngle - l_PitchStartAngle), float(l_PitchStartAngle), float(360.0/p->Pixel())); SLDGEN_LSRZF_CLine l_ScanLine(px); p->SkipTo(0); // start with first line int maxInt(0); int lineheadersize = head->GetLong(7,0) + head->GetLong(8,0); bool end = false; // all lines int akt_n = 0, akt_m = 0; for( int nl=0; nl<ln && !end; ++nl) // go trough all lines { // information about current scanfile if scan consist of more than one part int currentpart = p->getCurrentPart(); int parts = p->getParts(); int lineInCurrentPart = p->LineInCurrentPart(); // example get value 44 of lineheader (counter1) long pps_line = 0; if( lineheadersize>=48 ) pps_line = *(long*)((char*)(p->L()->LPtr())+44); // Pointer to lineheader // go trough all pixel in current line for(int i(0); i<px; ++i) { p->Set(i); // set pointer to pixel if( p->IsSet(i) ) // Check if pixel is enabled. Filterfunction will disable bad points // If you want check masks stored in scan as well, you have to open scan with flag OPEN_READ_MASKS { int rf = p->Rf(); // raw intensity depends on imager typ if(rf > maxInt) maxInt = rf; double l_refNorm = p->RfNorm1(); double x,y,z; p->XYZ( x,y,z ); // unit=m l_ScanLine[i] = SLDGEN_LSRZF_TPoint(float(x),float(y),float(z), BYTE(l_refNorm*255)); // BYTE(double(rf*255)/l_MaxRef) // If you need Polarcoordinate instead of cartesian, use following after XYZ double elev,hor,range;// [rad,rad,meter] ZFModel::XYZ2polar( x,y,z, elev,hor,&range ); if(hor > 2*M_PI) hor -= 2*M_PI; int l_LineIdx = int(hor * (l_Pixels360Width - 1)/2/M_PI +0.5 - 1); int l_BeamIdx = l_Pixels360Height - 1 - int(elev * (l_Pixels360Height - 1)/M_PI + 0.5 - 1); l_pScanBuff[l_BeamIdx*l_Pixels360Width + l_LineIdx] = BYTE(l_refNorm*255);//BYTE(double(rf*255)/l_MaxRef); } else { l_ScanLine[i] = SLDGEN_LSRZF_TPoint(0.0f,0.0f,0.0f, 0); } } l_GSScan.WriteScanLine(&l_ScanLine); p->LoadLines(1); // load next line. Use 1 for loading every line } delete p; // close scanfile } return true; }*/ /****************************************************************************** * Protected methods * ******************************************************************************/ /****************************************************************************** * *: Method name: OpenForWrite - FYI: done at route recording * ******************************************************************************/ bool OpenForWrite(const char * Xi_szFileName) { m_pImpl->m_hFile = ::CreateFileA(Xi_szFileName, GENERIC_WRITE, FILE_SHARE_READ, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL); if(m_pImpl->m_hFile == INVALID_HANDLE_VALUE) { Log("[SLDGEN_LSRZF_CLaserScan::OpenForWrite], Failed to open file %s for writing", Xi_szFileName); return false; } return true; } /****************************************************************************** * *: Method name: WriteMetadata - FYI: done at route recording * ******************************************************************************/ bool WriteMetadata(int Xi_CountLines, int Xi_MsrsPerLine, float Xi_HFOV, float Xi_YawStartAngle, float Xi_HResolution, float Xi_VFOV, float Xi_PitchStartAngle, float Xi_VResolution) { m_pImpl->m_MetaData.m_Version = 1; m_pImpl->m_MetaData.m_CountLines = Xi_CountLines; m_pImpl->m_MetaData.m_MsrsPerLine = Xi_MsrsPerLine; m_pImpl->m_MetaData.m_HFOV = Xi_HFOV; m_pImpl->m_MetaData.m_YawStartAngle = Xi_YawStartAngle; m_pImpl->m_MetaData.m_HResolution = Xi_HResolution; m_pImpl->m_MetaData.m_VFOV = Xi_VFOV; m_pImpl->m_MetaData.m_PitchStartAngle = Xi_PitchStartAngle; m_pImpl->m_MetaData.m_VResolution = Xi_VResolution; ::SetFilePointer(m_pImpl->m_hFile, 0, 0, FILE_BEGIN); DWORD l_Written; if(!::WriteFile(m_pImpl->m_hFile, &m_pImpl->m_MetaData, sizeof m_pImpl->m_MetaData, &l_Written, NULL) || l_Written != sizeof m_pImpl->m_MetaData) { Log("[SLDGEN_LSRZF_CLaserScan::FlushMetadata], Failed to write to file"); return false; } return true; } /****************************************************************************** * *: Method name: WriteScanLine - FYI: done at route recording * ******************************************************************************/ bool WriteScanLine(const SLDGEN_LSRZF_CLine * Xi_pLine) { DWORD l_Written; const DWORD l_RequiredBytes(Xi_pLine->GetNumBeams()*sizeof(SLDGEN_LSRZF_TPoint)); if(!::WriteFile(m_pImpl->m_hFile, Xi_pLine->operator const void *(), l_RequiredBytes, &l_Written, NULL) || l_Written != l_RequiredBytes) { Log("[SLDGEN_LSRZF_CLaserScan::FlushMWriteScanLineetadata], Failed to write to file"); return false; } return true; } protected: /****************************************************************************** * Protected members * ******************************************************************************/ struct SLDGEN_LSRZF_TScan * m_pImpl; }; pcl::PointCloud<pcl::PointXYZ>::Ptr initTargetVer(int argc, char* argv[]);
[ "asaf.chelouche@gmail.com" ]
asaf.chelouche@gmail.com
09596286dcfaa80680629f7dff808f82b1367ca6
48c1654e2160733e308253a195ff8392c0d65a51
/cg_test/src/OriginalCvode/beeler_reuter_model_1977.hpp
02fa9318eddae35b5c2d231f85597aeaf95d2378
[]
no_license
MauriceHendrix/utility_code_cardiac
b110be21973d316bc2945b2d54f94b9cbe2b57b3
e9c22f14139a664eb33452f57074c93271f6d07e
refs/heads/master
2023-06-12T12:22:16.221418
2021-07-05T15:30:20
2021-07-05T15:30:20
220,493,237
0
0
null
null
null
null
UTF-8
C++
false
false
3,143
hpp
#ifdef CHASTE_CVODE #ifndef DYNAMICBEELER_REUTER_MODEL_1977FROMCELLMLCVODE_HPP_ #define DYNAMICBEELER_REUTER_MODEL_1977FROMCELLMLCVODE_HPP_ //! @file //! //! This source file was generated from CellML. //! //! Model: beeler_reuter_model_1977 //! //! Processed by pycml - CellML Tools in Python //! (translators: , pycml: , optimize: ) //! on Tue Feb 18 17:07:46 2020 //! //! <autogenerated> #include "ChasteSerialization.hpp" #include <boost/serialization/base_object.hpp> #include "AbstractCvodeCell.hpp" #include "AbstractDynamicallyLoadableEntity.hpp" #include "AbstractStimulusFunction.hpp" class Dynamicbeeler_reuter_model_1977FromCellMLCvode : public AbstractCvodeCell, public AbstractDynamicallyLoadableEntity { friend class boost::serialization::access; template<class Archive> void serialize(Archive & archive, const unsigned int version) { archive & boost::serialization::base_object<AbstractCvodeCell >(*this); archive & boost::serialization::base_object<AbstractDynamicallyLoadableEntity>(*this); } // // Settable parameters and readable variables // public: boost::shared_ptr<RegularStimulus> UseCellMLDefaultStimulus(); double GetIntracellularCalciumConcentration(); Dynamicbeeler_reuter_model_1977FromCellMLCvode(boost::shared_ptr<AbstractIvpOdeSolver> pOdeSolver /* unused; should be empty */, boost::shared_ptr<AbstractStimulusFunction> pIntracellularStimulus); ~Dynamicbeeler_reuter_model_1977FromCellMLCvode(); double GetIIonic(const std::vector<double>* pStateVariables=NULL); void EvaluateYDerivatives(double var_chaste_interface__environment__time, const N_Vector rY, N_Vector rDY); void EvaluateAnalyticJacobian(double var_chaste_interface__environment__time, N_Vector rY, N_Vector rDY, CHASTE_CVODE_DENSE_MATRIX rJacobian, N_Vector rTmp1, N_Vector rTmp2, N_Vector rTmp3); }; // Needs to be included last #include "SerializationExportWrapper.hpp" CHASTE_CLASS_EXPORT(Dynamicbeeler_reuter_model_1977FromCellMLCvode) namespace boost { namespace serialization { template<class Archive> inline void save_construct_data( Archive & ar, const Dynamicbeeler_reuter_model_1977FromCellMLCvode * t, const unsigned int fileVersion) { const boost::shared_ptr<AbstractIvpOdeSolver> p_solver = t->GetSolver(); const boost::shared_ptr<AbstractStimulusFunction> p_stimulus = t->GetStimulusFunction(); ar << p_solver; ar << p_stimulus; } template<class Archive> inline void load_construct_data( Archive & ar, Dynamicbeeler_reuter_model_1977FromCellMLCvode * t, const unsigned int fileVersion) { boost::shared_ptr<AbstractIvpOdeSolver> p_solver; boost::shared_ptr<AbstractStimulusFunction> p_stimulus; ar >> p_solver; ar >> p_stimulus; ::new(t)Dynamicbeeler_reuter_model_1977FromCellMLCvode(p_solver, p_stimulus); } } } #endif // DYNAMICBEELER_REUTER_MODEL_1977FROMCELLMLCVODE_HPP_ #endif // CHASTE_CVODE
[ "maurice.hendrix@nottingham.ac.uk" ]
maurice.hendrix@nottingham.ac.uk
cf995b508f139a7f0e480e734ac070aa39acfee3
6aab4199ab2cab0b15d9af390a251f37802366ab
/audio/mock_voe_channel_proxy.h
e666bf200b149b504635f978b353d10b558500d3
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference", "LicenseRef-scancode-google-patent-license-webrtc", "LicenseRef-scancode-google-patent-license-webm" ]
permissive
adwpc/webrtc
f288a600332e5883b2ca44492e02bea81e45b4fa
a30eb44013b8472ea6a042d7ed2909eb7346f9a8
refs/heads/master
2021-05-24T13:18:44.227242
2021-02-01T14:54:12
2021-02-01T14:54:12
174,692,051
0
0
MIT
2019-03-09T12:32:13
2019-03-09T12:32:13
null
UTF-8
C++
false
false
5,884
h
/* * Copyright (c) 2015 The WebRTC 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 in the root of the source * tree. An additional intellectual property rights grant can be found * in the file PATENTS. All contributing project authors may * be found in the AUTHORS file in the root of the source tree. */ #ifndef AUDIO_MOCK_VOE_CHANNEL_PROXY_H_ #define AUDIO_MOCK_VOE_CHANNEL_PROXY_H_ #include <map> #include <memory> #include <string> #include <utility> #include <vector> #include "api/test/mock_frame_encryptor.h" #include "audio/channel_receive.h" #include "audio/channel_send.h" #include "modules/rtp_rtcp/source/rtp_packet_received.h" #include "test/gmock.h" namespace webrtc { namespace test { class MockChannelReceive : public voe::ChannelReceiveInterface { public: MOCK_METHOD2(SetNACKStatus, void(bool enable, int max_packets)); MOCK_METHOD1(RegisterReceiverCongestionControlObjects, void(PacketRouter* packet_router)); MOCK_METHOD0(ResetReceiverCongestionControlObjects, void()); MOCK_CONST_METHOD0(GetRTCPStatistics, CallReceiveStatistics()); MOCK_CONST_METHOD0(GetNetworkStatistics, NetworkStatistics()); MOCK_CONST_METHOD0(GetDecodingCallStatistics, AudioDecodingCallStats()); MOCK_CONST_METHOD0(GetSpeechOutputLevelFullRange, int()); MOCK_CONST_METHOD0(GetTotalOutputEnergy, double()); MOCK_CONST_METHOD0(GetTotalOutputDuration, double()); MOCK_CONST_METHOD0(GetDelayEstimate, uint32_t()); MOCK_METHOD1(SetSink, void(AudioSinkInterface* sink)); MOCK_METHOD1(OnRtpPacket, void(const RtpPacketReceived& packet)); MOCK_METHOD2(ReceivedRTCPPacket, void(const uint8_t* packet, size_t length)); MOCK_METHOD1(SetChannelOutputVolumeScaling, void(float scaling)); MOCK_METHOD2(GetAudioFrameWithInfo, AudioMixer::Source::AudioFrameInfo(int sample_rate_hz, AudioFrame* audio_frame)); MOCK_CONST_METHOD0(PreferredSampleRate, int()); MOCK_METHOD1(SetAssociatedSendChannel, void(const voe::ChannelSendInterface* send_channel)); MOCK_CONST_METHOD0(GetPlayoutTimestamp, uint32_t()); MOCK_CONST_METHOD0(GetSyncInfo, absl::optional<Syncable::Info>()); MOCK_METHOD1(SetMinimumPlayoutDelay, void(int delay_ms)); MOCK_METHOD1(SetBaseMinimumPlayoutDelayMs, bool(int delay_ms)); MOCK_CONST_METHOD0(GetBaseMinimumPlayoutDelayMs, int()); MOCK_CONST_METHOD0(GetReceiveCodec, absl::optional<std::pair<int, SdpAudioFormat>>()); MOCK_METHOD1(SetReceiveCodecs, void(const std::map<int, SdpAudioFormat>& codecs)); MOCK_CONST_METHOD0(GetSources, std::vector<RtpSource>()); MOCK_METHOD0(StartPlayout, void()); MOCK_METHOD0(StopPlayout, void()); }; class MockChannelSend : public voe::ChannelSendInterface { public: // GMock doesn't like move-only types, like std::unique_ptr. virtual void SetEncoder(int payload_type, std::unique_ptr<AudioEncoder> encoder) { return SetEncoderForMock(payload_type, &encoder); } MOCK_METHOD2(SetEncoderForMock, void(int payload_type, std::unique_ptr<AudioEncoder>* encoder)); MOCK_METHOD1( ModifyEncoder, void(rtc::FunctionView<void(std::unique_ptr<AudioEncoder>*)> modifier)); MOCK_METHOD1(CallEncoder, void(rtc::FunctionView<void(AudioEncoder*)> modifier)); MOCK_METHOD3(SetRid, void(const std::string& rid, int extension_id, int repaired_extension_id)); MOCK_METHOD2(SetMid, void(const std::string& mid, int extension_id)); MOCK_METHOD1(SetRTCP_CNAME, void(absl::string_view c_name)); MOCK_METHOD1(SetExtmapAllowMixed, void(bool extmap_allow_mixed)); MOCK_METHOD2(SetSendAudioLevelIndicationStatus, void(bool enable, int id)); MOCK_METHOD1(EnableSendTransportSequenceNumber, void(int id)); MOCK_METHOD2(RegisterSenderCongestionControlObjects, void(RtpTransportControllerSendInterface* transport, RtcpBandwidthObserver* bandwidth_observer)); MOCK_METHOD0(ResetSenderCongestionControlObjects, void()); MOCK_CONST_METHOD0(GetRTCPStatistics, CallSendStatistics()); MOCK_CONST_METHOD0(GetRemoteRTCPReportBlocks, std::vector<ReportBlock>()); MOCK_CONST_METHOD0(GetANAStatistics, ANAStats()); MOCK_METHOD2(RegisterCngPayloadType, void(int payload_type, int payload_frequency)); MOCK_METHOD2(SetSendTelephoneEventPayloadType, void(int payload_type, int payload_frequency)); MOCK_METHOD2(SendTelephoneEventOutband, bool(int event, int duration_ms)); MOCK_METHOD1(OnBitrateAllocation, void(BitrateAllocationUpdate update)); MOCK_METHOD1(SetInputMute, void(bool muted)); MOCK_METHOD2(ReceivedRTCPPacket, void(const uint8_t* packet, size_t length)); // GMock doesn't like move-only types, like std::unique_ptr. virtual void ProcessAndEncodeAudio(std::unique_ptr<AudioFrame> audio_frame) { ProcessAndEncodeAudioForMock(&audio_frame); } MOCK_METHOD1(ProcessAndEncodeAudioForMock, void(std::unique_ptr<AudioFrame>* audio_frame)); MOCK_METHOD1(SetTransportOverhead, void(size_t transport_overhead_per_packet)); MOCK_CONST_METHOD0(GetRtpRtcp, RtpRtcp*()); MOCK_CONST_METHOD0(GetBitrate, int()); MOCK_METHOD1(OnTwccBasedUplinkPacketLossRate, void(float packet_loss_rate)); MOCK_METHOD1(OnRecoverableUplinkPacketLossRate, void(float recoverable_packet_loss_rate)); MOCK_CONST_METHOD0(GetRTT, int64_t()); MOCK_METHOD0(StartSend, void()); MOCK_METHOD0(StopSend, void()); MOCK_METHOD1( SetFrameEncryptor, void(rtc::scoped_refptr<FrameEncryptorInterface> frame_encryptor)); }; } // namespace test } // namespace webrtc #endif // AUDIO_MOCK_VOE_CHANNEL_PROXY_H_
[ "adwpc@hotmail.com" ]
adwpc@hotmail.com
3c15396ae05540539a7ae7a06021cad222023e57
d4b850d897254b18c72ff59fdeef194ea07752dd
/libs/obs/src/carmen_log_tools.cpp
fcf7fe19efd6f79fc0fcfea53eb1f42efe744429
[ "BSD-3-Clause" ]
permissive
flamato/mrpt
51e37c5164e6970d245c18ab54af47b91aea0a74
14a9dc16579c807172221b2915e84137a0a2ba50
refs/heads/master
2023-03-04T14:50:38.956806
2021-01-02T06:23:37
2021-01-02T06:23:37
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,930
cpp
/* +------------------------------------------------------------------------+ | Mobile Robot Programming Toolkit (MRPT) | | https://www.mrpt.org/ | | | | Copyright (c) 2005-2021, Individual contributors, see AUTHORS file | | See: https://www.mrpt.org/Authors - All rights reserved. | | Released under BSD License. See: https://www.mrpt.org/License | +------------------------------------------------------------------------+ */ #include "obs-precomp.h" // Precompiled headers #include <mrpt/containers/yaml.h> #include <mrpt/math/TPose2D.h> #include <mrpt/obs/CObservation2DRangeScan.h> #include <mrpt/obs/CObservationOdometry.h> #include <mrpt/obs/carmen_log_tools.h> #include <mrpt/system/string_utils.h> using namespace mrpt; using namespace mrpt::obs; using namespace mrpt::poses; using namespace mrpt::system; using namespace std; // Read the declaration in the .h file for documentation. bool mrpt::obs::carmen_log_parse_line( std::istream& in_stream, std::vector<mrpt::obs::CObservation::Ptr>& out_observations, const mrpt::system::TTimeStamp& time_start_log) { /** global parameters loaded in previous calls. */ static mrpt::containers::yaml global_log_params; out_observations.clear(); // empty output container // Try to get line: string line; while (line.empty()) { if (!in_stream) return false; // End of file std::getline(in_stream, line); line = trim(line); }; // Now we have a line: analyze it: if (strStartsI(line, "ROBOTLASER")) { // ROBOTLASER message // --------------------------- std::istringstream S; // Read from the string as if it was a stream S.str(line); CObservation2DRangeScan::Ptr obsLaser_ptr = std::make_shared<CObservation2DRangeScan>(); CObservation2DRangeScan* obsLaser = obsLaser_ptr.get(); // Faster access // Parse: int laser_type; // SICK_LMS = 0, SICK_PLS = 1, HOKUYO_URG = 2, // SIMULATED_LASER = 3, double start_angle, angular_resolution, accuracy; int remission_mode; // OFF = 0, DIRECT = 1, NORMALIZED = 2 if (!(S >> obsLaser->sensorLabel >> laser_type >> start_angle >> obsLaser->aperture >> angular_resolution >> obsLaser->maxRange >> accuracy >> remission_mode)) THROW_EXCEPTION_FMT( "Error parsing line from CARMEN log (params):\n'%s'\n", line.c_str()); size_t nRanges; S >> nRanges; obsLaser->resizeScan(nRanges); for (size_t i = 0; i < nRanges; i++) { float range; if (!(S >> range)) THROW_EXCEPTION_FMT( "Error parsing line from CARMEN log (ranges):\n'%s'\n", line.c_str()); obsLaser->setScanRange(i, range); // Valid value? obsLaser->setScanRangeValidity( i, (range >= obsLaser->maxRange || range <= 0)); } size_t remmision_count; if (!(S >> remmision_count)) THROW_EXCEPTION_FMT( "Error parsing line from CARMEN log (remmision_count):\n'%s'\n", line.c_str()); vector<double> remission; remission.resize(remmision_count); for (size_t i = 0; i < remmision_count; i++) { if (!(S >> remission[i])) THROW_EXCEPTION_FMT( "Error parsing line from CARMEN log (remmision " "vals):\n'%s'\n", line.c_str()); } mrpt::math::TPose2D globalLaserPose; mrpt::math::TPose2D globalRobotPose; if (!(S >> globalLaserPose.x >> globalLaserPose.y >> globalLaserPose.phi >> globalRobotPose.x >> globalRobotPose.y >> globalRobotPose.phi)) THROW_EXCEPTION_FMT( "Error parsing line from CARMEN log (poses):\n'%s'\n", line.c_str()); // Compute pose of laser on the robot: obsLaser->sensorPose = CPose3D(CPose2D(globalLaserPose) - CPose2D(globalRobotPose)); double tv, rv, fw_dist, side_dist, turn_axis; S >> tv >> rv >> fw_dist >> side_dist >> turn_axis; double timestamp; string robotName; S >> timestamp >> robotName; const mrpt::system::TTimeStamp obs_time = time_start_log + std::chrono::microseconds(static_cast<uint64_t>(1e-6 * timestamp)); obsLaser->timestamp = obs_time; // Create odometry observation: { CObservationOdometry::Ptr obsOdo_ptr = std::make_shared<CObservationOdometry>(); obsOdo_ptr->timestamp = obs_time; obsOdo_ptr->odometry = CPose2D(globalRobotPose); obsOdo_ptr->sensorLabel = "ODOMETRY"; out_observations.push_back(obsOdo_ptr); } // Send out laser observation: out_observations.push_back(obsLaser_ptr); } // end ROBOTLASER else if (strStartsI(line, "FLASER") || strStartsI(line, "RLASER")) { // [F,R]LASER message // FLASER num_readings [range_readings] x y theta odom_x odom_y // odom_theta // --------------------------- std::istringstream S; // Read from the string as if it was a stream S.str(line); CObservation2DRangeScan::Ptr obsLaser_ptr = std::make_shared<CObservation2DRangeScan>(); CObservation2DRangeScan* obsLaser = obsLaser_ptr.get(); // Faster access // Parse: size_t nRanges; if (!(S >> obsLaser->sensorLabel >> nRanges)) THROW_EXCEPTION_FMT( "Error parsing line from CARMEN log (params):\n'%s'\n", line.c_str()); // Params: { double maxRange = 81.0; double resolutionDeg = 0.5; using namespace std::string_literals; if (line[0] == 'F') { // front: maxRange = global_log_params.getOrDefault<double>( "robot_front_laser_max", 81.0); resolutionDeg = global_log_params.getOrDefault<double>( "laser_front_laser_resolution", 0.5); } else if (line[0] == 'R') { // rear: maxRange = global_log_params.getOrDefault<double>( "robot_rear_laser_max", 81.0); resolutionDeg = global_log_params.getOrDefault<double>( "laser_rear_laser_resolution", 0.5); } obsLaser->maxRange = d2f(maxRange); obsLaser->aperture = d2f(DEG2RAD(resolutionDeg) * nRanges); } obsLaser->resizeScan(nRanges); for (size_t i = 0; i < nRanges; i++) { float range; if (!(S >> range)) THROW_EXCEPTION_FMT( "Error parsing line from CARMEN log (ranges):\n'%s'\n", line.c_str()); obsLaser->setScanRange(i, range); // Valid value? obsLaser->setScanRangeValidity( i, (obsLaser->getScanRange(i) >= obsLaser->maxRange || obsLaser->getScanRange(i) <= 0)); } mrpt::math::TPose2D globalLaserPose; mrpt::math::TPose2D globalRobotPose; if (!(S >> globalLaserPose.x >> globalLaserPose.y >> globalLaserPose.phi >> globalRobotPose.x >> globalRobotPose.y >> globalRobotPose.phi)) THROW_EXCEPTION_FMT( "Error parsing line from CARMEN log (poses):\n'%s'\n", line.c_str()); // Compute pose of laser on the robot: obsLaser->sensorPose = CPose3D(CPose2D(globalLaserPose) - CPose2D(globalRobotPose)); double timestamp; string robotName; S >> timestamp >> robotName; const mrpt::system::TTimeStamp obs_time = time_start_log + std::chrono::microseconds(static_cast<uint64_t>(1e-6 * timestamp)); obsLaser->timestamp = obs_time; // Create odometry observation: { CObservationOdometry::Ptr obsOdo_ptr = std::make_shared<CObservationOdometry>(); obsOdo_ptr->timestamp = obs_time; obsOdo_ptr->odometry = CPose2D(globalRobotPose); obsOdo_ptr->sensorLabel = "ODOMETRY"; out_observations.push_back(obsOdo_ptr); } // Send out laser observation: out_observations.push_back(obsLaser_ptr); } // end RAWLASER else if (strStartsI(line, "PARAM ")) { // PARAM message // --------------------------- std::istringstream S; // Read from the string as if it was a stream S.str(line); string key, val; S >> key; // This is "PARAM" if (!(S >> key >> val)) THROW_EXCEPTION_FMT( "Error parsing line from CARMEN log (PARAM):\n'%s'\n", line.c_str()); if (!key.empty() && !val.empty()) global_log_params[lowerCase(key)] = val; } // end RAWLASER return true; // OK }
[ "joseluisblancoc@gmail.com" ]
joseluisblancoc@gmail.com
2b0d87e1d95f48853274688f1b2aa163c1259b66
948f4e13af6b3014582909cc6d762606f2a43365
/testcases/juliet_test_suite/testcases/CWE415_Double_Free/s02/CWE415_Double_Free__new_delete_array_wchar_t_15.cpp
61b3279fc5e544d76168dde8b3208f31be1af342
[]
no_license
junxzm1990/ASAN--
0056a341b8537142e10373c8417f27d7825ad89b
ca96e46422407a55bed4aa551a6ad28ec1eeef4e
refs/heads/master
2022-08-02T15:38:56.286555
2022-06-16T22:19:54
2022-06-16T22:19:54
408,238,453
74
13
null
2022-06-16T22:19:55
2021-09-19T21:14:59
null
UTF-8
C++
false
false
5,908
cpp
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE415_Double_Free__new_delete_array_wchar_t_15.cpp Label Definition File: CWE415_Double_Free__new_delete_array.label.xml Template File: sources-sinks-15.tmpl.cpp */ /* * @description * CWE: 415 Double Free * BadSource: Allocate data using new and Deallocae data using delete * GoodSource: Allocate data using new * Sinks: * GoodSink: do nothing * BadSink : Deallocate data using delete * Flow Variant: 15 Control flow: switch(6) and switch(7) * */ #include "std_testcase.h" #include <wchar.h> namespace CWE415_Double_Free__new_delete_array_wchar_t_15 { #ifndef OMITBAD void bad() { wchar_t * data; /* Initialize data */ data = NULL; switch(6) { case 6: data = new wchar_t[100]; /* POTENTIAL FLAW: delete the array data in the source - the bad sink deletes the array data as well */ delete [] data; break; default: /* INCIDENTAL: CWE 561 Dead Code, the code below will never run */ printLine("Benign, fixed string"); break; } switch(7) { case 7: /* POTENTIAL FLAW: Possibly deleting memory twice */ delete [] data; break; default: /* INCIDENTAL: CWE 561 Dead Code, the code below will never run */ printLine("Benign, fixed string"); break; } } #endif /* OMITBAD */ #ifndef OMITGOOD /* goodB2G1() - use badsource and goodsink by changing the second switch to switch(8) */ static void goodB2G1() { wchar_t * data; /* Initialize data */ data = NULL; switch(6) { case 6: data = new wchar_t[100]; /* POTENTIAL FLAW: delete the array data in the source - the bad sink deletes the array data as well */ delete [] data; break; default: /* INCIDENTAL: CWE 561 Dead Code, the code below will never run */ printLine("Benign, fixed string"); break; } switch(8) { case 7: /* INCIDENTAL: CWE 561 Dead Code, the code below will never run */ printLine("Benign, fixed string"); break; default: /* do nothing */ /* FIX: Don't attempt to delete the memory */ ; /* empty statement needed for some flow variants */ break; } } /* goodB2G2() - use badsource and goodsink by reversing the blocks in the second switch */ static void goodB2G2() { wchar_t * data; /* Initialize data */ data = NULL; switch(6) { case 6: data = new wchar_t[100]; /* POTENTIAL FLAW: delete the array data in the source - the bad sink deletes the array data as well */ delete [] data; break; default: /* INCIDENTAL: CWE 561 Dead Code, the code below will never run */ printLine("Benign, fixed string"); break; } switch(7) { case 7: /* do nothing */ /* FIX: Don't attempt to delete the memory */ ; /* empty statement needed for some flow variants */ break; default: /* INCIDENTAL: CWE 561 Dead Code, the code below will never run */ printLine("Benign, fixed string"); break; } } /* goodG2B1() - use goodsource and badsink by changing the first switch to switch(5) */ static void goodG2B1() { wchar_t * data; /* Initialize data */ data = NULL; switch(5) { case 6: /* INCIDENTAL: CWE 561 Dead Code, the code below will never run */ printLine("Benign, fixed string"); break; default: data = new wchar_t[100]; /* FIX: Do NOT delete the array data in the source - the bad sink deletes the array data */ break; } switch(7) { case 7: /* POTENTIAL FLAW: Possibly deleting memory twice */ delete [] data; break; default: /* INCIDENTAL: CWE 561 Dead Code, the code below will never run */ printLine("Benign, fixed string"); break; } } /* goodG2B2() - use goodsource and badsink by reversing the blocks in the first switch */ static void goodG2B2() { wchar_t * data; /* Initialize data */ data = NULL; switch(6) { case 6: data = new wchar_t[100]; /* FIX: Do NOT delete the array data in the source - the bad sink deletes the array data */ break; default: /* INCIDENTAL: CWE 561 Dead Code, the code below will never run */ printLine("Benign, fixed string"); break; } switch(7) { case 7: /* POTENTIAL FLAW: Possibly deleting memory twice */ delete [] data; break; default: /* INCIDENTAL: CWE 561 Dead Code, the code below will never run */ printLine("Benign, fixed string"); break; } } void good() { goodB2G1(); goodB2G2(); goodG2B1(); goodG2B2(); } #endif /* OMITGOOD */ } /* close namespace */ /* Below is the main(). It is only used when building this testcase on its own for testing or for building a binary to use in testing binary analysis tools. It is not used when compiling all the testcases as one application, which is how source code analysis tools are tested. */ #ifdef INCLUDEMAIN using namespace CWE415_Double_Free__new_delete_array_wchar_t_15; /* so that we can use good and bad easily */ int main(int argc, char * argv[]) { /* seed randomness */ srand( (unsigned)time(NULL) ); #ifndef OMITGOOD printLine("Calling good()..."); good(); printLine("Finished good()"); #endif /* OMITGOOD */ #ifndef OMITBAD printLine("Calling bad()..."); bad(); printLine("Finished bad()"); #endif /* OMITBAD */ return 0; } #endif
[ "yzhang0701@gmail.com" ]
yzhang0701@gmail.com
6a3448f4ed4336175553d498322ea4d4ac67e4c9
aaebbe73cc851ba9ed8a3493abedb739d122533a
/server/godssenki/scene/sc_cache_data.h
0fa1a8ec0a37c216e3da6049d2c6acebdc1c60bd
[]
no_license
coeux/lingyu-meisha-jp
7bc1309bf8304a294f9a42d23b985879a28afbc0
11972819254b8567cda33d17ffc40b384019a936
refs/heads/master
2021-01-21T13:48:12.593930
2017-02-14T06:46:02
2017-02-14T06:46:02
81,812,311
1
2
null
null
null
null
UTF-8
C++
false
false
503
h
#ifndef _sc_cache_data_h_ #define _sc_cache_data_h_ #include <boost/shared_ptr.hpp> #include <string> using namespace std; struct sc_baseinfo_t { string nickname; int32_t grade; int32_t fp; int32_t helphero; int32_t helpresid; int32_t frdcount; }; typedef boost::shared_ptr<sc_baseinfo_t> sp_baseinfo_t; struct sc_grade_user_data_t { int32_t uid; int32_t resid; string name; int32_t lv; int32_t fp; int32_t helphero; int32_t helpresid; }; #endif
[ "641311015@qq.com" ]
641311015@qq.com
d610451afbde024326abc7daedab017e9927f0b4
846a7668ac964632bdb6db639ab381be11c13b77
/android/hardware/qcom/wlan/qcwcn/wifi_hal/nan_req.cpp
ab94bfdbddf2b1dba3ebbda6b6260ada671d35cc
[]
no_license
BPI-SINOVOIP/BPI-A64-Android8
f2900965e96fd6f2a28ced68af668a858b15ebe1
744c72c133b9bf5d2e9efe0ab33e01e6e51d5743
refs/heads/master
2023-05-21T08:02:23.364495
2020-07-15T11:27:51
2020-07-15T11:27:51
143,945,191
2
0
null
null
null
null
UTF-8
C++
false
false
62,807
cpp
/* * Copyright (C) 2014 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include "sync.h" #include <utils/Log.h> #include "wifi_hal.h" #include "nan_i.h" #include "nancommand.h" int NanCommand::putNanEnable(transaction_id id, const NanEnableRequest *pReq) { ALOGV("NAN_ENABLE"); size_t message_len = NAN_MAX_ENABLE_REQ_SIZE; if (pReq == NULL) { cleanup(); return WIFI_ERROR_INVALID_ARGS; } message_len += \ ( pReq->config_support_5g ? (SIZEOF_TLV_HDR + \ sizeof(pReq->support_5g_val)) : 0 \ ) + \ ( pReq->config_sid_beacon ? (SIZEOF_TLV_HDR + \ sizeof(pReq->sid_beacon_val)) : 0 \ ) + \ ( pReq->config_2dot4g_rssi_close ? (SIZEOF_TLV_HDR + \ sizeof(pReq->rssi_close_2dot4g_val)) : 0 \ ) + \ ( pReq->config_2dot4g_rssi_middle ? (SIZEOF_TLV_HDR + \ sizeof(pReq->rssi_middle_2dot4g_val)) : 0 \ ) + \ ( pReq->config_hop_count_limit ? (SIZEOF_TLV_HDR + \ sizeof(pReq->hop_count_limit_val)) : 0 \ ) + \ ( pReq->config_2dot4g_support ? (SIZEOF_TLV_HDR + \ sizeof(pReq->support_2dot4g_val)) : 0 \ ) + \ ( pReq->config_2dot4g_beacons ? (SIZEOF_TLV_HDR + \ sizeof(pReq->beacon_2dot4g_val)) : 0 \ ) + \ ( pReq->config_2dot4g_sdf ? (SIZEOF_TLV_HDR + \ sizeof(pReq->sdf_2dot4g_val)) : 0 \ ) + \ ( pReq->config_5g_beacons ? (SIZEOF_TLV_HDR + \ sizeof(pReq->beacon_5g_val)) : 0 \ ) + \ ( pReq->config_5g_sdf ? (SIZEOF_TLV_HDR + \ sizeof(pReq->sdf_5g_val)) : 0 \ ) + \ ( pReq->config_5g_rssi_close ? (SIZEOF_TLV_HDR + \ sizeof(pReq->rssi_close_5g_val)) : 0 \ ) + \ ( pReq->config_5g_rssi_middle ? (SIZEOF_TLV_HDR + \ sizeof(pReq->rssi_middle_5g_val)) : 0 \ ) + \ ( pReq->config_2dot4g_rssi_proximity ? (SIZEOF_TLV_HDR + \ sizeof(pReq->rssi_proximity_2dot4g_val)) : 0 \ ) + \ ( pReq->config_5g_rssi_close_proximity ? (SIZEOF_TLV_HDR + \ sizeof(pReq->rssi_close_proximity_5g_val)) : 0 \ ) + \ ( pReq->config_rssi_window_size ? (SIZEOF_TLV_HDR + \ sizeof(pReq->rssi_window_size_val)) : 0 \ ) + \ ( pReq->config_oui ? (SIZEOF_TLV_HDR + \ sizeof(pReq->oui_val)) : 0 \ ) + \ ( pReq->config_intf_addr ? (SIZEOF_TLV_HDR + \ sizeof(pReq->intf_addr_val)) : 0 \ ) + \ ( pReq->config_cluster_attribute_val ? (SIZEOF_TLV_HDR + \ sizeof(pReq->config_cluster_attribute_val)) : 0 \ ) + \ ( pReq->config_scan_params ? NAN_MAX_SOCIAL_CHANNELS * (SIZEOF_TLV_HDR + sizeof(u32)) : 0 \ ) + \ ( pReq->config_random_factor_force ? (SIZEOF_TLV_HDR + \ sizeof(pReq->random_factor_force_val)) : 0 \ ) + \ ( pReq->config_hop_count_force ? (SIZEOF_TLV_HDR + \ sizeof(pReq->hop_count_force_val)) : 0 \ ) + \ ( pReq->config_24g_channel ? (SIZEOF_TLV_HDR + \ sizeof(u32)) : 0 \ ) + \ ( pReq->config_5g_channel ? (SIZEOF_TLV_HDR + \ sizeof(u32)) : 0 \ ) + \ ( pReq->config_dw.config_2dot4g_dw_band ? (SIZEOF_TLV_HDR + \ sizeof(u32)) : 0 \ ) + \ ( pReq->config_dw.config_5g_dw_band ? (SIZEOF_TLV_HDR + \ sizeof(u32)) : 0 \ ) + \ ( pReq->config_disc_mac_addr_randomization ? (SIZEOF_TLV_HDR + \ sizeof(u32)) : 0 \ ) + \ ( /* Always include cfg discovery indication TLV */ SIZEOF_TLV_HDR + sizeof(u32) \ ) + \ ( pReq->config_subscribe_sid_beacon ? (SIZEOF_TLV_HDR + \ sizeof(pReq->subscribe_sid_beacon_val)) : 0 \ ) ; pNanEnableReqMsg pFwReq = (pNanEnableReqMsg)malloc(message_len); if (pFwReq == NULL) { cleanup(); return WIFI_ERROR_OUT_OF_MEMORY; } ALOGV("Message Len %zu", message_len); memset (pFwReq, 0, message_len); pFwReq->fwHeader.msgVersion = (u16)NAN_MSG_VERSION1; pFwReq->fwHeader.msgId = NAN_MSG_ID_ENABLE_REQ; pFwReq->fwHeader.msgLen = message_len; pFwReq->fwHeader.transactionId = id; u8* tlvs = pFwReq->ptlv; /* Write the TLVs to the message. */ tlvs = addTlv(NAN_TLV_TYPE_CLUSTER_ID_LOW, sizeof(pReq->cluster_low), (const u8*)&pReq->cluster_low, tlvs); tlvs = addTlv(NAN_TLV_TYPE_CLUSTER_ID_HIGH, sizeof(pReq->cluster_high), (const u8*)&pReq->cluster_high, tlvs); tlvs = addTlv(NAN_TLV_TYPE_MASTER_PREFERENCE, sizeof(pReq->master_pref), (const u8*)&pReq->master_pref, tlvs); if (pReq->config_support_5g) { tlvs = addTlv(NAN_TLV_TYPE_5G_SUPPORT, sizeof(pReq->support_5g_val), (const u8*)&pReq->support_5g_val, tlvs); } if (pReq->config_sid_beacon) { tlvs = addTlv(NAN_TLV_TYPE_SID_BEACON, sizeof(pReq->sid_beacon_val), (const u8*)&pReq->sid_beacon_val, tlvs); } if (pReq->config_2dot4g_rssi_close) { tlvs = addTlv(NAN_TLV_TYPE_24G_RSSI_CLOSE, sizeof(pReq->rssi_close_2dot4g_val), (const u8*)&pReq->rssi_close_2dot4g_val, tlvs); } if (pReq->config_2dot4g_rssi_middle) { tlvs = addTlv(NAN_TLV_TYPE_24G_RSSI_MIDDLE, sizeof(pReq->rssi_middle_2dot4g_val), (const u8*)&pReq->rssi_middle_2dot4g_val, tlvs); } if (pReq->config_hop_count_limit) { tlvs = addTlv(NAN_TLV_TYPE_HOP_COUNT_LIMIT, sizeof(pReq->hop_count_limit_val), (const u8*)&pReq->hop_count_limit_val, tlvs); } if (pReq->config_2dot4g_support) { tlvs = addTlv(NAN_TLV_TYPE_24G_SUPPORT, sizeof(pReq->support_2dot4g_val), (const u8*)&pReq->support_2dot4g_val, tlvs); } if (pReq->config_2dot4g_beacons) { tlvs = addTlv(NAN_TLV_TYPE_24G_BEACON, sizeof(pReq->beacon_2dot4g_val), (const u8*)&pReq->beacon_2dot4g_val, tlvs); } if (pReq->config_2dot4g_sdf) { tlvs = addTlv(NAN_TLV_TYPE_24G_SDF, sizeof(pReq->sdf_2dot4g_val), (const u8*)&pReq->sdf_2dot4g_val, tlvs); } if (pReq->config_5g_beacons) { tlvs = addTlv(NAN_TLV_TYPE_5G_BEACON, sizeof(pReq->beacon_5g_val), (const u8*)&pReq->beacon_5g_val, tlvs); } if (pReq->config_5g_sdf) { tlvs = addTlv(NAN_TLV_TYPE_5G_SDF, sizeof(pReq->sdf_5g_val), (const u8*)&pReq->sdf_5g_val, tlvs); } if (pReq->config_2dot4g_rssi_proximity) { tlvs = addTlv(NAN_TLV_TYPE_24G_RSSI_CLOSE_PROXIMITY, sizeof(pReq->rssi_proximity_2dot4g_val), (const u8*)&pReq->rssi_proximity_2dot4g_val, tlvs); } /* Add the support of sending 5G RSSI values */ if (pReq->config_5g_rssi_close) { tlvs = addTlv(NAN_TLV_TYPE_5G_RSSI_CLOSE, sizeof(pReq->rssi_close_5g_val), (const u8*)&pReq->rssi_close_5g_val, tlvs); } if (pReq->config_5g_rssi_middle) { tlvs = addTlv(NAN_TLV_TYPE_5G_RSSI_MIDDLE, sizeof(pReq->rssi_middle_5g_val), (const u8*)&pReq->rssi_middle_5g_val, tlvs); } if (pReq->config_5g_rssi_close_proximity) { tlvs = addTlv(NAN_TLV_TYPE_5G_RSSI_CLOSE_PROXIMITY, sizeof(pReq->rssi_close_proximity_5g_val), (const u8*)&pReq->rssi_close_proximity_5g_val, tlvs); } if (pReq->config_rssi_window_size) { tlvs = addTlv(NAN_TLV_TYPE_RSSI_AVERAGING_WINDOW_SIZE, sizeof(pReq->rssi_window_size_val), (const u8*)&pReq->rssi_window_size_val, tlvs); } if (pReq->config_oui) { tlvs = addTlv(NAN_TLV_TYPE_CLUSTER_OUI_NETWORK_ID, sizeof(pReq->oui_val), (const u8*)&pReq->oui_val, tlvs); } if (pReq->config_intf_addr) { tlvs = addTlv(NAN_TLV_TYPE_SOURCE_MAC_ADDRESS, sizeof(pReq->intf_addr_val), (const u8*)&pReq->intf_addr_val[0], tlvs); } if (pReq->config_cluster_attribute_val) { tlvs = addTlv(NAN_TLV_TYPE_CLUSTER_ATTRIBUTE_IN_SDF, sizeof(pReq->config_cluster_attribute_val), (const u8*)&pReq->config_cluster_attribute_val, tlvs); } if (pReq->config_scan_params) { u32 socialChannelParamVal[NAN_MAX_SOCIAL_CHANNELS]; /* Fill the social channel param */ fillNanSocialChannelParamVal(&pReq->scan_params_val, socialChannelParamVal); int i; for (i = 0; i < NAN_MAX_SOCIAL_CHANNELS; i++) { tlvs = addTlv(NAN_TLV_TYPE_SOCIAL_CHANNEL_SCAN_PARAMS, sizeof(socialChannelParamVal[i]), (const u8*)&socialChannelParamVal[i], tlvs); } } if (pReq->config_random_factor_force) { tlvs = addTlv(NAN_TLV_TYPE_RANDOM_FACTOR_FORCE, sizeof(pReq->random_factor_force_val), (const u8*)&pReq->random_factor_force_val, tlvs); } if (pReq->config_hop_count_force) { tlvs = addTlv(NAN_TLV_TYPE_HOP_COUNT_FORCE, sizeof(pReq->hop_count_force_val), (const u8*)&pReq->hop_count_force_val, tlvs); } if (pReq->config_24g_channel) { tlvs = addTlv(NAN_TLV_TYPE_24G_CHANNEL, sizeof(u32), (const u8*)&pReq->channel_24g_val, tlvs); } if (pReq->config_5g_channel) { tlvs = addTlv(NAN_TLV_TYPE_5G_CHANNEL, sizeof(u32), (const u8*)&pReq->channel_5g_val, tlvs); } if (pReq->config_dw.config_2dot4g_dw_band) { tlvs = addTlv(NAN_TLV_TYPE_2G_COMMITTED_DW, sizeof(pReq->config_dw.dw_2dot4g_interval_val), (const u8*)&pReq->config_dw.dw_2dot4g_interval_val, tlvs); } if (pReq->config_dw.config_5g_dw_band) { tlvs = addTlv(NAN_TLV_TYPE_5G_COMMITTED_DW, sizeof(pReq->config_dw.dw_5g_interval_val), (const u8*)&pReq->config_dw.dw_5g_interval_val, tlvs); } if (pReq->config_disc_mac_addr_randomization) { tlvs = addTlv(NAN_TLV_TYPE_DISC_MAC_ADDR_RANDOM_INTERVAL, sizeof(u32), (const u8*)&pReq->disc_mac_addr_rand_interval_sec, tlvs); } u32 config_discovery_indications; config_discovery_indications = (u32)pReq->discovery_indication_cfg; tlvs = addTlv(NAN_TLV_TYPE_CONFIG_DISCOVERY_INDICATIONS, sizeof(u32), (const u8*)&config_discovery_indications, tlvs); if (pReq->config_subscribe_sid_beacon) { tlvs = addTlv(NAN_TLV_TYPE_SUBSCRIBE_SID_BEACON, sizeof(pReq->subscribe_sid_beacon_val), (const u8*)&pReq->subscribe_sid_beacon_val, tlvs); } mVendorData = (char*)pFwReq; mDataLen = message_len; //Insert the vendor specific data int ret = mMsg.put_bytes(NL80211_ATTR_VENDOR_DATA, mVendorData, mDataLen); if (ret < 0) { ALOGE("%s: put_bytes Error:%d",__func__, ret); cleanup(); return ret; } hexdump(mVendorData, mDataLen); return ret; } int NanCommand::putNanDisable(transaction_id id) { ALOGV("NAN_DISABLE"); size_t message_len = sizeof(NanDisableReqMsg); pNanDisableReqMsg pFwReq = (pNanDisableReqMsg)malloc(message_len); if (pFwReq == NULL) { cleanup(); return WIFI_ERROR_OUT_OF_MEMORY; } ALOGV("Message Len %zu", message_len); memset (pFwReq, 0, message_len); pFwReq->fwHeader.msgVersion = (u16)NAN_MSG_VERSION1; pFwReq->fwHeader.msgId = NAN_MSG_ID_DISABLE_REQ; pFwReq->fwHeader.msgLen = message_len; pFwReq->fwHeader.transactionId = id; mVendorData = (char*)pFwReq; mDataLen = message_len; int ret = mMsg.put_bytes(NL80211_ATTR_VENDOR_DATA, mVendorData, mDataLen); if (ret < 0) { ALOGE("%s: put_bytes Error:%d",__func__, ret); cleanup(); return ret; } hexdump(mVendorData, mDataLen); return ret; } int NanCommand::putNanConfig(transaction_id id, const NanConfigRequest *pReq) { ALOGV("NAN_CONFIG"); size_t message_len = 0; int idx = 0; if (pReq == NULL || pReq->num_config_discovery_attr > NAN_MAX_POSTDISCOVERY_LEN) { cleanup(); return WIFI_ERROR_INVALID_ARGS; } message_len = sizeof(NanMsgHeader); message_len += \ ( pReq->config_sid_beacon ? (SIZEOF_TLV_HDR + \ sizeof(pReq->sid_beacon)) : 0 \ ) + \ ( pReq->config_master_pref ? (SIZEOF_TLV_HDR + \ sizeof(pReq->master_pref)) : 0 \ ) + \ ( pReq->config_rssi_proximity ? (SIZEOF_TLV_HDR + \ sizeof(pReq->rssi_proximity)) : 0 \ ) + \ ( pReq->config_5g_rssi_close_proximity ? (SIZEOF_TLV_HDR + \ sizeof(pReq->rssi_close_proximity_5g_val)) : 0 \ ) + \ ( pReq->config_rssi_window_size ? (SIZEOF_TLV_HDR + \ sizeof(pReq->rssi_window_size_val)) : 0 \ ) + \ ( pReq->config_cluster_attribute_val ? (SIZEOF_TLV_HDR + \ sizeof(pReq->config_cluster_attribute_val)) : 0 \ ) + \ ( pReq->config_scan_params ? NAN_MAX_SOCIAL_CHANNELS * (SIZEOF_TLV_HDR + sizeof(u32)) : 0 \ ) + \ ( pReq->config_random_factor_force ? (SIZEOF_TLV_HDR + \ sizeof(pReq->random_factor_force_val)) : 0 \ ) + \ ( pReq->config_hop_count_force ? (SIZEOF_TLV_HDR + \ sizeof(pReq->hop_count_force_val)) : 0 \ ) + \ ( pReq->config_conn_capability ? (SIZEOF_TLV_HDR + \ sizeof(u32)) : 0 \ ) + \ ( pReq->config_dw.config_2dot4g_dw_band ? (SIZEOF_TLV_HDR + \ sizeof(u32)) : 0 \ ) + \ ( pReq->config_dw.config_5g_dw_band ? (SIZEOF_TLV_HDR + \ sizeof(u32)) : 0 \ ) + \ ( pReq->config_disc_mac_addr_randomization ? (SIZEOF_TLV_HDR + \ sizeof(u32)) : 0 \ ) + \ ( pReq->config_subscribe_sid_beacon ? (SIZEOF_TLV_HDR + \ sizeof(pReq->subscribe_sid_beacon_val)) : 0 \ ) + \ ( /* Always include cfg discovery indication TLV */ SIZEOF_TLV_HDR + sizeof(u32) \ ); if (pReq->num_config_discovery_attr) { for (idx = 0; idx < pReq->num_config_discovery_attr; idx ++) { message_len += SIZEOF_TLV_HDR +\ calcNanTransmitPostDiscoverySize(&pReq->discovery_attr_val[idx]); } } if (pReq->config_fam && \ calcNanFurtherAvailabilityMapSize(&pReq->fam_val)) { message_len += (SIZEOF_TLV_HDR + \ calcNanFurtherAvailabilityMapSize(&pReq->fam_val)); } pNanConfigurationReqMsg pFwReq = (pNanConfigurationReqMsg)malloc(message_len); if (pFwReq == NULL) { cleanup(); return WIFI_ERROR_OUT_OF_MEMORY; } ALOGV("Message Len %zu", message_len); memset (pFwReq, 0, message_len); pFwReq->fwHeader.msgVersion = (u16)NAN_MSG_VERSION1; pFwReq->fwHeader.msgId = NAN_MSG_ID_CONFIGURATION_REQ; pFwReq->fwHeader.msgLen = message_len; pFwReq->fwHeader.transactionId = id; u8* tlvs = pFwReq->ptlv; if (pReq->config_sid_beacon) { tlvs = addTlv(NAN_TLV_TYPE_SID_BEACON, sizeof(pReq->sid_beacon), (const u8*)&pReq->sid_beacon, tlvs); } if (pReq->config_master_pref) { tlvs = addTlv(NAN_TLV_TYPE_MASTER_PREFERENCE, sizeof(pReq->master_pref), (const u8*)&pReq->master_pref, tlvs); } if (pReq->config_rssi_window_size) { tlvs = addTlv(NAN_TLV_TYPE_RSSI_AVERAGING_WINDOW_SIZE, sizeof(pReq->rssi_window_size_val), (const u8*)&pReq->rssi_window_size_val, tlvs); } if (pReq->config_rssi_proximity) { tlvs = addTlv(NAN_TLV_TYPE_24G_RSSI_CLOSE_PROXIMITY, sizeof(pReq->rssi_proximity), (const u8*)&pReq->rssi_proximity, tlvs); } if (pReq->config_5g_rssi_close_proximity) { tlvs = addTlv(NAN_TLV_TYPE_5G_RSSI_CLOSE_PROXIMITY, sizeof(pReq->rssi_close_proximity_5g_val), (const u8*)&pReq->rssi_close_proximity_5g_val, tlvs); } if (pReq->config_cluster_attribute_val) { tlvs = addTlv(NAN_TLV_TYPE_CLUSTER_ATTRIBUTE_IN_SDF, sizeof(pReq->config_cluster_attribute_val), (const u8*)&pReq->config_cluster_attribute_val, tlvs); } if (pReq->config_scan_params) { u32 socialChannelParamVal[NAN_MAX_SOCIAL_CHANNELS]; /* Fill the social channel param */ fillNanSocialChannelParamVal(&pReq->scan_params_val, socialChannelParamVal); int i; for (i = 0; i < NAN_MAX_SOCIAL_CHANNELS; i++) { tlvs = addTlv(NAN_TLV_TYPE_SOCIAL_CHANNEL_SCAN_PARAMS, sizeof(socialChannelParamVal[i]), (const u8*)&socialChannelParamVal[i], tlvs); } } if (pReq->config_random_factor_force) { tlvs = addTlv(NAN_TLV_TYPE_RANDOM_FACTOR_FORCE, sizeof(pReq->random_factor_force_val), (const u8*)&pReq->random_factor_force_val, tlvs); } if (pReq->config_hop_count_force) { tlvs = addTlv(NAN_TLV_TYPE_HOP_COUNT_FORCE, sizeof(pReq->hop_count_force_val), (const u8*)&pReq->hop_count_force_val, tlvs); } if (pReq->config_conn_capability) { u32 val = \ getNanTransmitPostConnectivityCapabilityVal(&pReq->conn_capability_val); tlvs = addTlv(NAN_TLV_TYPE_POST_NAN_CONNECTIVITY_CAPABILITIES_TRANSMIT, sizeof(val), (const u8*)&val, tlvs); } if (pReq->num_config_discovery_attr) { for (idx = 0; idx < pReq->num_config_discovery_attr; idx ++) { fillNanTransmitPostDiscoveryVal(&pReq->discovery_attr_val[idx], (u8*)(tlvs + SIZEOF_TLV_HDR)); tlvs = addTlv(NAN_TLV_TYPE_POST_NAN_DISCOVERY_ATTRIBUTE_TRANSMIT, calcNanTransmitPostDiscoverySize( &pReq->discovery_attr_val[idx]), (const u8*)(tlvs + SIZEOF_TLV_HDR), tlvs); } } if (pReq->config_fam && \ calcNanFurtherAvailabilityMapSize(&pReq->fam_val)) { fillNanFurtherAvailabilityMapVal(&pReq->fam_val, (u8*)(tlvs + SIZEOF_TLV_HDR)); tlvs = addTlv(NAN_TLV_TYPE_FURTHER_AVAILABILITY_MAP, calcNanFurtherAvailabilityMapSize(&pReq->fam_val), (const u8*)(tlvs + SIZEOF_TLV_HDR), tlvs); } if (pReq->config_dw.config_2dot4g_dw_band) { tlvs = addTlv(NAN_TLV_TYPE_2G_COMMITTED_DW, sizeof(pReq->config_dw.dw_2dot4g_interval_val), (const u8*)&pReq->config_dw.dw_2dot4g_interval_val, tlvs); } if (pReq->config_dw.config_5g_dw_band) { tlvs = addTlv(NAN_TLV_TYPE_5G_COMMITTED_DW, sizeof(pReq->config_dw.dw_5g_interval_val), (const u8*)&pReq->config_dw.dw_5g_interval_val, tlvs); } if (pReq->config_disc_mac_addr_randomization) { tlvs = addTlv(NAN_TLV_TYPE_DISC_MAC_ADDR_RANDOM_INTERVAL, sizeof(u32), (const u8*)&pReq->disc_mac_addr_rand_interval_sec, tlvs); } if (pReq->config_subscribe_sid_beacon) { tlvs = addTlv(NAN_TLV_TYPE_SUBSCRIBE_SID_BEACON, sizeof(pReq->subscribe_sid_beacon_val), (const u8*)&pReq->subscribe_sid_beacon_val, tlvs); } u32 config_discovery_indications; config_discovery_indications = (u32)(pReq->discovery_indication_cfg); /* Always include the discovery cfg TLV as there is no cfg flag */ tlvs = addTlv(NAN_TLV_TYPE_CONFIG_DISCOVERY_INDICATIONS, sizeof(u32), (const u8*)&config_discovery_indications, tlvs); mVendorData = (char*)pFwReq; mDataLen = message_len; int ret = mMsg.put_bytes(NL80211_ATTR_VENDOR_DATA, mVendorData, mDataLen); if (ret < 0) { ALOGE("%s: put_bytes Error:%d",__func__, ret); cleanup(); return ret; } hexdump(mVendorData, mDataLen); return ret; } int NanCommand::putNanPublish(transaction_id id, const NanPublishRequest *pReq) { ALOGV("NAN_PUBLISH"); if (pReq == NULL) { cleanup(); return WIFI_ERROR_INVALID_ARGS; } size_t message_len = sizeof(NanMsgHeader) + sizeof(NanPublishServiceReqParams) + (pReq->service_name_len ? SIZEOF_TLV_HDR + pReq->service_name_len : 0) + (pReq->service_specific_info_len ? SIZEOF_TLV_HDR + pReq->service_specific_info_len : 0) + (pReq->rx_match_filter_len ? SIZEOF_TLV_HDR + pReq->rx_match_filter_len : 0) + (pReq->tx_match_filter_len ? SIZEOF_TLV_HDR + pReq->tx_match_filter_len : 0) + (SIZEOF_TLV_HDR + sizeof(NanServiceAcceptPolicy)) + (pReq->cipher_type ? SIZEOF_TLV_HDR + sizeof(NanCsidType) : 0) + ((pReq->sdea_params.config_nan_data_path || pReq->sdea_params.security_cfg || pReq->sdea_params.ranging_state || pReq->sdea_params.range_report) ? SIZEOF_TLV_HDR + sizeof(NanFWSdeaCtrlParams) : 0) + ((pReq->ranging_cfg.ranging_interval_msec || pReq->ranging_cfg.config_ranging_indications || pReq->ranging_cfg.distance_ingress_cm || pReq->ranging_cfg.distance_egress_cm) ? SIZEOF_TLV_HDR + sizeof(NanFWRangeConfigParams) : 0) + ((pReq->range_response_cfg.publish_id || pReq->range_response_cfg.ranging_response) ? SIZEOF_TLV_HDR + sizeof(NanFWRangeReqMsg) : 0) + (pReq->sdea_service_specific_info_len ? SIZEOF_TLV_HDR + pReq->sdea_service_specific_info_len : 0); if ((pReq->key_info.key_type == NAN_SECURITY_KEY_INPUT_PMK) && (pReq->key_info.body.pmk_info.pmk_len == NAN_PMK_INFO_LEN)) message_len += SIZEOF_TLV_HDR + NAN_PMK_INFO_LEN; else if ((pReq->key_info.key_type == NAN_SECURITY_KEY_INPUT_PASSPHRASE) && (pReq->key_info.body.passphrase_info.passphrase_len >= NAN_SECURITY_MIN_PASSPHRASE_LEN) && (pReq->key_info.body.passphrase_info.passphrase_len <= NAN_SECURITY_MAX_PASSPHRASE_LEN)) message_len += SIZEOF_TLV_HDR + pReq->key_info.body.passphrase_info.passphrase_len; pNanPublishServiceReqMsg pFwReq = (pNanPublishServiceReqMsg)malloc(message_len); if (pFwReq == NULL) { cleanup(); return WIFI_ERROR_OUT_OF_MEMORY; } ALOGV("Message Len %zu", message_len); memset(pFwReq, 0, message_len); pFwReq->fwHeader.msgVersion = (u16)NAN_MSG_VERSION1; pFwReq->fwHeader.msgId = NAN_MSG_ID_PUBLISH_SERVICE_REQ; pFwReq->fwHeader.msgLen = message_len; if (pReq->publish_id == 0) { pFwReq->fwHeader.handle = 0xFFFF; } else { pFwReq->fwHeader.handle = pReq->publish_id; } pFwReq->fwHeader.transactionId = id; pFwReq->publishServiceReqParams.ttl = pReq->ttl; pFwReq->publishServiceReqParams.period = pReq->period; pFwReq->publishServiceReqParams.replyIndFlag = (pReq->recv_indication_cfg & BIT_3) ? 0 : 1; pFwReq->publishServiceReqParams.publishType = pReq->publish_type; pFwReq->publishServiceReqParams.txType = pReq->tx_type; pFwReq->publishServiceReqParams.rssiThresholdFlag = pReq->rssi_threshold_flag; pFwReq->publishServiceReqParams.matchAlg = pReq->publish_match_indicator; pFwReq->publishServiceReqParams.count = pReq->publish_count; pFwReq->publishServiceReqParams.connmap = pReq->connmap; pFwReq->publishServiceReqParams.pubTerminatedIndDisableFlag = (pReq->recv_indication_cfg & BIT_0) ? 1 : 0; pFwReq->publishServiceReqParams.pubMatchExpiredIndDisableFlag = (pReq->recv_indication_cfg & BIT_1) ? 1 : 0; pFwReq->publishServiceReqParams.followupRxIndDisableFlag = (pReq->recv_indication_cfg & BIT_2) ? 1 : 0; pFwReq->publishServiceReqParams.reserved2 = 0; u8* tlvs = pFwReq->ptlv; if (pReq->service_name_len) { tlvs = addTlv(NAN_TLV_TYPE_SERVICE_NAME, pReq->service_name_len, (const u8*)&pReq->service_name[0], tlvs); } if (pReq->service_specific_info_len) { tlvs = addTlv(NAN_TLV_TYPE_SERVICE_SPECIFIC_INFO, pReq->service_specific_info_len, (const u8*)&pReq->service_specific_info[0], tlvs); } if (pReq->rx_match_filter_len) { tlvs = addTlv(NAN_TLV_TYPE_RX_MATCH_FILTER, pReq->rx_match_filter_len, (const u8*)&pReq->rx_match_filter[0], tlvs); } if (pReq->tx_match_filter_len) { tlvs = addTlv(NAN_TLV_TYPE_TX_MATCH_FILTER, pReq->tx_match_filter_len, (const u8*)&pReq->tx_match_filter[0], tlvs); } /* Pass the Accept policy always */ tlvs = addTlv(NAN_TLV_TYPE_NAN_SERVICE_ACCEPT_POLICY, sizeof(NanServiceAcceptPolicy), (const u8*)&pReq->service_responder_policy, tlvs); if (pReq->cipher_type) { NanCsidType pNanCsidType; pNanCsidType.csid_type = pReq->cipher_type; tlvs = addTlv(NAN_TLV_TYPE_NAN_CSID, sizeof(NanCsidType), (const u8*)&pNanCsidType, tlvs); } if ((pReq->key_info.key_type == NAN_SECURITY_KEY_INPUT_PMK) && (pReq->key_info.body.pmk_info.pmk_len == NAN_PMK_INFO_LEN)) { tlvs = addTlv(NAN_TLV_TYPE_NAN_PMK, pReq->key_info.body.pmk_info.pmk_len, (const u8*)&pReq->key_info.body.pmk_info.pmk[0], tlvs); } else if ((pReq->key_info.key_type == NAN_SECURITY_KEY_INPUT_PASSPHRASE) && (pReq->key_info.body.passphrase_info.passphrase_len >= NAN_SECURITY_MIN_PASSPHRASE_LEN) && (pReq->key_info.body.passphrase_info.passphrase_len <= NAN_SECURITY_MAX_PASSPHRASE_LEN)) { tlvs = addTlv(NAN_TLV_TYPE_NAN_PASSPHRASE, pReq->key_info.body.passphrase_info.passphrase_len, (const u8*)&pReq->key_info.body.passphrase_info.passphrase[0], tlvs); } if (pReq->sdea_params.config_nan_data_path || pReq->sdea_params.security_cfg || pReq->sdea_params.ranging_state || pReq->sdea_params.range_report) { NanFWSdeaCtrlParams pNanFWSdeaCtrlParams; memset(&pNanFWSdeaCtrlParams, 0, sizeof(NanFWSdeaCtrlParams)); if (pReq->sdea_params.config_nan_data_path) { pNanFWSdeaCtrlParams.data_path_required = 1; pNanFWSdeaCtrlParams.data_path_type = (pReq->sdea_params.ndp_type & BIT_0) ? NAN_DATA_PATH_MULTICAST_MSG : NAN_DATA_PATH_UNICAST_MSG; } if (pReq->sdea_params.security_cfg) { pNanFWSdeaCtrlParams.security_required = pReq->sdea_params.security_cfg; } if (pReq->sdea_params.ranging_state) { pNanFWSdeaCtrlParams.ranging_required = pReq->sdea_params.ranging_state; } if (pReq->sdea_params.range_report) { pNanFWSdeaCtrlParams.range_report = (((pReq->sdea_params.range_report & NAN_ENABLE_RANGE_REPORT) >> 1) ? 1 : 0); } tlvs = addTlv(NAN_TLV_TYPE_SDEA_CTRL_PARAMS, sizeof(NanFWSdeaCtrlParams), (const u8*)&pNanFWSdeaCtrlParams, tlvs); } if (pReq->ranging_cfg.ranging_interval_msec || pReq->ranging_cfg.config_ranging_indications || pReq->ranging_cfg.distance_ingress_cm || pReq->ranging_cfg.distance_ingress_cm) { NanFWRangeConfigParams pNanFWRangingCfg; memset(&pNanFWRangingCfg, 0, sizeof(NanFWRangeConfigParams)); pNanFWRangingCfg.range_interval = pReq->ranging_cfg.ranging_interval_msec; pNanFWRangingCfg.ranging_indication_event = ((pReq->ranging_cfg.config_ranging_indications & NAN_RANGING_INDICATE_CONTINUOUS_MASK) | (pReq->ranging_cfg.config_ranging_indications & NAN_RANGING_INDICATE_INGRESS_MET_MASK) | (pReq->ranging_cfg.config_ranging_indications & NAN_RANGING_INDICATE_EGRESS_MET_MASK)); pNanFWRangingCfg.ranging_indication_event = pReq->ranging_cfg.config_ranging_indications; if (pReq->ranging_cfg.config_ranging_indications & NAN_RANGING_INDICATE_INGRESS_MET_MASK) pNanFWRangingCfg.geo_fence_threshold.inner_threshold = pReq->ranging_cfg.distance_ingress_cm; if (pReq->ranging_cfg.config_ranging_indications & NAN_RANGING_INDICATE_EGRESS_MET_MASK) pNanFWRangingCfg.geo_fence_threshold.outer_threshold = pReq->ranging_cfg.distance_egress_cm; tlvs = addTlv(NAN_TLV_TYPE_NAN_RANGING_CFG, sizeof(NanFWRangeConfigParams), (const u8*)&pNanFWRangingCfg, tlvs); } if (pReq->sdea_service_specific_info_len) { tlvs = addTlv(NAN_TLV_TYPE_SDEA_SERVICE_SPECIFIC_INFO, pReq->sdea_service_specific_info_len, (const u8*)&pReq->sdea_service_specific_info[0], tlvs); } if (pReq->range_response_cfg.publish_id || pReq->range_response_cfg.ranging_response) { NanFWRangeReqMsg pNanFWRangeReqMsg; memset(&pNanFWRangeReqMsg, 0, sizeof(NanFWRangeReqMsg)); pNanFWRangeReqMsg.range_id = (u16)pReq->range_response_cfg.publish_id; CHAR_ARRAY_TO_MAC_ADDR(pReq->range_response_cfg.peer_addr, pNanFWRangeReqMsg.range_mac_addr); pNanFWRangeReqMsg.ranging_accept = ((pReq->range_response_cfg.ranging_response == NAN_RANGE_REQUEST_ACCEPT) ? 1 : 0); pNanFWRangeReqMsg.ranging_reject = ((pReq->range_response_cfg.ranging_response == NAN_RANGE_REQUEST_REJECT) ? 1 : 0); pNanFWRangeReqMsg.ranging_cancel = ((pReq->range_response_cfg.ranging_response == NAN_RANGE_REQUEST_CANCEL) ? 1 : 0); tlvs = addTlv(NAN_TLV_TYPE_NAN20_RANGING_REQUEST, sizeof(NanFWRangeReqMsg), (const u8*)&pNanFWRangeReqMsg, tlvs); } mVendorData = (char *)pFwReq; mDataLen = message_len; int ret = mMsg.put_bytes(NL80211_ATTR_VENDOR_DATA, mVendorData, mDataLen); if (ret < 0) { ALOGE("%s: put_bytes Error:%d",__func__, ret); cleanup(); return ret; } hexdump(mVendorData, mDataLen); return ret; } int NanCommand::putNanPublishCancel(transaction_id id, const NanPublishCancelRequest *pReq) { ALOGV("NAN_PUBLISH_CANCEL"); if (pReq == NULL) { cleanup(); return WIFI_ERROR_INVALID_ARGS; } size_t message_len = sizeof(NanPublishServiceCancelReqMsg); pNanPublishServiceCancelReqMsg pFwReq = (pNanPublishServiceCancelReqMsg)malloc(message_len); if (pFwReq == NULL) { cleanup(); return WIFI_ERROR_OUT_OF_MEMORY; } ALOGV("Message Len %zu", message_len); memset(pFwReq, 0, message_len); pFwReq->fwHeader.msgVersion = (u16)NAN_MSG_VERSION1; pFwReq->fwHeader.msgId = NAN_MSG_ID_PUBLISH_SERVICE_CANCEL_REQ; pFwReq->fwHeader.msgLen = message_len; pFwReq->fwHeader.handle = pReq->publish_id; pFwReq->fwHeader.transactionId = id; mVendorData = (char *)pFwReq; mDataLen = message_len; int ret = mMsg.put_bytes(NL80211_ATTR_VENDOR_DATA, mVendorData, mDataLen); if (ret < 0) { ALOGE("%s: put_bytes Error:%d",__func__, ret); cleanup(); return ret; } hexdump(mVendorData, mDataLen); return ret; } int NanCommand::putNanSubscribe(transaction_id id, const NanSubscribeRequest *pReq) { ALOGV("NAN_SUBSCRIBE"); if (pReq == NULL) { cleanup(); return WIFI_ERROR_INVALID_ARGS; } size_t message_len = sizeof(NanMsgHeader) + sizeof(NanSubscribeServiceReqParams) + (pReq->service_name_len ? SIZEOF_TLV_HDR + pReq->service_name_len : 0) + (pReq->service_specific_info_len ? SIZEOF_TLV_HDR + pReq->service_specific_info_len : 0) + (pReq->rx_match_filter_len ? SIZEOF_TLV_HDR + pReq->rx_match_filter_len : 0) + (pReq->tx_match_filter_len ? SIZEOF_TLV_HDR + pReq->tx_match_filter_len : 0) + (pReq->cipher_type ? SIZEOF_TLV_HDR + sizeof(NanCsidType) : 0) + ((pReq->sdea_params.config_nan_data_path || pReq->sdea_params.security_cfg || pReq->sdea_params.ranging_state || pReq->sdea_params.range_report) ? SIZEOF_TLV_HDR + sizeof(NanFWSdeaCtrlParams) : 0) + ((pReq->ranging_cfg.ranging_interval_msec || pReq->ranging_cfg.config_ranging_indications || pReq->ranging_cfg.distance_ingress_cm || pReq->ranging_cfg.distance_egress_cm) ? SIZEOF_TLV_HDR + sizeof(NanFWRangeConfigParams) : 0) + ((pReq->range_response_cfg.requestor_instance_id || pReq->range_response_cfg.ranging_response) ? SIZEOF_TLV_HDR + sizeof(NanFWRangeReqMsg) : 0) + (pReq->sdea_service_specific_info_len ? SIZEOF_TLV_HDR + pReq->sdea_service_specific_info_len : 0); message_len += \ (pReq->num_intf_addr_present * (SIZEOF_TLV_HDR + NAN_MAC_ADDR_LEN)); if ((pReq->key_info.key_type == NAN_SECURITY_KEY_INPUT_PMK) && (pReq->key_info.body.pmk_info.pmk_len == NAN_PMK_INFO_LEN)) message_len += SIZEOF_TLV_HDR + NAN_PMK_INFO_LEN; else if ((pReq->key_info.key_type == NAN_SECURITY_KEY_INPUT_PASSPHRASE) && (pReq->key_info.body.passphrase_info.passphrase_len >= NAN_SECURITY_MIN_PASSPHRASE_LEN) && (pReq->key_info.body.passphrase_info.passphrase_len <= NAN_SECURITY_MAX_PASSPHRASE_LEN)) message_len += SIZEOF_TLV_HDR + pReq->key_info.body.passphrase_info.passphrase_len; pNanSubscribeServiceReqMsg pFwReq = (pNanSubscribeServiceReqMsg)malloc(message_len); if (pFwReq == NULL) { cleanup(); return WIFI_ERROR_OUT_OF_MEMORY; } ALOGV("Message Len %zu", message_len); memset(pFwReq, 0, message_len); pFwReq->fwHeader.msgVersion = (u16)NAN_MSG_VERSION1; pFwReq->fwHeader.msgId = NAN_MSG_ID_SUBSCRIBE_SERVICE_REQ; pFwReq->fwHeader.msgLen = message_len; if (pReq->subscribe_id == 0) { pFwReq->fwHeader.handle = 0xFFFF; } else { pFwReq->fwHeader.handle = pReq->subscribe_id; } pFwReq->fwHeader.transactionId = id; pFwReq->subscribeServiceReqParams.ttl = pReq->ttl; pFwReq->subscribeServiceReqParams.period = pReq->period; pFwReq->subscribeServiceReqParams.subscribeType = pReq->subscribe_type; pFwReq->subscribeServiceReqParams.srfAttr = pReq->serviceResponseFilter; pFwReq->subscribeServiceReqParams.srfInclude = pReq->serviceResponseInclude; pFwReq->subscribeServiceReqParams.srfSend = pReq->useServiceResponseFilter; pFwReq->subscribeServiceReqParams.ssiRequired = pReq->ssiRequiredForMatchIndication; pFwReq->subscribeServiceReqParams.matchAlg = pReq->subscribe_match_indicator; pFwReq->subscribeServiceReqParams.count = pReq->subscribe_count; pFwReq->subscribeServiceReqParams.rssiThresholdFlag = pReq->rssi_threshold_flag; pFwReq->subscribeServiceReqParams.subTerminatedIndDisableFlag = (pReq->recv_indication_cfg & BIT_0) ? 1 : 0; pFwReq->subscribeServiceReqParams.subMatchExpiredIndDisableFlag = (pReq->recv_indication_cfg & BIT_1) ? 1 : 0; pFwReq->subscribeServiceReqParams.followupRxIndDisableFlag = (pReq->recv_indication_cfg & BIT_2) ? 1 : 0; pFwReq->subscribeServiceReqParams.connmap = pReq->connmap; pFwReq->subscribeServiceReqParams.reserved = 0; u8* tlvs = pFwReq->ptlv; if (pReq->service_name_len) { tlvs = addTlv(NAN_TLV_TYPE_SERVICE_NAME, pReq->service_name_len, (const u8*)&pReq->service_name[0], tlvs); } if (pReq->service_specific_info_len) { tlvs = addTlv(NAN_TLV_TYPE_SERVICE_SPECIFIC_INFO, pReq->service_specific_info_len, (const u8*)&pReq->service_specific_info[0], tlvs); } if (pReq->rx_match_filter_len) { tlvs = addTlv(NAN_TLV_TYPE_RX_MATCH_FILTER, pReq->rx_match_filter_len, (const u8*)&pReq->rx_match_filter[0], tlvs); } if (pReq->tx_match_filter_len) { tlvs = addTlv(NAN_TLV_TYPE_TX_MATCH_FILTER, pReq->tx_match_filter_len, (const u8*)&pReq->tx_match_filter[0], tlvs); } int i = 0; for (i = 0; i < pReq->num_intf_addr_present; i++) { tlvs = addTlv(NAN_TLV_TYPE_MAC_ADDRESS, NAN_MAC_ADDR_LEN, (const u8*)&pReq->intf_addr[i][0], tlvs); } if (pReq->cipher_type) { NanCsidType pNanCsidType; pNanCsidType.csid_type = pReq->cipher_type; tlvs = addTlv(NAN_TLV_TYPE_NAN_CSID, sizeof(NanCsidType), (const u8*)&pNanCsidType, tlvs); } if ((pReq->key_info.key_type == NAN_SECURITY_KEY_INPUT_PMK) && (pReq->key_info.body.pmk_info.pmk_len == NAN_PMK_INFO_LEN)) { tlvs = addTlv(NAN_TLV_TYPE_NAN_PMK, pReq->key_info.body.pmk_info.pmk_len, (const u8*)&pReq->key_info.body.pmk_info.pmk[0], tlvs); } else if ((pReq->key_info.key_type == NAN_SECURITY_KEY_INPUT_PASSPHRASE) && (pReq->key_info.body.passphrase_info.passphrase_len >= NAN_SECURITY_MIN_PASSPHRASE_LEN) && (pReq->key_info.body.passphrase_info.passphrase_len <= NAN_SECURITY_MAX_PASSPHRASE_LEN)) { tlvs = addTlv(NAN_TLV_TYPE_NAN_PASSPHRASE, pReq->key_info.body.passphrase_info.passphrase_len, (const u8*)&pReq->key_info.body.passphrase_info.passphrase[0], tlvs); } if (pReq->sdea_params.config_nan_data_path || pReq->sdea_params.security_cfg || pReq->sdea_params.ranging_state || pReq->sdea_params.range_report) { NanFWSdeaCtrlParams pNanFWSdeaCtrlParams; memset(&pNanFWSdeaCtrlParams, 0, sizeof(NanFWSdeaCtrlParams)); if (pReq->sdea_params.config_nan_data_path) { pNanFWSdeaCtrlParams.data_path_required = 1; pNanFWSdeaCtrlParams.data_path_type = (pReq->sdea_params.ndp_type & BIT_0) ? NAN_DATA_PATH_MULTICAST_MSG : NAN_DATA_PATH_UNICAST_MSG; } if (pReq->sdea_params.security_cfg) { pNanFWSdeaCtrlParams.security_required = pReq->sdea_params.security_cfg; } if (pReq->sdea_params.ranging_state) { pNanFWSdeaCtrlParams.ranging_required = pReq->sdea_params.ranging_state; } if (pReq->sdea_params.range_report) { pNanFWSdeaCtrlParams.range_report = ((pReq->sdea_params.range_report & NAN_ENABLE_RANGE_REPORT >> 1) ? 1 : 0); } tlvs = addTlv(NAN_TLV_TYPE_SDEA_CTRL_PARAMS, sizeof(NanFWSdeaCtrlParams), (const u8*)&pNanFWSdeaCtrlParams, tlvs); } if (pReq->ranging_cfg.ranging_interval_msec || pReq->ranging_cfg.config_ranging_indications || pReq->ranging_cfg.distance_ingress_cm || pReq->ranging_cfg.distance_ingress_cm) { NanFWRangeConfigParams pNanFWRangingCfg; memset(&pNanFWRangingCfg, 0, sizeof(NanFWRangeConfigParams)); pNanFWRangingCfg.range_interval = pReq->ranging_cfg.ranging_interval_msec; pNanFWRangingCfg.ranging_indication_event = ((pReq->ranging_cfg.config_ranging_indications & NAN_RANGING_INDICATE_CONTINUOUS_MASK) | (pReq->ranging_cfg.config_ranging_indications & NAN_RANGING_INDICATE_INGRESS_MET_MASK) | (pReq->ranging_cfg.config_ranging_indications & NAN_RANGING_INDICATE_EGRESS_MET_MASK)); pNanFWRangingCfg.ranging_indication_event = pReq->ranging_cfg.config_ranging_indications; if (pReq->ranging_cfg.config_ranging_indications & NAN_RANGING_INDICATE_INGRESS_MET_MASK) pNanFWRangingCfg.geo_fence_threshold.inner_threshold = pReq->ranging_cfg.distance_ingress_cm; if (pReq->ranging_cfg.config_ranging_indications & NAN_RANGING_INDICATE_EGRESS_MET_MASK) pNanFWRangingCfg.geo_fence_threshold.outer_threshold = pReq->ranging_cfg.distance_egress_cm; tlvs = addTlv(NAN_TLV_TYPE_NAN_RANGING_CFG, sizeof(NanFWRangeConfigParams), (const u8*)&pNanFWRangingCfg, tlvs); } if (pReq->sdea_service_specific_info_len) { tlvs = addTlv(NAN_TLV_TYPE_SDEA_SERVICE_SPECIFIC_INFO, pReq->sdea_service_specific_info_len, (const u8*)&pReq->sdea_service_specific_info[0], tlvs); } if (pReq->range_response_cfg.requestor_instance_id || pReq->range_response_cfg.ranging_response) { NanFWRangeReqMsg pNanFWRangeReqMsg; memset(&pNanFWRangeReqMsg, 0, sizeof(NanFWRangeReqMsg)); pNanFWRangeReqMsg.range_id = pReq->range_response_cfg.requestor_instance_id; memcpy(&pNanFWRangeReqMsg.range_mac_addr, &pReq->range_response_cfg.peer_addr, NAN_MAC_ADDR_LEN); pNanFWRangeReqMsg.ranging_accept = ((pReq->range_response_cfg.ranging_response == NAN_RANGE_REQUEST_ACCEPT) ? 1 : 0); pNanFWRangeReqMsg.ranging_reject = ((pReq->range_response_cfg.ranging_response == NAN_RANGE_REQUEST_REJECT) ? 1 : 0); pNanFWRangeReqMsg.ranging_cancel = ((pReq->range_response_cfg.ranging_response == NAN_RANGE_REQUEST_CANCEL) ? 1 : 0); tlvs = addTlv(NAN_TLV_TYPE_NAN20_RANGING_REQUEST, sizeof(NanFWRangeReqMsg), (const u8*)&pNanFWRangeReqMsg, tlvs); } mVendorData = (char *)pFwReq; mDataLen = message_len; int ret = mMsg.put_bytes(NL80211_ATTR_VENDOR_DATA, mVendorData, mDataLen); if (ret < 0) { ALOGE("%s: put_bytes Error:%d",__func__, ret); cleanup(); return ret; } hexdump(mVendorData, mDataLen); return ret; } int NanCommand::putNanSubscribeCancel(transaction_id id, const NanSubscribeCancelRequest *pReq) { ALOGV("NAN_SUBSCRIBE_CANCEL"); if (pReq == NULL) { cleanup(); return WIFI_ERROR_INVALID_ARGS; } size_t message_len = sizeof(NanSubscribeServiceCancelReqMsg); pNanSubscribeServiceCancelReqMsg pFwReq = (pNanSubscribeServiceCancelReqMsg)malloc(message_len); if (pFwReq == NULL) { cleanup(); return WIFI_ERROR_OUT_OF_MEMORY; } ALOGV("Message Len %zu", message_len); memset(pFwReq, 0, message_len); pFwReq->fwHeader.msgVersion = (u16)NAN_MSG_VERSION1; pFwReq->fwHeader.msgId = NAN_MSG_ID_SUBSCRIBE_SERVICE_CANCEL_REQ; pFwReq->fwHeader.msgLen = message_len; pFwReq->fwHeader.handle = pReq->subscribe_id; pFwReq->fwHeader.transactionId = id; mVendorData = (char *)pFwReq; mDataLen = message_len; int ret = mMsg.put_bytes(NL80211_ATTR_VENDOR_DATA, mVendorData, mDataLen); if (ret < 0) { ALOGE("%s: put_bytes Error:%d",__func__, ret); cleanup(); return ret; } hexdump(mVendorData, mDataLen); return ret; } int NanCommand::putNanTransmitFollowup(transaction_id id, const NanTransmitFollowupRequest *pReq) { ALOGV("TRANSMIT_FOLLOWUP"); if (pReq == NULL) { cleanup(); return WIFI_ERROR_INVALID_ARGS; } size_t message_len = sizeof(NanMsgHeader) + sizeof(NanTransmitFollowupReqParams) + (pReq->service_specific_info_len ? SIZEOF_TLV_HDR + pReq->service_specific_info_len : 0) + (pReq->sdea_service_specific_info_len ? SIZEOF_TLV_HDR + pReq->sdea_service_specific_info_len : 0); /* Mac address needs to be added in TLV */ message_len += (SIZEOF_TLV_HDR + sizeof(pReq->addr)); pNanTransmitFollowupReqMsg pFwReq = (pNanTransmitFollowupReqMsg)malloc(message_len); if (pFwReq == NULL) { cleanup(); return WIFI_ERROR_OUT_OF_MEMORY; } ALOGV("Message Len %zu", message_len); memset (pFwReq, 0, message_len); pFwReq->fwHeader.msgVersion = (u16)NAN_MSG_VERSION1; pFwReq->fwHeader.msgId = NAN_MSG_ID_TRANSMIT_FOLLOWUP_REQ; pFwReq->fwHeader.msgLen = message_len; pFwReq->fwHeader.handle = pReq->publish_subscribe_id; pFwReq->fwHeader.transactionId = id; pFwReq->transmitFollowupReqParams.matchHandle = pReq->requestor_instance_id; if (pReq->priority != NAN_TX_PRIORITY_HIGH) { pFwReq->transmitFollowupReqParams.priority = 1; } else { pFwReq->transmitFollowupReqParams.priority = 2; } pFwReq->transmitFollowupReqParams.window = pReq->dw_or_faw; pFwReq->transmitFollowupReqParams.followupTxRspDisableFlag = (pReq->recv_indication_cfg & BIT_0) ? 1 : 0; pFwReq->transmitFollowupReqParams.reserved = 0; u8* tlvs = pFwReq->ptlv; /* Mac address needs to be added in TLV */ tlvs = addTlv(NAN_TLV_TYPE_MAC_ADDRESS, sizeof(pReq->addr), (const u8*)&pReq->addr[0], tlvs); u16 tlv_type = NAN_TLV_TYPE_SERVICE_SPECIFIC_INFO; if (pReq->service_specific_info_len) { tlvs = addTlv(tlv_type, pReq->service_specific_info_len, (const u8*)&pReq->service_specific_info[0], tlvs); } if (pReq->sdea_service_specific_info_len) { tlvs = addTlv(NAN_TLV_TYPE_SDEA_SERVICE_SPECIFIC_INFO, pReq->sdea_service_specific_info_len, (const u8*)&pReq->sdea_service_specific_info[0], tlvs); } mVendorData = (char *)pFwReq; mDataLen = message_len; int ret = mMsg.put_bytes(NL80211_ATTR_VENDOR_DATA, mVendorData, mDataLen); if (ret < 0) { ALOGE("%s: put_bytes Error:%d",__func__, ret); cleanup(); return ret; } hexdump(mVendorData, mDataLen); return ret; } int NanCommand::putNanStats(transaction_id id, const NanStatsRequest *pReq) { ALOGV("NAN_STATS"); if (pReq == NULL) { cleanup(); return WIFI_ERROR_INVALID_ARGS; } size_t message_len = sizeof(NanStatsReqMsg); pNanStatsReqMsg pFwReq = (pNanStatsReqMsg)malloc(message_len); if (pFwReq == NULL) { cleanup(); return WIFI_ERROR_OUT_OF_MEMORY; } ALOGV("Message Len %zu", message_len); memset(pFwReq, 0, message_len); pFwReq->fwHeader.msgVersion = (u16)NAN_MSG_VERSION1; pFwReq->fwHeader.msgId = NAN_MSG_ID_STATS_REQ; pFwReq->fwHeader.msgLen = message_len; pFwReq->fwHeader.transactionId = id; pFwReq->statsReqParams.statsType = pReq->stats_type; pFwReq->statsReqParams.clear = pReq->clear; pFwReq->statsReqParams.reserved = 0; mVendorData = (char *)pFwReq; mDataLen = message_len; int ret = mMsg.put_bytes(NL80211_ATTR_VENDOR_DATA, mVendorData, mDataLen); if (ret < 0) { ALOGE("%s: put_bytes Error:%d",__func__, ret); cleanup(); return ret; } hexdump(mVendorData, mDataLen); return ret; } int NanCommand::putNanTCA(transaction_id id, const NanTCARequest *pReq) { ALOGV("NAN_TCA"); if (pReq == NULL) { cleanup(); return WIFI_ERROR_INVALID_ARGS; } size_t message_len = sizeof(NanTcaReqMsg); message_len += (SIZEOF_TLV_HDR + 2 * sizeof(u32)); pNanTcaReqMsg pFwReq = (pNanTcaReqMsg)malloc(message_len); if (pFwReq == NULL) { cleanup(); return WIFI_ERROR_OUT_OF_MEMORY; } ALOGV("Message Len %zu", message_len); memset(pFwReq, 0, message_len); pFwReq->fwHeader.msgVersion = (u16)NAN_MSG_VERSION1; pFwReq->fwHeader.msgId = NAN_MSG_ID_TCA_REQ; pFwReq->fwHeader.msgLen = message_len; pFwReq->fwHeader.transactionId = id; u32 tcaReqParams[2]; memset (tcaReqParams, 0, sizeof(tcaReqParams)); tcaReqParams[0] = (pReq->rising_direction_evt_flag & 0x01); tcaReqParams[0] |= (pReq->falling_direction_evt_flag & 0x01) << 1; tcaReqParams[0] |= (pReq->clear & 0x01) << 2; tcaReqParams[1] = pReq->threshold; u8* tlvs = pFwReq->ptlv; if (pReq->tca_type == NAN_TCA_ID_CLUSTER_SIZE) { tlvs = addTlv(NAN_TLV_TYPE_CLUSTER_SIZE_REQ, sizeof(tcaReqParams), (const u8*)&tcaReqParams[0], tlvs); } else { ALOGE("%s: Unrecognized tca_type:%u", __FUNCTION__, pReq->tca_type); cleanup(); return WIFI_ERROR_INVALID_ARGS; } mVendorData = (char *)pFwReq; mDataLen = message_len; int ret = mMsg.put_bytes(NL80211_ATTR_VENDOR_DATA, mVendorData, mDataLen); if (ret < 0) { ALOGE("%s: put_bytes Error:%d",__func__, ret); cleanup(); return ret; } hexdump(mVendorData, mDataLen); return ret; } int NanCommand::putNanBeaconSdfPayload(transaction_id id, const NanBeaconSdfPayloadRequest *pReq) { ALOGV("NAN_BEACON_SDF_PAYLAOD"); if (pReq == NULL) { cleanup(); return WIFI_ERROR_INVALID_ARGS; } size_t message_len = sizeof(NanMsgHeader) + \ SIZEOF_TLV_HDR + sizeof(u32) + \ pReq->vsa.vsa_len; pNanBeaconSdfPayloadReqMsg pFwReq = (pNanBeaconSdfPayloadReqMsg)malloc(message_len); if (pFwReq == NULL) { cleanup(); return WIFI_ERROR_OUT_OF_MEMORY; } ALOGV("Message Len %zu", message_len); memset(pFwReq, 0, message_len); pFwReq->fwHeader.msgVersion = (u16)NAN_MSG_VERSION1; pFwReq->fwHeader.msgId = NAN_MSG_ID_BEACON_SDF_REQ; pFwReq->fwHeader.msgLen = message_len; pFwReq->fwHeader.transactionId = id; /* Construct First 4 bytes of NanBeaconSdfPayloadReqMsg */ u32 temp = 0; temp = pReq->vsa.payload_transmit_flag & 0x01; temp |= (pReq->vsa.tx_in_discovery_beacon & 0x01) << 1; temp |= (pReq->vsa.tx_in_sync_beacon & 0x01) << 2; temp |= (pReq->vsa.tx_in_service_discovery & 0x01) << 3; temp |= (pReq->vsa.vendor_oui & 0x00FFFFFF) << 8; int tlv_len = sizeof(u32) + pReq->vsa.vsa_len; u8* tempBuf = (u8*)malloc(tlv_len); if (tempBuf == NULL) { ALOGE("%s: Malloc failed", __func__); free(pFwReq); cleanup(); return WIFI_ERROR_OUT_OF_MEMORY; } memset(tempBuf, 0, tlv_len); memcpy(tempBuf, &temp, sizeof(u32)); memcpy((tempBuf + sizeof(u32)), pReq->vsa.vsa, pReq->vsa.vsa_len); u8* tlvs = pFwReq->ptlv; /* Write the TLVs to the message. */ tlvs = addTlv(NAN_TLV_TYPE_VENDOR_SPECIFIC_ATTRIBUTE_TRANSMIT, tlv_len, (const u8*)tempBuf, tlvs); free(tempBuf); mVendorData = (char *)pFwReq; mDataLen = message_len; int ret = mMsg.put_bytes(NL80211_ATTR_VENDOR_DATA, mVendorData, mDataLen); if (ret < 0) { ALOGE("%s: put_bytes Error:%d",__func__, ret); cleanup(); return ret; } hexdump(mVendorData, mDataLen); return ret; } //callback handlers registered for nl message send static int error_handler_nan(struct sockaddr_nl *nla, struct nlmsgerr *err, void *arg) { struct sockaddr_nl * tmp; int *ret = (int *)arg; tmp = nla; *ret = err->error; ALOGE("%s: Error code:%d (%s)", __func__, *ret, strerror(-(*ret))); return NL_STOP; } //callback handlers registered for nl message send static int ack_handler_nan(struct nl_msg *msg, void *arg) { int *ret = (int *)arg; struct nl_msg * a; ALOGE("%s: called", __func__); a = msg; *ret = 0; return NL_STOP; } //callback handlers registered for nl message send static int finish_handler_nan(struct nl_msg *msg, void *arg) { int *ret = (int *)arg; struct nl_msg * a; ALOGE("%s: called", __func__); a = msg; *ret = 0; return NL_SKIP; } //Override base class requestEvent and implement little differently here //This will send the request message //We dont wait for any response back in case of Nan as it is asynchronous //thus no wait for condition. int NanCommand::requestEvent() { int res; struct nl_cb * cb; cb = nl_cb_alloc(NL_CB_DEFAULT); if (!cb) { ALOGE("%s: Callback allocation failed",__func__); res = -1; goto out; } if (!mInfo->cmd_sock) { ALOGE("%s: Command socket is null",__func__); res = -1; goto out; } /* send message */ ALOGV("%s:Handle:%p Socket Value:%p", __func__, mInfo, mInfo->cmd_sock); res = nl_send_auto_complete(mInfo->cmd_sock, mMsg.getMessage()); if (res < 0) goto out; res = 1; nl_cb_err(cb, NL_CB_CUSTOM, error_handler_nan, &res); nl_cb_set(cb, NL_CB_FINISH, NL_CB_CUSTOM, finish_handler_nan, &res); nl_cb_set(cb, NL_CB_ACK, NL_CB_CUSTOM, ack_handler_nan, &res); // err is populated as part of finish_handler while (res > 0) nl_recvmsgs(mInfo->cmd_sock, cb); out: //free the VendorData if (mVendorData) { free(mVendorData); } mVendorData = NULL; //cleanup the mMsg mMsg.destroy(); return res; } int NanCommand::calcNanTransmitPostDiscoverySize( const NanTransmitPostDiscovery *pPostDiscovery) { /* Fixed size of u32 for Conn Type, Device Role and R flag + Dur + Rsvd*/ int ret = sizeof(u32); /* size of availability interval bit map is 4 bytes */ ret += sizeof(u32); /* size of mac address is 6 bytes*/ ret += (SIZEOF_TLV_HDR + NAN_MAC_ADDR_LEN); if (pPostDiscovery && pPostDiscovery->type == NAN_CONN_WLAN_MESH) { /* size of WLAN_MESH_ID */ ret += (SIZEOF_TLV_HDR + \ pPostDiscovery->mesh_id_len); } if (pPostDiscovery && pPostDiscovery->type == NAN_CONN_WLAN_INFRA) { /* size of Infrastructure ssid */ ret += (SIZEOF_TLV_HDR + \ pPostDiscovery->infrastructure_ssid_len); } ALOGV("%s:size:%d", __func__, ret); return ret; } void NanCommand::fillNanSocialChannelParamVal( const NanSocialChannelScanParams *pScanParams, u32* pChannelParamArr) { int i; if (pChannelParamArr) { memset(pChannelParamArr, 0, NAN_MAX_SOCIAL_CHANNELS * sizeof(u32)); for (i= 0; i < NAN_MAX_SOCIAL_CHANNELS; i++) { pChannelParamArr[i] = pScanParams->scan_period[i] << 16; pChannelParamArr[i] |= pScanParams->dwell_time[i] << 8; } pChannelParamArr[NAN_CHANNEL_24G_BAND] |= 6; pChannelParamArr[NAN_CHANNEL_5G_BAND_LOW]|= 44; pChannelParamArr[NAN_CHANNEL_5G_BAND_HIGH]|= 149; ALOGV("%s: Filled SocialChannelParamVal", __func__); hexdump((char*)pChannelParamArr, NAN_MAX_SOCIAL_CHANNELS * sizeof(u32)); } return; } u32 NanCommand::getNanTransmitPostConnectivityCapabilityVal( const NanTransmitPostConnectivityCapability *pCapab) { u32 ret = 0; ret |= (pCapab->payload_transmit_flag? 1:0) << 16; ret |= (pCapab->is_mesh_supported? 1:0) << 5; ret |= (pCapab->is_ibss_supported? 1:0) << 4; ret |= (pCapab->wlan_infra_field? 1:0) << 3; ret |= (pCapab->is_tdls_supported? 1:0) << 2; ret |= (pCapab->is_wfds_supported? 1:0) << 1; ret |= (pCapab->is_wfd_supported? 1:0); ALOGV("%s: val:%d", __func__, ret); return ret; } void NanCommand::fillNanTransmitPostDiscoveryVal( const NanTransmitPostDiscovery *pTxDisc, u8 *pOutValue) { if (pTxDisc && pOutValue) { u8 *tlvs = &pOutValue[8]; pOutValue[0] = pTxDisc->type; pOutValue[1] = pTxDisc->role; pOutValue[2] = (pTxDisc->transmit_freq? 1:0); pOutValue[2] |= ((pTxDisc->duration & 0x03) << 1); memcpy(&pOutValue[4], &pTxDisc->avail_interval_bitmap, sizeof(pTxDisc->avail_interval_bitmap)); tlvs = addTlv(NAN_TLV_TYPE_MAC_ADDRESS, NAN_MAC_ADDR_LEN, (const u8*)&pTxDisc->addr[0], tlvs); if (pTxDisc->type == NAN_CONN_WLAN_MESH) { tlvs = addTlv(NAN_TLV_TYPE_WLAN_MESH_ID, pTxDisc->mesh_id_len, (const u8*)&pTxDisc->mesh_id[0], tlvs); } if (pTxDisc->type == NAN_CONN_WLAN_INFRA) { tlvs = addTlv(NAN_TLV_TYPE_WLAN_INFRA_SSID, pTxDisc->infrastructure_ssid_len, (const u8*)&pTxDisc->infrastructure_ssid_val[0], tlvs); } ALOGV("%s: Filled TransmitPostDiscoveryVal", __func__); hexdump((char*)pOutValue, calcNanTransmitPostDiscoverySize(pTxDisc)); } return; } void NanCommand::fillNanFurtherAvailabilityMapVal( const NanFurtherAvailabilityMap *pFam, u8 *pOutValue) { int idx = 0; if (pFam && pOutValue) { u32 famsize = calcNanFurtherAvailabilityMapSize(pFam); pNanFurtherAvailabilityMapAttrTlv pFwReq = \ (pNanFurtherAvailabilityMapAttrTlv)pOutValue; memset(pOutValue, 0, famsize); pFwReq->numChan = pFam->numchans; for (idx = 0; idx < pFam->numchans; idx++) { const NanFurtherAvailabilityChannel *pFamChan = \ &pFam->famchan[idx]; pNanFurtherAvailabilityChan pFwFamChan = \ (pNanFurtherAvailabilityChan)((u8*)&pFwReq->pFaChan[0] + \ (idx * sizeof(NanFurtherAvailabilityChan))); pFwFamChan->entryCtrl.availIntDuration = \ pFamChan->entry_control; pFwFamChan->entryCtrl.mapId = \ pFamChan->mapid; pFwFamChan->opClass = pFamChan->class_val; pFwFamChan->channel = pFamChan->channel; memcpy(&pFwFamChan->availIntBitmap, &pFamChan->avail_interval_bitmap, sizeof(pFwFamChan->availIntBitmap)); } ALOGV("%s: Filled FurtherAvailabilityMapVal", __func__); hexdump((char*)pOutValue, famsize); } return; } int NanCommand::calcNanFurtherAvailabilityMapSize( const NanFurtherAvailabilityMap *pFam) { int ret = 0; if (pFam && pFam->numchans && pFam->numchans <= NAN_MAX_FAM_CHANNELS) { /* Fixed size of u8 for numchans*/ ret = sizeof(u8); /* numchans * sizeof(FamChannels) */ ret += (pFam->numchans * sizeof(NanFurtherAvailabilityChan)); } ALOGV("%s:size:%d", __func__, ret); return ret; } int NanCommand::putNanCapabilities(transaction_id id) { ALOGV("NAN_CAPABILITIES"); size_t message_len = sizeof(NanCapabilitiesReqMsg); pNanCapabilitiesReqMsg pFwReq = (pNanCapabilitiesReqMsg)malloc(message_len); if (pFwReq == NULL) { cleanup(); return WIFI_ERROR_OUT_OF_MEMORY; } memset (pFwReq, 0, message_len); pFwReq->fwHeader.msgVersion = (u16)NAN_MSG_VERSION1; pFwReq->fwHeader.msgId = NAN_MSG_ID_CAPABILITIES_REQ; pFwReq->fwHeader.msgLen = message_len; pFwReq->fwHeader.transactionId = id; mVendorData = (char*)pFwReq; mDataLen = message_len; int ret = mMsg.put_bytes(NL80211_ATTR_VENDOR_DATA, mVendorData, mDataLen); if (ret < 0) { ALOGE("%s: put_bytes Error:%d",__func__, ret); cleanup(); return ret; } hexdump(mVendorData, mDataLen); return ret; } int NanCommand::putNanDebugCommand(NanDebugParams debug, int debug_msg_length) { ALOGV("NAN_AVAILABILITY_DEBUG"); size_t message_len = sizeof(NanTestModeReqMsg); message_len += (SIZEOF_TLV_HDR + debug_msg_length); pNanTestModeReqMsg pFwReq = (pNanTestModeReqMsg)malloc(message_len); if (pFwReq == NULL) { cleanup(); return WIFI_ERROR_OUT_OF_MEMORY; } ALOGV("Message Len %zu\n", message_len); ALOGV("%s: Debug Command Type = 0x%x \n", __func__, debug.cmd); ALOGV("%s: ** Debug Command Data Start **", __func__); hexdump(debug.debug_cmd_data, debug_msg_length); ALOGV("%s: ** Debug Command Data End **", __func__); memset (pFwReq, 0, message_len); pFwReq->fwHeader.msgVersion = (u16)NAN_MSG_VERSION1; pFwReq->fwHeader.msgId = NAN_MSG_ID_TESTMODE_REQ; pFwReq->fwHeader.msgLen = message_len; pFwReq->fwHeader.transactionId = 0; u8* tlvs = pFwReq->ptlv; tlvs = addTlv(NAN_TLV_TYPE_TESTMODE_GENERIC_CMD, debug_msg_length, (const u8*)&debug, tlvs); mVendorData = (char*)pFwReq; mDataLen = message_len; /* Write the TLVs to the message. */ int ret = mMsg.put_bytes(NL80211_ATTR_VENDOR_DATA, mVendorData, mDataLen); if (ret < 0) { ALOGE("%s: put_bytes Error:%d",__func__, ret); cleanup(); return ret; } hexdump(mVendorData, mDataLen); return ret; }
[ "mingxin.android@gmail.com" ]
mingxin.android@gmail.com
e1724d968b1a28a91097e2ee558bec02f18fbcd3
85c5ec5dcb3a78201fab99c61b19763115f33208
/Codeforces/1342C.cpp
2fd12f4d398aec3042f0b1adb68d844021bc743e
[]
no_license
gaurav1620/Competitive-Coding
3fea83700b5a6d94e4b9b40966222390b92b07de
9b729b8dcc941cb9187b9bec970b2e56063ca0fc
refs/heads/master
2023-07-04T06:50:29.584930
2021-08-07T15:52:12
2021-08-07T15:52:12
291,438,389
2
0
null
null
null
null
UTF-8
C++
false
false
1,165
cpp
#include<bits/stdc++.h> //Gaurav Khairnar 2020 //codeforces : gaurav1620 //codechef : gaurav_1620 //email : gauravak007@gmail.com #define Ninja ios::sync_with_stdio(false);cin.tie(NULL); #define fo(i,n) for(i = 0;i < n;i++) #define rfo(i,n) for(i = n-1; n >= 0;i++0) #define ll long long #define watch(x) cout << (#x) << " is : " << (x) << endl using namespace std; int main(){ Ninja //▬▬ι═══════> ll t;cin>>t; while(t--){ ll a,b,q; cin>>a>>b>>q; ll blockSize= (a*b) / __gcd(a,b); ll remfromblock = max(a,b); while(q--){ ll x,y; cin>>x>>y; ll ans = y-x+1; ans -= (((y/blockSize)) - (x/blockSize+1))*remfromblock; ll ct = 0; for(ll i = (x/blockSize)*blockSize;ct <remfromblock;ct++,i++){ if(i >= x)ans--; } ct = 0; for(ll i = (y/blockSize)*blockSize;ct < remfromblock;ct++,i++){ if(i <= y)ans--; } cout<<ans<<" "; } cout<<endl; } //▬▬ι═══════> return 0; }
[ "gauravak007@gmail.com" ]
gauravak007@gmail.com
bb9c80390f570c4ad4798a509b09a7dbbb744913
30c0826c5482eb4d5f7f26976a695cd733f3c8b1
/server/src/json.hpp
a0c061912be6aa47d7f29bf10ed772e51d6587bd
[ "MIT" ]
permissive
lmccalman/spacerace
2094ab6b604fb1760aa34b1b91feb90e95525fb4
620a0cb6381921e3d37d66bdbb1e45c925fcc245
refs/heads/master
2021-01-21T04:54:10.903424
2016-05-26T06:06:12
2016-05-26T06:06:12
39,182,852
7
4
null
2016-05-22T10:54:58
2015-07-16T07:23:16
C++
UTF-8
C++
false
false
225,990
hpp
/*! @mainpage These pages contain the API documentation of JSON for Modern C++, a C++11 header-only JSON class. Class @ref nlohmann::basic_json is a good entry point for the documentation. @copyright The code is licensed under the MIT License <http://opensource.org/licenses/MIT>, Copyright (c) 2013-2015 Niels Lohmann. @author Niels Lohmann <http://nlohmann.me> @see https://github.com/nlohmann/json to download the source code */ #ifndef NLOHMANN_JSON_HPP #define NLOHMANN_JSON_HPP #include <algorithm> #include <array> #include <ciso646> #include <cmath> #include <cstdio> #include <functional> #include <initializer_list> #include <iomanip> #include <iostream> #include <iterator> #include <limits> #include <map> #include <memory> #include <sstream> #include <string> #include <type_traits> #include <utility> #include <vector> // enable ssize_t on MinGW #ifdef __GNUC__ #ifdef __MINGW32__ #include <sys/types.h> #endif #endif // enable ssize_t for MSVC #ifdef _MSC_VER #include <basetsd.h> using ssize_t = SSIZE_T; #endif /*! @brief namespace for Niels Lohmann @see https://github.com/nlohmann */ namespace nlohmann { /*! @brief unnamed namespace with internal helper functions */ namespace { /*! @brief Helper to determine whether there's a key_type for T. @sa http://stackoverflow.com/a/7728728/266378 */ template<typename T> struct has_mapped_type { private: template<typename C> static char test(typename C::mapped_type*); template<typename C> static int test(...); public: enum { value = sizeof(test<T>(0)) == sizeof(char) }; }; /// "equality" comparison for floating point numbers template<typename T> static bool approx(const T a, const T b) { return not (a > b or a < b); } } /*! @brief a class to store JSON values @tparam ObjectType type for JSON objects (@c std::map by default; will be used in @ref object_t) @tparam ArrayType type for JSON arrays (@c std::vector by default; will be used in @ref array_t) @tparam StringType type for JSON strings and object keys (@c std::string by default; will be used in @ref string_t) @tparam BooleanType type for JSON booleans (@c `bool` by default; will be used in @ref boolean_t) @tparam NumberIntegerType type for JSON integer numbers (@c `int64_t` by default; will be used in @ref number_integer_t) @tparam NumberFloatType type for JSON floating-point numbers (@c `double` by default; will be used in @ref number_float_t) @tparam AllocatorType type of the allocator to use (@c `std::allocator` by default) @requirement The class satisfies the following concept requirements: - Basic - [DefaultConstructible](http://en.cppreference.com/w/cpp/concept/DefaultConstructible) - [MoveConstructible](http://en.cppreference.com/w/cpp/concept/MoveConstructible) - [CopyConstructible](http://en.cppreference.com/w/cpp/concept/CopyConstructible) - [MoveAssignable](http://en.cppreference.com/w/cpp/concept/MoveAssignable) - [CopyAssignable](http://en.cppreference.com/w/cpp/concept/CopyAssignable) - [Destructible](http://en.cppreference.com/w/cpp/concept/Destructible) - Layout - [StandardLayoutType](http://en.cppreference.com/w/cpp/concept/StandardLayoutType) - Library-wide - [EqualityComparable](http://en.cppreference.com/w/cpp/concept/EqualityComparable) - [LessThanComparable](http://en.cppreference.com/w/cpp/concept/LessThanComparable) - [Swappable](http://en.cppreference.com/w/cpp/concept/Swappable) - [NullablePointer](http://en.cppreference.com/w/cpp/concept/NullablePointer) - Container - [Container](http://en.cppreference.com/w/cpp/concept/Container) - [ReversibleContainer](http://en.cppreference.com/w/cpp/concept/ReversibleContainer) @note ObjectType trick from http://stackoverflow.com/a/9860911 @see RFC 7159 <http://rfc7159.net/rfc7159> */ template < template<typename U, typename V, typename... Args> class ObjectType = std::map, template<typename U, typename... Args> class ArrayType = std::vector, class StringType = std::string, class BooleanType = bool, class NumberIntegerType = int64_t, class NumberFloatType = double, template<typename U> class AllocatorType = std::allocator > class basic_json { private: /// workaround type for MSVC using basic_json_t = basic_json<ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberFloatType, AllocatorType>; public: ///////////////////// // container types // ///////////////////// /// @name container types /// @{ /// the type of elements in a basic_json container using value_type = basic_json; /// the type of an element reference using reference = value_type&; /// the type of an element const reference using const_reference = const value_type&; /// a type to represent differences between iterators using difference_type = std::ptrdiff_t; /// a type to represent container sizes using size_type = std::size_t; /// the allocator type using allocator_type = AllocatorType<basic_json>; /// the type of an element pointer using pointer = typename std::allocator_traits<allocator_type>::pointer; /// the type of an element const pointer using const_pointer = typename std::allocator_traits<allocator_type>::const_pointer; // forward declaration template<typename Base> class json_reverse_iterator; /// an iterator for a basic_json container class iterator; /// a const iterator for a basic_json container class const_iterator; /// a reverse iterator for a basic_json container using reverse_iterator = json_reverse_iterator<typename basic_json::iterator>; /// a const reverse iterator for a basic_json container using const_reverse_iterator = json_reverse_iterator<typename basic_json::const_iterator>; /// @} /*! @brief returns the allocator associated with the container */ static allocator_type get_allocator() { return allocator_type(); } /////////////////////////// // JSON value data types // /////////////////////////// /// @name JSON value data types /// @{ /*! @brief a type for an object [RFC 7159](http://rfc7159.net/rfc7159) describes JSON objects as follows: > An object is an unordered collection of zero or more name/value pairs, > where a name is a string and a value is a string, number, boolean, null, > object, or array. To store objects in C++, a type is defined by the template parameters @a ObjectType which chooses the container (e.g., `std::map` or `std::unordered_map`), @a StringType which chooses the type of the keys or names, and @a AllocatorType which chooses the allocator to use. #### Default type With the default values for @a ObjectType (`std::map`), @a StringType (`std::string`), and @a AllocatorType (`std::allocator`), the default value for @a object_t is: @code {.cpp} std::map< std::string, // key_type basic_json, // value_type std::less<std::string>, // key_compare std::allocator<std::pair<const std::string, basic_json>> // allocator_type > @endcode #### Behavior The choice of @a object_t influences the behavior of the JSON class. With the default type, objects have the following behavior: - When all names are unique, objects will be interoperable in the sense that all software implementations receiving that object will agree on the name-value mappings. - When the names within an object are not unique, later stored name/value pairs overwrite previously stored name/value pairs, leaving the used names unique. For instance, `{"key": 1}` and `{"key": 2, "key": 1}` will be treated as equal and both stored as `{"key": 1}`. - Internally, name/value pairs are stored in lexicographical order of the names. Objects will also be serialized (see @ref dump) in this order. For instance, `{"b": 1, "a": 2}` and `{"a": 2, "b": 1}` will be stored and serialized as `{"a": 2, "b": 1}`. - When comparing objects, the order of the name/value pairs is irrelevant. This makes objects interoperable in the sense that they will not be affected by these differences. For instance, `{"b": 1, "a": 2}` and `{"a": 2, "b": 1}` will be treated as equal. #### Limits [RFC 7159](http://rfc7159.net/rfc7159) specifies: > An implementation may set limits on the maximum depth of nesting. In this class, the object's limit of nesting is not constraint explicitly. However, a maximum depth of nesting may be introduced by the compiler or runtime environment. A theoretical limit can be queried by calling the @ref max_size function of a JSON object. #### Storage Objects are stored as pointers in a `basic_json` type. That is, for any access to object values, a pointer of type `object_t*` must be dereferenced. @sa array_t */ using object_t = ObjectType<StringType, basic_json, std::less<StringType>, AllocatorType<std::pair<const StringType, basic_json>>>; /*! @brief a type for an array [RFC 7159](http://rfc7159.net/rfc7159) describes JSON arrays as follows: > An array is an ordered sequence of zero or more values. To store objects in C++, a type is defined by the template parameters @a ArrayType which chooses the container (e.g., `std::vector` or `std::list`) and @a AllocatorType which chooses the allocator to use. #### Default type With the default values for @a ArrayType (`std::vector`) and @a AllocatorType (`std::allocator`), the default value for @a array_t is: @code {.cpp} std::vector< basic_json, // value_type std::allocator<basic_json> // allocator_type > @endcode #### Limits [RFC 7159](http://rfc7159.net/rfc7159) specifies: > An implementation may set limits on the maximum depth of nesting. In this class, the array's limit of nesting is not constraint explicitly. However, a maximum depth of nesting may be introduced by the compiler or runtime environment. A theoretical limit can be queried by calling the @ref max_size function of a JSON array. #### Storage Arrays are stored as pointers in a `basic_json` type. That is, for any access to array values, a pointer of type `array_t*` must be dereferenced. */ using array_t = ArrayType<basic_json, AllocatorType<basic_json>>; /*! @brief a type for a string [RFC 7159](http://rfc7159.net/rfc7159) describes JSON strings as follows: > A string is a sequence of zero or more Unicode characters. To store objects in C++, a type is defined by the template parameters @a StringType which chooses the container (e.g., `std::string`) to use. Unicode values are split by the JSON class into byte-sized characters during deserialization. #### Default type With the default values for @a StringType (`std::string`), the default value for @a string_t is: @code {.cpp} std::string @endcode #### String comparison [RFC 7159](http://rfc7159.net/rfc7159) states: > Software implementations are typically required to test names of object > members for equality. Implementations that transform the textual > representation into sequences of Unicode code units and then perform the > comparison numerically, code unit by code unit, are interoperable in the > sense that implementations will agree in all cases on equality or > inequality of two strings. For example, implementations that compare > strings with escaped characters unconverted may incorrectly find that > `"a\\b"` and `"a\u005Cb"` are not equal. This implementation is interoperable as it does compare strings code unit by code unit. #### Storage String values are stored as pointers in a `basic_json` type. That is, for any access to string values, a pointer of type `string_t*` must be dereferenced. */ using string_t = StringType; /*! @brief a type for a boolean [RFC 7159](http://rfc7159.net/rfc7159) implicitly describes a boolean as a type which differentiates the two literals `true` and `false`. To store objects in C++, a type is defined by the template parameter @a BooleanType which chooses the type to use. #### Default type With the default values for @a BooleanType (`bool`), the default value for @a boolean_t is: @code {.cpp} bool @endcode #### Storage Boolean values are stored directly inside a `basic_json` type. */ using boolean_t = BooleanType; /*! @brief a type for a number (integer) [RFC 7159](http://rfc7159.net/rfc7159) describes numbers as follows: > The representation of numbers is similar to that used in most programming > languages. A number is represented in base 10 using decimal digits. It > contains an integer component that may be prefixed with an optional minus > sign, which may be followed by a fraction part and/or an exponent part. > Leading zeros are not allowed. (...) Numeric values that cannot be > represented in the grammar below (such as Infinity and NaN) are not > permitted. This description includes both integer and floating-point numbers. However, C++ allows more precise storage if it is known whether the number is an integer or a floating-point number. Therefore, two different types, @ref number_integer_t and @ref number_float_t are used. To store integer numbers in C++, a type is defined by the template parameter @a NumberIntegerType which chooses the type to use. #### Default type With the default values for @a NumberIntegerType (`int64_t`), the default value for @a number_integer_t is: @code {.cpp} int64_t @endcode #### Default behavior - The restrictions about leading zeros is not enforced in C++. Instead, leading zeros in integer literals lead to an interpretation as octal number. Internally, the value will be stored as decimal number. For instance, the C++ integer literal `010` will be serialized to `8`. During deserialization, leading zeros yield an error. - Not-a-number (NaN) values will be serialized to `null`. #### Limits [RFC 7159](http://rfc7159.net/rfc7159) specifies: > An implementation may set limits on the range and precision of numbers. When the default type is used, the maximal integer number that can be stored is `9223372036854775807` (INT64_MAX) and the minimal integer number that can be stored is `-9223372036854775808` (INT64_MIN). Integer numbers that are out of range will yield over/underflow when used in a constructor. During deserialization, too large or small integer numbers will be automatically be stored as @ref number_float_t. [RFC 7159](http://rfc7159.net/rfc7159) further states: > Note that when such software is used, numbers that are integers and are > in the range \f$[-2^{53}+1, 2^{53}-1]\f$ are interoperable in the sense > that implementations will agree exactly on their numeric values. As this range is a subrange of the exactly supported range [INT64_MIN, INT64_MAX], this class's integer type is interoperable. #### Storage Integer number values are stored directly inside a `basic_json` type. */ using number_integer_t = NumberIntegerType; /*! @brief a type for a number (floating-point) [RFC 7159](http://rfc7159.net/rfc7159) describes numbers as follows: > The representation of numbers is similar to that used in most programming > languages. A number is represented in base 10 using decimal digits. It > contains an integer component that may be prefixed with an optional minus > sign, which may be followed by a fraction part and/or an exponent part. > Leading zeros are not allowed. (...) Numeric values that cannot be > represented in the grammar below (such as Infinity and NaN) are not > permitted. This description includes both integer and floating-point numbers. However, C++ allows more precise storage if it is known whether the number is an integer or a floating-point number. Therefore, two different types, @ref number_integer_t and @ref number_float_t are used. To store floating-point numbers in C++, a type is defined by the template parameter @a NumberFloatType which chooses the type to use. #### Default type With the default values for @a NumberFloatType (`double`), the default value for @a number_float_t is: @code {.cpp} double @endcode #### Default behavior - The restrictions about leading zeros is not enforced in C++. Instead, leading zeros in floating-point literals will be ignored. Internally, the value will be stored as decimal number. For instance, the C++ floating-point literal `01.2` will be serialized to `1.2`. During deserialization, leading zeros yield an error. - Not-a-number (NaN) values will be serialized to `null`. #### Limits [RFC 7159](http://rfc7159.net/rfc7159) states: > This specification allows implementations to set limits on the range and > precision of numbers accepted. Since software that implements IEEE > 754-2008 binary64 (double precision) numbers is generally available and > widely used, good interoperability can be achieved by implementations that > expect no more precision or range than these provide, in the sense that > implementations will approximate JSON numbers within the expected > precision. This implementation does exactly follow this approach, as it uses double precision floating-point numbers. Note values smaller than `-1.79769313486232e+308` and values greather than `1.79769313486232e+308` will be stored as NaN internally and be serialized to `null`. #### Storage Floating-point number values are stored directly inside a `basic_json` type. */ using number_float_t = NumberFloatType; /// @} /////////////////////////// // JSON type enumeration // /////////////////////////// /*! @brief the JSON type enumeration This enumeration collects the different JSON types. It is internally used to distinguish the stored values, and the functions is_null, is_object, is_array, is_string, is_boolean, is_number, and is_discarded rely on it. */ enum class value_t : uint8_t { null, ///< null value object, ///< object (unordered set of name/value pairs) array, ///< array (ordered collection of values) string, ///< string value boolean, ///< boolean value number_integer, ///< number value (integer) number_float, ///< number value (floating-point) discarded ///< (internal) indicates the parser callback chose not to keep the value }; private: //////////////////////// // JSON value storage // //////////////////////// /// a JSON value union json_value { /// object (stored with pointer to save storage) object_t* object; /// array (stored with pointer to save storage) array_t* array; /// string (stored with pointer to save storage) string_t* string; /// boolean boolean_t boolean; /// number (integer) number_integer_t number_integer; /// number (floating-point) number_float_t number_float; /// default constructor (for null values) json_value() noexcept = default; /// constructor for booleans json_value(boolean_t v) noexcept : boolean(v) {} /// constructor for numbers (integer) json_value(number_integer_t v) noexcept : number_integer(v) {} /// constructor for numbers (floating-point) json_value(number_float_t v) noexcept : number_float(v) {} /// constructor for empty values of a given type json_value(value_t t) { switch (t) { case (value_t::null): case (value_t::discarded): { break; } case (value_t::object): { AllocatorType<object_t> alloc; object = alloc.allocate(1); alloc.construct(object); break; } case (value_t::array): { AllocatorType<array_t> alloc; array = alloc.allocate(1); alloc.construct(array); break; } case (value_t::string): { AllocatorType<string_t> alloc; string = alloc.allocate(1); alloc.construct(string, ""); break; } case (value_t::boolean): { boolean = boolean_t(false); break; } case (value_t::number_integer): { number_integer = number_integer_t(0); break; } case (value_t::number_float): { number_float = number_float_t(0.0); break; } } } /// constructor for strings json_value(const string_t& value) { AllocatorType<string_t> alloc; string = alloc.allocate(1); alloc.construct(string, value); } /// constructor for objects json_value(const object_t& value) { AllocatorType<object_t> alloc; object = alloc.allocate(1); alloc.construct(object, value); } /// constructor for arrays json_value(const array_t& value) { AllocatorType<array_t> alloc; array = alloc.allocate(1); alloc.construct(array, value); } }; public: ////////////////////////// // JSON parser callback // ////////////////////////// /*! @brief JSON callback events This enumeration lists the parser events that can trigger calling a callback function of type @ref parser_callback_t during parsing. */ enum class parse_event_t : uint8_t { /// the parser read `{` and started to process a JSON object object_start, /// the parser read `}` and finished processing a JSON object object_end, /// the parser read `[` and started to process a JSON array array_start, /// the parser read `]` and finished processing a JSON array array_end, /// the parser read a key of a value in an object key, /// the parser finished reading a JSON value value }; /*! @brief per-element parser callback type With a parser callback function, the result of parsing a JSON text can be influenced. When passed to @ref parse(std::istream&, parser_callback_t) or @ref parse(const string_t&, parser_callback_t), it is called on certain events (passed as @ref parse_event_t via parameter @a event) with a set recursion depth @a depth and context JSON value @a parsed. The return value of the callback function is a boolean indicating whether the element that emitted the callback shall be kept or not. We distinguish six scenarios (determined by the event type) in which the callback function can be called. The following table describes the values of the parameters @a depth, @a event, and @a parsed. parameter @a event | description | parameter @a depth | parameter @a parsed ------------------ | ----------- | ------------------ | ------------------- parse_event_t::object_start | the parser read `{` and started to process a JSON object | depth of the parent of the JSON object | a JSON value with type discarded parse_event_t::key | the parser read a key of a value in an object | depth of the currently parsed JSON object | a JSON string containing the key parse_event_t::object_end | the parser read `}` and finished processing a JSON object | depth of the parent of the JSON object | the parsed JSON object parse_event_t::array_start | the parser read `[` and started to process a JSON array | depth of the parent of the JSON array | a JSON value with type discarded parse_event_t::array_end | the parser read `]` and finished processing a JSON array | depth of the parent of the JSON array | the parsed JSON array parse_event_t::value | the parser finished reading a JSON value | depth of the value | the parsed JSON value Discarding a value (i.e., returning `false`) has different effects depending on the context in which function was called: - Discarded values in structured types are skipped. That is, the parser will behave as if the discarded value was never read. - In case a value outside a structured type is skipped, it is replaced with `null`. This case happens if the top-level element is skipped. @param[in] depth the depth of the recursion during parsing @param[in] event an event of type parse_event_t indicating the context in the callback function has been called @param[in,out] parsed the current intermediate parse result; note that writing to this value has no effect for parse_event_t::key events @return Whether the JSON value which called the function during parsing should be kept (`true`) or not (`false`). In the latter case, it is either skipped completely or replaced by an empty discarded object. @sa @ref parse(std::istream&, parser_callback_t) or @ref parse(const string_t&, parser_callback_t) for examples */ using parser_callback_t = std::function<bool( int depth, parse_event_t event, basic_json& parsed)>; ////////////////// // constructors // ////////////////// /*! @brief create an empty value with a given type Create an empty JSON value with a given type. The value will be default initialized with an empty value which depends on the type: Value type | initial value ----------- | ------------- null | `null` boolean | `false` string | `""` number | `0` object | `{}` array | `[]` @param[in] value the type of the value to create @complexity Constant. @throw std::bad_alloc if allocation for object, array, or string value fails @liveexample{The following code shows the constructor for different @ref value_t values,basic_json__value_t} */ basic_json(const value_t value) : m_type(value), m_value(value) {} /*! @brief create a null object (implicitly) Create a `null` JSON value. This is the implicit version of the `null` value constructor as it takes no parameters. @complexity Constant. @requirement This function satisfies the Container requirements: - The complexity is constant. - As postcondition, it holds: `basic_json().empty() == true`. @liveexample{The following code shows the constructor for a `null` JSON value.,basic_json} @sa basic_json(std::nullptr_t) @ingroup container */ basic_json() noexcept = default; /*! @brief create a null object (explicitly) Create a `null` JSON value. This is the explicitly version of the `null` value constructor as it takes a null pointer as parameter. It allows to create `null` values by explicitly assigning a @c nullptr to a JSON value. The passed null pointer itself is not read - it is only used to choose the right constructor. @complexity Constant. @liveexample{The following code shows the constructor with null pointer parameter.,basic_json__nullptr_t} @sa basic_json() */ basic_json(std::nullptr_t) noexcept : basic_json(value_t::null) {} /*! @brief create an object (explicit) Create an object JSON value with a given content. @param[in] value a value for the object @complexity Linear in the size of the passed @a value. @throw std::bad_alloc if allocation for object value fails @liveexample{The following code shows the constructor with an @ref object_t parameter.,basic_json__object_t} @sa basic_json(const CompatibleObjectType&) */ basic_json(const object_t& value) : m_type(value_t::object), m_value(value) {} /*! @brief create an object (implicit) Create an object JSON value with a given content. This constructor allows any type that can be used to construct values of type @ref object_t. Examples include the types `std::map` and `std::unordered_map`. @tparam CompatibleObjectType an object type whose `key_type` and `value_type` is compatible to @ref object_t @param[in] value a value for the object @complexity Linear in the size of the passed @a value. @throw std::bad_alloc if allocation for object value fails @liveexample{The following code shows the constructor with several compatible object type parameters.,basic_json__CompatibleObjectType} @sa basic_json(const object_t&) */ template <class CompatibleObjectType, typename std::enable_if< std::is_constructible<typename object_t::key_type, typename CompatibleObjectType::key_type>::value and std::is_constructible<basic_json, typename CompatibleObjectType::mapped_type>::value, int>::type = 0> basic_json(const CompatibleObjectType& value) : m_type(value_t::object) { AllocatorType<object_t> alloc; m_value.object = alloc.allocate(1); using std::begin; using std::end; alloc.construct(m_value.object, begin(value), end(value)); } /*! @brief create an array (explicit) Create an array JSON value with a given content. @param[in] value a value for the array @complexity Linear in the size of the passed @a value. @throw std::bad_alloc if allocation for array value fails @liveexample{The following code shows the constructor with an @ref array_t parameter.,basic_json__array_t} @sa basic_json(const CompatibleArrayType&) */ basic_json(const array_t& value) : m_type(value_t::array), m_value(value) {} /*! @brief create an array (implicit) Create an array JSON value with a given content. This constructor allows any type that can be used to construct values of type @ref array_t. Examples include the types `std::vector`, `std::list`, and `std::set`. @tparam CompatibleArrayType an object type whose `value_type` is compatible to @ref array_t @param[in] value a value for the array @complexity Linear in the size of the passed @a value. @throw std::bad_alloc if allocation for array value fails @liveexample{The following code shows the constructor with several compatible array type parameters.,basic_json__CompatibleArrayType} @sa basic_json(const array_t&) */ template <class CompatibleArrayType, typename std::enable_if< not std::is_same<CompatibleArrayType, typename basic_json_t::iterator>::value and not std::is_same<CompatibleArrayType, typename basic_json_t::const_iterator>::value and not std::is_same<CompatibleArrayType, typename basic_json_t::reverse_iterator>::value and not std::is_same<CompatibleArrayType, typename basic_json_t::const_reverse_iterator>::value and not std::is_same<CompatibleArrayType, typename array_t::iterator>::value and not std::is_same<CompatibleArrayType, typename array_t::const_iterator>::value and std::is_constructible<basic_json, typename CompatibleArrayType::value_type>::value, int>::type = 0> basic_json(const CompatibleArrayType& value) : m_type(value_t::array) { AllocatorType<array_t> alloc; m_value.array = alloc.allocate(1); using std::begin; using std::end; alloc.construct(m_value.array, begin(value), end(value)); } /*! @brief create a string (explicit) Create an string JSON value with a given content. @param[in] value a value for the string @complexity Linear in the size of the passed @a value. @throw std::bad_alloc if allocation for string value fails @liveexample{The following code shows the constructor with an @ref string_t parameter.,basic_json__string_t} @sa basic_json(const typename string_t::value_type*) @sa basic_json(const CompatibleStringType&) */ basic_json(const string_t& value) : m_type(value_t::string), m_value(value) {} /*! @brief create a string (explicit) Create a string JSON value with a given content. @param[in] value a literal value for the string @complexity Linear in the size of the passed @a value. @throw std::bad_alloc if allocation for string value fails @liveexample{The following code shows the constructor with string literal parameter.,basic_json__string_t_value_type} @sa basic_json(const string_t&) @sa basic_json(const CompatibleStringType&) */ basic_json(const typename string_t::value_type* value) : basic_json(string_t(value)) {} /*! @brief create a string (implicit) Create a string JSON value with a given content. @param[in] value a value for the string @tparam CompatibleStringType an string type which is compatible to @ref string_t @complexity Linear in the size of the passed @a value. @throw std::bad_alloc if allocation for string value fails @liveexample{The following code shows the construction of a string value from a compatible type.,basic_json__CompatibleStringType} @sa basic_json(const string_t&) */ template <class CompatibleStringType, typename std::enable_if< std::is_constructible<string_t, CompatibleStringType>::value, int>::type = 0> basic_json(const CompatibleStringType& value) : basic_json(string_t(value)) {} /*! @brief create a boolean (explicit) Creates a JSON boolean type from a given value. @param[in] value a boolean value to store @complexity Constant. @liveexample{The example below demonstrates boolean values.,basic_json__boolean_t} */ basic_json(boolean_t value) : m_type(value_t::boolean), m_value(value) {} /*! @brief create an integer number (explicit) Create an interger number JSON value with a given content. @tparam T helper type to compare number_integer_t and int (not visible in) the interface. @param[in] value an integer to create a JSON number from @note This constructor would have the same signature as @ref basic_json(const int value), so we need to switch this one off in case number_integer_t is the same as int. This is done via the helper type @a T. @complexity Constant. @liveexample{The example below shows the construction of a JSON integer number value.,basic_json__number_integer_t} @sa basic_json(const int) */ template<typename T, typename std::enable_if< not (std::is_same<T, int>::value) and std::is_same<T, number_integer_t>::value , int>::type = 0> basic_json(const number_integer_t value) : m_type(value_t::number_integer), m_value(value) {} /*! @brief create an integer number from an enum type (explicit) Create an integer number JSON value with a given content. @param[in] value an integer to create a JSON number from @note This constructor allows to pass enums directly to a constructor. As C++ has no way of specifying the type of an anonymous enum explicitly, we can only rely on the fact that such values implicitly convert to int. As int may already be the same type of number_integer_t, we may need to switch off the constructor @ref basic_json(const number_integer_t). @complexity Constant. @liveexample{The example below shows the construction of a JSON integer number value from an anonymous enum.,basic_json__const_int} @sa basic_json(const number_integer_t) */ basic_json(const int value) : m_type(value_t::number_integer), m_value(static_cast<number_integer_t>(value)) {} /*! @brief create an integer number (implicit) Create an integer number JSON value with a given content. This constructor allows any type that can be used to construct values of type @ref number_integer_t. Examples may include the types `int`, `int32_t`, or `short`. @tparam CompatibleNumberIntegerType an integer type which is compatible to @ref number_integer_t. @param[in] value an integer to create a JSON number from @complexity Constant. @liveexample{The example below shows the construction of several JSON integer number values from compatible types.,basic_json__CompatibleIntegerNumberType} @sa basic_json(const number_integer_t) */ template<typename CompatibleNumberIntegerType, typename std::enable_if< std::is_constructible<number_integer_t, CompatibleNumberIntegerType>::value and std::numeric_limits<CompatibleNumberIntegerType>::is_integer, CompatibleNumberIntegerType>::type = 0> basic_json(const CompatibleNumberIntegerType value) noexcept : m_type(value_t::number_integer), m_value(static_cast<number_integer_t>(value)) {} /*! @brief create a floating-point number (explicit) Create a floating-point number JSON value with a given content. @param[in] value a floating-point value to create a JSON number from @note RFC 7159 <http://www.rfc-editor.org/rfc/rfc7159.txt>, section 6 disallows NaN values: > Numeric values that cannot be represented in the grammar below (such > as Infinity and NaN) are not permitted. In case the parameter @a value is not a number, a JSON null value is created instead. @complexity Constant. @liveexample{The following example creates several floating-point values.,basic_json__number_float_t} */ basic_json(const number_float_t value) : m_type(value_t::number_float), m_value(value) { // replace infinity and NAN by null if (not std::isfinite(value)) { m_type = value_t::null; m_value = json_value(); } } /*! @brief create an floating-point number (implicit) Create an floating-point number JSON value with a given content. This constructor allows any type that can be used to construct values of type @ref number_float_t. Examples may include the types `float`. @tparam CompatibleNumberFloatType a floating-point type which is compatible to @ref number_float_t. @param[in] value a floating-point to create a JSON number from @note RFC 7159 <http://www.rfc-editor.org/rfc/rfc7159.txt>, section 6 disallows NaN values: > Numeric values that cannot be represented in the grammar below (such > as Infinity and NaN) are not permitted. In case the parameter @a value is not a number, a JSON null value is created instead. @complexity Constant. @liveexample{The example below shows the construction of several JSON floating-point number values from compatible types.,basic_json__CompatibleNumberFloatType} @sa basic_json(const number_float_t) */ template<typename CompatibleNumberFloatType, typename = typename std::enable_if< std::is_constructible<number_float_t, CompatibleNumberFloatType>::value and std::is_floating_point<CompatibleNumberFloatType>::value>::type > basic_json(const CompatibleNumberFloatType value) noexcept : basic_json(number_float_t(value)) {} /*! @brief create a container (array or object) from an initializer list Creates a JSON value of type array or object from the passed initializer list @a init. In case @a type_deduction is `true` (default), the type of the JSON value to be created is deducted from the initializer list @a init according to the following rules: 1. If the list is empty, an empty JSON object value `{}` is created. 2. If the list consists of pairs whose first element is a string, a JSON object value is created where the first elements of the pairs are treated as keys and the second elements are as values. 3. In all other cases, an array is created. The rules aim to create the best fit between a C++ initializer list and JSON values. The ratioinale is as follows: 1. The empty initializer list is written as `{}` which is exactly an empty JSON object. 2. C++ has now way of describing mapped types other than to list a list of pairs. As JSON requires that keys must be of type string, rule 2 is the weakest constraint one can pose on initializer lists to interpret them as an object. 3. In all other cases, the initializer list could not be interpreted as JSON object type, so interpreting it as JSON array type is safe. With the rules described above, the following JSON values cannot be expressed by an initializer list: - the empty array (`[]`): use @ref array(std::initializer_list<basic_json>) with an empty initializer list in this case - arrays whose elements satisfy rule 2: use @ref array(std::initializer_list<basic_json>) with the same initializer list in this case @note When used without parentheses around an empty initializer list, @ref basic_json() is called instead of this function, yielding the JSON null value. @param[in] init initializer list with JSON values @param[in] type_deduction internal parameter; when set to `true`, the type of the JSON value is deducted from the initializer list @a init; when set to `false`, the type provided via @a manual_type is forced. This mode is used by the functions @ref array(std::initializer_list<basic_json>) and @ref object(std::initializer_list<basic_json>). @param[in] manual_type internal parameter; when @a type_deduction is set to `false`, the created JSON value will use the provided type (only @ref value_t::array and @ref value_t::object are valid); when @a type_deduction is set to `true`, this parameter has no effect @throw std::domain_error if @a type_deduction is `false`, @a manual_type is `value_t::object`, but @a init contains an element which is not a pair whose first element is a string @complexity Linear in the size of the initializer list @a init. @liveexample{The example below shows how JSON values are created from initializer lists,basic_json__list_init_t} @sa basic_json array(std::initializer_list<basic_json>) - create a JSON array value from an initializer list @sa basic_json object(std::initializer_list<basic_json>) - create a JSON object value from an initializer list */ basic_json(std::initializer_list<basic_json> init, bool type_deduction = true, value_t manual_type = value_t::array) { // the initializer list could describe an object bool is_object = true; // check if each element is an array with two elements whose first element // is a string for (const auto& element : init) { if (element.m_type != value_t::array or element.size() != 2 or element[0].m_type != value_t::string) { // we found an element that makes it impossible to use the // initializer list as object is_object = false; break; } } // adjust type if type deduction is not wanted if (not type_deduction) { // if array is wanted, do not create an object though possible if (manual_type == value_t::array) { is_object = false; } // if object is wanted but impossible, throw an exception if (manual_type == value_t::object and not is_object) { throw std::domain_error("cannot create object from initializer list"); } } if (is_object) { // the initializer list is a list of pairs -> create object m_type = value_t::object; m_value = value_t::object; for (auto& element : init) { m_value.object->emplace(std::move(*(element[0].m_value.string)), std::move(element[1])); } } else { // the initializer list describes an array -> create array m_type = value_t::array; AllocatorType<array_t> alloc; m_value.array = alloc.allocate(1); alloc.construct(m_value.array, std::move(init)); } } /*! @brief explicitly create an array from an initializer list Creates a JSON array value from a given initializer list. That is, given a list of values `a, b, c`, creates the JSON value `[a, b, c]`. If the initializer list is empty, the empty array `[]` is created. @note This function is only needed to express two edge cases that cannot be realized with the initializer list constructor (@ref basic_json(std::initializer_list<basic_json>, bool, value_t)). These cases are: 1. creating an array whose elements are all pairs whose first element is a string - in this case, the initializer list constructor would create an object, taking the first elements as keys 2. creating an empty array - passing the empty initializer list to the initializer list constructor yields an empty object @param[in] init initializer list with JSON values to create an array from (optional) @return JSON array value @complexity Linear in the size of @a init. @liveexample{The following code shows an example for the @ref array function.,array} @sa basic_json(std::initializer_list<basic_json>, bool, value_t) - create a JSON value from an initializer list @sa basic_json object(std::initializer_list<basic_json>) - create a JSON object value from an initializer list */ static basic_json array(std::initializer_list<basic_json> init = std::initializer_list<basic_json>()) { return basic_json(init, false, value_t::array); } /*! @brief explicitly create an object from an initializer list Creates a JSON object value from a given initializer list. The initializer lists elements must be pairs, and their first elments must be strings. If the initializer list is empty, the empty object `{}` is created. @note This function is only added for symmetry reasons. In contrast to the related function @ref basic_json array(std::initializer_list<basic_json>), there are no cases which can only be expressed by this function. That is, any initializer list @a init can also be passed to the initializer list constructor @ref basic_json(std::initializer_list<basic_json>, bool, value_t). @param[in] init initializer list to create an object from (optional) @return JSON object value @throw std::domain_error if @a init is not a pair whose first elements are strings; thrown by @ref basic_json(std::initializer_list<basic_json>, bool, value_t) @complexity Linear in the size of @a init. @liveexample{The following code shows an example for the @ref object function.,object} @sa basic_json(std::initializer_list<basic_json>, bool, value_t) - create a JSON value from an initializer list @sa basic_json array(std::initializer_list<basic_json>) - create a JSON array value from an initializer list */ static basic_json object(std::initializer_list<basic_json> init = std::initializer_list<basic_json>()) { return basic_json(init, false, value_t::object); } /*! @brief construct an array with count copies of given value Constructs a JSON array value by creating @a count copies of a passed value. In case @a count is `0`, an empty array is created. As postcondition, `std::distance(begin(),end()) == count` holds. @param[in] count the number of JSON copies of @a value to create @param[in] value the JSON value to copy @complexity Linear in @a count. @liveexample{The following code shows examples for the @ref basic_json(size_type\, const basic_json&) constructor.,basic_json__size_type_basic_json} */ basic_json(size_type count, const basic_json& value) : m_type(value_t::array) { AllocatorType<array_t> alloc; m_value.array = alloc.allocate(1); alloc.construct(m_value.array, count, value); } /*! @brief construct a JSON container given an iterator range Constructs the JSON value with the contents of the range `[first, last)`. The semantics depends on the different types a JSON value can have: - In case of primitive types (number, boolean, or string), @a first must be `begin()` and @a last must be `end()`. In this case, the value is copied. Otherwise, std::out_of_range is thrown. - In case of structured types (array, object), the constructor behaves as similar versions for `std::vector`. - In case of a null type, std::domain_error is thrown. @tparam InputIT an input iterator type (@ref iterator or @ref const_iterator) @param[in] first begin of the range to copy from (included) @param[in] last end of the range to copy from (excluded) @throw std::domain_error if iterators are not compatible; that is, do not belong to the same JSON value @throw std::out_of_range if iterators are for a primitive type (number, boolean, or string) where an out of range error can be detected easily @throw std::bad_alloc if allocation for object, array, or string fails @throw std::domain_error if called with a null value @complexity Linear in distance between @a first and @a last. @liveexample{The example below shows several ways to create JSON values by specifying a subrange with iterators.,basic_json__InputIt_InputIt} */ template <class InputIT, typename std::enable_if< std::is_same<InputIT, typename basic_json_t::iterator>::value or std::is_same<InputIT, typename basic_json_t::const_iterator>::value , int>::type = 0> basic_json(InputIT first, InputIT last) : m_type(first.m_object->m_type) { // make sure iterator fits the current value if (first.m_object != last.m_object) { throw std::domain_error("iterators are not compatible"); } // check if iterator range is complete for primitive values switch (m_type) { case value_t::number_integer: case value_t::number_float: case value_t::boolean: case value_t::string: { if (not first.m_it.primitive_iterator.is_begin() or not last.m_it.primitive_iterator.is_end()) { throw std::out_of_range("iterators out of range"); } break; } default: { break; } } switch (m_type) { case value_t::number_integer: { m_value.number_integer = first.m_object->m_value.number_integer; break; } case value_t::number_float: { m_value.number_float = first.m_object->m_value.number_float; break; } case value_t::boolean: { m_value.boolean = first.m_object->m_value.boolean; break; } case value_t::string: { m_value = *first.m_object->m_value.string; break; } case value_t::object: { AllocatorType<object_t> alloc; m_value.object = alloc.allocate(1); alloc.construct(m_value.object, first.m_it.object_iterator, last.m_it.object_iterator); break; } case value_t::array: { AllocatorType<array_t> alloc; m_value.array = alloc.allocate(1); alloc.construct(m_value.array, first.m_it.array_iterator, last.m_it.array_iterator); break; } default: { throw std::domain_error("cannot use construct with iterators from " + first.m_object->type_name()); } } } /////////////////////////////////////// // other constructors and destructor // /////////////////////////////////////// /*! @brief copy constructor Creates a copy of a given JSON value. @param[in] other the JSON value to copy @complexity Linear in the size of @a other. @requirement This function satisfies the Container requirements: - The complexity is linear. - As postcondition, it holds: `other == basic_json(other)`. @throw std::bad_alloc if allocation for object, array, or string fails. @liveexample{The following code shows an example for the copy constructor.,basic_jsonbasic_json_t} @ingroup container */ basic_json(const basic_json& other) : m_type(other.m_type) { switch (m_type) { case (value_t::null): case (value_t::discarded): { break; } case (value_t::object): { m_value = *other.m_value.object; break; } case (value_t::array): { m_value = *other.m_value.array; break; } case (value_t::string): { m_value = *other.m_value.string; break; } case (value_t::boolean): { m_value = other.m_value.boolean; break; } case (value_t::number_integer): { m_value = other.m_value.number_integer; break; } case (value_t::number_float): { m_value = other.m_value.number_float; break; } } } /*! @brief move constructor Move constructor. Constructs a JSON value with the contents of the given value @a other using move semantics. It "steals" the resources from @a other and leaves it as JSON null value. @param[in,out] other value to move to this object @post @a other is a JSON null value @complexity Constant. @liveexample{The code below shows the move constructor explicitly called via std::move.,basic_json__moveconstructor} */ basic_json(basic_json&& other) noexcept : m_type(std::move(other.m_type)), m_value(std::move(other.m_value)) { // invalidate payload other.m_type = value_t::null; other.m_value = {}; } /*! @brief copy assignment Copy assignment operator. Copies a JSON value via the "copy and swap" strategy: It is expressed in terms of the copy constructor, destructor, and the swap() member function. @param[in] other value to copy from @complexity Linear. @requirement This function satisfies the Container requirements: - The complexity is linear. @liveexample{The code below shows and example for the copy assignment. It creates a copy of value `a` which is then swapped with `b`. Finally\, the copy of `a` (which is the null value after the swap) is destroyed.,basic_json__copyassignment} @ingroup container */ reference& operator=(basic_json other) noexcept ( std::is_nothrow_move_constructible<value_t>::value and std::is_nothrow_move_assignable<value_t>::value and std::is_nothrow_move_constructible<json_value>::value and std::is_nothrow_move_assignable<json_value>::value ) { using std::swap; std::swap(m_type, other.m_type); std::swap(m_value, other.m_value); return *this; } /*! @brief destructor Destroys the JSON value and frees all allocated memory. @complexity Linear. @requirement This function satisfies the Container requirements: - The complexity is linear. - All stored elements are destroyed and all memory is freed. @ingroup container */ ~basic_json() { switch (m_type) { case (value_t::object): { AllocatorType<object_t> alloc; alloc.destroy(m_value.object); alloc.deallocate(m_value.object, 1); m_value.object = nullptr; break; } case (value_t::array): { AllocatorType<array_t> alloc; alloc.destroy(m_value.array); alloc.deallocate(m_value.array, 1); m_value.array = nullptr; break; } case (value_t::string): { AllocatorType<string_t> alloc; alloc.destroy(m_value.string); alloc.deallocate(m_value.string, 1); m_value.string = nullptr; break; } default: { // all other types need no specific destructor break; } } } public: /////////////////////// // object inspection // /////////////////////// /// @name object inspection /// @{ /*! @brief serialization Serialization function for JSON values. The function tries to mimick Python's @p json.dumps() function, and currently supports its @p indent parameter. @param[in] indent if indent is nonnegative, then array elements and object members will be pretty-printed with that indent level. An indent level of 0 will only insert newlines. -1 (the default) selects the most compact representation @return string containing the serialization of the JSON value @complexity Linear. @liveexample{The following example shows the effect of different @a indent parameters to the result of the serializaion.,dump} @see https://docs.python.org/2/library/json.html#json.dump */ string_t dump(const int indent = -1) const { std::stringstream ss; if (indent >= 0) { dump(ss, true, static_cast<unsigned int>(indent)); } else { dump(ss, false, 0); } return ss.str(); } /*! @brief return the type of the JSON value (explicit) Return the type of the JSON value as a value from the @ref value_t enumeration. @return the type of the JSON value @complexity Constant. @liveexample{The following code exemplifies @ref type() for all JSON types.,type} */ value_t type() const noexcept { return m_type; } /*! @brief return whether type is primitive This function returns true iff the JSON type is primitive (string, number, boolean, or null). @return `true` if type is primitive (string, number, boolean, or null), `false` otherwise. @complexity Constant. @liveexample{The following code exemplifies @ref is_primitive for all JSON types.,is_primitive} */ bool is_primitive() const noexcept { return is_null() or is_string() or is_boolean() or is_number(); } /*! @brief return whether type is structured This function returns true iff the JSON type is structured (array or object). @return `true` if type is structured (array or object), `false` otherwise. @complexity Constant. @liveexample{The following code exemplifies @ref is_structured for all JSON types.,is_structured} */ bool is_structured() const noexcept { return is_array() or is_object(); } /*! @brief return whether value is null This function returns true iff the JSON value is null. @return `true` if type is null, `false` otherwise. @complexity Constant. @liveexample{The following code exemplifies @ref is_null for all JSON types.,is_null} */ bool is_null() const noexcept { return m_type == value_t::null; } /*! @brief return whether value is a boolean This function returns true iff the JSON value is a boolean. @return `true` if type is boolean, `false` otherwise. @complexity Constant. @liveexample{The following code exemplifies @ref is_boolean for all JSON types.,is_boolean} */ bool is_boolean() const noexcept { return m_type == value_t::boolean; } /*! @brief return whether value is a number This function returns true iff the JSON value is a number. This includes both integer and floating-point values. @return `true` if type is number, `false` otherwise. @complexity Constant. @liveexample{The following code exemplifies @ref is_number for all JSON types.,is_number} */ bool is_number() const noexcept { return is_number_integer() or is_number_float(); } /*! @brief return whether value is an integer number This function returns true iff the JSON value is an integer number. This excludes floating-point values. @return `true` if type is an integer number, `false` otherwise. @complexity Constant. @liveexample{The following code exemplifies @ref is_number_integer for all JSON types.,is_number_integer} */ bool is_number_integer() const noexcept { return m_type == value_t::number_integer; } /*! @brief return whether value is a floating-point number This function returns true iff the JSON value is a floating-point number. This excludes integer values. @return `true` if type is a floating-point number, `false` otherwise. @complexity Constant. @liveexample{The following code exemplifies @ref is_number_float for all JSON types.,is_number_float} */ bool is_number_float() const noexcept { return m_type == value_t::number_float; } /*! @brief return whether value is an object This function returns true iff the JSON value is an object. @return `true` if type is object, `false` otherwise. @complexity Constant. @liveexample{The following code exemplifies @ref is_object for all JSON types.,is_object} */ bool is_object() const noexcept { return m_type == value_t::object; } /*! @brief return whether value is an array This function returns true iff the JSON value is an array. @return `true` if type is array, `false` otherwise. @complexity Constant. @liveexample{The following code exemplifies @ref is_array for all JSON types.,is_array} */ bool is_array() const noexcept { return m_type == value_t::array; } /*! @brief return whether value is a string This function returns true iff the JSON value is a string. @return `true` if type is string, `false` otherwise. @complexity Constant. @liveexample{The following code exemplifies @ref is_string for all JSON types.,is_string} */ bool is_string() const noexcept { return m_type == value_t::string; } /*! @brief return whether value is discarded This function returns true iff the JSON value was discarded during parsing with a callback function (see @ref parser_callback_t). @note This function will always be `false` for JSON values after parsing. That is, discarded values can only occur during parsing, but will be removed when inside a structured value or replaced by null in other cases. @return `true` if type is discarded, `false` otherwise. @complexity Constant. @liveexample{The following code exemplifies @ref is_discarded for all JSON types.,is_discarded} */ bool is_discarded() const noexcept { return m_type == value_t::discarded; } /*! @brief return the type of the JSON value (implicit) Implicitly return the type of the JSON value as a value from the @ref value_t enumeration. @return the type of the JSON value @complexity Constant. @liveexample{The following code exemplifies the value_t operator for all JSON types.,operator__value_t} */ operator value_t() const noexcept { return m_type; } /// @} private: ////////////////// // value access // ////////////////// /// get an object (explicit) template <class T, typename std::enable_if< std::is_convertible<typename object_t::key_type, typename T::key_type>::value and std::is_convertible<basic_json_t, typename T::mapped_type>::value , int>::type = 0> T get_impl(T*) const { switch (m_type) { case (value_t::object): { return T(m_value.object->begin(), m_value.object->end()); } default: { throw std::domain_error("type must be object, but is " + type_name()); } } } /// get an object (explicit) object_t get_impl(object_t*) const { switch (m_type) { case (value_t::object): { return *(m_value.object); } default: { throw std::domain_error("type must be object, but is " + type_name()); } } } /// get an array (explicit) template <class T, typename std::enable_if< std::is_convertible<basic_json_t, typename T::value_type>::value and not std::is_same<basic_json_t, typename T::value_type>::value and not std::is_arithmetic<T>::value and not std::is_convertible<std::string, T>::value and not has_mapped_type<T>::value , int>::type = 0> T get_impl(T*) const { switch (m_type) { case (value_t::array): { T to_vector; std::transform(m_value.array->begin(), m_value.array->end(), std::inserter(to_vector, to_vector.end()), [](basic_json i) { return i.get<typename T::value_type>(); }); return to_vector; } default: { throw std::domain_error("type must be array, but is " + type_name()); } } } /// get an array (explicit) template <class T, typename std::enable_if< std::is_convertible<basic_json_t, T>::value and not std::is_same<basic_json_t, T>::value , int>::type = 0> std::vector<T> get_impl(std::vector<T>*) const { switch (m_type) { case (value_t::array): { std::vector<T> to_vector; to_vector.reserve(m_value.array->size()); std::transform(m_value.array->begin(), m_value.array->end(), std::inserter(to_vector, to_vector.end()), [](basic_json i) { return i.get<T>(); }); return to_vector; } default: { throw std::domain_error("type must be array, but is " + type_name()); } } } /// get an array (explicit) template <class T, typename std::enable_if< std::is_same<basic_json, typename T::value_type>::value and not has_mapped_type<T>::value , int>::type = 0> T get_impl(T*) const { switch (m_type) { case (value_t::array): { return T(m_value.array->begin(), m_value.array->end()); } default: { throw std::domain_error("type must be array, but is " + type_name()); } } } /// get an array (explicit) array_t get_impl(array_t*) const { switch (m_type) { case (value_t::array): { return *(m_value.array); } default: { throw std::domain_error("type must be array, but is " + type_name()); } } } /// get a string (explicit) template <typename T, typename std::enable_if< std::is_convertible<string_t, T>::value , int>::type = 0> T get_impl(T*) const { switch (m_type) { case (value_t::string): { return *m_value.string; } default: { throw std::domain_error("type must be string, but is " + type_name()); } } } /// get a number (explicit) template<typename T, typename std::enable_if< std::is_arithmetic<T>::value , int>::type = 0> T get_impl(T*) const { switch (m_type) { case (value_t::number_integer): { return static_cast<T>(m_value.number_integer); } case (value_t::number_float): { return static_cast<T>(m_value.number_float); } default: { throw std::domain_error("type must be number, but is " + type_name()); } } } /// get a boolean (explicit) boolean_t get_impl(boolean_t*) const { switch (m_type) { case (value_t::boolean): { return m_value.boolean; } default: { throw std::domain_error("type must be boolean, but is " + type_name()); } } } /// get a pointer to the value (object) object_t* get_impl_ptr(object_t*) noexcept { return is_object() ? m_value.object : nullptr; } /// get a pointer to the value (object) const object_t* get_impl_ptr(const object_t*) const noexcept { return is_object() ? m_value.object : nullptr; } /// get a pointer to the value (array) array_t* get_impl_ptr(array_t*) noexcept { return is_array() ? m_value.array : nullptr; } /// get a pointer to the value (array) const array_t* get_impl_ptr(const array_t*) const noexcept { return is_array() ? m_value.array : nullptr; } /// get a pointer to the value (string) string_t* get_impl_ptr(string_t*) noexcept { return is_string() ? m_value.string : nullptr; } /// get a pointer to the value (string) const string_t* get_impl_ptr(const string_t*) const noexcept { return is_string() ? m_value.string : nullptr; } /// get a pointer to the value (boolean) boolean_t* get_impl_ptr(boolean_t*) noexcept { return is_boolean() ? &m_value.boolean : nullptr; } /// get a pointer to the value (boolean) const boolean_t* get_impl_ptr(const boolean_t*) const noexcept { return is_boolean() ? &m_value.boolean : nullptr; } /// get a pointer to the value (integer number) number_integer_t* get_impl_ptr(number_integer_t*) noexcept { return is_number_integer() ? &m_value.number_integer : nullptr; } /// get a pointer to the value (integer number) const number_integer_t* get_impl_ptr(const number_integer_t*) const noexcept { return is_number_integer() ? &m_value.number_integer : nullptr; } /// get a pointer to the value (floating-point number) number_float_t* get_impl_ptr(number_float_t*) noexcept { return is_number_float() ? &m_value.number_float : nullptr; } /// get a pointer to the value (floating-point number) const number_float_t* get_impl_ptr(const number_float_t*) const noexcept { return is_number_float() ? &m_value.number_float : nullptr; } public: /// @name value access /// @{ /*! @brief get a value (explicit) Explicit type conversion between the JSON value and a compatible value. @tparam ValueType non-pointer type compatible to the JSON value, for instance `int` for JSON integer numbers, `bool` for JSON booleans, or `std::vector` types for JSON arrays @return copy of the JSON value, converted to type @a ValueType @throw std::domain_error in case passed type @a ValueType is incompatible to JSON @complexity Linear in the size of the JSON value. @liveexample{The example below shows serveral conversions from JSON values to other types. There a few things to note: (1) Floating-point numbers can be converted to integers\, (2) A JSON array can be converted to a standard `std::vector<short>`\, (3) A JSON object can be converted to C++ assiciative containers such as `std::unordered_map<std::string\, json>`.,get__ValueType_const} @internal The idea of using a casted null pointer to choose the correct implementation is from <http://stackoverflow.com/a/8315197/266378>. @endinternal @sa @ref operator ValueType() const for implicit conversion @sa @ref get() for pointer-member access */ template<typename ValueType, typename std::enable_if< not std::is_pointer<ValueType>::value , int>::type = 0> ValueType get() const { return get_impl(static_cast<ValueType*>(nullptr)); } /*! @brief get a pointer value (explicit) Explicit pointer access to the internally stored JSON value. No copies are made. @warning Writing data to the pointee of the result yields an undefined state. @tparam PointerType pointer type; must be a pointer to @ref array_t, @ref object_t, @ref string_t, @ref boolean_t, @ref number_integer_t, or @ref number_float_t. @return pointer to the internally stored JSON value if the requested pointer type @a PointerType fits to the JSON value; `nullptr` otherwise @complexity Constant. @liveexample{The example below shows how pointers to internal values of a JSON value can be requested. Note that no type conversions are made and a `nullptr` is returned if the value and the requested pointer type does not match.,get__PointerType} @sa @ref get_ptr() for explicit pointer-member access */ template<typename PointerType, typename std::enable_if< std::is_pointer<PointerType>::value , int>::type = 0> PointerType get() noexcept { // delegate the call to get_ptr return get_ptr<PointerType>(); } /*! @brief get a pointer value (explicit) @copydoc get() */ template<typename PointerType, typename std::enable_if< std::is_pointer<PointerType>::value , int>::type = 0> const PointerType get() const noexcept { // delegate the call to get_ptr return get_ptr<PointerType>(); } /*! @brief get a pointer value (implicit) Implict pointer access to the internally stored JSON value. No copies are made. @warning Writing data to the pointee of the result yields an undefined state. @tparam PointerType pointer type; must be a pointer to @ref array_t, @ref object_t, @ref string_t, @ref boolean_t, @ref number_integer_t, or @ref number_float_t. @return pointer to the internally stored JSON value if the requested pointer type @a PointerType fits to the JSON value; `nullptr` otherwise @complexity Constant. @liveexample{The example below shows how pointers to internal values of a JSON value can be requested. Note that no type conversions are made and a `nullptr` is returned if the value and the requested pointer type does not match.,get_ptr} */ template<typename PointerType, typename std::enable_if< std::is_pointer<PointerType>::value , int>::type = 0> PointerType get_ptr() noexcept { // delegate the call to get_impl_ptr<>() return get_impl_ptr(static_cast<PointerType>(nullptr)); } /*! @brief get a pointer value (implicit) @copydoc get_ptr() */ template<typename PointerType, typename std::enable_if< std::is_pointer<PointerType>::value and std::is_const<PointerType>::value , int>::type = 0> const PointerType get_ptr() const noexcept { // delegate the call to get_impl_ptr<>() const return get_impl_ptr(static_cast<const PointerType>(nullptr)); } /*! @brief get a value (implicit) Implict type conversion between the JSON value and a compatible value. The call is realized by calling @ref get() const. @tparam ValueType non-pointer type compatible to the JSON value, for instance `int` for JSON integer numbers, `bool` for JSON booleans, or `std::vector` types for JSON arrays @return copy of the JSON value, converted to type @a ValueType @throw std::domain_error in case passed type @a ValueType is incompatible to JSON, thrown by @ref get() const @complexity Linear in the size of the JSON value. @liveexample{The example below shows serveral conversions from JSON values to other types. There a few things to note: (1) Floating-point numbers can be converted to integers\, (2) A JSON array can be converted to a standard `std::vector<short>`\, (3) A JSON object can be converted to C++ assiciative containers such as `std::unordered_map<std::string\, json>`.,operator__ValueType} */ template<typename ValueType, typename std::enable_if< not std::is_pointer<ValueType>::value , int>::type = 0> operator ValueType() const { // delegate the call to get<>() const return get<ValueType>(); } /// @} //////////////////// // element access // //////////////////// /// @name element access /// @{ /*! @brief access specified array element with bounds checking Returns a reference to the element at specified location @a idx, with bounds checking. @param[in] idx index of the element to access @return reference to the element at index @a idx @throw std::domain_error if JSON is not an array @throw std::out_of_range if the index @a idx is out of range of the array; that is, `idx >= size()` @complexity Constant. @liveexample{The example below shows how array elements can be read and written using at.,at__size_type} */ reference at(size_type idx) { // at only works for arrays if (m_type != value_t::array) { throw std::domain_error("cannot use at() with " + type_name()); } return m_value.array->at(idx); } /*! @brief access specified array element with bounds checking Returns a const reference to the element at specified location @a idx, with bounds checking. @param[in] idx index of the element to access @return const reference to the element at index @a idx @throw std::domain_error if JSON is not an array @throw std::out_of_range if the index @a idx is out of range of the array; that is, `idx >= size()` @complexity Constant. @liveexample{The example below shows how array elements can be read using at.,at__size_type_const} */ const_reference at(size_type idx) const { // at only works for arrays if (m_type != value_t::array) { throw std::domain_error("cannot use at() with " + type_name()); } return m_value.array->at(idx); } /*! @brief access specified object element with bounds checking Returns a reference to the element at with specified key @a key, with bounds checking. @param[in] key key of the element to access @return reference to the element at key @a key @throw std::domain_error if JSON is not an object @throw std::out_of_range if the key @a key is is not stored in the object; that is, `find(key) == end()` @complexity Logarithmic in the size of the container. @liveexample{The example below shows how object elements can be read and written using at.,at__object_t_key_type} */ reference at(const typename object_t::key_type& key) { // at only works for objects if (m_type != value_t::object) { throw std::domain_error("cannot use at() with " + type_name()); } return m_value.object->at(key); } /*! @brief access specified object element with bounds checking Returns a const reference to the element at with specified key @a key, with bounds checking. @param[in] key key of the element to access @return const reference to the element at key @a key @throw std::domain_error if JSON is not an object @throw std::out_of_range if the key @a key is is not stored in the object; that is, `find(key) == end()` @complexity Logarithmic in the size of the container. @liveexample{The example below shows how object elements can be read using at.,at__object_t_key_type_const} */ const_reference at(const typename object_t::key_type& key) const { // at only works for objects if (m_type != value_t::object) { throw std::domain_error("cannot use at() with " + type_name()); } return m_value.object->at(key); } /*! @brief access specified array element Returns a reference to the element at specified location @a idx. @note If @a idx is beyond the range of the array (i.e., `idx >= size()`), then the array is silently filled up with `null` values to make `idx` a valid reference to the last stored element. @param[in] idx index of the element to access @return reference to the element at index @a idx @throw std::domain_error if JSON is not an array or null @complexity Constant if @a idx is in the range of the array. Otherwise linear in `idx - size()`. @liveexample{The example below shows how array elements can be read and written using [] operator. Note the addition of `null` values.,operatorarray__size_type} */ reference operator[](size_type idx) { // implicitly convert null to object if (m_type == value_t::null) { m_type = value_t::array; AllocatorType<array_t> alloc; m_value.array = alloc.allocate(1); alloc.construct(m_value.array); } // [] only works for arrays if (m_type != value_t::array) { throw std::domain_error("cannot use operator[] with " + type_name()); } for (size_t i = m_value.array->size(); i <= idx; ++i) { m_value.array->push_back(basic_json()); } return m_value.array->operator[](idx); } /*! @brief access specified array element Returns a const reference to the element at specified location @a idx. @param[in] idx index of the element to access @return const reference to the element at index @a idx @throw std::domain_error if JSON is not an array @complexity Constant. @liveexample{The example below shows how array elements can be read using the [] operator.,operatorarray__size_type_const} */ const_reference operator[](size_type idx) const { // at only works for arrays if (m_type != value_t::array) { throw std::domain_error("cannot use operator[] with " + type_name()); } return m_value.array->operator[](idx); } /*! @brief access specified object element Returns a reference to the element at with specified key @a key. @note If @a key is not found in the object, then it is silently added to the object and filled with a `null` value to make `key` a valid reference. In case the value was `null` before, it is converted to an object. @param[in] key key of the element to access @return reference to the element at key @a key @throw std::domain_error if JSON is not an object or null @complexity Logarithmic in the size of the container. @liveexample{The example below shows how object elements can be read and written using the [] operator.,operatorarray__key_type} */ reference operator[](const typename object_t::key_type& key) { // implicitly convert null to object if (m_type == value_t::null) { m_type = value_t::object; AllocatorType<object_t> alloc; m_value.object = alloc.allocate(1); alloc.construct(m_value.object); } // [] only works for objects if (m_type != value_t::object) { throw std::domain_error("cannot use operator[] with " + type_name()); } return m_value.object->operator[](key); } /*! @brief access specified object element Returns a reference to the element at with specified key @a key. @param[in] key key of the element to access @return reference to the element at key @a key @throw std::domain_error if JSON is not an object or null @complexity Logarithmic in the size of the container. @liveexample{The example below shows how object elements can be read using the [] operator.,operatorarray__key_type_const} */ const_reference operator[](const typename object_t::key_type& key) const { // at only works for objects if (m_type != value_t::object) { throw std::domain_error("cannot use operator[] with " + type_name()); } return m_value.object->operator[](key); } /*! @brief access specified object element Returns a reference to the element at with specified key @a key. @note If @a key is not found in the object, then it is silently added to the object and filled with a `null` value to make `key` a valid reference. In case the value was `null` before, it is converted to an object. @note This function is required for compatibility reasons with Clang. @param[in] key key of the element to access @return reference to the element at key @a key @throw std::domain_error if JSON is not an object or null @complexity Logarithmic in the size of the container. @liveexample{The example below shows how object elements can be read and written using the [] operator.,operatorarray__key_type} */ template<typename T, std::size_t n> reference operator[](const T (&key)[n]) { // implicitly convert null to object if (m_type == value_t::null) { m_type = value_t::object; m_value = value_t::object; } // at only works for objects if (m_type != value_t::object) { throw std::domain_error("cannot use operator[] with " + type_name()); } return m_value.object->operator[](key); } /*! @brief access specified object element Returns a reference to the element at with specified key @a key. @note This function is required for compatibility reasons with Clang. @param[in] key key of the element to access @return reference to the element at key @a key @throw std::domain_error if JSON is not an object or null @complexity Logarithmic in the size of the container. @liveexample{The example below shows how object elements can be read using the [] operator.,operatorarray__key_type_const} */ template<typename T, std::size_t n> const_reference operator[](const T (&key)[n]) const { // at only works for objects if (m_type != value_t::object) { throw std::domain_error("cannot use operator[] with " + type_name()); } return m_value.object->operator[](key); } /*! @brief access the first element Returns a reference to the first element in the container. For a JSON container `c`, the expression `c.front()` is equivalent to `*c.begin()`. @return In case of a structured type (array or object), a reference to the first element is returned. In cast of number, string, or boolean values, a reference to the value is returned. @complexity Constant. @note Calling `front` on an empty container is undefined. @throw std::out_of_range when called on null value @liveexample{The following code shows an example for @ref front.,front} */ reference front() { return *begin(); } /*! @copydoc basic_json::front() */ const_reference front() const { return *cbegin(); } /*! @brief access the last element Returns a reference to the last element in the container. For a JSON container `c`, the expression `c.back()` is equivalent to `{ auto tmp = c.end(); --tmp; return *tmp; }`. @return In case of a structured type (array or object), a reference to the last element is returned. In cast of number, string, or boolean values, a reference to the value is returned. @complexity Constant. @note Calling `back` on an empty container is undefined. @throw std::out_of_range when called on null value. @liveexample{The following code shows an example for @ref back.,back} */ reference back() { auto tmp = end(); --tmp; return *tmp; } /*! @copydoc basic_json::back() */ const_reference back() const { auto tmp = cend(); --tmp; return *tmp; } /*! @brief remove element given an iterator Removes the element specified by iterator @a pos. Invalidates iterators and references at or after the point of the erase, including the end() iterator. The iterator @a pos must be valid and dereferenceable. Thus the end() iterator (which is valid, but is not dereferencable) cannot be used as a value for @a pos. If called on a primitive type other than null, the resulting JSON value will be `null`. @param[in] pos iterator to the element to remove @return Iterator following the last removed element. If the iterator @a pos refers to the last element, the end() iterator is returned. @tparam InteratorType an @ref iterator or @ref const_iterator @throw std::domain_error if called on a `null` value @throw std::domain_error if called on an iterator which does not belong to the current JSON value @throw std::out_of_range if called on a primitive type with invalid iterator (i.e., any iterator which is not end()) @complexity The complexity depends on the type: - objects: amortized constant - arrays: linear in distance between pos and the end of the container - strings: linear in the length of the string - other types: constant @liveexample{The example shows the result of erase for different JSON types.,erase__IteratorType} */ template <class InteratorType, typename std::enable_if< std::is_same<InteratorType, typename basic_json_t::iterator>::value or std::is_same<InteratorType, typename basic_json_t::const_iterator>::value , int>::type = 0> InteratorType erase(InteratorType pos) { // make sure iterator fits the current value if (this != pos.m_object) { throw std::domain_error("iterator does not fit current value"); } InteratorType result = end(); switch (m_type) { case value_t::number_integer: case value_t::number_float: case value_t::boolean: case value_t::string: { if (not pos.m_it.primitive_iterator.is_begin()) { throw std::out_of_range("iterator out of range"); } if (m_type == value_t::string) { delete m_value.string; m_value.string = nullptr; } m_type = value_t::null; break; } case value_t::object: { result.m_it.object_iterator = m_value.object->erase(pos.m_it.object_iterator); break; } case value_t::array: { result.m_it.array_iterator = m_value.array->erase(pos.m_it.array_iterator); break; } default: { throw std::domain_error("cannot use erase() with " + type_name()); } } return result; } /*! @brief remove elements given an iterator range Removes the element specified by the range `[first; last)`. Invalidates iterators and references at or after the point of the erase, including the end() iterator. The iterator @a first does not need to be dereferenceable if `first == last`: erasing an empty range is a no-op. If called on a primitive type other than null, the resulting JSON value will be `null`. @param[in] first iterator to the beginning of the range to remove @param[in] last iterator past the end of the range to remove @return Iterator following the last removed element. If the iterator @a second refers to the last element, the end() iterator is returned. @tparam InteratorType an @ref iterator or @ref const_iterator @throw std::domain_error if called on a `null` value @throw std::domain_error if called on iterators which does not belong to the current JSON value @throw std::out_of_range if called on a primitive type with invalid iterators (i.e., if `first != begin()` and `last != end()`) @complexity The complexity depends on the type: - objects: `log(size()) + std::distance(first, last)` - arrays: linear in the distance between @a first and @a last, plus linear in the distance between @a last and end of the container - strings: linear in the length of the string - other types: constant @liveexample{The example shows the result of erase for different JSON types.,erase__IteratorType_IteratorType} */ template <class InteratorType, typename std::enable_if< std::is_same<InteratorType, typename basic_json_t::iterator>::value or std::is_same<InteratorType, typename basic_json_t::const_iterator>::value , int>::type = 0> InteratorType erase(InteratorType first, InteratorType last) { // make sure iterator fits the current value if (this != first.m_object or this != last.m_object) { throw std::domain_error("iterators do not fit current value"); } InteratorType result = end(); switch (m_type) { case value_t::number_integer: case value_t::number_float: case value_t::boolean: case value_t::string: { if (not first.m_it.primitive_iterator.is_begin() or not last.m_it.primitive_iterator.is_end()) { throw std::out_of_range("iterators out of range"); } if (m_type == value_t::string) { delete m_value.string; m_value.string = nullptr; } m_type = value_t::null; break; } case value_t::object: { result.m_it.object_iterator = m_value.object->erase(first.m_it.object_iterator, last.m_it.object_iterator); break; } case value_t::array: { result.m_it.array_iterator = m_value.array->erase(first.m_it.array_iterator, last.m_it.array_iterator); break; } default: { throw std::domain_error("cannot use erase with " + type_name()); } } return result; } /*! @brief remove element from a JSON object given a key Removes elements from a JSON object with the key value @a key. @param[in] key value of the elements to remove @return Number of elements removed. If ObjectType is the default `std::map` type, the return value will always be `0` (@a key was not found) or `1` (@a key was found). @throw std::domain_error when called on a type other than JSON object @complexity `log(size()) + count(key)` @liveexample{The example shows the effect of erase.,erase__key_type} */ size_type erase(const typename object_t::key_type& key) { // this erase only works for objects if (m_type != value_t::object) { throw std::domain_error("cannot use erase() with " + type_name()); } return m_value.object->erase(key); } /*! @brief remove element from a JSON array given an index Removes element from a JSON array at the index @a idx. @param[in] idx index of the element to remove @throw std::domain_error when called on a type other than JSON array @throw std::out_of_range when `idx >= size()` @complexity Linear in distance between @a idx and the end of the container. @liveexample{The example shows the effect of erase.,erase__size_type} */ void erase(const size_type idx) { // this erase only works for arrays if (m_type != value_t::array) { throw std::domain_error("cannot use erase() with " + type_name()); } if (idx >= size()) { throw std::out_of_range("index out of range"); } m_value.array->erase(m_value.array->begin() + static_cast<difference_type>(idx)); } /*! @brief find an element in a JSON object Finds an element in a JSON object with key equivalent to @a key. If the element is not found or the JSON value is not an object, end() is returned. @param[in] key key value of the element to search for @return Iterator to an element with key equivalent to @a key. If no such element is found, past-the-end (see end()) iterator is returned. @complexity Logarithmic in the size of the JSON object. @liveexample{The example shows how find is used.,find__key_type} */ iterator find(typename object_t::key_type key) { auto result = end(); if (m_type == value_t::object) { result.m_it.object_iterator = m_value.object->find(key); } return result; } /*! @brief find an element in a JSON object @copydoc find(typename object_t::key_type) */ const_iterator find(typename object_t::key_type key) const { auto result = cend(); if (m_type == value_t::object) { result.m_it.object_iterator = m_value.object->find(key); } return result; } /*! @brief returns the number of occurrences of a key in a JSON object Returns the number of elements with key @a key. If ObjectType is the default `std::map` type, the return value will always be `0` (@a key was not found) or `1` (@a key was found). @param[in] key key value of the element to count @return Number of elements with key @a key. If the JSON value is not an object, the return value will be `0`. @complexity Logarithmic in the size of the JSON object. @liveexample{The example shows how count is used.,count} */ size_type count(typename object_t::key_type key) const { // return 0 for all nonobject types return (m_type == value_t::object) ? m_value.object->count(key) : 0; } /// @} /////////////// // iterators // /////////////// /// @name iterators /// @{ /*! @brief returns an iterator to the first element Returns an iterator to the first element. @image html range-begin-end.svg "Illustration from cppreference.com" @return iterator to the first element @complexity Constant. @requirement This function satisfies the Container requirements: - The complexity is constant. @liveexample{The following code shows an example for @ref begin.,begin} @ingroup container */ iterator begin() { iterator result(this); result.set_begin(); return result; } /*! @copydoc basic_json::cbegin() @ingroup container */ const_iterator begin() const { return cbegin(); } /*! @brief returns a const iterator to the first element Returns a const iterator to the first element. @image html range-begin-end.svg "Illustration from cppreference.com" @return const iterator to the first element @complexity Constant. @requirement This function satisfies the Container requirements: - The complexity is constant. - Has the semantics of `const_cast<const basic_json&>(*this).begin()`. @liveexample{The following code shows an example for @ref cbegin.,cbegin} @ingroup container */ const_iterator cbegin() const { const_iterator result(this); result.set_begin(); return result; } /*! @brief returns an iterator to one past the last element Returns an iterator to one past the last element. @image html range-begin-end.svg "Illustration from cppreference.com" @return iterator one past the last element @complexity Constant. @requirement This function satisfies the Container requirements: - The complexity is constant. @liveexample{The following code shows an example for @ref end.,end} @ingroup container */ iterator end() { iterator result(this); result.set_end(); return result; } /*! @copydoc basic_json::cend() @ingroup container */ const_iterator end() const { return cend(); } /*! @brief returns a const iterator to one past the last element Returns a const iterator to one past the last element. @image html range-begin-end.svg "Illustration from cppreference.com" @return const iterator one past the last element @complexity Constant. @requirement This function satisfies the Container requirements: - The complexity is constant. - Has the semantics of `const_cast<const basic_json&>(*this).end()`. @liveexample{The following code shows an example for @ref cend.,cend} @ingroup container */ const_iterator cend() const { const_iterator result(this); result.set_end(); return result; } /*! @brief returns an iterator to the reverse-beginning Returns an iterator to the reverse-beginning; that is, the last element. @image html range-rbegin-rend.svg "Illustration from cppreference.com" @complexity Constant. @requirement This function satisfies the ReversibleContainer requirements: - The complexity is constant. - Has the semantics of `reverse_iterator(end())`. @liveexample{The following code shows an example for @ref rbegin.,rbegin} @ingroup reversiblecontainer */ reverse_iterator rbegin() { return reverse_iterator(end()); } /*! @copydoc basic_json::crbegin() @ingroup reversiblecontainer */ const_reverse_iterator rbegin() const { return crbegin(); } /*! @brief returns an iterator to the reverse-end Returns an iterator to the reverse-end; that is, one before the first element. @image html range-rbegin-rend.svg "Illustration from cppreference.com" @complexity Constant. @requirement This function satisfies the ReversibleContainer requirements: - The complexity is constant. - Has the semantics of `reverse_iterator(begin())`. @liveexample{The following code shows an example for @ref rend.,rend} @ingroup reversiblecontainer */ reverse_iterator rend() { return reverse_iterator(begin()); } /*! @copydoc basic_json::crend() @ingroup reversiblecontainer */ const_reverse_iterator rend() const { return crend(); } /*! @brief returns a const reverse iterator to the last element Returns a const iterator to the reverse-beginning; that is, the last element. @image html range-rbegin-rend.svg "Illustration from cppreference.com" @complexity Constant. @requirement This function satisfies the ReversibleContainer requirements: - The complexity is constant. - Has the semantics of `const_cast<const basic_json&>(*this).rbegin()`. @liveexample{The following code shows an example for @ref crbegin.,crbegin} @ingroup reversiblecontainer */ const_reverse_iterator crbegin() const { return const_reverse_iterator(cend()); } /*! @brief returns a const reverse iterator to one before the first Returns a const reverse iterator to the reverse-end; that is, one before the first element. @image html range-rbegin-rend.svg "Illustration from cppreference.com" @complexity Constant. @requirement This function satisfies the ReversibleContainer requirements: - The complexity is constant. - Has the semantics of `const_cast<const basic_json&>(*this).rend()`. @liveexample{The following code shows an example for @ref crend.,crend} @ingroup reversiblecontainer */ const_reverse_iterator crend() const { return const_reverse_iterator(cbegin()); } /// @} ////////////// // capacity // ////////////// /// @name capacity /// @{ /*! @brief checks whether the container is empty Checks if a JSON value has no elements. @return The return value depends on the different types and is defined as follows: Value type | return value ----------- | ------------- null | @c true boolean | @c false string | @c false number | @c false object | result of function object_t::empty() array | result of function array_t::empty() @complexity Constant, as long as @ref array_t and @ref object_t satisfy the Container concept; that is, their empty() functions have constant complexity. @requirement This function satisfies the Container requirements: - The complexity is constant. - Has the semantics of `begin() == end()`. @liveexample{The following code uses @ref empty to check if a @ref json object contains any elements.,empty} @ingroup container */ bool empty() const noexcept { switch (m_type) { case (value_t::null): { return true; } case (value_t::array): { return m_value.array->empty(); } case (value_t::object): { return m_value.object->empty(); } default: { // all other types are nonempty return false; } } } /*! @brief returns the number of elements Returns the number of elements in a JSON value. @return The return value depends on the different types and is defined as follows: Value type | return value ----------- | ------------- null | @c 0 boolean | @c 1 string | @c 1 number | @c 1 object | result of function object_t::size() array | result of function array_t::size() @complexity Constant, as long as @ref array_t and @ref object_t satisfy the Container concept; that is, their size() functions have constant complexity. @requirement This function satisfies the Container requirements: - The complexity is constant. - Has the semantics of `std::distance(begin(), end())`. @liveexample{The following code calls @ref size on the different value types.,size} @ingroup container */ size_type size() const noexcept { switch (m_type) { case (value_t::null): { return 0; } case (value_t::array): { return m_value.array->size(); } case (value_t::object): { return m_value.object->size(); } default: { // all other types have size 1 return 1; } } } /*! @brief returns the maximum possible number of elements Returns the maximum number of elements a JSON value is able to hold due to system or library implementation limitations, i.e. `std::distance(begin(), end())` for the JSON value. @return The return value depends on the different types and is defined as follows: Value type | return value ----------- | ------------- null | @c 0 (same as size()) boolean | @c 1 (same as size()) string | @c 1 (same as size()) number | @c 1 (same as size()) object | result of function object_t::max_size() array | result of function array_t::max_size() @complexity Constant, as long as @ref array_t and @ref object_t satisfy the Container concept; that is, their max_size() functions have constant complexity. @requirement This function satisfies the Container requirements: - The complexity is constant. - Has the semantics of returning `b.size()` where `b` is the largest possible JSON value. @liveexample{The following code calls @ref max_size on the different value types. Note the output is implementation specific.,max_size} @ingroup container */ size_type max_size() const noexcept { switch (m_type) { case (value_t::array): { return m_value.array->max_size(); } case (value_t::object): { return m_value.object->max_size(); } default: { // all other types have max_size() == size() return size(); } } } /// @} /////////////// // modifiers // /////////////// /// @name modifiers /// @{ /*! @brief clears the contents Clears the content of a JSON value and resets it to the default value as if @ref basic_json(value_t) would have been called: Value type | initial value ----------- | ------------- null | `null` boolean | `false` string | `""` number | `0` object | `{}` array | `[]` @note Floating-point numbers are set to `0.0` which will be serialized to `0`. The vale type remains @ref number_float_t. @complexity Linear in the size of the JSON value. @liveexample{The example below shows the effect of @ref clear to different JSON types.,clear} */ void clear() noexcept { switch (m_type) { case (value_t::null): case (value_t::discarded): { break; } case (value_t::number_integer): { m_value.number_integer = 0; break; } case (value_t::number_float): { m_value.number_float = 0.0; break; } case (value_t::boolean): { m_value.boolean = false; break; } case (value_t::string): { m_value.string->clear(); break; } case (value_t::array): { m_value.array->clear(); break; } case (value_t::object): { m_value.object->clear(); break; } } } /*! @brief add an object to an array Appends the given element @a value to the end of the JSON value. If the function is called on a JSON null value, an empty array is created before appending @a value. @param value the value to add to the JSON array @throw std::domain_error when called on a type other than JSON array or null @complexity Amortized constant. @liveexample{The example shows how `push_back` and `+=` can be used to add elements to a JSON array. Note how the `null` value was silently converted to a JSON array.,push_back} */ void push_back(basic_json&& value) { // push_back only works for null objects or arrays if (not(m_type == value_t::null or m_type == value_t::array)) { throw std::domain_error("cannot use push_back() with " + type_name()); } // transform null object into an array if (m_type == value_t::null) { m_type = value_t::array; m_value = value_t::array; } // add element to array (move semantics) m_value.array->push_back(std::move(value)); // invalidate object value.m_type = value_t::null; } /*! @brief add an object to an array @copydoc push_back(basic_json&&) */ reference operator+=(basic_json&& value) { push_back(std::move(value)); return *this; } /*! @brief add an object to an array @copydoc push_back(basic_json&&) */ void push_back(const basic_json& value) { // push_back only works for null objects or arrays if (not(m_type == value_t::null or m_type == value_t::array)) { throw std::domain_error("cannot use push_back() with " + type_name()); } // transform null object into an array if (m_type == value_t::null) { m_type = value_t::array; m_value = value_t::array; } // add element to array m_value.array->push_back(value); } /*! @brief add an object to an array @copydoc push_back(basic_json&&) */ reference operator+=(const basic_json& value) { push_back(value); return *this; } /*! @brief add an object to an object Inserts the given element @a value to the JSON object. If the function is called on a JSON null value, an empty object is created before inserting @a value. @param[in] value the value to add to the JSON object @throw std::domain_error when called on a type other than JSON object or null @complexity Logarithmic in the size of the container, O(log(`size()`)). @liveexample{The example shows how `push_back` and `+=` can be used to add elements to a JSON object. Note how the `null` value was silently converted to a JSON object.,push_back__object_t__value} */ void push_back(const typename object_t::value_type& value) { // push_back only works for null objects or objects if (not(m_type == value_t::null or m_type == value_t::object)) { throw std::domain_error("cannot use push_back() with " + type_name()); } // transform null object into an object if (m_type == value_t::null) { m_type = value_t::object; m_value = value_t::object; } // add element to array m_value.object->insert(value); } /*! @brief add an object to an object @copydoc push_back(const typename object_t::value_type&) */ reference operator+=(const typename object_t::value_type& value) { push_back(value); return operator[](value.first); } /*! @brief inserts element Inserts element @a value before iterator @a pos. @param[in] pos iterator before which the content will be inserted; may be the end() iterator @param[in] value element to insert @return iterator pointing to the inserted @a value. @throw std::domain_error if called on JSON values other than arrays @throw std::domain_error if @a pos is not an iterator of *this @complexity Constant plus linear in the distance between pos and end of the container. @liveexample{The example shows how insert is used.,insert} */ iterator insert(const_iterator pos, const basic_json& value) { // insert only works for arrays if (m_type != value_t::array) { throw std::domain_error("cannot use insert() with " + type_name()); } // check if iterator pos fits to this JSON value if (pos.m_object != this) { throw std::domain_error("iterator does not fit current value"); } // insert to array and return iterator iterator result(this); result.m_it.array_iterator = m_value.array->insert(pos.m_it.array_iterator, value); return result; } /*! @brief inserts element @copydoc insert(const_iterator, const basic_json&) */ iterator insert(const_iterator pos, basic_json&& value) { return insert(pos, value); } /*! @brief inserts elements Inserts @a count copies of @a value before iterator @a pos. @param[in] pos iterator before which the content will be inserted; may be the end() iterator @param[in] count number of copies of @a value to insert @param[in] value element to insert @return iterator pointing to the first element inserted, or @a pos if `count==0` @throw std::domain_error if called on JSON values other than arrays @throw std::domain_error if @a pos is not an iterator of *this @complexity Linear in @a count plus linear in the distance between @a pos and end of the container. @liveexample{The example shows how insert is used.,insert__count} */ iterator insert(const_iterator pos, size_type count, const basic_json& value) { // insert only works for arrays if (m_type != value_t::array) { throw std::domain_error("cannot use insert() with " + type_name()); } // check if iterator pos fits to this JSON value if (pos.m_object != this) { throw std::domain_error("iterator does not fit current value"); } // insert to array and return iterator iterator result(this); result.m_it.array_iterator = m_value.array->insert(pos.m_it.array_iterator, count, value); return result; } /*! @brief inserts elements Inserts elements from range `[first, last)` before iterator @a pos. @param[in] pos iterator before which the content will be inserted; may be the end() iterator @param[in] first begin of the range of elements to insert @param[in] last end of the range of elements to insert @throw std::domain_error if called on JSON values other than arrays @throw std::domain_error if @a pos is not an iterator of *this @throw std::domain_error if @a first and @a last do not belong to the same JSON value @throw std::domain_error if @a first or @a last are iterators into container for which insert is called @return iterator pointing to the first element inserted, or @a pos if `first==last` @complexity Linear in `std::distance(first, last)` plus linear in the distance between @a pos and end of the container. @liveexample{The example shows how insert is used.,insert__range} */ iterator insert(const_iterator pos, const_iterator first, const_iterator last) { // insert only works for arrays if (m_type != value_t::array) { throw std::domain_error("cannot use insert() with " + type_name()); } // check if iterator pos fits to this JSON value if (pos.m_object != this) { throw std::domain_error("iterator does not fit current value"); } if (first.m_object != last.m_object) { throw std::domain_error("iterators does not fit"); } if (first.m_object == this or last.m_object == this) { throw std::domain_error("passed iterators may not belong to container"); } // insert to array and return iterator iterator result(this); result.m_it.array_iterator = m_value.array->insert(pos.m_it.array_iterator, first.m_it.array_iterator, last.m_it.array_iterator); return result; } /*! @brief inserts elements Inserts elements from initializer list @a ilist before iterator @a pos. @param[in] pos iterator before which the content will be inserted; may be the end() iterator @param[in] ilist initializer list to insert the values from @throw std::domain_error if called on JSON values other than arrays @throw std::domain_error if @a pos is not an iterator of *this @return iterator pointing to the first element inserted, or @a pos if `ilist` is empty @complexity Linear in `ilist.size()` plus linear in the distance between @a pos and end of the container. @liveexample{The example shows how insert is used.,insert__ilist} */ iterator insert(const_iterator pos, std::initializer_list<basic_json> ilist) { // insert only works for arrays if (m_type != value_t::array) { throw std::domain_error("cannot use insert() with " + type_name()); } // check if iterator pos fits to this JSON value if (pos.m_object != this) { throw std::domain_error("iterator does not fit current value"); } // insert to array and return iterator iterator result(this); result.m_it.array_iterator = m_value.array->insert(pos.m_it.array_iterator, ilist); return result; } /*! @brief exchanges the values Exchanges the contents of the JSON value with those of @a other. Does not invoke any move, copy, or swap operations on individual elements. All iterators and references remain valid. The past-the-end iterator is invalidated. @param[in,out] other JSON value to exchange the contents with @complexity Constant. @liveexample{The example below shows how JSON arrays can be swapped.,swap__reference} @ingroup container */ void swap(reference other) noexcept ( std::is_nothrow_move_constructible<value_t>::value and std::is_nothrow_move_assignable<value_t>::value and std::is_nothrow_move_constructible<json_value>::value and std::is_nothrow_move_assignable<json_value>::value ) { std::swap(m_type, other.m_type); std::swap(m_value, other.m_value); } /*! @brief exchanges the values Exchanges the contents of a JSON array with those of @a other. Does not invoke any move, copy, or swap operations on individual elements. All iterators and references remain valid. The past-the-end iterator is invalidated. @param[in,out] other array to exchange the contents with @throw std::domain_error when JSON value is not an array @complexity Constant. @liveexample{The example below shows how JSON values can be swapped.,swap__array_t} @ingroup container */ void swap(array_t& other) { // swap only works for arrays if (m_type != value_t::array) { throw std::domain_error("cannot use swap() with " + type_name()); } // swap arrays std::swap(*(m_value.array), other); } /*! @brief exchanges the values Exchanges the contents of a JSON object with those of @a other. Does not invoke any move, copy, or swap operations on individual elements. All iterators and references remain valid. The past-the-end iterator is invalidated. @param[in,out] other object to exchange the contents with @throw std::domain_error when JSON value is not an object @complexity Constant. @liveexample{The example below shows how JSON values can be swapped.,swap__object_t} @ingroup container */ void swap(object_t& other) { // swap only works for objects if (m_type != value_t::object) { throw std::domain_error("cannot use swap() with " + type_name()); } // swap objects std::swap(*(m_value.object), other); } /*! @brief exchanges the values Exchanges the contents of a JSON string with those of @a other. Does not invoke any move, copy, or swap operations on individual elements. All iterators and references remain valid. The past-the-end iterator is invalidated. @param[in,out] other string to exchange the contents with @throw std::domain_error when JSON value is not a string @complexity Constant. @liveexample{The example below shows how JSON values can be swapped.,swap__string_t} @ingroup container */ void swap(string_t& other) { // swap only works for strings if (m_type != value_t::string) { throw std::domain_error("cannot use swap() with " + type_name()); } // swap strings std::swap(*(m_value.string), other); } /// @} ////////////////////////////////////////// // lexicographical comparison operators // ////////////////////////////////////////// /// @name lexicographical comparison operators /// @{ private: /*! @brief comparison operator for JSON types Returns an ordering that is similar to Python: - order: null < boolean < number < object < array < string - furthermore, each type is not smaller than itself */ friend bool operator<(const value_t lhs, const value_t rhs) { static constexpr std::array<uint8_t, 7> order = {{ 0, // null 3, // object 4, // array 5, // string 1, // boolean 2, // integer 2 // float } }; // discarded values are not comparable if (lhs == value_t::discarded or rhs == value_t::discarded) { return false; } return order[static_cast<std::size_t>(lhs)] < order[static_cast<std::size_t>(rhs)]; } public: /*! @brief comparison: equal Compares two JSON values for equality according to the following rules: - Two JSON values are equal if (1) they are from the same type and (2) their stored values are the same. - Integer and floating-point numbers are automatically converted before comparison. Floating-point numbers are compared indirectly: two floating-point numbers `f1` and `f2` are considered equal if neither `f1 > f2` nor `f2 > f1` holds. - Two JSON null values are equal. @param[in] lhs first JSON value to consider @param[in] rhs second JSON value to consider @return whether the values @a lhs and @a rhs are equal @complexity Linear. @liveexample{The example demonstrates comparing several JSON types.,operator__equal} @ingroup container */ friend bool operator==(const_reference lhs, const_reference rhs) noexcept { const auto lhs_type = lhs.type(); const auto rhs_type = rhs.type(); if (lhs_type == rhs_type) { switch (lhs_type) { case (value_t::array): return *lhs.m_value.array == *rhs.m_value.array; case (value_t::object): return *lhs.m_value.object == *rhs.m_value.object; case (value_t::null): return true; case (value_t::string): return *lhs.m_value.string == *rhs.m_value.string; case (value_t::boolean): return lhs.m_value.boolean == rhs.m_value.boolean; case (value_t::number_integer): return lhs.m_value.number_integer == rhs.m_value.number_integer; case (value_t::number_float): return approx(lhs.m_value.number_float, rhs.m_value.number_float); case (value_t::discarded): return false; } } else if (lhs_type == value_t::number_integer and rhs_type == value_t::number_float) { return approx(static_cast<number_float_t>(lhs.m_value.number_integer), rhs.m_value.number_float); } else if (lhs_type == value_t::number_float and rhs_type == value_t::number_integer) { return approx(lhs.m_value.number_float, static_cast<number_float_t>(rhs.m_value.number_integer)); } return false; } /*! @brief comparison: equal The functions compares the given JSON value against a null pointer. As the null pointer can be used to initialize a JSON value to null, a comparison of JSON value @a v with a null pointer should be equivalent to call `v.is_null()`. @param[in] v JSON value to consider @return whether @a v is null @complexity Constant. @liveexample{The example compares several JSON types to the null pointer. ,operator__equal__nullptr_t} */ friend bool operator==(const_reference v, std::nullptr_t) noexcept { return v.is_null(); } /*! @brief comparison: equal @copydoc operator==(const_reference, std::nullptr_t) */ friend bool operator==(std::nullptr_t, const_reference v) noexcept { return v.is_null(); } /*! @brief comparison: not equal Compares two JSON values for inequality by calculating `not (lhs == rhs)`. @param[in] lhs first JSON value to consider @param[in] rhs second JSON value to consider @return whether the values @a lhs and @a rhs are not equal @complexity Linear. @liveexample{The example demonstrates comparing several JSON types.,operator__notequal} @ingroup container */ friend bool operator!=(const_reference lhs, const_reference rhs) noexcept { return not (lhs == rhs); } /*! @brief comparison: not equal The functions compares the given JSON value against a null pointer. As the null pointer can be used to initialize a JSON value to null, a comparison of JSON value @a v with a null pointer should be equivalent to call `not v.is_null()`. @param[in] v JSON value to consider @return whether @a v is not null @complexity Constant. @liveexample{The example compares several JSON types to the null pointer. ,operator__notequal__nullptr_t} */ friend bool operator!=(const_reference v, std::nullptr_t) noexcept { return not v.is_null(); } /*! @brief comparison: not equal @copydoc operator!=(const_reference, std::nullptr_t) */ friend bool operator!=(std::nullptr_t, const_reference v) noexcept { return not v.is_null(); } /*! @brief comparison: less than Compares whether one JSON value @a lhs is less than another JSON value @a rhs according to the following rules: - If @a lhs and @a rhs have the same type, the values are compared using the default `<` operator. - Integer and floating-point numbers are automatically converted before comparison - In case @a lhs and @a rhs have different types, the values are ignored and the order of the types is considered, see @ref operator<(const value_t, const value_t). @param[in] lhs first JSON value to consider @param[in] rhs second JSON value to consider @return whether @a lhs is less than @a rhs @complexity Linear. @liveexample{The example demonstrates comparing several JSON types.,operator__less} */ friend bool operator<(const_reference lhs, const_reference rhs) noexcept { const auto lhs_type = lhs.type(); const auto rhs_type = rhs.type(); if (lhs_type == rhs_type) { switch (lhs_type) { case (value_t::array): return *lhs.m_value.array < *rhs.m_value.array; case (value_t::object): return *lhs.m_value.object < *rhs.m_value.object; case (value_t::null): return false; case (value_t::string): return *lhs.m_value.string < *rhs.m_value.string; case (value_t::boolean): return lhs.m_value.boolean < rhs.m_value.boolean; case (value_t::number_integer): return lhs.m_value.number_integer < rhs.m_value.number_integer; case (value_t::number_float): return lhs.m_value.number_float < rhs.m_value.number_float; case (value_t::discarded): return false; } } else if (lhs_type == value_t::number_integer and rhs_type == value_t::number_float) { return static_cast<number_float_t>(lhs.m_value.number_integer) < rhs.m_value.number_float; } else if (lhs_type == value_t::number_float and rhs_type == value_t::number_integer) { return lhs.m_value.number_float < static_cast<number_float_t>(rhs.m_value.number_integer); } // We only reach this line if we cannot compare values. In that case, // we compare types. Note we have to call the operator explicitly, // because MSVC has problems otherwise. return operator<(lhs_type, rhs_type); } /*! @brief comparison: less than or equal Compares whether one JSON value @a lhs is less than or equal to another JSON value by calculating `not (rhs < lhs)`. @param[in] lhs first JSON value to consider @param[in] rhs second JSON value to consider @return whether @a lhs is less than or equal to @a rhs @complexity Linear. @liveexample{The example demonstrates comparing several JSON types.,operator__greater} */ friend bool operator<=(const_reference lhs, const_reference rhs) noexcept { return not (rhs < lhs); } /*! @brief comparison: greater than Compares whether one JSON value @a lhs is greater than another JSON value by calculating `not (lhs <= rhs)`. @param[in] lhs first JSON value to consider @param[in] rhs second JSON value to consider @return whether @a lhs is greater than to @a rhs @complexity Linear. @liveexample{The example demonstrates comparing several JSON types.,operator__lessequal} */ friend bool operator>(const_reference lhs, const_reference rhs) noexcept { return not (lhs <= rhs); } /*! @brief comparison: greater than or equal Compares whether one JSON value @a lhs is greater than or equal to another JSON value by calculating `not (lhs < rhs)`. @param[in] lhs first JSON value to consider @param[in] rhs second JSON value to consider @return whether @a lhs is greater than or equal to @a rhs @complexity Linear. @liveexample{The example demonstrates comparing several JSON types.,operator__greaterequal} */ friend bool operator>=(const_reference lhs, const_reference rhs) noexcept { return not (lhs < rhs); } /// @} /////////////////// // serialization // /////////////////// /// @name serialization /// @{ /*! @brief serialize to stream Serialize the given JSON value @a j to the output stream @a o. The JSON value will be serialized using the @ref dump member function. The indentation of the output can be controlled with the member variable `width` of the output stream @a o. For instance, using the manipulator `std::setw(4)` on @a o sets the indentation level to `4` and the serialization result is the same as calling `dump(4)`. @param[in,out] o stream to serialize to @param[in] j JSON value to serialize @return the stream @a o @complexity Linear. @liveexample{The example below shows the serialization with different parameters to `width` to adjust the indentation level.,operator_serialize} */ friend std::ostream& operator<<(std::ostream& o, const basic_json& j) { // read width member and use it as indentation parameter if nonzero const bool pretty_print = (o.width() > 0); const auto indentation = (pretty_print ? o.width() : 0); // reset width to 0 for subsequent calls to this stream o.width(0); // do the actual serialization j.dump(o, pretty_print, static_cast<unsigned int>(indentation)); return o; } /*! @brief serialize to stream @copydoc operator<<(std::ostream&, const basic_json&) */ friend std::ostream& operator>>(const basic_json& j, std::ostream& o) { return o << j; } /// @} ///////////////////// // deserialization // ///////////////////// /// @name deserialization /// @{ /*! @brief deserialize from string @param[in] s string to read a serialized JSON value from @param[in] cb a parser callback function of type @ref parser_callback_t which is used to control the deserialization by filtering unwanted values (optional) @return result of the deserialization @complexity Linear in the length of the input. The parser is a predictive LL(1) parser. The complexity can be higher if the parser callback function @a cb has a super-linear complexity. @liveexample{The example below demonstrates the parse function with and without callback function.,parse__string__parser_callback_t} @sa parse(std::istream&, parser_callback_t) for a version that reads from an input stream */ static basic_json parse(const string_t& s, parser_callback_t cb = nullptr) { return parser(s, cb).parse(); } /*! @brief deserialize from stream @param[in,out] i stream to read a serialized JSON value from @param[in] cb a parser callback function of type @ref parser_callback_t which is used to control the deserialization by filtering unwanted values (optional) @return result of the deserialization @complexity Linear in the length of the input. The parser is a predictive LL(1) parser. The complexity can be higher if the parser callback function @a cb has a super-linear complexity. @liveexample{The example below demonstrates the parse function with and without callback function.,parse__istream__parser_callback_t} @sa parse(const string_t&, parser_callback_t) for a version that reads from a string */ static basic_json parse(std::istream& i, parser_callback_t cb = nullptr) { return parser(i, cb).parse(); } /*! @brief deserialize from stream Deserializes an input stream to a JSON value. @param[in,out] i input stream to read a serialized JSON value from @param[in,out] j JSON value to write the deserialized input to @throw std::invalid_argument in case of parse errors @complexity Linear in the length of the input. The parser is a predictive LL(1) parser. @liveexample{The example below shows how a JSON value is constructed by reading a serialization from a stream.,operator_deserialize} @sa parse(std::istream&, parser_callback_t) for a variant with a parser callback function to filter values while parsing */ friend std::istream& operator<<(basic_json& j, std::istream& i) { j = parser(i).parse(); return i; } /*! @brief deserialize from stream @copydoc operator<<(basic_json&, std::istream&) */ friend std::istream& operator>>(std::istream& i, basic_json& j) { j = parser(i).parse(); return i; } /// @} private: /////////////////////////// // convenience functions // /////////////////////////// /// return the type as string string_t type_name() const { switch (m_type) { case (value_t::null): { return "null"; } case (value_t::object): { return "object"; } case (value_t::array): { return "array"; } case (value_t::string): { return "string"; } case (value_t::boolean): { return "boolean"; } case (value_t::discarded): { return "discarded"; } default: { return "number"; } } } /*! @brief escape a string Escape a string by replacing certain special characters by a sequence of an escape character (backslash) and another character and other control characters by a sequence of "\u" followed by a four-digit hex representation. @param[out] o the stream to write the escaped string to @param[in] s the string to escape */ static void escape_string(std::ostream& o, const string_t& s) { for (const auto c : s) { switch (c) { // quotation mark (0x22) case '"': { o << "\\\""; break; } // reverse solidus (0x5c) case '\\': { o << "\\\\"; break; } // backspace (0x08) case '\b': { o << "\\b"; break; } // formfeed (0x0c) case '\f': { o << "\\f"; break; } // newline (0x0a) case '\n': { o << "\\n"; break; } // carriage return (0x0d) case '\r': { o << "\\r"; break; } // horizontal tab (0x09) case '\t': { o << "\\t"; break; } default: { if (c >= 0x00 and c <= 0x1f) { // control characters (everything between 0x00 and 0x1f) // -> create four-digit hex representation o << "\\u" << std::hex << std::setw(4) << std::setfill('0') << int(c) << std::dec; } else { // all other characters are added as-is o << c; } break; } } } } /*! @brief internal implementation of the serialization function This function is called by the public member function dump and organizes the serializaion internally. The indentation level is propagated as additional parameter. In case of arrays and objects, the function is called recursively. Note that - strings and object keys are escaped using escape_string() - integer numbers are converted implictly via operator<< - floating-point numbers are converted to a string using "%g" format @param[out] o stream to write to @param[in] pretty_print whether the output shall be pretty-printed @param[in] indent_step the indent level @param[in] current_indent the current indent level (only used internally) */ void dump(std::ostream& o, const bool pretty_print, const unsigned int indent_step, const unsigned int current_indent = 0) const { // variable to hold indentation for recursive calls unsigned int new_indent = current_indent; switch (m_type) { case (value_t::object): { if (m_value.object->empty()) { o << "{}"; return; } o << "{"; // increase indentation if (pretty_print) { new_indent += indent_step; o << "\n"; } for (auto i = m_value.object->cbegin(); i != m_value.object->cend(); ++i) { if (i != m_value.object->cbegin()) { o << (pretty_print ? ",\n" : ","); } o << string_t(new_indent, ' ') << "\""; escape_string(o, i->first); o << "\":" << (pretty_print ? " " : ""); i->second.dump(o, pretty_print, indent_step, new_indent); } // decrease indentation if (pretty_print) { new_indent -= indent_step; o << "\n"; } o << string_t(new_indent, ' ') + "}"; return; } case (value_t::array): { if (m_value.array->empty()) { o << "[]"; return; } o << "["; // increase indentation if (pretty_print) { new_indent += indent_step; o << "\n"; } for (auto i = m_value.array->cbegin(); i != m_value.array->cend(); ++i) { if (i != m_value.array->cbegin()) { o << (pretty_print ? ",\n" : ","); } o << string_t(new_indent, ' '); i->dump(o, pretty_print, indent_step, new_indent); } // decrease indentation if (pretty_print) { new_indent -= indent_step; o << "\n"; } o << string_t(new_indent, ' ') << "]"; return; } case (value_t::string): { o << string_t("\""); escape_string(o, *m_value.string); o << "\""; return; } case (value_t::boolean): { o << (m_value.boolean ? "true" : "false"); return; } case (value_t::number_integer): { o << m_value.number_integer; return; } case (value_t::number_float): { // 15 digits of precision allows round-trip IEEE 754 // string->double->string; to be safe, we read this value from // std::numeric_limits<number_float_t>::digits10 o << std::setprecision(std::numeric_limits<number_float_t>::digits10) << m_value.number_float; return; } case (value_t::discarded): { o << "<discarded>"; return; } default: { o << "null"; return; } } } private: ////////////////////// // member variables // ////////////////////// /// the type of the current element value_t m_type = value_t::null; /// the value of the current element json_value m_value = {}; private: /////////////// // iterators // /////////////// /*! @brief an iterator for primitive JSON types This class models an iterator for primitive JSON types (boolean, number, string). It's only purpose is to allow the iterator/const_iterator classes to "iterate" over primitive values. Internally, the iterator is modeled by a `difference_type` variable. Value begin_value (`0`) models the begin, end_value (`1`) models past the end. */ class primitive_iterator_t { public: /// set iterator to a defined beginning void set_begin() { m_it = begin_value; } /// set iterator to a defined past the end void set_end() { m_it = end_value; } /// return whether the iterator can be dereferenced bool is_begin() const { return (m_it == begin_value); } /// return whether the iterator is at end bool is_end() const { return (m_it == end_value); } /// return reference to the value to change and compare operator difference_type& () { return m_it; } /// return value to compare operator const difference_type () const { return m_it; } private: static constexpr difference_type begin_value = 0; static constexpr difference_type end_value = begin_value + 1; /// iterator as signed integer type difference_type m_it = std::numeric_limits<std::ptrdiff_t>::min(); }; /*! @brief an iterator value @note This structure could easily be a union, but MSVC currently does not allow unions members with complex constructors, see https://github.com/nlohmann/json/pull/105. */ struct internal_iterator { /// iterator for JSON objects typename object_t::iterator object_iterator; /// iterator for JSON arrays typename array_t::iterator array_iterator; /// generic iterator for all other types primitive_iterator_t primitive_iterator; // leave the union un-initialized internal_iterator() {} }; public: /// a const random access iterator for the basic_json class class const_iterator : public std::iterator<std::random_access_iterator_tag, const basic_json> { // allow basic_json class to access m_it friend class basic_json; public: /// the type of the values when the iterator is dereferenced using value_type = typename basic_json::value_type; /// a type to represent differences between iterators using difference_type = typename basic_json::difference_type; /// defines a pointer to the type iterated over (value_type) using pointer = typename basic_json::const_pointer; /// defines a reference to the type iterated over (value_type) using reference = typename basic_json::const_reference; /// the category of the iterator using iterator_category = std::bidirectional_iterator_tag; /// default constructor const_iterator() = default; /// constructor for a given JSON instance const_iterator(pointer object) : m_object(object) { switch (m_object->m_type) { case (basic_json::value_t::object): { m_it.object_iterator = typename object_t::iterator(); break; } case (basic_json::value_t::array): { m_it.array_iterator = typename array_t::iterator(); break; } default: { m_it.primitive_iterator = primitive_iterator_t(); break; } } } /// copy constructor given a nonconst iterator const_iterator(const iterator& other) : m_object(other.m_object) { switch (m_object->m_type) { case (basic_json::value_t::object): { m_it.object_iterator = other.m_it.object_iterator; break; } case (basic_json::value_t::array): { m_it.array_iterator = other.m_it.array_iterator; break; } default: { m_it.primitive_iterator = other.m_it.primitive_iterator; break; } } } /// copy constructor const_iterator(const const_iterator& other) noexcept : m_object(other.m_object), m_it(other.m_it) {} /// copy assignment const_iterator& operator=(const_iterator other) noexcept( std::is_nothrow_move_constructible<pointer>::value and std::is_nothrow_move_assignable<pointer>::value and std::is_nothrow_move_constructible<internal_iterator>::value and std::is_nothrow_move_assignable<internal_iterator>::value ) { std::swap(m_object, other.m_object); std::swap(m_it, other.m_it); return *this; } private: /// set the iterator to the first value void set_begin() { switch (m_object->m_type) { case (basic_json::value_t::object): { m_it.object_iterator = m_object->m_value.object->begin(); break; } case (basic_json::value_t::array): { m_it.array_iterator = m_object->m_value.array->begin(); break; } case (basic_json::value_t::null): { // set to end so begin()==end() is true: null is empty m_it.primitive_iterator.set_end(); break; } default: { m_it.primitive_iterator.set_begin(); break; } } } /// set the iterator past the last value void set_end() { switch (m_object->m_type) { case (basic_json::value_t::object): { m_it.object_iterator = m_object->m_value.object->end(); break; } case (basic_json::value_t::array): { m_it.array_iterator = m_object->m_value.array->end(); break; } default: { m_it.primitive_iterator.set_end(); break; } } } public: /// return a reference to the value pointed to by the iterator reference operator*() const { switch (m_object->m_type) { case (basic_json::value_t::object): { return m_it.object_iterator->second; } case (basic_json::value_t::array): { return *m_it.array_iterator; } case (basic_json::value_t::null): { throw std::out_of_range("cannot get value"); } default: { if (m_it.primitive_iterator.is_begin()) { return *m_object; } else { throw std::out_of_range("cannot get value"); } } } } /// dereference the iterator pointer operator->() const { switch (m_object->m_type) { case (basic_json::value_t::object): { return &(m_it.object_iterator->second); } case (basic_json::value_t::array): { return &*m_it.array_iterator; } default: { if (m_it.primitive_iterator.is_begin()) { return m_object; } else { throw std::out_of_range("cannot get value"); } } } } /// post-increment (it++) const_iterator operator++(int) { auto result = *this; ++(*this); return result; } /// pre-increment (++it) const_iterator& operator++() { switch (m_object->m_type) { case (basic_json::value_t::object): { ++m_it.object_iterator; break; } case (basic_json::value_t::array): { ++m_it.array_iterator; break; } default: { ++m_it.primitive_iterator; break; } } return *this; } /// post-decrement (it--) const_iterator operator--(int) { auto result = *this; --(*this); return result; } /// pre-decrement (--it) const_iterator& operator--() { switch (m_object->m_type) { case (basic_json::value_t::object): { --m_it.object_iterator; break; } case (basic_json::value_t::array): { --m_it.array_iterator; break; } default: { --m_it.primitive_iterator; break; } } return *this; } /// comparison: equal bool operator==(const const_iterator& other) const { // if objects are not the same, the comparison is undefined if (m_object != other.m_object) { throw std::domain_error("cannot compare iterators of different containers"); } switch (m_object->m_type) { case (basic_json::value_t::object): { return (m_it.object_iterator == other.m_it.object_iterator); } case (basic_json::value_t::array): { return (m_it.array_iterator == other.m_it.array_iterator); } default: { return (m_it.primitive_iterator == other.m_it.primitive_iterator); } } } /// comparison: not equal bool operator!=(const const_iterator& other) const { return not operator==(other); } /// comparison: smaller bool operator<(const const_iterator& other) const { // if objects are not the same, the comparison is undefined if (m_object != other.m_object) { throw std::domain_error("cannot compare iterators of different containers"); } switch (m_object->m_type) { case (basic_json::value_t::object): { throw std::domain_error("cannot use operator< for object iterators"); } case (basic_json::value_t::array): { return (m_it.array_iterator < other.m_it.array_iterator); } default: { return (m_it.primitive_iterator < other.m_it.primitive_iterator); } } } /// comparison: less than or equal bool operator<=(const const_iterator& other) const { return not other.operator < (*this); } /// comparison: greater than bool operator>(const const_iterator& other) const { return not operator<=(other); } /// comparison: greater than or equal bool operator>=(const const_iterator& other) const { return not operator<(other); } /// add to iterator const_iterator& operator+=(difference_type i) { switch (m_object->m_type) { case (basic_json::value_t::object): { throw std::domain_error("cannot use operator+= for object iterators"); } case (basic_json::value_t::array): { m_it.array_iterator += i; break; } default: { m_it.primitive_iterator += i; break; } } return *this; } /// subtract from iterator const_iterator& operator-=(difference_type i) { return operator+=(-i); } /// add to iterator const_iterator operator+(difference_type i) { auto result = *this; result += i; return result; } /// subtract from iterator const_iterator operator-(difference_type i) { auto result = *this; result -= i; return result; } /// return difference difference_type operator-(const const_iterator& other) const { switch (m_object->m_type) { case (basic_json::value_t::object): { throw std::domain_error("cannot use operator- for object iterators"); } case (basic_json::value_t::array): { return m_it.array_iterator - other.m_it.array_iterator; } default: { return m_it.primitive_iterator - other.m_it.primitive_iterator; } } } /// access to successor reference operator[](difference_type n) const { switch (m_object->m_type) { case (basic_json::value_t::object): { throw std::domain_error("cannot use operator[] for object iterators"); } case (basic_json::value_t::array): { return *(m_it.array_iterator + n); } case (basic_json::value_t::null): { throw std::out_of_range("cannot get value"); } default: { if (m_it.primitive_iterator == -n) { return *m_object; } else { throw std::out_of_range("cannot get value"); } } } } /// return the key of an object iterator typename object_t::key_type key() const { switch (m_object->m_type) { case (basic_json::value_t::object): { return m_it.object_iterator->first; } default: { throw std::domain_error("cannot use key() for non-object iterators"); } } } /// return the value of an iterator reference value() const { return operator*(); } private: /// associated JSON instance pointer m_object = nullptr; /// the actual iterator of the associated instance internal_iterator m_it = internal_iterator(); }; /// a random access iterator for the basic_json class class iterator : public const_iterator { public: using base_iterator = const_iterator; using pointer = typename basic_json::pointer; using reference = typename basic_json::reference; /// default constructor iterator() = default; /// constructor for a given JSON instance iterator(pointer object) noexcept : base_iterator(object) {} /// copy constructor iterator(const iterator& other) noexcept : base_iterator(other) {} /// copy assignment iterator& operator=(iterator other) noexcept( std::is_nothrow_move_constructible<pointer>::value and std::is_nothrow_move_assignable<pointer>::value and std::is_nothrow_move_constructible<internal_iterator>::value and std::is_nothrow_move_assignable<internal_iterator>::value ) { base_iterator::operator=(other); return *this; } /// return a reference to the value pointed to by the iterator reference operator*() { return const_cast<reference>(base_iterator::operator*()); } /// dereference the iterator pointer operator->() { return const_cast<pointer>(base_iterator::operator->()); } /// post-increment (it++) iterator operator++(int) { iterator result = *this; base_iterator::operator++(); return result; } /// pre-increment (++it) iterator& operator++() { base_iterator::operator++(); return *this; } /// post-decrement (it--) iterator operator--(int) { iterator result = *this; base_iterator::operator--(); return result; } /// pre-decrement (--it) iterator& operator--() { base_iterator::operator--(); return *this; } /// add to iterator iterator& operator+=(difference_type i) { base_iterator::operator+=(i); return *this; } /// subtract from iterator iterator& operator-=(difference_type i) { base_iterator::operator-=(i); return *this; } /// add to iterator iterator operator+(difference_type i) { auto result = *this; result += i; return result; } /// subtract from iterator iterator operator-(difference_type i) { auto result = *this; result -= i; return result; } difference_type operator-(const iterator& other) const { return base_iterator::operator-(other); } /// access to successor reference operator[](difference_type n) const { return const_cast<reference>(base_iterator::operator[](n)); } /// return the value of an iterator reference value() const { return const_cast<reference>(base_iterator::value()); } }; /// a template for a reverse iterator class template<typename Base> class json_reverse_iterator : public std::reverse_iterator<Base> { public: /// shortcut to the reverse iterator adaptor using base_iterator = std::reverse_iterator<Base>; using reference = typename Base::reference; /// create reverse iterator from iterator json_reverse_iterator(const typename base_iterator::iterator_type& it) : base_iterator(it) {} /// create reverse iterator from base class json_reverse_iterator(const base_iterator& it) : base_iterator(it) {} /// post-increment (it++) json_reverse_iterator operator++(int) { return base_iterator::operator++(1); } /// pre-increment (++it) json_reverse_iterator& operator++() { base_iterator::operator++(); return *this; } /// post-decrement (it--) json_reverse_iterator operator--(int) { return base_iterator::operator--(1); } /// pre-decrement (--it) json_reverse_iterator& operator--() { base_iterator::operator--(); return *this; } /// add to iterator json_reverse_iterator& operator+=(difference_type i) { base_iterator::operator+=(i); return *this; } /// add to iterator json_reverse_iterator operator+(difference_type i) const { auto result = *this; result += i; return result; } /// subtract from iterator json_reverse_iterator operator-(difference_type i) const { auto result = *this; result -= i; return result; } /// return difference difference_type operator-(const json_reverse_iterator& other) const { return this->base() - other.base(); } /// access to successor reference operator[](difference_type n) const { return *(this->operator+(n)); } /// return the key of an object iterator typename object_t::key_type key() const { auto it = --this->base(); return it.key(); } /// return the value of an iterator reference value() const { auto it = --this->base(); return it.operator * (); } }; private: ////////////////////// // lexer and parser // ////////////////////// /*! @brief lexical analysis This class organizes the lexical analysis during JSON deserialization. The core of it is a scanner generated by re2c <http://re2c.org> that processes a buffer and recognizes tokens according to RFC 7159. */ class lexer { public: /// token types for the parser enum class token_type { uninitialized, ///< indicating the scanner is uninitialized literal_true, ///< the "true" literal literal_false, ///< the "false" literal literal_null, ///< the "null" literal value_string, ///< a string - use get_string() for actual value value_number, ///< a number - use get_number() for actual value begin_array, ///< the character for array begin "[" begin_object, ///< the character for object begin "{" end_array, ///< the character for array end "]" end_object, ///< the character for object end "}" name_separator, ///< the name separator ":" value_separator, ///< the value separator "," parse_error, ///< indicating a parse error end_of_input ///< indicating the end of the input buffer }; /// the char type to use in the lexer using lexer_char_t = unsigned char; /// constructor with a given buffer explicit lexer(const string_t& s) noexcept : m_stream(nullptr), m_buffer(s) { m_content = reinterpret_cast<const lexer_char_t*>(s.c_str()); m_start = m_cursor = m_content; m_limit = m_content + s.size(); } explicit lexer(std::istream* s) noexcept : m_stream(s), m_buffer() { getline(*m_stream, m_buffer); m_content = reinterpret_cast<const lexer_char_t*>(m_buffer.c_str()); m_start = m_cursor = m_content; m_limit = m_content + m_buffer.size(); } /// default constructor lexer() = default; // switch of unwanted functions lexer(const lexer&) = delete; lexer operator=(const lexer&) = delete; /*! @brief create a string from a Unicode code point @param[in] codepoint1 the code point (can be high surrogate) @param[in] codepoint2 the code point (can be low surrogate or 0) @return string representation of the code point @throw std::out_of_range if code point is >0x10ffff @throw std::invalid_argument if the low surrogate is invalid @see <http://en.wikipedia.org/wiki/UTF-8#Sample_code> */ static string_t to_unicode(const std::size_t codepoint1, const std::size_t codepoint2 = 0) { string_t result; // calculate the codepoint from the given code points std::size_t codepoint = codepoint1; // check if codepoint1 is a high surrogate if (codepoint1 >= 0xD800 and codepoint1 <= 0xDBFF) { // check if codepoint2 is a low surrogate if (codepoint2 >= 0xDC00 and codepoint2 <= 0xDFFF) { codepoint = // high surrogate occupies the most significant 22 bits (codepoint1 << 10) // low surrogate occupies the least significant 15 bits + codepoint2 // there is still the 0xD800, 0xDC00 and 0x10000 noise // in the result so we have to substract with: // (0xD800 << 10) + DC00 - 0x10000 = 0x35FDC00 - 0x35FDC00; } else { throw std::invalid_argument("missing or wrong low surrogate"); } } if (codepoint < 0x80) { // 1-byte characters: 0xxxxxxx (ASCII) result.append(1, static_cast<typename string_t::value_type>(codepoint)); } else if (codepoint <= 0x7ff) { // 2-byte characters: 110xxxxx 10xxxxxx result.append(1, static_cast<typename string_t::value_type>(0xC0 | ((codepoint >> 6) & 0x1F))); result.append(1, static_cast<typename string_t::value_type>(0x80 | (codepoint & 0x3F))); } else if (codepoint <= 0xffff) { // 3-byte characters: 1110xxxx 10xxxxxx 10xxxxxx result.append(1, static_cast<typename string_t::value_type>(0xE0 | ((codepoint >> 12) & 0x0F))); result.append(1, static_cast<typename string_t::value_type>(0x80 | ((codepoint >> 6) & 0x3F))); result.append(1, static_cast<typename string_t::value_type>(0x80 | (codepoint & 0x3F))); } else if (codepoint <= 0x10ffff) { // 4-byte characters: 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx result.append(1, static_cast<typename string_t::value_type>(0xF0 | ((codepoint >> 18) & 0x07))); result.append(1, static_cast<typename string_t::value_type>(0x80 | ((codepoint >> 12) & 0x3F))); result.append(1, static_cast<typename string_t::value_type>(0x80 | ((codepoint >> 6) & 0x3F))); result.append(1, static_cast<typename string_t::value_type>(0x80 | (codepoint & 0x3F))); } else { throw std::out_of_range("code points above 0x10FFFF are invalid"); } return result; } /// return name of values of type token_type static std::string token_type_name(token_type t) { switch (t) { case (token_type::uninitialized): return "<uninitialized>"; case (token_type::literal_true): return "true literal"; case (token_type::literal_false): return "false literal"; case (token_type::literal_null): return "null literal"; case (token_type::value_string): return "string literal"; case (token_type::value_number): return "number literal"; case (token_type::begin_array): return "["; case (token_type::begin_object): return "{"; case (token_type::end_array): return "]"; case (token_type::end_object): return "}"; case (token_type::name_separator): return ":"; case (token_type::value_separator): return ","; case (token_type::end_of_input): return "<end of input>"; default: return "<parse error>"; } } /*! This function implements a scanner for JSON. It is specified using regular expressions that try to follow RFC 7159 as close as possible. These regular expressions are then translated into a deterministic finite automaton (DFA) by the tool re2c <http://re2c.org>. As a result, the translated code for this function consists of a large block of code with goto jumps. @return the class of the next token read from the buffer */ token_type scan() noexcept { // pointer for backtracking information m_marker = nullptr; // remember the begin of the token m_start = m_cursor; { lexer_char_t yych; unsigned int yyaccept = 0; static const unsigned char yybm[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 32, 0, 0, 32, 0, 0, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 96, 64, 0, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 0, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, }; if ((m_limit - m_cursor) < 5) { yyfill(); // LCOV_EXCL_LINE; } yych = *m_cursor; if (yych <= '9') { if (yych <= ' ') { if (yych <= '\n') { if (yych <= 0x00) { goto basic_json_parser_27; } if (yych <= 0x08) { goto basic_json_parser_29; } if (yych >= '\n') { goto basic_json_parser_4; } } else { if (yych == '\r') { goto basic_json_parser_2; } if (yych <= 0x1F) { goto basic_json_parser_29; } } } else { if (yych <= ',') { if (yych == '"') { goto basic_json_parser_26; } if (yych <= '+') { goto basic_json_parser_29; } goto basic_json_parser_14; } else { if (yych <= '-') { goto basic_json_parser_22; } if (yych <= '/') { goto basic_json_parser_29; } if (yych <= '0') { goto basic_json_parser_23; } goto basic_json_parser_25; } } } else { if (yych <= 'm') { if (yych <= '\\') { if (yych <= ':') { goto basic_json_parser_16; } if (yych == '[') { goto basic_json_parser_6; } goto basic_json_parser_29; } else { if (yych <= ']') { goto basic_json_parser_8; } if (yych == 'f') { goto basic_json_parser_21; } goto basic_json_parser_29; } } else { if (yych <= 'z') { if (yych <= 'n') { goto basic_json_parser_18; } if (yych == 't') { goto basic_json_parser_20; } goto basic_json_parser_29; } else { if (yych <= '{') { goto basic_json_parser_10; } if (yych == '}') { goto basic_json_parser_12; } goto basic_json_parser_29; } } } basic_json_parser_2: ++m_cursor; yych = *m_cursor; goto basic_json_parser_5; basic_json_parser_3: { return scan(); } basic_json_parser_4: ++m_cursor; if (m_limit <= m_cursor) { yyfill(); // LCOV_EXCL_LINE; } yych = *m_cursor; basic_json_parser_5: if (yybm[0 + yych] & 32) { goto basic_json_parser_4; } goto basic_json_parser_3; basic_json_parser_6: ++m_cursor; { return token_type::begin_array; } basic_json_parser_8: ++m_cursor; { return token_type::end_array; } basic_json_parser_10: ++m_cursor; { return token_type::begin_object; } basic_json_parser_12: ++m_cursor; { return token_type::end_object; } basic_json_parser_14: ++m_cursor; { return token_type::value_separator; } basic_json_parser_16: ++m_cursor; { return token_type::name_separator; } basic_json_parser_18: yyaccept = 0; yych = *(m_marker = ++m_cursor); if (yych == 'u') { goto basic_json_parser_59; } basic_json_parser_19: { return token_type::parse_error; } basic_json_parser_20: yyaccept = 0; yych = *(m_marker = ++m_cursor); if (yych == 'r') { goto basic_json_parser_55; } goto basic_json_parser_19; basic_json_parser_21: yyaccept = 0; yych = *(m_marker = ++m_cursor); if (yych == 'a') { goto basic_json_parser_50; } goto basic_json_parser_19; basic_json_parser_22: yych = *++m_cursor; if (yych <= '/') { goto basic_json_parser_19; } if (yych <= '0') { goto basic_json_parser_49; } if (yych <= '9') { goto basic_json_parser_40; } goto basic_json_parser_19; basic_json_parser_23: yyaccept = 1; yych = *(m_marker = ++m_cursor); if (yych <= 'D') { if (yych == '.') { goto basic_json_parser_42; } } else { if (yych <= 'E') { goto basic_json_parser_43; } if (yych == 'e') { goto basic_json_parser_43; } } basic_json_parser_24: { return token_type::value_number; } basic_json_parser_25: yyaccept = 1; yych = *(m_marker = ++m_cursor); goto basic_json_parser_41; basic_json_parser_26: yyaccept = 0; yych = *(m_marker = ++m_cursor); if (yych <= 0x0F) { goto basic_json_parser_19; } goto basic_json_parser_31; basic_json_parser_27: ++m_cursor; { return token_type::end_of_input; } basic_json_parser_29: yych = *++m_cursor; goto basic_json_parser_19; basic_json_parser_30: ++m_cursor; if (m_limit <= m_cursor) { yyfill(); // LCOV_EXCL_LINE; } yych = *m_cursor; basic_json_parser_31: if (yybm[0 + yych] & 64) { goto basic_json_parser_30; } if (yych <= 0x0F) { goto basic_json_parser_32; } if (yych <= '"') { goto basic_json_parser_34; } goto basic_json_parser_33; basic_json_parser_32: m_cursor = m_marker; if (yyaccept == 0) { goto basic_json_parser_19; } else { goto basic_json_parser_24; } basic_json_parser_33: ++m_cursor; if (m_limit <= m_cursor) { yyfill(); // LCOV_EXCL_LINE; } yych = *m_cursor; if (yych <= 'e') { if (yych <= '/') { if (yych == '"') { goto basic_json_parser_30; } if (yych <= '.') { goto basic_json_parser_32; } goto basic_json_parser_30; } else { if (yych <= '\\') { if (yych <= '[') { goto basic_json_parser_32; } goto basic_json_parser_30; } else { if (yych == 'b') { goto basic_json_parser_30; } goto basic_json_parser_32; } } } else { if (yych <= 'q') { if (yych <= 'f') { goto basic_json_parser_30; } if (yych == 'n') { goto basic_json_parser_30; } goto basic_json_parser_32; } else { if (yych <= 's') { if (yych <= 'r') { goto basic_json_parser_30; } goto basic_json_parser_32; } else { if (yych <= 't') { goto basic_json_parser_30; } if (yych <= 'u') { goto basic_json_parser_36; } goto basic_json_parser_32; } } } basic_json_parser_34: ++m_cursor; { return token_type::value_string; } basic_json_parser_36: ++m_cursor; if (m_limit <= m_cursor) { yyfill(); // LCOV_EXCL_LINE; } yych = *m_cursor; if (yych <= '@') { if (yych <= '/') { goto basic_json_parser_32; } if (yych >= ':') { goto basic_json_parser_32; } } else { if (yych <= 'F') { goto basic_json_parser_37; } if (yych <= '`') { goto basic_json_parser_32; } if (yych >= 'g') { goto basic_json_parser_32; } } basic_json_parser_37: ++m_cursor; if (m_limit <= m_cursor) { yyfill(); // LCOV_EXCL_LINE; } yych = *m_cursor; if (yych <= '@') { if (yych <= '/') { goto basic_json_parser_32; } if (yych >= ':') { goto basic_json_parser_32; } } else { if (yych <= 'F') { goto basic_json_parser_38; } if (yych <= '`') { goto basic_json_parser_32; } if (yych >= 'g') { goto basic_json_parser_32; } } basic_json_parser_38: ++m_cursor; if (m_limit <= m_cursor) { yyfill(); // LCOV_EXCL_LINE; } yych = *m_cursor; if (yych <= '@') { if (yych <= '/') { goto basic_json_parser_32; } if (yych >= ':') { goto basic_json_parser_32; } } else { if (yych <= 'F') { goto basic_json_parser_39; } if (yych <= '`') { goto basic_json_parser_32; } if (yych >= 'g') { goto basic_json_parser_32; } } basic_json_parser_39: ++m_cursor; if (m_limit <= m_cursor) { yyfill(); // LCOV_EXCL_LINE; } yych = *m_cursor; if (yych <= '@') { if (yych <= '/') { goto basic_json_parser_32; } if (yych <= '9') { goto basic_json_parser_30; } goto basic_json_parser_32; } else { if (yych <= 'F') { goto basic_json_parser_30; } if (yych <= '`') { goto basic_json_parser_32; } if (yych <= 'f') { goto basic_json_parser_30; } goto basic_json_parser_32; } basic_json_parser_40: yyaccept = 1; m_marker = ++m_cursor; if ((m_limit - m_cursor) < 3) { yyfill(); // LCOV_EXCL_LINE; } yych = *m_cursor; basic_json_parser_41: if (yybm[0 + yych] & 128) { goto basic_json_parser_40; } if (yych <= 'D') { if (yych != '.') { goto basic_json_parser_24; } } else { if (yych <= 'E') { goto basic_json_parser_43; } if (yych == 'e') { goto basic_json_parser_43; } goto basic_json_parser_24; } basic_json_parser_42: yych = *++m_cursor; if (yych <= '/') { goto basic_json_parser_32; } if (yych <= '9') { goto basic_json_parser_47; } goto basic_json_parser_32; basic_json_parser_43: yych = *++m_cursor; if (yych <= ',') { if (yych != '+') { goto basic_json_parser_32; } } else { if (yych <= '-') { goto basic_json_parser_44; } if (yych <= '/') { goto basic_json_parser_32; } if (yych <= '9') { goto basic_json_parser_45; } goto basic_json_parser_32; } basic_json_parser_44: yych = *++m_cursor; if (yych <= '/') { goto basic_json_parser_32; } if (yych >= ':') { goto basic_json_parser_32; } basic_json_parser_45: ++m_cursor; if (m_limit <= m_cursor) { yyfill(); // LCOV_EXCL_LINE; } yych = *m_cursor; if (yych <= '/') { goto basic_json_parser_24; } if (yych <= '9') { goto basic_json_parser_45; } goto basic_json_parser_24; basic_json_parser_47: yyaccept = 1; m_marker = ++m_cursor; if ((m_limit - m_cursor) < 3) { yyfill(); // LCOV_EXCL_LINE; } yych = *m_cursor; if (yych <= 'D') { if (yych <= '/') { goto basic_json_parser_24; } if (yych <= '9') { goto basic_json_parser_47; } goto basic_json_parser_24; } else { if (yych <= 'E') { goto basic_json_parser_43; } if (yych == 'e') { goto basic_json_parser_43; } goto basic_json_parser_24; } basic_json_parser_49: yyaccept = 1; yych = *(m_marker = ++m_cursor); if (yych <= 'D') { if (yych == '.') { goto basic_json_parser_42; } goto basic_json_parser_24; } else { if (yych <= 'E') { goto basic_json_parser_43; } if (yych == 'e') { goto basic_json_parser_43; } goto basic_json_parser_24; } basic_json_parser_50: yych = *++m_cursor; if (yych != 'l') { goto basic_json_parser_32; } yych = *++m_cursor; if (yych != 's') { goto basic_json_parser_32; } yych = *++m_cursor; if (yych != 'e') { goto basic_json_parser_32; } ++m_cursor; { return token_type::literal_false; } basic_json_parser_55: yych = *++m_cursor; if (yych != 'u') { goto basic_json_parser_32; } yych = *++m_cursor; if (yych != 'e') { goto basic_json_parser_32; } ++m_cursor; { return token_type::literal_true; } basic_json_parser_59: yych = *++m_cursor; if (yych != 'l') { goto basic_json_parser_32; } yych = *++m_cursor; if (yych != 'l') { goto basic_json_parser_32; } ++m_cursor; { return token_type::literal_null; } } } /// append data from the stream to the internal buffer void yyfill() noexcept { if (not m_stream or not * m_stream) { return; } const ssize_t offset_start = m_start - m_content; const ssize_t offset_marker = m_marker - m_start; const ssize_t offset_cursor = m_cursor - m_start; m_buffer.erase(0, static_cast<size_t>(offset_start)); std::string line; std::getline(*m_stream, line); m_buffer += "\n" + line; // add line with newline symbol m_content = reinterpret_cast<const lexer_char_t*>(m_buffer.c_str()); m_start = m_content; m_marker = m_start + offset_marker; m_cursor = m_start + offset_cursor; m_limit = m_start + m_buffer.size() - 1; } /// return string representation of last read token string_t get_token() const noexcept { return string_t(reinterpret_cast<typename string_t::const_pointer>(m_start), static_cast<size_t>(m_cursor - m_start)); } /*! @brief return string value for string tokens The function iterates the characters between the opening and closing quotes of the string value. The complete string is the range [m_start,m_cursor). Consequently, we iterate from m_start+1 to m_cursor-1. We differentiate two cases: 1. Escaped characters. In this case, a new character is constructed according to the nature of the escape. Some escapes create new characters (e.g., @c "\\n" is replaced by @c "\n"), some are copied as is (e.g., @c "\\\\"). Furthermore, Unicode escapes of the shape @c "\\uxxxx" need special care. In this case, to_unicode takes care of the construction of the values. 2. Unescaped characters are copied as is. @return string value of current token without opening and closing quotes @throw std::out_of_range if to_unicode fails */ string_t get_string() const { string_t result; result.reserve(static_cast<size_t>(m_cursor - m_start - 2)); // iterate the result between the quotes for (const lexer_char_t* i = m_start + 1; i < m_cursor - 1; ++i) { // process escaped characters if (*i == '\\') { // read next character ++i; switch (*i) { // the default escapes case 't': { result += "\t"; break; } case 'b': { result += "\b"; break; } case 'f': { result += "\f"; break; } case 'n': { result += "\n"; break; } case 'r': { result += "\r"; break; } case '\\': { result += "\\"; break; } case '/': { result += "/"; break; } case '"': { result += "\""; break; } // unicode case 'u': { // get code xxxx from uxxxx auto codepoint = std::strtoul(std::string(reinterpret_cast<typename string_t::const_pointer>(i + 1), 4).c_str(), nullptr, 16); // check if codepoint is a high surrogate if (codepoint >= 0xD800 and codepoint <= 0xDBFF) { // make sure there is a subsequent unicode if ((i + 6 >= m_limit) or * (i + 5) != '\\' or * (i + 6) != 'u') { throw std::invalid_argument("missing low surrogate"); } // get code yyyy from uxxxx\uyyyy auto codepoint2 = std::strtoul(std::string(reinterpret_cast<typename string_t::const_pointer> (i + 7), 4).c_str(), nullptr, 16); result += to_unicode(codepoint, codepoint2); // skip the next 11 characters (xxxx\uyyyy) i += 11; } else { // add unicode character(s) result += to_unicode(codepoint); // skip the next four characters (xxxx) i += 4; } break; } } } else { // all other characters are just copied to the end of the // string result.append(1, static_cast<typename string_t::value_type>(*i)); } } return result; } /*! @brief return number value for number tokens This function translates the last token into a floating point number. The pointer m_begin points to the beginning of the parsed number. We pass this pointer to std::strtod which sets endptr to the first character past the converted number. If this pointer is not the same as m_cursor, then either more or less characters have been used during the comparison. This can happen for inputs like "01" which will be treated like number 0 followed by number 1. @return the result of the number conversion or NAN if the conversion read past the current token. The latter case needs to be treated by the caller function. @throw std::range_error if passed value is out of range */ long double get_number() const { // conversion typename string_t::value_type* endptr; const auto float_val = std::strtold(reinterpret_cast<typename string_t::const_pointer>(m_start), &endptr); // return float_val if the whole number was translated and NAN // otherwise return (reinterpret_cast<lexer_char_t*>(endptr) == m_cursor) ? float_val : NAN; } private: /// optional input stream std::istream* m_stream; /// the buffer string_t m_buffer; /// the buffer pointer const lexer_char_t* m_content = nullptr; /// pointer to the beginning of the current symbol const lexer_char_t* m_start = nullptr; /// pointer for backtracking information const lexer_char_t* m_marker = nullptr; /// pointer to the current symbol const lexer_char_t* m_cursor = nullptr; /// pointer to the end of the buffer const lexer_char_t* m_limit = nullptr; }; /*! @brief syntax analysis */ class parser { public: /// constructor for strings parser(const string_t& s, parser_callback_t cb = nullptr) : callback(cb), m_lexer(s) { // read first token get_token(); } /// a parser reading from an input stream parser(std::istream& _is, parser_callback_t cb = nullptr) : callback(cb), m_lexer(&_is) { // read first token get_token(); } /// public parser interface basic_json parse() { basic_json result = parse_internal(true); expect(lexer::token_type::end_of_input); // return parser result and replace it with null in case the // top-level value was discarded by the callback function return result.is_discarded() ? basic_json() : result; } private: /// the actual parser basic_json parse_internal(bool keep) { auto result = basic_json(value_t::discarded); switch (last_token) { case (lexer::token_type::begin_object): { if (keep and (not callback or (keep = callback(depth++, parse_event_t::object_start, result)))) { // explicitly set result to object to cope with {} result.m_type = value_t::object; result.m_value = json_value(value_t::object); } // read next token get_token(); // closing } -> we are done if (last_token == lexer::token_type::end_object) { get_token(); if (keep and callback and not callback(--depth, parse_event_t::object_end, result)) { result = basic_json(value_t::discarded); } return result; } // no comma is expected here unexpect(lexer::token_type::value_separator); // otherwise: parse key-value pairs do { // ugly, but could be fixed with loop reorganization if (last_token == lexer::token_type::value_separator) { get_token(); } // store key expect(lexer::token_type::value_string); const auto key = m_lexer.get_string(); bool keep_tag = false; if (keep) { if (callback) { basic_json k(key); keep_tag = callback(depth, parse_event_t::key, k); } else { keep_tag = true; } } // parse separator (:) get_token(); expect(lexer::token_type::name_separator); // parse and add value get_token(); auto value = parse_internal(keep); if (keep and keep_tag and not value.is_discarded()) { result[key] = std::move(value); } } while (last_token == lexer::token_type::value_separator); // closing } expect(lexer::token_type::end_object); get_token(); if (keep and callback and not callback(--depth, parse_event_t::object_end, result)) { result = basic_json(value_t::discarded); } return result; } case (lexer::token_type::begin_array): { if (keep and (not callback or (keep = callback(depth++, parse_event_t::array_start, result)))) { // explicitly set result to object to cope with [] result.m_type = value_t::array; result.m_value = json_value(value_t::array); } // read next token get_token(); // closing ] -> we are done if (last_token == lexer::token_type::end_array) { get_token(); if (callback and not callback(--depth, parse_event_t::array_end, result)) { result = basic_json(value_t::discarded); } return result; } // no comma is expected here unexpect(lexer::token_type::value_separator); // otherwise: parse values do { // ugly, but could be fixed with loop reorganization if (last_token == lexer::token_type::value_separator) { get_token(); } // parse value auto value = parse_internal(keep); if (keep and not value.is_discarded()) { result.push_back(std::move(value)); } } while (last_token == lexer::token_type::value_separator); // closing ] expect(lexer::token_type::end_array); get_token(); if (keep and callback and not callback(--depth, parse_event_t::array_end, result)) { result = basic_json(value_t::discarded); } return result; } case (lexer::token_type::literal_null): { get_token(); result.m_type = value_t::null; break; } case (lexer::token_type::value_string): { const auto s = m_lexer.get_string(); get_token(); result = basic_json(s); break; } case (lexer::token_type::literal_true): { get_token(); result.m_type = value_t::boolean; result.m_value = true; break; } case (lexer::token_type::literal_false): { get_token(); result.m_type = value_t::boolean; result.m_value = false; break; } case (lexer::token_type::value_number): { auto float_val = m_lexer.get_number(); // NAN is returned if token could not be translated // completely if (std::isnan(float_val)) { throw std::invalid_argument(std::string("parse error - ") + m_lexer.get_token() + " is not a number"); } get_token(); // check if conversion loses precision const auto int_val = static_cast<number_integer_t>(float_val); if (approx(float_val, static_cast<long double>(int_val))) { // we basic_json not lose precision -> return int result.m_type = value_t::number_integer; result.m_value = int_val; } else { // we would lose precision -> returnfloat result.m_type = value_t::number_float; result.m_value = static_cast<number_float_t>(float_val); } break; } default: { // the last token was unexpected unexpect(last_token); } } if (keep and callback and not callback(depth, parse_event_t::value, result)) { result = basic_json(value_t::discarded); } return result; } /// get next token from lexer typename lexer::token_type get_token() { last_token = m_lexer.scan(); return last_token; } void expect(typename lexer::token_type t) const { if (t != last_token) { std::string error_msg = "parse error - unexpected \'"; error_msg += m_lexer.get_token(); error_msg += "\' (" + lexer::token_type_name(last_token); error_msg += "); expected " + lexer::token_type_name(t); throw std::invalid_argument(error_msg); } } void unexpect(typename lexer::token_type t) const { if (t == last_token) { std::string error_msg = "parse error - unexpected \'"; error_msg += m_lexer.get_token(); error_msg += "\' ("; error_msg += lexer::token_type_name(last_token) + ")"; throw std::invalid_argument(error_msg); } } private: /// current level of recursion int depth = 0; /// callback function parser_callback_t callback; /// the type of the last read token typename lexer::token_type last_token = lexer::token_type::uninitialized; /// the lexer lexer m_lexer; }; }; ///////////// // presets // ///////////// /*! @brief default JSON class This type is the default specialization of the @ref basic_json class which uses the standard template types. */ using json = basic_json<>; } ///////////////////////// // nonmember functions // ///////////////////////// // specialization of std::swap, and std::hash namespace std { /*! @brief exchanges the values of two JSON objects @ingroup container */ template <> inline void swap(nlohmann::json& j1, nlohmann::json& j2) noexcept( is_nothrow_move_constructible<nlohmann::json>::value and is_nothrow_move_assignable<nlohmann::json>::value ) { j1.swap(j2); } /// hash value for JSON objects template <> struct hash<nlohmann::json> { /// return a hash value for a JSON object std::size_t operator()(const nlohmann::json& j) const { // a naive hashing via the string representation const auto& h = hash<nlohmann::json::string_t>(); return h(j.dump()); } }; } /*! @brief user-defined string literal for JSON values This operator implements a user-defined string literal for JSON objects. It can be used by adding \p "_json" to a string literal and returns a JSON object if no parse error occurred. @param[in] s a string representation of a JSON object @return a JSON object */ inline nlohmann::json operator "" _json(const char* s, std::size_t) { return nlohmann::json::parse(reinterpret_cast<nlohmann::json::string_t::value_type*> (const_cast<char*>(s))); } #endif
[ "lachlan.mccalman@nicta.com.au" ]
lachlan.mccalman@nicta.com.au
10862955ec097d7d14d04b2400a0ab11da50a690
5fb4db792adc11020a08a863c3a3423aaca13eff
/week-03/day-03/petrolStation/Station.h
c963fd513f799b62cc261ed710b151bf6b481779
[]
no_license
green-fox-academy/tamasmarkovics
b65472222f44596fa2df0466d7a88f0d860b011f
4c70ac6fc8afc1bafa91847e9d9aab5633db4688
refs/heads/master
2020-07-23T13:56:23.406168
2019-12-06T11:45:17
2019-12-06T11:45:17
207,581,732
0
0
null
null
null
null
UTF-8
C++
false
false
214
h
#ifndef PETROLSTATION_STATION_H #define PETROLSTATION_STATION_H #include "Car.h" class Station{ public: Station(); void fill(Car &car); private: int _gasAmount; }; #endif //PETROLSTATION_STATION_H
[ "markovics.ttamas@gmail.com" ]
markovics.ttamas@gmail.com
157a5d357efc4b1f0b0676a9b88edfed327d7349
7354f78ccbced5652b3dd33963944842085a7fd9
/src/xtd_forms_native_wxwidgets/src/xtd/forms/native/wxwidgets/domain_up_down.cpp
94f0c46380cdc01217711c98394f7345a6c2fba1
[ "MIT" ]
permissive
blockspacer/xtd_forms
1ae8cf3a7708b8162dfa1cd1be436e75b0363906
d6ab0e3c27f67367b83a367472b25458566712cc
refs/heads/master
2023-01-05T03:48:08.929136
2020-10-26T21:45:59
2020-10-26T21:45:59
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,714
cpp
#include <xtd/forms/native/domain_up_down.h> #include "../../../../../include/xtd/forms/native/wxwidgets/wx_domain_up_down.h" using namespace xtd; using namespace xtd::drawing; using namespace xtd::forms::native; void domain_up_down::delete_item(intptr_t control, size_t index) { if (control == 0) return; static_cast<wxDomainSpinCtrl*>(reinterpret_cast<control_handler*>(control)->control())->GetItems().RemoveAt(index); static_cast<wxDomainSpinCtrl*>(reinterpret_cast<control_handler*>(control)->control())->updateSpin(); } void domain_up_down::insert_item(intptr_t control, size_t index, const std::string& value) { if (control == 0) return; static_cast<wxDomainSpinCtrl*>(reinterpret_cast<control_handler*>(control)->control())->GetItems().Insert({value.c_str(), wxMBConvUTF8()}, index); static_cast<wxDomainSpinCtrl*>(reinterpret_cast<control_handler*>(control)->control())->updateSpin(); } size_t domain_up_down::selected_index(intptr_t control) { if (control == 0) return -1; return static_cast<wxDomainSpinCtrl*>(reinterpret_cast<control_handler*>(control)->control())->GetSelectedIndex(); } void domain_up_down::selected_index(intptr_t control, size_t index) { if (control == 0) return; return static_cast<wxDomainSpinCtrl*>(reinterpret_cast<control_handler*>(control)->control())->SetSelectedIndex(index); } void domain_up_down::update_item(intptr_t control, size_t index, const std::string& value) { if (control == 0) return; static_cast<wxDomainSpinCtrl*>(reinterpret_cast<control_handler*>(control)->control())->GetItems()[index] = {value.c_str(), wxMBConvUTF8()}; static_cast<wxDomainSpinCtrl*>(reinterpret_cast<control_handler*>(control)->control())->updateSpin(); }
[ "gammasoft71@gmail.com" ]
gammasoft71@gmail.com
64f96efd651c3237c909d878c0be193f826fbc9c
5bf499f9f1d7c951662ff74bc5452f91e827e1d3
/hessian2/basic_codec/number_codec_unittests.cc
b56f656d99167ed0ae5bf338f899063248c2365b
[ "BSD-3-Clause", "MIT", "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
yun1129/hessian2-codec
30b00212b947e5c2a391b68281e81b7971de5d14
8e61255ebe0b257173da7d5f78950f6d776c5c3d
refs/heads/main
2023-02-05T01:01:28.176800
2020-12-29T03:57:36
2020-12-29T03:57:36
325,211,682
1
0
Apache-2.0
2020-12-29T07:01:08
2020-12-29T07:01:07
null
UTF-8
C++
false
false
20,120
cc
#include <limits.h> #include <iostream> #include <type_traits> #include "gtest/gtest.h" #include "hessian2/basic_codec/number_codec.hpp" #include "hessian2/string_reader.hpp" #include "hessian2/string_writer.hpp" #include "hessian2/test_framework/decoder_test_framework.h" #include "hessian2/test_framework/encoder_test_framework.h" namespace hessian2 { class NumberCodecTest : public testing::Test { public: template <typename T> void decodeSucc(absl::string_view data, T out, size_t size) { hessian2::Decoder decoder(data); auto output = decoder.decode<T>(); EXPECT_EQ(out, *output); EXPECT_EQ(size, decoder.offset()); } template <typename T> void decodeFail(absl::string_view data) { hessian2::Decoder decoder(data); auto output = decoder.decode<T>(); EXPECT_EQ(nullptr, output); } template <typename T> void encodeSucc(T data, size_t size, std::string expected_data = "") { std::string res; hessian2::Encoder encoder(res); encoder.encode<T>(data); if (!expected_data.empty()) { EXPECT_EQ(expected_data, res); } decodeSucc<T>(res, data, size); } }; TEST_F(TestDecoderFramework, DecoderJavaTestCaseForDouble) { { EXPECT_TRUE(Decode<double>("replyDouble_0_0", 0.0)); } { EXPECT_TRUE(Decode<double>("replyDouble_1_0", 1.0)); } { EXPECT_TRUE(Decode<double>("replyDouble_2_0", 2.0)); } { EXPECT_TRUE(Decode<double>("replyDouble_127_0", 127.0)); } { EXPECT_TRUE(Decode<double>("replyDouble_m128_0", -128.0)); } { EXPECT_TRUE(Decode<double>("replyDouble_128_0", 128.0)); } { EXPECT_TRUE(Decode<double>("replyDouble_m129_0", -129.0)); } { EXPECT_TRUE(Decode<double>("replyDouble_32767_0", 32767.0)); } { EXPECT_TRUE(Decode<double>("replyDouble_m32768_0", -32768.0)); } { EXPECT_TRUE(Decode<double>("replyDouble_0_001", 0.001)); } { EXPECT_TRUE(Decode<double>("replyDouble_m0_001", -0.001)); } { EXPECT_TRUE(Decode<double>("replyDouble_65_536", 65.536)); } { EXPECT_TRUE(Decode<double>("replyDouble_3_14159", 3.14159)); } } TEST_F(TestEncoderFramework, EncoderJavaTestCaseForDouble) { { EXPECT_TRUE(Encode<double>("argDouble_0_0", 0.0)); } { EXPECT_TRUE(Encode<double>("argDouble_1_0", 1.0)); } { EXPECT_TRUE(Encode<double>("argDouble_2_0", 2.0)); } { EXPECT_TRUE(Encode<double>("argDouble_127_0", 127.0)); } { EXPECT_TRUE(Encode<double>("argDouble_m128_0", -128.0)); } { EXPECT_TRUE(Encode<double>("argDouble_128_0", 128.0)); } { EXPECT_TRUE(Encode<double>("argDouble_m129_0", -129.0)); } { EXPECT_TRUE(Encode<double>("argDouble_32767_0", 32767.0)); } { EXPECT_TRUE(Encode<double>("argDouble_m32768_0", -32768.0)); } { EXPECT_TRUE(Encode<double>("argDouble_0_001", 0.001)); } { EXPECT_TRUE(Encode<double>("argDouble_m0_001", -0.001)); } { EXPECT_TRUE(Encode<double>("argDouble_65_536", 65.536)); } { EXPECT_TRUE(Encode<double>("argDouble_3_14159", 3.14159)); } } TEST_F(TestDecoderFramework, DecoderJavaTestCaseForInteger) { { EXPECT_TRUE(Decode<int32_t>("replyInt_0", 0)); } { EXPECT_TRUE(Decode<int32_t>("replyInt_1", 1)); } { EXPECT_TRUE(Decode<int32_t>("replyInt_47", 47)); } { EXPECT_TRUE(Decode<int32_t>("replyInt_m16", -16)); } { EXPECT_TRUE(Decode<int32_t>("replyInt_0x30", 48)); } { EXPECT_TRUE(Decode<int32_t>("replyInt_0x7ff", 2047)); } { EXPECT_TRUE(Decode<int32_t>("replyInt_m17", -17)); } { EXPECT_TRUE(Decode<int32_t>("replyInt_m0x800", -2048)); } { EXPECT_TRUE(Decode<int32_t>("replyInt_0x800", 2048)); } { EXPECT_TRUE(Decode<int32_t>("replyInt_0x3ffff", 262143)); } { EXPECT_TRUE(Decode<int32_t>("replyInt_m0x801", -2049)); } { EXPECT_TRUE(Decode<int32_t>("replyInt_m0x40000", -262144)); } { EXPECT_TRUE(Decode<int32_t>("replyInt_0x40000", 262144)); } { EXPECT_TRUE(Decode<int32_t>("replyInt_0x7fffffff", 2147483647)); } { EXPECT_TRUE(Decode<int32_t>("replyInt_m0x40001", -262145)); } { EXPECT_TRUE(Decode<int32_t>("replyInt_m0x80000000", -2147483648)); } { EXPECT_TRUE(Decode<int64_t>("replyLong_0", 0)); } { EXPECT_TRUE(Decode<int64_t>("replyLong_1", 1)); } { EXPECT_TRUE(Decode<int64_t>("replyLong_15", 15)); } { EXPECT_TRUE(Decode<int64_t>("replyLong_m8", -8)); } { EXPECT_TRUE(Decode<int64_t>("replyLong_0x10", 16)); } { EXPECT_TRUE(Decode<int64_t>("replyLong_0x7ff", 2047)); } { EXPECT_TRUE(Decode<int64_t>("replyLong_m9", -9)); } { EXPECT_TRUE(Decode<int64_t>("replyLong_m0x800", -2048)); } { EXPECT_TRUE(Decode<int64_t>("replyLong_0x800", 2048)); } { EXPECT_TRUE(Decode<int64_t>("replyLong_0x3ffff", 262143)); } { EXPECT_TRUE(Decode<int64_t>("replyLong_m0x801", -2049)); } { EXPECT_TRUE(Decode<int64_t>("replyLong_m0x40000", -262144)); } { EXPECT_TRUE(Decode<int64_t>("replyLong_0x40000", 262144)); } { EXPECT_TRUE(Decode<int64_t>("replyLong_0x7fffffff", 2147483647)); } { EXPECT_TRUE(Decode<int64_t>("replyLong_m0x40001", -262145)); } { EXPECT_TRUE(Decode<int64_t>("replyLong_m0x80000000", -2147483648)); } { EXPECT_TRUE(Decode<int64_t>("replyLong_0x80000000", 2147483648)); } { EXPECT_TRUE(Decode<int64_t>("replyLong_m0x80000001", -2147483649)); } } TEST_F(TestEncoderFramework, EncoderJavaTestCaseForInteger) { { EXPECT_TRUE(Encode<int32_t>("argInt_0", 0)); } { EXPECT_TRUE(Encode<int32_t>("argInt_1", 1)); } { EXPECT_TRUE(Encode<int32_t>("argInt_47", 47)); } { EXPECT_TRUE(Encode<int32_t>("argInt_m16", -16)); } { EXPECT_TRUE(Encode<int32_t>("argInt_0x30", 48)); } { EXPECT_TRUE(Encode<int32_t>("argInt_0x7ff", 2047)); } { EXPECT_TRUE(Encode<int32_t>("argInt_m17", -17)); } { EXPECT_TRUE(Encode<int32_t>("argInt_m0x800", -2048)); } { EXPECT_TRUE(Encode<int32_t>("argInt_0x800", 2048)); } { EXPECT_TRUE(Encode<int32_t>("argInt_0x3ffff", 262143)); } { EXPECT_TRUE(Encode<int32_t>("argInt_m0x801", -2049)); } { EXPECT_TRUE(Encode<int32_t>("argInt_m0x40000", -262144)); } { EXPECT_TRUE(Encode<int32_t>("argInt_0x40000", 262144)); } { EXPECT_TRUE(Encode<int32_t>("argInt_0x7fffffff", 2147483647)); } { EXPECT_TRUE(Encode<int32_t>("argInt_m0x40001", -262145)); } { EXPECT_TRUE(Encode<int32_t>("argInt_m0x80000000", -2147483648)); } { EXPECT_TRUE(Encode<int64_t>("argLong_0", 0)); } { EXPECT_TRUE(Encode<int64_t>("argLong_1", 1)); } { EXPECT_TRUE(Encode<int64_t>("argLong_15", 15)); } { EXPECT_TRUE(Encode<int64_t>("argLong_m8", -8)); } { EXPECT_TRUE(Encode<int64_t>("argLong_0x10", 16)); } { EXPECT_TRUE(Encode<int64_t>("argLong_0x7ff", 2047)); } { EXPECT_TRUE(Encode<int64_t>("argLong_m9", -9)); } { EXPECT_TRUE(Encode<int64_t>("argLong_m0x800", -2048)); } { EXPECT_TRUE(Encode<int64_t>("argLong_0x800", 2048)); } { EXPECT_TRUE(Encode<int64_t>("argLong_0x3ffff", 262143)); } { EXPECT_TRUE(Encode<int64_t>("argLong_m0x801", -2049)); } { EXPECT_TRUE(Encode<int64_t>("argLong_m0x40000", -262144)); } { EXPECT_TRUE(Encode<int64_t>("argLong_0x40000", 262144)); } { EXPECT_TRUE(Encode<int64_t>("argLong_0x7fffffff", 2147483647)); } { EXPECT_TRUE(Encode<int64_t>("argLong_m0x40001", -262145)); } { EXPECT_TRUE(Encode<int64_t>("argLong_m0x80000000", -2147483648)); } { EXPECT_TRUE(Encode<int64_t>("argLong_0x80000000", 2147483648)); } { EXPECT_TRUE(Encode<int64_t>("argLong_m0x80000001", -2147483649)); } } TEST_F(NumberCodecTest, DecodeDouble) { { std::string data{}; decodeFail<double>(data); } { std::string data{0x5d}; decodeFail<double>(data); } { std::string data{0x5e}; decodeFail<double>(data); } { std::string data{0x5f}; decodeFail<double>(data); } { std::string data{0x44}; decodeFail<double>(data); } { std::string data{0x01}; decodeFail<double>(data); } { std::string data{0x5b}; decodeSucc<double>(data, 0.0, 1); } { std::string data{0x5c}; decodeSucc<double>(data, 1.0, 1); } { char buf[] = {0x5d, 0x00}; std::string data(buf, 2); decodeSucc<double>(data, 0.0, 2); } { unsigned char buf[] = {0x5d, 0x80}; std::string data(reinterpret_cast<char *>(buf), 2); decodeSucc<double>(data, -128.0, 2); } { unsigned char buf[] = {0x5d, 0x7f}; std::string data(reinterpret_cast<char *>(buf), 2); decodeSucc<double>(data, 127.0, 2); } { unsigned char buf[] = {0x5e, 0x00, 0x00}; std::string data(reinterpret_cast<char *>(buf), 3); decodeSucc<double>(data, 0.0, 3); } { unsigned char buf[] = {0x5e, 0x80, 0x00}; std::string data(reinterpret_cast<char *>(buf), 3); decodeSucc<double>(data, -32768.0, 3); } { unsigned char buf[] = {0x5e, 0x7f, 0xff}; std::string data(reinterpret_cast<char *>(buf), 3); decodeSucc<double>(data, 32767.0, 3); } { unsigned char buf[] = {0x5f, 0x00, 0x00, 0x00, 0x00}; std::string data(reinterpret_cast<char *>(buf), 5); decodeSucc<double>(data, 0.0, 5); } { unsigned char buf[] = { 0x44, 0x40, 0x28, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, }; std::string data(reinterpret_cast<char *>(buf), 9); decodeSucc<double>(data, 12.25, 9); } } TEST_F(NumberCodecTest, EncodeDouble) { { double val = 0; std::string data{0x5b}; encodeSucc<double>(val, 1, data); } { double val = 1; std::string data{0x5c}; encodeSucc<double>(val, 1, data); } { for (double val = -0x80; val < 0x80; val++) { if (val == 0 || val == 1) { continue; } encodeSucc<double>(val, 2); } } { for (double val = -0x8000; val < 0x8000; val++) { if (val >= -0x80 && val < 0x80) { continue; } encodeSucc<double>(val, 3); } } { unsigned char buf[] = {'D', 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; std::string data(reinterpret_cast<char *>(buf), 9); double val = 2.2250738585072014E-308; encodeSucc<double>(val, 9, data); } { unsigned char buf[] = {'D', 0x40, 0x28, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00}; std::string data(reinterpret_cast<char *>(buf), 9); double val = 12.25; encodeSucc<double>(val, 9, data); } { unsigned char buf[] = {'D', 0xc0, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; std::string data(reinterpret_cast<char *>(buf), 9); double val = -12.5; encodeSucc<double>(val, 9, data); } } TEST_F(NumberCodecTest, DecodeInt32) { // Insufficient data { std::string data; decodeFail<int32_t>(data); } { unsigned char buf[] = {0xc1}; std::string data(reinterpret_cast<char *>(buf), 1); decodeFail<int32_t>(data); } { unsigned char buf[] = {0xd0}; std::string data(reinterpret_cast<char *>(buf), 1); decodeFail<int32_t>(data); } { unsigned char buf[] = {0x49}; std::string data(reinterpret_cast<char *>(buf), 1); decodeFail<int32_t>(data); } // Incorrect type { unsigned char buf[] = {0x01}; std::string data(reinterpret_cast<char *>(buf), 1); decodeFail<int32_t>(data); } // Single octet integers { for (int8_t i = -16; i <= 47; ++i) { int32_t value = i; int8_t code = 0x90 + i; std::string data(reinterpret_cast<char *>(&code), 1); decodeSucc<int32_t>(data, value, 1); } } { unsigned char buf[] = {0x90}; std::string data(reinterpret_cast<char *>(buf), 1); decodeSucc<int32_t>(data, 0, 1); } { unsigned char buf[] = {0x80}; std::string data(reinterpret_cast<char *>(buf), 1); decodeSucc<int32_t>(data, -16, 1); } { unsigned char buf[] = {0xbf}; std::string data(reinterpret_cast<char *>(buf), 1); decodeSucc<int32_t>(data, 47, 1); } // Two octet integers { for (int32_t i = -2048; i < -16; ++i) { encodeSucc(i, 2); } for (int32_t i = 48; i < 2047; ++i) { encodeSucc(i, 2); } } { unsigned char buf[] = {0xc8, 0x00}; std::string data(reinterpret_cast<char *>(buf), 2); decodeSucc<int32_t>(data, 0, 2); } { unsigned char buf[] = {0xc0, 0x00}; std::string data(reinterpret_cast<char *>(buf), 2); decodeSucc<int32_t>(data, -2048, 2); } { unsigned char buf[] = {0xc7, 0x00}; std::string data(reinterpret_cast<char *>(buf), 2); decodeSucc<int32_t>(data, -256, 2); } { unsigned char buf[] = {0xcf, 0xff}; std::string data(reinterpret_cast<char *>(buf), 2); decodeSucc<int32_t>(data, 2047, 2); } // Three octet integers { unsigned char buf[] = {0xd4, 0x00, 0x00}; std::string data(reinterpret_cast<char *>(buf), 3); decodeSucc<int32_t>(data, 0, 3); } { unsigned char buf[] = {0xd0, 0x00, 0x00}; std::string data(reinterpret_cast<char *>(buf), 3); decodeSucc<int32_t>(data, -262144, 3); } { unsigned char buf[] = {0xd7, 0xff, 0xff}; std::string data(reinterpret_cast<char *>(buf), 3); decodeSucc<int32_t>(data, 262143, 3); } // Four octet integers { unsigned char buf[] = {0x49, 0x00, 0x00, 0x00, 0x00}; std::string data(reinterpret_cast<char *>(buf), 5); decodeSucc<int32_t>(data, 0, 5); } { unsigned char buf[] = {0x49, 0x00, 0x00, 0x01, 0x2c}; std::string data(reinterpret_cast<char *>(buf), 5); decodeSucc<int32_t>(data, 300, 5); } } TEST_F(NumberCodecTest, EncodeInt32) { // Single octet integers { int32_t val = 0; std::string data{'\x90'}; encodeSucc<int32_t>(val, 1, data); } { int32_t val = -16; std::string data{'\x80'}; encodeSucc<int32_t>(val, 1, data); } { int32_t val = 47; std::string data{'\xbf'}; encodeSucc<int32_t>(val, 1, data); } { for (int32_t val = -16; val < 48; val++) { encodeSucc<int32_t>(val, 1); } } // Two octet integers { int32_t val = -2048; std::string data{'\xc0', 0x00}; encodeSucc<int32_t>(val, 2, data); } { int32_t val = -256; std::string data{'\xc7', 0x00}; encodeSucc<int32_t>(val, 2, data); } { int32_t val = 2047; std::string data{'\xcf', '\xff'}; encodeSucc<int32_t>(val, 2, data); } { for (int32_t val = -2048; val < 2048; val++) { if (val >= -16 && val < 48) { continue; } encodeSucc<int32_t>(val, 2); } } // Three octet integers { int32_t val = -262144; std::string data{'\xd0', 0x00, 0x00}; encodeSucc<int32_t>(val, 3, data); } { int32_t val = 262143; std::string data{'\xd7', '\xff', '\xff'}; encodeSucc<int32_t>(val, 3, data); } { int32_t val = 2048; std::string data{'\xd4', '\b', '\x00'}; encodeSucc<int32_t>(val, 3, data); } { for (int32_t val = -262144; val < 262144; val++) { if (val >= -2048 && val < 2048) { continue; } encodeSucc<int32_t>(val, 3); } } // Five octet integers { std::string data{0x49, '\x7f', '\xff', '\xff', '\xff'}; encodeSucc<int32_t>(INT32_MAX, 5, data); } { std::string data{0x49, '\x80', '\x00', '\x00', '\x00'}; encodeSucc<int32_t>(INT32_MIN, 5, data); } } TEST_F(NumberCodecTest, DecodeInt64) { // Insufficient data { std::string data; decodeFail<int64_t>(data); } { unsigned char buf[] = {0xf0}; std::string data(reinterpret_cast<char *>(buf), 1); decodeFail<int64_t>(data); } { unsigned char buf[] = {0x38, '1'}; std::string data(reinterpret_cast<char *>(buf), 1); decodeFail<int64_t>(data); } { unsigned char buf[] = {0x59, '1'}; std::string data(reinterpret_cast<char *>(buf), 1); decodeFail<int64_t>(data); } { unsigned char buf[] = {0x4c, '1'}; std::string data(reinterpret_cast<char *>(buf), 1); decodeFail<int64_t>(data); } // Incorrect type { unsigned char buf[] = {0x40}; std::string data(reinterpret_cast<char *>(buf), 1); decodeFail<int64_t>(data); } // Single octet longs { for (int64_t i = -8, code = 0xd8; i <= 15 && code <= 0xef; ++i, ++code) { std::string data(reinterpret_cast<char *>(&code), 1); decodeSucc<int64_t>(data, i, 1); } } { unsigned char buf[] = {0xe0}; std::string data(reinterpret_cast<char *>(buf), 1); decodeSucc<int64_t>(data, 0, 1); } { unsigned char buf[] = {0xd8}; std::string data(reinterpret_cast<char *>(buf), 1); decodeSucc<int64_t>(data, -8, 1); } { unsigned char buf[] = {0xef}; std::string data(reinterpret_cast<char *>(buf), 1); decodeSucc<int64_t>(data, 15, 1); } // Two octet longs { unsigned char buf[] = {0xf8, 0x00}; std::string data(reinterpret_cast<char *>(buf), 2); decodeSucc<int64_t>(data, 0, 2); } { unsigned char buf[] = {0xf0, 0x00}; std::string data(reinterpret_cast<char *>(buf), 2); decodeSucc<int64_t>(data, -2048, 2); } { unsigned char buf[] = {0xf7, 0x00}; std::string data(reinterpret_cast<char *>(buf), 2); decodeSucc<int64_t>(data, -256, 2); } { unsigned char buf[] = {0xff, 0xff}; std::string data(reinterpret_cast<char *>(buf), 2); decodeSucc<int64_t>(data, 2047, 2); } // Three octet longs { unsigned char buf[] = {0x3c, 0x00, 0x00}; std::string data(reinterpret_cast<char *>(buf), 3); decodeSucc<int64_t>(data, 0, 3); } { unsigned char buf[] = {0x38, 0x00, 0x00}; std::string data(reinterpret_cast<char *>(buf), 3); decodeSucc<int64_t>(data, -262144, 3); } { unsigned char buf[] = {0x3f, 0xff, 0xff}; std::string data(reinterpret_cast<char *>(buf), 3); decodeSucc<int64_t>(data, 262143, 3); } // Four octet longs { unsigned char buf[] = {0x59, 0x00, 0x00, 0x00, 0x00}; std::string data(reinterpret_cast<char *>(buf), 5); decodeSucc<int64_t>(data, 0, 5); } { unsigned char buf[] = {0x59, 0x00, 0x00, 0x01, 0x2c}; std::string data(reinterpret_cast<char *>(buf), 5); decodeSucc<int64_t>(data, 300, 5); } // eight octet longs { unsigned char buf[] = {0x4c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x2c}; std::string data(reinterpret_cast<char *>(buf), 9); decodeSucc<int64_t>(data, 300, 9); } } TEST_F(NumberCodecTest, EncodeInt64) { // Single octet longs { int64_t val = 0; std::string data{'\xe0'}; encodeSucc<int64_t>(val, 1, data); } { int64_t val = -8; std::string data{'\xd8'}; encodeSucc<int64_t>(val, 1, data); } { int64_t val = 15; std::string data{'\xef'}; encodeSucc<int64_t>(val, 1, data); } { for (int64_t val = -8; val < 16; val++) { encodeSucc<int64_t>(val, 1); } } // Two octet longs { int64_t val = -2048; std::string data{'\xf0', 0x00}; encodeSucc<int64_t>(val, 2, data); } { int64_t val = -256; std::string data{'\xf7', 0x00}; encodeSucc<int64_t>(val, 2, data); } { int32_t val = 2047; std::string data{'\xff', '\xff'}; encodeSucc<int64_t>(val, 2, data); } { for (int64_t val = -2048; val < 2048; val++) { if (val >= -8 && val < 16) { continue; } encodeSucc<int64_t>(val, 2); } } // Three octet longs { int64_t val = -262144; std::string data{0x38, 0x00, 0x00}; encodeSucc<int64_t>(val, 3, data); } { int64_t val = 262143; std::string data{0x3f, '\xff', '\xff'}; encodeSucc<int64_t>(val, 3, data); } { int64_t val = 2048; std::string data{0x3c, '\b', '\x00'}; encodeSucc<int64_t>(val, 3, data); } { for (int64_t val = -262144; val < 262144; val++) { if (val >= -2048 && val < 2048) { continue; } encodeSucc<int64_t>(val, 3); } } // Five octet integers { std::string data{0x59, '\x7f', '\xff', '\xff', '\xff'}; encodeSucc<int64_t>(INT32_MAX, 5, data); } { std::string data{0x59, '\x80', '\x00', '\x00', '\x00'}; encodeSucc<int64_t>(INT32_MIN, 5, data); } // Eight octet integers { std::string data{0x4c, '\x7f', '\xff', '\xff', '\xff', '\xff', '\xff', '\xff', '\xff'}; encodeSucc<int64_t>(INT64_MAX, 9, data); } { std::string data{0x4c, '\x80', '\x00', '\x00', '\x00', '\x00', '\x00', '\x00', '\x00'}; encodeSucc<int64_t>(INT64_MIN, 9, data); } } } // namespace hessian2
[ "tianqian.zyf@alibaba-inc.com" ]
tianqian.zyf@alibaba-inc.com
2cab5783c07a7770fdb04a1564aa705747a74279
a3a942e6839b05b0e0032cc7245e64f5646751af
/section8_cjl_ref2/60/U
563f742b79850968cbdaef924e1fffa8b62c8d41
[]
no_license
carsumptive/OF-2
8826dc120b8a1f6b9fbd70e47cda6976f80d6ca7
dfb46ab301dfded517b579cb59df02df14bcfd2f
refs/heads/main
2023-04-08T18:45:15.811682
2021-04-08T14:51:19
2021-04-08T14:51:19
355,948,191
0
0
null
null
null
null
UTF-8
C++
false
false
439,929
/*--------------------------------*- 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 volVectorField; location "60"; object U; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 1 -1 0 0 0 0]; internalField nonuniform List<vector> 14800 ( (-0.00271336 0.0017456 -1.54258e-20) (-0.0137856 0.00356534 2.02805e-21) (-0.0318996 0.00441337 8.76474e-21) (-0.0508587 0.0047069 -4.64463e-21) (-0.0697358 0.00467825 -1.51489e-20) (-0.087598 0.00448027 1.42945e-20) (-0.104101 0.00419744 5.92625e-22) (-0.119143 0.00387031 1.67866e-21) (-0.132703 0.0035133 -7.92292e-21) (-0.144779 0.00312845 -1.03091e-21) (-0.155362 0.00271797 5.92977e-21) (-0.164453 0.00229364 5.05809e-21) (-0.172111 0.00188951 1.89277e-20) (-0.178513 0.00158253 -2.10345e-20) (-0.183971 0.00139084 8.58045e-21) (-0.00293206 0.0051467 3.23872e-20) (-0.0141122 0.0105515 -2.00585e-20) (-0.0320901 0.0131015 -7.13454e-21) (-0.0508023 0.0140128 1.53214e-21) (-0.069353 0.0139671 1.41577e-20) (-0.0868304 0.0134179 2.80835e-20) (-0.102898 0.0126195 -2.40978e-20) (-0.117454 0.0116966 4.30356e-21) (-0.130477 0.0106948 2.09374e-20) (-0.141961 0.00962134 2.23301e-20) (-0.151891 0.00848175 -2.79075e-20) (-0.160249 0.00730737 3.02775e-20) (-0.167056 0.00619059 -4.39007e-20) (-0.172493 0.00538493 4.18026e-20) (-0.176565 0.00486761 8.4603e-21) (-0.0033608 0.00843605 5.18944e-20) (-0.0147548 0.0173396 9.28685e-20) (-0.032465 0.0215678 5.03886e-21) (-0.0506882 0.0230962 -2.55177e-20) (-0.0685891 0.0230416 -1.2561e-20) (-0.0852977 0.0221519 -4.46082e-20) (-0.100492 0.0208493 3.14443e-20) (-0.114073 0.0193429 3.9219e-20) (-0.126015 0.0177105 -4.44159e-20) (-0.136307 0.0159626 -1.7606e-20) (-0.144916 0.0141033 5.84963e-20) (-0.151803 0.0121733 -2.03171e-20) (-0.156889 0.0102922 1.90054e-20) (-0.160449 0.008978 2.19145e-20) (-0.16169 0.00791491 3.44659e-20) (-0.00398489 0.0115448 -4.40571e-20) (-0.0156966 0.023805 -1.53634e-19) (-0.0330173 0.0296694 7.49765e-20) (-0.0505183 0.031811 -7.20161e-21) (-0.0674529 0.0317593 2.81358e-20) (-0.0830123 0.0305449 -8.31942e-20) (-0.096896 0.0287553 2.86787e-21) (-0.109006 0.0266846 1.10404e-21) (-0.119314 0.0244441 3.0841e-20) (-0.127793 0.0220464 -3.58684e-20) (-0.134395 0.0194868 -9.83633e-20) (-0.139063 0.0168048 -3.49687e-20) (-0.141513 0.0140731 -4.74992e-21) (-0.142402 0.0122633 9.55305e-21) (-0.139246 0.0102552 -3.89344e-20) (-0.00478371 0.0144121 -9.77277e-20) (-0.016913 0.0298332 7.24223e-20) (-0.0337362 0.0372712 4.39614e-21) (-0.0502947 0.0400157 7.85078e-21) (-0.0659558 0.0399785 -6.12183e-20) (-0.0799899 0.0384582 4.59764e-20) (-0.0921236 0.0362026 -1.67646e-20) (-0.10226 0.0335914 2.63828e-20) (-0.110362 0.0307723 -1.51231e-20) (-0.116382 0.0277599 9.16386e-20) (-0.120246 0.0245345 7.09059e-20) (-0.121929 0.0211322 4.70516e-20) (-0.120712 0.01743 -7.33585e-20) (-0.118302 0.0152022 1.981e-20) (-0.109 0.0116661 -2.00822e-20) (-0.00573218 0.0169882 1.67408e-22) (-0.0183739 0.0353241 1.25891e-19) (-0.0346071 0.0442489 -9.39652e-20) (-0.0500181 0.0475749 7.81481e-20) (-0.0641095 0.0475604 6.8096e-20) (-0.0762464 0.0457523 -3.86233e-20) (-0.0861875 0.0430523 2.67349e-20) (-0.0938341 0.0399265 -1.07488e-19) (-0.0991312 0.0365622 3.1192e-20) (-0.102006 0.0329795 -6.99698e-20) (-0.102325 0.0291378 3.62954e-20) (-0.100234 0.0251006 -8.43278e-20) (-0.0940798 0.0202944 -1.99445e-20) (-0.0879079 0.0178033 -4.06367e-20) (-0.0705057 0.0121593 4.82888e-20) (-0.00680261 0.0192357 -1.10877e-20) (-0.0200444 0.0401948 -1.29287e-19) (-0.0356114 0.0504915 1.18914e-20) (-0.0496855 0.0543617 1.64261e-21) (-0.0619213 0.0543696 1.93278e-20) (-0.071792 0.0522877 1.70722e-19) (-0.0790905 0.049163 -1.34909e-20) (-0.0837104 0.0455469 8.79262e-20) (-0.085569 0.041671 1.09195e-20) (-0.0845556 0.0375674 6.12553e-21) (-0.0804009 0.0331689 -2.70065e-20) (-0.0737155 0.0286469 6.40455e-20) (-0.0610263 0.0227225 1.56322e-19) (-0.050558 0.0199827 -1.74411e-19) (-0.0230851 0.01233 -6.15551e-20) (-0.00796676 0.0211314 7.32875e-20) (-0.0218865 0.0443814 1.2766e-19) (-0.0367256 0.0559041 -3.44215e-20) (-0.0492865 0.0602604 -5.95263e-20) (-0.0593885 0.0602773 -5.91465e-20) (-0.0666215 0.057928 7.83194e-21) (-0.0708129 0.054393 5.44071e-20) (-0.0718384 0.050307 -1.70896e-19) (-0.0695706 0.0459498 -2.78023e-21) (-0.0638579 0.0413772 -5.09419e-20) (-0.0541316 0.0365032 -1.2351e-19) (-0.0419041 0.031616 1.25394e-19) (-0.0208979 0.0250088 -1.70651e-19) (-0.00495613 0.0214299 8.97752e-20) (0.0347137 0.01263 6.36453e-20) (-0.00919782 0.0226663 -4.00187e-20) (-0.0238607 0.047841 4.75169e-20) (-0.0379196 0.0604101 -8.54188e-20) (-0.048799 0.0651688 7.26649e-20) (-0.0564896 0.0651645 9.85292e-20) (-0.0607019 0.0625434 1.17085e-19) (-0.0612934 0.0586058 -4.72267e-20) (-0.0581078 0.054066 -3.66443e-20) (-0.0509442 0.0492547 1.68474e-19) (-0.0396204 0.0442678 1.20937e-19) (-0.0230868 0.0390939 1.1282e-19) (-0.00396801 0.0337187 -1.65787e-19) (0.0272394 0.027014 4.75533e-20) (0.0496916 0.0226695 4.65997e-20) (0.106082 0.0131472 -1.27126e-21) (-0.0104721 0.0238455 -1.75645e-19) (-0.0259263 0.0505512 -2.29022e-19) (-0.0391541 0.0639524 8.57481e-20) (-0.048182 0.0690015 1.16029e-19) (-0.0531725 0.0689259 -2.39396e-19) (-0.0539541 0.0660164 -1.0595e-20) (-0.0504028 0.0616782 -9.40423e-20) (-0.0423102 0.0566993 2.23575e-19) (-0.0293605 0.0514673 -9.90018e-20) (-0.011312 0.0461068 -1.19793e-20) (0.0133802 0.0407645 7.61617e-20) (0.0408075 0.0349104 1.8949e-19) (0.0853611 0.0285162 8.29577e-20) (0.114084 0.0240878 -6.66646e-20) (0.193703 0.0145661 -1.29447e-20) (-0.0117706 0.0246861 1.21976e-19) (-0.0280418 0.0525096 1.64064e-19) (-0.0403769 0.066495 -1.12686e-19) (-0.0473672 0.0716931 -3.84114e-19) (-0.04934 0.0714753 -4.22514e-20) (-0.046229 0.06825 1.7261e-21) (-0.0379085 0.063511 1.26764e-19) (-0.0240874 0.0581139 -2.81545e-19) (-0.00429654 0.0525031 -1.26859e-20) (0.0217858 0.0468212 -1.4754e-19) (0.0564407 0.0414517 -1.94167e-19) (0.0935376 0.0352478 -1.25007e-19) (0.155226 0.0299135 1.17226e-20) (0.189687 0.0249887 -4.13542e-20) (0.299485 0.0179095 -1.26218e-19) (-0.0130793 0.0252156 6.74499e-20) (-0.0301634 0.0537316 1.18625e-19) (-0.041518 0.0680233 -5.46256e-20) (-0.0462483 0.0732014 -4.95716e-20) (-0.0448305 0.0727522 3.13155e-19) (-0.0372793 0.0691771 -3.23025e-19) (-0.0234336 0.0640435 1.67526e-20) (-0.00287886 0.0582699 7.40036e-20) (0.0250637 0.0523624 5.46524e-20) (0.0607651 0.0464767 3.77454e-20) (0.107508 0.0414318 6.57236e-20) (0.156037 0.034679 -4.92877e-20) (0.238367 0.0319632 1.49734e-19) (0.278438 0.0252576 1.2063e-19) (0.423617 0.0235393 7.90836e-20) (-0.0143893 0.0254684 2.90827e-20) (-0.0322435 0.0542477 -2.40444e-19) (-0.0424832 0.0685438 3.50453e-19) (-0.0446685 0.0735109 4.34203e-19) (-0.0393977 0.072729 -1.45942e-19) (-0.0267267 0.0687724 5.17998e-20) (-0.00640965 0.0632722 -1.35164e-19) (0.0221416 0.05721 -2.30376e-20) (0.0598691 0.0511708 -2.54692e-19) (0.107158 0.0452753 5.45346e-20) (0.168281 0.0411414 2.12214e-19) (0.230656 0.0336771 -2.81113e-20) (0.335481 0.0352796 6.97872e-20) (0.382619 0.0259707 -2.88769e-20) (0.563089 0.0314522 7.89605e-21) (-0.0156958 0.0254828 -1.42937e-19) (-0.0342262 0.0540992 -1.61398e-19) (-0.0431461 0.0680835 -3.84504e-19) (-0.0424063 0.0726361 -2.751e-19) (-0.0326872 0.0714187 -2.1698e-19) (-0.0140284 0.0670663 2.45758e-19) (0.0139652 0.0612714 4.85931e-20) (0.0521084 0.0550864 1.06158e-19) (0.101621 0.0492044 5.64398e-20) (0.162863 0.0436489 -1.58876e-19) (0.24053 0.041115 -8.25877e-20) (0.319807 0.0334706 2.3093e-20) (0.445691 0.0400658 -2.95764e-19) (0.503568 0.0291341 6.70328e-20) (0.710718 0.0417747 -1.70722e-19) (-0.0169957 0.0252962 7.33421e-20) (-0.0360417 0.0533324 5.62814e-19) (-0.0433406 0.0666903 2.84998e-19) (-0.0391619 0.0706241 1.32965e-19) (-0.0242158 0.068883 3.38061e-19) (0.00154983 0.0641599 -2.9513e-19) (0.038752 0.0582156 -1.22443e-19) (0.0884651 0.0521908 -1.1801e-19) (0.152103 0.0469199 5.64894e-19) (0.229898 0.0423188 1.82597e-19) (0.3257 0.0419359 -1.41192e-19) (0.424724 0.0357959 7.61797e-20) (0.566318 0.0463554 -1.00935e-19) (0.639253 0.0365073 1.06172e-19) (0.85584 0.0545717 4.93336e-20) (-0.0182856 0.0249421 -6.97621e-21) (-0.0375998 0.0519955 -3.00665e-19) (-0.0428516 0.0644318 -2.73639e-19) (-0.0345445 0.0675564 -9.49809e-20) (-0.0133546 0.0652405 -1.66676e-19) (0.0209491 0.0602399 1.71684e-19) (0.0692649 0.0544024 8.33303e-20) (0.132893 0.0489825 -1.25776e-19) (0.213177 0.0449649 2.1594e-21) (0.309895 0.0422642 -9.61673e-20) (0.42437 0.044329 2.17865e-20) (0.543815 0.0420502 2.97322e-20) (0.693034 0.0544791 2.56532e-20) (0.782291 0.0485287 6.57704e-20) (0.986919 0.0691 -1.78117e-19) (-0.0195595 0.0244481 -1.47508e-19) (-0.0387909 0.0501438 1.21252e-19) (-0.0414003 0.0613822 1.14281e-19) (-0.0280637 0.0635487 1.42928e-20) (0.000677004 0.0606735 1.15638e-19) (0.0453069 0.0555912 -1.55387e-19) (0.107011 0.0502688 1.6116e-19) (0.187136 0.0460999 2.55858e-20) (0.286409 0.0441635 -1.81997e-19) (0.403382 0.0445281 5.2032e-21) (0.535459 0.0492713 -1.81487e-19) (0.671811 0.0525334 1.6469e-19) (0.819888 0.0648805 2.22481e-20) (0.9207 0.0641608 3.77181e-20) (1.09479 0.0836422 1.79222e-19) (-0.0208009 0.0238332 4.14174e-19) (-0.0394781 0.0478229 -1.63559e-19) (-0.0386494 0.0576264 -8.67117e-20) (-0.0191229 0.0587568 -1.0691e-19) (0.0188025 0.0554327 -2.89199e-19) (0.0759124 0.0506059 -9.53987e-20) (0.153562 0.0463973 1.88184e-19) (0.252693 0.0443423 -1.25782e-19) (0.372522 0.0454593 -4.85025e-19) (0.509095 0.049938 1.77517e-19) (0.655346 0.0576919 4.02525e-20) (0.800585 0.0664704 -1.09144e-19) (0.939522 0.0774243 6.3094e-20) (1.0419 0.0814839 -6.0351e-20) (1.17495 0.0962978 7.4018e-20) (-0.0219776 0.0230992 -6.64392e-20) (-0.0394839 0.0450658 2.14435e-19) (-0.0342018 0.0532705 2.40446e-19) (-0.00703179 0.0533744 1.85065e-19) (0.0420573 0.0498398 2.85213e-19) (0.114116 0.0457841 2.52469e-19) (0.21033 0.0435017 -2.85269e-19) (0.3304 0.0446001 3.95562e-19) (0.470759 0.0497629 3.10432e-19) (0.623563 0.0589041 -2.8803e-19) (0.77767 0.0698283 2.19471e-19) (0.921236 0.082462 -5.77642e-20) (1.0445 0.091211 -1.05765e-19) (1.13737 0.098555 -1.4594e-19) (1.22788 0.105655 -7.51182e-20) (-0.023033 0.0222328 -1.85575e-19) (-0.0385953 0.0419075 3.69836e-19) (-0.0275985 0.0484294 -1.99018e-20) (0.00897797 0.0476312 3.84462e-20) (0.0715339 0.0442871 -5.18797e-20) (0.161189 0.0417262 -3.89347e-21) (0.278269 0.042385 2.43173e-19) (0.419937 0.0477257 -1.84897e-19) (0.5784 0.0576891 1.86923e-19) (0.741215 0.071306 2.32432e-19) (0.894527 0.0848966 -1.49656e-19) (1.02639 0.0988941 1.18581e-19) (1.12961 0.10514 -4.53852e-20) (1.20473 0.113781 1.10362e-19) (1.25783 0.110852 5.20011e-20) (-0.023897 0.0212262 -2.61737e-19) (-0.03655 0.0383739 2.90237e-20) (-0.0183257 0.0432258 9.89515e-20) (0.0297246 0.0417945 -1.59258e-19) (0.108301 0.0392346 -1.82135e-19) (0.218126 0.0391119 1.11742e-19) (0.357509 0.043856 -2.07644e-19) (0.519418 0.0543496 1.63625e-19) (0.690767 0.0692959 -6.70651e-20) (0.855245 0.0864319 -2.54808e-19) (0.998668 0.101388 -1.46178e-19) (1.11178 0.114403 2.14196e-19) (1.19321 0.118386 -9.05048e-20) (1.24695 0.12553 -5.63068e-20) (1.27149 0.111854 -9.66502e-20) (-0.0244911 0.0200644 5.15406e-19) (-0.0330459 0.0344807 -6.3363e-19) (-0.00582428 0.0377994 -1.44778e-19) (0.0560367 0.036172 -8.52165e-20) (0.153297 0.0352061 5.2963e-20) (0.28541 0.0386584 -2.1056e-19) (0.447005 0.0485961 1.22253e-19) (0.625261 0.0646809 6.06187e-20) (0.801918 0.0839947 -4.02873e-19) (0.959151 0.103091 3.28999e-19) (1.08542 0.117712 8.59263e-20) (1.17661 0.12826 -2.30908e-19) (1.23674 0.130106 1.34719e-19) (1.2699 0.132631 8.67753e-20) (1.28771 0.121212 1.88412e-20) (-0.0247102 0.0187206 -3.47553e-19) (-0.0277539 0.0302551 5.77219e-19) (0.0104894 0.0323139 5.61474e-20) (0.0887014 0.0311171 -2.06819e-19) (0.207192 0.0327787 2.55044e-19) (0.362745 0.0410462 -1.54221e-19) (0.544331 0.0569905 1.6475e-20) (0.732574 0.0783825 -1.97196e-19) (0.905897 0.100704 3.54128e-19) (1.04828 0.119955 -1.57776e-19) (1.15332 0.132754 4.30208e-20) (1.22269 0.140251 -6.70833e-20) (1.26362 0.139348 -6.53502e-21) (1.28366 0.139519 9.76206e-21) (1.29244 0.127193 2.11746e-20) (-0.0244278 0.0171694 7.47877e-20) (-0.0203177 0.0257405 -3.422e-19) (0.0312015 0.0269643 -2.99362e-19) (0.128401 0.0270346 7.9338e-20) (0.270228 0.0325589 -2.06988e-19) (0.448837 0.0468044 -1.90791e-19) (0.645802 0.0689854 6.03211e-20) (0.836055 0.0946247 2.8179e-19) (0.998029 0.118177 9.3236e-20) (1.1206 0.135961 -1.82059e-19) (1.20352 0.146026 -4.96964e-20) (1.25318 0.150225 2.60692e-20) (1.27924 0.147119 1.44158e-19) (1.2892 0.144962 -3.19089e-20) (1.29197 0.132405 -3.85681e-20) (-0.0235007 0.0153949 -4.10461e-20) (-0.01036 0.0210045 4.49987e-19) (0.0568759 0.0219873 2.10881e-19) (0.175631 0.0243852 7.45686e-20) (0.342041 0.0351296 1.46753e-19) (0.541316 0.0561759 2.83482e-19) (0.746995 0.084061 1.32398e-19) (0.931068 0.112321 -2.92179e-19) (1.07568 0.135337 -1.83767e-19) (1.17637 0.150503 3.14485e-19) (1.23858 0.157424 -3.09847e-20) (1.27197 0.158582 -2.08907e-20) (1.28676 0.153592 -1.83708e-19) (1.29006 0.149755 -2.35396e-20) (1.28971 0.137099 1.70352e-19) (-0.0217728 0.0133954 -7.10323e-20) (0.00250571 0.016149 -5.69053e-19) (0.0880217 0.0176733 -4.27751e-20) (0.230606 0.0236798 -1.20144e-19) (0.421518 0.0409597 -3.24847e-19) (0.636924 0.069022 1.08401e-19) (0.843552 0.101364 -2.65077e-19) (1.01444 0.130421 1.19955e-19) (1.13825 0.151469 -1.03823e-20) (1.21738 0.163377 -1.78911e-19) (1.26166 0.167167 1.15863e-19) (1.28228 0.165662 -5.95111e-20) (1.2891 0.159254 7.53995e-20) (1.28817 0.154082 1.26929e-19) (1.28533 0.141341 -2.46158e-20) (-0.019078 0.0111866 -4.95852e-22) (0.0186615 0.01132 9.40681e-20) (0.12505 0.014377 9.0744e-20) (0.293141 0.02545 -8.61257e-21) (0.50675 0.0502931 4.56597e-20) (0.731977 0.0848377 -3.43043e-19) (0.931947 0.119939 8.10477e-20) (1.08468 0.148121 -5.2069e-20) (1.18663 0.166225 4.06914e-20) (1.24613 0.174667 1.01445e-19) (1.27568 0.175566 -1.22835e-19) (1.28678 0.171857 3.09427e-20) (1.28814 0.164392 2.71755e-20) (1.28447 0.158126 -3.42668e-20) (1.28049 0.145477 2.31146e-20) (-0.0152447 0.00880589 1.65009e-19) (0.0384681 0.0067149 2.91171e-19) (0.168222 0.0125192 4.46326e-20) (0.362549 0.0301835 -1.07505e-19) (0.595171 0.0630701 3.11916e-19) (0.822975 0.102886 2.08258e-19) (1.0099 0.138939 -7.52741e-20) (1.14174 0.16492 2.84654e-21) (1.22259 0.179539 -7.11323e-20) (1.26516 0.184601 2.01006e-20) (1.28316 0.182967 1.6328e-20) (1.28739 0.177477 -7.04951e-20) (1.28512 0.169229 -1.45743e-19) (1.27986 0.162051 9.13789e-20) (1.27501 0.149531 -1.37706e-19) (-0.0101008 0.0063138 -1.80467e-19) (0.0622449 0.00258768 -9.45359e-20) (0.217581 0.0125775 -2.53305e-19) (0.437582 0.0382337 3.99664e-19) (0.683881 0.0789356 -3.48266e-19) (0.907109 0.122379 1.42241e-19) (1.0764 0.157734 8.82841e-20) (1.18656 0.180587 9.76736e-20) (1.2482 0.191524 6.08927e-20) (1.27679 0.193464 -1.20231e-20) (1.28604 0.189675 -5.95245e-20) (1.28547 0.182762 -1.40341e-19) (1.28086 0.173919 7.3471e-20) (1.2746 0.165926 6.91929e-20) (1.2693 0.153584 1.47586e-19) (-0.00347957 0.00379509 -1.6175e-19) (0.090245 -0.000749851 7.86935e-20) (0.272882 0.0150528 8.06284e-20) (0.516483 0.0497385 -1.75454e-19) (0.77006 0.0973368 6.77692e-20) (0.982506 0.142623 -5.9958e-20) (1.13145 0.175927 -9.2265e-20) (1.22058 0.195085 -1.04563e-19) (1.2655 0.202382 3.89686e-20) (1.28294 0.201537 1.18803e-19) (1.28574 0.195943 1.7125e-19) (1.2819 0.187885 6.58331e-20) (1.27578 0.178551 -4.36453e-20) (1.26897 0.169811 -4.67425e-20) (1.26333 0.157659 -3.93046e-20) (0.00477603 0.00135776 1.56141e-19) (0.122625 -0.0029305 -7.78647e-20) (0.333539 0.0204125 4.47513e-20) (0.597148 0.0645922 2.54067e-19) (0.851325 0.117656 2.43191e-19) (1.04822 0.163085 -2.25864e-19) (1.17575 0.193313 1.10456e-19) (1.24547 0.208498 1.28033e-19) (1.27632 0.212349 -2.17876e-19) (1.28511 0.209071 4.48367e-20) (1.28327 0.201962 -9.88308e-20) (1.27724 0.19296 1.58176e-20) (1.27017 0.18318 -4.9428e-20) (1.26302 0.17373 8.8955e-20) (1.25717 0.161759 -9.62772e-20) (0.014804 -0.000865585 -1.41827e-19) (0.159414 -0.00353975 9.60516e-20) (0.398602 0.02902 1.29819e-19) (0.677378 0.082488 -3.36026e-20) (0.925927 0.139315 -3.06978e-19) (1.10405 0.183395 -1.09279e-19) (1.21038 0.209829 -1.70703e-19) (1.26284 0.22098 7.28589e-20) (1.28219 0.221655 -1.02006e-20) (1.28443 0.216269 -1.15423e-19) (1.27932 0.207868 -1.06134e-19) (1.27183 0.198055 1.98452e-20) (1.26416 0.187831 4.01689e-20) (1.25682 0.177697 -8.17505e-20) (1.2508 0.165886 4.14235e-20) (0.0267151 -0.0027195 6.05729e-20) (0.200476 -0.00213627 1.45109e-21) (0.466804 0.0410763 -3.90525e-19) (0.755124 0.103002 -2.80984e-20) (0.992774 0.161833 2.20119e-19) (1.15035 0.203327 2.22703e-19) (1.23658 0.225506 1.52379e-19) (1.27413 0.232706 -2.80361e-20) (1.2843 0.230503 4.66142e-20) (1.28168 0.223284 -1.48811e-21) (1.2743 0.213753 8.42398e-20) (1.26587 0.203206 3.29882e-20) (1.25781 0.192512 7.13621e-20) (1.25037 0.181714 -5.3288e-20) (1.24421 0.170027 -3.98653e-20) (0.0405881 -0.00402696 -1.07777e-20) (0.245483 0.00171845 1.11013e-19) (0.536658 0.0565983 2.05284e-19) (0.828672 0.125676 6.90531e-20) (1.05135 0.184833 -1.97887e-19) (1.1878 0.222758 -2.47529e-19) (1.25562 0.24043 1.01389e-19) (1.2806 0.243855 -6.1309e-20) (1.2836 0.239061 1.73316e-19) (1.27743 0.230225 4.74892e-21) (1.2685 0.219669 -4.37718e-20) (1.25945 0.208425 -1.65413e-20) (1.25114 0.197221 8.03989e-20) (1.24367 0.185778 7.08455e-20) (1.23738 0.174168 7.59124e-20) (0.0564588 -0.00459053 1.60043e-19) (0.293907 0.00842012 -1.71588e-19) (0.606594 0.075439 1.08122e-19) (0.896725 0.150073 1.52016e-19) (1.10158 0.208036 1.3138e-19) (1.21725 0.241641 5.29006e-20) (1.26863 0.254713 2.82129e-20) (1.28325 0.254585 -1.09553e-20) (1.28074 0.247455 -7.95189e-20) (1.27204 0.237162 2.98648e-20) (1.26206 0.225642 7.13587e-20) (1.25261 0.213709 2.90822e-20) (1.24416 0.201947 -2.77409e-20) (1.23669 0.189878 -2.9412e-20) (1.2303 0.178289 -3.56855e-20) (0.0743098 -0.00419694 -8.59751e-20) (0.345026 0.0182805 6.22525e-20) (0.675088 0.0973324 -6.62548e-21) (0.958405 0.175802 -1.60015e-19) (1.1437 0.231239 -4.18174e-20) (1.23959 0.259978 9.37081e-20) (1.27664 0.26847 -8.33392e-20) (1.28287 0.265028 5.60825e-21) (1.27623 0.255774 -5.13752e-21) (1.26574 0.244134 -2.74409e-20) (1.25506 0.231677 -4.53324e-20) (1.24538 0.219042 -6.40478e-20) (1.23686 0.206676 -2.43756e-20) (1.22943 0.194001 4.2437e-20) (1.22295 0.182368 1.01466e-20) (0.0940613 -0.00262529 -1.11014e-19) (0.397964 0.0314959 -1.4131e-20) (0.740775 0.121941 -7.06724e-20) (1.0132 0.202526 6.62865e-20) (1.17817 0.254297 -7.7781e-20) (1.25572 0.277798 -3.38452e-20) (1.28052 0.28181 8.73142e-21) (1.28009 0.275283 -1.32492e-20) (1.27038 0.264074 2.63499e-20) (1.25866 0.251152 2.43673e-22) (1.24755 0.237762 1.80406e-20) (1.23774 0.224402 3.17716e-20) (1.22922 0.211389 3.70477e-20) (1.22187 0.198128 -1.66231e-20) (1.21531 0.186379 -1.22266e-20) (0.115564 0.000340993 6.69858e-20) (0.451737 0.0481325 7.06674e-20) (0.802509 0.148896 2.47276e-20) (1.06089 0.229951 -3.89435e-20) (1.20552 0.277108 8.5935e-21) (1.26645 0.295141 5.90464e-20) (1.28096 0.294822 -4.04288e-20) (1.27534 0.285418 -3.51819e-20) (1.26342 0.272378 -1.14138e-20) (1.25089 0.258209 7.00834e-21) (1.23954 0.243875 -3.91926e-20) (1.22969 0.22976 8.33015e-21) (1.22123 0.216066 2.19103e-20) (1.21399 0.202237 -8.81805e-21) (1.20739 0.190297 -6.85866e-21) (0.138594 0.00489944 -4.39988e-20) (0.505317 0.0681293 -3.0062e-20) (0.859393 0.177817 -5.85549e-20) (1.10147 0.257818 -9.45485e-21) (1.22635 0.299593 -6.13398e-21) (1.2725 0.312045 -6.42744e-20) (1.27852 0.307571 2.0281e-20) (1.26895 0.295473 1.22904e-20) (1.25549 0.280688 -2.02249e-20) (1.24246 0.265283 -1.21905e-20) (1.23101 0.249984 -4.56396e-22) (1.22122 0.235083 -1.15795e-20) (1.21288 0.220683 -1.76331e-20) (1.20578 0.2063 -1.54978e-20) (1.19919 0.194093 1.09593e-20) (0.162861 0.0112135 -2.02935e-20) (0.557687 0.0913135 7.39952e-21) (0.910769 0.208329 9.96101e-21) (1.1351 0.285898 1.02571e-20) (1.24127 0.321688 1.73874e-20) (1.27449 0.32854 1.21723e-20) (1.27366 0.3201 -3.39414e-21) (1.26114 0.305456 1.17115e-20) (1.24667 0.288984 -6.08896e-22) (1.23339 0.272339 -7.28335e-23) (1.22197 0.256051 4.62074e-21) (1.21231 0.240336 -2.1459e-21) (1.20415 0.225208 1.45837e-21) (1.19725 0.210277 5.97375e-21) (1.19075 0.197731 -4.77917e-21) (0.188009 0.0193998 -1.29726e-20) (0.607888 0.11742 -3.33045e-21) (0.956197 0.240069 1.47846e-20) (1.16204 0.313977 6.4335e-21) (1.25082 0.343335 1.76841e-20) (1.27296 0.344642 1.17672e-20) (1.26669 0.332421 -3.79408e-22) (1.25208 0.315356 1.34414e-20) (1.237 0.297231 -6.58856e-21) (1.22368 0.279335 7.24052e-22) (1.2124 0.262034 4.12871e-21) (1.20294 0.245478 -1.83355e-21) (1.19503 0.229606 1.74094e-21) (1.18839 0.214116 6.0995e-21) (1.18209 0.201179 -2.16872e-21) (0.213635 0.0295198 -1.87829e-20) (0.655059 0.146114 -5.28087e-20) (0.995422 0.272683 -5.89269e-20) (1.18261 0.341859 -2.16082e-21) (1.25554 0.364477 -8.56751e-21) (1.26833 0.360349 -5.77842e-20) (1.25788 0.344527 2.78508e-20) (1.24186 0.325138 2.67631e-21) (1.22652 0.305382 -1.68655e-20) (1.21332 0.286221 -1.45308e-20) (1.20228 0.267887 1.99393e-21) (1.19311 0.25047 -7.77089e-21) (1.18551 0.233834 -8.21997e-21) (1.1792 0.217764 -1.12919e-20) (1.17317 0.204409 6.5694e-21) (0.239302 0.0415762 7.04141e-20) (0.698457 0.177003 5.11378e-20) (1.02834 0.305829 2.14326e-20) (1.19718 0.369358 -2.97905e-20) (1.25589 0.385048 1.36139e-20) (1.26096 0.375638 3.07023e-20) (1.2474 0.356386 -2.31436e-20) (1.23055 0.334754 -4.36316e-20) (1.21522 0.313379 -2.76391e-21) (1.2023 0.292942 2.38578e-20) (1.1916 0.273561 -2.66731e-20) (1.18279 0.25527 1.11566e-20) (1.17558 0.237854 5.05971e-21) (1.16965 0.221181 1.15904e-21) (1.16391 0.207404 -1.04874e-22) (0.264555 0.0555146 -8.56188e-20) (0.737472 0.20966 -5.35763e-20) (1.05496 0.339172 -8.31786e-20) (1.20613 0.396296 7.22049e-20) (1.25231 0.404977 -7.41424e-20) (1.25114 0.390471 -1.69958e-20) (1.2354 0.367948 -1.26161e-21) (1.21819 0.344141 1.31379e-21) (1.20313 0.321158 3.09892e-20) (1.19062 0.299439 -3.17385e-20) (1.18036 0.279008 2.52128e-20) (1.17199 0.259837 9.14111e-21) (1.16523 0.241637 2.08493e-20) (1.15973 0.224364 1.07362e-23) (1.15416 0.210142 -5.43154e-21) (0.288936 0.0712279 1.21029e-20) (0.771634 0.243632 1.55069e-20) (1.07538 0.372385 -2.81962e-20) (1.20983 0.422504 -1.08864e-19) (1.24515 0.424184 -2.63425e-20) (1.2391 0.40479 6.69307e-20) (1.22198 0.379147 -5.0215e-20) (1.20483 0.353224 -2.3057e-20) (1.19023 0.328649 6.99429e-21) (1.17828 0.305652 -6.10672e-21) (1.16856 0.284174 -3.33254e-20) (1.16071 0.264122 -1.55908e-20) (1.1545 0.245151 -3.01095e-21) (1.14945 0.227366 4.26634e-21) (1.14388 0.212609 2.97443e-21) (0.312003 0.0885599 1.64335e-19) (0.800614 0.278458 -2.04023e-19) (1.08976 0.405147 1.3649e-19) (1.20866 0.447814 6.86596e-20) (1.23474 0.442578 1.884e-19) (1.22503 0.418521 4.00536e-21) (1.20723 0.389903 4.375e-20) (1.19047 0.361925 1.16283e-20) (1.17654 0.335777 -6.6253e-20) (1.16527 0.311516 2.30931e-20) (1.1562 0.289004 1.73675e-20) (1.14896 0.268074 1.96053e-20) (1.14338 0.248353 -1.62603e-20) (1.1388 0.230211 -2.22118e-21) (1.13343 0.214822 6.72538e-22) (0.333341 0.107309 -2.19062e-20) (0.824207 0.313682 2.37651e-19) (1.09831 0.437149 1.76218e-19) (1.20296 0.472057 2.83937e-20) (1.22138 0.46006 -1.7491e-19) (1.20909 0.43158 -1.00852e-19) (1.19119 0.400129 2.95187e-20) (1.17514 0.370155 -1.58237e-20) (1.16206 0.342465 3.62205e-20) (1.15161 0.316963 7.55197e-21) (1.14331 0.293445 7.41378e-21) (1.13677 0.271652 -9.76544e-21) (1.13188 0.251214 3.22114e-21) (1.12776 0.232742 7.60302e-21) (1.12291 0.21676 6.30529e-22) (0.352578 0.127236 1.83977e-19) (0.842309 0.348855 -1.95971e-19) (1.10129 0.468089 -2.94143e-19) (1.19309 0.495065 2.05581e-20) (1.20531 0.476522 1.38127e-19) (1.19141 0.443869 1.24414e-19) (1.17393 0.409727 5.64328e-20) (1.15887 0.377824 5.82859e-21) (1.14684 0.348634 5.5949e-21) (1.13734 0.321927 -2.36761e-22) (1.12989 0.297431 1.32734e-20) (1.12416 0.274812 4.69269e-22) (1.12 0.253721 -3.61356e-21) (1.11639 0.234925 -2.93427e-21) (1.11221 0.218345 -2.60874e-21) (0.369391 0.148068 -2.37497e-19) (0.854909 0.383542 1.80356e-19) (1.09898 0.497679 1.53477e-19) (1.17936 0.51667 -9.92662e-20) (1.18676 0.49185 -1.92573e-19) (1.17209 0.455282 -3.72614e-20) (1.1555 0.418589 -7.92054e-20) (1.14173 0.384838 3.03216e-20) (1.13089 0.354202 -5.65353e-21) (1.12247 0.326345 -1.18622e-20) (1.11597 0.300913 -4.70926e-21) (1.11113 0.277507 -3.86188e-21) (1.10774 0.255819 -5.45098e-21) (1.10473 0.236709 3.19139e-21) (1.10131 0.219551 -4.25442e-21) (0.383511 0.169509 3.3714e-19) (0.862074 0.417326 -2.13912e-19) (1.09167 0.525642 1.09863e-19) (1.16209 0.536708 9.84132e-20) (1.1659 0.505921 1.62746e-19) (1.15125 0.465697 -8.90759e-20) (1.13606 0.426612 2.88536e-20) (1.12375 0.3911 2.49514e-20) (1.11424 0.359105 -1.48146e-20) (1.10701 0.330149 1.85782e-21) (1.10158 0.303833 3.80665e-21) (1.0977 0.279696 -3.08497e-21) (1.09514 0.257469 5.51806e-21) (1.09281 0.238061 -1.08617e-20) (1.09023 0.220354 2.78256e-20) (0.394734 0.191246 -1.86905e-19) (0.863938 0.449808 1.20515e-20) (1.07969 0.551719 7.14037e-20) (1.14156 0.555024 -1.45693e-19) (1.14293 0.518602 5.26174e-20) (1.12911 0.475002 1.42296e-20) (1.11559 0.433679 -3.46363e-20) (1.10491 0.39654 -1.24996e-20) (1.09691 0.363252 7.84934e-21) (1.09101 0.333275 7.06664e-22) (1.08675 0.306139 -1.04041e-20) (1.08391 0.281334 -2.41002e-20) (1.08224 0.258628 -7.21319e-21) (1.08065 0.238946 3.24037e-20) (1.07899 0.220742 9.43346e-21) (0.402913 0.212952 3.48993e-20) (0.860692 0.48061 -1.87842e-19) (1.06339 0.575669 -2.33951e-19) (1.11807 0.571473 1.66969e-19) (1.11813 0.529764 -8.21232e-20) (1.10571 0.483066 4.38455e-20) (1.0941 0.439705 1.64389e-20) (1.08531 0.401045 2.00104e-21) (1.07897 0.366571 2.65716e-21) (1.07451 0.335657 -6.97217e-21) (1.07152 0.307776 1.06661e-20) (1.06979 0.282379 1.95233e-20) (1.06907 0.25926 -1.00909e-20) (1.06827 0.239332 -8.47916e-21) (1.06761 0.220702 -4.95272e-20) (0.407966 0.234302 1.39042e-19) (0.852588 0.509375 3.48856e-19) (1.04311 0.597257 -5.62051e-20) (1.09191 0.585874 -1.03994e-19) (1.09167 0.539314 1.40548e-19) (1.08109 0.489768 3.50888e-20) (1.07173 0.444573 -5.42295e-21) (1.065 0.404535 -7.37215e-21) (1.06046 0.368986 -1.00393e-21) (1.05757 0.337235 2.54019e-20) (1.05594 0.308696 -1.64296e-20) (1.0554 0.282791 -5.61036e-21) (1.05566 0.259328 3.90662e-20) (1.05572 0.239185 1.38402e-20) (1.05614 0.220219 4.42537e-20) (0.409879 0.254971 -6.20803e-20) (0.839959 0.535801 1.27655e-19) (1.01914 0.616245 1.06494e-19) (1.06333 0.598075 -5.0127e-20) (1.06368 0.5471 -2.95679e-20) (1.05543 0.495022 -1.58887e-20) (1.04856 0.44819 -1.70628e-20) (1.04407 0.406926 5.32067e-21) (1.04146 0.370431 1.29962e-20) (1.04024 0.337951 -3.48061e-20) (1.04005 0.308851 4.09972e-20) (1.04077 0.282529 -2.30373e-20) (1.04206 0.258795 -5.74545e-20) (1.04302 0.238467 7.5688e-20) (1.04459 0.21927 -5.4619e-20) (0.408724 0.274636 -1.19631e-19) (0.823209 0.559677 -4.26642e-19) (0.99165 0.632358 1.33266e-20) (1.03265 0.607918 -5.11468e-20) (1.03436 0.553005 -6.00302e-20) (1.02883 0.498717 1.6308e-20) (1.02469 0.450461 2.44852e-20) (1.02258 0.408141 -2.37897e-20) (1.02203 0.370841 -2.67268e-20) (1.02257 0.337752 4.86967e-20) (1.02393 0.308196 -2.30404e-20) (1.02596 0.281559 -1.27348e-20) (1.02831 0.257628 -5.05087e-21) (1.03021 0.237139 -2.12499e-20) (1.03299 0.217836 1.89001e-20) (0.404641 0.292946 1.11616e-20) (0.802644 0.580837 2.20335e-19) (0.960983 0.645456 8.18519e-20) (1.00016 0.615185 3.33882e-20) (1.0039 0.556927 9.41636e-21) (1.00144 0.500761 -2.71799e-20) (1.00022 0.451306 -2.78952e-20) (1.00063 0.40811 5.84405e-20) (1.00224 0.370157 1.06376e-19) (1.00465 0.336588 -1.09966e-19) (1.00763 0.306691 -1.4605e-20) (1.01103 0.279849 1.1818e-20) (1.01446 0.2558 9.16776e-20) (1.01733 0.235163 2.89017e-20) (1.02138 0.215907 -8.32842e-20) (0.397775 0.309543 6.5728e-20) (0.778266 0.598819 -2.07494e-19) (0.927878 0.655684 -2.34078e-20) (0.966195 0.619753 -2.231e-20) (0.972504 0.558745 2.1707e-20) (0.973397 0.501067 -1.53936e-20) (0.975258 0.45065 1.05231e-20) (0.97831 0.406772 -7.93084e-20) (0.982179 0.368328 -5.7752e-20) (0.986546 0.334415 7.85356e-20) (0.99122 0.3043 -5.72049e-20) (0.996018 0.277373 7.8758e-20) (1.00056 0.253294 -7.46192e-20) (1.0045 0.23252 2.18161e-20) (1.01 0.213465 8.10827e-20) (0.388191 0.32425 -1.56346e-19) (0.750303 0.61314 2.21553e-19) (0.892754 0.662806 -4.79398e-21) (0.930992 0.621679 1.63105e-20) (0.940352 0.558386 -4.50539e-20) (0.944842 0.499554 1.71895e-20) (0.949925 0.448428 7.32231e-20) (0.955721 0.404071 9.78645e-20) (0.961933 0.365305 -2.01878e-19) (0.968325 0.331191 5.90085e-20) (0.974748 0.300984 1.63585e-20) (0.980981 0.27409 -1.08381e-19) (0.986698 0.250076 8.62091e-20) (0.991984 0.229206 -2.95919e-20) (0.999224 0.210526 3.77402e-20) (0.376036 0.336867 1.78891e-19) (0.719505 0.623812 -1.23193e-19) (0.855856 0.666578 1.15334e-20) (0.89481 0.620888 -5.21927e-22) (0.907642 0.555783 -3.8109e-21) (0.915923 0.496155 7.25756e-20) (0.924343 0.444585 -9.88949e-20) (0.932966 0.399962 8.47913e-20) (0.94159 0.361052 1.22645e-19) (0.950065 0.326884 -1.72163e-19) (0.958268 0.296711 5.34128e-20) (0.965955 0.269946 -2.77481e-20) (0.972997 0.246049 -6.72985e-21) (0.980043 0.225127 -9.08163e-20) (0.989126 0.207294 -4.78235e-20) (0.361508 0.34712 -4.69409e-20) (0.68634 0.630683 4.44222e-20) (0.817513 0.666886 3.13895e-20) (0.857907 0.617316 1.34403e-20) (0.874569 0.550883 1.12494e-19) (0.886796 0.490818 -1.06124e-19) (0.89864 0.439077 1.40369e-19) (0.910155 0.39441 -1.11791e-19) (0.921245 0.355539 1.29936e-19) (0.931837 0.321475 1.47244e-19) (0.94183 0.291462 -2.57883e-20) (0.950999 0.264908 1.80411e-20) (0.959554 0.241106 -3.06897e-20) (0.968681 0.219917 1.8811e-20) (0.979066 0.203512 3.41784e-20) (0.344922 0.35484 2.50492e-20) (0.65124 0.633634 -2.94845e-20) (0.778079 0.663657 5.21779e-20) (0.820548 0.610905 -1.39722e-20) (0.841332 0.543644 1.84121e-20) (0.85762 0.483502 -6.86193e-20) (0.872948 0.43187 -1.45138e-19) (0.887401 0.387387 1.21163e-19) (0.900991 0.348748 -4.01802e-20) (0.91372 0.314949 -1.95699e-19) (0.925504 0.285237 1.51349e-19) (0.936204 0.259007 -6.56411e-20) (0.946416 0.235388 -6.81397e-20) (0.957623 0.213485 9.75566e-21) (0.967604 0.195424 -7.74184e-20) (0.326586 0.359888 7.59214e-20) (0.614625 0.632577 -1.08216e-19) (0.737918 0.656853 -5.88537e-20) (0.782998 0.601619 -2.21483e-19) (0.808132 0.534036 -1.3539e-19) (0.828556 0.474181 -8.65509e-20) (0.847405 0.422943 1.6274e-20) (0.864819 0.378877 -2.97841e-19) (0.880926 0.340664 -2.78625e-19) (0.895794 0.307297 2.66952e-19) (0.909383 0.278023 -2.10051e-19) (0.921697 0.252235 1.38551e-19) (0.933576 0.229095 1.1178e-19) (0.946033 0.207847 7.62185e-21) (0.955048 0.190527 9.54044e-21) (0.306811 0.362158 -8.29037e-20) (0.576918 0.62746 1.03338e-19) (0.697391 0.646459 -1.53502e-20) (0.745525 0.589443 4.45166e-20) (0.775172 0.522044 1.55251e-19) (0.799769 0.462842 8.69941e-20) (0.822149 0.412286 1.38543e-20) (0.842529 0.368875 1.12113e-19) (0.861149 0.331287 2.47223e-19) (0.878146 0.298514 -8.10524e-20) (0.893552 0.269803 1.34022e-19) (0.90753 0.244509 -1.45733e-19) (0.921012 0.221734 -3.83491e-21) (0.934487 0.200701 1.28877e-20) (0.943572 0.183365 1.6292e-20) (0.28591 0.361574 1.03202e-20) (0.53854 0.618268 3.70018e-20) (0.656853 0.632489 -1.71184e-19) (0.708395 0.574383 -6.48125e-20) (0.742656 0.507673 -1.83721e-19) (0.771427 0.449487 7.8798e-20) (0.797321 0.399903 1.47288e-19) (0.820648 0.357386 -1.51733e-19) (0.84176 0.320622 1.79438e-19) (0.860865 0.288614 6.87579e-20) (0.87808 0.260613 -1.07489e-19) (0.893693 0.23597 2.95769e-20) (0.908613 0.213808 -1.82068e-20) (0.92295 0.193451 -2.76707e-20) (0.9326 0.17665 -4.64862e-20) (0.264195 0.358094 -2.21414e-20) (0.499909 0.605024 3.50605e-19) (0.616655 0.61498 1.01688e-19) (0.67187 0.556467 1.37969e-19) (0.710787 0.49094 1.55523e-19) (0.743697 0.434134 -2.34862e-19) (0.773061 0.385809 -2.07585e-20) (0.799295 0.344424 3.54186e-20) (0.822861 0.308683 1.37806e-19) (0.844045 0.277605 4.99617e-21) (0.863052 0.250442 2.54366e-20) (0.880263 0.226536 -2.27849e-20) (0.896525 0.205031 -2.88755e-20) (0.91173 0.185357 -2.44803e-20) (0.922189 0.169158 1.83634e-19) (0.24198 0.351703 -1.09521e-19) (0.461435 0.587784 -4.64044e-19) (0.577135 0.593997 -4.07844e-19) (0.636206 0.535744 -1.35105e-19) (0.679765 0.471885 -4.42736e-19) (0.716743 0.416812 4.47072e-19) (0.74951 0.370033 1.39215e-19) (0.77859 0.330017 1.35834e-19) (0.804554 0.295496 -6.00772e-19) (0.82777 0.265513 -2.13395e-19) (0.848528 0.239333 7.63763e-20) (0.867277 0.216301 3.18487e-20) (0.884803 0.195607 -6.99779e-21) (0.900894 0.176766 -4.80256e-21) (0.912278 0.161214 -2.88204e-20) (0.219577 0.342418 2.27477e-19) (0.423518 0.566636 6.58552e-20) (0.53862 0.56963 5.70984e-19) (0.601653 0.512283 2.60711e-19) (0.649788 0.45056 3.65703e-19) (0.69073 0.39757 -3.51432e-19) (0.726804 0.352616 -2.05531e-19) (0.758648 0.314199 -6.748e-20) (0.786941 0.281091 3.43812e-20) (0.812128 0.252365 1.25128e-19) (0.834583 0.2273 1.14946e-19) (0.854807 0.205255 1.48545e-19) (0.873535 0.185475 -5.99448e-20) (0.890515 0.167547 1.17621e-19) (0.902878 0.152699 3.17006e-20) (0.197292 0.330289 -6.15175e-20) (0.386542 0.541699 3.8868e-19) (0.501426 0.541995 -4.40572e-19) (0.568451 0.486174 -5.29104e-19) (0.621047 0.427039 7.32884e-20) (0.665817 0.376467 -3.3812e-20) (0.705078 0.333611 2.8549e-19) (0.739585 0.297019 -1.16284e-19) (0.770118 0.265512 3.68413e-19) (0.797203 0.238199 -1.35366e-19) (0.821288 0.214384 -1.77624e-19) (0.842916 0.193448 -9.60843e-20) (0.862787 0.174695 1.00607e-19) (0.880646 0.157759 3.83683e-20) (0.89401 0.143659 -4.41627e-20) (0.175427 0.315393 -7.32804e-20) (0.350875 0.513121 -1.73788e-19) (0.465852 0.51123 1.18095e-19) (0.536833 0.457527 -7.20545e-21) (0.593728 0.401409 -2.98243e-19) (0.642157 0.353578 4.39903e-19) (0.684463 0.313081 -1.4481e-19) (0.721511 0.278532 -1.04866e-19) (0.754181 0.248807 -1.11386e-19) (0.783075 0.223059 6.08563e-20) (0.808711 0.200621 -1.65034e-19) (0.831669 0.180907 3.44642e-20) (0.85262 0.163281 -9.77382e-20) (0.871334 0.147405 -7.2966e-20) (0.8857 0.134109 -7.87073e-20) (0.154269 0.29784 -2.19942e-19) (0.316866 0.48108 -1.8693e-19) (0.432181 0.477495 4.05081e-20) (0.507017 0.426468 5.96825e-19) (0.568006 0.373775 1.92456e-19) (0.6199 0.328991 -7.49088e-20) (0.665084 0.291104 -1.39571e-19) (0.704533 0.258803 3.29851e-19) (0.739221 0.231034 6.00964e-20) (0.769823 0.206995 1.85717e-19) (0.796921 0.186059 2.68397e-19) (0.821127 0.167674 1.6544e-19) (0.843091 0.151266 -2.18434e-20) (0.862624 0.136517 1.02682e-20) (0.877978 0.124083 9.84153e-20) (0.134092 0.277764 2.95436e-19) (0.284843 0.445781 4.2726e-19) (0.400678 0.440973 -1.53542e-19) (0.47921 0.393144 -1.50839e-19) (0.54405 0.344256 3.75477e-19) (0.599184 0.302807 1.98646e-20) (0.647059 0.267766 1.70827e-19) (0.688751 0.237909 -3.09883e-19) (0.725324 0.212257 1.89413e-19) (0.75752 0.190064 -1.28573e-20) (0.785982 0.170745 -8.37156e-20) (0.811348 0.153792 -3.03646e-19) (0.83425 0.138686 -1.44703e-19) (0.854558 0.125124 2.02323e-19) (0.870872 0.113615 -8.47989e-20) (0.115152 0.255326 1.8145e-19) (0.255111 0.407452 -1.77241e-19) (0.37159 0.401864 2.58274e-19) (0.453605 0.357717 -1.16275e-19) (0.522016 0.312986 -3.65644e-19) (0.58014 0.275141 -7.02575e-20) (0.630498 0.243163 -4.04236e-20) (0.674259 0.215932 1.88354e-19) (0.71257 0.192549 -2.97421e-19) (0.746235 0.17233 -1.49605e-19) (0.775953 0.154735 -1.12178e-19) (0.802384 0.139307 9.8691e-20) (0.826146 0.125579 6.35705e-20) (0.847177 0.113264 -1.51201e-19) (0.864408 0.102743 7.59071e-20) (0.097687 0.23071 -3.02515e-19) (0.227949 0.366347 3.07694e-21) (0.345144 0.36039 7.83829e-20) (0.430379 0.320364 -1.14944e-19) (0.502047 0.280111 1.35132e-19) (0.562891 0.246115 8.45177e-20) (0.615505 0.217403 -7.28724e-20) (0.661146 0.192964 1.58642e-19) (0.701034 0.171989 1.35853e-19) (0.736034 0.15386 -5.63334e-20) (0.766891 0.13809 1.58423e-19) (0.794286 0.12427 -8.0853e-21) (0.818821 0.111991 1.91093e-19) (0.840515 0.100977 -6.38937e-20) (0.858607 0.0915077 -8.89299e-20) (0.0819125 0.204119 -6.95964e-20) (0.203611 0.322742 2.21659e-19) (0.321543 0.316787 9.90218e-21) (0.409692 0.281277 1.1244e-19) (0.484276 0.245791 -1.49293e-19) (0.547547 0.215865 -3.76368e-19) (0.602173 0.1906 1.79606e-19) (0.64949 0.169104 -2.51001e-19) (0.690785 0.150661 3.57181e-20) (0.726973 0.134728 6.05601e-20) (0.758847 0.120873 -8.38772e-20) (0.787096 0.108738 -3.64902e-20) (0.812317 0.0979682 -7.00507e-20) (0.834608 0.0883072 1.50966e-19) (0.853491 0.0799509 -7.79544e-21) (0.0680216 0.175779 2.49258e-20) (0.182322 0.276928 -2.72295e-19) (0.300969 0.271308 1.7758e-19) (0.391688 0.240661 -3.48622e-20) (0.468819 0.210195 -2.0069e-19) (0.534205 0.184534 3.71311e-20) (0.590586 0.162877 -1.18086e-19) (0.639362 0.144456 1.24833e-19) (0.681883 0.128658 8.61162e-20) (0.719107 0.115013 1.13777e-19) (0.751864 0.103152 -1.00276e-19) (0.780857 0.0927685 1.01314e-19) (0.80667 0.0835621 -1.83957e-21) (0.829486 0.0753005 4.12061e-20) (0.849076 0.068116 -3.81136e-20) (0.0561825 0.14593 9.02128e-20) (0.164277 0.229218 -5.33237e-20) (0.283579 0.224219 -5.39882e-20) (0.37649 0.198732 9.23491e-20) (0.455779 0.173503 -1.54164e-20) (0.522953 0.152275 9.69553e-21) (0.580815 0.134363 1.35027e-20) (0.630826 0.119132 -2.34624e-20) (0.674381 0.106073 -1.06604e-20) (0.71248 0.0947975 -1.60818e-19) (0.745983 0.0849977 -1.20707e-20) (0.775601 0.0764234 -1.5097e-19) (0.801913 0.0688268 5.78639e-20) (0.825174 0.0620062 -4.57916e-20) (0.845377 0.0560468 3.05442e-20) (0.0465376 0.114826 6.34318e-20) (0.149641 0.179935 3.34489e-19) (0.269506 0.175795 -7.14557e-20) (0.364204 0.155715 -7.49716e-20) (0.445241 0.135903 5.07515e-20) (0.513862 0.119246 1.2132e-19) (0.572923 0.105194 -2.52195e-20) (0.623932 0.0932483 1.37218e-20) (0.668325 0.0830079 -3.62976e-20) (0.707131 0.0741675 2.83212e-20) (0.741238 0.0664858 1.81884e-19) (0.77136 0.0597674 7.89987e-20) (0.798072 0.0538187 -3.13562e-20) (0.821697 0.0484748 -4.10237e-20) (0.842404 0.0437871 5.59843e-20) (0.0392019 0.0827338 -1.33784e-19) (0.138546 0.129418 -1.97568e-19) (0.258857 0.126325 -9.33881e-20) (0.354915 0.111843 1.24491e-19) (0.437276 0.09759 1.54493e-20) (0.506991 0.085613 9.0623e-20) (0.56696 0.0755108 -8.188e-20) (0.618724 0.0669242 1.97459e-20) (0.66375 0.0595645 1.0553e-20) (0.703092 0.053212 7.21579e-20) (0.737655 0.0476929 -1.22487e-19) (0.768157 0.0428673 4.23139e-20) (0.795171 0.0385965 -1.58533e-20) (0.819072 0.034758 -2.29878e-20) (0.840168 0.0313806 -4.6376e-20) (0.0342626 0.0499293 -1.30355e-19) (0.131093 0.0780115 3.05218e-20) (0.251712 0.0761009 6.28966e-20) (0.348685 0.0673557 -1.65317e-20) (0.431936 0.058763 -1.17188e-20) (0.502386 0.0515448 -7.25859e-20) (0.562963 0.0454572 6.44329e-20) (0.615234 0.0402833 -3.19452e-20) (0.660685 0.0358493 -8.33093e-22) (0.700386 0.0320223 -4.45466e-20) (0.735254 0.0286978 9.45136e-21) (0.766012 0.0257916 -2.24213e-20) (0.793228 0.0232202 4.18519e-20) (0.817314 0.0209084 -5.0881e-20) (0.838673 0.0188699 -8.06067e-21) (0.0317781 0.0166948 2.99584e-20) (0.12735 0.026069 1.17479e-20) (0.248126 0.0254229 -2.91502e-20) (0.34556 0.0224979 1.80837e-20) (0.429257 0.0196262 3.29207e-20) (0.500075 0.0172144 -2.98784e-20) (0.560959 0.0151803 -7.39935e-21) (0.613483 0.0134516 -1.10044e-20) (0.659147 0.0119701 3.08015e-20) (0.699028 0.0106915 3.20309e-23) (0.73405 0.00958085 -9.0303e-21) (0.764936 0.00861001 -6.40938e-21) (0.792253 0.00775116 -2.70455e-20) (0.816432 0.00697883 2.04443e-20) (0.837924 0.00629711 -1.24223e-20) (0.0317779 -0.0166835 4.20148e-20) (0.12735 -0.0260525 -5.27471e-21) (0.248125 -0.025407 -2.17675e-20) (0.345559 -0.0224838 1.11529e-20) (0.429257 -0.019614 3.40815e-20) (0.500075 -0.0172038 -2.97751e-20) (0.560958 -0.0151712 -1.08319e-21) (0.613483 -0.013444 -3.22838e-21) (0.659147 -0.0119638 1.35818e-20) (0.699028 -0.0106864 1.90141e-21) (0.73405 -0.00957682 -8.74218e-21) (0.764936 -0.00860694 -6.99196e-21) (0.792252 -0.00774895 -2.50865e-20) (0.816432 -0.0069774 2.64629e-20) (0.837924 -0.00629634 -1.04479e-20) (0.0342619 -0.0499179 -8.78978e-20) (0.131092 -0.0779949 5.06809e-20) (0.251711 -0.0760851 1.74681e-20) (0.348684 -0.0673416 -3.72444e-21) (0.431935 -0.0587507 -3.16075e-20) (0.502385 -0.0515343 -5.80088e-20) (0.562962 -0.0454481 4.71234e-20) (0.615233 -0.0402758 -7.6838e-21) (0.660684 -0.035843 -3.56625e-20) (0.700385 -0.0320173 -3.50303e-20) (0.735253 -0.0286938 4.17429e-20) (0.766011 -0.0257885 -4.28409e-20) (0.793227 -0.0232181 5.81446e-20) (0.817313 -0.020907 -5.27833e-20) (0.838672 -0.0188692 -1.02811e-20) (0.0392006 -0.0827223 -1.35869e-19) (0.138544 -0.129401 -2.34344e-19) (0.258855 -0.126309 -1.26577e-20) (0.354912 -0.111829 5.81737e-20) (0.437274 -0.0975777 2.75004e-20) (0.506989 -0.0856024 9.27815e-20) (0.566958 -0.0755018 -6.14695e-20) (0.618722 -0.0669166 -6.98932e-20) (0.663748 -0.0595583 7.60352e-20) (0.70309 -0.053207 2.86192e-20) (0.737653 -0.047689 -8.61439e-20) (0.768156 -0.0428643 2.8804e-20) (0.79517 -0.0385944 -2.47325e-20) (0.819071 -0.0347567 -2.61802e-20) (0.840167 -0.0313799 -3.99019e-20) (0.0465358 -0.114814 1.18766e-19) (0.149638 -0.179919 3.79559e-19) (0.269503 -0.17578 -1.78403e-19) (0.364201 -0.155701 1.42128e-20) (0.445238 -0.135891 -6.16936e-20) (0.513859 -0.119236 1.68874e-19) (0.572921 -0.105185 -4.87474e-21) (0.623929 -0.0932408 -7.80403e-22) (0.668322 -0.0830018 -5.18779e-20) (0.707129 -0.0741625 5.57093e-20) (0.741236 -0.066482 1.44893e-19) (0.771358 -0.0597645 4.90271e-20) (0.798071 -0.0538167 6.99331e-21) (0.821695 -0.0484735 -1.13615e-20) (0.842403 -0.0437865 4.59542e-20) (0.0561802 -0.145918 2.46684e-19) (0.164273 -0.229201 -1.79531e-19) (0.283575 -0.224203 -4.80934e-21) (0.376486 -0.198718 -1.88248e-20) (0.455775 -0.173491 1.28727e-19) (0.522949 -0.152264 -9.45328e-20) (0.580811 -0.134354 3.26454e-20) (0.630822 -0.119125 -4.35685e-20) (0.674378 -0.106067 2.55037e-20) (0.712477 -0.0947927 -1.41192e-19) (0.745981 -0.084994 -1.02737e-19) (0.775599 -0.0764206 -6.34447e-20) (0.801911 -0.0688249 9.30574e-20) (0.825172 -0.062005 -2.4233e-20) (0.845375 -0.0560463 2.21533e-20) (0.0680188 -0.175768 -2.79097e-21) (0.182318 -0.276911 -2.88283e-19) (0.300964 -0.271293 2.1632e-19) (0.391683 -0.240647 -1.69745e-19) (0.468815 -0.210183 -1.37945e-19) (0.534201 -0.184523 7.24167e-20) (0.590581 -0.162868 -4.87482e-20) (0.639358 -0.144449 1.82541e-19) (0.681879 -0.128652 -5.17897e-20) (0.719104 -0.115008 1.07938e-19) (0.751861 -0.103148 -5.08081e-20) (0.780854 -0.0927659 1.12343e-19) (0.806668 -0.0835603 2.30544e-20) (0.829483 -0.0752995 4.90918e-20) (0.849074 -0.0681157 -5.63384e-20) (0.0819091 -0.204108 2.19169e-20) (0.203606 -0.322725 2.88734e-19) (0.321537 -0.316771 -2.74818e-20) (0.409686 -0.281263 -5.18435e-21) (0.484271 -0.245779 -3.45569e-20) (0.547541 -0.215854 -3.24149e-19) (0.602168 -0.190591 2.38607e-20) (0.649485 -0.169097 -1.44511e-19) (0.69078 -0.150656 -1.92407e-20) (0.726969 -0.134723 -9.01948e-21) (0.758843 -0.120869 3.91163e-20) (0.787093 -0.108736 -8.57596e-20) (0.812314 -0.0979666 -1.93035e-19) (0.834605 -0.0883064 2.05351e-19) (0.853489 -0.0799507 7.04544e-20) (0.0976831 -0.230698 -1.55238e-19) (0.227943 -0.36633 -2.67273e-19) (0.345137 -0.360374 7.07503e-20) (0.430372 -0.32035 1.16323e-19) (0.502041 -0.280099 1.15572e-19) (0.562885 -0.246105 -8.48988e-21) (0.615499 -0.217395 -9.4363e-20) (0.66114 -0.192958 2.76716e-19) (0.701029 -0.171983 1.46766e-21) (0.736029 -0.153855 7.16055e-20) (0.766887 -0.138087 1.65185e-19) (0.794282 -0.124268 -1.5929e-19) (0.818817 -0.11199 2.08083e-19) (0.840512 -0.100977 -1.03441e-19) (0.858604 -0.0915076 -6.90586e-20) (0.115148 -0.255314 9.07515e-20) (0.255104 -0.407435 -8.16907e-20) (0.371582 -0.401848 1.56923e-19) (0.453597 -0.357703 -1.36059e-19) (0.522008 -0.312974 -1.7119e-19) (0.580133 -0.275131 -1.9496e-19) (0.630492 -0.243155 7.94238e-20) (0.674253 -0.215926 5.20137e-20) (0.712564 -0.192543 -2.46539e-19) (0.74623 -0.172326 -1.66008e-19) (0.775948 -0.154732 -1.48109e-19) (0.80238 -0.139305 2.06337e-19) (0.826141 -0.125578 -5.9823e-20) (0.847173 -0.113264 -5.05187e-20) (0.864404 -0.102743 3.42182e-21) (0.134087 -0.277752 3.18454e-19) (0.284835 -0.445763 4.17438e-19) (0.400669 -0.440957 -1.70609e-19) (0.479202 -0.393131 -1.97882e-19) (0.544042 -0.344244 4.23293e-19) (0.599176 -0.302798 3.16808e-20) (0.647051 -0.267758 1.47339e-19) (0.688744 -0.237903 -3.36557e-19) (0.725317 -0.212252 1.4489e-19) (0.757514 -0.190061 2.26915e-20) (0.785976 -0.170742 -9.28178e-20) (0.811343 -0.15379 -2.25721e-19) (0.834246 -0.138685 -9.97286e-20) (0.854554 -0.125124 7.05919e-20) (0.870869 -0.113615 1.49422e-20) (0.154263 -0.297828 -2.21217e-19) (0.316857 -0.481063 -2.8235e-19) (0.432171 -0.477479 1.77363e-19) (0.507007 -0.426455 6.40331e-19) (0.567997 -0.373764 5.97881e-20) (0.619891 -0.328981 1.26589e-20) (0.665076 -0.291096 -1.94165e-19) (0.704525 -0.258797 4.01513e-19) (0.739214 -0.231029 1.42444e-20) (0.769816 -0.206992 1.92109e-19) (0.796915 -0.186056 2.39201e-19) (0.821122 -0.167673 1.50013e-19) (0.843086 -0.151265 -1.3208e-20) (0.86262 -0.136517 4.04068e-20) (0.877974 -0.124084 1.33081e-19) (0.17542 -0.315381 -1.01025e-19) (0.350865 -0.513104 -1.66394e-19) (0.465841 -0.511214 6.02495e-20) (0.536822 -0.457514 4.69746e-20) (0.593718 -0.401398 -4.79822e-19) (0.642147 -0.353568 4.86851e-19) (0.684454 -0.313074 -1.84363e-20) (0.721503 -0.278526 -1.11259e-19) (0.754173 -0.248803 -7.30369e-20) (0.783068 -0.223056 -4.9565e-20) (0.808704 -0.200619 -7.97948e-20) (0.831663 -0.180906 5.51327e-20) (0.852615 -0.16328 -1.60459e-19) (0.871329 -0.147406 -1.23291e-19) (0.885696 -0.13411 -7.99857e-20) (0.197285 -0.330276 -2.55021e-20) (0.38653 -0.541681 3.23003e-19) (0.501414 -0.541979 -5.03064e-19) (0.568439 -0.486161 -6.31202e-19) (0.621036 -0.427028 2.16944e-19) (0.665806 -0.376458 -8.12776e-20) (0.705068 -0.333603 1.84414e-19) (0.739576 -0.297013 2.52669e-20) (0.770109 -0.265508 3.09333e-19) (0.797195 -0.238196 -6.4929e-20) (0.82128 -0.214382 -2.35774e-19) (0.842909 -0.193447 3.06479e-20) (0.862781 -0.174695 -6.78658e-20) (0.88064 -0.15776 2.84535e-20) (0.894005 -0.14366 -5.42225e-21) (0.219568 -0.342405 1.68144e-19) (0.423505 -0.566618 1.53781e-19) (0.538607 -0.569615 4.7102e-19) (0.60164 -0.51227 3.60713e-19) (0.649776 -0.45055 2.73242e-19) (0.690718 -0.397561 -3.12831e-19) (0.726793 -0.352609 -6.50464e-20) (0.758638 -0.314194 -1.33067e-19) (0.786931 -0.281088 -8.32876e-20) (0.81212 -0.252362 1.77883e-19) (0.834575 -0.227299 9.76703e-20) (0.854799 -0.205255 -2.25651e-20) (0.873528 -0.185476 2.97508e-19) (0.890509 -0.167548 -6.76151e-20) (0.902873 -0.152701 1.63576e-19) (0.241971 -0.35169 -7.31611e-20) (0.461421 -0.587766 -5.65141e-19) (0.57712 -0.593981 -3.38887e-19) (0.636192 -0.535731 -1.59955e-19) (0.679752 -0.471874 -4.09055e-19) (0.71673 -0.416804 3.52956e-19) (0.749498 -0.370027 1.40299e-19) (0.778579 -0.330012 1.31804e-19) (0.804544 -0.295492 -6.22509e-19) (0.827761 -0.265511 -1.94646e-19) (0.848519 -0.239332 1.47889e-19) (0.86727 -0.216301 -7.6201e-20) (0.884797 -0.195608 9.53388e-20) (0.900888 -0.176768 -9.78911e-20) (0.912272 -0.161216 -4.51325e-20) (0.264185 -0.35808 1.21472e-20) (0.499893 -0.605006 2.55492e-19) (0.616638 -0.614964 2.43804e-19) (0.671854 -0.556455 9.38659e-20) (0.710772 -0.49093 1.85118e-19) (0.743683 -0.434126 -1.92819e-19) (0.773048 -0.385803 -9.73995e-20) (0.799284 -0.34442 1.20839e-19) (0.82285 -0.30868 1.77379e-20) (0.844035 -0.277603 1.0053e-19) (0.863043 -0.250442 -2.20034e-20) (0.880255 -0.226537 -2.78233e-20) (0.896517 -0.205032 -2.56431e-20) (0.911724 -0.185359 -5.67499e-20) (0.922183 -0.169161 1.54697e-19) (0.285899 -0.36156 8.65524e-20) (0.538523 -0.61825 -1.00048e-19) (0.656835 -0.632473 -1.12985e-19) (0.708379 -0.574371 -2.40253e-20) (0.742641 -0.507663 -1.02149e-19) (0.771412 -0.44948 1.5008e-19) (0.797307 -0.399897 -1.63278e-19) (0.820635 -0.357382 -3.72008e-20) (0.841748 -0.320619 1.88196e-19) (0.860855 -0.288613 -4.42542e-21) (0.878071 -0.260613 1.64207e-19) (0.893685 -0.235971 -1.45581e-19) (0.908605 -0.21381 -2.0348e-20) (0.922943 -0.193453 -2.94825e-20) (0.932594 -0.176653 -1.55857e-19) (0.306799 -0.362144 -1.36606e-19) (0.5769 -0.627442 3.33149e-20) (0.697371 -0.646444 4.05709e-20) (0.745507 -0.589431 6.43365e-20) (0.775156 -0.522035 2.4089e-19) (0.799753 -0.462835 6.86541e-20) (0.822134 -0.412281 -1.67691e-19) (0.842515 -0.368872 9.70954e-20) (0.861136 -0.331285 4.23085e-19) (0.878135 -0.298514 -1.52633e-19) (0.893542 -0.269803 -3.78463e-20) (0.907521 -0.244511 9.63103e-20) (0.921004 -0.221737 -5.10752e-20) (0.93448 -0.200705 5.02345e-20) (0.943566 -0.183368 -6.1564e-20) (0.326573 -0.359874 5.95284e-20) (0.614605 -0.632559 -9.69826e-20) (0.737897 -0.656838 -1.09862e-19) (0.782979 -0.601608 -1.14257e-19) (0.808114 -0.534027 -1.95148e-19) (0.828539 -0.474175 -2.03605e-19) (0.847389 -0.422939 2.19956e-19) (0.864805 -0.378875 -3.22168e-19) (0.880913 -0.340663 -2.60086e-19) (0.895782 -0.307297 2.28326e-19) (0.909373 -0.278024 -1.74459e-19) (0.921688 -0.252238 4.5887e-20) (0.933568 -0.229098 8.41457e-20) (0.946026 -0.207851 1.1105e-19) (0.955041 -0.190531 5.63667e-20) (0.344907 -0.354825 2.46517e-20) (0.651218 -0.633615 -3.98461e-20) (0.778057 -0.663643 1.41731e-20) (0.820527 -0.610895 -1.73796e-21) (0.841313 -0.543636 4.30845e-20) (0.857602 -0.483497 4.7237e-21) (0.872932 -0.431867 -1.66727e-19) (0.887385 -0.387385 1.37461e-19) (0.900977 -0.348747 -1.27783e-19) (0.913707 -0.31495 -1.77061e-19) (0.925493 -0.28524 1.13645e-19) (0.936194 -0.25901 -8.78874e-20) (0.946407 -0.235391 3.35429e-20) (0.957615 -0.21349 -8.28056e-20) (0.967597 -0.195429 -3.97532e-20) (0.361492 -0.347106 -5.40557e-20) (0.686316 -0.630664 4.38373e-20) (0.817489 -0.666871 -5.9344e-22) (0.857885 -0.617306 7.10018e-20) (0.874548 -0.550876 8.2924e-20) (0.886777 -0.490813 -4.45573e-20) (0.898622 -0.439075 1.23217e-19) (0.910139 -0.394409 -9.68806e-20) (0.92123 -0.35554 5.23605e-20) (0.931824 -0.321476 1.63766e-19) (0.941818 -0.291465 9.53878e-20) (0.950988 -0.264912 -1.41792e-19) (0.959544 -0.24111 6.28669e-20) (0.968672 -0.219922 3.73407e-20) (0.979058 -0.203517 6.48789e-20) (0.376019 -0.336853 1.69036e-19) (0.719479 -0.623793 -1.3133e-19) (0.85583 -0.666564 4.25553e-21) (0.894786 -0.620879 3.31067e-20) (0.90762 -0.555777 -2.75263e-20) (0.915903 -0.496151 1.01938e-19) (0.924324 -0.444584 -6.14993e-20) (0.932949 -0.399962 -2.12119e-20) (0.941575 -0.361053 2.20419e-19) (0.950051 -0.326887 -1.98938e-19) (0.958255 -0.296714 -5.93284e-20) (0.965944 -0.269951 1.51822e-19) (0.972987 -0.246054 -8.55787e-20) (0.980034 -0.225133 -5.83432e-20) (0.989119 -0.2073 -1.41801e-20) (0.388172 -0.324236 -1.42053e-19) (0.750275 -0.613121 1.98836e-19) (0.892726 -0.662792 2.54558e-22) (0.930966 -0.62167 1.50523e-20) (0.940329 -0.558381 -5.04979e-20) (0.94482 -0.49955 4.50909e-20) (0.949905 -0.448427 -8.00736e-21) (0.955703 -0.404072 8.41516e-20) (0.961917 -0.365307 -1.8253e-19) (0.968311 -0.331194 8.45646e-20) (0.974735 -0.300989 -2.81706e-20) (0.980969 -0.274096 4.34898e-20) (0.986688 -0.250082 6.23374e-21) (0.991975 -0.229212 -3.80492e-21) (0.999217 -0.210532 -1.44082e-20) (0.397755 -0.309529 4.43839e-20) (0.778236 -0.598801 -1.65989e-19) (0.927848 -0.655671 -9.57228e-20) (0.966168 -0.619745 -3.18111e-21) (0.97248 -0.558741 1.86385e-20) (0.973375 -0.501064 2.67877e-20) (0.975237 -0.450649 -1.90632e-20) (0.978292 -0.406774 -9.90536e-20) (0.982162 -0.368331 -2.4472e-20) (0.98653 -0.334419 7.41815e-20) (0.991206 -0.304306 2.43734e-20) (0.996006 -0.277379 -9.78868e-21) (1.00055 -0.253301 -7.60928e-20) (1.0045 -0.232527 2.05696e-20) (1.01 -0.213472 1.96844e-20) (0.404619 -0.292932 -2.52809e-20) (0.802612 -0.580819 2.80131e-19) (0.960952 -0.645443 5.9098e-20) (1.00013 -0.615177 5.06062e-21) (1.00388 -0.556923 1.11369e-20) (1.00142 -0.50076 -3.39838e-20) (1.0002 -0.451307 -2.5078e-20) (1.00061 -0.408113 8.14456e-20) (1.00222 -0.370162 7.05885e-20) (1.00464 -0.336593 -1.26043e-19) (1.00762 -0.306698 1.17999e-20) (1.01101 -0.279856 9.50106e-21) (1.01445 -0.255808 9.29718e-20) (1.01732 -0.235171 1.28637e-20) (1.02137 -0.215915 -9.69973e-20) (0.408701 -0.274623 -6.1789e-20) (0.823174 -0.559659 -4.18981e-19) (0.991617 -0.632346 -2.03191e-20) (1.03262 -0.607912 -3.83031e-20) (1.03434 -0.553002 -5.09431e-20) (1.02881 -0.498717 8.71368e-21) (1.02467 -0.450463 2.0967e-20) (1.02256 -0.408144 -2.71306e-20) (1.02201 -0.370846 5.16445e-21) (1.02256 -0.337758 5.65463e-20) (1.02392 -0.308203 -3.71199e-20) (1.02595 -0.281567 2.38361e-20) (1.0283 -0.257636 -3.34517e-20) (1.0302 -0.237147 -5.87915e-20) (1.03298 -0.217845 1.23436e-20) (0.409855 -0.254958 -9.6338e-21) (0.839922 -0.535783 5.57024e-20) (1.0191 -0.616234 6.90608e-20) (1.0633 -0.598069 -9.95377e-21) (1.06365 -0.547098 -1.25762e-20) (1.0554 -0.495023 -2.81729e-20) (1.04854 -0.448193 -7.78339e-21) (1.04404 -0.40693 5.70435e-21) (1.04144 -0.370437 -3.38125e-21) (1.04022 -0.337958 -2.71589e-20) (1.04004 -0.308859 3.62949e-20) (1.04076 -0.282538 -1.0734e-20) (1.04205 -0.258804 -6.533e-21) (1.04301 -0.238477 1.73628e-20) (1.04459 -0.21928 -9.70348e-21) (0.407941 -0.234289 1.6391e-19) (0.852549 -0.509358 2.6909e-19) (1.04307 -0.597246 4.29926e-20) (1.09187 -0.585869 -8.30476e-20) (1.09164 -0.539313 9.18459e-20) (1.08107 -0.48977 3.87279e-20) (1.07171 -0.444578 -1.36524e-20) (1.06498 -0.404541 -4.89219e-21) (1.06045 -0.368994 1.05553e-20) (1.05755 -0.337243 -3.7146e-21) (1.05592 -0.308706 -6.7349e-21) (1.05538 -0.282801 1.9838e-20) (1.05565 -0.259338 4.82241e-20) (1.05571 -0.239196 -3.37006e-20) (1.05613 -0.22023 5.45101e-20) (0.402886 -0.21294 -1.90555e-19) (0.86065 -0.480593 -8.42893e-20) (1.06334 -0.575658 -2.03377e-19) (1.11803 -0.571469 2.1696e-19) (1.1181 -0.529765 -1.50642e-19) (1.10568 -0.483069 5.01634e-20) (1.09407 -0.439711 9.53729e-21) (1.08529 -0.401053 3.65561e-21) (1.07895 -0.36658 4.67082e-21) (1.0745 -0.335667 -5.95488e-22) (1.0715 -0.307787 7.1371e-21) (1.06978 -0.282391 2.35981e-20) (1.06906 -0.259272 -2.01848e-20) (1.06826 -0.239344 -1.97447e-20) (1.0676 -0.220714 -5.05136e-20) (0.394706 -0.191234 -1.8437e-19) (0.863893 -0.449792 8.26967e-20) (1.07965 -0.55171 5.79044e-20) (1.14152 -0.555021 -1.24487e-19) (1.14289 -0.518603 2.22701e-20) (1.12908 -0.475007 -6.06082e-21) (1.11556 -0.433687 -2.34052e-20) (1.10489 -0.396549 -1.7753e-20) (1.09689 -0.363263 1.21407e-20) (1.09099 -0.333286 1.54098e-21) (1.08673 -0.306151 -1.14349e-20) (1.08389 -0.281347 -1.40511e-20) (1.08223 -0.258641 9.47147e-21) (1.08064 -0.238959 1.2829e-20) (1.07898 -0.220755 1.55927e-20) (0.383482 -0.169499 1.79257e-19) (0.862027 -0.417311 -8.2457e-20) (1.09162 -0.525634 4.17674e-20) (1.16205 -0.536706 1.83545e-19) (1.16586 -0.505924 1.40474e-19) (1.15121 -0.465704 -9.30648e-20) (1.13603 -0.426622 3.28708e-20) (1.12372 -0.391111 2.68006e-20) (1.11422 -0.359117 -2.85239e-20) (1.10699 -0.330162 1.06051e-20) (1.10156 -0.303847 4.04535e-21) (1.09769 -0.27971 -2.58063e-21) (1.09513 -0.257483 1.63571e-21) (1.0928 -0.238076 -1.54412e-20) (1.09022 -0.220368 1.97191e-20) (0.369361 -0.148058 -1.67165e-19) (0.854859 -0.383528 1.05315e-19) (1.09893 -0.497671 1.28147e-19) (1.17932 -0.51667 -2.75303e-20) (1.18672 -0.491854 -1.9526e-19) (1.17205 -0.45529 -6.41318e-20) (1.15547 -0.4186 -7.43476e-20) (1.14171 -0.384849 2.67122e-20) (1.13087 -0.354215 -7.89124e-21) (1.12245 -0.326359 -1.63253e-20) (1.11596 -0.300929 -9.30207e-21) (1.11111 -0.277522 -8.94471e-22) (1.10773 -0.255834 -7.6095e-21) (1.10472 -0.236725 7.36071e-21) (1.10131 -0.219567 -9.23229e-21) (0.352548 -0.127227 7.21745e-20) (0.842256 -0.348841 7.88359e-22) (1.10124 -0.468082 -3.89159e-19) (1.19305 -0.495066 -2.12937e-20) (1.20527 -0.476528 1.55841e-19) (1.19138 -0.443879 1.30284e-19) (1.1739 -0.409739 6.76157e-20) (1.15884 -0.377837 -9.98654e-22) (1.14681 -0.348649 1.26025e-20) (1.13732 -0.321943 -1.03994e-21) (1.12988 -0.297447 1.536e-20) (1.12415 -0.274829 3.39996e-21) (1.11998 -0.253738 -8.56955e-22) (1.11638 -0.234942 -3.41779e-21) (1.1122 -0.218361 -1.92141e-21) (0.33331 -0.107301 -1.23369e-20) (0.824152 -0.313669 1.28183e-19) (1.09826 -0.437143 2.1106e-19) (1.20291 -0.472059 6.1204e-20) (1.22134 -0.460068 -1.47098e-19) (1.20906 -0.431591 -1.54553e-19) (1.19116 -0.400143 5.70082e-20) (1.17511 -0.370171 -2.14646e-20) (1.16204 -0.342482 7.04889e-20) (1.15159 -0.316981 -9.93994e-22) (1.14329 -0.293464 -8.15218e-21) (1.13676 -0.27167 -3.88645e-21) (1.13187 -0.251233 1.00527e-20) (1.12776 -0.23276 3.43534e-21) (1.12291 -0.216778 -6.75875e-22) (0.311971 -0.0885528 1.84497e-19) (0.800557 -0.278446 -1.94387e-19) (1.0897 -0.405142 1.11026e-19) (1.20861 -0.447817 1.36891e-19) (1.2347 -0.442587 1.02308e-19) (1.22499 -0.418535 3.32405e-20) (1.2072 -0.389919 2.19994e-20) (1.19044 -0.361942 -7.32985e-22) (1.17652 -0.335796 -3.23042e-20) (1.16525 -0.311536 1.39266e-20) (1.15618 -0.289025 2.91149e-20) (1.14894 -0.268095 7.68411e-21) (1.14337 -0.248373 -7.17961e-21) (1.1388 -0.230232 -4.8279e-21) (1.13343 -0.214842 -3.47798e-21) (0.288904 -0.0712219 -9.9658e-20) (0.771574 -0.243621 7.06821e-20) (1.07532 -0.372381 -5.65487e-21) (1.20978 -0.422509 -1.46784e-19) (1.2451 -0.424195 -3.04599e-20) (1.23906 -0.404805 7.08465e-20) (1.22195 -0.379164 -5.24522e-20) (1.2048 -0.353244 6.78101e-21) (1.19021 -0.328669 -3.47385e-21) (1.17825 -0.305673 -1.0363e-20) (1.16854 -0.284196 -1.6571e-20) (1.16069 -0.264144 -2.53394e-20) (1.15449 -0.245174 -1.18718e-20) (1.14945 -0.227388 1.3603e-20) (1.14388 -0.21263 2.69192e-21) (0.264523 -0.0555097 -1.23975e-19) (0.73741 -0.209651 -1.52581e-20) (1.05489 -0.339169 -7.34019e-20) (1.20607 -0.396302 6.24868e-20) (1.25226 -0.40499 -6.70749e-20) (1.2511 -0.390488 -2.60747e-20) (1.23537 -0.367968 6.9705e-21) (1.21816 -0.344162 -7.0722e-21) (1.2031 -0.32118 1.86919e-20) (1.1906 -0.299463 8.80422e-22) (1.18034 -0.279032 1.14545e-20) (1.17197 -0.259861 1.41379e-20) (1.16522 -0.241661 1.36344e-20) (1.15972 -0.224388 -4.1837e-21) (1.15415 -0.210165 -3.83285e-21) (0.239271 -0.0415724 7.20073e-20) (0.698393 -0.176995 7.529e-20) (1.02827 -0.305827 2.47097e-20) (1.19712 -0.369365 -3.77062e-20) (1.25584 -0.385062 7.26524e-21) (1.26092 -0.375657 5.191e-20) (1.24736 -0.356408 -3.38516e-20) (1.23052 -0.334778 -2.75346e-20) (1.2152 -0.313404 -6.03338e-21) (1.20228 -0.292967 5.25227e-21) (1.19158 -0.273588 -2.39928e-20) (1.18277 -0.255296 6.21186e-21) (1.17557 -0.23788 1.35316e-20) (1.16964 -0.221207 -3.13857e-21) (1.1639 -0.207428 -4.21163e-21) (0.213604 -0.0295171 -4.71713e-20) (0.654994 -0.146107 -3.18622e-20) (0.995349 -0.272682 -5.97277e-20) (1.18255 -0.341867 -9.34419e-21) (1.25549 -0.364493 -6.24947e-21) (1.26829 -0.360369 -5.78589e-20) (1.25784 -0.344551 1.72632e-20) (1.24182 -0.325164 9.13237e-21) (1.22649 -0.305409 -1.53269e-20) (1.2133 -0.286249 -8.98473e-21) (1.20226 -0.267915 -1.11169e-21) (1.19309 -0.250498 -7.57208e-21) (1.1855 -0.233862 -1.18963e-20) (1.17919 -0.217792 -1.06365e-20) (1.17317 -0.204436 7.15165e-21) (0.187979 -0.0193983 -2.08894e-20) (0.607822 -0.117415 7.52326e-21) (0.956121 -0.240069 1.0066e-20) (1.16197 -0.313986 1.01204e-20) (1.25076 -0.343352 1.67247e-20) (1.27292 -0.344665 1.14528e-20) (1.26665 -0.332447 -3.19356e-21) (1.25204 -0.315384 1.05264e-20) (1.23697 -0.29726 -3.5471e-22) (1.22366 -0.279366 -1.04616e-22) (1.21238 -0.262065 3.89863e-21) (1.20293 -0.245509 -1.78281e-21) (1.19502 -0.229637 1.14298e-21) (1.18838 -0.214146 4.62945e-21) (1.18209 -0.201208 -3.76043e-21) (0.162832 -0.011213 -1.24921e-20) (0.55762 -0.0913101 -3.32188e-21) (0.91069 -0.20833 1.46109e-20) (1.13503 -0.285907 6.50908e-21) (1.24121 -0.321706 1.83077e-20) (1.27445 -0.328564 1.24566e-20) (1.27362 -0.320128 -4.76705e-22) (1.26111 -0.305487 1.47845e-20) (1.24664 -0.289015 -7.22572e-21) (1.23337 -0.272372 7.86846e-22) (1.22195 -0.256085 4.84488e-21) (1.2123 -0.240369 -2.21896e-21) (1.20414 -0.225242 2.10681e-21) (1.19724 -0.210309 7.62197e-21) (1.19075 -0.197762 -2.94494e-21) (0.138567 -0.00489991 -1.68916e-20) (0.505251 -0.0681276 -5.01201e-20) (0.859311 -0.177818 -5.78522e-20) (1.10139 -0.257829 -2.12707e-21) (1.22629 -0.299612 -8.48536e-21) (1.27245 -0.312071 -6.41098e-20) (1.27848 -0.307601 3.24027e-20) (1.26891 -0.295505 5.04593e-21) (1.25546 -0.280722 -2.19479e-20) (1.24244 -0.265318 -1.90846e-20) (1.23099 -0.25002 3.43851e-21) (1.22121 -0.23512 -1.18495e-20) (1.21287 -0.220719 -1.24882e-20) (1.20577 -0.206335 -1.62722e-20) (1.19919 -0.194126 1.01786e-20) (0.115538 -0.00034233 6.55229e-20) (0.451671 -0.0481326 4.78611e-20) (0.802425 -0.148899 2.07926e-20) (1.06081 -0.229962 -3.14073e-20) (1.20545 -0.277128 1.53593e-20) (1.26639 -0.295168 3.38071e-20) (1.28091 -0.294854 -2.81715e-20) (1.2753 -0.285453 -5.69076e-20) (1.26339 -0.272415 -8.36219e-21) (1.25087 -0.258247 3.32195e-20) (1.23952 -0.243914 -4.31052e-20) (1.22968 -0.229799 1.65845e-20) (1.22122 -0.216105 7.30397e-21) (1.21398 -0.202275 -1.05297e-21) (1.20739 -0.190334 1.62867e-21) (0.0940379 0.00262321 -7.62476e-20) (0.3979 -0.0314979 -4.89652e-20) (0.740689 -0.121945 -8.07627e-20) (1.01311 -0.202537 7.57605e-20) (1.17809 -0.254318 -8.63624e-20) (1.25566 -0.277827 -2.30039e-20) (1.28047 -0.281844 -2.61891e-21) (1.28005 -0.27532 -1.48481e-21) (1.27035 -0.264113 4.6339e-20) (1.25864 -0.251193 -5.52905e-20) (1.24753 -0.237804 4.14181e-20) (1.23773 -0.224444 2.04421e-20) (1.22921 -0.211431 5.19996e-20) (1.22187 -0.198169 -5.87262e-21) (1.21531 -0.186418 -1.59776e-20) (0.0742882 0.00419426 1.27866e-20) (0.344964 -0.0182843 1.36422e-20) (0.675 -0.0973371 -2.88896e-20) (0.958316 -0.175814 -1.18668e-19) (1.14362 -0.231259 -3.38751e-20) (1.23953 -0.260007 9.12744e-20) (1.27659 -0.268505 -7.73667e-20) (1.28283 -0.265067 -4.24209e-20) (1.27619 -0.255816 1.25137e-20) (1.26571 -0.244178 -1.85747e-20) (1.25504 -0.231722 -8.47055e-20) (1.24536 -0.219088 -4.14142e-20) (1.23685 -0.206721 2.97111e-21) (1.22943 -0.194045 1.03357e-20) (1.22295 -0.18241 9.15524e-21) (0.0564392 0.00458738 1.42396e-19) (0.293848 -0.00842546 -1.81148e-19) (0.606506 -0.0754448 1.31987e-19) (0.896631 -0.150084 7.22508e-20) (1.10149 -0.208056 2.37113e-19) (1.21718 -0.241671 1.29112e-20) (1.26858 -0.254749 6.51033e-20) (1.2832 -0.254627 1.73951e-20) (1.28071 -0.2475 -1.49023e-19) (1.27201 -0.237209 5.12488e-20) (1.26204 -0.225691 3.50703e-20) (1.2526 -0.213758 6.82719e-20) (1.24415 -0.201996 -6.88832e-20) (1.23669 -0.189926 -2.28885e-20) (1.2303 -0.178335 -5.42167e-21) (0.0405705 0.00402347 -1.8986e-20) (0.245428 -0.00172521 2.12188e-19) (0.536571 -0.0566052 1.80369e-19) (0.828574 -0.125688 3.79442e-20) (1.05126 -0.184853 -2.34162e-19) (1.18773 -0.222787 -1.58792e-19) (1.25556 -0.240468 5.84395e-20) (1.28055 -0.243899 -4.40723e-20) (1.28356 -0.239108 8.37565e-20) (1.2774 -0.230275 2.30919e-20) (1.26848 -0.219721 1.73405e-20) (1.25943 -0.208478 -4.08738e-20) (1.25113 -0.197274 2.25689e-20) (1.24367 -0.18583 9.67944e-20) (1.23739 -0.174218 1.1126e-19) (0.0266993 0.00271578 1.57543e-19) (0.200425 0.00212834 -1.74852e-19) (0.466719 -0.0410844 -2.97902e-19) (0.755024 -0.103014 3.06394e-20) (0.992678 -0.161852 2.06824e-19) (1.15027 -0.203356 2.22136e-19) (1.23652 -0.225544 1.36178e-19) (1.27408 -0.232751 -2.21349e-21) (1.28427 -0.230553 3.35808e-20) (1.28165 -0.223337 1.2412e-20) (1.27428 -0.213808 8.6912e-20) (1.26585 -0.203262 2.3971e-20) (1.2578 -0.192569 1.85765e-20) (1.25037 -0.18177 -2.44538e-20) (1.24421 -0.170081 -3.23135e-20) (0.01479 0.000861732 -2.03517e-19) (0.159368 0.00353098 1.61279e-19) (0.398521 -0.0290293 1.58059e-19) (0.677276 -0.0824997 -1.28716e-19) (0.925825 -0.139334 -3.18061e-19) (1.10396 -0.183424 -6.75164e-20) (1.21031 -0.209867 -1.90532e-19) (1.26278 -0.221025 7.39994e-20) (1.28215 -0.221707 -1.17213e-20) (1.28439 -0.216325 -9.63819e-20) (1.27929 -0.207928 -3.90648e-20) (1.27182 -0.198115 1.68223e-21) (1.26415 -0.187892 -2.70135e-20) (1.25682 -0.177757 -2.75628e-20) (1.25081 -0.165945 3.33433e-21) (0.00476387 -0.00136165 2.96331e-19) (0.122583 0.0029212 -1.95808e-19) (0.333463 -0.0204227 1.2541e-19) (0.597047 -0.0646038 1.41367e-19) (0.851218 -0.117673 2.74755e-19) (1.04812 -0.163112 -2.18061e-19) (1.17567 -0.19335 9.55481e-20) (1.24541 -0.208545 1.11603e-19) (1.27628 -0.212403 -1.15093e-19) (1.28508 -0.209131 -4.86404e-20) (1.28325 -0.202025 -1.39957e-20) (1.27722 -0.193025 -1.8438e-20) (1.27016 -0.183246 -8.6387e-20) (1.26302 -0.173795 6.91721e-20) (1.25718 -0.161823 -1.28853e-19) (-0.00349011 -0.00379895 -1.6302e-19) (0.0902076 0.000740404 8.13474e-21) (0.272812 -0.0150636 8.81621e-20) (0.516383 -0.0497501 -2.20763e-19) (0.769948 -0.0973529 1.14213e-19) (0.9824 -0.142648 -6.96385e-22) (1.13136 -0.175963 -1.29039e-19) (1.22051 -0.195131 -5.73102e-20) (1.26545 -0.202437 8.58961e-21) (1.2829 -0.201599 1.22728e-19) (1.28571 -0.19601 1.52479e-19) (1.28188 -0.187955 1.33991e-19) (1.27577 -0.178623 2.3117e-20) (1.26897 -0.169882 -1.4519e-19) (1.26335 -0.157728 -1.85404e-20) (-0.0101099 -0.00631754 3.38618e-20) (0.0622121 -0.00259689 -1.94349e-19) (0.217517 -0.0125884 -2.96397e-19) (0.437487 -0.0382452 2.87413e-19) (0.683767 -0.0789502 -2.11909e-19) (0.906995 -0.122401 1.15775e-19) (1.0763 -0.157768 1.28176e-19) (1.18647 -0.180632 9.30141e-20) (1.24814 -0.19158 8.7328e-20) (1.27674 -0.193528 2.5375e-20) (1.286 -0.189746 -1.02577e-19) (1.28545 -0.182837 -1.2647e-19) (1.28085 -0.173997 3.11927e-20) (1.27461 -0.166004 3.58621e-20) (1.26931 -0.153661 1.47442e-19) (-0.0152524 -0.00880941 1.39566e-19) (0.0384396 -0.00672342 3.85622e-19) (0.168165 -0.0125294 -9.3607e-20) (0.362459 -0.0301944 -1.8436e-19) (0.595057 -0.0630831 4.22895e-19) (0.822854 -0.102905 1.7248e-19) (1.00979 -0.13897 3.94971e-20) (1.14165 -0.164964 -6.07842e-20) (1.22252 -0.179595 2.23674e-20) (1.2651 -0.184668 -1.66508e-19) (1.28312 -0.183042 7.75348e-20) (1.28737 -0.177558 2.16637e-20) (1.28511 -0.169313 -1.26975e-19) (1.27987 -0.162135 -4.11975e-20) (1.27503 -0.149616 -1.09475e-19) (-0.0190844 -0.0111897 -6.00092e-20) (0.0186371 -0.0113272 1.80268e-19) (0.124999 -0.0143856 1.73192e-19) (0.293059 -0.0254595 -7.54595e-20) (0.506639 -0.0503043 -3.00984e-20) (0.73185 -0.0848544 -2.00514e-19) (0.931822 -0.119966 9.46803e-20) (1.08457 -0.148162 -1.04658e-19) (1.18655 -0.16628 -5.28312e-20) (1.24606 -0.174735 1.43305e-19) (1.27564 -0.175645 -1.36296e-19) (1.28675 -0.171944 6.83672e-20) (1.28813 -0.164483 1.53228e-19) (1.28448 -0.158219 -1.78585e-19) (1.28051 -0.14557 1.23204e-19) (-0.0217779 -0.0133979 -1.40749e-19) (0.00248525 -0.0161544 -5.84179e-19) (0.0879769 -0.0176794 2.58618e-20) (0.230531 -0.0236868 -1.44795e-19) (0.421411 -0.0409683 -4.2271e-19) (0.636795 -0.0690354 1.39654e-19) (0.843416 -0.101387 -2.63777e-19) (1.01431 -0.130458 1.16547e-19) (1.13814 -0.151522 1.12561e-19) (1.2173 -0.163446 -1.67951e-19) (1.2616 -0.167249 6.84974e-20) (1.28225 -0.165755 2.5203e-20) (1.28908 -0.159353 4.30418e-21) (1.28817 -0.154183 4.86822e-20) (1.28536 -0.141444 -3.69396e-20) (-0.0235045 -0.0153966 8.87864e-21) (-0.0103768 -0.0210073 3.32456e-19) (0.0568368 -0.0219896 2.11218e-19) (0.175563 -0.0243883 1.74285e-19) (0.34194 -0.0351347 1.74882e-19) (0.541187 -0.0561855 2.12294e-19) (0.74685 -0.0840795 1.58371e-19) (0.930926 -0.112353 -2.12824e-19) (1.07555 -0.135387 -2.94837e-19) (1.17627 -0.150571 2.79357e-19) (1.23851 -0.157509 3.53313e-20) (1.27193 -0.15868 -2.54971e-20) (1.28674 -0.1537 -1.80665e-19) (1.29006 -0.149866 -5.2874e-20) (1.28973 -0.137213 1.45448e-19) (-0.0244302 -0.0171698 1.07307e-19) (-0.020331 -0.0257397 -4.61961e-19) (0.0311675 -0.0269617 -4.07336e-20) (0.128339 -0.0270325 -1.61054e-19) (0.270134 -0.0325592 -1.18179e-19) (0.44871 -0.0468095 -8.26082e-21) (0.645653 -0.0689991 -6.64696e-20) (0.835899 -0.094652 2.27776e-19) (0.997882 -0.118222 1.74483e-19) (1.12047 -0.136027 -1.94758e-19) (1.20342 -0.146112 1.10622e-19) (1.25312 -0.150328 -1.49233e-19) (1.27921 -0.147235 1.41961e-19) (1.2892 -0.145084 -3.36278e-20) (1.292 -0.132532 -1.43439e-19) (-0.0247112 -0.0187194 -3.83641e-19) (-0.0277637 -0.0302499 6.38423e-19) (0.01046 -0.0323053 7.25156e-21) (0.0886456 -0.0311085 -1.76728e-19) (0.207105 -0.0327728 2.33714e-19) (0.362623 -0.0410457 -6.85304e-20) (0.54418 -0.0569989 -1.88776e-19) (0.732406 -0.0784045 -2.1218e-19) (0.905729 -0.100744 4.02289e-19) (1.04813 -0.120018 -1.05999e-19) (1.1532 -0.132841 -3.49928e-20) (1.2226 -0.140359 1.94499e-19) (1.26357 -0.139472 -1.43225e-19) (1.28365 -0.139652 5.02702e-20) (1.29247 -0.127335 -6.23211e-20) (-0.0244904 -0.0200612 5.41299e-19) (-0.0330521 -0.0344703 -5.93345e-19) (-0.00584954 -0.0377837 -2.45752e-19) (0.0559859 -0.0361557 9.69552e-20) (0.153215 -0.0351928 -4.03363e-20) (0.285293 -0.0386513 -1.45289e-19) (0.446854 -0.0485986 1.88889e-19) (0.625085 -0.0646972 -1.39574e-19) (0.801732 -0.0840299 -2.30791e-19) (0.958973 -0.103149 2.81581e-19) (1.08526 -0.117797 -9.56512e-20) (1.17649 -0.12837 5.284e-20) (1.23667 -0.130239 1.14342e-20) (1.26987 -0.132778 1.35616e-19) (1.28772 -0.12137 7.06497e-20) (-0.0238945 -0.0212205 -2.23128e-19) (-0.0365526 -0.0383574 8.73537e-20) (-0.018347 -0.0432022 -5.87715e-20) (0.0296785 -0.0417699 3.36092e-20) (0.108225 -0.0392132 -2.58029e-19) (0.218016 -0.0390974 2.22587e-19) (0.357363 -0.043852 -2.43379e-19) (0.519239 -0.0543599 1.84349e-19) (0.690567 -0.0693256 -1.869e-19) (0.85504 -0.0864861 -2.29126e-19) (0.99848 -0.101471 3.17185e-20) (1.11162 -0.114515 -1.88318e-20) (1.19311 -0.118526 4.43736e-20) (1.2469 -0.125688 -2.94967e-20) (1.2715 -0.112038 -5.04901e-20) (-0.0230281 -0.0222239 -1.47482e-19) (-0.0385944 -0.0418846 3.37286e-19) (-0.0276159 -0.0483976 -9.60837e-20) (0.00893633 -0.0475981 9.04122e-20) (0.0714627 -0.0442574 -3.15423e-21) (0.161084 -0.0417041 1.06781e-19) (0.278128 -0.0423741 2.07387e-19) (0.41976 -0.04773 -1.63784e-19) (0.578192 -0.0577134 6.64382e-20) (0.74099 -0.0713555 2.57857e-19) (0.894306 -0.0849762 -2.0048e-19) (1.02619 -0.0990063 8.84974e-20) (1.12946 -0.105285 9.22854e-20) (1.20464 -0.113954 -1.58754e-20) (1.25782 -0.111042 1.03703e-19) (-0.0219702 -0.0230861 -1.41752e-19) (-0.0394797 -0.0450359 2.53137e-19) (-0.0342152 -0.0532304 1.41614e-19) (-0.00706868 -0.0533329 3.63651e-19) (0.0419918 -0.0498023 1.93353e-19) (0.114018 -0.0457549 1.00774e-19) (0.210196 -0.0434845 -2.52295e-20) (0.330228 -0.0445988 3.63849e-19) (0.470551 -0.0497824 3.33184e-19) (0.623326 -0.0589494 -3.35485e-19) (0.777421 -0.0699052 2.64341e-19) (0.920999 -0.0825739 -1.74643e-19) (1.04431 -0.0913593 -1.421e-19) (1.13722 -0.0987404 -1.18555e-20) (1.22784 -0.105858 -1.59447e-20) (-0.0207915 -0.0238159 2.80251e-19) (-0.0394704 -0.0477854 -2.82724e-19) (-0.0386585 -0.0575782 2.4391e-20) (-0.0191546 -0.0587076 -7.79739e-20) (0.0187435 -0.0553884 -1.87737e-19) (0.0758226 -0.0505707 -1.19581e-19) (0.153437 -0.0463748 -1.66613e-20) (0.252531 -0.0443365 -1.42716e-19) (0.37232 -0.045475 -2.86401e-19) (0.508855 -0.0499801 9.57763e-20) (0.655081 -0.0577673 -1.62129e-19) (0.800311 -0.0665821 1.77002e-19) (0.93928 -0.0775756 7.03814e-21) (1.04169 -0.0816789 -1.36089e-20) (1.17485 -0.096514 -2.23033e-20) (-0.0195482 -0.0244265 -1.93962e-20) (-0.0387797 -0.0500987 -7.98253e-20) (-0.0414048 -0.0613264 2.01803e-19) (-0.0280894 -0.0634929 6.14458e-20) (0.000625691 -0.0606238 1.99642e-19) (0.045227 -0.0555518 -8.43425e-20) (0.106899 -0.0502429 -1.55168e-19) (0.186987 -0.0460915 1.4169e-19) (0.28622 -0.0441773 -1.73403e-19) (0.403149 -0.0445689 -7.40994e-20) (0.535192 -0.0493471 1.16346e-19) (0.671514 -0.0526464 -2.92386e-20) (0.819611 -0.0650362 1.94298e-20) (0.920416 -0.0643652 3.5348e-20) (1.09464 -0.0838707 4.97075e-20) (-0.0182725 -0.0249162 3.7592e-20) (-0.0375854 -0.0519435 -4.08122e-19) (-0.0428512 -0.064369 -1.19673e-19) (-0.0345636 -0.0674954 -1.39939e-19) (-0.0133971 -0.0651874 -1.3935e-19) (0.0208808 -0.0601984 2.10292e-19) (0.0691675 -0.0543756 1.24754e-20) (0.132762 -0.048974 -4.45406e-20) (0.213007 -0.0449793 -1.1359e-19) (0.30968 -0.0423067 -1.12049e-21) (0.424115 -0.0444078 -2.62317e-20) (0.543513 -0.0421679 2.41716e-20) (0.692739 -0.0546411 2.89283e-20) (0.781956 -0.0487454 2.87621e-20) (0.986699 -0.0693405 -2.11168e-19) (-0.0169812 -0.0252658 1.09483e-19) (-0.0360244 -0.0532741 4.61445e-19) (-0.0433352 -0.0666218 3.47199e-19) (-0.0391741 -0.0705594 1.10586e-19) (-0.0242485 -0.0688283 3.66041e-19) (0.00149487 -0.0641187 -3.74227e-19) (0.0386719 -0.0581906 -1.22265e-19) (0.0883555 -0.0521853 -1.22535e-19) (0.151959 -0.0469384 5.43365e-19) (0.229712 -0.0423667 1.98486e-19) (0.325471 -0.0420208 -7.14837e-20) (0.42444 -0.0359237 -3.34461e-20) (0.566025 -0.0465262 5.72801e-21) (0.638901 -0.0367421 4.82133e-21) (0.855559 -0.0548275 3.09358e-20) (-0.0156801 -0.0254482 -1.93817e-19) (-0.0342062 -0.0540348 -8.69961e-20) (-0.0431363 -0.0680106 -4.63367e-19) (-0.0424117 -0.0725692 -1.97638e-19) (-0.0327096 -0.0713643 -2.87706e-19) (-0.0140691 -0.0670276 2.7501e-19) (0.0139041 -0.0612507 1.61174e-19) (0.0520232 -0.0550869 5.47414e-20) (0.101507 -0.0492305 -4.41353e-20) (0.162712 -0.0437063 -1.13599e-19) (0.240339 -0.0412108 -9.93897e-20) (0.319562 -0.0336143 -1.4563e-19) (0.44542 -0.0402501 6.33443e-20) (0.503241 -0.029394 -1.24064e-19) (0.710406 -0.0420537 -3.04149e-20) (-0.0143729 -0.02543 5.58447e-20) (-0.0322214 -0.0541782 -2.88731e-19) (-0.0424694 -0.0684678 3.07033e-19) (-0.0446671 -0.0734436 3.62984e-19) (-0.0394098 -0.0726768 -4.57372e-20) (-0.0267527 -0.0687383 1.69679e-20) (-0.0064509 -0.0632583 -2.12784e-19) (0.0220824 -0.0572195 8.38622e-20) (0.0597874 -0.0512081 -3.02981e-19) (0.107047 -0.0453463 1.13147e-19) (0.168137 -0.0412534 1.60358e-19) (0.230467 -0.0338413 8.97235e-20) (0.335256 -0.0354854 -9.29267e-20) (0.382352 -0.0262622 -4.12555e-20) (0.562787 -0.0317627 4.6498e-20) (-0.0130625 -0.0251737 4.92186e-20) (-0.0301399 -0.053658 1.23431e-19) (-0.0415008 -0.0679454 -9.1647e-20) (-0.0462407 -0.0731349 -1.48665e-20) (-0.0448329 -0.0727036 1.93231e-19) (-0.0372913 -0.0691492 -2.94481e-19) (-0.0234556 -0.0640384 1.0391e-19) (-0.00291242 -0.0582906 7.00281e-20) (0.0250155 -0.0524139 8.52609e-20) (0.0606973 -0.046565 -5.11603e-20) (0.107416 -0.0415651 1.37079e-19) (0.155913 -0.034868 -2.94752e-20) (0.238207 -0.0322 9.18647e-20) (0.278253 -0.0255848 7.04676e-20) (0.423373 -0.0238932 7.63026e-20) (-0.0117539 -0.0246412 1.21356e-19) (-0.0280176 -0.0524328 1.07493e-19) (-0.0403569 -0.0664163 -3.17523e-20) (-0.0473542 -0.0716286 -3.57082e-19) (-0.0493336 -0.0714315 -1.22509e-19) (-0.0462283 -0.0682296 5.75913e-20) (-0.0379129 -0.0635161 9.14549e-20) (-0.0240971 -0.0581479 -2.30421e-19) (-0.00431308 -0.0525713 -4.46064e-20) (0.0217593 -0.0469301 -1.41752e-19) (0.0564011 -0.0416109 -2.17484e-19) (0.0934806 -0.0354658 -1.38735e-19) (0.155143 -0.0301892 1.86616e-20) (0.189595 -0.0253557 -1.2926e-20) (0.299337 -0.0183203 -9.17004e-20) (-0.0104559 -0.0237982 -1.63292e-19) (-0.0259022 -0.0504722 -2.34335e-19) (-0.0391323 -0.0638739 7.63021e-20) (-0.0481647 -0.0689399 8.90885e-20) (-0.053159 -0.0688878 -2.12665e-19) (-0.0539426 -0.0660044 -3.71993e-21) (-0.050392 -0.0616946 -1.09227e-19) (-0.0422993 -0.0567478 2.04487e-19) (-0.0293492 -0.0515537 -1.32719e-19) (-0.011302 -0.0462386 1.18647e-20) (0.0133889 -0.0409525 6.70936e-20) (0.0408137 -0.0351611 2.53528e-19) (0.0853547 -0.0288362 1.24592e-19) (0.114086 -0.0244994 -1.86473e-19) (0.193668 -0.0150439 8.05963e-20) (-0.0091825 -0.0226172 -8.5528e-20) (-0.0238373 -0.0477606 9.5255e-20) (-0.0378969 -0.0603325 -1.37837e-19) (-0.0487787 -0.0651108 6.04472e-20) (-0.0564705 -0.0651326 2.04602e-19) (-0.0606821 -0.0625402 4.62649e-20) (-0.0612707 -0.0586339 2.5836e-20) (-0.0580805 -0.0541296 -1.23375e-19) (-0.0509107 -0.0493603 2.01571e-19) (-0.0395807 -0.0444235 1.08618e-19) (-0.0230367 -0.0393104 8.39345e-20) (-0.00390897 -0.0340061 -7.92713e-20) (0.0272999 -0.0273822 -5.71772e-20) (0.0497773 -0.0231288 1.35325e-19) (0.106155 -0.0136965 -6.79382e-20) (-0.00795265 -0.0210809 1.42303e-19) (-0.0218644 -0.0443003 -1.89186e-22) (-0.036703 -0.0558281 -3.93293e-20) (-0.0492646 -0.0602065 5.63045e-20) (-0.0593658 -0.0602519 -6.67121e-20) (-0.0665959 -0.0579337 -4.20996e-20) (-0.0707818 -0.0544327 4.13101e-20) (-0.0717994 -0.0503858 -9.69209e-20) (-0.0695211 -0.0460747 -8.99927e-20) (-0.0637959 -0.0415572 3.85554e-20) (-0.0540518 -0.0367482 -1.15164e-19) (-0.0418085 -0.0319404 7.37033e-21) (-0.0207835 -0.025421 -1.5947e-19) (-0.00480567 -0.0219376 5.30004e-20) (0.0348705 -0.0132492 7.87372e-20) (-0.00678997 -0.0191842 2.93885e-20) (-0.0200241 -0.0401136 -9.7554e-20) (-0.0355897 -0.0504175 -3.79375e-21) (-0.0496632 -0.0543119 -5.39696e-20) (-0.061897 -0.0543503 7.77152e-20) (-0.0717633 -0.0523019 2.01547e-19) (-0.0790548 -0.049214 -9.95805e-20) (-0.0836647 -0.0456402 1.5217e-19) (-0.0855101 -0.0418146 -2.24909e-20) (-0.0844802 -0.0377709 -4.18983e-20) (-0.0803039 -0.0334431 6.15122e-20) (-0.073596 -0.0290061 2.81636e-20) (-0.0608768 -0.0231737 5.50497e-20) (-0.0503733 -0.020539 -1.3111e-19) (-0.0228709 -0.0130052 7.43392e-21) (-0.00572122 -0.0169362 -1.14533e-20) (-0.018356 -0.0352433 1.18605e-19) (-0.0345872 -0.0441771 -7.69847e-20) (-0.0499968 -0.0475291 1.46245e-20) (-0.0640854 -0.047547 9.62923e-20) (-0.0762172 -0.0457744 -2.13801e-20) (-0.0861506 -0.0431137 6.53996e-20) (-0.0937865 -0.0400333 -7.09155e-20) (-0.0990695 -0.036723 -5.30261e-20) (-0.101926 -0.0332047 -7.53558e-20) (-0.102222 -0.0294391 7.04565e-20) (-0.100106 -0.0254914 -7.5344e-20) (-0.0939182 -0.0207838 1.13972e-21) (-0.0877109 -0.0184049 -3.22952e-20) (-0.0702683 -0.0128765 3.39253e-20) (-0.00477459 -0.0143598 -3.49205e-20) (-0.0168979 -0.029753 2.07718e-20) (-0.0337188 -0.0372016 2.53078e-20) (-0.0502756 -0.0399736 -4.27738e-20) (-0.0659336 -0.0399705 6.393e-21) (-0.0799625 -0.0384874 -6.2121e-21) (-0.0920887 -0.0362732 -7.83475e-21) (-0.102215 -0.0337102 1.36638e-20) (-0.110303 -0.0309483 5.94224e-21) (-0.116306 -0.0280042 1.04549e-19) (-0.120148 -0.0248593 7.19314e-21) (-0.121805 -0.0215506 1.09948e-19) (-0.120557 -0.0179523 -4.45287e-20) (-0.118113 -0.0158404 3.98296e-20) (-0.108771 -0.0124221 -2.47367e-20) (-0.00397771 -0.0114924 -2.23695e-20) (-0.0156845 -0.0237256 -1.3442e-19) (-0.0330031 -0.0296018 3.08917e-20) (-0.0505023 -0.0317722 3.22433e-20) (-0.067434 -0.0317556 -2.36234e-20) (-0.0829888 -0.0305799 -6.0562e-20) (-0.0968659 -0.0288336 1.38856e-20) (-0.108967 -0.0268133 -6.55793e-21) (-0.119263 -0.0246328 2.14043e-20) (-0.127727 -0.0223065 -1.82994e-20) (-0.13431 -0.0198309 -1.23536e-19) (-0.138955 -0.0172457 -5.8037e-20) (-0.141379 -0.0146218 2.34541e-20) (-0.142238 -0.0129299 3.39064e-20) (-0.139048 -0.0110431 -4.66697e-20) (-0.00335562 -0.00838368 5.12531e-20) (-0.014746 -0.0172609 7.83864e-20) (-0.0324545 -0.0215018 3.83504e-20) (-0.0506761 -0.0230599 -5.34498e-20) (-0.0685747 -0.0230415 -7.23167e-21) (-0.0852797 -0.0221915 -4.35033e-20) (-0.100469 -0.0209335 4.23974e-20) (-0.114043 -0.0194793 -1.10438e-20) (-0.125976 -0.017909 -6.99517e-21) (-0.136256 -0.016235 -4.57076e-20) (-0.144851 -0.0144621 8.20808e-20) (-0.15172 -0.0126313 -3.02127e-20) (-0.156786 -0.0108605 1.15833e-20) (-0.160323 -0.00966583 1.8487e-20) (-0.161539 -0.0087266 3.91723e-20) (-0.00292894 -0.00509438 4.82601e-20) (-0.0141068 -0.0104733 -1.1696e-20) (-0.0320836 -0.0130366 -2.51534e-20) (-0.0507949 -0.0139783 6.97698e-21) (-0.0693441 -0.0139693 5.14063e-21) (-0.0868191 -0.0134606 3.49053e-20) (-0.102883 -0.0127078 -3.31432e-20) (-0.117435 -0.0118382 1.75025e-20) (-0.130452 -0.0109 3.16304e-22) (-0.141929 -0.00990199 2.7543e-20) (-0.15185 -0.00885055 -6.24312e-21) (-0.160198 -0.00777691 1.61922e-20) (-0.166991 -0.0067719 -3.13762e-20) (-0.172414 -0.00608692 4.08214e-20) (-0.176471 -0.00569519 7.00861e-21) (-0.00271232 -0.00169332 -1.09571e-20) (-0.0137838 -0.00348742 -4.52942e-21) (-0.0318975 -0.00434905 1.16184e-20) (-0.0508562 -0.00467322 -7.6864e-21) (-0.0697328 -0.00468166 -1.48303e-20) (-0.0875941 -0.00452455 1.41596e-20) (-0.104097 -0.00428778 3.73119e-21) (-0.119136 -0.00401461 6.08183e-21) (-0.132694 -0.00372188 -1.79588e-20) (-0.144768 -0.00341327 -1.73683e-22) (-0.155348 -0.00309177 5.88064e-21) (-0.164436 -0.00276895 4.42065e-21) (-0.172089 -0.00247734 2.02179e-20) (-0.178486 -0.00229164 -1.62506e-20) (-0.183939 -0.0022266 1.04045e-20) (-0.19087 0.00174021 2.2134e-21) (-0.19836 0.00112602 4.87005e-21) (-0.203761 0.000891413 -6.93878e-21) (-0.208966 0.000625179 2.08089e-22) (-0.213212 0.000420195 -2.6687e-21) (-0.2169 0.00026222 2.90682e-21) (-0.219966 0.000152628 -3.59732e-21) (-0.222487 9.11881e-05 1.91388e-21) (-0.224479 7.58053e-05 -7.04792e-22) (-0.225963 0.000104701 3.04855e-21) (-0.226958 0.000173686 -1.70723e-21) (-0.227491 0.000270728 1.55433e-21) (-0.227592 0.000392788 -7.22062e-22) (-0.227273 0.000550196 -1.19081e-21) (-0.226538 0.000725251 -6.23354e-22) (-0.22539 0.000907557 6.15527e-22) (-0.223831 0.00108716 -5.15695e-22) (-0.221862 0.00125343 7.33956e-22) (-0.219488 0.00139651 -2.61946e-22) (-0.216711 0.00150429 -9.12258e-22) (-0.21353 0.00156759 1.96328e-21) (-0.209948 0.00157725 -2.29822e-21) (-0.205966 0.00152528 -4.12846e-22) (-0.201577 0.00140429 2.07742e-21) (-0.196792 0.00118513 -3.1495e-22) (-0.191623 0.000891025 -3.30253e-22) (-0.186063 0.00052169 3.84699e-22) (-0.18012 7.87817e-05 -1.59091e-21) (-0.173797 -0.000434073 1.20479e-21) (-0.167105 -0.00100381 8.36333e-23) (-0.160056 -0.001626 -3.47184e-22) (-0.152659 -0.0022876 -1.46649e-21) (-0.144927 -0.00297506 1.22872e-21) (-0.136871 -0.00367332 6.579e-22) (-0.128508 -0.00436664 -1.17345e-21) (-0.119849 -0.00504117 -3.08997e-23) (-0.110913 -0.00567393 -3.84215e-22) (-0.101721 -0.00625403 1.03765e-21) (-0.0922892 -0.00676573 -6.70967e-22) (-0.0826358 -0.00719589 1.8577e-22) (-0.072779 -0.00753369 -3.51348e-22) (-0.0627387 -0.0077696 -8.73776e-23) (-0.0525355 -0.00789755 2.05814e-22) (-0.0421891 -0.00791344 -9.61363e-23) (-0.0317177 -0.00781431 4.86401e-23) (-0.0211407 -0.00760447 -9.29584e-23) (-0.0104771 -0.00728484 9.44688e-23) (0.000255852 -0.00686379 -4.00862e-23) (0.0110403 -0.00634974 -1.1566e-22) (0.0218595 -0.00575368 9.28948e-24) (0.0326975 -0.0050884 -3.09511e-22) (0.0435388 -0.00436811 3.02916e-22) (0.0543688 -0.00360795 -9.89304e-23) (0.0651739 -0.00282341 -1.65798e-22) (0.0759409 -0.00203003 9.96993e-23) (0.0866576 -0.00124448 -9.6309e-23) (0.0973133 -0.000481889 -1.03264e-23) (0.107898 0.000243283 -6.4954e-23) (0.118402 0.000917644 2.32064e-23) (0.128818 0.00152918 1.71926e-23) (0.139138 0.0020675 -3.29502e-23) (0.149359 0.00252309 8.65448e-24) (0.159473 0.00288274 2.58792e-24) (0.169473 0.00314944 -7.62157e-24) (0.17936 0.00331883 -1.80166e-23) (0.18913 0.00338888 1.02385e-23) (0.198781 0.00335966 1.66499e-23) (0.208314 0.00323323 -2.20353e-24) (0.217725 0.00301312 -2.72742e-23) (0.227019 0.00270453 -4.37002e-24) (0.236189 0.00231338 2.54168e-24) (0.245256 0.00184442 -1.56458e-24) (0.25418 0.00130879 2.70464e-24) (0.263057 0.000715501 2.88882e-24) (0.271684 7.00719e-05 -3.69166e-24) (0.28054 -0.000612777 -2.26894e-24) (0.288557 -0.00134373 -1.92032e-25) (0.298175 -0.00208111 -1.36476e-25) (0.303968 -0.00287708 -1.87306e-25) (0.318091 -0.00381818 7.11398e-25) (-0.182512 0.00611258 4.52517e-21) (-0.189993 0.00441161 3.52096e-21) (-0.195029 0.00382835 -8.79302e-21) (-0.200003 0.00311973 -1.54933e-21) (-0.204023 0.00254079 4.81687e-21) (-0.2075 0.0020419 -4.40586e-21) (-0.210369 0.00161724 -2.91909e-21) (-0.212703 0.00126035 -1.7369e-21) (-0.214515 0.000963594 2.80116e-21) (-0.215826 0.000722755 -3.91308e-21) (-0.216655 0.00053391 1.1205e-20) (-0.217028 0.000394004 -4.99802e-21) (-0.216964 0.000306731 -8.62989e-22) (-0.216483 0.000232309 1.76997e-21) (-0.215593 0.000175164 -2.62172e-21) (-0.21429 0.000127967 3.08637e-21) (-0.212576 8.05783e-05 -2.06515e-21) (-0.210451 2.13939e-05 -3.27141e-21) (-0.207921 -5.81915e-05 -1.20689e-21) (-0.204987 -0.000172996 4.55879e-21) (-0.201649 -0.000331707 -1.09563e-21) (-0.197909 -0.000543479 6.96095e-21) (-0.193769 -0.000815332 -7.32296e-21) (-0.189242 -0.00115326 -8.92345e-22) (-0.18432 -0.00158281 3.8823e-21) (-0.178998 -0.00208452 -3.75565e-22) (-0.173292 -0.00265893 1.3463e-21) (-0.16721 -0.00330333 -3.56251e-21) (-0.160754 -0.00401443 4.59717e-21) (-0.15394 -0.00477379 -2.965e-21) (-0.14678 -0.00558031 1.66362e-21) (-0.139284 -0.00641864 -4.91023e-22) (-0.131467 -0.00727507 1.96384e-21) (-0.123343 -0.00813394 3.21141e-23) (-0.11493 -0.00897856 -1.10539e-21) (-0.10624 -0.00979685 -1.35787e-21) (-0.0972922 -0.01056 3.37836e-21) (-0.0881106 -0.011261 -1.79806e-21) (-0.0787103 -0.0118832 1.0713e-22) (-0.069111 -0.0124132 5.18594e-22) (-0.05933 -0.0128409 -1.49012e-21) (-0.0493865 -0.0131551 1.50383e-21) (-0.0393005 -0.013351 -7.79822e-22) (-0.0290894 -0.0134245 -1.66703e-22) (-0.0187703 -0.0133735 7.96152e-22) (-0.00836018 -0.0132016 5.0096e-22) (0.00212463 -0.0129113 -1.38382e-21) (0.012669 -0.0125102 1.00715e-21) (0.0232582 -0.0120077 -9.69973e-22) (0.0338785 -0.011415 1.86095e-21) (0.0445166 -0.0107453 -8.86114e-22) (0.05516 -0.0100132 -5.88933e-22) (0.065797 -0.00923434 6.2145e-22) (0.0764164 -0.00842486 -2.1918e-22) (0.0870074 -0.00760156 9.47448e-23) (0.0975601 -0.00678023 -5.2305e-24) (0.108065 -0.00597682 -4.71154e-23) (0.118514 -0.00520636 4.51964e-22) (0.128898 -0.00448271 -1.59086e-22) (0.139211 -0.00381837 1.36221e-22) (0.149444 -0.00322412 -7.07888e-23) (0.15959 -0.00270959 -2.14482e-22) (0.169644 -0.00228838 -9.64197e-23) (0.179605 -0.00195834 1.90312e-22) (0.189463 -0.00172418 -4.78842e-23) (0.199216 -0.00158826 -1.16927e-23) (0.208859 -0.00155072 8.02271e-23) (0.218391 -0.00160994 3.84423e-24) (0.227806 -0.00176244 7.31915e-24) (0.237108 -0.00200375 1.34854e-23) (0.246285 -0.00232742 -2.18681e-23) (0.255358 -0.00273055 3.56524e-23) (0.264283 -0.00320022 1.5899e-23) (0.27316 -0.00373113 -3.41712e-23) (0.281768 -0.00431447 6.46159e-24) (0.290609 -0.00493795 1.52865e-23) (0.298573 -0.00562131 -2.01751e-24) (0.308151 -0.00628629 9.52848e-26) (0.313865 -0.00709167 3.78745e-25) (0.327814 -0.00789591 -1.37087e-24) (-0.165775 0.0102432 -1.74421e-20) (-0.173227 0.00745955 2.25016e-20) (-0.177553 0.00654405 -2.61537e-21) (-0.182071 0.00541862 8.61123e-21) (-0.18565 0.00447545 -1.66902e-20) (-0.188716 0.00364498 1.23912e-20) (-0.191202 0.00291254 -8.92294e-22) (-0.193171 0.00226648 -8.97489e-21) (-0.194636 0.00169481 1.11124e-20) (-0.195612 0.00119344 3.62419e-22) (-0.196113 0.000764014 4.54091e-21) (-0.196158 0.000404958 -4.13526e-21) (-0.195794 6.47871e-05 -2.31247e-21) (-0.195029 -0.000249479 1.18749e-20) (-0.193845 -0.000538299 -1.60112e-20) (-0.192253 -0.00081302 1.08535e-20) (-0.190254 -0.00108538 2.199e-21) (-0.187847 -0.00136838 -1.64596e-20) (-0.185039 -0.00166854 1.01923e-20) (-0.181832 -0.0020043 -9.62679e-22) (-0.178225 -0.00238417 -2.16872e-21) (-0.174221 -0.00281826 -5.13961e-22) (-0.169822 -0.0033142 -6.12896e-21) (-0.165036 -0.00387855 2.88344e-21) (-0.159863 -0.00449934 -1.91988e-21) (-0.154306 -0.00519435 5.42026e-21) (-0.148374 -0.00596164 -2.19355e-21) (-0.142078 -0.00679601 4.56058e-21) (-0.135418 -0.00769521 -4.04264e-21) (-0.128415 -0.00863238 3.91698e-21) (-0.121085 -0.00961173 -5.54915e-21) (-0.113439 -0.0106158 -3.07379e-21) (-0.105492 -0.0116299 3.89561e-21) (-0.0972614 -0.0126376 1.54631e-21) (-0.0887686 -0.0136208 -2.62435e-21) (-0.0800217 -0.0145737 -1.0141e-21) (-0.0710446 -0.0154541 4.10702e-21) (-0.0618638 -0.0162639 -2.80784e-21) (-0.0524927 -0.0169846 8.32645e-22) (-0.0429524 -0.0176026 -3.54249e-21) (-0.033259 -0.0181096 3.20795e-21) (-0.023431 -0.0184909 -2.14311e-21) (-0.0134882 -0.0187441 1.70848e-21) (-0.00344587 -0.0188655 -9.62635e-22) (0.00668054 -0.0188538 -2.97739e-22) (0.0168764 -0.018712 -4.49296e-22) (0.027128 -0.0184442 -1.463e-21) (0.037423 -0.0180582 2.35104e-21) (0.0477497 -0.0175635 2.1205e-22) (0.0580972 -0.0169721 -8.28306e-22) (0.0684557 -0.0162976 4.92408e-22) (0.0788156 -0.015555 -1.11054e-22) (0.0891682 -0.0147601 2.11769e-22) (0.0995052 -0.0139297 3.33223e-23) (0.109819 -0.0130805 -2.24893e-23) (0.120101 -0.0122291 -1.22542e-21) (0.130344 -0.0113915 3.29485e-22) (0.140542 -0.0105831 -1.98007e-22) (0.150687 -0.00981822 3.53578e-22) (0.160773 -0.00910978 -3.52174e-22) (0.170793 -0.00846922 1.27811e-23) (0.18074 -0.00790639 -2.76623e-22) (0.190609 -0.00742517 4.25153e-22) (0.200395 -0.00703574 -7.48743e-23) (0.21009 -0.00674136 -1.77642e-23) (0.21969 -0.00654382 -1.43387e-23) (0.22919 -0.00644318 4.06485e-23) (0.238585 -0.00643813 2.79675e-23) (0.247869 -0.00652525 6.98655e-23) (0.257043 -0.00670093 -3.74561e-23) (0.266092 -0.00695836 -3.81758e-23) (0.275039 -0.00729175 5.25675e-23) (0.28383 -0.00769219 -8.10712e-24) (0.292577 -0.00815623 3.32579e-23) (0.301033 -0.00867378 -7.95141e-24) (0.309739 -0.00923026 3.5839e-24) (0.317514 -0.00986063 1.55767e-24) (0.326943 -0.0104429 -4.05961e-24) (0.332459 -0.0112395 3.36602e-24) (0.346061 -0.0119093 2.1829e-25) (-0.140654 0.0139781 2.31457e-21) (-0.148057 0.010133 -3.52305e-23) (-0.151377 0.00891178 1.16547e-20) (-0.155237 0.00741029 9.82603e-21) (-0.158196 0.00612282 -1.49776e-20) (-0.16068 0.00497843 1.68831e-20) (-0.162628 0.00395258 -2.03456e-21) (-0.164086 0.00302864 5.36356e-21) (-0.165062 0.00218893 5.45679e-21) (-0.165563 0.00142629 -1.07669e-20) (-0.165604 0.000753284 5.13543e-21) (-0.165231 0.00015497 -1.05291e-20) (-0.164458 -0.000435554 -5.24159e-22) (-0.163268 -0.00097786 2.3477e-20) (-0.161676 -0.00149109 -2.01088e-20) (-0.159686 -0.00198808 -2.60353e-21) (-0.157297 -0.0024806 1.29657e-20) (-0.154506 -0.00298231 -8.84101e-22) (-0.151321 -0.00349516 -3.37663e-21) (-0.147745 -0.00404178 1.94077e-21) (-0.143778 -0.00462952 2.45652e-21) (-0.139422 -0.00526832 2.00632e-21) (-0.134681 -0.00596593 -6.97081e-22) (-0.129562 -0.00672809 -8.10259e-21) (-0.124068 -0.00755293 4.63101e-21) (-0.118204 -0.00844508 5.36718e-21) (-0.111981 -0.0094033 4.54922e-21) (-0.105413 -0.0104217 -1.37654e-20) (-0.0984972 -0.0115045 1.07499e-20) (-0.0912572 -0.0126092 -5.25796e-21) (-0.0837159 -0.0137506 3.04699e-21) (-0.0758823 -0.0149085 -5.91807e-21) (-0.0677757 -0.0160671 6.84985e-21) (-0.0594133 -0.017209 -1.88988e-21) (-0.0508241 -0.0183148 1.15e-21) (-0.0420089 -0.0193925 2.41066e-21) (-0.0329934 -0.0203726 2.10948e-21) (-0.0238127 -0.0212747 -1.54855e-21) (-0.0144759 -0.0220784 5.78595e-23) (-0.00500584 -0.0227696 9.48947e-22) (0.00458328 -0.0233368 -3.4116e-21) (0.014274 -0.0237718 -4.6781e-22) (0.0240455 -0.0240693 2.67227e-21) (0.0338851 -0.024226 -1.59523e-21) (0.0437793 -0.0242419 2.84669e-21) (0.0537157 -0.02412 9.90633e-22) (0.0636832 -0.0238654 -2.22308e-21) (0.0736722 -0.0234864 1.62007e-21) (0.083674 -0.0229932 -3.09625e-22) (0.0936811 -0.0223981 9.77325e-22) (0.103687 -0.0217153 -5.08218e-22) (0.113684 -0.0209599 -2.28713e-22) (0.123669 -0.0201484 -1.26452e-22) (0.133634 -0.0192974 2.47817e-22) (0.143576 -0.0184242 8.48403e-22) (0.153489 -0.0175452 -1.18719e-21) (0.163368 -0.0166769 6.57501e-22) (0.173207 -0.0158346 2.93017e-22) (0.183002 -0.0150327 1.7385e-22) (0.192748 -0.0142841 -1.95873e-22) (0.202437 -0.0136004 6.67543e-22) (0.212064 -0.0129908 -2.96114e-22) (0.221623 -0.0124614 -3.63555e-22) (0.231109 -0.0120204 4.219e-23) (0.240515 -0.0116716 4.35799e-22) (0.249835 -0.0114169 1.23852e-22) (0.259061 -0.0112567 -2.15127e-22) (0.26819 -0.0111898 1.37261e-23) (0.277213 -0.011213 -2.12939e-23) (0.28613 -0.0113231 -1.69047e-24) (0.294923 -0.0115129 5.42477e-23) (0.303618 -0.0117783 -1.01366e-22) (0.312147 -0.0121097 6.74461e-23) (0.320643 -0.0125038 -1.66752e-23) (0.32882 -0.0129539 -1.28198e-23) (0.337279 -0.0134364 -7.1885e-24) (0.344739 -0.0140109 -1.07464e-23) (0.353912 -0.0145023 6.28529e-24) (0.35913 -0.0152714 -2.12783e-24) (0.372226 -0.0158166 -1.60791e-24) (-0.107031 0.017158 6.22089e-21) (-0.114404 0.012321 3.50238e-20) (-0.116494 0.010831 -2.13853e-20) (-0.119533 0.00900207 1.59417e-21) (-0.121745 0.00740025 -1.3239e-20) (-0.123528 0.00596528 2.39805e-20) (-0.124828 0.00466529 -2.45179e-20) (-0.125675 0.00347946 2.44099e-20) (-0.126071 0.00238742 -9.42963e-21) (-0.126011 0.00138984 -3.02657e-21) (-0.125505 0.000503355 -2.76298e-20) (-0.124615 -0.000379116 4.26591e-20) (-0.123344 -0.00119019 -4.13288e-20) (-0.121669 -0.00195532 3.03885e-20) (-0.119599 -0.00268884 -6.0058e-21) (-0.117139 -0.00340361 6.28796e-23) (-0.114292 -0.00411136 -4.60771e-21) (-0.111051 -0.00482813 -1.30524e-21) (-0.107425 -0.00554929 9.9331e-21) (-0.103419 -0.00630339 -4.88197e-21) (-0.0990332 -0.00709623 -2.95488e-21) (-0.0942707 -0.00793719 -4.49291e-21) (-0.0891365 -0.00883314 -6.99529e-21) (-0.0836369 -0.0097885 1.15071e-20) (-0.0777783 -0.0108038 -1.35898e-20) (-0.0715686 -0.0118808 8.80907e-21) (-0.0650175 -0.0130171 2.54729e-21) (-0.0581495 -0.0142057 -8.56593e-21) (-0.0509524 -0.0154693 7.83693e-21) (-0.0434513 -0.0167265 -5.62099e-21) (-0.0356815 -0.0180152 5.00427e-21) (-0.0276478 -0.0193123 -4.13173e-21) (-0.0193722 -0.0206009 -5.76682e-21) (-0.0108727 -0.0218632 -6.71749e-21) (-0.00219066 -0.0230847 1.10873e-20) (0.00668541 -0.0242401 9.74092e-22) (0.0157348 -0.0253131 1.12903e-21) (0.0249013 -0.0262931 -6.69472e-21) (0.0341858 -0.027163 2.25405e-22) (0.0435661 -0.0279103 4.13415e-21) (0.0530253 -0.0285206 -6.18583e-21) (0.0625473 -0.0289926 3.74672e-21) (0.0721144 -0.0293182 -2.44795e-21) (0.0817141 -0.0294949 -2.08692e-21) (0.0913347 -0.0295239 -1.84666e-21) (0.100966 -0.0294086 4.45717e-21) (0.1106 -0.0291553 -1.23338e-21) (0.120229 -0.0287727 -1.51811e-21) (0.129847 -0.0282717 9.73711e-22) (0.139451 -0.0276652 -3.46337e-23) (0.149037 -0.0269678 -1.43029e-21) (0.158601 -0.026195 2.16263e-21) (0.168142 -0.0253634 -2.33339e-21) (0.177656 -0.0244901 -2.87437e-22) (0.187142 -0.0235921 1.42256e-21) (0.196597 -0.0226862 -1.70533e-21) (0.206018 -0.0217887 9.22814e-22) (0.215403 -0.020915 6.85452e-22) (0.224748 -0.0200791 -1.27436e-21) (0.234048 -0.019294 2.41687e-22) (0.2433 -0.018571 -3.43744e-22) (0.252497 -0.0179193 -2.41756e-22) (0.261635 -0.0173461 3.4926e-22) (0.270707 -0.0168579 -2.32859e-22) (0.279708 -0.0164588 -1.67387e-22) (0.28863 -0.0161509 1.79572e-22) (0.297465 -0.0159345 9.63075e-23) (0.30621 -0.0158086 -1.27688e-22) (0.314852 -0.0157701 -1.57396e-22) (0.323395 -0.0158159 -5.0669e-23) (0.331813 -0.0159395 4.45946e-23) (0.340141 -0.0161368 4.08776e-23) (0.348293 -0.0163994 -7.15283e-23) (0.356429 -0.016721 -2.02989e-23) (0.364211 -0.0171037 3.14613e-23) (0.372322 -0.0175063 -2.35193e-23) (0.379359 -0.0180236 -7.11458e-24) (0.388175 -0.0184191 -9.34908e-24) (0.393016 -0.0191432 -1.97033e-24) (0.405459 -0.0195775 2.67195e-24) (-0.0645672 0.0194428 7.23634e-21) (-0.0720097 0.0139775 -7.1582e-21) (-0.0727551 0.0122389 2.21201e-20) (-0.0748811 0.0101349 -1.74361e-20) (-0.0762915 0.00826062 2.81657e-20) (-0.0773243 0.00656386 -3.40648e-20) (-0.0779336 0.0050132 4.37239e-21) (-0.0781296 0.0035836 1.51371e-20) (-0.0779007 0.00224749 -1.53955e-20) (-0.0772285 0.00100304 -2.41621e-20) (-0.076181 -0.000103836 1.68514e-20) (-0.0747729 -0.00121646 2.14125e-20) (-0.0729573 -0.00225198 -4.8873e-21) (-0.070759 -0.00323356 2.10265e-20) (-0.0681824 -0.00417886 -2.95613e-20) (-0.0652272 -0.00510168 -1.0677e-20) (-0.0619002 -0.00601496 2.81288e-20) (-0.0581886 -0.00694611 -7.57877e-21) (-0.0541006 -0.00786703 7.21444e-21) (-0.0496476 -0.00881893 -2.97607e-20) (-0.0448263 -0.00980745 3.00669e-20) (-0.0396428 -0.0108411 -2.20324e-20) (-0.0341027 -0.011926 2.3267e-21) (-0.0282136 -0.0130659 2.2514e-20) (-0.0219839 -0.0142618 -1.12619e-20) (-0.0154236 -0.0155137 1.85032e-21) (-0.00854204 -0.0168187 2.00427e-21) (-0.00138154 -0.0181775 -1.48342e-20) (0.00608602 -0.0195661 3.88774e-21) (0.0138462 -0.0209731 2.64536e-21) (0.0218318 -0.0223975 2.09556e-21) (0.0300495 -0.0238194 4.58105e-21) (0.0384746 -0.025222 -8.0049e-22) (0.0470861 -0.0265879 4.48002e-21) (0.0558521 -0.0279059 -2.25592e-21) (0.0647616 -0.0291215 2.52213e-21) (0.0737995 -0.0302697 -7.39531e-21) (0.0829238 -0.0313084 7.83495e-21) (0.0921229 -0.0322251 -6.07612e-21) (0.101377 -0.0330084 6.3398e-21) (0.110668 -0.0336469 1.44787e-21) (0.119981 -0.0341367 5.91389e-21) (0.129301 -0.0344722 -7.57379e-21) (0.138616 -0.0346521 -5.20194e-22) (0.147916 -0.0346782 1.5007e-21) (0.157193 -0.0345549 3.17304e-21) (0.166442 -0.0342892 5.51627e-21) (0.175657 -0.0338908 -2.37976e-22) (0.184836 -0.0333712 -5.34283e-21) (0.193978 -0.0327439 2.9847e-21) (0.203082 -0.0320239 1.9815e-21) (0.212148 -0.0312271 -2.12621e-21) (0.221176 -0.0303705 -1.43934e-23) (0.230168 -0.029471 6.04604e-23) (0.239123 -0.0285459 1.40034e-21) (0.248042 -0.0276118 1.47926e-22) (0.256925 -0.026685 -7.78266e-22) (0.26577 -0.0257805 4.39438e-22) (0.274577 -0.0249124 2.44651e-22) (0.283342 -0.0240931 -9.67662e-23) (0.292063 -0.0233338 9.93873e-22) (0.300734 -0.0226435 3.11057e-22) (0.309352 -0.0220293 -4.59689e-22) (0.317911 -0.0214973 -2.97254e-22) (0.326404 -0.0210514 5.52912e-22) (0.334825 -0.0206934 -3.04796e-23) (0.343166 -0.020424 -1.96708e-23) (0.351422 -0.0202419 2.88133e-22) (0.35958 -0.0201443 5.22594e-23) (0.367646 -0.0201277 2.65254e-23) (0.375586 -0.0201869 1.46114e-22) (0.383446 -0.0203162 1.73725e-23) (0.391119 -0.0205113 1.43607e-22) (0.398799 -0.0207587 5.25414e-24) (0.40609 -0.0210753 1.89614e-23) (0.413761 -0.0213939 -5.32328e-24) (0.420286 -0.0218537 5.45197e-23) (0.42865 -0.0221519 7.81514e-24) (0.433062 -0.0228166 4.63523e-24) (0.444723 -0.0231541 -3.10035e-24) (-0.0126396 0.0201591 -1.33864e-21) (-0.020242 0.0154264 -6.15342e-21) (-0.0197857 0.0130871 1.54133e-20) (-0.0210098 0.0107989 1.5173e-20) (-0.0216657 0.00870488 -2.41227e-20) (-0.0219982 0.00677791 3.0345e-20) (-0.0219644 0.00500185 -2.02389e-20) (-0.0215607 0.00334932 -4.90289e-21) (-0.0207676 0.00179607 1.55567e-20) (-0.0195279 0.000382135 2.09559e-20) (-0.017943 -0.00104206 -2.30857e-20) (-0.0160313 -0.00236403 -2.23164e-20) (-0.0137258 -0.00360661 4.44914e-20) (-0.0110459 -0.00479686 -4.1312e-20) (-0.00799586 -0.00594837 3.61843e-21) (-0.00457629 -0.00707472 3.60045e-20) (-0.000804305 -0.00819479 -1.87292e-21) (0.00334288 -0.00930865 -2.5046e-20) (0.00786698 -0.0104262 -5.80444e-21) (0.0127371 -0.0115701 3.43024e-21) (0.0179621 -0.0127469 1.35697e-20) (0.0235349 -0.0139644 -3.11112e-20) (0.029448 -0.0152285 2.96102e-20) (0.0356924 -0.0165424 -2.15254e-20) (0.0422575 -0.0179069 -5.57466e-21) (0.0491308 -0.0193214 1.69979e-20) (0.0562996 -0.0207823 -8.9452e-25) (0.0637351 -0.022294 2.19819e-20) (0.0714319 -0.0237932 -1.69002e-20) (0.0793847 -0.0253364 -1.1451e-20) (0.0875445 -0.0268796 2.53413e-20) (0.0959001 -0.0284088 -1.45923e-20) (0.104426 -0.0299068 -2.89898e-21) (0.113101 -0.0313557 -1.13723e-20) (0.121894 -0.0327414 1.73065e-21) (0.130787 -0.0340277 -7.81254e-22) (0.139763 -0.0352214 -2.85671e-21) (0.148789 -0.0362964 4.76326e-21) (0.157848 -0.0372396 5.30841e-22) (0.166919 -0.0380395 -9.60718e-22) (0.175987 -0.0386864 4.21937e-21) (0.185036 -0.0391756 -5.86248e-21) (0.194053 -0.0395034 6.25139e-21) (0.203028 -0.0396695 -8.86903e-21) (0.211952 -0.0396766 5.48843e-21) (0.220819 -0.0395301 -5.75064e-21) (0.229626 -0.0392382 2.29622e-21) (0.238372 -0.0388111 3.3564e-22) (0.247055 -0.0382614 9.25915e-22) (0.255677 -0.037603 1.62095e-21) (0.26424 -0.0368514 -3.71165e-21) (0.272747 -0.0360231 -1.69232e-21) (0.281201 -0.035135 4.51969e-21) (0.289606 -0.0342044 -2.7717e-22) (0.297965 -0.0332484 -2.51552e-23) (0.30628 -0.0322836 -2.22907e-21) (0.314554 -0.0313259 -1.21967e-22) (0.322788 -0.0303901 -1.21358e-21) (0.330982 -0.02949 1.21139e-21) (0.339135 -0.0286377 5.84518e-23) (0.347245 -0.0278438 -1.16516e-21) (0.355309 -0.027117 1.08409e-21) (0.363324 -0.0264643 -9.45527e-22) (0.371285 -0.0258911 1.46322e-22) (0.379184 -0.0254012 2.3843e-23) (0.387018 -0.0249963 -4.34806e-22) (0.394777 -0.0246768 6.67042e-22) (0.402457 -0.024441 -9.65108e-25) (0.410043 -0.0242871 -9.76723e-23) (0.417544 -0.0242102 -1.69395e-22) (0.42492 -0.0242075 -3.76804e-23) (0.432228 -0.0242698 -6.51509e-24) (0.439338 -0.0243999 -9.65317e-24) (0.446482 -0.0245723 -7.33915e-24) (0.453202 -0.0248255 -6.46746e-23) (0.460356 -0.0250582 -4.24063e-24) (0.466304 -0.0254606 -2.79537e-24) (0.47413 -0.0256642 2.0834e-24) (0.478079 -0.0262585 -9.14305e-24) (0.488854 -0.0265121 1.65603e-24) (0.0496389 0.0196422 5.32497e-21) (0.0421345 0.0165179 -4.1904e-20) (0.0429555 0.0134731 3.68474e-20) (0.0426263 0.0110481 -1.09206e-20) (0.0425193 0.00878938 3.42869e-20) (0.0427033 0.0066667 -3.63197e-20) (0.0432168 0.00468856 3.17899e-20) (0.0440758 0.002831 -3.7941e-20) (0.0453363 0.00107076 2.18165e-20) (0.046958 -0.000561847 3.22983e-20) (0.0488992 -0.0022189 -4.66411e-20) (0.051234 -0.00375314 5.50462e-20) (0.0539354 -0.0052059 -4.10142e-20) (0.0569979 -0.0065999 -1.77644e-20) (0.060422 -0.00795161 4.97027e-21) (0.064208 -0.00927533 3.61427e-20) (0.0683476 -0.0105929 -3.58248e-20) (0.0728432 -0.0118822 3.45142e-20) (0.0777028 -0.0131911 -1.8738e-21) (0.0829065 -0.014519 4.98778e-21) (0.0884529 -0.0158751 -1.35146e-20) (0.0943337 -0.0172669 1.00457e-20) (0.100539 -0.0186995 -1.32058e-21) (0.107059 -0.0201759 -9.01878e-21) (0.11388 -0.0216962 1.94399e-20) (0.120987 -0.0232588 -1.91611e-20) (0.128365 -0.0248582 1.98742e-20) (0.135988 -0.0264951 -2.21114e-21) (0.143838 -0.0281309 -1.71955e-20) (0.151909 -0.0297824 -9.88386e-21) (0.16016 -0.0314245 1.26257e-20) (0.168572 -0.0330418 -1.15843e-20) (0.177118 -0.0346166 -1.32729e-20) (0.185774 -0.0361301 3.03663e-20) (0.194512 -0.0375666 -1.32519e-20) (0.203308 -0.0388985 -7.24326e-21) (0.212145 -0.0401205 -5.55594e-21) (0.220994 -0.0412137 2.47144e-20) (0.229833 -0.0421647 -1.45911e-20) (0.238646 -0.0429629 -1.54412e-21) (0.247416 -0.0435998 6.59351e-21) (0.256128 -0.0440709 4.59218e-21) (0.264771 -0.0443741 -7.70306e-21) (0.273337 -0.0445101 1.71355e-21) (0.281818 -0.0444829 -5.46842e-21) (0.29021 -0.0442989 7.28147e-21) (0.298513 -0.0439672 -3.85768e-21) (0.306727 -0.0434991 8.53525e-23) (0.314853 -0.0429079 4.11604e-21) (0.322896 -0.0422082 -6.52268e-21) (0.33086 -0.0414162 4.29063e-21) (0.33875 -0.0405485 -4.84358e-21) (0.346573 -0.0396224 4.99096e-21) (0.354334 -0.0386552 -2.67392e-21) (0.362038 -0.037664 -1.44083e-21) (0.369691 -0.0366651 -5.94955e-22) (0.377296 -0.0356742 1.11208e-21) (0.384857 -0.0347058 -4.76863e-22) (0.392376 -0.0337731 6.16446e-22) (0.399853 -0.0328878 1.29554e-21) (0.407288 -0.0320602 -5.90756e-22) (0.414679 -0.0312982 -1.1248e-22) (0.422023 -0.0306088 -2.90679e-22) (0.429316 -0.0299966 -6.66854e-22) (0.436553 -0.0294654 7.80626e-22) (0.443729 -0.029016 -4.8945e-22) (0.450835 -0.0286493 -8.03801e-22) (0.457869 -0.0283626 2.36289e-22) (0.464812 -0.0281554 7.83557e-23) (0.471679 -0.0280206 -1.84314e-22) (0.478421 -0.0279592 2.90459e-23) (0.48511 -0.0279561 -3.77503e-23) (0.491591 -0.0280247 -1.70374e-22) (0.498134 -0.0281228 7.76928e-23) (0.504224 -0.0283161 -1.04323e-22) (0.510796 -0.0284636 -3.0997e-23) (0.516124 -0.0288088 -4.84209e-24) (0.523335 -0.028924 -1.47028e-23) (0.526811 -0.0294413 1.26684e-24) (0.536614 -0.0296216 2.57244e-24) (0.123604 0.018977 -2.28399e-20) (0.116448 0.0169596 1.36111e-20) (0.116651 0.013648 3.66979e-22) (0.116776 0.0110467 -5.01393e-20) (0.116863 0.00865557 -8.73177e-20) (0.117207 0.00636248 -1.61223e-20) (0.117885 0.00419695 5.72335e-20) (0.118903 0.00214281 -1.40949e-20) (0.120332 0.0001685 3.47076e-20) (0.122136 -0.00175429 -2.76509e-20) (0.124272 -0.0035739 1.65181e-21) (0.126792 -0.00530357 2.07133e-20) (0.129687 -0.00695836 -6.04512e-21) (0.132948 -0.00855187 -2.43371e-20) (0.136574 -0.0100994 2.69125e-20) (0.140563 -0.0116146 1.04549e-21) (0.144907 -0.0131179 -7.73127e-21) (0.149604 -0.0146027 7.40783e-22) (0.154658 -0.0160931 3.18422e-20) (0.160054 -0.017597 -1.80153e-20) (0.165785 -0.0191242 -2.42791e-20) (0.171841 -0.0206816 -2.64302e-23) (0.17821 -0.0222735 3.17094e-20) (0.184878 -0.0239021 -2.03005e-20) (0.19183 -0.0255671 1.8031e-20) (0.199048 -0.0272659 -2.60336e-20) (0.206514 -0.028992 7.66704e-22) (0.214203 -0.0307428 3.28551e-20) (0.222091 -0.0324906 -2.02245e-20) (0.230165 -0.0342371 -1.9804e-21) (0.238391 -0.0359633 2.8459e-21) (0.246744 -0.0376526 1.03306e-20) (0.255197 -0.0392872 -2.5007e-20) (0.263722 -0.0408482 7.90583e-23) (0.272294 -0.0423189 -9.12702e-22) (0.280887 -0.0436761 1.5265e-20) (0.289479 -0.0449098 1.40006e-20) (0.298046 -0.0460039 -6.62216e-21) (0.306567 -0.0469456 7.61018e-21) (0.315024 -0.0477252 -1.50756e-20) (0.323401 -0.0483355 4.90553e-21) (0.331686 -0.0487728 -1.08372e-20) (0.339868 -0.0490363 1.22333e-20) (0.347941 -0.0491279 -3.88034e-22) (0.3559 -0.0490527 -6.85045e-21) (0.363743 -0.0488183 2.28582e-21) (0.37147 -0.048435 -1.32594e-21) (0.379083 -0.047915 3.34953e-21) (0.386588 -0.0472723 1.97612e-21) (0.39399 -0.0465225 -6.78007e-21) (0.401296 -0.0456819 4.95196e-21) (0.408513 -0.0447678 -8.21112e-22) (0.41565 -0.0437976 -4.91801e-23) (0.422713 -0.0427887 -1.88141e-21) (0.429711 -0.041758 -9.47728e-22) (0.43665 -0.0407217 1.88259e-21) (0.443536 -0.0396952 1.16328e-21) (0.450373 -0.0386924 -1.16296e-21) (0.457166 -0.0377263 6.41047e-22) (0.463916 -0.0368079 -2.30122e-22) (0.470624 -0.0359469 -1.94445e-21) (0.477289 -0.0351508 1.32572e-21) (0.48391 -0.0344262 6.8168e-22) (0.490484 -0.0337768 -1.88034e-22) (0.497004 -0.0332065 2.50202e-22) (0.503469 -0.0327151 5.95552e-22) (0.509869 -0.0323042 -2.91283e-22) (0.516203 -0.0319695 -4.82915e-22) (0.52245 -0.0317124 4.39439e-22) (0.528631 -0.0315225 2.3839e-24) (0.534688 -0.0314063 2.60122e-22) (0.540708 -0.0313403 -1.30907e-22) (0.546512 -0.0313517 1.39027e-22) (0.552406 -0.0313776 1.14881e-22) (0.557825 -0.0315147 -3.48062e-23) (0.563764 -0.0315805 2.15873e-23) (0.568451 -0.031869 3.91334e-23) (0.574982 -0.0319044 -1.98446e-24) (0.577988 -0.0323423 1.91367e-23) (0.586758 -0.0324577 -1.25309e-24) (0.211207 0.01882 4.29295e-21) (0.204081 0.0172646 -3.00502e-20) (0.202637 0.0138907 1.73697e-20) (0.202349 0.0110979 -2.45784e-21) (0.202038 0.00855242 -4.12645e-21) (0.202001 0.0060845 -8.44024e-20) (0.202362 0.00372741 6.21856e-20) (0.203115 0.00147472 3.86985e-20) (0.204319 -0.000694171 -4.28441e-20) (0.205933 -0.00286388 -1.76113e-20) (0.207934 -0.00491774 -4.39169e-20) (0.210351 -0.00686544 8.79517e-20) (0.213164 -0.00873003 -1.68057e-20) (0.216365 -0.0105275 -2.65747e-20) (0.219946 -0.0122743 1.10644e-20) (0.223904 -0.0139839 -2.94798e-23) (0.228231 -0.0156751 -1.31612e-20) (0.232918 -0.0173476 1.41603e-20) (0.237966 -0.0190183 4.73707e-22) (0.24336 -0.0206963 -1.36531e-20) (0.249088 -0.022391 2.16066e-20) (0.255137 -0.0241087 -1.74765e-20) (0.261493 -0.0258532 -1.82301e-20) (0.268139 -0.0276262 3.16022e-20) (0.275055 -0.0294266 -8.96774e-21) (0.282222 -0.0312513 2.06437e-20) (0.289616 -0.033093 -3.47637e-20) (0.297214 -0.0349465 2.30491e-20) (0.304987 -0.0367903 1.06134e-20) (0.312916 -0.0386185 -1.9838e-20) (0.320969 -0.0404144 9.50978e-21) (0.329117 -0.0421607 -3.1508e-21) (0.337334 -0.0438396 -2.06182e-20) (0.34559 -0.0454323 1.38097e-21) (0.353859 -0.0469219 1.51893e-20) (0.362114 -0.0482879 -3.76698e-21) (0.370334 -0.0495178 -6.73321e-22) (0.378493 -0.0505974 -4.7204e-21) (0.386574 -0.0515149 2.49959e-20) (0.394558 -0.0522616 -1.48728e-20) (0.402431 -0.0528314 1.04027e-21) (0.410183 -0.0532217 1.12555e-20) (0.417803 -0.053433 -6.3201e-21) (0.425288 -0.0534684 7.88153e-21) (0.432634 -0.0533343 -9.9461e-21) (0.439842 -0.0530395 3.27593e-21) (0.446914 -0.0525952 -5.15948e-21) (0.453854 -0.0520146 5.44543e-21) (0.460669 -0.0513128 1.92839e-21) (0.467366 -0.0505057 -7.81777e-23) (0.473954 -0.0496104 -4.42592e-21) (0.480443 -0.0486445 1.14593e-21) (0.486841 -0.0476255 -1.21538e-21) (0.493158 -0.0465708 1.29429e-21) (0.499403 -0.0454974 2.74454e-21) (0.505584 -0.0444211 -2.17624e-21) (0.511708 -0.043357 2.19112e-21) (0.517781 -0.0423187 -1.47391e-21) (0.523808 -0.0413185 -4.05277e-22) (0.529792 -0.0403668 1.31671e-21) (0.535735 -0.039473 1.97046e-21) (0.541638 -0.0386437 4.12218e-22) (0.547498 -0.0378853 -2.02735e-21) (0.553314 -0.0372007 3.80771e-22) (0.559082 -0.0365937 5.18863e-23) (0.564798 -0.0360628 -2.67547e-22) (0.570454 -0.0356108 -3.17312e-23) (0.576052 -0.035231 9.31761e-22) (0.581568 -0.0349277 -6.97056e-23) (0.587028 -0.034686 -3.60287e-22) (0.592366 -0.0345195 3.5148e-22) (0.597682 -0.0343939 -2.57991e-22) (0.60278 -0.0343528 -2.04161e-22) (0.607991 -0.0343103 4.37743e-23) (0.61272 -0.0343953 8.82103e-23) (0.617985 -0.0343853 1.96727e-23) (0.622029 -0.034618 2.57626e-23) (0.62783 -0.0345837 -3.69474e-24) (0.630383 -0.0349437 -5.22788e-25) (0.638081 -0.0350013 -2.52571e-25) (0.313906 0.0199862 5.13543e-20) (0.306058 0.0181309 -6.32997e-20) (0.301918 0.0146562 1.37796e-20) (0.300054 0.0116241 3.25322e-20) (0.298511 0.00884163 2.89733e-20) (0.297375 0.00614319 -1.27993e-20) (0.296781 0.00355394 5.59422e-20) (0.296703 0.00106812 -1.38537e-21) (0.297153 -0.00132544 -6.62226e-20) (0.298115 -0.00375674 -4.54208e-20) (0.299574 -0.00605711 3.88572e-20) (0.3015 -0.00824606 -3.36757e-21) (0.303874 -0.0103404 2.90524e-20) (0.30668 -0.0123571 -5.89869e-20) (0.309905 -0.0143151 2.28217e-20) (0.313538 -0.0162286 3.81388e-21) (0.317569 -0.0181157 1.40957e-20) (0.321983 -0.0199805 3.02272e-20) (0.326775 -0.0218353 -1.76658e-20) (0.331926 -0.0236893 -6.35905e-21) (0.33742 -0.0255515 -5.94356e-21) (0.343241 -0.0274278 3.77993e-20) (0.34937 -0.0293217 2.23213e-21) (0.355785 -0.0312341 -6.37962e-21) (0.362464 -0.0331636 -1.83759e-20) (0.369383 -0.0351065 2.23417e-20) (0.376516 -0.0370548 -3.68419e-20) (0.383835 -0.0390018 2.65047e-20) (0.39131 -0.0409295 -2.35581e-20) (0.398916 -0.0428279 2.1847e-20) (0.406622 -0.0446808 -1.69294e-20) (0.414396 -0.0464712 1.99638e-20) (0.422211 -0.0481811 -2.55107e-20) (0.430036 -0.0497923 1.14838e-20) (0.437844 -0.0512876 -1.72849e-20) (0.445609 -0.0526487 2.22422e-20) (0.453307 -0.053862 -1.89581e-20) (0.460918 -0.0549147 8.45771e-21) (0.468421 -0.0557961 4.72876e-21) (0.475802 -0.0564986 2.5516e-21) (0.483046 -0.0570173 -1.32405e-20) (0.490146 -0.0573508 1.21372e-21) (0.497094 -0.0575008 1.44068e-20) (0.503886 -0.0574717 -1.65511e-20) (0.510522 -0.0572711 7.55818e-21) (0.517005 -0.056909 -9.0368e-21) (0.523338 -0.0563976 1.13373e-20) (0.529528 -0.0557512 -1.31139e-20) (0.535582 -0.0549853 4.95838e-21) (0.541511 -0.0541168 4.61924e-21) (0.547323 -0.0531632 -5.70418e-21) (0.55303 -0.0521423 6.7556e-21) (0.558642 -0.051072 -3.54766e-21) (0.564169 -0.0499695 -1.21575e-21) (0.569622 -0.0488517 -1.78476e-21) (0.575009 -0.0477342 2.67213e-21) (0.580339 -0.0466319 -1.45181e-21) (0.585618 -0.0455576 -6.18596e-22) (0.590851 -0.0445234 5.28124e-22) (0.596043 -0.0435389 1.1385e-21) (0.601196 -0.0426132 7.13589e-22) (0.606311 -0.0417521 -1.68651e-21) (0.611388 -0.0409618 -7.67584e-22) (0.616424 -0.0402439 1.78827e-21) (0.621417 -0.0396027 -2.52902e-22) (0.626364 -0.0390352 -2.63444e-22) (0.631257 -0.0385455 4.64512e-22) (0.636099 -0.0381239 -7.59307e-23) (0.640864 -0.0377788 -3.66896e-22) (0.645584 -0.0374891 2.059e-22) (0.650187 -0.037277 1.8862e-22) (0.654782 -0.0370961 -2.70127e-22) (0.659162 -0.0370076 -1.0707e-22) (0.66367 -0.036902 1.46641e-22) (0.667706 -0.0369388 1.41482e-24) (0.672273 -0.0368611 -5.9473e-23) (0.675687 -0.0370394 1.99329e-23) (0.680724 -0.0369459 1.13891e-24) (0.682847 -0.0372328 -1.43725e-23) (0.689458 -0.0372391 2.37013e-24) (0.43178 0.0234051 -6.86933e-21) (0.422153 0.0203596 -1.50387e-20) (0.414465 0.0165352 2.37444e-20) (0.409799 0.0131467 -4.99329e-20) (0.406052 0.00997565 -6.58132e-21) (0.403002 0.00692775 -2.60764e-20) (0.400728 0.00401734 -3.17817e-21) (0.399178 0.00122489 -2.14538e-20) (0.398287 -0.00147703 8.93506e-20) (0.398056 -0.00420064 -7.20427e-20) (0.398474 -0.00677381 -3.89265e-20) (0.39947 -0.00923125 8.56015e-21) (0.401003 -0.0115825 3.47152e-20) (0.403038 -0.0138442 1.97233e-20) (0.405554 -0.0160358 4.74411e-20) (0.40853 -0.0181722 -1.13173e-19) (0.41195 -0.0202717 7.67794e-20) (0.415794 -0.0223414 -3.66305e-20) (0.420048 -0.0243904 1.36836e-21) (0.424687 -0.026428 1.60973e-20) (0.42969 -0.0284631 4.16169e-20) (0.435034 -0.0305014 -9.20944e-20) (0.440696 -0.0325457 6.49703e-20) (0.44665 -0.0345968 -1.98886e-20) (0.452868 -0.0366528 -2.69385e-21) (0.459321 -0.0387095 2.89459e-20) (0.465979 -0.0407589 2.31493e-21) (0.472813 -0.0427928 -3.33133e-20) (0.479789 -0.0447957 1.48995e-20) (0.486876 -0.0467552 2.97765e-22) (0.494044 -0.0486556 -1.82944e-21) (0.501258 -0.05048 7.61122e-22) (0.50849 -0.0522107 -2.45394e-21) (0.515708 -0.0538298 -6.15713e-22) (0.522884 -0.0553208 1.93928e-20) (0.529994 -0.0566666 -1.21302e-20) (0.537014 -0.0578538 -2.11797e-22) (0.543923 -0.0588707 -7.01761e-21) (0.550705 -0.0597077 3.93323e-21) (0.557344 -0.0603584 -1.47649e-20) (0.56383 -0.0608193 1.98578e-20) (0.570155 -0.0610901 -2.04461e-21) (0.576315 -0.0611737 -3.70689e-21) (0.582309 -0.0610759 5.88387e-22) (0.588137 -0.0608053 6.38882e-22) (0.593804 -0.060373 6.07766e-21) (0.599316 -0.0597923 -5.04112e-21) (0.604681 -0.0590782 -5.23108e-22) (0.609909 -0.0582471 4.24104e-21) (0.615009 -0.0573164 -1.36008e-21) (0.619992 -0.0563039 -5.78997e-21) (0.624871 -0.0552279 -1.4372e-21) (0.629656 -0.0541062 2.67461e-21) (0.634359 -0.0529562 3.28451e-21) (0.63899 -0.0517945 -2.06501e-21) (0.643557 -0.0506366 -1.06034e-21) (0.648071 -0.0494968 1.18825e-21) (0.652537 -0.0483876 -9.14459e-22) (0.656961 -0.0473207 -1.67491e-22) (0.661347 -0.0463051 -1.95599e-21) (0.665699 -0.0453493 3.30778e-21) (0.670017 -0.0444583 -1.94124e-21) (0.674302 -0.0436383 2.11194e-22) (0.678552 -0.0428899 -3.06483e-22) (0.682765 -0.0422175 2.3724e-22) (0.686938 -0.0416166 -5.83656e-23) (0.691063 -0.0410928 -4.12024e-23) (0.695145 -0.0406334 1.77637e-22) (0.699159 -0.0402507 -7.34932e-23) (0.703136 -0.0399174 1.4456e-22) (0.707004 -0.0396649 -1.02028e-22) (0.710875 -0.0394338 -1.566e-22) (0.714542 -0.0393031 1.2079e-22) (0.718343 -0.0391409 1.06618e-23) (0.7217 -0.0391337 -2.86086e-23) (0.725557 -0.0389973 -2.87227e-23) (0.728367 -0.039124 1.68855e-23) (0.732623 -0.0389818 -2.71191e-23) (0.734347 -0.0392023 -6.16629e-24) (0.739877 -0.0391637 -3.73151e-24) (0.562573 0.0295866 -3.81335e-21) (0.550004 0.0247347 -5.48608e-20) (0.538344 0.0201623 4.30104e-20) (0.529948 0.0161864 -7.10221e-20) (0.523126 0.0124182 4.56356e-20) (0.517424 0.00885065 -4.71683e-20) (0.512794 0.00548204 3.71738e-20) (0.509149 0.00227597 -2.5073e-20) (0.506346 -0.000816306 -7.72316e-21) (0.504434 -0.00372455 3.71656e-20) (0.503337 -0.00672004 -1.57594e-20) (0.502956 -0.00955463 3.03209e-21) (0.503235 -0.0122259 5.65327e-21) (0.50412 -0.0147773 4.54274e-20) (0.505573 -0.0172386 -7.46259e-20) (0.50756 -0.0196279 -5.59183e-21) (0.510054 -0.0219658 2.66605e-20) (0.51303 -0.0242618 1.47687e-20) (0.516461 -0.0265227 -4.13202e-21) (0.520317 -0.0287582 -3.66053e-20) (0.524567 -0.0309775 -6.24786e-21) (0.529184 -0.0331861 6.13827e-20) (0.534136 -0.0353868 -1.45023e-20) (0.539392 -0.0375801 -4.49534e-20) (0.54492 -0.0397639 5.11176e-20) (0.550684 -0.0419338 -2.34673e-21) (0.556652 -0.044082 -8.0266e-21) (0.562789 -0.0461995 -1.54017e-21) (0.569058 -0.0482724 9.0991e-21) (0.575427 -0.0502873 -4.13518e-21) (0.58186 -0.0522288 -8.91342e-21) (0.588325 -0.0540803 1.58861e-20) (0.594788 -0.0558248 6.17984e-21) (0.601221 -0.0574451 -8.64751e-21) (0.607594 -0.058925 -9.13764e-21) (0.613883 -0.0602491 -5.29676e-21) (0.620066 -0.0614045 1.46703e-20) (0.626124 -0.0623806 -2.24305e-20) (0.63204 -0.0631691 9.82044e-21) (0.637803 -0.0637647 -5.25426e-21) (0.643404 -0.0641653 1.84851e-20) (0.648837 -0.0643718 -3.46016e-21) (0.654101 -0.0643884 -1.22539e-20) (0.659196 -0.0642218 2.20772e-21) (0.664125 -0.063882 -2.75385e-21) (0.668895 -0.063381 7.73914e-21) (0.673513 -0.0627329 -1.80315e-21) (0.677988 -0.0619535 4.83732e-21) (0.682331 -0.0610598 -1.14592e-20) (0.686553 -0.0600696 4.5267e-21) (0.690666 -0.0590014 6.40974e-22) (0.694682 -0.0578732 6.98938e-21) (0.698612 -0.0567032 -8.00288e-21) (0.702467 -0.0555086 3.46146e-21) (0.706258 -0.054306 -2.2534e-21) (0.709993 -0.0531104 2.1359e-21) (0.713682 -0.051936 5.17615e-22) (0.71733 -0.0507947 -1.03317e-21) (0.720943 -0.0496978 6.74812e-22) (0.724525 -0.0486537 6.58701e-22) (0.72808 -0.0476707 -1.44976e-22) (0.731607 -0.0467528 -3.69011e-22) (0.735108 -0.0459063 1.00279e-21) (0.738581 -0.0451304 -9.64086e-22) (0.742023 -0.0444305 4.91952e-23) (0.745433 -0.0437997 -9.56689e-22) (0.748803 -0.043246 1.42449e-22) (0.752138 -0.0427529 8.82846e-23) (0.755413 -0.0423375 2.99061e-22) (0.758661 -0.0419656 -1.16773e-22) (0.761811 -0.0416778 -3.17324e-22) (0.76497 -0.0414025 2.2094e-22) (0.767945 -0.0412345 -1.19398e-22) (0.771048 -0.0410234 -1.14004e-22) (0.773754 -0.0409762 -1.28195e-22) (0.776906 -0.0407911 5.63168e-23) (0.779149 -0.0408696 -9.52403e-23) (0.782625 -0.0406888 8.04959e-25) (0.783984 -0.0408508 -1.1439e-23) (0.78846 -0.0407743 -5.81925e-25) (0.70093 0.038423 4.9785e-20) (0.684651 0.0316934 4.67085e-20) (0.66915 0.0260062 -2.41938e-20) (0.656739 0.0211253 -3.43065e-20) (0.646403 0.0165271 2.18724e-20) (0.637619 0.012252 -1.61453e-20) (0.630216 0.00826601 -2.0332e-20) (0.624069 0.00451481 5.78406e-20) (0.619042 0.000943859 4.35262e-20) (0.614995 -0.00238773 -9.54643e-20) (0.611917 -0.00574602 5.67269e-20) (0.609844 -0.00898704 5.11975e-21) (0.608568 -0.0120518 -3.80444e-20) (0.608003 -0.0149568 -1.01905e-20) (0.608103 -0.0177381 1.2132e-20) (0.608822 -0.0204212 4.35917e-20) (0.610124 -0.0230325 -8.71126e-20) (0.611974 -0.0255839 2.82666e-20) (0.614337 -0.0280812 5.18589e-21) (0.61717 -0.0305346 -4.49801e-20) (0.620436 -0.0329545 7.38354e-20) (0.624099 -0.0353467 -3.23931e-20) (0.628121 -0.0377137 2.87929e-20) (0.632464 -0.0400563 -5.53972e-20) (0.637089 -0.0423728 4.75643e-20) (0.641958 -0.0446588 -5.85746e-20) (0.647032 -0.0469067 1.8606e-20) (0.652273 -0.0491076 5.44296e-20) (0.657642 -0.0512485 -2.53928e-20) (0.663101 -0.0533161 -2.42689e-20) (0.668615 -0.0552955 -6.00397e-21) (0.67415 -0.0571707 2.86649e-20) (0.679672 -0.0589255 -2.40798e-20) (0.685151 -0.0605436 4.91481e-21) (0.69056 -0.0620098 -7.09492e-21) (0.695875 -0.0633098 -4.44553e-21) (0.701075 -0.0644318 7.80988e-21) (0.706143 -0.0653664 4.508e-21) (0.711066 -0.0661065 5.464e-22) (0.715832 -0.0666483 -8.03576e-21) (0.720437 -0.0669908 1.43574e-21) (0.724877 -0.0671361 2.18202e-21) (0.729151 -0.0670895 9.65344e-21) (0.733264 -0.0668589 -7.4117e-21) (0.737221 -0.0664552 -7.6279e-21) (0.741028 -0.0658912 -1.93299e-21) (0.744695 -0.0651819 -1.67039e-21) (0.748232 -0.0643436 7.08548e-21) (0.751651 -0.0633938 -3.48826e-21) (0.754963 -0.0623508 9.98608e-22) (0.75818 -0.0612331 -2.06228e-23) (0.761314 -0.0600591 -7.77835e-21) (0.764377 -0.0588468 7.73879e-21) (0.767378 -0.0576133 2.23237e-21) (0.770327 -0.0563752 -8.11571e-22) (0.773233 -0.055147 -1.89995e-21) (0.776104 -0.0539427 -2.69967e-21) (0.778945 -0.0527738 2.6444e-21) (0.781762 -0.0516512 -1.34683e-21) (0.784557 -0.0505827 -1.89944e-22) (0.787334 -0.0495763 -1.83648e-21) (0.790092 -0.0486354 9.77937e-22) (0.792832 -0.0477662 1.15852e-21) (0.795552 -0.0469668 -5.80987e-22) (0.79825 -0.0462433 8.14329e-22) (0.800924 -0.045587 -2.33131e-22) (0.803567 -0.0450077 -2.57022e-22) (0.806182 -0.0444857 -3.08558e-22) (0.80875 -0.0440423 1.26484e-22) (0.811295 -0.0436371 4.73456e-23) (0.813759 -0.0433191 -1.41736e-22) (0.816233 -0.0430061 7.31304e-24) (0.818552 -0.0428057 -1.29439e-22) (0.82098 -0.042554 2.72773e-22) (0.823076 -0.0424708 6.72716e-23) (0.825541 -0.042247 -9.37925e-23) (0.827262 -0.0422818 3.59221e-23) (0.829977 -0.0420717 -7.80745e-25) (0.831008 -0.0421834 -5.41769e-24) (0.834476 -0.0420764 -3.75124e-24) (0.83847 0.0493394 -7.09222e-20) (0.818768 0.0410298 4.10663e-20) (0.800184 0.0340976 -2.30234e-20) (0.784289 0.0280449 -2.34907e-20) (0.770681 0.0224237 -2.2631e-20) (0.758923 0.0172814 -5.27577e-20) (0.748764 0.0125296 1.72507e-20) (0.740059 0.00808738 -3.61049e-20) (0.732674 0.00389871 2.08571e-20) (0.726459 -7.04063e-05 -3.61894e-20) (0.721344 -0.00370948 6.0846e-20) (0.717335 -0.00742044 -4.74635e-20) (0.714322 -0.0109358 6.14208e-21) (0.712149 -0.0142489 3.55965e-20) (0.710737 -0.0174007 1.89068e-20) (0.710025 -0.0204212 -4.41454e-21) (0.709968 -0.0233443 -6.43095e-20) (0.710525 -0.0261841 2.48365e-20) (0.711651 -0.0289454 8.61333e-21) (0.713292 -0.03164 -1.24074e-20) (0.715404 -0.0342796 -3.53475e-20) (0.717941 -0.0368707 6.26669e-21) (0.720862 -0.0394164 8.195e-20) (0.72412 -0.0419179 -4.75571e-20) (0.727672 -0.0443741 4.5353e-20) (0.731474 -0.0467811 -9.34922e-20) (0.735485 -0.0491321 8.26431e-20) (0.739661 -0.0514183 -5.66903e-20) (0.743963 -0.0536282 4.72145e-20) (0.748351 -0.0557486 -2.43502e-20) (0.752787 -0.0577657 -2.45523e-21) (0.757238 -0.0596644 2.32757e-20) (0.76167 -0.0614294 5.65438e-21) (0.766053 -0.0630456 -2.20086e-20) (0.770363 -0.064499 3.62078e-21) (0.774576 -0.0657768 3.8448e-22) (0.778673 -0.0668682 1.09043e-20) (0.78264 -0.067765 -4.1689e-21) (0.786465 -0.0684616 1.02125e-21) (0.790142 -0.0689554 3.84573e-21) (0.793666 -0.0692465 -9.50815e-21) (0.797037 -0.0693382 1.34084e-21) (0.800256 -0.0692369 1.60382e-21) (0.80333 -0.0689515 8.58721e-21) (0.806265 -0.0684934 8.11116e-21) (0.80907 -0.0678765 -1.49778e-20) (0.811755 -0.0671161 6.48755e-21) (0.814331 -0.0662291 7.7563e-21) (0.81681 -0.0652335 -1.4849e-21) (0.819202 -0.0641475 2.09175e-21) (0.821521 -0.0629899 -5.88695e-21) (0.823776 -0.0617791 2.6869e-22) (0.825979 -0.0605331 4.18994e-21) (0.828139 -0.059269 -5.90092e-21) (0.830265 -0.0580028 6.3127e-21) (0.832364 -0.0567491 -4.46318e-21) (0.834443 -0.0555214 1.38438e-21) (0.836506 -0.0543308 -5.95475e-22) (0.838558 -0.0531881 1.53622e-21) (0.840599 -0.0521004 1.43381e-21) (0.842634 -0.0510756 5.93424e-22) (0.84466 -0.0501163 1.02976e-21) (0.846679 -0.049229 -1.52927e-21) (0.848686 -0.0484104 5.00247e-22) (0.850681 -0.0476678 8.32354e-22) (0.85266 -0.0469904 1.3977e-22) (0.854619 -0.0463902 -4.80456e-22) (0.856556 -0.045844 3.84149e-22) (0.85846 -0.0453776 -1.25742e-22) (0.860344 -0.0449447 1.52477e-22) (0.862169 -0.0446013 -5.44685e-23) (0.863997 -0.0442574 1.49697e-22) (0.865707 -0.0440293 -1.74155e-22) (0.867497 -0.0437452 3.24842e-22) (0.869033 -0.0436303 -1.99356e-22) (0.870846 -0.0433771 1.15485e-22) (0.872096 -0.043373 -1.0686e-23) (0.874085 -0.0431422 5.28618e-23) (0.874825 -0.0432116 -9.70998e-24) (0.877351 -0.0430816 6.54157e-24) (0.965305 0.0614484 -1.7839e-20) (0.943778 0.0520324 -9.28667e-20) (0.923533 0.0439668 7.41182e-20) (0.905423 0.0366347 -1.34232e-20) (0.889518 0.029907 -5.2066e-20) (0.87552 0.0238096 1.18313e-19) (0.86317 0.0181961 4.47235e-20) (0.852345 0.0129785 2.16092e-20) (0.842936 0.00810953 5.32764e-20) (0.834822 0.00354463 -8.90016e-20) (0.827816 -0.000709919 -4.77692e-21) (0.821989 -0.00468153 6.06527e-20) (0.817318 -0.00875602 -7.70706e-20) (0.813581 -0.0125718 3.38615e-20) (0.810676 -0.0161572 3.70713e-20) (0.80853 -0.0195608 -2.9051e-20) (0.807088 -0.0228339 -3.0166e-20) (0.806309 -0.0259942 4.79802e-20) (0.806139 -0.0290459 -4.45683e-20) (0.806517 -0.0320035 8.01163e-20) (0.80739 -0.034881 6.77262e-21) (0.80871 -0.0376857 -6.45101e-20) (0.810426 -0.0404217 1.59441e-21) (0.812491 -0.0430913 4.87926e-20) (0.814855 -0.0456943 -5.10924e-20) (0.817473 -0.0482277 -1.44026e-20) (0.820299 -0.0506858 5.5073e-20) (0.823289 -0.0530607 -6.41561e-20) (0.826402 -0.0553419 -4.12536e-21) (0.829598 -0.0575175 4.82712e-20) (0.832839 -0.0595745 -2.75105e-20) (0.836092 -0.0614991 2.83705e-20) (0.839324 -0.0632774 -5.18971e-22) (0.842509 -0.0648955 -1.17982e-20) (0.845622 -0.0663409 -8.76224e-21) (0.848643 -0.067602 -8.63104e-21) (0.851556 -0.0686696 2.2232e-20) (0.854349 -0.0695365 -1.85057e-20) (0.857013 -0.0701985 1.05993e-20) (0.859544 -0.0706542 2.17399e-21) (0.861941 -0.0709048 -2.21123e-20) (0.864204 -0.0709548 1.77683e-20) (0.866339 -0.0708112 -7.85152e-21) (0.868352 -0.0704837 -9.07807e-21) (0.870252 -0.0699847 1.17387e-20) (0.872048 -0.0693281 -4.19855e-21) (0.873751 -0.0685301 1.1492e-20) (0.875372 -0.0676076 -9.26777e-21) (0.876923 -0.0665789 1.85461e-21) (0.878414 -0.0654624 3.76673e-21) (0.879857 -0.0642769 -3.03843e-22) (0.881261 -0.0630406 1.9773e-21) (0.882637 -0.0617716 -3.43105e-21) (0.883991 -0.0604865 -3.24337e-21) (0.885332 -0.0592015 1.05595e-21) (0.886666 -0.0579306 -6.3067e-21) (0.887996 -0.0566873 6.93431e-21) (0.889327 -0.0554822 -3.08965e-22) (0.890662 -0.0543258 -1.25655e-21) (0.892001 -0.0532248 -1.34531e-21) (0.893345 -0.0521872 1.71191e-21) (0.894691 -0.0512147 -5.35359e-22) (0.896042 -0.0503141 9.45629e-22) (0.89739 -0.0494813 -1.99418e-21) (0.898738 -0.0487242 1.02274e-21) (0.900076 -0.0480304 -1.48787e-21) (0.901407 -0.0474138 9.17472e-22) (0.90272 -0.0468485 -5.84267e-22) (0.904017 -0.0463635 2.90987e-22) (0.905294 -0.0459087 6.89535e-22) (0.906534 -0.0455446 -2.77286e-22) (0.907768 -0.0451765 3.09309e-23) (0.908927 -0.0449249 3.76672e-23) (0.910127 -0.0446164 -1.78142e-22) (0.91116 -0.0444739 1.42656e-22) (0.912367 -0.0442002 -2.94181e-23) (0.9132 -0.0441621 -9.50171e-23) (0.914515 -0.0439184 6.36696e-23) (0.915003 -0.0439528 -4.67805e-24) (0.916663 -0.0438074 -2.34359e-24) (1.07272 0.0737649 -2.97995e-20) (1.05177 0.0637972 -6.85846e-20) (1.03174 0.054786 1.03773e-19) (1.01318 0.0462599 -1.06334e-20) (0.99651 0.0384909 -5.47396e-20) (0.981538 0.0314509 -5.4533e-20) (0.968057 0.0249609 -1.60739e-20) (0.955996 0.0189404 -6.87612e-20) (0.945293 0.013337 2.40372e-20) (0.93586 0.00809712 3.76514e-20) (0.927606 0.00319964 -5.21586e-20) (0.920359 -0.0012941 5.61012e-20) (0.914221 -0.00566355 -3.65474e-20) (0.909203 -0.00998257 3.2208e-20) (0.905037 -0.0140535 -9.83987e-21) (0.901631 -0.0178745 -5.63889e-20) (0.898931 -0.0215218 5.70803e-21) (0.896905 -0.0250207 8.751e-20) (0.8955 -0.0283772 -9.70014e-20) (0.894648 -0.0316103 4.44286e-20) (0.894292 -0.0347359 2.59853e-20) (0.894384 -0.0377625 -3.75066e-20) (0.894872 -0.0406953 -2.33784e-21) (0.895704 -0.0435381 3.60899e-20) (0.896832 -0.046292 -1.22115e-20) (0.898209 -0.0489551 -4.74632e-20) (0.899788 -0.051523 4.83984e-21) (0.901527 -0.0539889 8.31182e-20) (0.903383 -0.0563439 -4.91712e-20) (0.90532 -0.0585773 3.45218e-20) (0.9073 -0.0606776 -5.64079e-20) (0.909293 -0.0626323 -1.67588e-20) (0.911268 -0.0644289 6.55574e-20) (0.913202 -0.0660551 -5.97512e-20) (0.915072 -0.0674997 5.10172e-20) (0.916862 -0.0687528 -1.51336e-20) (0.918559 -0.0698064 -3.07412e-21) (0.920154 -0.0706546 -2.49459e-21) (0.92164 -0.0712944 -6.67853e-21) (0.923017 -0.0717254 1.43285e-20) (0.924284 -0.0719499 -1.75573e-20) (0.925446 -0.071973 2.02747e-20) (0.926509 -0.0718027 -1.3563e-20) (0.927481 -0.0714493 7.80083e-21) (0.92837 -0.0709253 -1.10231e-20) (0.929188 -0.0702454 8.44462e-21) (0.929944 -0.0694257 -4.37807e-21) (0.93065 -0.0684835 8.20261e-21) (0.931317 -0.067437 -4.27324e-21) (0.931954 -0.0663046 -3.35826e-21) (0.932571 -0.065105 -2.15235e-22) (0.933177 -0.0638564 8.29693e-21) (0.93378 -0.0625766 -2.50036e-21) (0.934386 -0.0612822 -3.62375e-21) (0.935002 -0.0599889 6.23616e-21) (0.93563 -0.0587106 -8.59201e-21) (0.936274 -0.0574606 6.32783e-21) (0.936936 -0.0562491 2.21767e-21) (0.937618 -0.0550866 -3.1956e-21) (0.938317 -0.0539792 8.50278e-22) (0.939036 -0.0529351 -1.00214e-21) (0.939768 -0.0519553 1.66071e-21) (0.940516 -0.0510469 -2.59231e-21) (0.94127 -0.0502051 2.51392e-21) (0.942036 -0.0494384 -1.41736e-21) (0.942798 -0.0487333 -4.38447e-22) (0.943566 -0.0481049 9.59382e-23) (0.94432 -0.0475258 8.88269e-22) (0.945074 -0.0470267 5.2995e-22) (0.945806 -0.0465557 -6.31189e-22) (0.946528 -0.0461751 1.72374e-23) (0.947228 -0.0457894 -1.0732e-22) (0.947898 -0.0455184 -2.03722e-22) (0.948566 -0.0451931 -1.45274e-22) (0.94916 -0.045027 6.76997e-23) (0.949816 -0.0447408 6.09618e-23) (0.950289 -0.0446736 -2.24995e-23) (0.950992 -0.044424 -1.22244e-23) (0.951266 -0.0444294 6.40438e-24) (0.952149 -0.044276 -4.92863e-24) (1.15563 0.0852149 -5.9295e-20) (1.13753 0.0752275 2.89806e-20) (1.11967 0.065496 1.86453e-20) (1.10259 0.0560373 4.18091e-20) (1.08689 0.0474229 -1.09489e-19) (1.07247 0.0395651 1.22432e-19) (1.0592 0.0322978 5.12647e-20) (1.04705 0.0255525 4.80545e-20) (1.03605 0.0192748 -1.17405e-20) (1.02614 0.0134032 1.87224e-20) (1.01728 0.00791577 9.65649e-21) (1.00938 0.00275156 -2.99985e-21) (1.0024 -0.00191673 -3.03769e-20) (0.996365 -0.00661951 -2.94717e-20) (0.991283 -0.0111352 4.37045e-20) (0.986923 -0.0153881 -7.75162e-20) (0.98321 -0.0194318 5.15153e-20) (0.980131 -0.0232846 -6.03839e-20) (0.97764 -0.0269554 6.44549e-20) (0.975672 -0.0304697 -3.78335e-20) (0.974175 -0.0338467 8.19931e-20) (0.973102 -0.0370967 -9.61325e-20) (0.972403 -0.0402269 1.20675e-20) (0.972031 -0.043243 5.36259e-20) (0.971937 -0.0461475 1.06763e-20) (0.972077 -0.0489403 2.36214e-20) (0.972408 -0.0516184 -4.496e-20) (0.97289 -0.0541767 4.54312e-20) (0.973483 -0.0566076 -7.61107e-20) (0.974153 -0.0589023 -1.55608e-20) (0.974867 -0.0610505 2.3854e-20) (0.975597 -0.0630415 1.77764e-20) (0.976318 -0.0648641 1.4558e-20) (0.977007 -0.0665077 -3.93319e-20) (0.977647 -0.0679625 -3.22234e-21) (0.978225 -0.0692199 1.56693e-20) (0.978731 -0.0702732 -9.8007e-21) (0.979158 -0.071118 3.49681e-20) (0.979504 -0.071752 -2.6631e-21) (0.979769 -0.0721757 -2.48855e-20) (0.979956 -0.0723922 -8.27483e-22) (0.98007 -0.0724074 2.30627e-20) (0.980119 -0.0722296 -8.70062e-21) (0.980111 -0.0718694 3.62204e-21) (0.980055 -0.0713398 -6.94097e-21) (0.979962 -0.0706555 -3.17272e-21) (0.979842 -0.0698327 -5.04732e-21) (0.979705 -0.0688887 1.62195e-20) (0.979561 -0.0678416 -4.08068e-21) (0.979418 -0.0667097 4.90972e-21) (0.979285 -0.0655116 -4.16299e-22) (0.979169 -0.0642652 -4.22499e-21) (0.979075 -0.0629881 3.70911e-21) (0.979009 -0.0616967 -5.50808e-21) (0.978975 -0.0604065 1.35482e-21) (0.978973 -0.0591313 1.83353e-21) (0.979008 -0.057884 -3.64864e-21) (0.979076 -0.0566747 1.41615e-22) (0.97918 -0.0555138 1.28193e-21) (0.979315 -0.054407 -1.54593e-21) (0.979483 -0.0533626 -7.12386e-22) (0.979674 -0.0523813 -9.27654e-22) (0.979894 -0.0514704 1.09688e-21) (0.980128 -0.0506246 1.14742e-22) (0.980384 -0.0498527 -1.25096e-21) (0.980643 -0.0491409 3.02452e-22) (0.98092 -0.0485048 1.82501e-21) (0.981185 -0.0479165 3.10299e-22) (0.981467 -0.047407 -1.36679e-21) (0.981722 -0.0469248 -1.36886e-23) (0.981994 -0.0465312 2.0955e-22) (0.982225 -0.0461335 1.2145e-22) (0.982476 -0.0458464 -2.07096e-22) (0.982675 -0.0455107 1.39455e-22) (0.982893 -0.045324 -2.07834e-23) (0.983063 -0.0450318 9.8937e-23) (0.983232 -0.0449391 6.76093e-23) (0.983391 -0.0446896 -5.97853e-23) (0.983487 -0.04467 1.53131e-23) (0.983688 -0.0445142 1.92667e-24) (1.21362 0.0947061 9.27675e-20) (1.20015 0.0852236 -3.58794e-20) (1.18609 0.0750223 3.51423e-21) (1.17215 0.0649336 -5.59394e-20) (1.15898 0.0556842 1.19173e-19) (1.14651 0.0471675 -5.42e-20) (1.13469 0.0392645 5.51311e-20) (1.12358 0.0319177 -4.42448e-20) (1.11325 0.0250722 -2.2993e-20) (1.10372 0.018669 7.94834e-21) (1.095 0.0126819 6.35579e-20) (1.08705 0.00708453 -6.76684e-20) (1.07978 0.00181852 2.5878e-20) (1.07327 -0.00294655 1.75967e-20) (1.06759 -0.0078514 -3.19084e-20) (1.06259 -0.0124886 2.10629e-20) (1.05814 -0.0168903 7.92398e-21) (1.05424 -0.0210643 -6.89204e-20) (1.05086 -0.0250219 2.73216e-20) (1.04794 -0.028796 3.88225e-21) (1.04543 -0.0324084 -1.89973e-20) (1.0433 -0.0358702 4.90188e-21) (1.04151 -0.0391903 -1.2569e-20) (1.04001 -0.0423751 3.62622e-20) (1.03877 -0.0454285 1.28201e-20) (1.03773 -0.0483517 1.94956e-20) (1.03688 -0.0511429 -1.84482e-20) (1.03616 -0.0537985 -3.72915e-20) (1.03554 -0.0563123 8.32518e-21) (1.035 -0.058677 3.81307e-22) (1.03451 -0.0608836 -6.15416e-22) (1.03404 -0.0629228 -6.23036e-21) (1.03357 -0.0647849 2.77118e-21) (1.03308 -0.0664606 -1.19197e-20) (1.03257 -0.0679412 -1.19604e-20) (1.03202 -0.0692195 1.85697e-20) (1.03141 -0.0702899 2.34404e-20) (1.03076 -0.0711488 -3.8221e-20) (1.03006 -0.0717949 3.215e-20) (1.02931 -0.0722291 -4.75993e-21) (1.02851 -0.0724553 -3.0801e-21) (1.02768 -0.0724796 -3.83709e-21) (1.02681 -0.0723106 2.67132e-20) (1.02592 -0.0719594 -1.45483e-20) (1.02502 -0.0714388 8.72459e-21) (1.02412 -0.0707637 -1.42385e-20) (1.02323 -0.0699504 1.12074e-20) (1.02234 -0.069016 -1.15473e-20) (1.02149 -0.0679786 7.5643e-21) (1.02066 -0.0668563 -1.27527e-21) (1.01987 -0.0656676 -6.99784e-21) (1.01913 -0.0644302 8.96358e-21) (1.01843 -0.0631617 -8.24955e-21) (1.01778 -0.0618781 2.09341e-21) (1.01719 -0.0605951 6.8352e-21) (1.01664 -0.059326 -8.86406e-23) (1.01615 -0.0580839 1.97251e-21) (1.01571 -0.0568786 -6.2263e-21) (1.01532 -0.0557204 6.56553e-21) (1.01497 -0.0546152 -5.14252e-21) (1.01467 -0.0535709 4.96754e-22) (1.0144 -0.0525885 8.99842e-22) (1.01416 -0.051675 -9.99163e-22) (1.01395 -0.0508253 -1.177e-22) (1.01378 -0.0500482 1.08977e-21) (1.01361 -0.04933 -1.89929e-21) (1.01347 -0.0486861 2.19409e-22) (1.01332 -0.0480892 1.11656e-21) (1.0132 -0.0475695 7.86747e-22) (1.01305 -0.0470776 -1.00475e-21) (1.01294 -0.046671 -3.88342e-22) (1.01277 -0.0462639 2.65428e-22) (1.01267 -0.0459607 1.56435e-24) (1.01247 -0.0456179 2.55037e-22) (1.01237 -0.045411 -4.03743e-22) (1.01212 -0.0451168 2.35278e-22) (1.01204 -0.0449993 -8.4399e-23) (1.01173 -0.0447536 4.23729e-24) (1.01168 -0.0447098 1.05622e-23) (1.01129 -0.0445538 2.4519e-24) (1.2519 0.101917 3.80783e-20) (1.24435 0.0938583 -1.18624e-19) (1.23486 0.0840841 8.68558e-20) (1.2248 0.0740912 4.54974e-20) (1.21485 0.0645987 -6.27987e-20) (1.20504 0.055631 7.20561e-21) (1.19537 0.0471931 4.69709e-20) (1.18597 0.0392754 -2.19079e-20) (1.17693 0.0318511 5.51893e-20) (1.16834 0.0248819 -5.85727e-20) (1.16025 0.0183441 6.0229e-20) (1.15268 0.0122237 -5.81724e-20) (1.14565 0.00648382 4.31352e-20) (1.13901 0.00126149 -6.80316e-20) (1.13296 -0.00387219 7.64955e-20) (1.12756 -0.00879142 -7.46563e-20) (1.12259 -0.0135627 -6.53225e-21) (1.11807 -0.0180925 4.63863e-20) (1.11397 -0.0223731 1.80431e-20) (1.11025 -0.0264386 -7.23692e-20) (1.10688 -0.0303118 8.58181e-21) (1.10383 -0.0340067 -6.97753e-21) (1.10107 -0.0375345 3.60936e-20) (1.09857 -0.0409043 1.71679e-20) (1.09629 -0.0441218 -4.30154e-20) (1.0942 -0.0471897 3.84408e-20) (1.09227 -0.0501083 -4.45779e-20) (1.09047 -0.0528752 2.06299e-20) (1.08876 -0.0554862 -7.93279e-21) (1.08713 -0.0579351 1.20287e-20) (1.08556 -0.0602146 -3.73469e-21) (1.08402 -0.0623168 1.39265e-20) (1.08249 -0.0642334 3.56526e-20) (1.08096 -0.0659562 -5.83751e-20) (1.07943 -0.0674779 -1.28351e-20) (1.07788 -0.0687922 -4.85722e-22) (1.07631 -0.0698945 4.00658e-20) (1.07472 -0.0707821 -4.25597e-20) (1.07311 -0.0714544 6.49892e-20) (1.07148 -0.071913 -2.17851e-20) (1.06984 -0.072162 -2.59308e-21) (1.06819 -0.0722081 -1.59268e-21) (1.06655 -0.0720601 2.09271e-21) (1.06492 -0.0717291 -6.94156e-21) (1.0633 -0.0712283 -1.98888e-22) (1.06171 -0.0705725 4.75498e-22) (1.06016 -0.0697778 -5.04054e-21) (1.05866 -0.0688613 -2.20587e-21) (1.0572 -0.067841 8.00466e-21) (1.0558 -0.0667351 2.37301e-21) (1.05447 -0.0655617 -3.41858e-21) (1.05319 -0.0643387 2.44725e-23) (1.05199 -0.0630833 3.41751e-21) (1.05086 -0.0618117 -7.30768e-21) (1.04979 -0.0605393 -6.97014e-22) (1.04879 -0.0592795 -8.30619e-23) (1.04787 -0.0580451 2.40515e-21) (1.047 -0.0568462 3.8696e-21) (1.0462 -0.0556929 -4.97564e-21) (1.04545 -0.0545911 3.69752e-21) (1.04475 -0.0535487 4.64074e-22) (1.0441 -0.0525667 -3.36126e-22) (1.0435 -0.0516523 -1.20083e-21) (1.04292 -0.0508005 1.95828e-21) (1.04238 -0.0500198 -1.4644e-21) (1.04186 -0.0492972 4.036e-22) (1.04137 -0.0486473 -3.72155e-23) (1.04088 -0.0480446 -1.14735e-22) (1.04043 -0.0475166 -1.91868e-22) (1.03994 -0.0470182 3.58923e-22) (1.03952 -0.0466011 -3.083e-22) (1.03902 -0.0461886 1.95634e-22) (1.03863 -0.045872 -1.45746e-22) (1.03809 -0.0455269 9.58989e-23) (1.03774 -0.0453027 2.08751e-22) (1.03713 -0.0450118 -6.00392e-23) (1.03685 -0.0448728 2.5932e-23) (1.03614 -0.0446364 -2.65383e-23) (1.03598 -0.0445714 1.31733e-23) (1.0351 -0.0444203 -1.54554e-24) (1.29264 0.111809 0) (1.28795 0.102046 0) (1.28115 0.0926267 0) (1.27434 0.0830602 0) (1.26786 0.0735676 0) (1.26144 0.064468 0) (1.25489 0.0559065 0) (1.24822 0.0478494 0) (1.2415 0.0402358 0) (1.23485 0.0330073 0) (1.22833 0.026165 0) (1.222 0.0196624 0) (1.21588 0.0135464 0) (1.20998 0.00766649 0) (1.20429 0.00231705 0) (1.19883 -0.00285158 0) (1.19372 -0.00777394 0) (1.18896 -0.012429 0) (1.18449 -0.0168591 0) (1.18028 -0.0210874 -1.34256e-28) (1.1763 -0.0251216 1.34259e-28) (1.17254 -0.0289691 0) (1.16898 -0.0326386 0) (1.1656 -0.0361373 0) (1.16238 -0.0394702 0) (1.15931 -0.0426403 0) (1.15635 -0.0456487 0) (1.15348 -0.0484944 0) (1.1507 -0.0511748 0) (1.14798 -0.0536858 0) (1.1453 -0.0560223 0) (1.14266 -0.0581785 0) (1.14003 -0.0601482 0) (1.13742 -0.0619253 0) (1.13482 -0.0635045 0) (1.13223 -0.0648812 0) (1.12963 -0.0660521 0) (1.12704 -0.0670156 0) (1.12446 -0.0677719 0) (1.12189 -0.068323 0) (1.11934 -0.0686731 0) (1.11681 -0.0688287 0) (1.11432 -0.0687979 0) (1.11187 -0.0685913 0) (1.10947 -0.0682209 0) (1.10713 -0.0677002 0) (1.10486 -0.067044 0) (1.10265 -0.0662683 0) (1.10053 -0.0653895 0) (1.09848 -0.0644245 0) (1.09652 -0.0633904 0) (1.09465 -0.0623037 0) (1.09287 -0.0611807 0) (1.09117 -0.0600365 0) (1.08957 -0.0588858 0) (1.08804 -0.0577414 0) (1.0866 -0.0566158 0) (1.08523 -0.0555184 0) (1.08394 -0.0544593 0) (1.08271 -0.0534443 -2.31279e-29) (1.08155 -0.0524815 2.31278e-29) (1.08043 -0.0515719 0) (1.07937 -0.0507228 0) (1.07834 -0.0499299 0) (1.07737 -0.0492017 0) (1.0764 -0.0485264 0) (1.07549 -0.0479175 0) (1.07456 -0.0473527 0) (1.0737 -0.0468561 0) (1.07278 -0.046389 0) (1.07196 -0.045995 0) (1.07103 -0.0456102 0) (1.07027 -0.0453091 0) (1.06929 -0.0449917 0) (1.06861 -0.0447756 0) (1.06755 -0.0445154 0) (1.067 -0.0443784 0) (1.06577 -0.044176 0) (1.06545 -0.0441116 0) (1.06391 -0.0439921 0) (1.29769 0.113073 0) (1.30034 0.102985 0) (1.29892 0.093889 0) (1.2966 0.0848985 0) (1.2944 0.0759238 0) (1.29218 0.0671982 0) (1.28959 0.0588842 0) (1.28652 0.0509881 0) (1.28305 0.0434642 0) (1.2793 0.0362656 0) (1.27535 0.0293831 0) (1.27127 0.0228029 0) (1.2671 0.016533 0) (1.26286 0.0105679 0) (1.25862 0.00492841 0) (1.25448 -0.000341727 0) (1.25046 -0.00527859 0) (1.24646 -0.0099835 0) (1.24247 -0.0144855 0) (1.23853 -0.0187867 -1.36819e-28) (1.23466 -0.0228907 1.36819e-28) (1.23086 -0.0268049 0) (1.22713 -0.0305374 0) (1.22346 -0.0340939 0) (1.21984 -0.0374779 0) (1.21627 -0.040691 0) (1.21274 -0.0437333 0) (1.20923 -0.0466034 0) (1.20575 -0.0492985 0) (1.20229 -0.0518151 0) (1.19883 -0.0541487 0) (1.19538 -0.0562945 0) (1.19193 -0.0582477 0) (1.18849 -0.0600039 0) (1.18505 -0.0615591 0) (1.18161 -0.0629107 0) (1.17818 -0.0640569 0) (1.17477 -0.0649979 0) (1.17137 -0.0657351 0) (1.16801 -0.066272 0) (1.16468 -0.066614 0) (1.1614 -0.0667682 0) (1.15818 -0.0667435 0) (1.15502 -0.0665507 0) (1.15193 -0.0662019 0) (1.14892 -0.0657103 0) (1.146 -0.0650906 0) (1.14318 -0.064358 0) (1.14045 -0.0635283 0) (1.13783 -0.0626174 0) (1.13531 -0.0616413 0) (1.13289 -0.0606155 0) (1.13059 -0.0595553 0) (1.12838 -0.0584747 0) (1.12628 -0.0573875 0) (1.12427 -0.0563053 0) (1.12235 -0.0552399 0) (1.12053 -0.0541999 0) (1.11878 -0.0531949 0) (1.11711 -0.0522299 -2.47699e-29) (1.11551 -0.0513129 2.47699e-29) (1.11397 -0.0504445 0) (1.11249 -0.0496321 0) (1.11105 -0.0488713 0) (1.10967 -0.0481705 0) (1.10829 -0.0475188 0) (1.10699 -0.0469289 0) (1.10566 -0.0463806 0) (1.10443 -0.0458958 0) (1.10312 -0.0454403 0) (1.10194 -0.0450521 0) (1.10062 -0.0446766 0) (1.09953 -0.0443766 0) (1.09815 -0.0440688 0) (1.09717 -0.0438505 0) (1.09568 -0.043602 0) (1.09489 -0.0434612 0) (1.09317 -0.0432725 0) (1.09272 -0.0432056 0) (1.09058 -0.0430962 0) (1.29326 0.111579 0) (1.29839 0.101676 0) (1.29938 0.0926818 0) (1.29928 0.084142 0) (1.29934 0.0758088 0) (1.29951 0.0676936 0) (1.29937 0.0598842 0) (1.29869 0.0524124 0) (1.29749 0.0452648 0) (1.29589 0.0384131 0) (1.29398 0.031847 0) (1.29181 0.0255646 0) (1.28942 0.0195781 0) (1.28685 0.0138963 0) (1.28413 0.00851367 0) (1.28128 0.00340028 0) (1.27828 -0.00155338 0) (1.27518 -0.0063309 0) (1.27202 -0.0109033 0) (1.26881 -0.0152646 -1.28143e-28) (1.26554 -0.0194222 1.28143e-28) (1.26222 -0.023385 0) (1.25886 -0.02716 0) (1.25546 -0.0307522 0) (1.25201 -0.0341647 0) (1.24853 -0.0373993 0) (1.24501 -0.0404567 0) (1.24145 -0.0433361 0) (1.23786 -0.0460359 0) (1.23423 -0.0485533 0) (1.23057 -0.0508854 0) (1.22687 -0.0530287 0) (1.22315 -0.0549798 0) (1.2194 -0.0567357 0) (1.21564 -0.0582939 0) (1.21187 -0.059653 0) (1.2081 -0.0608124 0) (1.20434 -0.0617733 0) (1.20059 -0.0625379 0) (1.19687 -0.0631102 0) (1.1932 -0.0634959 0) (1.18957 -0.0637021 0) (1.186 -0.0637376 0) (1.18249 -0.0636128 0) (1.17907 -0.063339 0) (1.17574 -0.0629288 0) (1.1725 -0.062396 0) (1.16935 -0.0617545 0) (1.16632 -0.0610192 0) (1.16339 -0.0602048 0) (1.16057 -0.0593261 0) (1.15786 -0.0583975 4.02994e-29) (1.15526 -0.0574332 -4.02994e-29) (1.15277 -0.0564463 0) (1.15039 -0.0554494 0) (1.1481 -0.0544536 0) (1.14592 -0.0534698 0) (1.14382 -0.0525062 0) (1.14182 -0.0515719 0) (1.13988 -0.0506718 -2.43434e-29) (1.13803 -0.0498135 2.43434e-29) (1.13622 -0.0489979 0) (1.1345 -0.0482321 0) (1.1328 -0.0475124 0) (1.13118 -0.0468469 0) (1.12956 -0.046226 0) (1.12802 -0.0456615 0) (1.12645 -0.0451357 0) (1.12498 -0.0446681 0) (1.12343 -0.0442292 0) (1.12204 -0.0438519 0) (1.12048 -0.0434896 0) (1.11918 -0.0431958 0) (1.11755 -0.0429003 0) (1.1164 -0.0426849 0) (1.11464 -0.0424496 0) (1.11371 -0.0423097 0) (1.11169 -0.0421354 0) (1.11115 -0.0420685 0) (1.10864 -0.0419718 0) (1.28612 0.109135 0) (1.29213 0.0996097 0) (1.29431 0.0908072 0) (1.29526 0.0826097 0) (1.29634 0.0747566 0) (1.29758 0.0671302 0) (1.29861 0.0597475 0) (1.29916 0.0526442 0) (1.29921 0.0458303 0) (1.29885 0.0392929 0) (1.29815 0.0330204 0) (1.29717 0.027005 0) (1.29594 0.0212441 0) (1.29446 0.015728 0) (1.29275 0.0104369 0) (1.29083 0.00534943 0) (1.28874 0.000470645 0) (1.2865 -0.00417106 0) (1.28412 -0.00859642 0) (1.28159 -0.0128262 0) (1.27894 -0.0168704 0) (1.27616 -0.0207339 0) (1.27328 -0.02442 0) (1.27029 -0.0279309 0) (1.26721 -0.0312685 0) (1.26403 -0.0344334 0) (1.26076 -0.0374256 0) (1.25741 -0.0402439 0) (1.25399 -0.0428866 0) (1.25049 -0.0453515 0) (1.24692 -0.0476359 0) (1.24329 -0.0497371 0) (1.23961 -0.0516524 0) (1.23589 -0.0533796 0) (1.23213 -0.054917 0) (1.22834 -0.0562638 0) (1.22454 -0.0574203 0) (1.22073 -0.0583878 0) (1.21693 -0.059169 0) (1.21316 -0.0597682 0) (1.20941 -0.0601907 0) (1.20571 -0.0604436 0) (1.20206 -0.0605352 0) (1.19847 -0.0604751 0) (1.19496 -0.0602739 0) (1.19153 -0.0599435 0) (1.18819 -0.0594962 0) (1.18495 -0.0589452 0) (1.18181 -0.0583039 0) (1.17877 -0.0575859 0) (1.17584 -0.0568048 0) (1.17302 -0.055974 -2.30471e-28) (1.17031 -0.0551063 2.30471e-28) (1.16769 -0.0542139 0) (1.16519 -0.0533086 0) (1.16278 -0.0524005 0) (1.16047 -0.0514999 0) (1.15824 -0.0506146 0) (1.1561 -0.049753 0) (1.15403 -0.0489199 0) (1.15205 -0.0481226 0) (1.15011 -0.0473623 0) (1.14825 -0.0466457 0) (1.14642 -0.04597 0) (1.14466 -0.0453427 0) (1.14291 -0.0447558 0) (1.14124 -0.0442199 0) (1.13954 -0.0437198 0) (1.13795 -0.0432728 0) (1.13626 -0.0428537 0) (1.13476 -0.0424909 0) (1.13305 -0.0421448 0) (1.13165 -0.041861 0) (1.12988 -0.0415801 0) (1.12863 -0.0413715 0) (1.12671 -0.0411509 0) (1.12571 -0.0410151 0) (1.12351 -0.0408563 0) (1.12293 -0.0407914 0) (1.12019 -0.040709 0) (1.27802 0.105807 0) (1.28447 0.0968526 0) (1.28739 0.0884175 0) (1.28902 0.0805722 0) (1.29064 0.0731187 0) (1.29239 0.0659027 0) (1.29397 0.0588954 0) (1.29514 0.052125 0) (1.29583 0.0456137 0) (1.29612 0.0393604 0) (1.29608 0.0333547 0) (1.29576 0.0275846 0) (1.29518 0.0220426 0) (1.29434 0.0167192 0) (1.29326 0.0116128 0) (1.29196 0.00672289 0) (1.29047 0.00205345 0) (1.28879 -0.00242033 0) (1.28694 -0.00670645 0) (1.28492 -0.0108097 0) (1.28273 -0.0147343 0) (1.2804 -0.0184834 0) (1.27792 -0.0220599 0) (1.27531 -0.025466 0) (1.27258 -0.0287033 0) (1.26972 -0.0317725 0) (1.26675 -0.0346736 0) (1.26367 -0.0374059 0) (1.26049 -0.039968 0) (1.25721 -0.0423582 0) (1.25385 -0.0445745 0) (1.25041 -0.0466147 0) (1.2469 -0.048477 0) (1.24333 -0.0501598 0) (1.23971 -0.0516621 0) (1.23605 -0.0529837 0) (1.23237 -0.0541251 0) (1.22867 -0.0550882 0) (1.22497 -0.0558758 0) (1.22128 -0.056492 0) (1.21762 -0.0569422 0) (1.21398 -0.0572329 0) (1.2104 -0.057372 0) (1.20686 -0.0573683 0) (1.2034 -0.0572317 0) (1.20001 -0.0569729 0) (1.1967 -0.0566034 0) (1.19347 -0.0561352 0) (1.19034 -0.0555805 0) (1.18731 -0.0549518 0) (1.18438 -0.0542615 0) (1.18154 -0.0535217 8.07604e-12) (1.17881 -0.0527445 -8.07604e-12) (1.17617 -0.0519408 0) (1.17363 -0.0511217 0) (1.17119 -0.0502964 0) (1.16883 -0.0494747 0) (1.16656 -0.0486635 0) (1.16437 -0.0478712 0) (1.16225 -0.0471022 -1.44859e-28) (1.1602 -0.0463634 1.44859e-28) (1.15821 -0.0456565 0) (1.15629 -0.0449876 0) (1.15439 -0.0443547 0) (1.15257 -0.0437649 0) (1.15075 -0.0432114 0) (1.14902 -0.0427039 0) (1.14725 -0.0422296 -2.67026e-12) (1.1456 -0.0418036 2.67026e-12) (1.14384 -0.0414044 0) (1.14228 -0.0410569 0) (1.1405 -0.0407269 0) (1.13905 -0.040454 0) (1.1372 -0.0401874 0) (1.13591 -0.0399864 0) (1.1339 -0.0397794 0) (1.13287 -0.0396488 0) (1.13056 -0.0395032 0) (1.12997 -0.0394412 0) (1.12709 -0.0393696 0) (1.26977 0.101937 0) (1.27641 0.0936139 0) (1.27985 0.0856454 0) (1.282 0.0781866 0) (1.284 0.0711108 0) (1.28607 0.0642752 0) (1.28797 0.0576296 0) (1.28949 0.0511893 0) (1.29056 0.0449792 0) (1.29123 0.0390059 0) (1.29158 0.033263 0) (1.29164 0.0277394 0) (1.29144 0.0224284 0) (1.29099 0.0173257 0) (1.2903 0.0124316 0) (1.28938 0.00774273 0) (1.28826 0.00325249 0) (1.28695 -0.0010561 0) (1.28544 -0.00518845 0) (1.28375 -0.00914584 0) (1.28189 -0.0129304 0) (1.27987 -0.0165453 0) (1.2777 -0.0199933 0) (1.27538 -0.0232766 0) (1.27292 -0.0263969 0) (1.27033 -0.0293549 0) (1.26761 -0.0321506 0) (1.26478 -0.0347835 0) (1.26183 -0.0372528 0) (1.25877 -0.039557 0) (1.25562 -0.0416947 0) (1.25239 -0.0436644 0) (1.24907 -0.0454648 0) (1.24569 -0.0470949 0) (1.24226 -0.0485543 0) (1.23877 -0.049843 0) (1.23526 -0.0509621 0) (1.23172 -0.0519137 0) (1.22817 -0.0527005 0) (1.22463 -0.0533266 0) (1.22109 -0.0537971 0) (1.21759 -0.0541183 0) (1.21412 -0.0542972 0) (1.2107 -0.0543422 0) (1.20733 -0.0542624 0) (1.20403 -0.0540674 0) (1.2008 -0.0537677 0) (1.19765 -0.0533743 0) (1.19459 -0.0528983 0) (1.19161 -0.0523511 0) (1.18872 -0.0517441 0) (1.18592 -0.0510882 8.14788e-12) (1.18321 -0.0503945 -8.14788e-12) (1.1806 -0.049673 0) (1.17807 -0.048934 0) (1.17563 -0.048186 0) (1.17327 -0.0474379 0) (1.17099 -0.0466965 0) (1.16879 -0.0459693 0) (1.16665 -0.045261 -1.46501e-28) (1.16459 -0.0445778 1.46501e-28) (1.16257 -0.0439217 0) (1.16062 -0.0432985 0) (1.1587 -0.0427069 0) (1.15685 -0.0421535 0) (1.155 -0.0416325 0) (1.15324 -0.0411531 0) (1.15143 -0.040704 -2.74063e-12) (1.14975 -0.0402991 2.74063e-12) (1.14796 -0.0399195 0) (1.14637 -0.0395875 0) (1.14456 -0.0392733 0) (1.14308 -0.0390118 0) (1.14119 -0.0387585 0) (1.13987 -0.0385657 0) (1.13782 -0.0383708 0) (1.13677 -0.0382457 0) (1.13441 -0.0381107 0) (1.13381 -0.0380517 0) (1.13086 -0.0379875 0) (1.26175 0.0977729 0) (1.26844 0.0900735 0) (1.27226 0.0826073 0) (1.27482 0.0755618 -3.87609e-28) (1.27714 0.0688641 3.87609e-28) (1.27945 0.0623982 0) (1.28158 0.0561087 0) (1.28333 0.0500002 0) (1.28466 0.0440945 0) (1.2856 0.038403 0) (1.28621 0.0329236 0) (1.28654 0.0276488 0) (1.2866 0.022573 0) (1.28641 0.0176931 0) (1.28599 0.0130071 0) (1.28533 0.00851019 0) (1.28446 0.00419537 0) (1.28338 5.4556e-05 0) (1.28212 -0.00391582 0) (1.28067 -0.00771794 0) (1.27904 -0.0113541 0) (1.27725 -0.0148271 0) (1.2753 -0.0181396 0) (1.2732 -0.0212938 0) (1.27096 -0.0242911 0) (1.26857 -0.0271321 0) (1.26606 -0.0298171 0) (1.26342 -0.0323457 0) (1.26067 -0.0347174 0) (1.25781 -0.0369313 0) (1.25485 -0.0389863 0) (1.2518 -0.0408814 0) (1.24867 -0.042616 0) (1.24547 -0.0441894 0) (1.24221 -0.0456016 0) (1.2389 -0.0468532 0) (1.23555 -0.0479454 0) (1.23218 -0.0488803 0) (1.22879 -0.049661 0) (1.2254 -0.0502912 0) (1.22201 -0.0507759 0) (1.21864 -0.0511208 0) (1.2153 -0.0513327 0) (1.21201 -0.051419 0) (1.20875 -0.0513881 0) (1.20556 -0.0512489 0) (1.20243 -0.0510109 0) (1.19936 -0.0506841 0) (1.19637 -0.0502787 0) (1.19346 -0.0498049 0) (1.19063 -0.0492732 0) (1.18788 -0.0486935 0) (1.18522 -0.048076 0) (1.18264 -0.0474299 0) (1.18014 -0.0467645 0) (1.17772 -0.0460878 0) (1.17537 -0.045408 0) (1.1731 -0.0447315 0) (1.1709 -0.0440653 0) (1.16876 -0.0434139 2.63477e-29) (1.16669 -0.0427832 -2.63477e-29) (1.16466 -0.0421753 0) (1.16271 -0.0415958 0) (1.16077 -0.0410438 0) (1.15891 -0.0405255 0) (1.15704 -0.0400361 0) (1.15526 -0.0395842 0) (1.15344 -0.0391599 0) (1.15174 -0.038776 0) (1.14993 -0.0384159 0) (1.14832 -0.0380996 0) (1.14649 -0.0378008 0) (1.14499 -0.037551 0) (1.14308 -0.0373104 0) (1.14176 -0.037126 0) (1.13968 -0.0369418 0) (1.13862 -0.0368223 0) (1.13623 -0.036696 0) (1.13562 -0.0366398 0) (1.13263 -0.0365805 0) (1.25424 0.0934061 0) (1.26087 0.0863135 0) (1.26495 0.0793614 0) (1.26783 0.0727464 8.41707e-29) (1.27042 0.0664335 -8.41707e-29) (1.27292 0.0603337 0) (1.27522 0.0543957 0) (1.27716 0.0486179 0) (1.27869 0.0430182 0) (1.27984 0.0376099 0) (1.28066 0.0323952 0) (1.28119 0.0273698 0) (1.28146 0.0225293 0) (1.28147 0.0178704 0) (1.28124 0.0133903 0) (1.28078 0.00908557 0) (1.2801 0.00495168 0) (1.27921 0.000985004 0) (1.27813 -0.00281855 0) (1.27687 -0.00646156 -1.18461e-28) (1.27543 -0.00994625 1.18461e-28) (1.27381 -0.013275 0) (1.27204 -0.01645 0) (1.27011 -0.0194732 0) (1.26804 -0.0223457 0) (1.26583 -0.0250682 0) (1.26349 -0.0276409 0) (1.26102 -0.030064 0) (1.25843 -0.0323369 0) (1.25574 -0.0344592 0) (1.25295 -0.0364303 0) (1.25006 -0.0382496 0) (1.24709 -0.0399167 0) (1.24405 -0.0414316 0) (1.24095 -0.0427946 0) (1.2378 -0.0440065 0) (1.23461 -0.0450687 0) (1.23138 -0.0459836 0) (1.22814 -0.046754 0) (1.22489 -0.0473837 0) (1.22164 -0.0478773 0) (1.2184 -0.0482402 0) (1.21519 -0.0484787 0) (1.21201 -0.0485995 -6.35252e-29) (1.20887 -0.0486105 6.35252e-29) (1.20577 -0.0485197 0) (1.20273 -0.0483358 0) (1.19976 -0.0480679 0) (1.19684 -0.0477252 0) (1.194 -0.0473171 0) (1.19123 -0.0468531 0) (1.18853 -0.0463423 0) (1.18591 -0.0457939 0) (1.18337 -0.0452165 0) (1.1809 -0.0446185 0) (1.1785 -0.0440073 0) (1.17617 -0.0433905 0) (1.17391 -0.0427742 0) (1.17172 -0.0421649 0) (1.16958 -0.0415667 2.7896e-29) (1.1675 -0.0409855 -2.7896e-29) (1.16547 -0.0404232 0) (1.1635 -0.0398854 0) (1.16156 -0.0393713 0) (1.15968 -0.0388869 0) (1.1578 -0.0384283 0) (1.15601 -0.0380033 0) (1.15417 -0.0376034 -2.86742e-12) (1.15246 -0.0372404 2.86742e-12) (1.15064 -0.0368995 0) (1.14902 -0.0365991 0) (1.14717 -0.0363156 0) (1.14566 -0.0360776 0) (1.14373 -0.0358492 0) (1.1424 -0.0356734 0) (1.1403 -0.0354989 0) (1.13923 -0.035385 0) (1.13681 -0.0352659 0) (1.1362 -0.0352124 0) (1.13318 -0.0351562 0) (1.24734 0.0889251 0) (1.25386 0.0824106 0) (1.25811 0.075966 0) (1.26124 0.0697855 0) (1.26403 0.0638596 0) (1.2667 0.0581219 0) (1.26914 0.0525292 0) (1.27123 0.0470779 0) (1.27292 0.0417829 0) (1.27424 0.0366581 0) (1.27523 0.0317084 0) (1.27593 0.0269323 0) (1.27636 0.0223267 0) (1.27654 0.0178886 0) (1.27648 0.0136161 0) (1.27618 0.0095071 0) (1.27566 0.00555906 0) (1.27493 0.00176949 0) (1.27401 -0.00186508 0) (1.2729 -0.00534719 -1.1105e-28) (1.27161 -0.00867889 1.1105e-28) (1.27015 -0.0118621 0) (1.26852 -0.0148985 0) (1.26675 -0.0177895 0) (1.26482 -0.0205364 0) (1.26276 -0.0231397 0) (1.26056 -0.0255999 0) (1.25824 -0.027917 0) (1.2558 -0.0300909 0) (1.25325 -0.0321215 0) (1.2506 -0.0340083 0) (1.24786 -0.0357514 0) (1.24504 -0.0373505 0) (1.24214 -0.038806 0) (1.23918 -0.0401184 0) (1.23617 -0.0412888 0) (1.23312 -0.0423189 0) (1.23003 -0.0432109 0) (1.22692 -0.0439677 0) (1.2238 -0.044593 0) (1.22067 -0.045091 0) (1.21756 -0.0454669 0) (1.21446 -0.0457264 0) (1.21138 -0.0458759 -6.07546e-29) (1.20834 -0.0459223 6.07546e-29) (1.20534 -0.0458733 0) (1.20239 -0.0457366 0) (1.19949 -0.0455204 0) (1.19665 -0.0452334 0) (1.19387 -0.0448838 0) (1.19115 -0.0444805 0) (1.1885 -0.0440318 4.23881e-29) (1.18592 -0.043546 -4.23881e-29) (1.18341 -0.043031 0) (1.18096 -0.0424945 0) (1.17859 -0.0419435 0) (1.17627 -0.0413849 0) (1.17402 -0.0408243 0) (1.17183 -0.0402679 0) (1.16969 -0.0397196 0) (1.16762 -0.0391849 0) (1.16558 -0.0386658 0) (1.16361 -0.0381676 0) (1.16165 -0.0376898 0) (1.15976 -0.0372383 0) (1.15787 -0.0368095 0) (1.15607 -0.0364109 0) (1.15421 -0.036035 -2.92406e-12) (1.15249 -0.0356928 2.92406e-12) (1.15065 -0.0353709 0) (1.14901 -0.0350865 0) (1.14715 -0.0348181 0) (1.14563 -0.0345921 0) (1.14368 -0.0343757 0) (1.14233 -0.0342084 0) (1.14021 -0.0340432 0) (1.13914 -0.0339348 0) (1.13669 -0.033822 0) (1.13608 -0.0337711 0) (1.13302 -0.0337169 0) (1.24104 0.0843986 0) (1.24741 0.078425 0) (1.25178 0.0724699 0) (1.2551 0.0667176 0) (1.25806 0.061175 0) (1.26086 0.0557935 0) (1.26341 0.0505391 0) (1.26562 0.0454085 0) (1.26745 0.040415 0) (1.26891 0.0355723 0) (1.27005 0.0308869 0) (1.27089 0.0263596 0) (1.27147 0.0219886 0) (1.27179 0.0177721 0) (1.27187 0.013709 0) (1.27172 0.00979821 0) (1.27134 0.00603834 0) (1.27075 0.00242738 0) (1.26997 -0.00103714 0) (1.26899 -0.00435735 0) (1.26784 -0.00753499 0) (1.26651 -0.0105715 0) (1.26502 -0.0134684 0) (1.26337 -0.0162267 0) (1.26158 -0.0188474 0) (1.25964 -0.0213313 0) (1.25758 -0.0236786 0) (1.25539 -0.0258898 0) (1.25308 -0.0279648 0) (1.25066 -0.0299036 0) (1.24814 -0.0317063 0) (1.24553 -0.0333728 0) (1.24284 -0.0349036 0) (1.24008 -0.036299 0) (1.23725 -0.0375598 0) (1.23436 -0.0386873 0) (1.23143 -0.0396833 0) (1.22847 -0.04055 0) (1.22548 -0.0412903 0) (1.22247 -0.0419076 0) (1.21946 -0.0424061 0) (1.21645 -0.0427905 0) (1.21345 -0.0430661 0) (1.21048 -0.0432388 0) (1.20753 -0.043315 0) (1.20461 -0.0433016 0) (1.20174 -0.0432058 0) (1.19891 -0.043035 0) (1.19613 -0.042797 0) (1.19341 -0.0424996 0) (1.19074 -0.0421506 0) (1.18814 -0.0417577 -2.40967e-28) (1.18559 -0.0413285 2.40967e-28) (1.18311 -0.0408701 0) (1.18069 -0.0403898 0) (1.17832 -0.0398939 0) (1.17602 -0.0393889 0) (1.17378 -0.0388798 0) (1.17159 -0.0383726 0) (1.16945 -0.0378709 1.55339e-28) (1.16738 -0.03738 -1.55339e-28) (1.16533 -0.0369018 0) (1.16335 -0.0364413 0) (1.16138 -0.0359983 0) (1.15948 -0.0355784 0) (1.15757 -0.0351785 0) (1.15575 -0.0348057 0) (1.15388 -0.0344534 -2.97644e-12) (1.15215 -0.0341318 2.97644e-12) (1.15029 -0.0338288 0) (1.14864 -0.0335605 0) (1.14675 -0.033307 0) (1.14522 -0.0330932 0) (1.14325 -0.0328885 0) (1.14189 -0.0327299 0) (1.13975 -0.0325735 -9.51416e-13) (1.13867 -0.0324706 9.51416e-13) (1.1362 -0.0323636 0) (1.13558 -0.0323151 0) (1.13249 -0.0322625 0) (1.23527 0.0798597 0) (1.24147 0.0743908 0) (1.2459 0.0689029 0) (1.24937 0.063567 0) (1.25248 0.0584006 0) (1.25538 0.0533687 0) (1.25804 0.0484455 0) (1.26035 0.0436296 0) (1.26229 0.0389335 0) (1.26387 0.0343705 0) (1.26514 0.0299481 0) (1.26612 0.0256686 0) (1.26683 0.0215319 0) (1.26728 0.0175372 0) (1.26748 0.0136844 0) (1.26746 0.00997305 0) (1.26721 0.00640235 0) (1.26674 0.002971 0) (1.26608 -0.000322558 0) (1.26523 -0.00348003 0) (1.2642 -0.00650275 0) (1.263 -0.00939184 0) (1.26163 -0.0121484 0) (1.2601 -0.0147734 0) (1.25843 -0.0172676 0) (1.25661 -0.0196318 0) (1.25467 -0.0218663 0) (1.25259 -0.0239715 0) (1.25041 -0.0259476 0) (1.24811 -0.0277948 0) (1.24571 -0.0295132 0) (1.24322 -0.0311031 0) (1.24065 -0.0325651 0) (1.238 -0.0338997 0) (1.23529 -0.035108 0) (1.23252 -0.0361913 0) (1.2297 -0.0371514 0) (1.22685 -0.0379906 0) (1.22397 -0.0387116 0) (1.22107 -0.0393178 0) (1.21816 -0.0398131 0) (1.21525 -0.0402019 0) (1.21235 -0.0404891 0) (1.20946 -0.0406801 0) (1.20659 -0.0407808 0) (1.20375 -0.0407976 0) (1.20095 -0.0407369 0) (1.19819 -0.0406057 0) (1.19547 -0.0404109 0) (1.19279 -0.0401596 0) (1.19017 -0.0398591 0) (1.18761 -0.0395162 0) (1.18509 -0.039138 0) (1.18264 -0.0387311 0) (1.18024 -0.038302 0) (1.17789 -0.0378565 0) (1.1756 -0.0374008 0) (1.17336 -0.0369394 0) (1.17118 -0.0364779 0) (1.16904 -0.0360198 0) (1.16696 -0.03557 0) (1.1649 -0.0351304 0) (1.16291 -0.0347057 0) (1.16093 -0.034296 0) (1.15902 -0.0339065 0) (1.15709 -0.0335346 0) (1.15526 -0.033187 0) (1.15337 -0.0328577 -3.02475e-12) (1.15162 -0.0325564 3.02475e-12) (1.14974 -0.0322721 0) (1.14808 -0.0320198 0) (1.14618 -0.0317812 0) (1.14463 -0.0315796 0) (1.14264 -0.0313865 0) (1.14127 -0.0312366 0) (1.13911 -0.0310889 -9.69571e-13) (1.13801 -0.0309914 9.69571e-13) (1.13552 -0.0308898 0) (1.13488 -0.0308438 0) (1.13176 -0.0307925 0) (1.22994 0.0753313 0) (1.23597 0.0703322 0) (1.24044 0.0652868 0) (1.24403 0.0603524 0) (1.24725 0.0555523 0) (1.25025 0.0508622 0) (1.25298 0.046263 0) (1.25539 0.0417557 0) (1.25743 0.0373523 0) (1.25912 0.0330657 0) (1.2605 0.0289042 0) (1.2616 0.0248713 0) (1.26242 0.0209682 0) (1.26299 0.0171952 0) (1.26331 0.0135528 0) (1.2634 0.0100412 0) (1.26327 0.00666025 0) (1.26293 0.00340926 0) (1.26238 0.000287373 0) (1.26165 -0.0027066 5.88688e-28) (1.26073 -0.00557361 -5.88688e-28) (1.25964 -0.00831454 0) (1.25838 -0.0109302 0) (1.25697 -0.0134215 0) (1.2554 -0.0157889 0) (1.2537 -0.0180332 0) (1.25187 -0.0201548 0) (1.2499 -0.022154 0) (1.24783 -0.0240311 0) (1.24564 -0.0257865 0) (1.24335 -0.0274205 0) (1.24097 -0.0289336 0) (1.23851 -0.0303263 0) (1.23597 -0.0315994 0) (1.23337 -0.0327541 0) (1.23071 -0.0337918 0) (1.228 -0.0347143 0) (1.22525 -0.0355238 0) (1.22247 -0.0362231 0) (1.21967 -0.0368153 0) (1.21685 -0.037304 0) (1.21403 -0.0376934 0) (1.21121 -0.037988 0) (1.2084 -0.0381929 0) (1.20561 -0.0383134 0) (1.20285 -0.0383553 0) (1.20011 -0.0383246 0) (1.1974 -0.0382275 0) (1.19473 -0.0380705 0) (1.19211 -0.03786 0) (1.18953 -0.0376026 0) (1.187 -0.0373045 0) (1.18452 -0.0369723 0) (1.18208 -0.0366119 0) (1.1797 -0.0362294 0) (1.17737 -0.0358302 0) (1.17509 -0.0354197 0) (1.17286 -0.0350024 0) (1.17068 -0.0345834 0) (1.16854 -0.0341659 0) (1.16645 -0.0337546 0) (1.16439 -0.0333514 0) (1.16238 -0.0329608 0) (1.16039 -0.0325828 0) (1.15847 -0.0322225 0) (1.15653 -0.0318775 0) (1.15468 -0.0315544 0) (1.15278 -0.0312476 0) (1.15101 -0.0309663 0) (1.14912 -0.0307004 0) (1.14744 -0.030464 0) (1.14551 -0.0302402 0) (1.14395 -0.0300506 0) (1.14194 -0.0298691 0) (1.14056 -0.0297279 0) (1.13837 -0.0295886 0) (1.13727 -0.0294966 0) (1.13474 -0.0294003 0) (1.13411 -0.0293567 0) (1.13095 -0.0293068 0) (1.225 0.0708314 0) (1.23086 0.0662683 0) (1.23535 0.0616401 0) (1.23903 0.0570899 0) (1.24234 0.0526445 0) (1.24541 0.048287 0) (1.24822 0.0440042 0) (1.2507 0.0397986 0) (1.25283 0.0356826 0) (1.25463 0.0316686 0) (1.25611 0.0277654 0) (1.25731 0.0239773 0) (1.25824 0.0203066 0) (1.25892 0.0167545 0) (1.25935 0.0133222 0) (1.25955 0.0100104 0) (1.25952 0.00681947 0) (1.25929 0.00374939 0) (1.25885 0.000799698 0) (1.25822 -0.00203015 -5.7695e-28) (1.25741 -0.00474086 5.7695e-28) (1.25643 -0.00733307 0) (1.25528 -0.00980741 0) (1.25397 -0.0121645 0) (1.25251 -0.0144049 0) (1.25091 -0.0165291 0) (1.24918 -0.0185375 0) (1.24733 -0.0204305 0) (1.24535 -0.0222086 0) (1.24327 -0.0238721 0) (1.24109 -0.0254214 0) (1.23881 -0.0268571 0) (1.23645 -0.0281799 0) (1.23401 -0.0293908 0) (1.23151 -0.0304909 0) (1.22895 -0.0314816 0) (1.22633 -0.0323648 0) (1.22368 -0.0331427 0) (1.22099 -0.0338178 0) (1.21828 -0.0343932 0) (1.21555 -0.0348722 0) (1.21281 -0.0352587 0) (1.21007 -0.035557 0) (1.20734 -0.0357716 0) (1.20462 -0.0359075 0) (1.20192 -0.03597 0) (1.19924 -0.0359645 0) (1.19659 -0.0358967 0) (1.19397 -0.0357726 0) (1.19139 -0.0355979 0) (1.18885 -0.0353786 0) (1.18635 -0.0351206 0) (1.1839 -0.0348297 0) (1.18149 -0.0345114 0) (1.17913 -0.0341713 0) (1.17681 -0.0338142 0) (1.17454 -0.0334453 0) (1.17231 -0.0330687 0) (1.17013 -0.032689 0) (1.16799 -0.0323095 -1.60109e-28) (1.1659 -0.0319343 1.60109e-28) (1.16383 -0.0315654 0) (1.16182 -0.031207 0) (1.15981 -0.0308592 0) (1.15788 -0.0305268 0) (1.15593 -0.0302079 0) (1.15407 -0.0299084 0) (1.15215 -0.0296235 0) (1.15036 -0.0293617 0) (1.14845 -0.0291139 0) (1.14676 -0.0288931 0) (1.14482 -0.0286839 0) (1.14324 -0.0285064 0) (1.14121 -0.0283363 0) (1.13981 -0.0282037 0) (1.1376 -0.0280728 0) (1.13649 -0.0279862 0) (1.13394 -0.0278951 0) (1.13329 -0.0278539 0) (1.13011 -0.0278054 0) (1.22042 0.0663721 0) (1.22611 0.0622138 0) (1.2306 0.0579779 0) (1.23434 0.053794 0) (1.23773 0.0496901 0) (1.24087 0.0456552 0) (1.24373 0.0416801 0) (1.24628 0.0377691 0) (1.24849 0.0339346 0) (1.25037 0.0301888 0) (1.25194 0.0265405 0) (1.25324 0.0229949 0) (1.25427 0.0195549 0) (1.25505 0.0162226 0) (1.25558 0.0129997 0) (1.25588 0.00988746 0) (1.25596 0.00688666 0) (1.25582 0.00399773 0) (1.25549 0.00122068 0) (1.25496 -0.00144467 -1.04328e-28) (1.25425 -0.00399868 1.04328e-28) (1.25336 -0.00644177 0) (1.25231 -0.00877439 0) (1.2511 -0.010997 0) (1.24974 -0.01311 0) (1.24824 -0.0151138 0) (1.24661 -0.0170088 0) (1.24485 -0.0187955 0) (1.24298 -0.0204742 0) (1.24099 -0.0220455 0) (1.2389 -0.0235097 0) (1.23672 -0.0248676 0) (1.23446 -0.0261199 0) (1.23212 -0.0272676 0) (1.22971 -0.0283119 0) (1.22724 -0.0292543 0) (1.22471 -0.0300966 0) (1.22215 -0.0308408 0) (1.21955 -0.0314895 0) (1.21692 -0.0320455 0) (1.21427 -0.0325119 0) (1.21161 -0.0328924 0) (1.20894 -0.0331908 0) (1.20628 -0.0334114 0) (1.20363 -0.0335587 0) (1.20098 -0.0336375 0) (1.19836 -0.0336529 0) (1.19576 -0.03361 0) (1.19319 -0.0335142 0) (1.19065 -0.0333708 0) (1.18815 -0.0331853 0) (1.18568 -0.032963 0) (1.18325 -0.0327091 0) (1.18087 -0.0324288 0) (1.17852 -0.0321271 0) (1.17622 -0.0318085 0) (1.17396 -0.0314777 0) (1.17174 -0.0311386 0) (1.16956 -0.0307955 0) (1.16742 -0.0304513 0) (1.16532 -0.03011 0) (1.16325 -0.0297733 0) (1.16123 -0.0294453 0) (1.15922 -0.0291263 0) (1.15727 -0.0288206 0) (1.15531 -0.0285266 0) (1.15344 -0.02825 0) (1.1515 -0.0279863 0) (1.1497 -0.0277435 0) (1.14777 -0.0275134 0) (1.14606 -0.0273079 0) (1.14411 -0.027113 0) (1.14251 -0.0269474 0) (1.14047 -0.0267886 0) (1.13905 -0.0266645 0) (1.13683 -0.026542 0) (1.1357 -0.0264607 0) (1.13313 -0.0263749 0) (1.13247 -0.026336 0) (1.12926 -0.0262892 0) (1.21617 0.0619621 0) (1.22171 0.05818 0) (1.22617 0.0543127 0) (1.22996 0.0504769 0) (1.2334 0.0467009 0) (1.23659 0.0429776 0) (1.23951 0.0393012 0) (1.24211 0.0356773 0) (1.24439 0.032118 0) (1.24634 0.0286353 0) (1.248 0.0252382 0) (1.24938 0.0219322 0) (1.2505 0.0187209 0) (1.25137 0.015607 0) (1.25199 0.0125925 0) (1.25239 0.00967911 0) (1.25256 0.00686815 0) (1.25252 0.00416033 0) (1.25228 0.00155605 0) (1.25184 -0.000944607 3.59079e-28) (1.25123 -0.00334168 -3.59079e-28) (1.25044 -0.00563538 0) (1.24948 -0.00782597 0) (1.24836 -0.00991374 0) (1.2471 -0.011899 0) (1.24569 -0.0137822 0) (1.24415 -0.0155636 0) (1.24248 -0.0172436 0) (1.2407 -0.0188227 0) (1.23881 -0.0203013 0) (1.23681 -0.02168 0) (1.23472 -0.0229595 0) (1.23254 -0.0241405 0) (1.23029 -0.0252242 0) (1.22797 -0.0262116 0) (1.22558 -0.0271044 0) (1.22315 -0.0279041 0) (1.22066 -0.0286128 0) (1.21814 -0.0292329 0) (1.21559 -0.029767 0) (1.21302 -0.0302181 0) (1.21043 -0.0305895 0) (1.20783 -0.0308848 0) (1.20523 -0.0311079 0) (1.20264 -0.031263 0) (1.20005 -0.0313544 0) (1.19748 -0.0313867 0) (1.19493 -0.0313646 0) (1.1924 -0.0312931 0) (1.1899 -0.0311769 0) (1.18743 -0.031021 0) (1.18499 -0.0308303 0) (1.18259 -0.0306096 0) (1.18023 -0.0303635 0) (1.1779 -0.0300966 0) (1.17561 -0.0298131 0) (1.17336 -0.0295174 0) (1.17115 -0.0292128 0) (1.16897 -0.0289035 0) (1.16683 -0.0285922 0) (1.16473 -0.0282825 0) (1.16266 -0.0279762 0) (1.16063 -0.027677 0) (1.15861 -0.0273852 0) (1.15666 -0.027105 0) (1.15468 -0.0268349 0) (1.1528 -0.0265803 0) (1.15085 -0.0263371 0) (1.14904 -0.0261128 0) (1.1471 -0.0258998 0) (1.14537 -0.0257094 0) (1.1434 -0.0255286 0) (1.14179 -0.0253746 0) (1.13973 -0.0252269 0) (1.1383 -0.0251113 0) (1.13606 -0.024997 0) (1.13492 -0.024921 0) (1.13232 -0.0248404 0) (1.13167 -0.0248039 0) (1.12842 -0.0247589 0) (1.21225 0.0576077 0) (1.21762 0.0541756 0) (1.22205 0.0506546 0) (1.22588 0.0471493 0) (1.22936 0.0436872 0) (1.23259 0.0402644 0) (1.23555 0.0368774 0) (1.2382 0.0335326 0) (1.24053 0.0302419 0) (1.24255 0.0270172 0) (1.24428 0.023867 0) (1.24574 0.0207974 0) (1.24694 0.0178123 0) (1.24789 0.0149148 0) (1.2486 0.0121073 0) (1.24908 0.00939199 0) (1.24933 0.00677027 0) (1.24938 0.00424325 0) (1.24923 0.0018116 0) (1.24888 -0.000524362 0) (1.24835 -0.00276441 0) (1.24765 -0.00490856 0) (1.24678 -0.00695692 0) (1.24575 -0.00890966 0) (1.24457 -0.010767 0) (1.24325 -0.0125293 0) (1.2418 -0.0141967 0) (1.24022 -0.0157698 0) (1.23852 -0.0172488 0) (1.23671 -0.0186344 0) (1.2348 -0.0199271 0) (1.2328 -0.0211275 0) (1.2307 -0.0222365 0) (1.22853 -0.0232552 0) (1.22629 -0.0241847 0) (1.22399 -0.0250264 0) (1.22163 -0.025782 0) (1.21922 -0.0264535 0) (1.21677 -0.027043 0) (1.2143 -0.0275529 0) (1.21179 -0.0279862 0) (1.20927 -0.0283458 0) (1.20674 -0.028635 0) (1.2042 -0.0288574 0) (1.20166 -0.0290169 0) (1.19913 -0.0291173 0) (1.1966 -0.0291629 0) (1.1941 -0.029158 0) (1.19161 -0.029107 0) (1.18915 -0.0290142 0) (1.18671 -0.0288843 0) (1.1843 -0.0287215 0) (1.18193 -0.0285304 0) (1.17958 -0.028315 0) (1.17727 -0.0280797 0) (1.17499 -0.0278282 0) (1.17276 -0.0275645 0) (1.17055 -0.0272918 0) (1.16838 -0.0270138 0) (1.16624 -0.026733 1.63634e-28) (1.16414 -0.026453 -1.63634e-28) (1.16206 -0.0261751 0) (1.16003 -0.0259031 0) (1.15801 -0.0256372 0) (1.15604 -0.0253813 0) (1.15406 -0.0251341 0) (1.15216 -0.0249006 0) (1.1502 -0.0246772 0) (1.14838 -0.0244708 0) (1.14643 -0.0242745 0) (1.14469 -0.0240988 0) (1.1427 -0.0239317 0) (1.14109 -0.0237892 0) (1.13901 -0.0236523 0) (1.13757 -0.0235451 0) (1.1353 -0.0234389 0) (1.13415 -0.0233681 0) (1.13154 -0.0232928 0) (1.13088 -0.0232587 0) (1.1276 -0.0232157 0) (1.20863 0.0533123 0) (1.21385 0.0502067 0) (1.21825 0.0470112 0) (1.22209 0.0438195 0) (1.2256 0.0406578 0) (1.22886 0.0375242 0) (1.23185 0.0344172 0) (1.23453 0.0313436 0) (1.23691 0.0283149 0) (1.23899 0.0253425 0) (1.24079 0.0224349 0) (1.24232 0.0195981 0) (1.24359 0.0168365 0) (1.24461 0.0141533 0) (1.2454 0.0115512 0) (1.24595 0.00903267 0) (1.24629 0.00659934 0) (1.24642 0.00425256 0) (1.24635 0.00199317 0) (1.24608 -0.000178166 0) (1.24563 -0.00226125 0) (1.24501 -0.00425585 0) (1.24422 -0.0061619 0) (1.24328 -0.00797947 0) (1.24218 -0.00970869 0) (1.24094 -0.0113498 0) (1.23957 -0.0129031 0) (1.23807 -0.0143689 0) (1.23645 -0.0157476 0) (1.23472 -0.0170397 0) (1.23289 -0.0182458 0) (1.23096 -0.0193665 0) (1.22895 -0.0204028 0) (1.22685 -0.0213555 0) (1.22469 -0.022226 0) (1.22246 -0.0230154 0) (1.22017 -0.0237254 0) (1.21783 -0.0243579 0) (1.21546 -0.0249149 0) (1.21304 -0.0253986 0) (1.2106 -0.0258117 0) (1.20814 -0.0261569 0) (1.20567 -0.0264374 0) (1.20319 -0.0266562 0) (1.2007 -0.026817 0) (1.19822 -0.0269233 0) (1.19574 -0.0269789 0) (1.19327 -0.0269878 0) (1.19083 -0.0269538 0) (1.1884 -0.0268811 0) (1.18599 -0.0267737 0) (1.18361 -0.0266356 0) (1.18126 -0.0264707 0) (1.17893 -0.026283 0) (1.17664 -0.0260762 0) (1.17438 -0.0258538 0) (1.17215 -0.0256195 0) (1.16995 -0.0253761 0) (1.16779 -0.0251271 0) (1.16565 -0.0248748 3.03412e-29) (1.16355 -0.0246223 -3.03412e-29) (1.16147 -0.0243713 0) (1.15944 -0.0241249 0) (1.1574 -0.0238834 0) (1.15543 -0.0236506 0) (1.15344 -0.0234253 0) (1.15154 -0.0232121 0) (1.14957 -0.0230078 0) (1.14774 -0.0228187 0) (1.14577 -0.0226386 0) (1.14402 -0.0224772 0) (1.14202 -0.0223235 0) (1.14039 -0.0221923 0) (1.1383 -0.0220661 0) (1.13685 -0.0219671 0) (1.13457 -0.0218688 0) (1.13341 -0.0218033 0) (1.13078 -0.0217332 0) (1.13011 -0.0217014 0) (1.12681 -0.0216606 0) (1.2053 0.0490774 0) (1.21038 0.046277 0) (1.21474 0.0433881 0) (1.21859 0.0404941 0) (1.22213 0.0376197 0) (1.2254 0.0347645 0) (1.22841 0.0319283 0) (1.23113 0.0291179 0) (1.23355 0.0263445 0) (1.23568 0.0236188 0) (1.23753 0.0209492 0) (1.23912 0.0183416 0) (1.24045 0.0158005 0) (1.24154 0.0133292 0) (1.24239 0.0109308 0) (1.24302 0.0086076 0) (1.24343 0.00636162 0) (1.24363 0.00419431 0) (1.24363 0.00210667 0) (1.24344 9.95418e-05 -3.41603e-28) (1.24307 -0.00182675 3.41603e-28) (1.24253 -0.00367186 0) (1.24181 -0.00543558 0) (1.24094 -0.00711789 0) (1.23992 -0.00871886 0) (1.23875 -0.0102387 0) (1.23746 -0.0116775 0) (1.23603 -0.0130357 0) (1.23449 -0.0143137 0) (1.23283 -0.0155119 0) (1.23107 -0.0166309 0) (1.22922 -0.0176714 0) (1.22727 -0.0186341 0) (1.22525 -0.0195201 0) (1.22316 -0.0203304 0) (1.22099 -0.0210663 0) (1.21877 -0.0217294 0) (1.2165 -0.0223214 0) (1.21419 -0.022844 0) (1.21184 -0.0232996 0) (1.20946 -0.0236903 0) (1.20706 -0.0240189 0) (1.20464 -0.024288 0) (1.2022 -0.0245007 0) (1.19977 -0.02466 0) (1.19733 -0.0247692 0) (1.19489 -0.0248319 0) (1.19247 -0.0248515 0) (1.19006 -0.0248316 0) (1.18766 -0.0247758 0) (1.18528 -0.0246878 0) (1.18293 -0.0245713 0) (1.1806 -0.0244298 0) (1.17829 -0.0242668 0) (1.17601 -0.0240858 0) (1.17376 -0.0238898 0) (1.17155 -0.0236824 0) (1.16935 -0.023466 0) (1.1672 -0.0232438 0) (1.16506 -0.023018 0) (1.16296 -0.0227914 0) (1.16088 -0.0225655 0) (1.15885 -0.0223433 0) (1.15681 -0.0221251 0) (1.15484 -0.0219143 0) (1.15284 -0.0217099 0) (1.15093 -0.0215161 0) (1.14895 -0.0213301 0) (1.14711 -0.0211578 0) (1.14513 -0.0209934 0) (1.14337 -0.0208459 0) (1.14136 -0.0207053 0) (1.13972 -0.020585 0) (1.13762 -0.0204693 0) (1.13616 -0.0203784 0) (1.13386 -0.0202879 0) (1.1327 -0.0202276 0) (1.13005 -0.0201627 0) (1.12937 -0.0201334 0) (1.12606 -0.0200949 0) (1.20227 0.0449024 0) (1.20721 0.0423882 0) (1.21153 0.0397887 0) (1.21538 0.0371779 0) (1.21892 0.0345786 0) (1.22221 0.0319913 0) (1.22524 0.0294169 0) (1.22798 0.0268621 0) (1.23043 0.0243374 0) (1.23261 0.021853 0) (1.2345 0.0194168 0) (1.23614 0.0170347 0) (1.23753 0.0147109 0) (1.23868 0.0124491 0) (1.2396 0.0102523 0) (1.24029 0.00812302 0) (1.24077 0.00606321 0) (1.24103 0.00407446 0) (1.2411 0.00215793 0) (1.24098 0.000314446 -5.20823e-28) (1.24068 -0.00145536 5.20823e-28) (1.2402 -0.0031511 0) (1.23956 -0.00477255 0) (1.23875 -0.00631958 0) (1.2378 -0.00779222 0) (1.23671 -0.00919055 0) (1.23548 -0.0105148 0) (1.23412 -0.0117652 0) (1.23264 -0.0129421 0) (1.23106 -0.014046 0) (1.22936 -0.0150774 0) (1.22758 -0.016037 0) (1.2257 -0.0169255 0) (1.22374 -0.0177438 0) (1.22171 -0.018493 0) (1.21961 -0.0191744 0) (1.21745 -0.0197892 0) (1.21524 -0.0203391 0) (1.21299 -0.0208259 0) (1.21069 -0.0212514 0) (1.20837 -0.0216179 0) (1.20602 -0.0219277 0) (1.20365 -0.0221832 0) (1.20126 -0.0223872 0) (1.19887 -0.0225426 0) (1.19647 -0.0226522 0) (1.19408 -0.0227192 0) (1.19169 -0.0227467 0) (1.18931 -0.022738 0) (1.18694 -0.0226964 0) (1.18459 -0.0226251 0) (1.18226 -0.0225274 0) (1.17995 -0.0224065 0) (1.17766 -0.0222657 0) (1.1754 -0.0221079 0) (1.17316 -0.0219361 0) (1.17096 -0.0217532 0) (1.16877 -0.0215617 0) (1.16662 -0.0213644 0) (1.16449 -0.0211632 0) (1.16239 -0.0209608 0) (1.16031 -0.0207586 0) (1.15827 -0.0205592 0) (1.15623 -0.020363 0) (1.15426 -0.0201731 0) (1.15225 -0.0199887 0) (1.15033 -0.0198136 0) (1.14835 -0.0196453 -3.28955e-12) (1.1465 -0.0194891 3.28955e-12) (1.14451 -0.01934 0) (1.14275 -0.0192059 0) (1.14073 -0.019078 0) (1.13908 -0.0189686 0) (1.13696 -0.018863 0) (1.13549 -0.01878 0) (1.13319 -0.0186974 0) (1.13201 -0.0186422 0) (1.12935 -0.0185825 0) (1.12867 -0.0185555 0) (1.12533 -0.0185195 0) (1.19951 0.0407856 0) (1.20433 0.0385408 0) (1.2086 0.0362152 0) (1.21245 0.0338742 0) (1.216 0.0315385 0) (1.2193 0.0292096 0) (1.22233 0.0268885 0) (1.22509 0.024582 0) (1.22757 0.0222997 0) (1.22978 0.0200512 0) (1.23172 0.0178439 0) (1.23341 0.0156834 0) (1.23485 0.013574 0) (1.23605 0.0115192 0) (1.23702 0.009522 0) (1.23777 0.00758491 0) (1.2383 0.00570999 0) (1.23863 0.00389882 0) (1.23876 0.00215264 0) (1.2387 0.000472342 -9.47249e-29) (1.23846 -0.00114137 9.47249e-29) (1.23804 -0.00268803 0) (1.23746 -0.00416736 0) (1.23672 -0.00557919 0) (1.23583 -0.00692346 0) (1.2348 -0.00820025 0) (1.23363 -0.00940969 0) (1.23234 -0.010552 0) (1.23093 -0.0116276 0) (1.2294 -0.0126368 0) (1.22777 -0.0135801 0) (1.22604 -0.0144582 0) (1.22423 -0.0152718 0) (1.22233 -0.0160217 0) (1.22035 -0.016709 0) (1.21831 -0.0173346 0) (1.21621 -0.0179 0) (1.21406 -0.0184066 0) (1.21185 -0.0188559 0) (1.20961 -0.0192498 0) (1.20734 -0.0195902 0) (1.20503 -0.0198793 0) (1.20271 -0.0201192 0) (1.20037 -0.0203124 0) (1.19802 -0.0204615 0) (1.19566 -0.0205691 0) (1.1933 -0.020638 0) (1.19094 -0.020671 0) (1.18859 -0.020671 0) (1.18625 -0.020641 0) (1.18393 -0.0205839 0) (1.18162 -0.0205025 -4.54846e-29) (1.17933 -0.0203999 4.54846e-29) (1.17706 -0.0202788 0) (1.17481 -0.020142 0) (1.17259 -0.0199921 0) (1.17039 -0.0198318 0) (1.16821 -0.0196632 0) (1.16607 -0.019489 0) (1.16394 -0.0193108 0) (1.16184 -0.0191311 0) (1.15976 -0.0189511 0) (1.15772 -0.0187733 0) (1.15568 -0.018598 0) (1.1537 -0.0184281 0) (1.15169 -0.0182628 0) (1.14977 -0.0181056 0) (1.14778 -0.0179543 -6.62027e-12) (1.14592 -0.0178137 6.62027e-12) (1.14393 -0.0176793 0) (1.14215 -0.0175584 0) (1.14012 -0.0174429 0) (1.13847 -0.0173439 0) (1.13634 -0.0172484 0) (1.13487 -0.0171732 0) (1.13255 -0.0170981 0) (1.13137 -0.017048 0) (1.12869 -0.0169936 0) (1.12801 -0.0169689 0) (1.12465 -0.0169356 0) (1.19702 0.0367243 0) (1.20173 0.0347339 0) (1.20595 0.0326685 0) (1.2098 0.0305852 0) (1.21335 0.0285027 0) (1.21665 0.026423 0) (1.21969 0.0243474 0) (1.22247 0.0222822 0) (1.22497 0.0202364 0) (1.22721 0.0182187 0) (1.22918 0.016236 0) (1.23091 0.0142936 0) (1.23239 0.0123955 0) (1.23364 0.0105451 0) (1.23466 0.00874551 0) (1.23546 0.00699901 0) (1.23604 0.00530765 0) (1.23642 0.00367303 0) (1.23661 0.0020964 0) (1.23661 0.000578691 0) (1.23642 -0.000879367 0) (1.23606 -0.00227727 0) (1.23554 -0.00361468 0) (1.23485 -0.0048914 0) (1.23402 -0.00610733 0) (1.23305 -0.0072625 0) (1.23194 -0.00835702 0) (1.2307 -0.0093911 0) (1.22934 -0.010365 0) (1.22787 -0.0112792 0) (1.2263 -0.012134 0) (1.22463 -0.0129301 0) (1.22286 -0.0136682 0) (1.22102 -0.0143489 0) (1.2191 -0.0149733 0) (1.21711 -0.0155423 0) (1.21506 -0.0160572 0) (1.21295 -0.0165191 0) (1.2108 -0.0169297 0) (1.2086 -0.0172905 0) (1.20637 -0.0176032 0) (1.20411 -0.0178698 0) (1.20183 -0.0180923 0) (1.19953 -0.0182728 0) (1.19721 -0.0184135 0) (1.19489 -0.018517 0) (1.19256 -0.0185856 0) (1.19024 -0.0186219 0) (1.18792 -0.0186284 0) (1.1856 -0.0186077 0) (1.1833 -0.0185625 0) (1.18101 -0.0184953 -2.46898e-28) (1.17874 -0.0184087 2.46898e-28) (1.17648 -0.0183053 0) (1.17425 -0.0181875 0) (1.17204 -0.0180576 0) (1.16985 -0.0179179 0) (1.16768 -0.0177706 0) (1.16554 -0.0176177 0) (1.16341 -0.017461 0) (1.16132 -0.0173026 0) (1.15924 -0.0171436 0) (1.1572 -0.0169862 0) (1.15516 -0.0168308 0) (1.15318 -0.0166799 0) (1.15116 -0.0165329 0) (1.14923 -0.0163929 0) (1.14724 -0.016258 -3.32843e-12) (1.14538 -0.0161325 3.32843e-12) (1.14338 -0.0160124 0) (1.1416 -0.0159042 0) (1.13956 -0.0158007 0) (1.13789 -0.015712 0) (1.13576 -0.0156263 0) (1.13428 -0.0155588 0) (1.13195 -0.0154913 0) (1.13076 -0.0154461 0) (1.12807 -0.0153969 0) (1.12739 -0.0153746 0) (1.12402 -0.015344 0) (1.19479 0.0327148 0) (1.1994 0.0309658 0) (1.20359 0.0291482 0) (1.20742 0.0273118 0) (1.21097 0.0254732 0) (1.21427 0.0236344 0) (1.21732 0.0217971 0) (1.2201 0.0199669 0) (1.22263 0.018152 0) (1.22489 0.0163603 0) (1.22689 0.0145981 0) (1.22865 0.0128703 0) (1.23017 0.0111806 0) (1.23146 0.00953237 0) (1.23252 0.0079283 0) (1.23336 0.00637075 0) (1.234 0.00486164 0) (1.23443 0.00340252 0) (1.23466 0.00199462 0) (1.2347 0.000638861 0) (1.23457 -0.000664021 0) (1.23426 -0.00191351 0) (1.23379 -0.00310923 0) (1.23316 -0.00425096 0) (1.23237 -0.0053386 0) (1.23145 -0.00637212 0) (1.23039 -0.00735161 0) (1.22921 -0.00827725 0) (1.2279 -0.0091493 0) (1.22648 -0.00996808 0) (1.22496 -0.010734 0) (1.22333 -0.0114477 0) (1.22162 -0.0121096 0) (1.21982 -0.0127205 0) (1.21795 -0.0132812 0) (1.21601 -0.0137927 0) (1.214 -0.014256 0) (1.21194 -0.0146723 0) (1.20983 -0.0150429 0) (1.20768 -0.0153693 0) (1.20549 -0.0156529 0) (1.20327 -0.0158954 0) (1.20102 -0.0160988 0) (1.19875 -0.0162648 0) (1.19647 -0.0163955 0) (1.19418 -0.0164929 0) (1.19188 -0.0165593 0) (1.18958 -0.0165968 0) (1.18729 -0.0166078 0) (1.18499 -0.0165945 0) (1.18271 -0.0165592 0) (1.18044 -0.0165042 0) (1.17819 -0.0164318 0) (1.17595 -0.0163441 0) (1.17373 -0.0162434 0) (1.17152 -0.0161317 0) (1.16934 -0.0160111 0) (1.16718 -0.0158834 0) (1.16504 -0.0157505 0) (1.16292 -0.015614 0) (1.16084 -0.0154756 0) (1.15875 -0.0153364 0) (1.15672 -0.0151984 0) (1.15467 -0.0150619 0) (1.15269 -0.0149292 0) (1.15067 -0.0147997 0) (1.14874 -0.0146763 0) (1.14674 -0.0145572 0) (1.14487 -0.0144463 0) (1.14286 -0.01434 0) (1.14108 -0.0142442 0) (1.13903 -0.0141526 0) (1.13736 -0.0140739 0) (1.13522 -0.0139977 0) (1.13373 -0.0139377 0) (1.1314 -0.0138776 0) (1.13021 -0.0138374 0) (1.1275 -0.0137934 0) (1.12681 -0.0137735 0) (1.12343 -0.0137458 0) (1.19282 0.0287528 0) (1.19734 0.0272339 0) (1.20149 0.0256535 0) (1.20531 0.0240544 0) (1.20886 0.0224513 0) (1.21216 0.020846 0) (1.21521 0.0192404 0) (1.218 0.0176394 0) (1.22054 0.0160504 0) (1.22282 0.0144802 0) (1.22485 0.0129347 0) (1.22664 0.0114183 0) (1.22819 0.00993433 0) (1.22951 0.00848588 0) (1.23061 0.00707549 0) (1.23149 0.00570533 0) (1.23217 0.00437719 0) (1.23264 0.00309255 0) (1.23291 0.00185255 0) (1.233 0.00065811 0) (1.23291 -0.000490081 0) (1.23265 -0.0015915 0) (1.23222 -0.00264578 0) (1.23163 -0.00365269 0) (1.2309 -0.00461209 0) (1.23002 -0.00552395 0) (1.229 -0.00638834 0) (1.22786 -0.00720539 0) (1.2266 -0.00797532 0) (1.22523 -0.00869845 0) (1.22375 -0.00937514 0) (1.22217 -0.0100058 0) (1.2205 -0.0105911 0) (1.21874 -0.0111316 0) (1.21691 -0.011628 0) (1.21501 -0.0120812 0) (1.21305 -0.0124921 0) (1.21103 -0.0128617 0) (1.20895 -0.0131913 0) (1.20684 -0.0134819 0) (1.20468 -0.0137351 0) (1.20249 -0.0139523 0) (1.20028 -0.0141351 0) (1.19805 -0.0142851 0) (1.19579 -0.0144041 0) (1.19353 -0.0144938 0) (1.19126 -0.0145563 0) (1.18898 -0.0145934 0) (1.18671 -0.0146071 0) (1.18444 -0.0145994 0) (1.18218 -0.0145722 0) (1.17992 -0.0145277 0) (1.17768 -0.0144677 0) (1.17545 -0.0143941 0) (1.17324 -0.014309 0) (1.17105 -0.014214 0) (1.16888 -0.014111 0) (1.16672 -0.0140015 0) (1.16459 -0.0138872 0) (1.16247 -0.0137696 0) (1.16039 -0.0136501 0) (1.15831 -0.0135297 0) (1.15627 -0.0134102 0) (1.15422 -0.0132918 0) (1.15224 -0.0131765 0) (1.15022 -0.0130639 0) (1.14828 -0.0129564 0) (1.14628 -0.0128526 0) (1.14441 -0.0127558 0) (1.1424 -0.012663 0) (1.14061 -0.0125793 0) (1.13856 -0.0124991 0) (1.13688 -0.0124302 0) (1.13473 -0.0123635 0) (1.13324 -0.0123109 0) (1.13089 -0.0122581 0) (1.1297 -0.0122228 0) (1.12699 -0.012184 0) (1.1263 -0.0121665 0) (1.12291 -0.0121418 0) (1.19111 0.0248335 0) (1.19555 0.0235348 0) (1.19966 0.0221824 0) (1.20348 0.0208124 0) (1.20702 0.0194374 0) (1.21031 0.0180592 0) (1.21336 0.0166793 0) (1.21616 0.0153024 0) (1.21871 0.0139346 0) (1.22101 0.0125822 0) (1.22306 0.0112499 0) (1.22487 0.0099419 0) (1.22645 0.00866118 0) (1.2278 0.00741043 0) (1.22893 0.00619195 0) (1.22985 0.00500771 0) (1.23056 0.00385935 0) (1.23107 0.0027482 0) (1.23138 0.00167533 0) (1.2315 0.00064158 -4.92281e-28) (1.23145 -0.000352395 4.92281e-28) (1.23123 -0.00130611 0) (1.23084 -0.0022192 0) (1.23029 -0.00309143 0) (1.22959 -0.00392268 0) (1.22875 -0.00471289 0) (1.22778 -0.0054621 0) (1.22668 -0.00617044 0) (1.22546 -0.00683808 0) (1.22412 -0.00746529 0) (1.22268 -0.0080524 0) (1.22114 -0.00859981 0) (1.21951 -0.00910799 0) (1.21779 -0.0095775 0) (1.216 -0.010009 0) (1.21413 -0.0104032 0) (1.2122 -0.0107608 0) (1.21021 -0.0110829 0) (1.20817 -0.0113704 0) (1.20609 -0.0116244 0) (1.20397 -0.0118461 0) (1.20181 -0.0120367 0) (1.19962 -0.0121977 0) (1.19741 -0.0123303 0) (1.19519 -0.0124362 0) (1.19295 -0.0125168 0) (1.1907 -0.0125739 0) (1.18845 -0.012609 0) (1.18619 -0.0126239 0) (1.18394 -0.0126202 0) (1.18169 -0.0125997 0) (1.17945 -0.0125641 0) (1.17723 -0.012515 0) (1.17501 -0.0124542 0) (1.17281 -0.0123831 0) (1.17062 -0.0123035 0) (1.16846 -0.0122168 0) (1.16631 -0.0121243 0) (1.16418 -0.0120276 0) (1.16207 -0.0119277 1.68749e-28) (1.15999 -0.0118262 -1.68749e-28) (1.15791 -0.0117237 0) (1.15587 -0.0116218 0) (1.15382 -0.0115207 0) (1.15183 -0.0114221 0) (1.14981 -0.0113258 0) (1.14788 -0.0112338 0) (1.14587 -0.0111448 0) (1.14399 -0.0110618 0) (1.14198 -0.0109821 0) (1.14019 -0.0109101 0) (1.13813 -0.0108412 0) (1.13645 -0.0107819 0) (1.1343 -0.0107244 0) (1.1328 -0.0106791 0) (1.13045 -0.0106335 0) (1.12925 -0.010603 0) (1.12653 -0.0105694 0) (1.12584 -0.0105543 0) (1.12243 -0.0105327 0) (1.18965 0.0209516 0) (1.19402 0.019865 0) (1.1981 0.0187326 0) (1.2019 0.0175846 0) (1.20544 0.0164315 0) (1.20874 0.0152747 0) (1.21178 0.0141156 0) (1.21459 0.0129582 0) (1.21714 0.0118077 0) (1.21945 0.0106693 0) (1.22152 0.00954734 0) (1.22336 0.00844513 0) (1.22496 0.00736539 0) (1.22634 0.00631044 0) (1.22749 0.00528227 0) (1.22844 0.00428263 0) (1.22917 0.00331294 0) (1.22971 0.00237439 0) (1.23005 0.00146792 0) (1.23021 0.000594292 0) (1.23019 -0.000245915 0) (1.23 -0.00105225 0) (1.22964 -0.00182439 0) (1.22913 -0.00256212 0) (1.22847 -0.00326529 0) (1.22766 -0.00393387 0) (1.22672 -0.00456787 0) (1.22565 -0.00516739 0) (1.22446 -0.00573258 0) (1.22316 -0.00626367 0) (1.22175 -0.00676092 0) (1.22025 -0.00722468 0) (1.21865 -0.00765537 0) (1.21696 -0.00805344 0) (1.2152 -0.00841945 0) (1.21336 -0.00875401 0) (1.21146 -0.00905781 0) (1.20951 -0.00933162 0) (1.2075 -0.00957627 0) (1.20544 -0.0097927 0) (1.20334 -0.00998188 0) (1.20121 -0.0101449 0) (1.19905 -0.0102829 0) (1.19686 -0.010397 0) (1.19466 -0.0104886 0) (1.19244 -0.0105589 0) (1.19021 -0.0106093 0) (1.18798 -0.0106412 0) (1.18574 -0.0106559 0) (1.1835 -0.010655 0) (1.18127 -0.0106398 0) (1.17904 -0.0106118 0) (1.17683 -0.0105724 0) (1.17462 -0.010523 0) (1.17243 -0.0104649 0) (1.17025 -0.0103994 0) (1.16809 -0.0103279 0) (1.16595 -0.0102514 0) (1.16382 -0.0101712 0) (1.16171 -0.0100883 1.09278e-28) (1.15963 -0.0100038 -1.09278e-28) (1.15755 -0.00991844 0) (1.15552 -0.0098334 0) (1.15347 -0.009749 0) (1.15148 -0.00966661 0) (1.14946 -0.009586 0) (1.14752 -0.00950891 0) (1.14551 -0.00943433 0) (1.14363 -0.0093647 0) (1.14161 -0.00929785 0) (1.13982 -0.0092374 0) (1.13776 -0.00917946 0) (1.13607 -0.00912958 0) (1.13391 -0.00908126 0) (1.13241 -0.00904305 0) (1.13006 -0.00900466 0) (1.12885 -0.00897893 0) (1.12613 -0.00895052 0) (1.12543 -0.00893772 0) (1.12202 -0.00891929 0) (1.18843 0.0171015 0) (1.19275 0.0162201 0) (1.19681 0.0153013 0) (1.2006 0.0143695 0) (1.20413 0.0134329 0) (1.20742 0.0124928 0) (1.21047 0.0115502 0) (1.21327 0.0106085 0) (1.21584 0.00967181 0) (1.21816 0.00874456 0) (1.22024 0.00783023 0) (1.22209 0.00693159 0) (1.22371 0.0060509 0) (1.22511 0.00519009 0) (1.22629 0.00435085 0) (1.22725 0.00353463 0) (1.22801 0.00274265 0) (1.22858 0.0019759 0) (1.22895 0.00123518 0) (1.22913 0.000521152 0) (1.22914 -0.00016569 0) (1.22897 -0.000824963 0) (1.22865 -0.00145638 0) (1.22816 -0.00205974 0) (1.22752 -0.00263493 0) (1.22675 -0.0031819 0) (1.22583 -0.00370066 0) (1.22479 -0.00419128 0) (1.22363 -0.00465389 0) (1.22236 -0.00508866 0) (1.22098 -0.00549582 0) (1.2195 -0.00587565 0) (1.21792 -0.0062285 0) (1.21627 -0.00655474 0) (1.21453 -0.00685482 0) (1.21272 -0.00712925 0) (1.21085 -0.00737859 0) (1.20891 -0.00760348 0) (1.20693 -0.00780459 0) (1.20489 -0.00798269 0) (1.20282 -0.00813857 0) (1.20071 -0.00827311 0) (1.19856 -0.00838724 0) (1.1964 -0.00848193 -6.05609e-29) (1.19421 -0.0085582 6.05609e-29) (1.19201 -0.00861711 0) (1.1898 -0.00865978 0) (1.18758 -0.00868731 0) (1.18535 -0.00870086 0) (1.18313 -0.00870158 0) (1.18091 -0.00869065 0) (1.17869 -0.0086692 0) (1.17649 -0.0086384 0) (1.17429 -0.00859935 0) (1.17211 -0.00855318 0) (1.16993 -0.00850092 0) (1.16778 -0.00844364 0) (1.16564 -0.00838226 0) (1.16352 -0.00831779 0) (1.16141 -0.00825099 -3.12159e-29) (1.15933 -0.00818284 3.12159e-29) (1.15726 -0.0081139 0) (1.15522 -0.00804515 0) (1.15317 -0.00797687 0) (1.15118 -0.00791013 0) (1.14916 -0.00784481 0) (1.14722 -0.00778227 0) (1.14521 -0.00772177 0) (1.14333 -0.00766519 0) (1.1413 -0.0076109 0) (1.13951 -0.00756172 0) (1.13744 -0.00751462 0) (1.13576 -0.00747398 0) (1.13359 -0.00743467 0) (1.13209 -0.00740349 0) (1.12973 -0.00737222 0) (1.12852 -0.0073512 0) (1.12579 -0.00732799 0) (1.12509 -0.00731753 0) (1.12168 -0.00730237 0) (1.18746 0.0132787 0) (1.19173 0.0125967 0) (1.19577 0.0118863 0) (1.19955 0.0111659 0) (1.20308 0.0104415 0) (1.20637 0.0097141 0) (1.20942 0.00898445 0) (1.21222 0.00825507 0) (1.21479 0.00752939 0) (1.21712 0.00681071 0) (1.21921 0.00610179 0) (1.22108 0.00540479 0) (1.22271 0.0047215 0) (1.22412 0.00405343 0) (1.22532 0.00340192 0) (1.2263 0.00276813 0) (1.22709 0.00215301 0) (1.22767 0.00155737 0) (1.22806 0.000981855 0) (1.22826 0.000426975 0) (1.22829 -0.000106855 0) (1.22815 -0.000619331 0) (1.22784 -0.00111022 0) (1.22738 -0.00157935 0) (1.22677 -0.00202664 0) (1.22601 -0.00245202 0) (1.22512 -0.00285551 0) (1.2241 -0.00323717 0) (1.22296 -0.00359708 0) (1.22171 -0.00393539 0) (1.22035 -0.00425227 0) (1.21889 -0.00454794 0) (1.21734 -0.00482266 0) (1.21571 -0.00507674 0) (1.21399 -0.00531053 0) (1.2122 -0.00552441 0) (1.21035 -0.00571883 0) (1.20843 -0.00589427 0) (1.20646 -0.00605128 0) (1.20445 -0.00619043 0) (1.20239 -0.00631235 0) (1.2003 -0.00641772 0) (1.19817 -0.00650725 0) (1.19602 -0.0065817 -3.2814e-28) (1.19385 -0.00664185 3.2814e-28) (1.19166 -0.00668854 0) (1.18946 -0.0067226 0) (1.18726 -0.00674492 0) (1.18504 -0.00675637 0) (1.18283 -0.00675785 0) (1.18062 -0.00675025 0) (1.17841 -0.00673447 0) (1.17621 -0.00671141 0) (1.17402 -0.00668191 0) (1.17184 -0.00664684 0) (1.16967 -0.00660701 0) (1.16753 -0.00656323 0) (1.16539 -0.00651623 0) (1.16327 -0.00646678 0) (1.16117 -0.00641549 -1.69526e-28) (1.15909 -0.00636309 1.69526e-28) (1.15701 -0.00631004 0) (1.15498 -0.00625707 0) (1.15293 -0.00620446 0) (1.15094 -0.00615295 0) (1.14891 -0.00610257 0) (1.14697 -0.00605423 0) (1.14496 -0.00600753 0) (1.14308 -0.00596372 0) (1.14105 -0.00592181 0) (1.13925 -0.00588366 0) (1.13719 -0.00584731 0) (1.1355 -0.00581571 0) (1.13333 -0.00578538 0) (1.13183 -0.00576106 0) (1.12946 -0.00573695 0) (1.12825 -0.00572049 0) (1.12552 -0.00570257 0) (1.12482 -0.00569437 0) (1.1214 -0.00568262 0) (1.18673 0.00947396 0) (1.19097 0.0089874 0) (1.19499 0.00848174 0) (1.19877 0.00796939 0) (1.2023 0.00745429 0) (1.20558 0.00693684 0) (1.20863 0.00641759 0) (1.21143 0.00589832 0) (1.21401 0.00538151 0) (1.21634 0.00486954 0) (1.21844 0.00436439 0) (1.22031 0.00386761 0) (1.22196 0.00338047 0) (1.22338 0.00290408 0) (1.22459 0.00243939 0) (1.22559 0.00198725 0) (1.22639 0.00154836 0) (1.22698 0.00112331 0) (1.22739 0.000712553 0) (1.22761 0.000316476 0) (1.22766 -6.46188e-05 0) (1.22753 -0.000430509 0) (1.22724 -0.00078102 0) (1.22679 -0.00111603 0) (1.2262 -0.00143546 0) (1.22546 -0.00173929 0) (1.22459 -0.0020275 0) (1.22358 -0.00230014 0) (1.22246 -0.00255728 0) (1.22123 -0.002799 0) (1.21988 -0.00302545 0) (1.21844 -0.00323677 0) (1.21691 -0.00343315 0) (1.21528 -0.00361482 0) (1.21358 -0.00378201 0) (1.21181 -0.00393501 0) (1.20997 -0.00407414 0) (1.20807 -0.00419974 0) (1.20612 -0.0043122 0) (1.20412 -0.00441193 0) (1.20207 -0.00449938 0) (1.19999 -0.00457503 0) (1.19788 -0.00463939 0) (1.19574 -0.00469299 0) (1.19358 -0.00473641 0) (1.1914 -0.00477021 0) (1.18921 -0.00479502 0) (1.18701 -0.00481144 0) (1.18481 -0.0048201 0) (1.1826 -0.00482165 0) (1.1804 -0.00481671 0) (1.17819 -0.00480592 0) (1.176 -0.00478992 0) (1.17382 -0.00476931 0) (1.17164 -0.00474471 0) (1.16948 -0.0047167 0) (1.16733 -0.00468583 0) (1.1652 -0.00465267 0) (1.16309 -0.00461771 0) (1.16098 -0.00458144 1.69676e-28) (1.1589 -0.00454431 -1.69676e-28) (1.15683 -0.00450676 0) (1.15479 -0.00446916 0) (1.15275 -0.00443188 0) (1.15076 -0.00439526 0) (1.14873 -0.00435956 0) (1.14679 -0.00432512 0) (1.14477 -0.00429205 0) (1.14289 -0.00426075 0) (1.14086 -0.00423113 0) (1.13906 -0.00420374 0) (1.13699 -0.00417816 0) (1.1353 -0.0041553 0) (1.13313 -0.00413413 0) (1.13163 -0.00411629 0) (1.12926 -0.00409967 0) (1.12805 -0.00408729 0) (1.12531 -0.00407513 0) (1.12461 -0.00406871 0) (1.12119 -0.00406079 0) (1.18624 0.00567347 0) (1.19046 0.0053819 0) (1.19448 0.00508011 0) (1.19825 0.00477455 0) (1.20178 0.00446733 0) (1.20506 0.00415854 0) (1.2081 0.00384843 0) (1.21091 0.00353805 0) (1.21348 0.00322894 0) (1.21582 0.00292259 0) (1.21793 0.00262022 0) (1.21981 0.00232276 0) (1.22146 0.002031 0) (1.22289 0.00174559 0) (1.22411 0.00146714 0) (1.22512 0.00119615 0) (1.22592 0.00093306 0) (1.22653 0.000678227 0) (1.22695 0.000431937 0) (1.22718 0.000194423 -8.78246e-28) (1.22723 -3.41337e-05 8.78246e-28) (1.22712 -0.000253585 0) (1.22684 -0.000463828 0) (1.2264 -0.000664788 0) (1.22582 -0.000856419 0) (1.22509 -0.0010387 0) (1.22423 -0.00121162 0) (1.22324 -0.00137521 -1.59054e-11) (1.22213 -0.00152952 1.59054e-11) (1.2209 -0.00167458 0) (1.21957 -0.00181049 0) (1.21814 -0.00193733 0) (1.21661 -0.00205522 0) (1.215 -0.00216429 0) (1.21331 -0.00226469 0) (1.21155 -0.00235659 0) (1.20972 -0.00244017 0) (1.20783 -0.00251564 0) (1.20588 -0.00258324 0) (1.20389 -0.00264322 0) (1.20186 -0.00269583 0) (1.19978 -0.00274138 0) (1.19768 -0.00278016 0) (1.19555 -0.00281249 0) (1.19339 -0.00283872 0) (1.19122 -0.00285919 0) (1.18904 -0.00287426 0) (1.18685 -0.00288431 0) (1.18465 -0.0028897 0) (1.18245 -0.00289082 0) (1.18025 -0.00288805 0) (1.17805 -0.00288178 0) (1.17586 -0.00287236 0) (1.17368 -0.00286019 0) (1.17151 -0.0028456 0) (1.16935 -0.00282897 0) (1.1672 -0.00281061 0) (1.16507 -0.00279089 0) (1.16296 -0.00277004 0) (1.16085 -0.00274845 0) (1.15878 -0.00272627 0) (1.15671 -0.0027039 0) (1.15467 -0.0026814 0) (1.15262 -0.00265921 0) (1.15063 -0.00263723 0) (1.14861 -0.00261603 0) (1.14666 -0.00259525 0) (1.14465 -0.00257571 0) (1.14276 -0.00255668 0) (1.14074 -0.00253936 0) (1.13893 -0.00252246 0) (1.13686 -0.0025078 0) (1.13517 -0.00249329 0) (1.133 -0.00248164 0) (1.13149 -0.00246968 0) (1.12912 -0.00246123 0) (1.12791 -0.00245203 0) (1.12518 -0.00244662 0) (1.12447 -0.00244093 0) (1.12105 -0.00243764 0) (1.186 0.00192989 0) (1.19022 0.00182048 0) (1.19423 0.00171171 0) (1.198 0.00160424 0) (1.20152 0.00149802 0) (1.2048 0.0013925 0) (1.20785 0.00128734 0) (1.21065 0.00118265 0) (1.21323 0.00107876 0) (1.21557 0.000976062 0) (1.21768 0.000874885 0) (1.21956 0.000775481 0) (1.22121 0.000678062 0) (1.22265 0.000582823 0) (1.22387 0.000489941 0) (1.22488 0.000399574 0) (1.22569 0.000311857 0) (1.2263 0.000226904 0) (1.22672 0.000144804 0) (1.22696 6.56336e-05 -4.79549e-28) (1.22702 -1.05514e-05 4.79549e-28) (1.22691 -8.36983e-05 0) (1.22664 -0.000153775 0) (1.22621 -0.000220759 0) (1.22563 -0.000284634 0) (1.2249 -0.000345393 0) (1.22405 -0.000403036 0) (1.22306 -0.00045757 -1.59056e-11) (1.22196 -0.000509008 1.59056e-11) (1.22074 -0.000557369 0) (1.21941 -0.00060268 0) (1.21799 -0.00064497 0) (1.21647 -0.000684278 0) (1.21486 -0.000720648 0) (1.21318 -0.000754128 0) (1.21142 -0.000784776 0) (1.20959 -0.000812654 0) (1.20771 -0.000837833 0) (1.20577 -0.000860388 0) (1.20378 -0.000880403 0) (1.20175 -0.000897966 0) (1.19968 -0.000913175 0) (1.19758 -0.000926129 0) (1.19545 -0.000936936 0) (1.1933 -0.000945709 0) (1.19114 -0.000952564 0) (1.18896 -0.00095762 0) (1.18676 -0.000961001 0) (1.18457 -0.000962831 0) (1.18237 -0.00096324 0) (1.18017 -0.000962349 0) (1.17798 -0.000960291 0) (1.17579 -0.000957182 0) (1.17361 -0.000953159 0) (1.17144 -0.000948324 0) (1.16928 -0.000942816 0) (1.16714 -0.000936718 0) (1.16501 -0.000930177 0) (1.1629 -0.000923244 0) (1.16079 -0.000916082 -1.69984e-28) (1.15872 -0.000908695 1.69984e-28) (1.15664 -0.000901281 0) (1.15461 -0.000893771 0) (1.15256 -0.000886428 0) (1.15057 -0.00087907 0) (1.14854 -0.000872078 0) (1.1466 -0.000865086 0) (1.14458 -0.000858689 0) (1.1427 -0.000852219 0) (1.14067 -0.00084663 0) (1.13887 -0.000840774 0) (1.1368 -0.000836191 0) (1.13511 -0.000830978 0) (1.13294 -0.000827581 0) (1.13143 -0.000822995 0) (1.12906 -0.000820908 0) (1.12785 -0.000816975 0) (1.12511 -0.000816112 0) (1.1244 -0.000813284 0) (1.12098 -0.000812919 0) (1.29128 0.121162 1.26953e-19) (1.29109 0.121551 -3.97533e-20) (1.28544 0.118925 -1.6142e-20) (1.27843 0.115794 -3.06751e-20) (1.27051 0.111959 -1.88074e-20) (1.26247 0.107575 8.42575e-20) (1.25479 0.102936 -1.61184e-21) (1.24762 0.0981345 -3.34389e-20) (1.24106 0.0932481 -1.22718e-20) (1.2351 0.0883494 4.05877e-20) (1.22963 0.0834699 -3.78696e-20) (1.22458 0.0786271 -1.74988e-20) (1.2199 0.0738369 2.31546e-20) (1.21557 0.0691099 7.65622e-21) (1.21154 0.0644522 -1.02636e-20) (1.20782 0.0598678 2.81465e-21) (1.20438 0.0553586 -1.84102e-22) (1.20122 0.0509239 -5.42857e-21) (1.19834 0.0465619 1.45568e-20) (1.19571 0.0422691 3.83169e-21) (1.19334 0.0380413 -1.38334e-21) (1.19122 0.0338738 -7.36589e-21) (1.18935 0.0297609 -7.88107e-21) (1.18771 0.0256969 6.19501e-21) (1.18632 0.0216755 -3.84552e-21) (1.18515 0.0176901 3.67343e-21) (1.18422 0.0137355 -6.28331e-23) (1.18352 0.00980116 -2.70616e-21) (1.18305 0.00587337 3.67837e-22) (1.18281 0.00201151 -3.22226e-23) (1.29732 0.127762 7.41225e-20) (1.29079 0.125774 -1.1273e-21) (1.28174 0.121366 -1.1937e-20) (1.27365 0.117435 -1.96849e-20) (1.26541 0.113125 2.7476e-20) (1.25729 0.10832 2.31794e-20) (1.24978 0.10339 -5.40234e-20) (1.24292 0.0984032 4.11883e-20) (1.23667 0.093385 3.06931e-20) (1.23098 0.0883942 -3.19497e-20) (1.22576 0.0834526 -5.31554e-21) (1.22091 0.0785663 1.57527e-20) (1.21642 0.0737467 4.96535e-21) (1.21225 0.0690019 -3.14535e-20) (1.20838 0.0643354 3.45991e-21) (1.2048 0.0597488 2.69812e-21) (1.2015 0.0552421 1.16987e-20) (1.19847 0.0508135 -1.69404e-20) (1.19569 0.0464596 2.0816e-20) (1.19317 0.0421765 -1.32191e-20) (1.1909 0.0379592 8.18696e-21) (1.18886 0.0338024 -3.44401e-21) (1.18706 0.0297004 -1.1859e-21) (1.18548 0.0256469 -1.30632e-21) (1.18414 0.0216357 3.22306e-21) (1.18302 0.01766 -3.57021e-21) (1.18212 0.0137147 1.06077e-21) (1.18143 0.00978843 2.77222e-22) (1.18097 0.00587164 -1.01926e-21) (1.18072 0.00202305 1.71935e-22) (1.29191 0.131439 -7.28838e-20) (1.28421 0.1286 6.3983e-20) (1.27577 0.123813 6.26306e-22) (1.26832 0.119743 -6.10036e-21) (1.26055 0.115309 3.22282e-20) (1.25267 0.110274 -7.34912e-20) (1.24542 0.105127 2.78395e-20) (1.23883 0.0999766 1.50668e-20) (1.23281 0.094807 -4.7427e-20) (1.22731 0.0896727 3.55256e-20) (1.22225 0.0846047 -3.15687e-21) (1.21757 0.0796061 1.61261e-20) (1.21322 0.0746848 -4.71808e-20) (1.20918 0.0698491 1.10673e-20) (1.20544 0.0651011 7.0244e-21) (1.20198 0.0604408 -2.74677e-21) (1.19878 0.0558669 5.2219e-22) (1.19585 0.0513766 7.62045e-21) (1.19316 0.0469659 -1.70423e-20) (1.19072 0.0426298 -1.23414e-21) (1.18851 0.0383628 4.0692e-21) (1.18654 0.034159 -3.69264e-21) (1.18479 0.0300121 8.89448e-21) (1.18326 0.0259156 7.06112e-22) (1.18196 0.0218626 2.10885e-21) (1.18086 0.0178463 -2.47393e-21) (1.17999 0.0138609 6.51705e-22) (1.17931 0.00989477 -1.78198e-21) (1.17885 0.0059407 1.3983e-21) (1.1786 0.00205458 9.29971e-22) (1.28981 0.135809 -5.09199e-20) (1.28163 0.13215 1.17651e-20) (1.27216 0.126477 -7.60637e-20) (1.26387 0.12173 4.32586e-20) (1.25586 0.116873 2.04471e-21) (1.248 0.111496 -1.60661e-20) (1.24088 0.106074 5.85737e-20) (1.23454 0.100745 -4.21937e-20) (1.22876 0.0954464 2.7741e-20) (1.22347 0.090204 1.14244e-20) (1.21859 0.0850511 -5.81402e-20) (1.21408 0.0799864 3.38445e-20) (1.20988 0.0750112 4.99621e-21) (1.20598 0.0701311 -1.77336e-20) (1.20237 0.0653471 -1.04619e-21) (1.19903 0.0606571 1.26552e-20) (1.19595 0.0560583 5.36034e-21) (1.19312 0.0515467 -8.55896e-21) (1.19053 0.0471175 3.42515e-21) (1.18817 0.042765 1.36635e-21) (1.18604 0.0384832 -1.1473e-21) (1.18414 0.0342658 -4.84837e-21) (1.18245 0.030106 6.68704e-21) (1.18098 0.0259971 1.32725e-21) (1.17971 0.0219323 -1.51348e-21) (1.17865 0.0179043 -8.08725e-21) (1.1778 0.0139075 6.10438e-21) (1.17715 0.00992993 -8.49489e-22) (1.17669 0.00596721 1.93359e-22) (1.17644 0.00207066 -3.80686e-22) (1.28454 0.139335 -2.35486e-20) (1.27566 0.134916 -5.31608e-20) (1.2664 0.128779 5.14947e-20) (1.25839 0.123722 3.42288e-20) (1.25078 0.118669 -3.44075e-20) (1.2433 0.113108 -2.11764e-21) (1.23647 0.107483 1.11883e-20) (1.23038 0.101989 -3.91054e-20) (1.22483 0.0965568 4.74114e-20) (1.21972 0.0911887 5.1173e-21) (1.21501 0.0859222 -5.26334e-20) (1.21064 0.0807606 3.41815e-20) (1.20658 0.0757009 -9.663e-21) (1.20282 0.0707462 1.18215e-20) (1.19933 0.0658966 3.97933e-21) (1.1961 0.0611487 -1.80322e-20) (1.19313 0.056498 3.60355e-21) (1.19039 0.0519399 -7.91478e-21) (1.18789 0.0474683 8.96459e-21) (1.18562 0.043077 8.62659e-21) (1.18356 0.0387594 -2.58114e-21) (1.18172 0.0345084 3.31988e-22) (1.18008 0.0303172 -2.38846e-21) (1.17866 0.0261784 3.0228e-21) (1.17743 0.0220848 2.09897e-21) (1.17641 0.0180293 -3.86082e-21) (1.17558 0.0140055 1.93923e-21) (1.17494 0.0100015 -2.15378e-21) (1.17449 0.00601485 7.8028e-22) (1.17424 0.00209128 -8.03467e-22) (1.27968 0.142879 -5.29792e-20) (1.27126 0.137976 -1.34243e-20) (1.26202 0.131369 4.11365e-20) (1.25366 0.125788 2.44246e-20) (1.24593 0.120332 -5.24973e-20) (1.23861 0.114491 -8.68169e-21) (1.23198 0.108629 7.14361e-21) (1.2261 0.102949 -3.72216e-20) (1.22078 0.0973831 2.09304e-20) (1.21586 0.091904 1.89069e-20) (1.21131 0.0865415 1.73219e-20) (1.2071 0.0813013 -3.51036e-20) (1.20319 0.0761765 -2.66187e-21) (1.19956 0.071166 1.18062e-20) (1.1962 0.0662685 -1.00952e-20) (1.19309 0.0614792 -5.78127e-21) (1.19023 0.0567924 -5.91431e-21) (1.18759 0.0522021 -1.24716e-21) (1.18518 0.0477017 9.4669e-21) (1.18299 0.0432843 -8.66647e-21) (1.18101 0.0389426 -7.84377e-22) (1.17923 0.0346693 2.96603e-21) (1.17766 0.030457 2.39812e-22) (1.17628 0.0262984 -7.42477e-21) (1.1751 0.0221858 1.39879e-21) (1.17411 0.0181119 1.13451e-21) (1.1733 0.0140704 -1.42058e-21) (1.17268 0.0100491 -4.1612e-22) (1.17225 0.00604759 4.08615e-23) (1.172 0.00210503 -1.29466e-21) (1.27418 0.14626 2.6102e-20) (1.26558 0.140768 3.77571e-20) (1.25639 0.133721 -1.5739e-20) (1.24814 0.127735 2.0704e-20) (1.24069 0.121986 -1.35309e-20) (1.23377 0.115961 5.35289e-20) (1.22747 0.109926 -3.26623e-20) (1.22184 0.10408 5.05583e-21) (1.21672 0.0983786 2.55607e-20) (1.21199 0.0927839 -1.56559e-20) (1.20761 0.0873161 8.36827e-21) (1.20355 0.0819845 1.12972e-20) (1.19979 0.0767819 -1.16376e-20) (1.19629 0.0717035 1.46859e-20) (1.19305 0.0667462 6.99656e-21) (1.19006 0.0619043 -1.8153e-21) (1.1873 0.0571709 -2.5609e-21) (1.18476 0.0525389 8.08546e-21) (1.18244 0.0480008 6.09101e-21) (1.18033 0.043549 2.74337e-21) (1.17842 0.0391757 -8.71212e-21) (1.17671 0.0348731 6.40018e-21) (1.17519 0.0306335 -6.26222e-22) (1.17387 0.026449 3.37298e-21) (1.17273 0.0223118 4.31644e-22) (1.17177 0.0182145 2.50613e-21) (1.17099 0.0141503 -3.63942e-22) (1.17039 0.010107 4.53421e-21) (1.16996 0.00608572 -1.23977e-22) (1.16972 0.00211848 4.15207e-21) (1.26851 0.149568 -3.24841e-20) (1.26023 0.143587 3.91793e-20) (1.25126 0.136179 -6.87009e-21) (1.24303 0.129768 -3.94449e-20) (1.23566 0.123648 1.60143e-21) (1.22897 0.117376 -2.86294e-20) (1.22293 0.111143 4.51444e-20) (1.21751 0.105118 -5.64687e-20) (1.21259 0.0992738 -3.44412e-21) (1.20805 0.0935662 3.80127e-20) (1.20384 0.0880012 3.80363e-21) (1.19993 0.0825856 -1.2156e-20) (1.19631 0.0773125 -1.40966e-20) (1.19295 0.0721736 6.40616e-22) (1.18984 0.0671634 -1.17459e-20) (1.18697 0.0622752 4.50287e-21) (1.18431 0.0575007 1.45055e-21) (1.18188 0.052832 -1.86614e-21) (1.17965 0.0482609 -1.48798e-20) (1.17762 0.043779 3.34693e-21) (1.17578 0.039378 4.50541e-22) (1.17414 0.0350498 5.2729e-21) (1.17268 0.0307861 -2.57061e-21) (1.1714 0.026579 -2.57372e-21) (1.1703 0.0224204 -4.27401e-21) (1.16938 0.0183026 -1.6394e-21) (1.16863 0.0142186 -3.50805e-21) (1.16805 0.0101561 -2.52407e-21) (1.16763 0.00611792 -1.7802e-21) (1.16739 0.00212808 -3.2001e-21) (1.26268 0.152831 -4.50817e-20) (1.25442 0.14632 -1.5429e-20) (1.24553 0.138527 4.15956e-20) (1.23745 0.131715 1.32319e-21) (1.23036 0.125268 -3.98787e-20) (1.22403 0.11879 2.29927e-20) (1.21831 0.112395 3.58122e-20) (1.21314 0.106212 -4.33603e-20) (1.20842 0.100229 2.76346e-20) (1.20407 0.0944072 -1.30065e-21) (1.20003 0.0887428 -8.68607e-22) (1.19628 0.0832394 -1.13926e-21) (1.1928 0.0778906 2.79188e-21) (1.18958 0.0726863 1.48856e-20) (1.18659 0.0676186 -2.09434e-20) (1.18383 0.0626796 1.38968e-20) (1.18129 0.05786 -1.07507e-21) (1.17895 0.0531509 -6.19154e-21) (1.17681 0.0485432 7.48567e-21) (1.17486 0.044028 3.06369e-21) (1.1731 0.0395966 8.29404e-22) (1.17152 0.0352401 4.60511e-21) (1.17012 0.0309501 -7.12769e-22) (1.16889 0.0267182 -2.11085e-21) (1.16784 0.0225362 4.20092e-21) (1.16695 0.0183962 -1.76417e-21) (1.16623 0.0142907 2.29938e-21) (1.16567 0.0102076 1.43975e-21) (1.16527 0.00615072 2.04285e-21) (1.16503 0.00213604 1.94256e-21) (1.25663 0.156032 -3.0176e-21) (1.24853 0.149008 5.17581e-20) (1.23987 0.140874 -2.37632e-20) (1.23201 0.133689 -1.39374e-20) (1.22517 0.12691 2.59129e-20) (1.21912 0.1202 -7.69263e-21) (1.21366 0.113623 2.24702e-20) (1.20871 0.107276 -1.41051e-21) (1.20419 0.101151 -1.27466e-20) (1.20002 0.0952138 -9.91493e-22) (1.19615 0.0894526 -2.77215e-21) (1.19256 0.0838651 1.27806e-21) (1.18924 0.0784435 1.85884e-21) (1.18615 0.0731766 -4.00034e-21) (1.18329 0.0680541 -2.27307e-21) (1.18065 0.0630664 5.90362e-21) (1.17822 0.0582037 8.60105e-21) (1.17598 0.0534558 -5.19714e-23) (1.17393 0.0488131 -2.96044e-21) (1.17206 0.044266 -1.42841e-22) (1.17038 0.0398052 2.27893e-22) (1.16886 0.0354216 1.29384e-21) (1.16752 0.0311063 1.74307e-21) (1.16634 0.0268506 5.20965e-22) (1.16533 0.022646 -2.78901e-21) (1.16448 0.0184845 4.91202e-21) (1.16378 0.0143584 -6.3809e-22) (1.16324 0.0102554 1.24577e-21) (1.16286 0.00618066 1.22607e-21) (1.16263 0.00214136 1.11018e-21) (1.25043 0.159184 -6.85973e-20) (1.24239 0.151645 2.1194e-20) (1.23392 0.14316 3.1797e-20) (1.22633 0.135615 -5.24589e-20) (1.21981 0.128522 3.17354e-20) (1.21409 0.121595 -1.57271e-20) (1.20893 0.114852 1.41259e-20) (1.20423 0.108354 -2.83019e-20) (1.19991 0.102093 1.26316e-20) (1.19593 0.096041 -2.19683e-21) (1.19223 0.0901829 8.70131e-21) (1.18881 0.0845105 -3.09596e-21) (1.18563 0.0790147 3.09292e-21) (1.18268 0.0736833 -1.03521e-20) (1.17995 0.0685041 1.27512e-20) (1.17743 0.0634662 -1.28991e-20) (1.1751 0.0585586 4.8993e-21) (1.17296 0.0537705 -4.29761e-23) (1.171 0.0490914 -4.72794e-21) (1.16922 0.044511 1.28665e-21) (1.16761 0.0400197 -4.57966e-24) (1.16616 0.0356078 2.48431e-22) (1.16487 0.0312662 -5.02063e-21) (1.16375 0.0269858 1.6333e-21) (1.16278 0.022758 -1.60066e-21) (1.16196 0.0185743 -2.64533e-21) (1.1613 0.0144268 -7.84794e-22) (1.16078 0.0103033 -2.09125e-21) (1.16041 0.00620993 -2.46227e-21) (1.16019 0.00214488 -1.63556e-21) (1.24401 0.16227 -7.25086e-21) (1.23606 0.154225 2.60499e-20) (1.22789 0.145409 -1.90324e-20) (1.22066 0.137532 7.23406e-21) (1.21448 0.130141 -1.60893e-20) (1.20905 0.122992 1.55487e-22) (1.20416 0.116073 5.27612e-21) (1.19968 0.10942 2.6796e-21) (1.19557 0.103023 2.2785e-21) (1.19178 0.0968565 -5.8085e-21) (1.18826 0.0909021 2.18938e-21) (1.185 0.0851466 3.51773e-21) (1.18197 0.0795782 -9.70749e-21) (1.17916 0.0741834 -1.06046e-21) (1.17656 0.0689486 9.79642e-21) (1.17416 0.0638613 -6.5602e-21) (1.17194 0.0589095 -5.65417e-22) (1.1699 0.0540817 1.82749e-21) (1.16803 0.0493665 -3.74507e-22) (1.16633 0.0447533 3.38593e-21) (1.16479 0.0402317 -4.86557e-22) (1.16341 0.0357918 -2.76439e-21) (1.16218 0.031424 -1.24227e-21) (1.16111 0.0271191 9.34366e-23) (1.16018 0.022868 -8.70135e-22) (1.15941 0.0186622 9.04206e-22) (1.15877 0.0144935 -1.52237e-22) (1.15828 0.0103496 -4.12787e-22) (1.15793 0.00623754 9.58763e-22) (1.15772 0.00214642 8.05711e-22) (1.2374 0.165286 6.60744e-22) (1.22955 0.156755 -2.87516e-21) (1.2217 0.147611 6.55238e-21) (1.21485 0.139415 7.84439e-22) (1.20903 0.131738 -5.24218e-21) (1.20392 0.124375 7.99733e-21) (1.1993 0.117284 -1.14995e-21) (1.19507 0.110485 -1.0088e-20) (1.19118 0.103957 6.44419e-21) (1.18758 0.0976782 5.65085e-21) (1.18424 0.0916284 -5.1492e-21) (1.18114 0.08579 -5.74639e-21) (1.17827 0.080149 -5.14377e-21) (1.1756 0.0746905 1.48962e-20) (1.17313 0.0693994 -4.32642e-21) (1.17085 0.0642621 -1.95149e-21) (1.16874 0.0592656 3.78537e-21) (1.1668 0.0543974 -2.84447e-21) (1.16502 0.0496457 5.08095e-21) (1.1634 0.044999 -4.0806e-21) (1.16194 0.0404466 4.49325e-21) (1.16062 0.0359781 1.21604e-21) (1.15946 0.0315837 -3.13462e-21) (1.15843 0.0272538 2.6778e-21) (1.15755 0.022979 -1.27337e-21) (1.15681 0.0187507 1.95344e-21) (1.15621 0.0145602 -3.82023e-24) (1.15574 0.0103957 1.00885e-22) (1.15541 0.0062643 -5.85077e-22) (1.15521 0.00214639 5.33212e-22) (1.23056 0.168218 1.35937e-20) (1.22285 0.159228 -1.41492e-20) (1.2154 0.149766 5.91454e-21) (1.20898 0.141274 8.33613e-21) (1.20354 0.133325 -1.69498e-21) (1.19874 0.125753 5.81768e-22) (1.19439 0.118489 7.24798e-21) (1.1904 0.111541 -1.17256e-20) (1.18672 0.104885 9.86995e-21) (1.18332 0.0984948 -3.21398e-21) (1.18016 0.0923505 5.96623e-21) (1.17724 0.0864302 -2.9194e-21) (1.17452 0.0807178 -5.88746e-21) (1.17199 0.0751963 1.8154e-21) (1.16966 0.0698496 6.32003e-22) (1.16749 0.0646628 1.17758e-21) (1.16549 0.0596218 -7.31119e-23) (1.16365 0.0547134 7.26916e-22) (1.16197 0.0499251 3.15543e-21) (1.16043 0.045245 -1.818e-21) (1.15904 0.0406618 -2.96739e-21) (1.1578 0.0361647 3.13015e-21) (1.15669 0.0317436 -1.59011e-21) (1.15572 0.0273885 -2.45434e-22) (1.15488 0.0230899 2.4494e-21) (1.15418 0.0188389 -1.8094e-21) (1.15361 0.0146265 1.80824e-21) (1.15317 0.010441 -8.55801e-22) (1.15285 0.00629004 5.65125e-22) (1.15266 0.0021449 -5.31844e-23) (1.22351 0.171056 1.77744e-20) (1.21598 0.161643 -4.05139e-22) (1.20898 0.151873 -1.61002e-20) (1.20302 0.143102 1.78458e-20) (1.19796 0.13489 -1.46077e-20) (1.19348 0.127115 -1.89582e-21) (1.18941 0.119681 7.17352e-21) (1.18566 0.112591 -2.72741e-21) (1.18221 0.105809 2.30245e-21) (1.17901 0.099311 -1.44509e-21) (1.17604 0.0930738 8.92253e-22) (1.17328 0.0870726 -7.39052e-22) (1.17072 0.0812892 3.511e-22) (1.16835 0.0757051 -2.30944e-21) (1.16614 0.0703029 -1.05438e-22) (1.1641 0.0650665 1.29003e-21) (1.16221 0.059981 5.2148e-22) (1.16047 0.0550323 -6.47313e-22) (1.15888 0.0502073 -3.02699e-21) (1.15743 0.0454935 3.18851e-21) (1.15611 0.0408791 -1.475e-21) (1.15493 0.0363532 6.72419e-25) (1.15389 0.031905 1.36819e-21) (1.15297 0.0275244 -7.35655e-22) (1.15218 0.0232018 5.28474e-22) (1.15151 0.0189276 -2.36691e-22) (1.15098 0.0146931 -6.20958e-22) (1.15056 0.0104863 -2.60837e-22) (1.15026 0.00631512 3.6588e-22) (1.15009 0.00214225 1.18298e-22) (1.21622 0.173786 -1.62942e-20) (1.20894 0.163996 5.07322e-21) (1.20247 0.153928 -5.96307e-22) (1.19698 0.144898 3.46596e-21) (1.19232 0.136434 4.40824e-21) (1.18815 0.128463 -5.67877e-21) (1.18436 0.120862 -2.99313e-21) (1.18087 0.113631 2.18865e-22) (1.17764 0.106727 -6.34291e-22) (1.17465 0.100122 2.24697e-21) (1.17187 0.0937938 6.084e-22) (1.16929 0.0877129 -1.00399e-21) (1.16689 0.0818596 -3.78387e-21) (1.16466 0.0762138 5.51454e-21) (1.16258 0.0707567 -3.52474e-21) (1.16066 0.0654712 2.75305e-22) (1.15889 0.0603414 5.79851e-22) (1.15725 0.0553526 2.32749e-22) (1.15575 0.0504909 -9.44404e-23) (1.15439 0.0457434 3.0318e-22) (1.15315 0.0410979 -9.66948e-22) (1.15204 0.036543 1.4174e-21) (1.15105 0.0320676 -5.47938e-22) (1.15018 0.0276614 -7.77056e-22) (1.14944 0.0233143 -2.5592e-22) (1.14881 0.0190169 -6.32999e-23) (1.14831 0.0147598 -5.4614e-22) (1.14792 0.0105314 5.13851e-22) (1.14765 0.00633958 2.00654e-22) (1.14748 0.00213865 -6.56329e-22) (1.2087 0.176396 3.81363e-21) (1.20175 0.166282 -2.55273e-21) (1.19585 0.155926 -1.10065e-21) (1.19084 0.146659 9.06297e-22) (1.18658 0.137949 -5.72664e-21) (1.18274 0.12979 1.29801e-21) (1.17924 0.122027 1.76344e-21) (1.176 0.11466 -2.16436e-21) (1.17301 0.107637 4.89942e-21) (1.17023 0.100929 -2.96088e-21) (1.16765 0.0945112 1.29481e-21) (1.16525 0.0883521 -2.67249e-21) (1.16301 0.08243 5.65548e-21) (1.16093 0.0767233 -1.28226e-21) (1.15899 0.0712118 -1.21193e-21) (1.1572 0.0658776 -8.4397e-22) (1.15553 0.0607038 1.2628e-21) (1.154 0.0556749 -1.82484e-21) (1.1526 0.0507766 4.32201e-22) (1.15131 0.0459954 4.00274e-22) (1.15015 0.0413187 8.21196e-22) (1.14911 0.0367346 -7.78114e-22) (1.14818 0.0322319 1.19731e-22) (1.14737 0.0277998 3.6202e-22) (1.14667 0.0234281 4.71196e-22) (1.14608 0.019107 -6.22683e-22) (1.14561 0.0148272 -5.06086e-22) (1.14525 0.0105767 -8.64425e-23) (1.145 0.00636357 -2.99209e-22) (1.14484 0.00213435 2.84584e-22) (1.20097 0.178877 9.01863e-21) (1.19439 0.168493 -5.57166e-21) (1.18914 0.157858 1.98256e-21) (1.18461 0.148381 -7.15791e-22) (1.18075 0.139432 -2.83648e-21) (1.17725 0.131095 6.40557e-21) (1.17405 0.123174 -1.62139e-21) (1.17108 0.115676 -1.6221e-21) (1.16833 0.108537 6.63207e-22) (1.16577 0.101728 1.92772e-21) (1.16339 0.0952237 -1.7653e-21) (1.16116 0.088988 5.10286e-22) (1.15909 0.0829985 2.14812e-22) (1.15716 0.0772319 -4.83835e-22) (1.15536 0.0716669 1.54309e-21) (1.15369 0.0662845 -1.02933e-21) (1.15214 0.0610672 -2.16007e-22) (1.15072 0.0559986 7.44046e-23) (1.1494 0.0510639 -7.52529e-22) (1.14821 0.0462491 2.29299e-22) (1.14712 0.0415411 1.96744e-22) (1.14614 0.0369279 7.80349e-22) (1.14528 0.0323977 7.37211e-22) (1.14452 0.0279396 -6.86031e-22) (1.14387 0.0235431 3.29064e-22) (1.14332 0.0191981 1.16021e-22) (1.14289 0.0148953 1.41805e-22) (1.14255 0.0106223 -9.94971e-24) (1.14232 0.00638719 -1.9047e-22) (1.14218 0.00212961 2.3381e-22) (1.19303 0.181224 -8.50989e-22) (1.18687 0.170623 3.959e-21) (1.18231 0.159712 -1.93427e-21) (1.17828 0.150058 -4.6704e-22) (1.17484 0.140878 1.65231e-21) (1.17168 0.132372 -7.73419e-22) (1.16878 0.124299 2.95982e-22) (1.16609 0.116677 5.58778e-22) (1.16359 0.109425 2.67286e-23) (1.16125 0.102518 -1.31881e-21) (1.15908 0.0959302 2.19353e-21) (1.15704 0.08962 -1.1138e-21) (1.15514 0.0835645 -6.14061e-23) (1.15336 0.0777392 -7.42353e-22) (1.1517 0.0721216 4.03846e-22) (1.15016 0.0666918 -5.05599e-22) (1.14872 0.0614314 1.79443e-22) (1.1474 0.0563235 1.8573e-22) (1.14618 0.0513526 6.6886e-22) (1.14507 0.0465044 -6.31246e-22) (1.14406 0.0417653 -1.15844e-22) (1.14316 0.0371228 -2.08585e-22) (1.14235 0.0325651 -3.6434e-22) (1.14164 0.0280809 5.68372e-23) (1.14104 0.0236594 -2.98399e-22) (1.14054 0.0192904 -2.51832e-22) (1.14013 0.0149644 -1.63322e-23) (1.13983 0.0106682 -2.79575e-22) (1.13962 0.00641081 -1.15126e-22) (1.13949 0.00212497 -1.88888e-22) (1.18492 0.183444 1.75372e-21) (1.17921 0.17268 2.32141e-22) (1.17537 0.161477 -1.27808e-22) (1.17183 0.151682 -1.03513e-21) (1.16882 0.142281 6.65512e-22) (1.16601 0.133619 -2.35886e-22) (1.16344 0.1254 2.73429e-22) (1.16103 0.117658 -4.88429e-22) (1.15878 0.110299 4.78411e-22) (1.15668 0.103297 -4.07927e-22) (1.15471 0.0966279 3.6856e-22) (1.15287 0.0902454 -7.50892e-23) (1.15114 0.0841257 -4.10472e-22) (1.14952 0.0782432 4.46205e-22) (1.148 0.0725744 -4.2281e-22) (1.14659 0.0670981 2.08831e-22) (1.14527 0.0617954 8.56245e-23) (1.14406 0.0566488 -1.23235e-22) (1.14294 0.0516422 3.32101e-24) (1.14191 0.0467608 1.41252e-22) (1.14098 0.0419908 -1.17476e-23) (1.14014 0.0373192 2.03355e-23) (1.1394 0.032734 -9.26805e-23) (1.13874 0.0282236 1.52979e-23) (1.13819 0.023777 8.91276e-23) (1.13772 0.0193838 3.38415e-23) (1.13735 0.0150344 -8.45719e-23) (1.13708 0.0107146 7.25711e-23) (1.13689 0.00643518 -3.20349e-24) (1.13677 0.00212135 -1.1761e-23) (1.17666 0.185554 -1.57879e-21) (1.1714 0.174679 -1.55953e-22) (1.16829 0.163145 2.15384e-22) (1.16525 0.153246 6.89706e-22) (1.16269 0.143632 -4.85857e-22) (1.16026 0.134828 2.68975e-23) (1.15802 0.12647 -1.20841e-22) (1.15591 0.118619 4.12292e-22) (1.15391 0.111155 -4.80139e-22) (1.15205 0.10406 3.98406e-22) (1.1503 0.0973135 -4.29519e-22) (1.14866 0.0908614 -2.95665e-23) (1.1471 0.0846801 4.37507e-22) (1.14564 0.0787423 -3.37919e-22) (1.14427 0.0730237 2.63509e-22) (1.14299 0.0675023 -1.39645e-22) (1.1418 0.0621582 -5.57251e-24) (1.14069 0.0569736 9.97586e-23) (1.13966 0.0519319 -4.66274e-23) (1.13872 0.0470177 -1.22202e-22) (1.13787 0.0422171 -3.11952e-23) (1.1371 0.0375167 7.63869e-23) (1.13642 0.0329041 3.83595e-23) (1.13582 0.0283675 1.61238e-23) (1.13531 0.0238958 -1.47597e-23) (1.13489 0.0194783 -1.48399e-25) (1.13455 0.0151053 2.62928e-24) (1.1343 0.0107615 5.58533e-23) (1.13414 0.00646125 -3.39569e-23) (1.13404 0.00211982 6.6533e-24) (1.16818 0.187562 -7.99433e-22) (1.16345 0.176631 -5.4718e-24) (1.16107 0.164722 1.22894e-21) (1.15853 0.15474 -1.50421e-22) (1.15644 0.144919 -6.65108e-22) (1.1544 0.135989 6.97534e-22) (1.15252 0.127503 -6.99295e-22) (1.15071 0.119555 6.38381e-23) (1.14899 0.111992 -3.86968e-22) (1.14738 0.104805 7.86313e-22) (1.14586 0.0979825 -9.11879e-22) (1.14441 0.0914646 4.01643e-22) (1.14304 0.0852247 -2.49169e-22) (1.14175 0.0792343 9.10541e-23) (1.14052 0.0734678 -1.65082e-22) (1.13937 0.0679027 5.42666e-22) (1.1383 0.0625186 -1.92552e-22) (1.1373 0.057297 -9.67763e-23) (1.13637 0.0522208 -1.2622e-22) (1.13552 0.0472745 1.21545e-22) (1.13475 0.0424437 -4.98059e-23) (1.13405 0.0377147 -1.93128e-22) (1.13343 0.0330749 1.23604e-23) (1.13288 0.0285123 -5.15121e-23) (1.13242 0.0240155 -2.46355e-22) (1.13204 0.0195737 1.08329e-22) (1.13174 0.015177 -7.92481e-23) (1.13152 0.0108091 -1.51715e-22) (1.13137 0.00648896 -3.7577e-23) (1.13128 0.00212019 -1.04799e-22) (1.15942 0.189462 -4.81328e-21) (1.15535 0.178524 2.64623e-21) (1.1537 0.166199 -1.67198e-21) (1.1517 0.156152 1.29434e-21) (1.15009 0.146135 1.43232e-21) (1.14847 0.137094 -2.59526e-21) (1.14695 0.128494 7.96987e-22) (1.14547 0.12046 5.03626e-22) (1.14404 0.112803 4.66362e-22) (1.14269 0.105526 -1.00838e-21) (1.14139 0.0986331 6.0301e-22) (1.14015 0.0920539 2.35245e-22) (1.13896 0.0857589 1.16776e-22) (1.13783 0.0797184 1.55394e-22) (1.13676 0.0739061 -6.03494e-22) (1.13575 0.0682989 2.25738e-22) (1.13479 0.062876 1.36289e-22) (1.1339 0.0576183 -2.93505e-22) (1.13307 0.0525085 1.32171e-22) (1.13231 0.0475308 1.3968e-22) (1.13161 0.0426702 1.96095e-22) (1.13098 0.037913 -8.77049e-23) (1.13042 0.0332462 1.05596e-22) (1.12993 0.0286578 2.2271e-22) (1.12952 0.0241359 -1.50696e-22) (1.12918 0.0196699 -1.41488e-23) (1.12891 0.0152492 1.51056e-22) (1.12872 0.0108579 3.31141e-23) (1.12859 0.0065167 -1.83042e-23) (1.12853 0.00212035 1.05515e-22) (1.15031 0.19119 -1.20719e-21) (1.14716 0.180309 1.70127e-22) (1.14621 0.167565 1.22969e-21) (1.1448 0.157467 -8.52924e-22) (1.14366 0.147278 7.30149e-22) (1.14248 0.138136 -2.02318e-21) (1.14132 0.129434 1.51345e-21) (1.14019 0.121314 -1.25789e-23) (1.13909 0.113576 -1.32738e-21) (1.13799 0.106225 8.15205e-22) (1.13692 0.0992673 -2.69937e-22) (1.13589 0.0926308 4.63709e-22) (1.13488 0.0862835 -1.23514e-21) (1.13392 0.0801949 2.48653e-22) (1.13299 0.0743386 1.99758e-22) (1.13211 0.0686909 -6.27025e-23) (1.13128 0.0632303 -2.15626e-22) (1.13049 0.0579376 3.76268e-22) (1.12976 0.052795 4.58934e-23) (1.12908 0.0477864 -2.52121e-22) (1.12847 0.0428965 -9.625e-23) (1.12791 0.0381115 8.30198e-23) (1.12741 0.0334181 -7.61324e-23) (1.12698 0.028804 -4.1511e-23) (1.12661 0.0242573 2.41874e-22) (1.1263 0.0197671 -8.41058e-23) (1.12607 0.0153218 2.24947e-23) (1.1259 0.0109085 -7.44766e-23) (1.1258 0.00654313 2.2623e-23) (1.12575 0.00211853 3.68777e-23) (1.14096 0.192602 2.87756e-21) (1.13894 0.181911 -1.07005e-21) (1.13865 0.168826 -5.27915e-22) (1.13784 0.158675 -6.43906e-22) (1.13719 0.148356 -6.70116e-22) (1.13645 0.139119 6.72519e-22) (1.13567 0.130325 4.97255e-22) (1.13488 0.122105 1.30569e-22) (1.13409 0.114306 -3.32679e-22) (1.13326 0.106909 -4.48476e-22) (1.13242 0.0998878 -2.53598e-22) (1.13159 0.0931963 3.52441e-22) (1.13078 0.0867985 2.27202e-22) (1.12998 0.0806637 -4.70603e-22) (1.12921 0.074765 5.60717e-22) (1.12846 0.0690779 2.87983e-23) (1.12775 0.0635809 -1.26477e-22) (1.12708 0.0582541 1.615e-22) (1.12644 0.0530795 -6.6902e-23) (1.12585 0.0480406 5.19377e-23) (1.12531 0.0431221 -1.95474e-22) (1.12482 0.0383097 4.67421e-23) (1.12439 0.03359 -8.55187e-23) (1.12401 0.0289505 1.14397e-22) (1.12368 0.0243791 -9.01109e-23) (1.12342 0.0198648 8.36142e-23) (1.12322 0.0153953 1.63492e-23) (1.12308 0.0109599 5.85949e-23) (1.12299 0.00656927 7.47438e-23) (1.12297 0.00211756 -6.50235e-23) (1.1315 0.19359 -1.49119e-21) (1.13052 0.183292 2.92601e-23) (1.13098 0.169986 1.74095e-21) (1.13078 0.159766 -1.46882e-21) (1.13065 0.149353 1.58101e-21) (1.13035 0.140029 1.63759e-22) (1.12997 0.13116 -5.91435e-22) (1.12953 0.122863 2.93466e-22) (1.12903 0.115005 -9.43867e-23) (1.12847 0.107555 1.64517e-22) (1.12788 0.100481 -9.62436e-23) (1.12727 0.0937402 -4.50037e-23) (1.12665 0.0872964 4.08892e-23) (1.12603 0.081119 3.36301e-23) (1.12541 0.0751806 -1.67699e-23) (1.1248 0.0694566 -1.98691e-24) (1.12421 0.0639249 -3.37932e-23) (1.12365 0.0585655 1.67124e-23) (1.12312 0.0533601 3.53056e-23) (1.12262 0.048292 -4.77597e-23) (1.12216 0.0433456 1.06235e-23) (1.12174 0.0385064 1.7645e-23) (1.12136 0.033761 3.02189e-23) (1.12103 0.0290965 2.54763e-23) (1.12076 0.0245009 -8.09683e-24) (1.12053 0.0199626 4.33355e-23) (1.12036 0.0154693 2.2746e-23) (1.12025 0.0110117 3.66585e-23) (1.12018 0.00659533 5.40969e-24) (1.12017 0.00211797 3.63431e-23) (1.12192 0.194324 -2.49347e-22) (1.12189 0.184439 2.14112e-22) (1.12318 0.170972 -9.31707e-23) (1.12357 0.16073 -1.19025e-22) (1.124 0.150251 1.89387e-23) (1.12417 0.140863 -9.54462e-24) (1.1242 0.131934 8.93956e-23) (1.12411 0.123573 -9.65614e-23) (1.12393 0.115664 1.30358e-22) (1.12366 0.108169 -1.27751e-23) (1.12332 0.101048 8.9948e-23) (1.12293 0.0942626 -9.89636e-23) (1.12251 0.0877768 -9.33657e-23) (1.12206 0.0815599 -8.08029e-23) (1.1216 0.0755845 1.27447e-22) (1.12114 0.0698257 -1.08248e-22) (1.12067 0.0642611 1.38759e-22) (1.12022 0.0588707 -1.25107e-22) (1.11979 0.0536358 3.17003e-22) (1.11938 0.0485395 -8.70607e-24) (1.119 0.0435662 -1.37149e-22) (1.11865 0.0387011 2.61877e-22) (1.11833 0.0339305 -2.27706e-22) (1.11806 0.0292416 2.67342e-24) (1.11783 0.0246221 1.49555e-22) (1.11764 0.0200603 -1.43714e-22) (1.1175 0.0155436 5.16076e-23) (1.11741 0.0110638 -2.30377e-23) (1.11737 0.00662171 -3.03003e-23) (1.11737 0.00212043 1.83023e-23) (1.11226 0.194798 -1.01354e-22) (1.11313 0.185364 1.61643e-22) (1.11524 0.17179 7.18979e-22) (1.11626 0.161561 4.79312e-22) (1.11726 0.151045 -8.0994e-22) (1.11791 0.141612 6.42726e-22) (1.11837 0.13264 3.42671e-23) (1.11865 0.124231 -1.26926e-21) (1.1188 0.116278 6.46895e-22) (1.11882 0.108743 5.33898e-22) (1.11873 0.101582 -3.77183e-22) (1.11858 0.0947577 -2.60985e-22) (1.11836 0.0882349 -8.15938e-22) (1.11809 0.0819827 2.05326e-21) (1.11779 0.0759736 -7.96951e-22) (1.11747 0.0701827 -3.173e-22) (1.11714 0.0645876 1.89977e-22) (1.1168 0.0591679 -2.73921e-22) (1.11647 0.0539051 2.35197e-22) (1.11615 0.048782 -8.90475e-22) (1.11584 0.0437827 2.95997e-22) (1.11556 0.0388926 4.65655e-24) (1.11531 0.0340977 -2.57089e-22) (1.11509 0.029385 2.31518e-22) (1.1149 0.0247422 -3.63697e-22) (1.11475 0.0201573 1.10596e-22) (1.11464 0.0156179 -1.76379e-22) (1.11458 0.011116 -1.47786e-22) (1.11455 0.00664842 1.04992e-22) (1.11457 0.002125 -8.82952e-23) (1.10248 0.195031 -1.00042e-21) (1.10426 0.186058 3.90798e-21) (1.10716 0.172428 -3.17286e-21) (1.10884 0.162243 -9.84079e-23) (1.11042 0.151725 -2.29399e-21) (1.11158 0.142265 2.57915e-22) (1.11249 0.133268 3.22314e-23) (1.11316 0.124825 6.78785e-22) (1.11364 0.11684 8.92166e-22) (1.11396 0.109274 -1.43363e-21) (1.11414 0.10208 6.24876e-22) (1.11422 0.0952237 -2.01064e-22) (1.11421 0.088669 -1.25539e-21) (1.11412 0.0823857 -4.9542e-22) (1.11398 0.0763464 2.34842e-21) (1.11381 0.0705263 -1.01861e-21) (1.1136 0.0649029 -2.57624e-23) (1.11338 0.059456 1.00129e-22) (1.11315 0.0541668 -8.24062e-23) (1.11292 0.0490182 4.65859e-22) (1.11269 0.0439942 -1.07173e-22) (1.11248 0.03908 -9.00831e-22) (1.11229 0.0342616 -3.23702e-23) (1.11212 0.029526 1.26811e-23) (1.11197 0.0248606 4.86547e-22) (1.11186 0.0202533 -2.3667e-23) (1.11178 0.0156916 -4.10508e-23) (1.11174 0.0111681 -3.98881e-22) (1.11173 0.00667548 -2.32551e-22) (1.11176 0.00213183 -5.9607e-23) (1.09258 0.195007 -1.2981e-20) (1.09528 0.186515 5.20716e-21) (1.09897 0.172889 6.08171e-21) (1.10134 0.162762 -9.25545e-21) (1.10352 0.152276 8.32424e-21) (1.10522 0.14281 -4.39734e-21) (1.10658 0.133808 4.73255e-21) (1.10765 0.125349 -4.9869e-21) (1.10848 0.117346 1.14916e-21) (1.1091 0.109757 7.29895e-22) (1.10955 0.102541 2.80722e-21) (1.10986 0.0956584 -1.1514e-21) (1.11006 0.0890773 1.30781e-21) (1.11016 0.0827673 -1.69608e-21) (1.11018 0.0767013 1.74955e-21) (1.11015 0.0708548 -3.22434e-21) (1.11008 0.0652056 1.65719e-21) (1.10997 0.0597334 -2.73664e-23) (1.10984 0.0544195 -9.76291e-23) (1.1097 0.0492469 1.36095e-21) (1.10956 0.0441994 1.81372e-22) (1.10941 0.0392623 1.26617e-21) (1.10928 0.0344214 -1.16776e-21) (1.10916 0.0296637 3.8027e-22) (1.10906 0.0249764 -1.60882e-22) (1.10898 0.0203475 5.633e-22) (1.10893 0.0157644 8.00863e-22) (1.10891 0.0112198 5.54537e-22) (1.10892 0.00670282 5.43333e-22) (1.10896 0.00214097 5.88938e-22) (1.08258 0.194729 -4.94575e-21) (1.08623 0.186708 9.79429e-21) (1.09069 0.173158 -4.15717e-21) (1.0938 0.163097 -6.98373e-21) (1.09659 0.152686 5.99681e-21) (1.09882 0.143238 -9.72214e-22) (1.10065 0.134257 4.4944e-21) (1.10212 0.125801 -7.58894e-22) (1.10329 0.117794 -2.58486e-22) (1.10422 0.110195 -1.98157e-21) (1.10494 0.102962 -2.12446e-21) (1.10549 0.0960606 3.72227e-22) (1.1059 0.0894581 8.01705e-23) (1.10619 0.0831255 -1.44216e-21) (1.10638 0.0770362 -5.05685e-22) (1.1065 0.0711662 1.33754e-21) (1.10656 0.0654937 3.01982e-21) (1.10657 0.0599983 -9.79852e-23) (1.10655 0.0546616 -2.05983e-21) (1.10649 0.0494665 -9.97586e-23) (1.10643 0.044397 -2.70139e-22) (1.10636 0.0394381 4.3276e-22) (1.10628 0.0345759 -6.23073e-22) (1.10621 0.0297971 -3.97098e-22) (1.10616 0.025089 -6.32335e-22) (1.10612 0.0204393 8.70623e-23) (1.10609 0.0158358 -1.82071e-22) (1.10609 0.0112707 -8.2728e-22) (1.10611 0.00673032 -2.28174e-22) (1.10616 0.00215242 -4.45647e-22) (1.0725 0.19419 -1.12319e-20) (1.07715 0.186603 -3.97086e-21) (1.08237 0.173227 9.28386e-21) (1.08621 0.163241 9.20367e-22) (1.0896 0.152954 -1.59473e-20) (1.09235 0.143555 5.776e-21) (1.09463 0.134619 1.44791e-20) (1.0965 0.126184 -1.61108e-20) (1.09803 0.118184 5.34319e-21) (1.09928 0.110582 2.38327e-21) (1.10028 0.103341 -1.34261e-21) (1.10109 0.0964258 -5.59309e-22) (1.10172 0.0898069 -9.81049e-22) (1.10221 0.0834559 2.80145e-21) (1.10258 0.0773472 -7.26766e-21) (1.10286 0.0714571 3.71272e-21) (1.10305 0.065764 -2.28101e-21) (1.10318 0.060248 -2.48147e-21) (1.10326 0.0548906 1.45059e-21) (1.1033 0.049675 -4.93035e-22) (1.10332 0.044585 1.80247e-21) (1.10331 0.039606 -7.37536e-23) (1.1033 0.0347238 -1.09784e-21) (1.10328 0.0299251 -3.4148e-22) (1.10327 0.0251973 -3.74351e-22) (1.10326 0.0205279 -1.45417e-21) (1.10327 0.015905 -7.76156e-22) (1.10328 0.0113204 -2.76144e-22) (1.10332 0.00675783 -4.07065e-22) (1.10338 0.00216611 -5.18157e-22) (1.06238 0.193391 -1.34375e-20) (1.06804 0.186173 2.06126e-20) (1.07394 0.173107 2.72603e-21) (1.07848 0.163216 -1.09234e-20) (1.08242 0.1531 6.21423e-21) (1.0857 0.14377 -7.35812e-21) (1.08846 0.134893 1.40632e-20) (1.09076 0.126488 -1.62787e-20) (1.09268 0.118505 6.11561e-22) (1.09427 0.110908 1.22638e-20) (1.09559 0.103665 4.86947e-21) (1.09666 0.0967441 -1.37239e-21) (1.09753 0.0901153 -3.89617e-21) (1.09823 0.0837517 3.72504e-21) (1.09879 0.0776284 2.91936e-21) (1.09922 0.0717224 3.45942e-21) (1.09956 0.0660125 -1.48615e-21) (1.09981 0.060479 1.72492e-21) (1.1 0.0551037 -2.76781e-21) (1.10013 0.0498698 2.39463e-21) (1.10023 0.0447616 5.36985e-22) (1.1003 0.0397641 1.69263e-21) (1.10034 0.0348634 -1.33825e-21) (1.10037 0.0300463 1.83757e-21) (1.1004 0.0253001 4.1612e-22) (1.10043 0.0206124 8.94128e-22) (1.10046 0.0159713 6.6614e-22) (1.10049 0.0113683 1.58499e-21) (1.10054 0.00678514 2.53508e-22) (1.1006 0.00218191 1.28124e-21) (1.05219 0.192368 1.13754e-20) (1.0588 0.185436 7.05228e-21) (1.06529 0.172836 -3.71012e-21) (1.07051 0.163044 1.91559e-21) (1.07506 0.153116 -1.29775e-20) (1.07893 0.143863 1.79002e-20) (1.08222 0.135051 -1.75791e-20) (1.08501 0.126688 -3.5433e-21) (1.08735 0.118733 6.58763e-21) (1.08931 0.111155 -9.81576e-21) (1.09094 0.103923 1.01675e-21) (1.09229 0.0970055 -2.04505e-22) (1.0934 0.0903756 -7.73655e-21) (1.09431 0.084007 6.91912e-21) (1.09505 0.0778756 -1.36527e-21) (1.09564 0.0719591 -6.22737e-21) (1.09611 0.0662367 2.63696e-21) (1.09649 0.0606894 -4.73856e-22) (1.09678 0.0552993 1.04133e-21) (1.097 0.0500498 -1.16615e-21) (1.09718 0.0449254 -2.89806e-21) (1.09731 0.0399115 -2.58496e-21) (1.09741 0.0349941 -2.34973e-22) (1.09749 0.0301602 8.53397e-22) (1.09756 0.025397 -2.52406e-21) (1.09761 0.0206922 -1.0185e-21) (1.09767 0.0160344 4.82495e-22) (1.09772 0.0114141 -1.25565e-21) (1.09778 0.00681214 -2.61048e-22) (1.09784 0.00219955 -1.32606e-21) (1.04185 0.191203 -2.67692e-20) (1.04938 0.184416 2.83998e-20) (1.05654 0.172397 -1.45628e-20) (1.06258 0.162683 1.67831e-20) (1.06786 0.152945 -1.93018e-20) (1.07239 0.143784 3.86292e-23) (1.07625 0.135059 7.68009e-21) (1.07951 0.126762 -1.53377e-20) (1.08226 0.118859 1.16099e-20) (1.08456 0.111319 1.13536e-20) (1.08648 0.104113 7.96094e-21) (1.08808 0.097212 -1.163e-20) (1.08941 0.0905912 1.92278e-21) (1.09051 0.0842255 3.26886e-21) (1.09141 0.0780922 -1.05948e-21) (1.09215 0.0721701 -1.83427e-21) (1.09275 0.0664393 -2.07398e-21) (1.09323 0.0608814 1.19027e-21) (1.09362 0.0554791 4.44441e-21) (1.09393 0.0502163 -1.93796e-21) (1.09417 0.0450777 2.83563e-22) (1.09437 0.0400489 3.64703e-21) (1.09452 0.0351162 1.62346e-21) (1.09465 0.0302667 -2.82442e-21) (1.09475 0.0254879 4.5433e-21) (1.09483 0.0207674 -4.47397e-23) (1.0949 0.016094 -2.10076e-21) (1.09497 0.0114576 1.2705e-21) (1.09503 0.00683887 1.5353e-22) (1.09509 0.00221878 6.65746e-22) (1.0315 0.189951 -1.26923e-20) (1.0402 0.183039 -2.96593e-20) (1.0483 0.171656 2.71509e-20) (1.05527 0.162047 1.67454e-20) (1.06129 0.152539 -1.76637e-20) (1.06641 0.143527 -2.64274e-21) (1.07075 0.134932 4.60422e-21) (1.0744 0.126737 -1.75654e-20) (1.07747 0.118911 2.34924e-20) (1.08006 0.111427 2.51064e-21) (1.08223 0.10426 -2.53367e-20) (1.08404 0.0973854 1.50518e-20) (1.08556 0.0907799 -5.02105e-21) (1.08682 0.0844219 4.9848e-21) (1.08787 0.0782901 9.62997e-22) (1.08874 0.072365 -9.66966e-21) (1.08945 0.0666278 8.65368e-22) (1.09003 0.0610608 -3.29003e-21) (1.09051 0.0556477 1.02522e-20) (1.0909 0.0503725 -1.64365e-21) (1.09121 0.0452207 -2.04603e-21) (1.09146 0.040178 -6.67481e-23) (1.09167 0.035231 -7.0558e-22) (1.09183 0.0303669 -1.62215e-21) (1.09197 0.0255733 3.46197e-21) (1.09208 0.0208382 -2.38734e-21) (1.09217 0.0161503 2.40792e-22) (1.09225 0.0114989 -6.3664e-22) (1.09231 0.00686552 9.9517e-23) (1.09237 0.00223924 4.57423e-22) (1.0216 0.188547 -7.03218e-20) (1.03168 0.181167 4.18118e-20) (1.04066 0.170519 -1.03867e-20) (1.04836 0.161156 -1.0277e-20) (1.0549 0.151969 -5.62084e-22) (1.06045 0.143175 -1.0352e-20) (1.06516 0.134747 2.85051e-20) (1.06915 0.126675 -2.06514e-20) (1.07253 0.118938 1.27772e-20) (1.07539 0.111517 5.95422e-21) (1.07782 0.104392 -2.92292e-20) (1.07986 0.0975447 1.71793e-20) (1.08158 0.0909558 1.87272e-21) (1.08303 0.0846058 -1.6129e-21) (1.08424 0.0784759 -8.06599e-21) (1.08526 0.072548 6.47928e-21) (1.0861 0.0668045 2.89043e-21) (1.0868 0.0612289 -4.85015e-21) (1.08738 0.0558051 1.61779e-21) (1.08786 0.0505183 -1.6125e-22) (1.08825 0.0453537 -3.81369e-22) (1.08857 0.0402978 -2.5865e-21) (1.08883 0.0353373 4.7633e-21) (1.08904 0.0304595 3.48018e-22) (1.08921 0.0256522 -6.35969e-22) (1.08935 0.0209035 -3.71786e-21) (1.08946 0.0162023 3.35633e-21) (1.08955 0.0115374 -8.576e-22) (1.08962 0.00689196 -2.19845e-22) (1.08967 0.0022604 -6.2297e-23) (1.01188 0.187027 -4.22172e-20) (1.02262 0.17897 3.81298e-20) (1.03187 0.169166 -3.42942e-20) (1.03995 0.160179 3.72698e-20) (1.04694 0.151346 1.93316e-20) (1.05298 0.142782 -3.54984e-20) (1.0582 0.134517 1.72918e-20) (1.0627 0.126565 1.01771e-20) (1.06655 0.118916 -2.47887e-20) (1.06985 0.111558 2.14377e-20) (1.07266 0.104478 -8.72159e-22) (1.07506 0.0976605 9.68123e-21) (1.0771 0.0910907 -2.39317e-20) (1.07882 0.0847515 7.63322e-21) (1.08028 0.0786262 4.12673e-21) (1.08151 0.0726982 -2.38686e-21) (1.08255 0.0669512 6.27447e-22) (1.08341 0.0613694 3.64956e-21) (1.08413 0.0559377 -8.8066e-21) (1.08473 0.0506414 8.32224e-21) (1.08522 0.0454666 -4.3324e-21) (1.08563 0.0403997 -2.74997e-21) (1.08596 0.0354278 4.28324e-21) (1.08623 0.0305384 -6.75248e-22) (1.08645 0.0257195 1.42269e-21) (1.08662 0.0209593 -1.08822e-21) (1.08676 0.0162468 8.01577e-24) (1.08687 0.0115709 1.60739e-22) (1.08694 0.00691682 -2.14966e-22) (1.08699 0.00228101 -3.76579e-22) (1.00093 0.186027 5.13778e-20) (1.01101 0.177054 -4.31406e-20) (1.02028 0.167825 3.86147e-20) (1.02891 0.159125 -1.4786e-20) (1.03668 0.150571 1.69802e-20) (1.04356 0.142205 1.20855e-20) (1.04962 0.134091 -3.3589e-20) (1.05489 0.12626 2.09114e-20) (1.05946 0.118711 1.79283e-20) (1.06339 0.111432 -2.04956e-20) (1.06676 0.104414 -4.06993e-21) (1.06966 0.0976433 7.14556e-21) (1.07212 0.0911081 1.64969e-21) (1.07423 0.0847939 -1.86255e-20) (1.07601 0.0786859 2.14775e-21) (1.07752 0.0727691 2.19539e-21) (1.0788 0.0670286 5.66178e-21) (1.07987 0.0614496 -8.81795e-21) (1.08077 0.0560177 3.39374e-21) (1.08152 0.050719 6.98345e-21) (1.08214 0.04554 -3.55706e-21) (1.08265 0.0404676 -1.39767e-21) (1.08307 0.0354893 -1.81468e-21) (1.08342 0.0305928 1.21206e-22) (1.08369 0.0257664 2.1276e-21) (1.08391 0.0209986 -2.48094e-21) (1.08408 0.0162785 6.8184e-22) (1.0842 0.0115953 -9.28375e-22) (1.08429 0.00693696 1.07072e-21) (1.08433 0.00229871 6.43162e-22) (0.990264 0.186276 8.80117e-20) (1.00023 0.175785 -2.65045e-20) (1.0101 0.166403 -1.29464e-20) (1.01953 0.157782 -2.22751e-20) (1.02812 0.149434 -1.12563e-20) (1.03578 0.141268 5.51776e-20) (1.04253 0.133326 -2.62584e-22) (1.04842 0.125648 -2.08214e-20) (1.05353 0.118232 -7.16241e-21) (1.05794 0.111066 2.50668e-20) (1.06174 0.104139 -2.32915e-20) (1.06499 0.0974433 -1.0023e-20) (1.06778 0.090967 1.50981e-20) (1.07017 0.0846991 4.00503e-21) (1.0722 0.0786271 -6.85483e-21) (1.07392 0.0727378 2.3537e-21) (1.07538 0.0670178 4.95432e-22) (1.07661 0.0614536 -2.80899e-21) (1.07764 0.0560321 9.16026e-21) (1.0785 0.0507402 1.78357e-21) (1.07922 0.045565 -3.14544e-22) (1.07981 0.0404942 -3.94558e-21) (1.0803 0.0355157 -4.27407e-21) (1.08069 0.0306178 4.22514e-21) (1.08101 0.025789 -2.92598e-21) (1.08126 0.0210183 2.68316e-21) (1.08145 0.016295 2.47565e-22) (1.08159 0.0116087 -1.19369e-21) (1.08167 0.00694933 6.63097e-22) (1.08171 0.00231056 -4.51951e-22) (0.974998 0.186637 0) (0.987963 0.173245 0) (0.999475 0.162498 0) (1.00978 0.153893 -9.95112e-12) (1.01893 0.14611 -9.27222e-12) (1.02698 0.138557 0) (1.03401 0.13114 8.12494e-12) (1.04013 0.1239 7.64228e-12) (1.04545 0.116853 0) (1.05006 0.109996 0) (1.05405 0.103322 0) (1.05749 0.0968289 4.00656e-29) (1.06045 0.090514 5.89094e-12) (1.06299 0.0843731 5.64284e-12) (1.06517 0.0784001 0) (1.06703 0.072587 0) (1.06861 0.0669247 -5.04605e-12) (1.06996 0.0614034 -4.88871e-12) (1.07109 0.0560128 0) (1.07204 0.0507423 1.81092e-29) (1.07284 0.045581 0) (1.07351 0.0405184 0) (1.07405 0.0355437 0) (1.0745 0.0306463 -4.27006e-12) (1.07486 0.025816 -4.21123e-12) (1.07514 0.0210424 4.16309e-12) (1.07535 0.0163155 8.25033e-12) (1.07551 0.0116258 4.09709e-12) (1.07561 0.00696516 0) (1.07566 0.00232257 2.64579e-29) (0.971909 0.12781 0) (0.984001 0.125578 0) (0.994202 0.122597 0) (1.00325 0.119269 9.90635e-12) (1.01134 0.115432 9.23031e-12) (1.01853 0.111148 0) (1.02489 0.106559 -8.08798e-12) (1.0305 0.101788 -7.60745e-12) (1.03544 0.0969207 0) (1.0398 0.0920138 0) (1.04363 0.0871013 0) (1.04699 0.0822058 -3.9883e-29) (1.04994 0.0773431 -5.86413e-12) (1.05252 0.0725239 -5.6172e-12) (1.05478 0.0677555 0) (1.05674 0.0630423 0) (1.05844 0.0583866 5.02328e-12) (1.05992 0.053789 4.86671e-12) (1.06119 0.0492487 0) (1.06229 0.0447636 -1.80282e-29) (1.06322 0.0403311 0) (1.06402 0.0359474 0) (1.06469 0.0316087 0) (1.06524 0.0273102 4.25122e-12) (1.0657 0.0230471 4.19272e-12) (1.06607 0.0188142 -4.14485e-12) (1.06635 0.014606 -8.21432e-12) (1.06656 0.0104169 -4.07927e-12) (1.06669 0.00624076 0) (1.06676 0.00207673 -2.63436e-29) (0.965804 0.118796 0) (0.975729 0.117866 6.66748e-29) (0.985049 0.115671 0) (0.993592 0.112624 0) (1.00137 0.10907 0) (1.00841 0.105217 0) (1.01475 0.10115 4.89013e-29) (1.0204 0.0969177 0) (1.02543 0.092564 0) (1.0299 0.0881257 -2.40623e-28) (1.03385 0.0836328 -4.22283e-28) (1.03734 0.0791094 0) (1.04042 0.0745754 0) (1.04313 0.0700472 3.79442e-29) (1.04551 0.0655374 0) (1.04759 0.0610554 0) (1.04941 0.0566078 0) (1.05099 0.0521989 0) (1.05236 0.0478307 0) (1.05354 0.0435041 0) (1.05456 0.0392184 1.70184e-28) (1.05542 0.0349721 1.07977e-28) (1.05615 0.0307628 0) (1.05677 0.0265874 0) (1.05727 0.0224426 0) (1.05768 0.0183244 0) (1.05799 0.0142287 0) (1.05822 0.0101516 0) (1.05837 0.0060884 -2.84655e-28) (1.05845 0.00203023 0) (0.970705 0.0860242 0) (0.978428 0.0858076 -6.66748e-29) (0.985769 0.0856762 0) (0.99266 0.0851597 0) (0.999028 0.0840764 0) (1.00485 0.082475 0) (1.01015 0.080438 -4.89013e-29) (1.01495 0.0780389 0) (1.0193 0.0753458 0) (1.02323 0.0724206 2.40623e-28) (1.02676 0.0693151 4.22283e-28) (1.02994 0.0660702 0) (1.03279 0.0627183 0) (1.03533 0.0592847 -3.79442e-29) (1.0376 0.0557894 0) (1.03961 0.0522487 0) (1.04139 0.0486755 0) (1.04297 0.04508 0) (1.04435 0.0414704 0) (1.04556 0.0378529 0) (1.04661 0.0342322 -1.70184e-28) (1.04751 0.030612 -1.07977e-28) (1.04829 0.0269944 0) (1.04894 0.0233811 0) (1.04949 0.0197725 0) (1.04993 0.016169 0) (1.05028 0.0125699 0) (1.05053 0.00897414 0) (1.0507 0.00538071 2.84655e-28) (1.05078 0.00179206 0) (0.970315 0.078038 -1.30648e-11) (0.976478 0.0792892 -3.34587e-29) (0.982699 0.0798779 1.12818e-28) (0.988702 0.0795916 -1.16447e-11) (0.994361 0.0786023 1.11994e-11) (0.999638 0.0771037 -1.55314e-28) (1.00453 0.0752203 -1.03776e-11) (1.00902 0.0730312 5.31515e-29) (1.01313 0.0705921 9.65079e-12) (1.01687 0.0679462 1.86453e-11) (1.02026 0.0651291 9.01726e-12) (1.02332 0.0621713 -2.51745e-28) (1.02607 0.0590989 0) (1.02854 0.0559345 0) (1.03074 0.0526975 0) (1.03271 0.0494041 0) (1.03445 0.0460678 0) (1.036 0.0426999 0) (1.03736 0.0393092 0) (1.03855 0.0359028 7.15393e-12) (1.03959 0.0324865 -1.01318e-28) (1.04048 0.0290645 2.27778e-28) (1.04125 0.02564 1.81315e-29) (1.0419 0.0222152 2.21874e-28) (1.04245 0.0187918 -2.19553e-28) (1.04289 0.0153706 -1.75685e-29) (1.04323 0.0119522 1.3132e-11) (1.04348 0.00853669 -9.41327e-29) (1.04365 0.00512356 1.03131e-28) (1.04373 0.00170879 6.50335e-12) (0.97627 0.0581791 1.30663e-11) (0.981058 0.0589285 3.34587e-29) (0.985801 0.0596918 -1.12818e-28) (0.990418 0.0601511 1.16447e-11) (0.994838 0.0602119 -1.11994e-11) (0.999014 0.0598794 1.55314e-28) (1.00292 0.0591754 1.03776e-11) (1.00656 0.0581302 -5.31515e-29) (1.00992 0.0567807 -9.65079e-12) (1.01303 0.0551662 -1.86453e-11) (1.0159 0.0533244 -9.01726e-12) (1.01852 0.0512892 2.51745e-28) (1.02091 0.0490904 0) (1.02309 0.0467532 0) (1.02506 0.0442995 0) (1.02684 0.0417477 0) (1.02843 0.0391136 0) (1.02986 0.0364106 0) (1.03114 0.0336504 0) (1.03227 0.0308427 -7.15393e-12) (1.03326 0.0279959 1.01318e-28) (1.03412 0.0251171 -2.27778e-28) (1.03487 0.0222123 -1.81315e-29) (1.03551 0.0192865 -2.21874e-28) (1.03604 0.016344 2.19553e-28) (1.03648 0.0133883 1.75685e-29) (1.03682 0.0104223 -1.3132e-11) (1.03707 0.00744843 9.41327e-29) (1.03724 0.00446903 -1.03131e-28) (1.03732 0.00148911 -6.50335e-12) (0.977509 0.05236 0) (0.981294 0.0539375 0) (0.985253 0.0551639 0) (0.989191 0.0557793 0) (0.993003 0.055861 0) (0.996645 0.0555102 0) (1.0001 0.0548001 -5.4644e-29) (1.00334 0.0537867 -1.04311e-11) (1.00638 0.0525139 -1.01533e-11) (1.0092 0.051017 0) (1.0118 0.049325 0) (1.0142 0.0474629 0) (1.01638 0.0454529 0) (1.01838 0.0433149 0) (1.02019 0.0410666 1.63568e-28) (1.02183 0.0387241 2.47881e-28) (1.0233 0.0363012 0) (1.02462 0.0338105 0) (1.0258 0.0312626 0) (1.02684 0.0286668 0) (1.02776 0.0260312 0) (1.02856 0.0233627 0) (1.02926 0.0206671 0) (1.02985 0.0179496 -2.1999e-28) (1.03035 0.0152146 -1.40958e-28) (1.03075 0.0124658 0) (1.03107 0.00970647 0) (1.03131 0.0069397 0) (1.03147 0.00416772 0) (1.03154 0.00139033 0) (0.982696 0.0397563 0) (0.985649 0.0407621 0) (0.988638 0.0417191 0) (0.991594 0.0424321 0) (0.99448 0.0428685 0) (0.99727 0.043032 0) (0.999939 0.0429253 5.4644e-29) (1.00248 0.0425556 1.04311e-11) (1.00487 0.0419374 1.01533e-11) (1.00712 0.0410903 0) (1.00923 0.0400359 0) (1.01119 0.038796 0) (1.01301 0.0373912 0) (1.01468 0.0358407 0) (1.01622 0.034162 -1.63568e-28) (1.01763 0.0323705 -2.47881e-28) (1.01891 0.0304804 0) (1.02007 0.0285041 0) (1.02112 0.0264531 0) (1.02205 0.0243371 0) (1.02288 0.0221654 0) (1.0236 0.0199458 0) (1.02424 0.0176855 0) (1.02478 0.015391 2.1999e-28) (1.02524 0.013068 1.40958e-28) (1.02562 0.0107218 0) (1.02591 0.00835713 0) (1.02614 0.00597814 0) (1.02628 0.00358914 0) (1.02635 0.00119634 0) (0.984238 0.0356441 0) (0.986539 0.0370372 0) (0.988995 0.0382291 0) (0.991486 0.0390247 3.32268e-28) (0.99394 0.0394565 0) (0.996324 0.0395733 -3.1903e-28) (0.99862 0.0394124 0) (1.00082 0.0390056 -5.64557e-29) (1.0029 0.0383807 0) (1.00487 0.037561 -2.94156e-28) (1.00671 0.0365667 0) (1.00843 0.0354153 0) (1.01003 0.0341227 2.77825e-28) (1.0115 0.0327035 0) (1.01285 0.0311713 1.73415e-28) (1.01409 0.0295386 0) (1.01521 0.0278171 0) (1.01623 0.0260174 0) (1.01715 0.0241492 2.52701e-28) (1.01797 0.0222213 4.60045e-29) (1.0187 0.0202417 0) (1.01934 0.0182176 -1.57778e-28) (1.01989 0.0161556 4.45807e-29) (1.02037 0.0140615 2.39824e-28) (1.02078 0.0119408 0) (1.02111 0.00979831 4.3638e-29) (1.02137 0.00763871 0) (1.02157 0.00546625 0) (1.0217 0.00328467 -4.2868e-28) (1.02176 0.001096 -2.34097e-28) (0.988299 0.0273499 0) (0.990089 0.0282794 0) (0.991921 0.0291533 0) (0.993747 0.029847 -3.32268e-28) (0.995549 0.0303474 0) (0.997316 0.0306592 3.1903e-28) (0.999034 0.0307817 0) (1.00069 0.0307152 5.64557e-29) (1.00228 0.0304639 0) (1.00379 0.0300363 2.94156e-28) (1.00523 0.029443 0) (1.00658 0.0286963 0) (1.00785 0.0278089 -2.77825e-28) (1.00903 0.0267933 0) (1.01013 0.0256615 -1.73415e-28) (1.01115 0.024425 0) (1.01208 0.0230944 0) (1.01293 0.0216798 0) (1.0137 0.0201903 -2.52701e-28) (1.0144 0.0186346 -4.60045e-29) (1.01502 0.0170206 0) (1.01558 0.0153555 1.57778e-28) (1.01606 0.0136463 -4.45807e-29) (1.01648 0.0118993 -2.39824e-28) (1.01683 0.0101203 0) (1.01712 0.00831488 -4.3638e-29) (1.01735 0.00648818 0) (1.01752 0.00464503 0) (1.01764 0.0027903 4.2868e-28) (1.01769 0.000930333 2.34097e-28) (0.98968 0.024385 3.12578e-28) (0.991046 0.0254775 0) (0.99252 0.0264471 1.15339e-11) (0.994032 0.0271665 1.13677e-11) (0.995542 0.0276462 0) (0.997025 0.0279086 0) (0.998468 0.0279716 -1.08644e-11) (0.999864 0.027852 -1.0699e-11) (1.0012 0.0275656 2.78137e-28) (1.00248 0.0271267 -1.03777e-11) (1.00369 0.0265481 -1.02235e-11) (1.00484 0.0258411 1.00745e-11) (1.00591 0.0250163 1.98625e-11) (1.0069 0.0240836 1.95886e-11) (1.00783 0.0230523 9.6641e-12) (1.00868 0.0219314 0) (1.00946 0.0207295 0) (1.01018 0.0194547 0) (1.01082 0.0181146 0) (1.01141 0.0167165 0) (1.01193 0.015267 0) (1.01239 0.0137725 8.96403e-12) (1.01279 0.0122389 8.8963e-12) (1.01314 0.0106718 -8.83693e-12) (1.01344 0.0090763 -1.75719e-11) (1.01368 0.00745739 -1.74869e-11) (1.01387 0.0058197 -8.70943e-12) (1.01402 0.00416774 0) (1.01411 0.00250558 0) (1.01416 0.000836216 1.37217e-28) (0.9927 0.0187356 -3.12589e-28) (0.993744 0.0194821 0) (0.994815 0.0201824 -1.15339e-11) (0.995885 0.0207594 -1.13677e-11) (0.996947 0.0212031 0) (0.997997 0.0215168 0) (0.999028 0.0217001 1.08644e-11) (1.00003 0.0217517 1.0699e-11) (1.00101 0.0216722 -2.78137e-28) (1.00195 0.0214646 1.03777e-11) (1.00284 0.021134 1.02235e-11) (1.0037 0.0206867 -1.00745e-11) (1.00451 0.0201297 -1.98625e-11) (1.00527 0.0194709 -1.95886e-11) (1.00599 0.0187178 -9.6641e-12) (1.00665 0.0178783 0) (1.00727 0.0169596 0) (1.00783 0.015969 0) (1.00835 0.0149135 0) (1.00882 0.0137996 0) (1.00924 0.0126336 0) (1.00962 0.0114215 -8.96403e-12) (1.00995 0.0101689 -8.8963e-12) (1.01023 0.00888139 8.83693e-12) (1.01048 0.00756398 1.75719e-11) (1.01068 0.00622169 1.74869e-11) (1.01084 0.00485926 8.70943e-12) (1.01096 0.00348121 0) (1.01104 0.00209211 0) (1.01108 0.000697695 -1.37217e-28) (0.993785 0.0165111 1.15706e-11) (0.994553 0.0173126 0) (0.995387 0.0180359 -1.13482e-11) (0.996248 0.0186041 -1.12252e-11) (0.997116 0.019017 0) (0.997975 0.0192843 0) (0.998817 0.0194144 0) (0.999636 0.0194158 0) (1.00043 0.0192971 0) (1.00119 0.0190666 -3.01789e-28) (1.00192 0.0187322 -5.46094e-28) (1.00261 0.0183008 0) (1.00326 0.0177792 0) (1.00387 0.0171737 0) (1.00444 0.0164906 0) (1.00497 0.0157359 -2.82472e-28) (1.00546 0.0149155 -5.15704e-29) (1.00591 0.014035 0) (1.00631 0.0131 0) (1.00668 0.0121159 0) (1.00702 0.0110879 0) (1.00731 0.0100208 0) (1.00757 0.00891954 0) (1.0078 0.00778855 0) (1.00799 0.00663225 0) (1.00815 0.00545484 0) (1.00827 0.0042604 0) (1.00836 0.0030529 0) (1.00843 0.00183606 0) (1.00846 0.000612869 0) (0.995946 0.0125196 -1.15709e-11) (0.996507 0.0130694 0) (0.99708 0.0135838 1.13482e-11) (0.997651 0.0140186 1.12252e-11) (0.998218 0.0143644 0) (0.998781 0.0146228 0) (0.999338 0.0147936 0) (0.999885 0.0148757 0) (1.00042 0.0148686 0) (1.00094 0.0147732 3.01789e-28) (1.00144 0.0145917 5.46094e-28) (1.00192 0.0143272 0) (1.00238 0.0139834 0) (1.00281 0.0135649 0) (1.00322 0.0130763 0) (1.0036 0.0125224 2.82472e-28) (1.00396 0.0119081 5.15704e-29) (1.00429 0.0112384 0) (1.0046 0.0105178 0) (1.00487 0.00975129 0) (1.00512 0.00894325 0) (1.00535 0.00809818 0) (1.00554 0.00722038 0) (1.00572 0.00631404 0) (1.00586 0.0053832 0) (1.00598 0.00443184 0) (1.00608 0.00346379 0) (1.00615 0.00248277 0) (1.0062 0.00149255 0) (1.00622 0.000497812 0) (0.996712 0.0107658 0) (0.997098 0.0113158 0) (0.997517 0.0118153 -5.71363e-29) (0.997954 0.0122217 0) (0.998397 0.0125307 -3.19982e-28) (0.998838 0.0127458 -3.14728e-28) (0.999272 0.0128709 5.5138e-29) (0.999696 0.0129102 0) (1.00011 0.0128684 -5.41139e-29) (1.0005 0.0127501 3.03179e-28) (1.00088 0.0125599 0) (1.00125 0.012302 0) (1.00159 0.0119807 0) (1.00191 0.0115998 0) (1.00222 0.0111632 1.87285e-28) (1.0025 0.0106748 2.87338e-28) (1.00276 0.0101384 0) (1.003 0.00955775 0) (1.00322 0.00893656 0) (1.00342 0.00827851 0) (1.0036 0.0075872 -2.77234e-28) (1.00376 0.00686615 -1.78176e-28) (1.0039 0.0061188 0) (1.00402 0.00534851 0) (1.00413 0.00455853 0) (1.00422 0.00375206 4.9964e-29) (1.00428 0.00293223 0) (1.00434 0.00210209 2.69746e-28) (1.00437 0.00126457 0) (1.00439 0.000422156 0) (0.998178 0.00782127 0) (0.998434 0.00818397 0) (0.99869 0.00852257 5.71363e-29) (0.998942 0.00881477 0) (0.999191 0.00905237 3.19982e-28) (0.999438 0.00923528 3.14728e-28) (0.999684 0.00936343 -5.5138e-29) (0.999927 0.00943611 0) (1.00017 0.00945272 5.41139e-29) (1.0004 0.00941332 -3.03179e-28) (1.00063 0.00931862 0) (1.00085 0.00917001 0) (1.00106 0.00896943 0) (1.00126 0.0087192 0) (1.00145 0.00842198 -1.87285e-28) (1.00163 0.00808059 -2.87338e-28) (1.00179 0.007698 0) (1.00195 0.00727722 0) (1.0021 0.00682127 0) (1.00223 0.0063332 0) (1.00235 0.00581601 2.77234e-28) (1.00245 0.00527266 1.78176e-28) (1.00255 0.00470607 0) (1.00263 0.00411912 0) (1.0027 0.00351462 0) (1.00276 0.00289537 -4.9964e-29) (1.00281 0.00226409 0) (1.00284 0.00162342 -2.69746e-28) (1.00287 0.000976088 0) (1.00288 0.000325555 0) (0.998633 0.00633923 0) (0.998785 0.00667508 0) (0.99895 0.00697833 0) (0.999125 0.00723072 0) (0.999304 0.00742788 3.18345e-28) (0.999482 0.0075701 3.13584e-28) (0.999658 0.00765891 0) (0.999829 0.00769637 5.69182e-29) (0.999995 0.00768487 5.41587e-29) (1.00015 0.0076269 0) (1.00031 0.00752498 0) (1.00045 0.00738158 0) (1.00059 0.00719904 0) (1.00072 0.00697967 0) (1.00084 0.00672572 1.88972e-28) (1.00096 0.00643943 2.90267e-28) (1.00106 0.00612301 0) (1.00116 0.0057787 0) (1.00125 0.0054087 0) (1.00133 0.00501524 0) (1.0014 0.00460049 0) (1.00146 0.00416662 1.80998e-28) (1.00152 0.00371578 -5.13935e-29) (1.00157 0.00325006 0) (1.00161 0.00277155 1.78855e-28) (1.00165 0.00228227 -5.08652e-29) (1.00167 0.00178425 0) (1.0017 0.00127948 0) (1.00171 0.000769866 0) (1.00172 0.000257036 0) (0.999534 0.00402321 0) (0.999615 0.00421913 0) (0.999688 0.00439764 0) (0.999754 0.00455397 0) (0.999817 0.00468406 -3.18345e-28) (0.999879 0.00478681 -3.13584e-28) (0.99994 0.00486171 0) (1 0.00490821 -5.69182e-29) (1.00006 0.00492583 -5.41587e-29) (1.00012 0.00491431 0) (1.00019 0.00487376 0) (1.00025 0.00480461 0) (1.0003 0.00470762 0) (1.00036 0.00458386 0) (1.00041 0.00443454 -1.88972e-28) (1.00047 0.00426106 -2.90267e-28) (1.00052 0.00406491 0) (1.00056 0.00384764 0) (1.0006 0.00361084 0) (1.00064 0.00335611 0) (1.00068 0.00308507 0) (1.00071 0.00279933 -1.80998e-28) (1.00074 0.00250048 5.13935e-29) (1.00077 0.00219011 0) (1.00079 0.00186979 -1.78855e-28) (1.00081 0.00154107 5.08652e-29) (1.00082 0.0012055 0) (1.00083 0.000864572 0) (1.00084 0.000519836 0) (1.00084 0.000173358 0) (0.99969 0.00264818 0) (0.999719 0.00280513 0) (0.99975 0.00294251 0) (0.999785 0.00305502 0) (0.999822 0.00314276 0) (0.999859 0.00320595 0) (0.999895 0.00324519 0) (0.99993 0.00326154 0) (0.999964 0.00325631 0) (0.999996 0.00323087 -3.04157e-28) (1.00003 0.00318655 -5.52795e-28) (1.00005 0.00312459 0) (1.00008 0.00304614 0) (1.00011 0.00295227 0) (1.00013 0.00284399 1.89748e-28) (1.00015 0.00272224 2.91623e-28) (1.00017 0.00258795 0) (1.00019 0.00244205 0) (1.0002 0.00228544 0) (1.00022 0.00211901 0) (1.00023 0.00194368 0) (1.00024 0.00176032 0) (1.00025 0.00156984 0) (1.00026 0.00137309 0) (1.00027 0.00117095 0) (1.00027 0.00096428 0) (1.00028 0.000753917 0) (1.00028 0.000540715 0) (1.00028 0.000325455 0) (1.00028 0.000108699 0) (1.00009 0.000686733 0) (1.00009 0.00072203 0) (1.00008 0.00075388 0) (1.00008 0.000781678 0) (1.00007 0.000805457 0) (1.00005 0.000825445 0) (1.00004 0.00084159 0) (1.00004 0.000853649 0) (1.00003 0.000861302 0) (1.00002 0.000864222 3.01665e-28) (1.00001 0.000862136 5.48267e-28) (1.00001 0.000854865 0) (1.00001 0.000842335 0) (1 0.000824572 0) (1 0.000801692 -1.88194e-28) (1 0.000773877 -2.89234e-28) (0.999999 0.00074136 0) (0.999999 0.000704415 0) (0.999998 0.000663337 0) (0.999998 0.000618441 0) (0.999999 0.000570049 0) (0.999999 0.000518492 0) (0.999999 0.000464101 0) (1 0.00040721 0) (1 0.000348152 0) (1 0.000287261 0) (1 0.000224872 0) (1 0.000161303 0) (1 9.68662e-05 0) (1 3.22361e-05 0) (0.963033 0.182735 2.29624e-20) (0.960732 0.12798 -2.80694e-20) (0.958724 0.116731 1.4388e-20) (0.964758 0.0851899 -2.68051e-20) (0.966123 0.0767163 -9.01023e-21) (0.972796 0.057315 2.70882e-20) (0.975032 0.0513671 -1.51109e-20) (0.980634 0.0389943 1.59649e-20) (0.982769 0.0348432 -2.20441e-20) (0.987075 0.0267004 2.17736e-20) (0.988818 0.0237323 -2.31062e-20) (0.991989 0.0181959 6.01739e-21) (0.9933 0.0159885 1.16451e-11) (0.995559 0.0120888 -1.15232e-11) (0.996467 0.0103678 4.29777e-21) (0.997995 0.00750647 2.6476e-22) (0.998533 0.00606702 -1.61186e-21) (0.999467 0.00383666 5.26962e-22) (0.99967 0.00252217 2.37918e-21) (1.00008 0.00065197 -1.54594e-21) (0.952611 0.17861 2.5632e-21) (0.952886 0.124071 2.34249e-20) (0.953653 0.112817 -1.07413e-20) (0.960789 0.0813697 2.34018e-20) (0.96342 0.0734914 -2.13903e-20) (0.970638 0.0544436 5.85464e-21) (0.973526 0.0490372 -1.62562e-20) (0.979404 0.0369969 -2.16753e-21) (0.981907 0.0332305 1.82889e-21) (0.986362 0.0253445 3.4455e-21) (0.988323 0.0226378 -4.05083e-22) (0.99158 0.0172882 -2.29117e-21) (0.993024 0.0152594 6.59195e-21) (0.995338 0.0114958 1.03679e-21) (0.99633 0.00990194 -6.83922e-21) (0.99789 0.00713665 -2.01926e-21) (0.998479 0.00578516 -2.68411e-21) (0.999429 0.00366005 9.4589e-23) (0.999661 0.0024231 3.72883e-21) (1.00008 0.000622467 3.062e-22) (0.943276 0.171452 1.55316e-20) (0.946122 0.118682 -1.82441e-20) (0.949189 0.107983 -1.28074e-20) (0.957326 0.0773431 2.53949e-21) (0.961075 0.0701325 6.45377e-21) (0.968763 0.0516264 2.65402e-20) (0.972223 0.0467125 1.92918e-20) (0.978338 0.0350535 -2.42263e-20) (0.981162 0.0316283 -1.42849e-21) (0.985744 0.0240116 -1.03799e-20) (0.987895 0.0215399 1.69163e-20) (0.991225 0.0163807 -4.52384e-22) (0.992788 0.0145176 -7.69751e-22) (0.995147 0.010892 3.40424e-21) (0.996212 0.00941709 -3.95963e-21) (0.997797 0.00674522 -2.8367e-22) (0.998439 0.00551219 6.7554e-21) (0.999404 0.00348219 -2.54842e-21) (0.999656 0.00232157 -3.42951e-21) (1.00008 0.000591203 -4.01369e-21) (0.934676 0.163966 -4.85928e-21) (0.939946 0.113381 -1.44869e-20) (0.945107 0.103012 8.33373e-21) (0.954168 0.0734143 -3.98561e-20) (0.958953 0.0667621 8.69116e-21) (0.967057 0.0488774 1.33231e-20) (0.971048 0.0444096 2.75901e-20) (0.977372 0.0331585 -5.0525e-20) (0.98049 0.0300475 3.98422e-20) (0.985184 0.02271 -2.64404e-20) (0.987509 0.0204552 2.0975e-20) (0.990904 0.0154885 2.16788e-21) (0.992575 0.0137761 7.04777e-21) (0.994973 0.0102705 -1.35946e-20) (0.996105 0.00888685 7.97005e-21) (0.997719 0.00639799 3.50509e-21) (0.99841 0.00525733 3.63362e-21) (0.999378 0.00330255 -1.74951e-21) (0.999652 0.00221309 -3.53819e-21) (1.00007 0.000559388 2.34087e-21) (0.926624 0.156136 1.91802e-20) (0.9342 0.10787 -3.6247e-20) (0.941313 0.0977863 -5.86615e-21) (0.951229 0.0694102 -3.1796e-21) (0.957 0.0632587 3.19908e-20) (0.965474 0.0460823 4.5778e-21) (0.969972 0.0420318 -4.06875e-20) (0.976478 0.0312306 1.63657e-20) (0.979876 0.0284205 -9.2516e-21) (0.984667 0.0213841 1.23552e-20) (0.987156 0.0193399 -2.19136e-20) (0.990606 0.0145764 2.95059e-22) (0.992374 0.0130126 1.62502e-20) (0.994802 0.00964998 -1.54395e-20) (0.996025 0.00841399 -4.96316e-21) (0.997664 0.00606021 6.28328e-21) (0.998379 0.004985 -1.08287e-20) (0.999355 0.00311855 1.14917e-20) (0.99965 0.00210034 -1.68157e-21) (1.00007 0.000526733 5.17095e-21) (0.91905 0.147886 -5.39151e-20) (0.928841 0.10214 4.64809e-20) (0.937771 0.092332 -5.45817e-20) (0.94848 0.0653562 3.73158e-20) (0.955189 0.0596463 -2.85661e-20) (0.963991 0.0432689 -1.00681e-20) (0.968979 0.0395969 -2.64889e-20) (0.975641 0.0292891 2.3137e-20) (0.979312 0.0267588 -2.64958e-20) (0.984185 0.0200464 3.55478e-21) (0.98683 0.018203 -1.05279e-20) (0.990329 0.0136518 7.99319e-21) (0.992195 0.0122201 -2.51838e-20) (0.994663 0.00908334 6.0009e-21) (0.995954 0.00798728 1.2587e-20) (0.997599 0.00569591 -1.54349e-20) (0.998352 0.00470381 1.38049e-20) (0.999334 0.00293007 -5.42103e-21) (0.999649 0.00198413 -2.84442e-21) (1.00007 0.000493354 -2.10041e-21) (0.911943 0.139281 2.01073e-20) (0.923849 0.0961981 1.34409e-20) (0.93446 0.0866833 -3.60368e-21) (0.94591 0.0612514 3.88939e-20) (0.953507 0.0559328 -5.20863e-20) (0.962599 0.0404391 9.53601e-21) (0.968061 0.0371075 2.17224e-20) (0.974857 0.0273372 7.60499e-22) (0.978792 0.0250641 -4.71932e-21) (0.983734 0.0186973 -6.77417e-21) (0.986531 0.0170354 8.15025e-21) (0.990065 0.0126847 -1.18209e-21) (0.992043 0.0114289 -8.78411e-21) (0.994543 0.00851497 8.41322e-21) (0.995885 0.00749208 -4.83498e-21) (0.99754 0.0053284 -1.6493e-21) (0.998329 0.00441417 -7.21474e-21) (0.999315 0.00273856 -6.10399e-21) (0.99965 0.0018644 9.77981e-22) (1.00006 0.000459493 -6.87536e-21) (0.905305 0.130337 -3.28598e-21) (0.919217 0.0900444 2.00953e-20) (0.931372 0.0808649 -2.26642e-20) (0.943517 0.0570897 -7.10483e-21) (0.951945 0.0521257 2.23077e-22) (0.961298 0.037591 -2.91858e-21) (0.967214 0.0345646 2.54927e-20) (0.974122 0.0253752 8.25341e-21) (0.978314 0.0233372 -3.20194e-22) (0.98331 0.0173398 -4.61883e-21) (0.986246 0.0158547 9.20718e-21) (0.989826 0.0117585 1.64506e-20) (0.991921 0.0106781 -3.93389e-21) (0.994433 0.00791628 2.00826e-21) (0.995823 0.00698868 4.29335e-22) (0.997485 0.00495295 -4.65687e-21) (0.998308 0.00411755 1.06163e-20) (0.999298 0.00254442 5.70668e-22) (0.999651 0.00174129 6.16596e-21) (1.00006 0.000425306 -1.66596e-21) (0.899148 0.121078 -2.77386e-20) (0.91494 0.0836843 1.1781e-20) (0.928505 0.0748987 -2.96256e-20) (0.941303 0.0528666 -1.01127e-20) (0.950499 0.0482343 3.1017e-20) (0.960089 0.0347232 1.24441e-21) (0.966433 0.0319715 -3.8671e-21) (0.973437 0.0234036 1.10369e-20) (0.977877 0.0215786 7.55458e-21) (0.982917 0.015972 -2.13636e-20) (0.985998 0.0146582 1.37942e-20) (0.989611 0.0108942 1.75579e-21) (0.991805 0.00991453 -1.43815e-22) (0.994324 0.00731172 -1.38813e-21) (0.995767 0.00647425 -2.2465e-21) (0.997434 0.00457239 2.04905e-20) (0.998291 0.00381424 -1.28492e-20) (0.999282 0.00234798 8.46165e-21) (0.999654 0.00161496 1.7847e-21) (1.00006 0.000390914 6.82161e-21) (0.893481 0.111525 1.76573e-20) (0.911015 0.0771269 7.53239e-21) (0.925862 0.0688028 -1.33892e-20) (0.939268 0.0485781 -8.49361e-21) (0.949167 0.0442681 1.20474e-20) (0.958974 0.0318332 1.34621e-20) (0.965718 0.0293324 -8.36576e-21) (0.972805 0.0214227 3.81879e-21) (0.977477 0.0197933 -7.31746e-21) (0.982552 0.0146054 9.50948e-23) (0.985783 0.0134524 -1.25402e-20) (0.98942 0.00999331 -5.38506e-21) (0.991699 0.00911149 1.754e-20) (0.994223 0.00670023 -1.08648e-20) (0.995718 0.00594864 -2.0133e-21) (0.997388 0.00418779 1.6408e-21) (0.998277 0.00350469 3.6999e-21) (0.999268 0.00214955 -7.49653e-21) (0.999658 0.00148559 2.94871e-21) (1.00005 0.000356426 -6.10293e-21) (0.888314 0.101704 2.19627e-21) (0.907443 0.0703838 4.33299e-20) (0.923446 0.0625925 1.62618e-21) (0.937414 0.0442217 -3.42146e-20) (0.947947 0.040236 -1.56285e-22) (0.957954 0.0289185 5.72258e-21) (0.965065 0.0266519 -2.31553e-21) (0.972226 0.0194311 -6.78893e-21) (0.977116 0.017979 1.3685e-21) (0.982223 0.013216 7.98966e-21) (0.985594 0.0121648 -1.95346e-21) (0.989243 0.00907553 -1.83054e-20) (0.991604 0.00829029 3.55421e-21) (0.99413 0.00608137 -1.06037e-21) (0.995675 0.00541289 1.10537e-21) (0.997345 0.0037995 -9.37229e-22) (0.998266 0.00318936 -8.46138e-21) (0.999256 0.0019494 6.76291e-21) (0.999662 0.00135337 -5.04673e-21) (1.00005 0.00032193 -2.92242e-21) (0.883655 0.0916389 -4.51322e-20) (0.904224 0.0634683 1.10478e-20) (0.92126 0.0562807 3.96821e-21) (0.935741 0.0397968 7.51763e-21) (0.946842 0.0361466 -3.48073e-21) (0.957033 0.0259773 -6.23441e-21) (0.964476 0.0239351 6.07692e-21) (0.9717 0.0174288 1.38868e-21) (0.976785 0.0161399 -1.02415e-21) (0.981906 0.0118273 -1.36486e-20) (0.985438 0.0109342 2.90765e-21) (0.989107 0.00814147 4.96573e-21) (0.991519 0.00745575 -1.72432e-21) (0.994047 0.0054562 -4.80175e-22) (0.995637 0.00486809 -5.45924e-21) (0.997307 0.00340793 2.94689e-21) (0.998257 0.00286869 -1.69657e-22) (0.999244 0.00174777 -7.51111e-21) (0.999667 0.00121848 2.93728e-21) (1.00005 0.000287496 1.889e-21) (0.87951 0.0813562 -1.85344e-22) (0.90136 0.0563948 -1.28853e-20) (0.919307 0.0498787 3.81413e-20) (0.934251 0.0353045 5.62277e-21) (0.945853 0.0320074 -4.6896e-22) (0.956211 0.0230082 6.48241e-21) (0.963949 0.0211868 1.23397e-20) (0.971231 0.0154148 -2.12435e-21) (0.976493 0.0142808 -5.48413e-21) (0.981649 0.0104464 1.79812e-21) (0.985299 0.00975409 1.94513e-21) (0.988963 0.00720144 7.53875e-21) (0.991446 0.00661051 5.39404e-22) (0.993972 0.00482548 7.60947e-21) (0.995605 0.00431521 1.00321e-21) (0.997273 0.00301348 -5.09588e-21) (0.99825 0.00254315 4.99266e-21) (0.999234 0.00154487 9.73313e-21) (0.999672 0.00108116 -1.6732e-21) (1.00005 0.00025317 -3.24245e-22) (0.875883 0.0708827 1.53207e-20) (0.898851 0.0491789 -2.81244e-20) (0.917592 0.0433968 -1.47198e-20) (0.932943 0.0307477 2.52744e-20) (0.944982 0.0278252 -3.02828e-21) (0.95549 0.0200113 -2.99781e-20) (0.963486 0.0184119 1.50746e-21) (0.970818 0.0133895 -5.83866e-22) (0.976235 0.0124134 -7.87507e-21) (0.981423 0.00909288 -1.05864e-21) (0.985185 0.00848138 -5.1327e-21) (0.98884 0.00625727 2.01306e-21) (0.991383 0.00575329 -8.35416e-21) (0.993906 0.00419076 7.28319e-21) (0.995578 0.00375499 4.90867e-21) (0.997243 0.00261656 -1.85599e-21) (0.998244 0.00221323 7.09516e-21) (0.999225 0.00134092 -9.93582e-21) (0.999676 0.000941645 7.43231e-21) (1.00004 0.000218986 2.99882e-21) (0.872775 0.0602456 2.63365e-21) (0.896698 0.0418368 1.46652e-20) (0.916116 0.0368444 5.61801e-21) (0.93182 0.026131 -2.09608e-20) (0.94423 0.0236063 2.9027e-21) (0.95487 0.0169872 1.80174e-20) (0.963086 0.0156148 -4.44377e-21) (0.970465 0.011353 9.59387e-21) (0.976025 0.0105319 -2.588e-21) (0.98123 0.00774088 1.30061e-21) (0.985078 0.00720899 1.73599e-21) (0.988732 0.00530558 1.38126e-20) (0.991329 0.00488548 -5.02843e-21) (0.993849 0.00355237 -2.30814e-21) (0.995556 0.00318837 -1.01771e-21) (0.997217 0.00221756 5.89472e-21) (0.998241 0.00187944 -6.36028e-21) (0.999218 0.00113608 5.60248e-21) (0.999681 0.000800182 -4.74212e-21) (1.00004 0.000184957 4.2258e-21) (0.870188 0.0494722 1.24784e-20) (0.894904 0.0343854 2.22384e-21) (0.914881 0.0302313 1.05001e-20) (0.930881 0.0214604 -1.28707e-20) (0.9436 0.0193563 5.60023e-21) (0.954352 0.0139378 1.79023e-21) (0.962751 0.0127993 -1.44599e-21) (0.97017 0.00930581 4.39901e-21) (0.975851 0.00863303 4.95521e-21) (0.981072 0.00634939 -2.27686e-21) (0.984991 0.00591466 9.05059e-21) (0.988641 0.00434968 -7.123e-22) (0.991285 0.00400886 1.78162e-21) (0.993801 0.00291092 -3.99872e-21) (0.995538 0.00261623 2.51853e-22) (0.997196 0.00181681 5.11115e-22) (0.998238 0.00154234 1.08782e-21) (0.999212 0.000930506 -1.02337e-22) (0.999685 0.000657047 1.01879e-21) (1.00004 0.000151085 -5.69712e-22) (0.868121 0.0385892 1.49379e-21) (0.893468 0.0268427 8.23254e-21) (0.913892 0.0235672 -1.49661e-20) (0.930129 0.0167433 -3.69026e-21) (0.943093 0.0150808 5.9212e-21) (0.953938 0.0108661 -6.16117e-21) (0.962482 0.00996918 4.30651e-21) (0.969935 0.00724945 -5.0435e-21) (0.975714 0.00672632 9.06315e-21) (0.980946 0.00495234 4.51293e-22) (0.984919 0.00461041 1.4523e-22) (0.988569 0.00338855 4.26976e-21) (0.99125 0.00312516 -5.11113e-21) (0.993763 0.00226688 -3.26266e-21) (0.995524 0.00203957 3.8848e-21) (0.997178 0.00141461 -3.1394e-21) (0.998236 0.0012025 -2.74022e-22) (0.999207 0.000724357 -3.98013e-21) (0.999688 0.000512526 -6.61973e-22) (1.00004 0.000117357 -2.97061e-21) (0.866572 0.0276225 -2.11749e-22) (0.892391 0.0192275 -8.08658e-21) (0.913147 0.0168622 2.08001e-21) (0.929563 0.0119883 3.52611e-21) (0.942711 0.0107854 -7.06424e-21) (0.953626 0.00777565 -3.30543e-21) (0.962279 0.00712798 -1.20713e-21) (0.969758 0.00518439 -6.84199e-22) (0.975611 0.00480976 -5.77638e-22) (0.980851 0.00354327 -6.05669e-21) (0.984866 0.0032983 -1.88223e-21) (0.988514 0.00242344 -3.02914e-21) (0.991224 0.00223602 1.4002e-21) (0.993734 0.00162076 -3.22707e-21) (0.995513 0.00145938 -1.02139e-21) (0.997165 0.0010113 5.56114e-23) (0.998235 0.000860524 8.96366e-22) (0.999203 0.000517764 4.49214e-21) (0.999691 0.000366916 -3.55767e-22) (1.00004 8.37504e-05 1.42117e-21) (0.865541 0.0165969 3.33816e-21) (0.891673 0.0115589 4.36592e-22) (0.91265 0.0101281 2.58015e-21) (0.929186 0.0072047 2.50794e-21) (0.942456 0.00647619 3.32149e-22) (0.953418 0.00467106 -2.39496e-21) (0.962143 0.00427942 9.14955e-22) (0.969641 0.00311316 2.5793e-21) (0.975543 0.00288803 -2.28863e-22) (0.980788 0.00212845 -5.71676e-22) (0.98483 0.00198088 5.31873e-22) (0.988478 0.00145528 2.19456e-21) (0.991206 0.0013431 -1.14906e-21) (0.993715 0.000973109 2.63592e-21) (0.995507 0.000876682 5.77851e-22) (0.997157 0.000607174 -1.98629e-21) (0.998234 0.000517007 8.79616e-22) (0.999201 0.000310858 -1.4959e-21) (0.999693 0.000220521 7.21296e-22) (1.00004 5.0237e-05 -6.15493e-22) (0.865026 0.00553619 -6.77601e-23) (0.891314 0.00385662 -1.29162e-21) (0.912402 0.00337751 9.04223e-22) (0.928997 0.00240321 -1.29059e-21) (0.942328 0.00215918 -3.39509e-22) (0.953314 0.0015576 1.34143e-21) (0.962075 0.00142655 -1.29286e-21) (0.969582 0.00103781 1.35734e-21) (0.97551 0.000962733 -2.27185e-22) (0.980757 0.000709652 4.9498e-22) (0.984812 0.000660474 -1.89299e-22) (0.98846 0.000485221 8.25474e-23) (0.991197 0.000447928 -9.64418e-23) (0.993705 0.000324513 1.61525e-22) (0.995503 0.000292477 -3.24015e-22) (0.997153 0.000202561 8.38518e-22) (0.998233 0.000172567 -5.39529e-22) (0.999199 0.000103765 -8.75832e-23) (0.999694 7.36543e-05 -7.10408e-22) (1.00004 1.67812e-05 4.69776e-22) (0.865026 -0.00553614 -2.8889e-21) (0.891314 -0.00385715 -2.30663e-22) (0.912402 -0.0033784 -1.67738e-21) (0.928997 -0.00240438 6.71817e-22) (0.942328 -0.0021604 7.48779e-22) (0.953314 -0.00155888 -9.49648e-22) (0.962075 -0.0014277 1.02202e-21) (0.969582 -0.00103887 -9.92617e-22) (0.97551 -0.000963584 1.08713e-21) (0.980757 -0.000710345 -1.48388e-22) (0.984812 -0.000660931 -5.51627e-23) (0.98846 -0.000485481 2.5223e-22) (0.991197 -0.000447986 4.26944e-22) (0.993705 -0.000324402 2.30779e-24) (0.995503 -0.00029223 -5.38183e-22) (0.997153 -0.000202216 4.95098e-22) (0.998233 -0.000172183 -5.29188e-22) (0.999199 -0.000103391 2.49148e-22) (0.999694 -7.33708e-05 -7.72056e-22) (1.00004 -1.66551e-05 4.73494e-22) (0.865541 -0.0165968 -3.14229e-21) (0.891673 -0.0115594 5.82268e-21) (0.91265 -0.010129 -1.83568e-21) (0.929185 -0.00720589 2.36337e-21) (0.942456 -0.00647743 3.01124e-21) (0.953418 -0.00467237 1.47769e-21) (0.962143 -0.0042806 -2.59016e-22) (0.969641 -0.00311425 -3.43324e-21) (0.975543 -0.0028889 2.61928e-21) (0.980788 -0.00212913 4.34406e-22) (0.98483 -0.00198134 -6.00666e-22) (0.988478 -0.00145554 5.41255e-22) (0.991206 -0.00134316 1.79292e-21) (0.993715 -0.000973 2.0465e-22) (0.995507 -0.000876438 -1.51814e-22) (0.997157 -0.00060683 9.84243e-22) (0.998234 -0.000516625 -5.21503e-22) (0.999201 -0.000310484 -1.66883e-21) (0.999693 -0.000220238 6.78211e-22) (1.00004 -5.0111e-05 -6.23753e-22) (0.866572 -0.0276225 4.12141e-21) (0.892391 -0.0192281 -2.92219e-21) (0.913147 -0.0168632 -2.65791e-21) (0.929563 -0.0119895 -3.70517e-21) (0.942711 -0.0107866 -1.89738e-21) (0.953626 -0.00777696 2.55269e-21) (0.962279 -0.00712917 -3.51852e-21) (0.969758 -0.00518548 4.81753e-21) (0.975611 -0.00481063 -9.61086e-21) (0.980851 -0.00354396 -2.94988e-21) (0.984866 -0.00329877 -9.79803e-22) (0.988514 -0.00242371 -4.30072e-21) (0.991224 -0.00223609 7.46268e-22) (0.993734 -0.00162066 1.39607e-21) (0.995513 -0.00145914 -3.64321e-21) (0.997165 -0.00101096 2.67015e-21) (0.998235 -0.000860144 -2.8158e-22) (0.999203 -0.000517392 1.7314e-21) (0.999691 -0.000366634 2.02511e-22) (1.00004 -8.36247e-05 2.08357e-21) (0.86812 -0.0385893 -5.21943e-21) (0.893468 -0.0268433 -1.0129e-20) (0.913891 -0.0235682 1.47818e-20) (0.930128 -0.0167445 -2.69662e-21) (0.943093 -0.0150821 -5.11198e-21) (0.953937 -0.0108674 5.35553e-21) (0.962482 -0.00997038 -4.01485e-21) (0.969935 -0.00725057 1.11837e-21) (0.975713 -0.00672721 -1.92771e-21) (0.980946 -0.00495304 1.15878e-21) (0.984919 -0.00461088 4.69672e-21) (0.988569 -0.00338883 -3.61548e-21) (0.99125 -0.00312523 -3.50697e-21) (0.993763 -0.00226678 2.26832e-21) (0.995524 -0.00203933 1.67835e-21) (0.997178 -0.00141428 -4.1068e-21) (0.998236 -0.00120213 -1.3481e-21) (0.999207 -0.000723987 -2.70941e-21) (0.999688 -0.000512246 -8.20686e-22) (1.00004 -0.000117231 -3.68578e-21) (0.870187 -0.0494724 -1.53658e-20) (0.894903 -0.0343862 6.95242e-21) (0.914881 -0.0302323 -1.65117e-20) (0.93088 -0.0214617 2.21387e-20) (0.943599 -0.0193576 3.40691e-21) (0.954352 -0.0139392 -5.6015e-21) (0.962751 -0.0128006 3.91382e-21) (0.97017 -0.00930695 -7.81306e-23) (0.975851 -0.00863393 6.29753e-22) (0.981072 -0.00635009 7.90865e-22) (0.984991 -0.00591515 -3.42376e-21) (0.988641 -0.00434996 9.72086e-21) (0.991285 -0.00400895 -1.20849e-21) (0.993801 -0.00291083 4.46782e-21) (0.995538 -0.00261601 -5.60582e-21) (0.997196 -0.00181647 1.20315e-21) (0.998238 -0.00154197 1.31281e-21) (0.999212 -0.000930139 -1.22916e-21) (0.999685 -0.000656769 1.28292e-21) (1.00004 -0.00015096 -7.54426e-22) (0.872774 -0.0602459 -1.08084e-20) (0.896697 -0.0418376 -1.93658e-21) (0.916115 -0.0368455 1.39941e-20) (0.931819 -0.0261324 5.12929e-21) (0.944229 -0.0236076 5.51533e-21) (0.95487 -0.0169886 -2.37049e-22) (0.963086 -0.0156161 8.02794e-21) (0.970465 -0.0113541 -2.59381e-21) (0.976025 -0.0105329 1.04838e-21) (0.98123 -0.00774162 2.57162e-21) (0.985078 -0.00720949 5.27456e-21) (0.988732 -0.00530588 -8.5526e-21) (0.991329 -0.00488558 6.65051e-21) (0.993849 -0.00355229 -5.77027e-21) (0.995556 -0.00318815 5.13734e-21) (0.997217 -0.00221724 4.33632e-22) (0.998241 -0.00187908 -2.1456e-21) (0.999218 -0.00113571 6.95816e-21) (0.999681 -0.000799906 -7.07362e-21) (1.00004 -0.000184833 3.68276e-21) (0.875881 -0.070883 -6.51881e-21) (0.898849 -0.0491798 -4.57323e-21) (0.917591 -0.0433979 -1.06102e-20) (0.932942 -0.0307492 -2.82273e-20) (0.944981 -0.0278266 -2.01613e-21) (0.955489 -0.0200128 1.2074e-20) (0.963486 -0.0184132 -9.56064e-21) (0.970817 -0.0133907 -1.0001e-20) (0.976235 -0.0124144 -2.97334e-21) (0.981422 -0.00909356 3.93175e-21) (0.985185 -0.00848191 9.72975e-22) (0.98884 -0.00625758 -1.78048e-20) (0.991382 -0.00575341 6.34891e-21) (0.993906 -0.00419069 5.86109e-22) (0.995578 -0.00375479 3.67077e-21) (0.997243 -0.00261625 4.05388e-21) (0.998244 -0.00221287 1.42032e-21) (0.999225 -0.00134056 -8.30156e-21) (0.999676 -0.000941372 9.77589e-21) (1.00004 -0.000218863 1.52873e-21) (0.879508 -0.0813567 9.81836e-21) (0.901358 -0.0563959 4.14281e-20) (0.919306 -0.04988 -1.74616e-20) (0.93425 -0.035306 1.39803e-20) (0.945853 -0.0320089 -1.62046e-21) (0.956211 -0.0230098 7.85273e-21) (0.963949 -0.0211882 -9.95802e-23) (0.97123 -0.0154161 9.37425e-21) (0.976492 -0.0142818 1.02007e-20) (0.981649 -0.0104471 1.11497e-20) (0.985299 -0.00975456 -3.65837e-21) (0.988963 -0.00720178 4.67244e-21) (0.991446 -0.00661066 1.01517e-20) (0.993972 -0.00482542 -3.27646e-21) (0.995605 -0.00431502 -4.07795e-21) (0.997273 -0.00301317 5.86255e-21) (0.99825 -0.0025428 1.07297e-21) (0.999234 -0.00154452 8.01845e-21) (0.999672 -0.00108089 -1.73991e-21) (1.00005 -0.000253048 -6.11617e-22) (0.883653 -0.0916396 2.72488e-20) (0.904223 -0.0634695 -2.34099e-20) (0.921258 -0.0562821 -1.09046e-20) (0.93574 -0.0397984 5.08802e-22) (0.946842 -0.0361482 -8.18057e-21) (0.957032 -0.0259788 1.22914e-20) (0.964475 -0.0239365 -8.90395e-21) (0.9717 -0.0174301 1.03992e-21) (0.976785 -0.016141 -1.02771e-21) (0.981906 -0.0118282 1.63118e-21) (0.985437 -0.0109349 -4.86607e-21) (0.989107 -0.00814183 -1.3093e-21) (0.991519 -0.00745592 -7.30297e-22) (0.994046 -0.00545616 -8.6504e-21) (0.995637 -0.00486792 2.12882e-21) (0.997307 -0.00340763 2.02622e-21) (0.998257 -0.00286835 5.11724e-21) (0.999244 -0.00174742 -5.37323e-21) (0.999667 -0.00121822 1.12856e-21) (1.00005 -0.000287374 1.65557e-21) (0.888312 -0.101705 1.0237e-20) (0.907441 -0.0703852 -3.65676e-20) (0.923444 -0.062594 -1.01268e-21) (0.937413 -0.0442234 1.8338e-20) (0.947947 -0.0402377 7.52637e-21) (0.957954 -0.0289201 -1.85821e-20) (0.965065 -0.0266534 5.03782e-22) (0.972225 -0.0194324 1.07104e-21) (0.977115 -0.0179801 -3.07033e-21) (0.982223 -0.0132169 -1.89756e-21) (0.985594 -0.0121655 3.29004e-22) (0.989243 -0.0090759 8.92986e-21) (0.991604 -0.00829049 -5.12535e-21) (0.99413 -0.00608134 6.75897e-21) (0.995675 -0.00541274 -3.81441e-21) (0.997345 -0.00379922 -6.85657e-21) (0.998266 -0.00318903 -4.5068e-21) (0.999256 -0.00194905 2.73316e-21) (0.999662 -0.0013531 -2.84938e-21) (1.00005 -0.000321811 -3.37497e-21) (0.893478 -0.111527 -1.98703e-20) (0.911013 -0.0771285 -8.67554e-22) (0.925861 -0.0688044 1.14261e-20) (0.939267 -0.0485799 1.32818e-20) (0.949166 -0.0442698 -4.71068e-21) (0.958973 -0.0318349 -1.54599e-20) (0.965717 -0.0293339 5.43795e-21) (0.972804 -0.021424 -1.51852e-20) (0.977476 -0.0197945 9.82502e-21) (0.982552 -0.0146063 -1.60199e-21) (0.985783 -0.013453 1.08161e-20) (0.98942 -0.00999373 -1.12046e-20) (0.991698 -0.0091117 -5.91785e-21) (0.994222 -0.00670022 6.92588e-21) (0.995718 -0.0059485 3.81769e-21) (0.997388 -0.00418751 -1.37433e-20) (0.998277 -0.00350437 8.2062e-21) (0.999268 -0.00214921 -2.26619e-21) (0.999658 -0.00148533 -4.93539e-21) (1.00005 -0.000356308 -3.5361e-21) (0.899145 -0.121079 2.95938e-20) (0.914937 -0.083686 -2.04408e-20) (0.928504 -0.0749005 2.62556e-20) (0.941302 -0.0528686 2.66088e-21) (0.950498 -0.0482361 -3.40035e-20) (0.960088 -0.034725 7.64468e-21) (0.966433 -0.0319731 6.04244e-22) (0.973437 -0.023405 8.24556e-21) (0.977876 -0.0215798 -1.05522e-20) (0.982916 -0.015973 1.9309e-20) (0.985998 -0.0146589 -1.25231e-20) (0.989611 -0.0108947 -1.86685e-21) (0.991805 -0.00991478 -4.04014e-21) (0.994323 -0.00731174 4.54463e-21) (0.995767 -0.00647413 1.30215e-20) (0.997434 -0.00457213 -1.59208e-21) (0.998291 -0.00381393 -3.49148e-21) (0.999282 -0.00234765 8.00154e-21) (0.999654 -0.0016147 -1.98505e-23) (1.00006 -0.000390797 9.40561e-21) (0.905302 -0.130339 5.59119e-20) (0.919214 -0.0900464 -6.26923e-20) (0.93137 -0.0808669 4.05683e-20) (0.943516 -0.0570918 9.629e-21) (0.951944 -0.0521276 5.27178e-21) (0.961297 -0.0375929 7.08594e-21) (0.967213 -0.0345663 -1.04734e-20) (0.974121 -0.0253767 -1.81831e-20) (0.978314 -0.0233385 1.08686e-20) (0.98331 -0.0173408 1.66975e-20) (0.986245 -0.0158554 8.57835e-22) (0.989825 -0.0117589 -4.86537e-21) (0.991921 -0.0106784 1.07107e-20) (0.994432 -0.00791633 2.21855e-22) (0.995822 -0.00698857 -2.99766e-21) (0.997485 -0.00495271 3.79906e-21) (0.998308 -0.00411725 4.10029e-21) (0.999298 -0.0025441 -1.03112e-21) (0.999651 -0.00174103 4.18964e-21) (1.00006 -0.000425191 1.21366e-21) (0.91194 -0.139283 -1.82326e-20) (0.923846 -0.0962004 2.14064e-21) (0.934458 -0.0866854 -3.31766e-22) (0.945908 -0.0612536 -2.62615e-20) (0.953506 -0.0559349 5.01258e-20) (0.962598 -0.0404411 -1.08373e-20) (0.968061 -0.0371093 -2.10344e-20) (0.974856 -0.0273387 5.50883e-21) (0.978792 -0.0250654 3.58126e-21) (0.983734 -0.0186984 7.00319e-21) (0.98653 -0.0170362 -1.10204e-20) (0.990065 -0.0126853 1.4108e-21) (0.992043 -0.0114292 1.6108e-20) (0.994543 -0.00851504 -1.93477e-20) (0.995885 -0.007492 -7.36869e-22) (0.99754 -0.00532818 -6.08642e-22) (0.998329 -0.00441388 -5.00504e-21) (0.999315 -0.00273825 -7.21367e-21) (0.99965 -0.00186416 -2.38589e-21) (1.00006 -0.00045938 -6.20174e-21) (0.919047 -0.147888 2.79344e-20) (0.928838 -0.102143 -2.12936e-20) (0.937769 -0.0923343 9.08799e-21) (0.948478 -0.0653586 -4.74737e-20) (0.955188 -0.0596484 2.00048e-20) (0.96399 -0.043271 -1.49465e-20) (0.968978 -0.0395988 8.55891e-22) (0.975641 -0.0292907 -2.36093e-20) (0.979311 -0.0267602 3.86453e-21) (0.984185 -0.0200475 -5.83498e-21) (0.98683 -0.0182039 -4.3405e-21) (0.990329 -0.0136524 -1.01658e-20) (0.992195 -0.0122204 4.4761e-21) (0.994663 -0.00908343 3.05819e-21) (0.995953 -0.00798723 -1.98126e-21) (0.997599 -0.0056957 -2.57452e-21) (0.998352 -0.00470353 -3.61528e-21) (0.999334 -0.00292977 -1.60194e-21) (0.999649 -0.00198389 2.29788e-21) (1.00007 -0.000493243 -4.78218e-21) (0.92662 -0.156139 2.40304e-20) (0.934197 -0.107873 -1.35707e-20) (0.941311 -0.0977889 -1.89278e-21) (0.951228 -0.0694127 -1.04457e-21) (0.956998 -0.0632611 -2.30168e-20) (0.965473 -0.0460845 7.34175e-21) (0.969971 -0.0420338 4.26664e-20) (0.976477 -0.0312322 -2.63173e-20) (0.979876 -0.0284219 8.01954e-21) (0.984667 -0.0213853 -1.36907e-20) (0.987155 -0.0193408 1.88757e-20) (0.990606 -0.014577 -1.89447e-20) (0.992374 -0.013013 -6.45285e-21) (0.994802 -0.0096501 6.79858e-21) (0.996025 -0.00841395 3.76688e-21) (0.997664 -0.00606002 4.83163e-21) (0.998379 -0.00498474 -8.19011e-21) (0.999355 -0.00311826 -6.04094e-22) (0.99965 -0.0021001 7.18277e-22) (1.00007 -0.000526625 5.47467e-21) (0.934672 -0.163969 7.86924e-21) (0.939943 -0.113384 3.37392e-20) (0.945105 -0.103015 -1.52196e-20) (0.954166 -0.0734171 3.03707e-20) (0.958952 -0.0667645 -3.02185e-20) (0.967056 -0.0488797 -9.38015e-21) (0.971047 -0.0444116 -6.0993e-21) (0.977371 -0.0331602 4.20694e-20) (0.98049 -0.0300491 -2.06762e-20) (0.985183 -0.0227112 2.06515e-20) (0.987508 -0.0204561 -3.34835e-21) (0.990903 -0.0154891 9.72756e-21) (0.992575 -0.0137765 -6.17605e-21) (0.994973 -0.0102707 1.9119e-20) (0.996105 -0.00888684 -2.25733e-20) (0.997719 -0.00639782 -7.71056e-23) (0.99841 -0.00525709 9.23676e-21) (0.999378 -0.00330227 -1.54269e-21) (0.999652 -0.00221286 -1.44417e-21) (1.00007 -0.000559282 3.86095e-21) (0.943272 -0.171456 -1.68544e-20) (0.946118 -0.118685 1.61199e-20) (0.949187 -0.107986 -5.79154e-21) (0.957324 -0.077346 4.17985e-20) (0.961074 -0.0701352 1.10131e-20) (0.968762 -0.0516287 -2.68276e-20) (0.972223 -0.0467147 -2.26287e-20) (0.978337 -0.0350553 3.35574e-20) (0.981161 -0.0316299 -2.38527e-21) (0.985743 -0.0240128 1.45556e-20) (0.987894 -0.0215409 -2.49237e-20) (0.991225 -0.0163814 4.93294e-21) (0.992788 -0.0145181 5.93999e-21) (0.995146 -0.0108922 -5.95431e-21) (0.996212 -0.00941711 1.19264e-20) (0.997797 -0.00674507 1.15314e-21) (0.998439 -0.00551196 -5.93382e-21) (0.999404 -0.00348192 9.08502e-21) (0.999656 -0.00232135 -2.21362e-21) (1.00008 -0.0005911 -5.00456e-21) (0.952606 -0.178614 -9.33559e-22) (0.952882 -0.124075 -3.02238e-20) (0.95365 -0.11282 6.36542e-21) (0.960787 -0.0813728 -1.94362e-20) (0.963418 -0.0734942 1.79008e-20) (0.970637 -0.0544461 -5.29941e-21) (0.973525 -0.0490394 1.05801e-20) (0.979403 -0.0369988 1.77465e-21) (0.981907 -0.0332322 -1.31575e-21) (0.986361 -0.0253458 -1.09351e-20) (0.988322 -0.0226389 2.81308e-21) (0.99158 -0.0172889 -1.96734e-21) (0.993024 -0.0152599 -1.34093e-20) (0.995338 -0.011496 -3.72505e-21) (0.996329 -0.00990198 5.42012e-21) (0.99789 -0.00713652 -2.98682e-21) (0.998478 -0.00578494 -8.90608e-22) (0.999429 -0.00365979 -2.95947e-21) (0.999661 -0.00242289 1.71519e-22) (1.00008 -0.000622366 2.90645e-21) (0.963028 -0.18274 -2.44792e-20) (0.960728 -0.127985 2.79442e-20) (0.958721 -0.116735 -1.22954e-20) (0.964756 -0.0851934 2.39088e-20) (0.966121 -0.0767194 6.12348e-21) (0.972795 -0.0573176 -2.98007e-20) (0.975031 -0.0513696 1.51769e-20) (0.980633 -0.0389963 -1.48693e-20) (0.982768 -0.034845 1.95974e-20) (0.987075 -0.0267018 -1.93752e-20) (0.988818 -0.0237334 2.07969e-20) (0.991989 -0.0181967 -7.12073e-21) (0.993299 -0.015989 1.16452e-11) (0.995559 -0.0120891 -1.15233e-11) (0.996466 -0.0103679 -2.29786e-21) (0.997995 -0.00750636 -2.12712e-22) (0.998533 -0.00606682 3.57629e-21) (0.999467 -0.00383641 -1.5683e-21) (0.99967 -0.00252196 -1.45498e-21) (1.00008 -0.000651872 5.37815e-22) (0.974993 -0.186641 0) (0.971905 -0.127814 0) (0.965802 -0.1188 0) (0.970703 -0.0860275 0) (0.970313 -0.0780411 0) (0.976269 -0.0581816 0) (0.977508 -0.0523624 0) (0.982695 -0.0397583 0) (0.984237 -0.0356459 -6.21671e-29) (0.988299 -0.0273513 6.21702e-29) (0.98968 -0.0243862 -3.12583e-28) (0.992699 -0.0187363 3.12594e-28) (0.993785 -0.0165117 1.15707e-11) (0.995946 -0.0125199 -1.15711e-11) (0.996712 -0.0107659 0) (0.998178 -0.00782118 0) (0.998633 -0.00633905 0) (0.999534 -0.00402297 0) (0.99969 -0.00264798 0) (1.00009 -0.000686639 0) (0.987959 -0.17325 0) (0.983998 -0.125583 0) (0.975727 -0.11787 -6.66785e-29) (0.978426 -0.085811 6.66785e-29) (0.976477 -0.0792924 0) (0.981057 -0.0589311 0) (0.981294 -0.05394 0) (0.985649 -0.0407641 0) (0.986538 -0.0370391 0) (0.990089 -0.0282808 0) (0.991045 -0.0254787 0) (0.993743 -0.0194829 0) (0.994553 -0.0173131 0) (0.996507 -0.0130697 0) (0.997097 -0.011316 0) (0.998434 -0.0081839 0) (0.998785 -0.00667492 0) (0.999615 -0.00421892 0) (0.999719 -0.00280494 0) (1.00009 -0.00072194 0) (0.999471 -0.162504 0) (0.9942 -0.122602 0) (0.985047 -0.115676 0) (0.985767 -0.0856798 0) (0.982698 -0.0798814 0) (0.9858 -0.0596945 0) (0.985252 -0.0551666 0) (0.988637 -0.0417212 0) (0.988995 -0.038231 0) (0.991921 -0.0291547 0) (0.992519 -0.0264483 0) (0.994814 -0.0201833 0) (0.995386 -0.0180365 0) (0.99708 -0.0135841 0) (0.997517 -0.0118155 5.7137e-29) (0.998689 -0.00852253 -5.7137e-29) (0.99895 -0.00697819 0) (0.999688 -0.00439744 0) (0.99975 -0.00294233 0) (1.00008 -0.000753795 0) (1.00977 -0.1539 0) (1.00324 -0.119275 0) (0.99359 -0.112628 0) (0.992658 -0.0851635 0) (0.988701 -0.0795952 0) (0.990417 -0.060154 0) (0.98919 -0.0557821 0) (0.991593 -0.0424342 0) (0.991485 -0.0390266 0) (0.993746 -0.0298484 0) (0.994032 -0.0271678 0) (0.995884 -0.0207602 0) (0.996248 -0.0186047 1.12254e-11) (0.997651 -0.0140189 -1.12254e-11) (0.997953 -0.0122219 0) (0.998941 -0.00881475 0) (0.999125 -0.00723061 0) (0.999754 -0.00455379 0) (0.999785 -0.00305486 0) (1.00008 -0.000781599 0) (1.01893 -0.146117 0) (1.01134 -0.115438 0) (1.00137 -0.109075 0) (0.999027 -0.0840803 0) (0.99436 -0.0786061 0) (0.994838 -0.0602148 0) (0.993002 -0.0558639 0) (0.99448 -0.0428706 0) (0.99394 -0.0394585 -3.2808e-28) (0.995549 -0.0303489 3.2808e-28) (0.995541 -0.0276475 -2.9392e-28) (0.996947 -0.0212039 2.9392e-28) (0.997115 -0.0190177 1.11001e-11) (0.998218 -0.0143648 -1.11001e-11) (0.998396 -0.0125309 3.19987e-28) (0.99919 -0.00905238 -3.19987e-28) (0.999304 -0.00742779 -3.18349e-28) (0.999817 -0.00468391 3.18349e-28) (0.999822 -0.00314261 0) (1.00007 -0.000805383 0) (1.02698 -0.138564 0) (1.01853 -0.111154 0) (1.00841 -0.105222 0) (1.00485 -0.082479 0) (0.999638 -0.0771076 0) (0.999013 -0.0598823 0) (0.996644 -0.0555131 0) (0.997269 -0.0430342 0) (0.996323 -0.0395753 0) (0.997316 -0.0306606 0) (0.997024 -0.0279099 0) (0.997997 -0.0215177 0) (0.997974 -0.019285 3.16301e-28) (0.99878 -0.0146232 -3.16301e-28) (0.998837 -0.012746 1.09191e-11) (0.999438 -0.00923531 -1.09191e-11) (0.999482 -0.00757003 -3.13588e-28) (0.999879 -0.00478667 3.13588e-28) (0.999859 -0.00320581 0) (1.00005 -0.000825377 0) (1.03401 -0.131148 0) (1.02489 -0.106565 0) (1.01475 -0.101155 -4.89044e-29) (1.01015 -0.0804421 4.89044e-29) (1.00453 -0.0752242 0) (1.00292 -0.0591784 0) (1.0001 -0.054803 0) (0.999939 -0.0429275 0) (0.998619 -0.0394145 -5.5266e-29) (0.999033 -0.0307832 5.5266e-29) (0.998468 -0.027973 0) (0.999028 -0.021701 0) (0.998816 -0.0194151 -5.52792e-29) (0.999337 -0.014794 5.52792e-29) (0.999272 -0.0128711 1.08189e-11) (0.999683 -0.00936348 -1.08189e-11) (0.999658 -0.00765886 0) (0.99994 -0.00486159 0) (0.999895 -0.00324506 0) (1.00004 -0.000841527 0) (1.04013 -0.123908 0) (1.0305 -0.101793 0) (1.0204 -0.0969229 -4.85796e-29) (1.01495 -0.078043 4.85796e-29) (1.00902 -0.073035 0) (1.00656 -0.0581332 0) (1.00334 -0.0537896 0) (1.00247 -0.0425578 0) (1.00082 -0.0390077 -5.64572e-29) (1.00069 -0.0307167 5.64572e-29) (0.999864 -0.0278533 2.692e-29) (1.00003 -0.0217526 -2.692e-29) (0.999636 -0.0194165 1.07197e-11) (0.999885 -0.0148761 -1.07197e-11) (0.999696 -0.0129104 0) (0.999927 -0.00943618 0) (0.999829 -0.00769634 -5.6919e-29) (1 -0.0049081 5.6919e-29) (0.99993 -0.00326142 0) (1.00004 -0.000853592 0) (1.04545 -0.116861 0) (1.03544 -0.0969265 0) (1.02543 -0.0925692 -4.44787e-29) (1.0193 -0.07535 4.44787e-29) (1.01313 -0.0705959 4.91879e-29) (1.00992 -0.0567838 -4.91879e-29) (1.00638 -0.0525167 0) (1.00487 -0.0419396 0) (1.0029 -0.0383827 -5.30616e-29) (1.00228 -0.0304655 5.30616e-29) (1.0012 -0.0275669 0) (1.00101 -0.0216731 0) (1.00043 -0.0192978 1.0594e-11) (1.00042 -0.014869 -1.0594e-11) (1.00011 -0.0128686 5.41148e-29) (1.00017 -0.00945281 -5.41148e-29) (0.999995 -0.00768485 -5.41595e-29) (1.00006 -0.00492574 5.41595e-29) (0.999964 -0.00325621 5.4173e-29) (1.00003 -0.00086125 -5.37292e-29) (1.05006 -0.110003 0) (1.0398 -0.0920194 0) (1.0299 -0.0881308 2.40637e-28) (1.02323 -0.0724247 -2.40637e-28) (1.01688 -0.06795 -2.68728e-28) (1.01303 -0.0551693 2.68728e-28) (1.0092 -0.0510198 0) (1.00712 -0.0410925 0) (1.00487 -0.037563 2.94164e-28) (1.00379 -0.0300378 -2.94164e-28) (1.00248 -0.027128 1.03779e-11) (1.00195 -0.0214655 -1.03779e-11) (1.00119 -0.0190674 3.01795e-28) (1.00094 -0.0147737 -3.01795e-28) (1.0005 -0.0127504 -3.03185e-28) (1.0004 -0.00941343 3.03185e-28) (1.00015 -0.0076269 0) (1.00012 -0.00491424 0) (0.999996 -0.00323078 0) (1.00002 -0.000864175 0) (1.05405 -0.103329 0) (1.04363 -0.0871067 0) (1.03385 -0.0836378 0) (1.02676 -0.0693191 0) (1.02026 -0.0651329 0) (1.0159 -0.0533274 0) (1.0118 -0.0493278 0) (1.00923 -0.0400381 0) (1.00671 -0.0365687 5.281e-28) (1.00523 -0.0294445 -5.281e-28) (1.00369 -0.0265494 1.02237e-11) (1.00284 -0.0211349 -1.02237e-11) (1.00192 -0.0187329 5.46105e-28) (1.00144 -0.0145922 -5.46105e-28) (1.00088 -0.0125602 0) (1.00063 -0.00931874 0) (1.00031 -0.007525 0) (1.00019 -0.0048737 0) (1.00003 -0.00318647 5.52804e-28) (1.00001 -0.000862094 -5.48275e-28) (1.05749 -0.0968353 0) (1.04699 -0.082211 0) (1.03735 -0.0791142 -2.21601e-28) (1.02994 -0.0660741 2.21601e-28) (1.02332 -0.0621749 2.51756e-28) (1.01852 -0.0512922 -2.51756e-28) (1.0142 -0.0474656 0) (1.01119 -0.0387981 0) (1.00843 -0.0354172 2.83017e-28) (1.00658 -0.0286978 -2.83017e-28) (1.00484 -0.0258424 0) (1.0037 -0.0206876 0) (1.00261 -0.0183015 1.02309e-11) (1.00192 -0.0143276 -1.02309e-11) (1.00125 -0.0123023 0) (1.00085 -0.00917015 0) (1.00045 -0.00738161 0) (1.00025 -0.00480456 0) (1.00005 -0.00312452 0) (1.00001 -0.000854827 0) (1.06045 -0.0905201 0) (1.04994 -0.0773481 0) (1.04042 -0.0745801 2.13338e-28) (1.03279 -0.0627221 -2.13338e-28) (1.02607 -0.0591024 0) (1.02091 -0.0490932 0) (1.01639 -0.0454555 0) (1.01301 -0.0373933 0) (1.01003 -0.0341246 0) (1.00785 -0.0278104 0) (1.00591 -0.0250175 0) (1.00451 -0.0201307 0) (1.00326 -0.0177799 1.01164e-11) (1.00238 -0.0139839 -1.01164e-11) (1.00159 -0.011981 0) (1.00106 -0.00896958 0) (1.00059 -0.00719908 0) (1.0003 -0.0047076 0) (1.00008 -0.00304608 0) (1.00001 -0.000842301 0) (1.063 -0.0843789 0) (1.05253 -0.0725286 0) (1.04313 -0.0700516 3.79461e-29) (1.03533 -0.0592883 -3.79461e-29) (1.02854 -0.0559379 0) (1.02309 -0.046756 0) (1.01838 -0.0433174 0) (1.01468 -0.0358428 0) (1.0115 -0.0327053 0) (1.00903 -0.0267947 0) (1.0069 -0.0240848 -2.46437e-29) (1.00527 -0.0194718 2.46437e-29) (1.00387 -0.0171744 1.00062e-11) (1.00281 -0.0135654 -1.00062e-11) (1.00191 -0.0116001 0) (1.00126 -0.00871936 0) (1.00072 -0.00697972 0) (1.00036 -0.00458384 0) (1.00011 -0.00295222 0) (1 -0.000824543 0) (1.06517 -0.0784055 0) (1.05478 -0.06776 0) (1.04551 -0.0655416 0) (1.0376 -0.0557929 0) (1.03074 -0.0527007 0) (1.02506 -0.0443022 0) (1.02019 -0.041069 -1.63573e-28) (1.01623 -0.0341639 1.63573e-28) (1.01285 -0.031173 0) (1.01013 -0.0256629 0) (1.00783 -0.0230534 0) (1.00599 -0.0187187 0) (1.00444 -0.0164913 1.98012e-11) (1.00322 -0.0130768 -1.98012e-11) (1.00222 -0.0111635 -1.87288e-28) (1.00145 -0.00842215 1.87288e-28) (1.00084 -0.00672578 -1.88975e-28) (1.00041 -0.00443453 1.88975e-28) (1.00013 -0.00284395 -1.89751e-28) (1 -0.000801666 1.88197e-28) (1.06703 -0.0725919 0) (1.05674 -0.0630465 0) (1.04759 -0.0610593 1.92847e-28) (1.03961 -0.052252 -1.92847e-28) (1.03271 -0.0494071 0) (1.02684 -0.0417502 0) (1.02183 -0.0387263 -2.47888e-28) (1.01763 -0.0323724 2.47888e-28) (1.01409 -0.0295403 -2.63961e-28) (1.01115 -0.0244263 2.63961e-28) (1.00868 -0.0219325 1.51066e-28) (1.00665 -0.0178791 -1.51066e-28) (1.00497 -0.0157366 9.80009e-12) (1.0036 -0.0125229 -9.80009e-12) (1.0025 -0.0106751 -2.87344e-28) (1.00163 -0.00808077 2.87344e-28) (1.00096 -0.00643949 -2.90272e-28) (1.00047 -0.00426106 2.90272e-28) (1.00015 -0.0027222 -2.91628e-28) (1 -0.000773854 2.89239e-28) (1.06862 -0.0669293 0) (1.05845 -0.0583905 0) (1.04941 -0.0566115 0) (1.04139 -0.0486786 0) (1.03445 -0.0460707 0) (1.02844 -0.039116 0) (1.0233 -0.0363034 0) (1.01891 -0.0304822 0) (1.01521 -0.0278187 0) (1.01208 -0.0230957 0) (1.00946 -0.0207306 0) (1.00727 -0.0169604 0) (1.00546 -0.0149161 9.70496e-12) (1.00396 -0.0119086 -9.70496e-12) (1.00276 -0.0101387 0) (1.00179 -0.00769817 0) (1.00106 -0.00612308 0) (1.00052 -0.00406492 0) (1.00017 -0.00258793 0) (0.999999 -0.000741341 0) (1.06996 -0.0614076 0) (1.05992 -0.0537926 0) (1.05099 -0.0522022 0) (1.04297 -0.0450829 0) (1.036 -0.0427025 0) (1.02987 -0.0364129 0) (1.02462 -0.0338125 0) (1.02007 -0.0285059 0) (1.01623 -0.0260189 -1.65576e-28) (1.01293 -0.021681 1.65576e-28) (1.01018 -0.0194557 2.48869e-29) (1.00783 -0.0159698 -2.48869e-29) (1.00591 -0.0140356 9.61555e-12) (1.00429 -0.0112388 -9.61555e-12) (1.003 -0.00955803 0) (1.00195 -0.00727739 0) (1.00116 -0.00577877 0) (1.00056 -0.00384766 0) (1.00019 -0.00244203 0) (0.999999 -0.000704398 0) (1.07109 -0.0560166 0) (1.0612 -0.049252 0) (1.05236 -0.0478338 0) (1.04435 -0.0414731 0) (1.03736 -0.0393116 0) (1.03114 -0.0336525 0) (1.0258 -0.0312645 0) (1.02112 -0.0264547 0) (1.01715 -0.0241506 0) (1.0137 -0.0201915 0) (1.01082 -0.0181156 1.45932e-28) (1.00835 -0.0149142 -1.45932e-28) (1.00631 -0.0131006 0) (1.0046 -0.0105183 0) (1.00322 -0.00893683 0) (1.0021 -0.00682144 0) (1.00125 -0.00540878 0) (1.0006 -0.00361086 0) (1.0002 -0.00228542 0) (0.999998 -0.000663323 0) (1.07205 -0.0507456 0) (1.06229 -0.0447666 0) (1.05354 -0.0435069 0) (1.04556 -0.0378553 0) (1.03855 -0.0359051 3.80165e-29) (1.03227 -0.0308446 -3.80165e-29) (1.02684 -0.0286686 0) (1.02205 -0.0243386 0) (1.01797 -0.0222226 0) (1.0144 -0.0186357 0) (1.01141 -0.0167173 0) (1.00882 -0.0138003 0) (1.00668 -0.0121164 0) (1.00487 -0.00975168 0) (1.00342 -0.00827876 0) (1.00223 -0.00633336 0) (1.00133 -0.00501531 0) (1.00064 -0.00335614 0) (1.00022 -0.002119 0) (0.999998 -0.000618429 0) (1.07285 -0.045584 0) (1.06323 -0.0403337 0) (1.05456 -0.0392209 0) (1.04661 -0.0342345 0) (1.03959 -0.0324886 0) (1.03326 -0.0279977 0) (1.02776 -0.0260328 0) (1.02288 -0.0221667 0) (1.0187 -0.0202429 -2.46679e-28) (1.01502 -0.0170215 2.46679e-28) (1.01193 -0.0152678 0) (1.00924 -0.0126342 0) (1.00702 -0.0110884 0) (1.00512 -0.00894362 0) (1.0036 -0.00758744 2.77239e-28) (1.00235 -0.00581616 -2.77239e-28) (1.0014 -0.00460056 0) (1.00068 -0.0030851 0) (1.00023 -0.00194367 0) (0.999999 -0.00057004 0) (1.07351 -0.040521 0) (1.06402 -0.0359498 0) (1.05543 -0.0349743 0) (1.04752 -0.030614 0) (1.04049 -0.0290663 0) (1.03412 -0.0251187 0) (1.02856 -0.0233641 0) (1.02361 -0.019947 0) (1.01934 -0.0182186 -1.57782e-28) (1.01558 -0.0153564 1.57782e-28) (1.01239 -0.0137732 0) (1.00962 -0.0114221 0) (1.00731 -0.0100213 0) (1.00535 -0.00809852 0) (1.00376 -0.00686637 1.7818e-28) (1.00245 -0.0052728 -1.7818e-28) (1.00146 -0.00416669 -1.81002e-28) (1.00071 -0.00279936 1.81002e-28) (1.00024 -0.00176032 0) (0.999999 -0.000518484 0) (1.07406 -0.035546 0) (1.06469 -0.0316107 0) (1.05616 -0.0307647 0) (1.04829 -0.0269962 0) (1.04125 -0.0256416 0) (1.03487 -0.0222137 0) (1.02926 -0.0206684 0) (1.02424 -0.0176866 0) (1.0199 -0.0161565 4.45817e-29) (1.01606 -0.0136471 -4.45817e-29) (1.01279 -0.0122396 -2.23842e-29) (1.00995 -0.0101695 2.23842e-29) (1.00757 -0.00891993 9.26275e-12) (1.00554 -0.00722068 -9.26275e-12) (1.0039 -0.006119 0) (1.00255 -0.0047062 0) (1.00152 -0.00371584 5.13945e-29) (1.00074 -0.00250051 -5.13945e-29) (1.00025 -0.00156983 0) (0.999999 -0.000464094 0) (1.0745 -0.0306483 0) (1.06525 -0.027312 0) (1.05677 -0.0265891 0) (1.04895 -0.0233826 0) (1.04191 -0.0222166 0) (1.03551 -0.0192878 0) (1.02985 -0.0179507 0) (1.02478 -0.015392 0) (1.02037 -0.0140623 2.3983e-28) (1.01648 -0.0119 -2.3983e-28) (1.01314 -0.0106723 0) (1.01023 -0.00888185 0) (1.0078 -0.0077889 9.21232e-12) (1.00572 -0.0063143 -9.21232e-12) (1.00403 -0.00534868 0) (1.00263 -0.00411923 0) (1.00157 -0.00325012 0) (1.00077 -0.00219013 0) (1.00026 -0.00137309 0) (1 -0.000407205 0) (1.07486 -0.0258176 0) (1.06571 -0.0230486 0) (1.05727 -0.022444 0) (1.04949 -0.0197739 0) (1.04245 -0.018793 0) (1.03604 -0.0163451 0) (1.03035 -0.0152155 0) (1.02524 -0.0130689 0) (1.02078 -0.0119414 0) (1.01683 -0.0101209 0) (1.01344 -0.00907678 -2.34683e-29) (1.01048 -0.00756438 2.34683e-29) (1.00799 -0.00663254 0) (1.00586 -0.00538343 0) (1.00413 -0.00455868 0) (1.0027 -0.00351473 0) (1.00161 -0.0027716 -1.78859e-28) (1.00079 -0.00186981 1.78859e-28) (1.00027 -0.00117096 0) (1 -0.000348148 0) (1.07514 -0.0210437 0) (1.06607 -0.0188154 0) (1.05768 -0.0183255 0) (1.04993 -0.01617 0) (1.04289 -0.0153716 0) (1.03648 -0.0133892 0) (1.03075 -0.0124665 0) (1.02562 -0.0107225 0) (1.02111 -0.00979887 0) (1.01712 -0.00831537 0) (1.01368 -0.00745778 0) (1.01068 -0.00622202 0) (1.00815 -0.00545508 9.13259e-12) (1.00598 -0.00443203 -9.13259e-12) (1.00422 -0.00375219 -4.9965e-29) (1.00276 -0.00289546 4.9965e-29) (1.00165 -0.00228232 5.08662e-29) (1.00081 -0.00154109 -5.08662e-29) (1.00027 -0.000964281 0) (1 -0.000287258 0) (1.07536 -0.0163165 0) (1.06635 -0.014607 0) (1.05799 -0.0142296 0) (1.05028 -0.0125707 0) (1.04323 -0.0119529 0) (1.03682 -0.010423 0) (1.03107 -0.00970706 0) (1.02592 -0.00835766 0) (1.02137 -0.00763915 0) (1.01735 -0.00648856 0) (1.01387 -0.00582001 -1.379e-28) (1.01084 -0.00485952 1.379e-28) (1.00827 -0.00426059 9.10346e-12) (1.00608 -0.00346394 -9.10346e-12) (1.00428 -0.00293233 0) (1.00281 -0.00226415 0) (1.00167 -0.00178429 0) (1.00082 -0.00120551 0) (1.00028 -0.000753918 0) (1 -0.00022487 0) (1.07551 -0.0116265 0) (1.06656 -0.0104176 0) (1.05822 -0.0101522 0) (1.05053 -0.00897474 0) (1.04349 -0.00853722 0) (1.03707 -0.00744892 0) (1.03131 -0.00694012 0) (1.02614 -0.00597852 0) (1.02157 -0.00546657 0) (1.01752 -0.00464531 0) (1.01402 -0.00416796 1.37496e-28) (1.01096 -0.00348139 -1.37496e-28) (1.00836 -0.00305304 9.08157e-12) (1.00615 -0.00248288 -9.08157e-12) (1.00434 -0.00210216 -2.69752e-28) (1.00284 -0.00162347 2.69752e-28) (1.0017 -0.00127951 0) (1.00083 -0.000864584 0) (1.00028 -0.000540716 0) (1 -0.000161301 0) (1.07561 -0.00696558 0) (1.06669 -0.00624115 0) (1.05838 -0.00608878 2.84656e-28) (1.0507 -0.00538106 -2.84656e-28) (1.04365 -0.00512388 0) (1.03724 -0.00446932 0) (1.03147 -0.00416797 0) (1.02628 -0.00358936 0) (1.0217 -0.00328486 0) (1.01764 -0.00279046 0) (1.01411 -0.00250572 0) (1.01104 -0.00209222 0) (1.00843 -0.00183614 9.06695e-12) (1.0062 -0.00149261 -9.06695e-12) (1.00437 -0.00126461 0) (1.00287 -0.000976118 0) (1.00171 -0.000769881 0) (1.00084 -0.000519843 0) (1.00028 -0.000325456 0) (1 -9.68653e-05 0) (1.07566 -0.00232271 0) (1.06676 -0.00207686 0) (1.05845 -0.00203036 0) (1.05078 -0.00179218 0) (1.04374 -0.00170889 0) (1.03732 -0.0014892 0) (1.03154 -0.00139041 0) (1.02636 -0.00119642 0) (1.02176 -0.00109607 0) (1.01769 -0.000930389 0) (1.01416 -0.00083626 0) (1.01108 -0.000697732 0) (1.00846 -0.000612897 -2.61381e-28) (1.00622 -0.000497833 2.61381e-28) (1.00439 -0.000422171 0) (1.00288 -0.000325565 0) (1.00172 -0.000257042 0) (1.00084 -0.00017336 0) (1.00028 -0.0001087 0) (1 -3.22358e-05 0) (0.990257 -0.186282 -8.9924e-20) (1.00023 -0.175792 2.81845e-20) (1.0101 -0.166411 1.14211e-20) (1.01952 -0.15779 2.10384e-20) (1.02811 -0.149442 1.2327e-20) (1.03578 -0.141276 -5.64401e-20) (1.04253 -0.133334 1.36518e-21) (1.04842 -0.125656 2.18451e-20) (1.05353 -0.118239 7.8169e-21) (1.05794 -0.111073 -2.56713e-20) (1.06174 -0.104147 2.38158e-20) (1.065 -0.0974501 1.0801e-20) (1.06779 -0.0909735 -1.43673e-20) (1.07017 -0.0847051 -4.69186e-21) (1.0722 -0.0786327 6.27845e-21) (1.07392 -0.0727429 -1.72731e-21) (1.07538 -0.0670224 1.03366e-22) (1.07661 -0.0614579 3.28186e-21) (1.07764 -0.0560359 -8.81242e-21) (1.07851 -0.0507436 -2.31135e-21) (1.07922 -0.045568 8.30116e-22) (1.07982 -0.0404969 4.44575e-21) (1.0803 -0.035518 4.76064e-21) (1.0807 -0.0306197 -3.75011e-21) (1.08102 -0.0257906 2.33183e-21) (1.08127 -0.0210196 -2.22741e-21) (1.08145 -0.0162959 3.47683e-23) (1.08159 -0.0116094 1.6352e-21) (1.08168 -0.00694974 -2.26657e-22) (1.08172 -0.00231069 2.31136e-23) (1.00093 -0.186034 -4.83035e-20) (1.011 -0.177062 7.0387e-22) (1.02028 -0.167833 7.68381e-21) (1.02891 -0.159133 1.23976e-20) (1.03667 -0.150579 -1.71139e-20) (1.04356 -0.142214 -1.39199e-20) (1.04962 -0.134099 3.25575e-20) (1.05489 -0.126268 -2.45096e-20) (1.05946 -0.118719 -1.78994e-20) (1.06339 -0.11144 1.8801e-20) (1.06677 -0.104421 3.10219e-21) (1.06966 -0.0976503 -8.98417e-21) (1.07213 -0.0911147 -2.77372e-21) (1.07423 -0.0848 1.78908e-20) (1.07601 -0.0786916 -1.9615e-21) (1.07753 -0.0727743 -1.55186e-21) (1.0788 -0.0670333 -6.58835e-21) (1.07987 -0.0614538 9.51215e-21) (1.08077 -0.0560215 -1.17072e-20) (1.08152 -0.0507224 7.45284e-21) (1.08214 -0.045543 -4.60936e-21) (1.08266 -0.0404702 1.92305e-21) (1.08308 -0.0354916 6.71004e-22) (1.08342 -0.0305947 7.20188e-22) (1.0837 -0.025768 -1.81341e-21) (1.08391 -0.0209999 2.01507e-21) (1.08408 -0.0162795 -6.05938e-22) (1.08421 -0.011596 -1.69678e-22) (1.08429 -0.00693736 5.76643e-22) (1.08434 -0.00229884 -1.02113e-22) (1.01188 -0.187034 4.40821e-20) (1.02261 -0.178978 -3.85312e-20) (1.03187 -0.169174 -3.05024e-22) (1.03995 -0.160188 3.68275e-21) (1.04694 -0.151355 -1.80772e-20) (1.05298 -0.142791 4.11728e-20) (1.0582 -0.134526 -1.54812e-20) (1.0627 -0.126574 -8.11929e-21) (1.06655 -0.118924 2.57383e-20) (1.06985 -0.111566 -1.9163e-20) (1.07267 -0.104485 1.72859e-21) (1.07506 -0.0976676 -8.58861e-21) (1.0771 -0.0910974 2.52162e-20) (1.07883 -0.0847578 -5.89623e-21) (1.08029 -0.078632 -3.74224e-21) (1.08152 -0.0727035 1.44342e-21) (1.08255 -0.066956 -2.74262e-22) (1.08341 -0.0613737 -4.1027e-21) (1.08413 -0.0559416 9.13479e-21) (1.08473 -0.0506449 6.72301e-22) (1.08523 -0.0454696 -2.17836e-21) (1.08563 -0.0404023 1.98334e-21) (1.08596 -0.03543 -4.77949e-21) (1.08623 -0.0305403 -3.98779e-22) (1.08645 -0.025721 -1.14156e-21) (1.08663 -0.0209605 1.3406e-21) (1.08676 -0.0162478 -3.5812e-22) (1.08687 -0.0115715 9.55037e-22) (1.08695 -0.00691721 -7.61293e-22) (1.08699 -0.00228114 -5.1619e-22) (1.02159 -0.188555 3.00082e-20) (1.03167 -0.181176 -6.28866e-21) (1.04066 -0.170528 4.1289e-20) (1.04835 -0.161165 -2.34981e-20) (1.0549 -0.151978 -1.19716e-21) (1.06045 -0.143184 8.14598e-21) (1.06516 -0.134756 -3.00232e-20) (1.06915 -0.126684 2.14689e-20) (1.07253 -0.118946 -1.40347e-20) (1.0754 -0.111525 -5.7151e-21) (1.07782 -0.1044 2.91511e-20) (1.07986 -0.097552 -1.69664e-20) (1.08159 -0.0909626 -2.52251e-21) (1.08303 -0.0846121 8.89418e-21) (1.08425 -0.0784817 5.34724e-22) (1.08526 -0.0725533 -6.37846e-21) (1.08611 -0.0668093 -2.71641e-21) (1.08681 -0.0612332 4.32267e-21) (1.08739 -0.055809 -1.73887e-21) (1.08786 -0.0505217 -7.14616e-22) (1.08825 -0.0453567 5.83322e-22) (1.08857 -0.0403004 2.48913e-21) (1.08883 -0.0353395 -3.43291e-21) (1.08904 -0.0304614 -6.92693e-22) (1.08921 -0.0256537 7.77952e-22) (1.08935 -0.0209047 4.18759e-21) (1.08946 -0.0162032 -3.17543e-21) (1.08955 -0.0115381 4.33506e-22) (1.08962 -0.00689234 -1.02288e-22) (1.08967 -0.00226052 1.96548e-22) (1.0315 -0.18996 1.29364e-20) (1.0402 -0.183048 2.75163e-20) (1.04829 -0.171666 -2.65358e-20) (1.05527 -0.162057 -1.69457e-20) (1.06129 -0.152549 1.71525e-20) (1.06641 -0.143537 1.06067e-21) (1.07075 -0.134941 -5.35391e-21) (1.0744 -0.126747 1.8617e-20) (1.07748 -0.11892 -2.25316e-20) (1.08006 -0.111436 -2.39797e-21) (1.08223 -0.104268 2.48406e-20) (1.08404 -0.0973928 -1.61161e-20) (1.08556 -0.0907869 4.56195e-21) (1.08683 -0.0844283 -5.58216e-21) (1.08787 -0.078296 -1.89307e-21) (1.08874 -0.0723703 8.58365e-21) (1.08946 -0.0666326 -1.70203e-21) (1.09004 -0.0610651 3.80113e-21) (1.09052 -0.0556515 -4.29892e-21) (1.0909 -0.0503759 -4.17999e-21) (1.09122 -0.0452236 1.2526e-21) (1.09147 -0.0401805 -1.66125e-22) (1.09167 -0.0352331 1.15661e-21) (1.09184 -0.0303687 -1.47652e-21) (1.09197 -0.0255748 -1.03839e-21) (1.09208 -0.0208394 1.89053e-21) (1.09217 -0.0161512 -9.53919e-22) (1.09225 -0.0114996 1.05572e-21) (1.09232 -0.00686589 -3.84166e-22) (1.09238 -0.00223936 3.86291e-22) (1.04184 -0.191213 2.61085e-20) (1.04938 -0.184426 6.04967e-21) (1.05654 -0.172407 -1.93921e-20) (1.06258 -0.162694 -1.13324e-20) (1.06786 -0.152955 2.41291e-20) (1.07239 -0.143795 3.85335e-21) (1.07625 -0.135069 -3.31713e-21) (1.07951 -0.126772 1.65165e-20) (1.08226 -0.118868 -9.4473e-21) (1.08456 -0.111328 -8.45476e-21) (1.08649 -0.104121 -7.66204e-21) (1.08809 -0.0972197 1.5494e-20) (1.08942 -0.0905982 1.13341e-21) (1.09052 -0.084232 -5.18793e-21) (1.09142 -0.0780981 4.45656e-21) (1.09215 -0.0721754 2.59842e-21) (1.09275 -0.0664441 2.68139e-21) (1.09324 -0.0608857 5.28307e-22) (1.09362 -0.0554829 -4.2851e-21) (1.09393 -0.0502196 3.91046e-21) (1.09418 -0.0450806 3.77109e-22) (1.09437 -0.0400514 -1.39398e-21) (1.09453 -0.0351183 -1.56656e-22) (1.09465 -0.0302685 3.44641e-21) (1.09475 -0.0254893 -6.68427e-22) (1.09484 -0.0207686 -5.64215e-22) (1.09491 -0.0160949 7.02223e-22) (1.09498 -0.0114582 1.52777e-22) (1.09504 -0.00683923 -1.92263e-23) (1.0951 -0.00221889 5.61734e-22) (1.05218 -0.192379 -1.20427e-20) (1.05879 -0.185447 -1.64265e-20) (1.06528 -0.172847 6.91118e-21) (1.0705 -0.163055 -8.82885e-21) (1.07506 -0.153127 5.60429e-21) (1.07893 -0.143874 -2.22096e-20) (1.08222 -0.135061 1.34169e-20) (1.08501 -0.126698 -2.05917e-21) (1.08735 -0.118742 -1.05249e-20) (1.08931 -0.111164 6.34182e-21) (1.09094 -0.103931 -3.36819e-21) (1.09229 -0.0970133 -4.64358e-21) (1.09341 -0.0903828 4.73344e-21) (1.09431 -0.0840136 -5.95452e-21) (1.09505 -0.0778816 -2.91729e-21) (1.09564 -0.0719644 7.47864e-22) (1.09612 -0.0662415 1.1011e-21) (1.09649 -0.0606936 -3.41058e-21) (1.09678 -0.055303 -2.55364e-21) (1.09701 -0.0500531 -1.21617e-21) (1.09718 -0.0449283 3.74093e-21) (1.09732 -0.0399139 -2.8076e-21) (1.09742 -0.0349962 2.3532e-22) (1.0975 -0.0301619 -1.4485e-21) (1.09756 -0.0253984 -1.86999e-22) (1.09762 -0.0206933 -1.1203e-21) (1.09767 -0.0160352 2.17842e-22) (1.09772 -0.0114147 -1.98698e-21) (1.09778 -0.00681248 5.54653e-23) (1.09784 -0.00219966 -1.81831e-21) (1.06238 -0.193403 1.27928e-20) (1.06804 -0.186184 -1.49696e-20) (1.07394 -0.173119 2.60509e-21) (1.07847 -0.163227 1.484e-20) (1.08242 -0.153111 -6.13376e-22) (1.0857 -0.143782 1.05583e-20) (1.08846 -0.134904 -1.65343e-20) (1.09076 -0.126498 2.08244e-20) (1.09268 -0.118514 1.2461e-21) (1.09428 -0.110918 -1.39417e-20) (1.09559 -0.103674 -1.39955e-21) (1.09667 -0.0967521 4.50257e-21) (1.09754 -0.0901225 5.22863e-21) (1.09824 -0.0837583 -2.44578e-22) (1.09879 -0.0776344 4.45069e-21) (1.09923 -0.0717278 -1.73908e-21) (1.09956 -0.0660173 -5.48507e-22) (1.09982 -0.0604832 7.15979e-22) (1.1 -0.0551074 5.75749e-21) (1.10014 -0.049873 -1.31467e-21) (1.10024 -0.0447643 -1.20193e-22) (1.1003 -0.0397665 -2.13299e-21) (1.10035 -0.0348654 9.79899e-22) (1.10038 -0.030048 1.02167e-21) (1.10041 -0.0253015 1.71219e-21) (1.10043 -0.0206134 6.25865e-22) (1.10046 -0.0159721 1.41378e-21) (1.1005 -0.0113688 1.00718e-21) (1.10054 -0.00678547 6.98126e-22) (1.1006 -0.002182 1.27649e-21) (1.0725 -0.194202 1.52138e-20) (1.07714 -0.186615 4.71474e-21) (1.08236 -0.173239 -1.36925e-20) (1.08621 -0.163253 -5.7427e-22) (1.0896 -0.152967 1.27362e-20) (1.09235 -0.143567 -7.45512e-21) (1.09463 -0.134631 -1.14089e-20) (1.0965 -0.126195 1.39178e-20) (1.09803 -0.118194 -8.85765e-21) (1.09928 -0.110592 4.45418e-22) (1.10029 -0.103349 2.35768e-22) (1.10109 -0.0964338 2.95381e-22) (1.10172 -0.0898143 -9.27289e-22) (1.10222 -0.0834626 -5.01787e-21) (1.10259 -0.0773532 6.98864e-21) (1.10286 -0.0714624 -4.77339e-21) (1.10306 -0.0657687 3.70869e-22) (1.10319 -0.0602521 2.10741e-21) (1.10327 -0.0548943 -2.64508e-21) (1.10331 -0.0496781 -1.07382e-21) (1.10332 -0.0445877 -2.84393e-22) (1.10332 -0.0396083 -1.6422e-21) (1.10331 -0.0347257 1.96395e-22) (1.10329 -0.0299267 7.2474e-22) (1.10327 -0.0251985 -1.51002e-21) (1.10327 -0.0205289 5.8819e-22) (1.10327 -0.0159057 -8.32677e-22) (1.10329 -0.0113209 -5.73576e-22) (1.10333 -0.00675813 -7.53391e-22) (1.10338 -0.0021662 -7.41717e-22) (1.08257 -0.194742 6.48482e-22) (1.08622 -0.186722 -1.42652e-20) (1.09069 -0.173172 6.44534e-21) (1.0938 -0.16311 3.71485e-21) (1.09659 -0.152698 -6.9052e-21) (1.09882 -0.14325 2.02019e-21) (1.10065 -0.134269 -6.02545e-21) (1.10212 -0.125812 4.517e-22) (1.1033 -0.117805 3.50035e-21) (1.10422 -0.110204 2.67466e-22) (1.10494 -0.102971 8.30216e-22) (1.10549 -0.0960688 -4.36835e-22) (1.1059 -0.0894656 -4.37055e-22) (1.1062 -0.0831322 1.21163e-21) (1.10639 -0.0770422 6.18383e-22) (1.10651 -0.0711716 -1.75204e-21) (1.10657 -0.0654984 -2.51828e-21) (1.10658 -0.0600024 -4.45246e-23) (1.10655 -0.0546652 9.11112e-22) (1.1065 -0.0494696 8.99395e-23) (1.10644 -0.0443996 -9.90814e-23) (1.10636 -0.0394403 -3.50506e-22) (1.10629 -0.0345778 -5.46268e-22) (1.10622 -0.0297986 -2.00471e-22) (1.10616 -0.0250902 9.50875e-22) (1.10612 -0.0204402 -1.55229e-21) (1.1061 -0.0158365 2.56572e-22) (1.1061 -0.0112712 -3.89181e-22) (1.10612 -0.0067306 -3.46409e-22) (1.10617 -0.0021525 -3.30319e-22) (1.09258 -0.195022 1.49222e-20) (1.09528 -0.186529 -4.43082e-21) (1.09897 -0.172903 -6.86756e-21) (1.10134 -0.162776 1.11317e-20) (1.10352 -0.15229 -6.69162e-21) (1.10522 -0.142823 3.30563e-21) (1.10658 -0.13382 -3.01945e-21) (1.10766 -0.125361 6.20128e-21) (1.10848 -0.117357 -2.77203e-21) (1.10911 -0.109767 5.12664e-22) (1.10956 -0.10255 -1.89085e-21) (1.10987 -0.0956667 6.15711e-22) (1.11006 -0.0890848 -6.4869e-22) (1.11016 -0.082774 2.47177e-21) (1.11019 -0.0767072 -3.09687e-21) (1.11016 -0.0708601 3.13702e-21) (1.11009 -0.0652102 -1.1919e-21) (1.10998 -0.0597374 -3.39834e-23) (1.10985 -0.054423 1.22839e-21) (1.10971 -0.0492498 -3.23891e-22) (1.10956 -0.0442019 -2.96976e-23) (1.10942 -0.0392643 -6.50256e-23) (1.10929 -0.0344231 1.38797e-21) (1.10917 -0.0296651 -4.53446e-22) (1.10907 -0.0249776 4.8546e-22) (1.10899 -0.0203483 7.41022e-22) (1.10894 -0.0157651 2.27011e-22) (1.10892 -0.0112202 5.77591e-22) (1.10893 -0.00670308 6.93201e-22) (1.10897 -0.00214104 4.54136e-22) (1.10247 -0.195046 9.47932e-22) (1.10425 -0.186074 -3.60698e-21) (1.10716 -0.172443 2.69725e-21) (1.10884 -0.162258 -1.08515e-21) (1.11042 -0.151739 2.29731e-21) (1.11158 -0.142279 -2.75045e-23) (1.11249 -0.133281 -8.26018e-22) (1.11317 -0.124837 -4.88613e-22) (1.11365 -0.116851 -3.50121e-22) (1.11397 -0.109284 9.04526e-22) (1.11415 -0.10209 -3.63353e-22) (1.11423 -0.0952321 -6.16266e-22) (1.11421 -0.0886766 1.73612e-21) (1.11413 -0.0823925 2.1333e-22) (1.11399 -0.0763524 -1.79182e-21) (1.11382 -0.0705315 1.18682e-21) (1.11361 -0.0649075 9.26807e-23) (1.11339 -0.0594599 -3.97483e-22) (1.11316 -0.0541701 2.27101e-23) (1.11293 -0.049021 -7.34042e-22) (1.1127 -0.0439965 4.37491e-23) (1.11249 -0.0390819 5.41027e-22) (1.1123 -0.0342632 2.99914e-22) (1.11212 -0.0295273 -3.34199e-23) (1.11198 -0.0248616 1.89447e-22) (1.11187 -0.020254 -2.26877e-22) (1.11179 -0.0156922 -6.83678e-24) (1.11175 -0.0111685 5.85594e-23) (1.11174 -0.00667571 -2.16782e-22) (1.11177 -0.00213189 -2.02175e-22) (1.11225 -0.194815 -1.92871e-22) (1.11313 -0.18538 2.84442e-22) (1.11524 -0.171806 -5.34782e-22) (1.11626 -0.161576 -3.31346e-23) (1.11726 -0.15106 3.7507e-22) (1.11791 -0.141626 -7.05002e-22) (1.11837 -0.132653 1.4102e-22) (1.11866 -0.124244 8.77561e-22) (1.1188 -0.11629 -6.07319e-22) (1.11882 -0.108753 -5.35406e-22) (1.11874 -0.101592 4.78499e-22) (1.11858 -0.0947662 6.59468e-22) (1.11836 -0.0882424 6.39155e-22) (1.1181 -0.0819894 -1.74048e-21) (1.1178 -0.0759795 5.27241e-22) (1.11748 -0.0701878 1.80827e-22) (1.11714 -0.064592 -4.73558e-22) (1.11681 -0.0591717 3.38947e-22) (1.11647 -0.0539083 -7.01195e-22) (1.11615 -0.0487846 5.94332e-22) (1.11585 -0.0437849 -6.61152e-22) (1.11557 -0.0388944 -1.79418e-22) (1.11531 -0.0340992 4.71845e-22) (1.11509 -0.0293862 -4.05173e-22) (1.1149 -0.0247431 1.61162e-22) (1.11476 -0.020158 -3.01805e-22) (1.11465 -0.0156184 -3.22115e-23) (1.11458 -0.0111163 -1.33761e-23) (1.11456 -0.00664861 9.37393e-23) (1.11457 -0.00212505 -7.8369e-23) (1.12192 -0.194342 5.54623e-23) (1.12188 -0.184457 -7.62346e-23) (1.12318 -0.170989 4.93086e-23) (1.12358 -0.160747 -2.37575e-23) (1.12401 -0.150267 2.73449e-23) (1.12417 -0.140877 1.13896e-23) (1.12421 -0.131948 -6.83763e-23) (1.12412 -0.123586 1.93834e-22) (1.12394 -0.115675 -1.91624e-22) (1.12367 -0.10818 1.05145e-22) (1.12333 -0.101058 -1.86502e-22) (1.12294 -0.0942712 9.26654e-23) (1.12252 -0.0877844 2.5678e-22) (1.12207 -0.0815666 -8.12492e-23) (1.12161 -0.0755903 3.75862e-23) (1.12114 -0.0698307 -6.25437e-23) (1.12068 -0.0642654 3.43585e-23) (1.12023 -0.0588743 -5.39544e-23) (1.1198 -0.0536388 -1.57035e-22) (1.11939 -0.048542 1.66824e-22) (1.11901 -0.0435682 2.25078e-22) (1.11866 -0.0387027 -2.06992e-22) (1.11834 -0.0339319 1.25356e-22) (1.11807 -0.0292426 4.92049e-23) (1.11783 -0.0246229 -2.16425e-22) (1.11765 -0.0200609 1.8268e-22) (1.11751 -0.0155441 -1.46981e-22) (1.11742 -0.0110641 9.72435e-23) (1.11737 -0.00662187 -6.0367e-23) (1.11738 -0.00212047 3.12583e-23) (1.13149 -0.19361 1.90393e-21) (1.13052 -0.183311 2.30609e-23) (1.13098 -0.170004 -1.50425e-21) (1.13078 -0.159783 1.65074e-21) (1.13065 -0.149369 -1.29453e-21) (1.13036 -0.140044 -7.34195e-23) (1.12998 -0.131175 5.38979e-22) (1.12953 -0.122877 -1.31876e-22) (1.12904 -0.115017 1.79334e-22) (1.12848 -0.107566 -2.44445e-23) (1.12789 -0.100491 8.97765e-23) (1.12728 -0.0937488 -2.60332e-23) (1.12666 -0.087304 3.43587e-23) (1.12603 -0.0811256 -8.45632e-23) (1.12542 -0.0751863 3.10208e-23) (1.12481 -0.0694614 1.03932e-22) (1.12422 -0.063929 -4.69093e-25) (1.12366 -0.0585689 6.93711e-24) (1.12313 -0.0533629 -4.7531e-23) (1.12263 -0.0482943 7.67134e-23) (1.12216 -0.0433474 -2.68405e-23) (1.12174 -0.0385079 2.62825e-23) (1.12137 -0.0337622 4.72186e-23) (1.12104 -0.0290974 1.8981e-23) (1.12076 -0.0245015 -6.66954e-24) (1.12054 -0.0199631 4.16214e-23) (1.12037 -0.0154696 2.17057e-23) (1.12025 -0.0110119 3.60474e-23) (1.12019 -0.00659545 5.58164e-24) (1.12018 -0.002118 3.66386e-23) (1.14096 -0.192623 -3.39426e-21) (1.13894 -0.181931 1.11774e-21) (1.13865 -0.168845 -7.46294e-23) (1.13785 -0.158693 7.23559e-22) (1.1372 -0.148373 9.42818e-22) (1.13645 -0.139135 -1.08771e-21) (1.13568 -0.13034 -5.91645e-22) (1.13489 -0.122119 1.4692e-22) (1.1341 -0.114318 -1.35022e-22) (1.13327 -0.10692 4.30204e-22) (1.13243 -0.0998977 6.49887e-23) (1.1316 -0.093205 -1.66679e-22) (1.13079 -0.086806 -5.89661e-22) (1.12999 -0.0806702 8.26687e-22) (1.12922 -0.0747705 -4.85632e-22) (1.12847 -0.0690826 1.01407e-22) (1.12776 -0.0635848 5.0522e-23) (1.12708 -0.0582573 6.87172e-23) (1.12645 -0.0530821 -4.71393e-23) (1.12586 -0.0480427 5.69167e-23) (1.12532 -0.0431237 -1.44073e-22) (1.12483 -0.0383109 1.76502e-22) (1.1244 -0.0335909 -5.3041e-23) (1.12402 -0.0289511 -6.43234e-23) (1.12369 -0.0243796 -5.92905e-23) (1.12343 -0.0198651 4.78552e-23) (1.12323 -0.0153955 -4.50445e-23) (1.12309 -0.01096 1.06381e-22) (1.123 -0.00656934 5.7571e-23) (1.12298 -0.00211757 -6.12583e-23) (1.15031 -0.191213 1.26608e-21) (1.14716 -0.18033 -8.58841e-22) (1.14621 -0.167585 -3.30152e-22) (1.1448 -0.157486 2.81634e-22) (1.14367 -0.147297 -1.7561e-21) (1.14248 -0.138153 3.57078e-22) (1.14133 -0.129449 5.50288e-22) (1.14019 -0.121328 -5.77184e-22) (1.1391 -0.113589 1.357e-21) (1.138 -0.106236 -8.15769e-22) (1.13694 -0.0992772 3.37026e-22) (1.1359 -0.0926395 -7.25947e-22) (1.13489 -0.0862909 1.49555e-21) (1.13393 -0.0802013 -2.72721e-22) (1.133 -0.074344 -3.08941e-22) (1.13212 -0.0686953 -1.82945e-22) (1.13129 -0.063234 2.97445e-22) (1.1305 -0.0579406 -3.85977e-22) (1.12977 -0.0527974 7.98076e-23) (1.12909 -0.0477882 1.15771e-22) (1.12847 -0.0428979 1.44099e-22) (1.12792 -0.0381125 -1.71408e-22) (1.12742 -0.0334188 -1.08414e-23) (1.12698 -0.0288045 1.11205e-22) (1.12661 -0.0242576 9.68672e-23) (1.12631 -0.0197673 -1.07712e-22) (1.12608 -0.0153219 -1.19353e-22) (1.12591 -0.0109085 3.06496e-23) (1.1258 -0.00654315 -1.6176e-23) (1.12576 -0.00211852 4.66265e-23) (1.15942 -0.189486 4.30894e-21) (1.15535 -0.178547 -2.72862e-21) (1.1537 -0.166221 9.84278e-22) (1.1517 -0.156173 -3.27185e-22) (1.1501 -0.146154 -1.37422e-21) (1.14848 -0.137111 2.8735e-21) (1.14696 -0.128509 -6.79798e-22) (1.14548 -0.120474 -7.6398e-22) (1.14405 -0.112816 2.88744e-22) (1.1427 -0.105537 8.50455e-22) (1.14141 -0.0986431 -7.996e-22) (1.14016 -0.0920626 2.30353e-22) (1.13898 -0.0857663 1.04721e-22) (1.13785 -0.0797246 -1.41095e-22) (1.13677 -0.0739112 6.31209e-22) (1.13576 -0.0683031 -4.46504e-22) (1.1348 -0.0628794 -8.72491e-23) (1.13391 -0.057621 5.712e-23) (1.13308 -0.0525106 -3.19148e-22) (1.13232 -0.0475323 1.0926e-22) (1.13162 -0.0426712 7.33163e-23) (1.13099 -0.0379137 3.19602e-22) (1.13043 -0.0332467 2.78822e-22) (1.12994 -0.0286581 -2.31252e-22) (1.12953 -0.0241361 1.69204e-22) (1.12918 -0.01967 4.27591e-23) (1.12892 -0.0152491 5.59161e-23) (1.12872 -0.0108579 3.25882e-23) (1.1286 -0.00651667 -3.66314e-23) (1.12853 -0.00212033 1.05681e-22) (1.16818 -0.187588 -5.84145e-22) (1.16345 -0.176655 2.52286e-21) (1.16107 -0.164745 -1.25817e-21) (1.15853 -0.154762 -2.33764e-22) (1.15645 -0.144939 1.01152e-21) (1.15441 -0.136007 -4.81974e-22) (1.15253 -0.12752 2.14085e-22) (1.15072 -0.11957 3.15855e-22) (1.149 -0.112005 5.62919e-23) (1.14739 -0.104816 -8.19086e-22) (1.14587 -0.0979925 1.32541e-21) (1.14442 -0.0914732 -6.44098e-22) (1.14305 -0.0852319 -2.59547e-23) (1.14176 -0.0792403 -4.22499e-22) (1.14054 -0.0734727 2.48882e-22) (1.13939 -0.0679067 -3.29464e-22) (1.13831 -0.0625217 1.05089e-22) (1.13731 -0.0572993 1.09184e-22) (1.13638 -0.0522225 3.73676e-22) (1.13553 -0.0472757 -3.45334e-22) (1.13475 -0.0424444 -4.96888e-23) (1.13406 -0.0377151 -1.05256e-22) (1.13344 -0.0330751 -1.84985e-22) (1.13289 -0.0285123 4.44216e-23) (1.13243 -0.0240154 -1.54485e-22) (1.13205 -0.0195736 -1.45731e-22) (1.13174 -0.0151768 1.0483e-23) (1.13152 -0.0108089 -1.48284e-22) (1.13138 -0.00648887 -4.99437e-23) (1.13129 -0.00212015 -8.71835e-23) (1.17666 -0.185582 1.53311e-21) (1.1714 -0.174705 1.97161e-22) (1.1683 -0.16317 -1.19016e-22) (1.16525 -0.153269 -8.79352e-22) (1.1627 -0.143653 5.67832e-22) (1.16027 -0.134847 -1.8983e-22) (1.15803 -0.126487 2.26144e-22) (1.15592 -0.118634 -4.18257e-22) (1.15393 -0.111169 4.15103e-22) (1.15207 -0.104072 -3.5238e-22) (1.15032 -0.0973235 3.23538e-22) (1.14867 -0.0908699 -5.65402e-23) (1.14712 -0.0846871 -3.55962e-22) (1.14566 -0.0787481 3.7506e-22) (1.14429 -0.0730283 -3.49847e-22) (1.143 -0.0675058 1.73475e-22) (1.14181 -0.062161 6.64852e-23) (1.1407 -0.0569756 -1.0338e-22) (1.13967 -0.0519332 6.76235e-24) (1.13873 -0.0470186 1.18952e-22) (1.13788 -0.0422175 -6.24252e-24) (1.13711 -0.0375168 8.56857e-24) (1.13643 -0.032904 -7.40201e-23) (1.13583 -0.0283673 1.01762e-23) (1.13532 -0.0238954 6.90375e-23) (1.1349 -0.019478 2.56921e-23) (1.13456 -0.015105 -6.44096e-23) (1.13431 -0.0107612 4.99486e-23) (1.13415 -0.00646109 6.78511e-25) (1.13404 -0.00211976 -9.54095e-24) (1.18493 -0.183474 -1.81262e-21) (1.17921 -0.172708 -1.77189e-22) (1.17537 -0.161503 2.56503e-22) (1.17184 -0.151706 7.80359e-22) (1.16883 -0.142303 -5.54843e-22) (1.16603 -0.133639 1.57028e-23) (1.16345 -0.125417 -1.30551e-22) (1.16105 -0.117674 4.80268e-22) (1.1588 -0.110312 -5.67416e-22) (1.1567 -0.103308 4.71245e-22) (1.15473 -0.0966378 -5.14873e-22) (1.15288 -0.0902537 -4.41513e-23) (1.15115 -0.0841325 5.24081e-22) (1.14953 -0.0782487 -3.94675e-22) (1.14802 -0.0725786 3.0221e-22) (1.1466 -0.0671013 -1.61445e-22) (1.14529 -0.0617977 2.41347e-25) (1.14407 -0.0566503 1.18254e-22) (1.14295 -0.0516431 -5.99442e-23) (1.14192 -0.0467612 -1.46071e-22) (1.14099 -0.0419908 -4.17257e-23) (1.14015 -0.037319 1.01294e-22) (1.1394 -0.0327336 4.16494e-23) (1.13875 -0.0282231 2.24859e-23) (1.1382 -0.0237764 -1.11492e-23) (1.13773 -0.0193832 2.89862e-24) (1.13736 -0.0150339 -4.3182e-24) (1.13708 -0.0107142 7.97542e-23) (1.13689 -0.00643495 -4.4723e-23) (1.13678 -0.00212127 7.62825e-24) (1.19303 -0.181256 -1.14224e-21) (1.18688 -0.170653 6.12857e-23) (1.18232 -0.15974 1.92595e-21) (1.17829 -0.150084 -3.26204e-22) (1.17485 -0.140901 -9.7277e-22) (1.17169 -0.132393 1.09084e-21) (1.1688 -0.124318 -1.14945e-21) (1.16611 -0.116693 1.54722e-22) (1.1636 -0.109439 -6.91351e-22) (1.16127 -0.10253 1.28126e-21) (1.15909 -0.0959401 -1.45223e-21) (1.15705 -0.0896281 5.91586e-22) (1.15515 -0.083571 -4.33252e-22) (1.15337 -0.0777442 1.06356e-22) (1.15171 -0.0721255 -2.88264e-22) (1.15017 -0.0666946 9.57195e-22) (1.14874 -0.0614332 -3.19602e-22) (1.14741 -0.0563245 -1.62776e-22) (1.1462 -0.0513531 -1.84646e-22) (1.14508 -0.0465043 1.6499e-22) (1.14407 -0.0417649 -1.167e-22) (1.14316 -0.0371222 -3.61236e-22) (1.14236 -0.0325643 -2.35032e-23) (1.14165 -0.02808 -1.0966e-22) (1.14105 -0.0236585 -4.58971e-22) (1.14054 -0.0192896 1.9023e-22) (1.14014 -0.0149637 -1.72704e-22) (1.13983 -0.0106677 -2.86015e-22) (1.13962 -0.0064105 -9.38003e-23) (1.1395 -0.00212486 -2.1983e-22) (1.20097 -0.178911 -9.86012e-21) (1.1944 -0.168525 5.75327e-21) (1.18915 -0.157888 -3.69191e-21) (1.18463 -0.148408 2.77383e-21) (1.18077 -0.139456 3.31913e-21) (1.17727 -0.131117 -5.62474e-21) (1.17406 -0.123193 1.62604e-21) (1.1711 -0.115693 1.22513e-21) (1.16834 -0.108551 1.08103e-21) (1.16579 -0.10174 -2.3583e-21) (1.1634 -0.0952335 1.48488e-21) (1.16118 -0.0889959 5.26225e-22) (1.15911 -0.0830047 2.48117e-22) (1.15718 -0.0772366 2.38005e-22) (1.15538 -0.0716703 -1.46362e-21) (1.15371 -0.0662868 6.11932e-22) (1.15216 -0.0610685 3.39826e-22) (1.15073 -0.0559991 -8.06615e-22) (1.14942 -0.0510638 3.90303e-22) (1.14822 -0.0462485 3.12792e-22) (1.14713 -0.0415402 5.19893e-22) (1.14615 -0.0369267 -2.7248e-22) (1.14529 -0.0323964 2.84404e-22) (1.14453 -0.0279384 5.05097e-22) (1.14388 -0.0235419 -5.12543e-22) (1.14333 -0.0191971 -3.45706e-23) (1.14289 -0.0148944 3.93697e-22) (1.14256 -0.0106216 -8.48384e-24) (1.14233 -0.00638679 -1.42322e-22) (1.14219 -0.00212948 2.33844e-22) (1.20871 -0.176433 -3.49837e-21) (1.20176 -0.166317 5.5987e-22) (1.19587 -0.155958 3.76735e-21) (1.19086 -0.146688 -2.61101e-21) (1.18659 -0.137974 2.29569e-21) (1.18276 -0.129813 -6.319e-21) (1.17926 -0.122047 5.00133e-21) (1.17602 -0.114677 -1.71151e-22) (1.17303 -0.107651 -4.19997e-21) (1.17025 -0.100941 2.71944e-21) (1.16767 -0.0945208 -7.97455e-22) (1.16527 -0.0883597 1.69332e-21) (1.16303 -0.0824358 -4.35638e-21) (1.16094 -0.0767275 6.16046e-22) (1.15901 -0.0712147 7.122e-22) (1.15721 -0.0658793 -3.72143e-22) (1.15555 -0.0607045 -7.79772e-22) (1.15401 -0.0556748 1.24898e-21) (1.15261 -0.0507759 3.17601e-22) (1.15132 -0.0459943 -1.1238e-21) (1.15016 -0.0413173 -2.03666e-22) (1.14911 -0.036733 3.04268e-22) (1.14819 -0.0322302 -1.65562e-22) (1.14737 -0.0277982 -3.11803e-22) (1.14668 -0.0234266 1.10764e-21) (1.14609 -0.0191057 -5.20592e-22) (1.14562 -0.0148261 1.22965e-22) (1.14526 -0.0105759 -5.53606e-22) (1.145 -0.00636308 -1.27825e-22) (1.14485 -0.00213418 2.42206e-22) (1.21623 -0.173826 1.32085e-20) (1.20896 -0.164033 -5.33964e-21) (1.20249 -0.153962 -2.69823e-21) (1.19699 -0.144928 -3.4466e-21) (1.19233 -0.136461 -4.1687e-21) (1.18817 -0.128487 3.484e-21) (1.18438 -0.120883 2.96077e-21) (1.18089 -0.113648 2.06256e-22) (1.17766 -0.106741 -1.70971e-21) (1.17467 -0.100134 -3.03629e-21) (1.17189 -0.0938031 -1.51787e-21) (1.16931 -0.0877201 2.17787e-21) (1.16691 -0.0818649 1.64224e-21) (1.16467 -0.0762174 -3.45998e-21) (1.1626 -0.0707589 3.85136e-21) (1.16068 -0.0654722 -2.21224e-22) (1.1589 -0.0603415 -7.7145e-22) (1.15727 -0.0553518 9.67114e-22) (1.15577 -0.0504896 -2.52125e-22) (1.1544 -0.0457416 2.63592e-22) (1.15316 -0.0410959 -1.42736e-21) (1.15205 -0.0365408 2.1997e-22) (1.15106 -0.0320654 -8.92897e-22) (1.15019 -0.0276593 8.92958e-22) (1.14945 -0.0233124 -5.60363e-22) (1.14882 -0.0190152 2.81599e-22) (1.14832 -0.0147585 5.34071e-23) (1.14793 -0.0105304 4.77917e-23) (1.14765 -0.00633898 3.69065e-22) (1.14748 -0.00213845 -6.95191e-22) (1.22352 -0.171099 -1.46649e-20) (1.216 -0.161683 -5.277e-22) (1.209 -0.15191 1.64585e-20) (1.20304 -0.143134 -1.53897e-20) (1.19799 -0.134919 1.69084e-20) (1.1935 -0.12714 1.49242e-21) (1.18943 -0.119702 -6.50004e-21) (1.18569 -0.112608 3.04065e-21) (1.18223 -0.105824 -1.3561e-21) (1.17903 -0.0993226 1.68103e-21) (1.17606 -0.0930829 -1.94022e-21) (1.17331 -0.0870794 -9.39595e-22) (1.17074 -0.081294 6.5087e-22) (1.16836 -0.0757081 7.53451e-22) (1.16616 -0.0703045 -7.53284e-22) (1.16411 -0.0650669 -1.42634e-21) (1.16223 -0.0599803 -4.69994e-22) (1.16049 -0.0550309 -1.25136e-22) (1.15889 -0.0502052 1.72443e-21) (1.15744 -0.045491 -3.91923e-21) (1.15612 -0.0408765 1.49453e-21) (1.15494 -0.0363504 -4.83838e-22) (1.15389 -0.0319023 -1.19904e-21) (1.15298 -0.0275219 2.70492e-22) (1.15218 -0.0231994 -5.11103e-22) (1.15152 -0.0189256 1.15988e-22) (1.15098 -0.0146915 1.7238e-22) (1.15057 -0.0104851 3.94871e-22) (1.15027 -0.00631441 1.62373e-22) (1.15009 -0.00214202 1.51258e-23) (1.23057 -0.168265 -9.74725e-21) (1.22287 -0.159271 1.55838e-20) (1.21542 -0.149805 -3.08323e-22) (1.20901 -0.141308 -8.61909e-21) (1.20357 -0.133355 -2.12891e-22) (1.19877 -0.125779 2.25203e-21) (1.19442 -0.118511 -1.02154e-20) (1.19043 -0.111559 1.19279e-20) (1.18675 -0.1049 -9.23147e-21) (1.18334 -0.0985063 3.30704e-21) (1.18019 -0.0923592 -3.10635e-21) (1.17726 -0.0864365 4.24864e-21) (1.17454 -0.0807219 3.47155e-21) (1.17201 -0.0751986 1.18671e-21) (1.16967 -0.0698504 -1.67625e-21) (1.16751 -0.0646623 1.79376e-21) (1.16551 -0.0596203 -2.10625e-21) (1.16367 -0.0547112 1.77457e-21) (1.16198 -0.0499223 -4.06973e-21) (1.16045 -0.0452418 9.31027e-22) (1.15906 -0.0406584 2.03426e-21) (1.15781 -0.0361613 -3.07607e-21) (1.1567 -0.0317403 2.96512e-21) (1.15573 -0.0273854 2.98688e-22) (1.15489 -0.0230872 -1.9989e-21) (1.15419 -0.0188365 2.11783e-21) (1.15362 -0.0146246 -5.60328e-22) (1.15317 -0.0104396 5.76085e-22) (1.15286 -0.0062892 2.03103e-22) (1.15267 -0.00214462 1.03561e-22) (1.23741 -0.165337 -1.09751e-21) (1.22957 -0.156802 -8.78407e-22) (1.22172 -0.147653 -1.07459e-20) (1.21487 -0.139451 -5.79017e-21) (1.20906 -0.131769 1.00187e-20) (1.20395 -0.124402 -8.30321e-21) (1.19933 -0.117307 6.07992e-22) (1.1951 -0.110503 1.38868e-20) (1.1912 -0.103972 -7.28221e-21) (1.1876 -0.0976895 -5.04567e-21) (1.18426 -0.0916368 3.52253e-21) (1.18117 -0.0857957 2.79506e-21) (1.17829 -0.0801525 7.40612e-21) (1.17562 -0.074692 -1.79192e-20) (1.17315 -0.0693994 6.97445e-21) (1.17086 -0.0642608 2.05662e-21) (1.16875 -0.0592633 -1.29939e-21) (1.16681 -0.0543943 1.78632e-21) (1.16503 -0.049642 -1.65197e-21) (1.16342 -0.044995 6.43866e-21) (1.16195 -0.0404425 -2.14844e-21) (1.16063 -0.035974 2.06006e-23) (1.15946 -0.0315798 1.72406e-21) (1.15844 -0.0272501 -1.48846e-21) (1.15756 -0.0229758 2.13486e-21) (1.15682 -0.0187479 -6.9617e-22) (1.15621 -0.014558 9.22004e-22) (1.15575 -0.010394 9.60142e-22) (1.15541 -0.00626333 -6.57016e-22) (1.15521 -0.00214607 5.96686e-22) (1.24403 -0.162325 6.03133e-21) (1.23609 -0.154276 -2.60405e-20) (1.22792 -0.145454 2.18368e-20) (1.22069 -0.137571 6.65001e-22) (1.21451 -0.130174 1.48922e-20) (1.20908 -0.12302 -1.77808e-21) (1.20419 -0.116096 -2.8296e-22) (1.19971 -0.109439 -4.60984e-21) (1.1956 -0.103038 -5.15066e-21) (1.19181 -0.0968676 8.69859e-21) (1.18829 -0.09091 -3.54011e-21) (1.18502 -0.0851516 1.3579e-21) (1.18199 -0.0795809 7.34989e-21) (1.17919 -0.074184 2.69732e-21) (1.17658 -0.0689476 -1.25833e-20) (1.17418 -0.0638589 5.2803e-21) (1.17196 -0.0589062 7.06398e-23) (1.16992 -0.0540776 -6.60912e-22) (1.16805 -0.0493619 2.03042e-22) (1.16634 -0.0447484 -2.39878e-21) (1.1648 -0.0402267 3.60427e-22) (1.16342 -0.0357869 4.14491e-21) (1.16219 -0.0314194 3.18071e-22) (1.16112 -0.0271148 -1.27511e-22) (1.16019 -0.0228643 -2.2406e-21) (1.15941 -0.018659 -2.37472e-23) (1.15878 -0.0144909 7.29206e-24) (1.15829 -0.0103478 1.67913e-21) (1.15793 -0.00623642 1.03351e-21) (1.15772 -0.00214605 1.50247e-22) (1.25045 -0.159244 6.02711e-20) (1.24241 -0.1517 -2.32656e-20) (1.23395 -0.143209 -2.92125e-20) (1.22636 -0.135656 4.36042e-20) (1.21985 -0.128558 -3.90188e-20) (1.21412 -0.121625 2.03973e-20) (1.20896 -0.114876 -2.188e-20) (1.20426 -0.108373 2.3183e-20) (1.19994 -0.102108 -5.44475e-21) (1.19596 -0.0960518 -3.30415e-21) (1.19226 -0.0901902 -1.2054e-20) (1.18883 -0.0845149 4.72876e-21) (1.18565 -0.0790165 -5.15823e-21) (1.1827 -0.0736829 7.28278e-21) (1.17997 -0.068502 -7.28103e-21) (1.17745 -0.0634628 1.31134e-20) (1.17512 -0.0585542 -6.6412e-21) (1.17298 -0.0537653 -6.30694e-23) (1.17102 -0.0490857 4.26879e-22) (1.16923 -0.0445052 -5.23377e-21) (1.16762 -0.0400138 -7.85341e-22) (1.16617 -0.0356021 -4.72671e-21) (1.16488 -0.0312608 4.56195e-21) (1.16375 -0.0269809 -1.46479e-21) (1.16278 -0.0227536 7.83726e-22) (1.16197 -0.0185706 -1.99756e-21) (1.1613 -0.0144239 -2.88918e-21) (1.16079 -0.0103012 -2.00651e-21) (1.16042 -0.00620864 -1.91142e-21) (1.1602 -0.00214446 -2.13052e-21) (1.25665 -0.156097 1.77799e-20) (1.24856 -0.149067 -3.55591e-20) (1.23991 -0.140926 1.52413e-20) (1.23205 -0.133734 2.5769e-20) (1.22521 -0.126948 -2.18978e-20) (1.21915 -0.120231 3.41105e-21) (1.2137 -0.113649 -1.64503e-20) (1.20875 -0.107296 3.20944e-21) (1.20423 -0.101166 1.13341e-21) (1.20005 -0.0952243 7.22303e-21) (1.19618 -0.0894594 7.80911e-21) (1.19259 -0.0838686 -1.6794e-21) (1.18926 -0.0784444 -1.60837e-23) (1.18618 -0.0731752 5.12098e-21) (1.18332 -0.0680509 1.41055e-21) (1.18067 -0.0630619 -4.7174e-21) (1.17823 -0.0581981 -9.94666e-21) (1.17599 -0.0534495 2.58099e-22) (1.17394 -0.0488064 6.86623e-21) (1.17208 -0.0442591 4.91513e-22) (1.17039 -0.0397984 7.89877e-22) (1.16887 -0.035415 -1.19059e-21) (1.16753 -0.0311001 2.00899e-21) (1.16635 -0.026845 1.15652e-21) (1.16533 -0.0226411 2.17623e-21) (1.16448 -0.0184804 -2.10261e-22) (1.16379 -0.0143551 7.32508e-22) (1.16325 -0.010253 2.6107e-21) (1.16286 -0.00617921 8.56837e-22) (1.16263 -0.00214089 1.47018e-21) (1.2627 -0.152902 3.29277e-20) (1.25446 -0.146385 1.18369e-20) (1.24557 -0.138584 -2.86482e-20) (1.23749 -0.131762 -3.41702e-21) (1.2304 -0.125308 4.93245e-20) (1.22407 -0.118823 -1.81151e-20) (1.21835 -0.112421 -4.49015e-20) (1.21318 -0.106232 5.00978e-20) (1.20846 -0.100244 -1.64976e-20) (1.2041 -0.0944173 -7.27197e-21) (1.20006 -0.0887489 3.99246e-21) (1.19631 -0.0832421 1.45753e-21) (1.19283 -0.0778904 2.93723e-21) (1.18961 -0.0726837 -8.48055e-21) (1.18662 -0.0676142 2.14362e-20) (1.18386 -0.0626737 -1.11883e-20) (1.18131 -0.0578531 6.67077e-21) (1.17897 -0.0531433 7.00777e-21) (1.17683 -0.0485352 -4.36892e-21) (1.17488 -0.04402 1.37443e-21) (1.17311 -0.0395887 -5.07871e-21) (1.17153 -0.0352325 2.27003e-22) (1.17013 -0.0309431 2.92784e-21) (1.1689 -0.0267119 8.58106e-22) (1.16784 -0.0225306 1.06417e-21) (1.16695 -0.0183915 3.87067e-21) (1.16623 -0.014287 2.14058e-21) (1.16567 -0.0102049 6.21321e-22) (1.16527 -0.00614908 1.09124e-21) (1.16503 -0.0021355 1.32688e-21) (1.26854 -0.149647 3.4382e-20) (1.26027 -0.143659 -5.3953e-20) (1.25131 -0.136241 -7.47902e-21) (1.24307 -0.129819 2.89876e-20) (1.23571 -0.123691 -1.67735e-20) (1.22902 -0.11741 1.9925e-20) (1.22297 -0.11117 -3.79167e-20) (1.21755 -0.105138 4.43575e-20) (1.21263 -0.0992885 -1.76796e-21) (1.20809 -0.0935758 -3.31252e-20) (1.20387 -0.0880064 -1.30871e-20) (1.19997 -0.0825873 3.76299e-21) (1.19634 -0.0773111 1.03781e-20) (1.19298 -0.0721697 -9.98372e-21) (1.18987 -0.0671576 -7.70712e-21) (1.18699 -0.0622679 -9.17836e-21) (1.18433 -0.0574925 3.95658e-21) (1.18189 -0.0528231 -4.43863e-21) (1.17966 -0.0482516 7.12079e-21) (1.17763 -0.0437697 -6.22183e-21) (1.1758 -0.039369 -1.24054e-21) (1.17415 -0.0350412 -4.41294e-21) (1.17269 -0.0307781 3.30264e-21) (1.17141 -0.0265718 -4.61238e-21) (1.17031 -0.0224141 -1.02174e-21) (1.16938 -0.0182973 -2.30688e-21) (1.16863 -0.0142145 -1.64419e-21) (1.16805 -0.0101531 -3.96329e-21) (1.16764 -0.00611609 -6.73322e-22) (1.1674 -0.00212748 -3.21233e-21) (1.27421 -0.146346 -2.45764e-20) (1.26562 -0.140846 -1.61005e-20) (1.25644 -0.133788 9.17238e-21) (1.24819 -0.12779 -4.64873e-21) (1.24074 -0.122032 3.10235e-20) (1.23382 -0.115997 -4.32477e-20) (1.22752 -0.109955 4.23884e-20) (1.22189 -0.104101 8.73393e-21) (1.21677 -0.0983933 -1.62439e-20) (1.21204 -0.0927931 2.38652e-20) (1.20765 -0.0873207 -2.36184e-21) (1.20359 -0.0819851 4.60883e-22) (1.19982 -0.0767792 1.87161e-20) (1.19632 -0.0716982 -1.66012e-20) (1.19308 -0.0667389 3.28671e-21) (1.19008 -0.0618956 1.49844e-20) (1.18732 -0.0571612 -6.26091e-21) (1.18478 -0.0525285 1.10069e-21) (1.18246 -0.0479901 -2.37522e-21) (1.18034 -0.0435384 2.69517e-21) (1.17843 -0.0391654 6.87646e-21) (1.17672 -0.0348634 5.87315e-21) (1.1752 -0.0306245 4.56668e-22) (1.17387 -0.0264409 -1.95422e-21) (1.17273 -0.0223048 5.82243e-21) (1.17177 -0.0182086 2.26652e-21) (1.17099 -0.0141457 -9.75158e-22) (1.17039 -0.0101036 2.85605e-21) (1.16996 -0.00608368 6.02682e-22) (1.16972 -0.00211781 3.02293e-21) (1.27972 -0.142973 5.4225e-20) (1.2713 -0.138062 -5.96638e-20) (1.26208 -0.13144 3.08251e-20) (1.25372 -0.125847 -3.65819e-20) (1.24599 -0.12038 4.15545e-20) (1.23867 -0.114529 -6.99587e-23) (1.23204 -0.108659 -1.7183e-20) (1.22616 -0.102971 3.42727e-20) (1.22083 -0.0973976 -2.6218e-20) (1.2159 -0.0919126 -2.57785e-20) (1.21136 -0.086545 -1.80024e-20) (1.20714 -0.0813006 2.61903e-20) (1.20323 -0.0761724 -4.4551e-21) (1.19959 -0.0711592 -7.21819e-21) (1.19623 -0.0662596 2.30942e-21) (1.19312 -0.0614688 4.11572e-21) (1.19025 -0.056781 4.61339e-21) (1.18761 -0.0521901 -2.79659e-21) (1.1852 -0.0476895 -9.82292e-21) (1.183 -0.0432723 4.15438e-21) (1.18102 -0.038931 -6.26482e-22) (1.17924 -0.0346584 -8.02637e-21) (1.17767 -0.030447 -3.61115e-21) (1.17629 -0.0262893 6.11337e-21) (1.1751 -0.0221779 -9.83732e-21) (1.17411 -0.0181054 2.34221e-23) (1.17331 -0.0140653 4.59224e-21) (1.17269 -0.0100454 -2.81259e-21) (1.17225 -0.00604533 -3.29206e-22) (1.172 -0.00210428 -1.5177e-21) (1.28459 -0.13944 2.2981e-20) (1.27571 -0.135011 5.7424e-20) (1.26646 -0.128858 -5.29427e-20) (1.25846 -0.123787 -3.37821e-20) (1.25084 -0.118722 3.54491e-20) (1.24336 -0.113149 5.4277e-21) (1.23653 -0.107514 -9.62539e-21) (1.23044 -0.102011 3.68133e-20) (1.22489 -0.0965716 -4.95735e-20) (1.21977 -0.0911969 -5.39983e-21) (1.21505 -0.0859249 5.3707e-20) (1.21068 -0.0807588 -3.19027e-20) (1.20662 -0.0756954 1.06431e-20) (1.20285 -0.0707378 -1.05083e-20) (1.19936 -0.065886 -1.98476e-21) (1.19613 -0.0611365 2.03416e-20) (1.19315 -0.0564849 -1.82333e-21) (1.19041 -0.0519262 6.79874e-21) (1.18791 -0.0474545 -2.12963e-20) (1.18563 -0.0430635 3.41582e-21) (1.18357 -0.0387464 4.23925e-21) (1.18173 -0.0344962 1.41202e-22) (1.18009 -0.0303059 1.42314e-21) (1.17866 -0.0261683 3.31919e-21) (1.17744 -0.0220761 -7.03472e-21) (1.17641 -0.018022 4.81882e-21) (1.17558 -0.0139998 -4.76498e-22) (1.17494 -0.00999733 1.26707e-21) (1.17449 -0.00601235 -1.9686e-22) (1.17424 -0.00209046 -9.47303e-22) (1.28985 -0.135924 1.22113e-19) (1.28169 -0.132253 -7.46891e-20) (1.27223 -0.126562 1.86525e-20) (1.26394 -0.121799 1.91943e-20) (1.25593 -0.116929 1.13663e-21) (1.24807 -0.111539 2.01154e-20) (1.24095 -0.106106 -5.57962e-20) (1.2346 -0.100767 4.06284e-20) (1.22882 -0.0954607 -2.5403e-20) (1.22352 -0.0902112 -1.19232e-20) (1.21864 -0.0850524 5.8283e-20) (1.21412 -0.079983 -3.43033e-20) (1.20992 -0.0750039 -3.7709e-21) (1.20602 -0.0701208 3.21821e-21) (1.2024 -0.0653346 1.60442e-20) (1.19906 -0.0606431 -1.29025e-20) (1.19597 -0.0560433 -5.71793e-21) (1.19314 -0.0515313 9.55638e-21) (1.19054 -0.047102 -3.1831e-21) (1.18819 -0.0427499 2.88775e-22) (1.18605 -0.0384687 7.42127e-22) (1.18415 -0.0342522 5.0194e-21) (1.18246 -0.0300936 -9.22439e-21) (1.18098 -0.025986 -6.669e-22) (1.17971 -0.0219227 1.23225e-21) (1.17866 -0.0178963 7.13998e-21) (1.1778 -0.0139012 -6.46327e-21) (1.17715 -0.00992538 1.63279e-21) (1.17669 -0.00596447 4.19485e-22) (1.17644 -0.00206975 1.16015e-22) (1.29196 -0.131568 6.96251e-20) (1.28428 -0.128715 -6.37082e-20) (1.27584 -0.123909 5.8781e-20) (1.2684 -0.119821 -6.43794e-20) (1.26063 -0.115372 -3.46795e-20) (1.25275 -0.110322 6.34332e-20) (1.24549 -0.105162 -3.12579e-20) (1.2389 -0.100001 -1.85999e-20) (1.23287 -0.0948221 4.55505e-20) (1.22737 -0.0896798 -3.96004e-20) (1.22231 -0.0846054 1.57101e-21) (1.21762 -0.0796014 -1.81071e-20) (1.21326 -0.074676 4.47769e-20) (1.20922 -0.069837 -1.42672e-20) (1.20547 -0.0650867 -7.72909e-21) (1.20201 -0.0604248 4.43434e-21) (1.19881 -0.0558499 -1.16725e-21) (1.19587 -0.0513592 -6.86671e-21) (1.19318 -0.0469485 1.64511e-20) (1.19073 -0.0426128 -1.55152e-20) (1.18853 -0.0383467 8.06345e-21) (1.18655 -0.034144 5.06294e-21) (1.1848 -0.0299984 -7.90186e-21) (1.18327 -0.0259033 1.21639e-21) (1.18196 -0.021852 -2.61785e-21) (1.18086 -0.0178374 2.00092e-21) (1.17998 -0.0138539 -2.16957e-23) (1.17931 -0.00988977 -3.23351e-22) (1.17885 -0.00593768 3.9506e-22) (1.1786 -0.00205358 6.73988e-22) (1.29738 -0.127902 -7.8872e-20) (1.29086 -0.125896 6.68946e-20) (1.28182 -0.121466 -6.01141e-20) (1.27374 -0.117516 2.37876e-20) (1.26549 -0.113189 -2.73781e-20) (1.25737 -0.108368 -1.99243e-20) (1.24986 -0.103425 5.57234e-20) (1.24299 -0.0984269 -3.50195e-20) (1.23674 -0.0933988 -3.08285e-20) (1.23104 -0.0883997 3.50469e-20) (1.22581 -0.0834513 7.00521e-21) (1.22097 -0.0785596 -1.25179e-20) (1.21647 -0.0737356 -2.99781e-21) (1.21229 -0.0689875 3.28653e-20) (1.20842 -0.0643186 -3.75288e-21) (1.20483 -0.0597305 -3.92286e-21) (1.20153 -0.0552229 -1.00624e-20) (1.19849 -0.050794 1.56473e-20) (1.19571 -0.0464403 -6.03477e-21) (1.19319 -0.0421578 -1.23876e-20) (1.1909 -0.0379414 6.32502e-21) (1.18886 -0.0337859 2.4577e-21) (1.18706 -0.0296853 3.22507e-21) (1.18549 -0.0256335 -2.46758e-22) (1.18414 -0.0216241 -3.75232e-21) (1.18302 -0.0176504 4.38177e-21) (1.18211 -0.0137071 -1.21618e-21) (1.18143 -0.00978299 1.61617e-21) (1.18096 -0.00586836 -1.8926e-21) (1.18072 -0.00202196 -1.14265e-21) (1.29133 -0.121324 -1.24205e-19) (1.29116 -0.121692 3.73332e-20) (1.28553 -0.119042 1.83652e-20) (1.27852 -0.115888 3.25213e-20) (1.2706 -0.112033 1.7205e-20) (1.26256 -0.107631 -8.23697e-20) (1.25488 -0.102977 -1.01226e-22) (1.2477 -0.0981618 3.18457e-20) (1.24114 -0.093264 1.12355e-20) (1.23516 -0.0883557 -3.96381e-20) (1.22969 -0.0834685 3.70397e-20) (1.22464 -0.0786195 1.62326e-20) (1.21995 -0.0738244 -2.43762e-20) (1.21561 -0.0690937 -6.51962e-21) (1.21158 -0.0644334 1.12312e-20) (1.20785 -0.0598473 -3.86504e-21) (1.20441 -0.0553371 -8.2092e-22) (1.20125 -0.0509022 4.63604e-21) (1.19835 -0.0465404 -1.51489e-20) (1.19572 -0.0422483 -2.94427e-21) (1.19335 -0.0380216 5.15794e-22) (1.19123 -0.0338555 6.52655e-21) (1.18935 -0.0297443 7.06476e-21) (1.18771 -0.0256821 -6.99635e-21) (1.18632 -0.0216628 4.84587e-21) (1.18515 -0.0176795 -4.44054e-21) (1.18422 -0.0137271 -4.11449e-22) (1.18352 -0.00979518 1.96538e-21) (1.18304 -0.00586976 -1.10081e-21) (1.1828 -0.0020103 7.51981e-22) (1.2927 -0.111989 0) (1.29777 -0.113222 0) (1.29335 -0.111701 0) (1.28622 -0.109232 0) (1.27813 -0.105881 0) (1.26987 -0.101991 0) (1.26185 -0.0978102 0) (1.25433 -0.0934289 0) (1.24742 -0.088936 0) (1.24112 -0.0843996 0) (1.23533 -0.0798528 0) (1.23 -0.0753182 0) (1.22505 -0.0708135 0) (1.22047 -0.0663508 0) (1.21621 -0.0619385 0) (1.21228 -0.0575826 0) (1.20866 -0.0532867 0) (1.20533 -0.0490517 0) (1.20228 -0.0448773 0) (1.19952 -0.0407616 0) (1.19702 -0.0367018 0) (1.1948 -0.032694 0) (1.19283 -0.028734 0) (1.19111 -0.0248168 0) (1.18965 -0.0209374 0) (1.18843 -0.0170897 0) (1.18746 -0.0132694 0) (1.18672 -0.00946729 0) (1.18623 -0.00566946 0) (1.186 -0.00192854 0) (1.28803 -0.102239 0) (1.30045 -0.103146 0) (1.29851 -0.101805 0) (1.29226 -0.0997085 0) (1.28459 -0.0969245 0) (1.27653 -0.0936629 0) (1.26855 -0.0901035 0) (1.26098 -0.0863278 0) (1.25396 -0.0824122 0) (1.2475 -0.0784164 0) (1.24155 -0.0743743 0) (1.23604 -0.0703096 0) (1.23092 -0.0662413 0) (1.22616 -0.0621838 0) (1.22175 -0.0581483 0) (1.21766 -0.0541431 0) (1.21388 -0.0501742 0) (1.2104 -0.0462451 0) (1.20723 -0.0423576 0) (1.20434 -0.0385118 0) (1.20173 -0.034707 0) (1.1994 -0.0309412 0) (1.19734 -0.0272117 0) (1.19555 -0.0235154 0) (1.19402 -0.0198484 0) (1.19274 -0.0162064 0) (1.19172 -0.012586 0) (1.19096 -0.00897971 0) (1.19045 -0.00537727 0) (1.19021 -0.00181893 0) (1.28128 -0.0928291 0) (1.29908 -0.0940563 0) (1.29955 -0.0928121 0) (1.29447 -0.0909021 0) (1.28755 -0.0884817 0) (1.28 -0.0856842 0) (1.2724 -0.0826257 0) (1.26508 -0.0793633 0) (1.25822 -0.0759549 0) (1.25187 -0.0724486 0) (1.24599 -0.0688741 0) (1.24051 -0.0652525 0) (1.23541 -0.0616021 0) (1.23065 -0.0579377 0) (1.22621 -0.0542715 0) (1.22209 -0.0506134 0) (1.21828 -0.0469709 0) (1.21476 -0.0433492 0) (1.21154 -0.0397518 0) (1.20861 -0.0361808 0) (1.20596 -0.0326367 0) (1.20359 -0.0291194 0) (1.20149 -0.0256278 0) (1.19966 -0.0221599 0) (1.1981 -0.0187135 0) (1.1968 -0.0152856 0) (1.19576 -0.0118741 0) (1.19498 -0.00847297 0) (1.19446 -0.00507485 0) (1.19421 -0.00170995 0) (1.27453 -0.0832667 0) (1.29681 -0.085065 0) (1.29949 -0.0842651 0) (1.29547 -0.0826924 0) (1.28921 -0.0806213 0) (1.28217 -0.0782089 0) (1.27497 -0.075563 3.87986e-28) (1.26797 -0.0727311 -8.42501e-29) (1.26136 -0.0697576 0) (1.2552 -0.0666802 0) (1.24947 -0.063523 0) (1.24411 -0.0603039 0) (1.23909 -0.0570389 0) (1.23439 -0.0537419 0) (1.23 -0.050425 0) (1.22591 -0.0470985 0) (1.22212 -0.0437706 0) (1.21861 -0.0404476 0) (1.21539 -0.0371343 0) (1.21246 -0.0338338 0) (1.2098 -0.0305483 0) (1.20742 -0.0272786 0) (1.20531 -0.024025 0) (1.20347 -0.0207868 0) (1.20189 -0.017563 0) (1.20058 -0.0143518 0) (1.19954 -0.0111521 0) (1.19875 -0.00795954 0) (1.19823 -0.00476863 0) (1.19798 -0.00160227 0) (1.26811 -0.0737671 0) (1.29468 -0.0760784 0) (1.29961 -0.0759139 0) (1.29659 -0.0748176 0) (1.29086 -0.0731445 0) (1.28421 -0.0711096 0) (1.27732 -0.0688422 -3.87986e-28) (1.27057 -0.0663959 8.42501e-29) (1.26417 -0.0638106 0) (1.25817 -0.061118 0) (1.25257 -0.0583385 0) (1.24733 -0.0554873 0) (1.2424 -0.0525785 0) (1.23778 -0.0496246 0) (1.23344 -0.0466369 0) (1.22939 -0.0436257 0) (1.22563 -0.0405994 0) (1.22214 -0.037565 0) (1.21893 -0.0345278 0) (1.216 -0.0314919 0) (1.21335 -0.0284605 0) (1.21096 -0.0254355 0) (1.20885 -0.022418 0) (1.207 -0.0194086 0) (1.20543 -0.0164072 0) (1.20411 -0.0134131 0) (1.20306 -0.0104262 0) (1.20227 -0.00744335 0) (1.20175 -0.00446077 0) (1.2015 -0.00149583 0) (1.26177 -0.064645 0) (1.29252 -0.0673261 0) (1.29984 -0.0677673 0) (1.29788 -0.0671581 0) (1.29265 -0.0658957 0) (1.2863 -0.0642424 0) (1.27965 -0.0623464 0) (1.27309 -0.0602683 0) (1.26684 -0.0580472 0) (1.26098 -0.0557132 0) (1.25548 -0.0532854 0) (1.25033 -0.0507782 0) (1.24548 -0.0482041 0) (1.24092 -0.0455747 0) (1.23663 -0.0429005 0) (1.23262 -0.0401913 0) (1.22888 -0.0374558 0) (1.22541 -0.0347011 0) (1.22221 -0.0319331 0) (1.21929 -0.0291565 0) (1.21664 -0.0263753 0) (1.21426 -0.0235921 0) (1.21214 -0.0208089 0) (1.21029 -0.0180273 0) (1.20871 -0.0152478 0) (1.2074 -0.012471 0) (1.20634 -0.00969723 0) (1.20555 -0.00692483 0) (1.20503 -0.00415136 0) (1.20477 -0.00139011 0) (1.25531 -0.0560429 0) (1.29 -0.0589684 0) (1.29974 -0.0599117 0) (1.29895 -0.0597298 0) (1.29427 -0.0588454 0) (1.28823 -0.0575567 0) (1.28179 -0.0560201 0) (1.2754 -0.0542968 0) (1.26929 -0.0524244 0) (1.26354 -0.0504317 0) (1.25814 -0.0483382 0) (1.25306 -0.0461579 0) (1.24829 -0.0439027 0) (1.24378 -0.0415833 0) (1.23954 -0.03921 0) (1.23557 -0.0367921 0) (1.23186 -0.0343383 0) (1.22841 -0.0318558 0) (1.22523 -0.029351 0) (1.22232 -0.026829 0) (1.21968 -0.0242942 0) (1.2173 -0.0217501 0) (1.21518 -0.0191995 0) (1.21334 -0.0166443 0) (1.21176 -0.0140863 0) (1.21044 -0.0115265 0) (1.20938 -0.00896613 0) (1.20859 -0.00640459 0) (1.20807 -0.00384066 0) (1.20781 -0.00128476 0) (1.24874 -0.0479231 0) (1.28701 -0.0510079 0) (1.29912 -0.0523761 0) (1.29954 -0.0525667 0) (1.29546 -0.0520204 0) (1.28976 -0.0510673 0) (1.28356 -0.0498675 0) (1.27735 -0.0484796 0) (1.27138 -0.0469382 0) (1.26575 -0.0452705 0) (1.26045 -0.0434956 0) (1.25546 -0.0416273 0) (1.25076 -0.039677 0) (1.24632 -0.0376551 0) (1.24214 -0.0355712 0) (1.23821 -0.0334347 0) (1.23454 -0.0312539 0) (1.23112 -0.0290364 0) (1.22797 -0.0267886 0) (1.22507 -0.0245161 0) (1.22244 -0.0222238 0) (1.22008 -0.0199156 0) (1.21797 -0.017595 0) (1.21613 -0.0152645 0) (1.21455 -0.0129266 0) (1.21324 -0.010583 0) (1.21218 -0.00823545 0) (1.21139 -0.00588442 0) (1.21087 -0.00352976 0) (1.21061 -0.00117989 0) (1.24213 -0.0402249 0) (1.28361 -0.0433979 0) (1.29798 -0.0451473 0) (1.29962 -0.0456794 0) (1.29617 -0.0454437 0) (1.29084 -0.0447992 0) (1.2849 -0.0439107 0) (1.27888 -0.0428352 0) (1.27307 -0.0416043 0) (1.26756 -0.0402434 0) (1.26238 -0.0387706 0) (1.25749 -0.0371991 0) (1.25288 -0.0355398 0) (1.24852 -0.0338026 0) (1.2444 -0.0319967 0) (1.24053 -0.0301313 0) (1.23691 -0.0282146 0) (1.23353 -0.0262541 0) (1.23041 -0.0242565 0) (1.22755 -0.0222278 0) (1.22494 -0.0201731 0) (1.22259 -0.0180968 0) (1.2205 -0.0160027 0) (1.21867 -0.0138942 0) (1.2171 -0.0117741 0) (1.21579 -0.00964481 0) (1.21475 -0.00750866 0) (1.21396 -0.00536686 0) (1.21344 -0.00322021 0) (1.21318 -0.00107586 0) (1.23558 -0.0328845 0) (1.27992 -0.0360892 0) (1.29642 -0.0381954 0) (1.29928 -0.0390541 0) (1.29647 -0.0391141 0) (1.29152 -0.0387596 0) (1.28583 -0.0381617 0) (1.28002 -0.0373775 0) (1.27438 -0.0364373 0) (1.26901 -0.0353647 0) (1.26395 -0.0341771 0) (1.25917 -0.0328868 0) (1.25466 -0.0315043 0) (1.25038 -0.0300387 0) (1.24634 -0.0284991 0) (1.24254 -0.0268941 0) (1.23897 -0.0252319 0) (1.23565 -0.0235201 0) (1.23257 -0.0217654 0) (1.22974 -0.0199739 0) (1.22716 -0.018151 0) (1.22484 -0.0163016 0) (1.22277 -0.0144299 0) (1.22096 -0.0125397 0) (1.2194 -0.0106342 0) (1.21811 -0.00871639 0) (1.21707 -0.00678915 0) (1.21629 -0.00485433 0) (1.21577 -0.00291354 0) (1.21552 -0.000973058 0) (1.22915 -0.0259096 0) (1.27603 -0.0290737 0) (1.29453 -0.0315143 0) (1.29859 -0.0326832 0) (1.29643 -0.0330233 0) (1.29185 -0.0329433 0) (1.28643 -0.0326197 0) (1.28083 -0.0321099 0) (1.27535 -0.0314431 0) (1.27013 -0.0306421 0) (1.2652 -0.0297235 0) (1.26054 -0.0286995 0) (1.25612 -0.0275796 0) (1.25194 -0.0263729 0) (1.24799 -0.0250877 0) (1.24425 -0.0237324 0) (1.24075 -0.0223151 0) (1.23749 -0.0208431 0) (1.23446 -0.0193233 0) (1.23167 -0.017762 0) (1.22913 -0.0161648 0) (1.22684 -0.0145368 0) (1.22479 -0.0128824 0) (1.223 -0.011206 0) (1.22146 -0.00951117 0) (1.22018 -0.00780133 0) (1.21915 -0.00607974 0) (1.21838 -0.00434887 0) (1.21787 -0.002611 0) (1.21762 -0.000871825 0) (1.2229 -0.0192447 0) (1.27198 -0.0223408 0) (1.29236 -0.0251034 0) (1.29761 -0.0265586 0) (1.2961 -0.0271605 0) (1.2919 -0.0273413 0) (1.28673 -0.0272792 0) (1.28133 -0.0270299 0) (1.27603 -0.0266218 0) (1.27095 -0.0260774 0) (1.26615 -0.0254134 0) (1.2616 -0.0246416 0) (1.2573 -0.0237713 0) (1.25321 -0.022811 0) (1.24935 -0.0217688 0) (1.24569 -0.0206526 0) (1.24226 -0.0194704 0) (1.23906 -0.0182295 0) (1.23608 -0.0169367 0) (1.23334 -0.0155982 0) (1.23084 -0.01422 0) (1.22858 -0.0128073 0) (1.22657 -0.0113649 0) (1.22481 -0.00989728 0) (1.22329 -0.00840857 0) (1.22202 -0.00690248 0) (1.22101 -0.00538266 0) (1.22025 -0.00385207 0) (1.21974 -0.00231354 0) (1.21949 -0.000772425 0) (1.21684 -0.0129592 0) (1.26781 -0.0159037 0) (1.28996 -0.0189855 0) (1.29634 -0.0206852 0) (1.29548 -0.0215214 0) (1.29166 -0.0219494 0) (1.28675 -0.0221372 0) (1.28156 -0.0221352 0) (1.27642 -0.0219719 0) (1.2715 -0.0216705 0) (1.26682 -0.0212479 0) (1.2624 -0.0207156 0) (1.2582 -0.0200826 0) (1.25422 -0.019357 0) (1.25044 -0.0185467 0) (1.24687 -0.0176595 0) (1.24351 -0.0167029 0) (1.24037 -0.0156841 0) (1.23746 -0.01461 0) (1.23477 -0.013487 0) (1.23231 -0.0123209 0) (1.23009 -0.0111172 0) (1.22811 -0.00988091 0) (1.22637 -0.0086168 0) (1.22488 -0.00732921 0) (1.22363 -0.00602222 0) (1.22264 -0.00469977 0) (1.22188 -0.00336526 0) (1.22139 -0.00202199 0) (1.22114 -0.000675079 0) (1.21095 -0.00685304 0) (1.26355 -0.00977666 0) (1.28735 -0.0131695 0) (1.29481 -0.0150496 0) (1.29458 -0.0160998 0) (1.29115 -0.0167676 0) (1.28651 -0.0171935 0) (1.28152 -0.0174249 0) (1.27655 -0.0174929 0) (1.27177 -0.0174216 0) (1.26723 -0.0172279 0) (1.26293 -0.0169231 0) (1.25884 -0.0165158 0) (1.25496 -0.0160138 0) (1.25128 -0.0154249 0) (1.2478 -0.0147566 0) (1.24452 -0.0140162 0) (1.24144 -0.0132109 0) (1.23859 -0.0123475 0) (1.23595 -0.0114323 0) (1.23355 -0.0104712 0) (1.23137 -0.00946998 0) (1.22942 -0.00843372 0) (1.22772 -0.00736737 0) (1.22625 -0.00627554 0) (1.22502 -0.00516258 0) (1.22404 -0.00403267 0) (1.2233 -0.00288959 0) (1.22281 -0.00173703 0) (1.22257 -0.000579992 0) (1.20524 -0.00131206 0) (1.25927 -0.00398343 0) (1.28456 -0.00765884 0) (1.29302 -0.00964462 0) (1.29342 -0.0109008 0) (1.29038 -0.0118 0) (1.28601 -0.0124494 0) (1.28122 -0.0128992 0) (1.27643 -0.0131848 0) (1.2718 -0.0133314 0) (1.26739 -0.0133548 0) (1.26321 -0.0132659 0) (1.25924 -0.0130731 0) (1.25546 -0.0127841 0) (1.25188 -0.0124064 0) (1.24848 -0.0119472 0) (1.24528 -0.0114139 0) (1.24228 -0.0108134 0) (1.23949 -0.0101524 0) (1.23691 -0.00943736 0) (1.23455 -0.00867421 0) (1.23242 -0.00786864 0) (1.23051 -0.00702603 0) (1.22884 -0.00615144 0) (1.2274 -0.00524968 0) (1.22619 -0.00432532 0) (1.22523 -0.00338276 0) (1.2245 -0.00242607 0) (1.22402 -0.00145929 0) (1.22378 -0.000487349 0) (1.19975 0.00401784 0) (1.25507 0.00141845 0) (1.2816 -0.00241337 0) (1.29099 -0.00444448 0) (1.29202 -0.00593053 0) (1.28937 -0.00704851 0) (1.28527 -0.00790345 0) (1.28068 -0.00855707 0) (1.27606 -0.00904823 0) (1.27158 -0.00940094 0) (1.26731 -0.00963004 0) (1.26325 -0.00974582 0) (1.2594 -0.00975668 0) (1.25572 -0.00967017 0) (1.25224 -0.00949358 0) (1.24893 -0.00923407 0) (1.24581 -0.0088987 0) (1.24288 -0.00849437 0) (1.24016 -0.00802771 0) (1.23764 -0.00750507 0) (1.23534 -0.00693249 0) (1.23325 -0.00631571 0) (1.23138 -0.00566018 0) (1.22974 -0.00497111 0) (1.22833 -0.00425346 0) (1.22715 -0.00351197 0) (1.22621 -0.00275124 0) (1.2255 -0.00197558 0) (1.22502 -0.0011893 0) (1.22479 -0.000397317 0) (1.19458 0.0090913 0) (1.25093 0.00650301 0) (1.27846 0.00266145 0) (1.28876 0.000512254 0) (1.2904 -0.00119372 0) (1.28814 -0.00250728 0) (1.28429 -0.00355189 0) (1.27991 -0.00439764 0) (1.27546 -0.00508328 0) (1.27113 -0.00563096 0) (1.267 -0.00605449 0) (1.26307 -0.00636402 0) (1.25933 -0.00656795 0) (1.25576 -0.00667376 0) (1.25237 -0.00668855 0) (1.24916 -0.00661931 0) (1.24612 -0.00647293 0) (1.24327 -0.00625621 0) (1.24061 -0.00597571 0) (1.23816 -0.00563774 0) (1.23591 -0.00524834 0) (1.23387 -0.00481329 0) (1.23205 -0.00433812 0) (1.23044 -0.00382813 0) (1.22906 -0.00328841 0) (1.22791 -0.00272383 0) (1.22698 -0.00213914 0) (1.22629 -0.00153886 0) (1.22582 -0.000927519 0) (1.22559 -0.000310037 0) (1.1897 0.0138858 0) (1.24677 0.0113364 0) (1.2752 0.00753287 0) (1.28637 0.00521297 0) (1.28858 0.003325 0) (1.28669 0.00183245 0) (1.2831 0.000608666 0) (1.27893 -0.000419918 0) (1.27465 -0.00128985 0) (1.27047 -0.0020215 0) (1.26647 -0.00262851 0) (1.26267 -0.00312119 0) (1.25904 -0.00350796 0) (1.25559 -0.00379617 0) (1.2523 -0.00399276 0) (1.24917 -0.00410456 0) (1.24622 -0.00413834 0) (1.24345 -0.00410075 0) (1.24086 -0.00399827 0) (1.23847 -0.00383718 0) (1.23628 -0.00362351 0) (1.23429 -0.00336306 0) (1.23251 -0.00306141 0) (1.23094 -0.00272391 0) (1.22959 -0.00235575 0) (1.22847 -0.00196192 0) (1.22756 -0.00154728 0) (1.22688 -0.00111651 0) (1.22643 -0.000674309 0) (1.2262 -0.000225625 0) (1.18506 0.018425 0) (1.24258 0.0159264 0) (1.27186 0.0121626 0) (1.2838 0.00967402 0) (1.28656 0.00763044 0) (1.28504 0.00597263 0) (1.28171 0.00457848 0) (1.27774 0.00337673 0) (1.27363 0.00233308 0) (1.26961 0.0014281 0) (1.26574 0.000648046 0) (1.26206 -1.76045e-05 0) (1.25856 -0.000577245 0) (1.25521 -0.00103816 0) (1.25202 -0.00140718 0) (1.24899 -0.00169097 0) (1.24613 -0.00189615 0) (1.24343 -0.00202928 0) (1.24092 -0.00209675 0) (1.23859 -0.00210478 0) (1.23645 -0.00205937 0) (1.23451 -0.00196634 0) (1.23278 -0.00183127 0) (1.23125 -0.00165957 0) (1.22993 -0.00145648 0) (1.22883 -0.00122707 0) (1.22795 -0.000976312 0) (1.22728 -0.000708997 0) (1.22684 -0.000429963 0) (1.22662 -0.000144172 0) (1.18062 0.0227185 -2.6359e-11) (1.23842 0.0202677 -2.57488e-11) (1.26843 0.0165398 0) (1.28108 0.0139059 -2.45224e-11) (1.28436 0.0117234 -2.39254e-11) (1.2832 0.00991173 -6.73015e-28) (1.28013 0.00835705 2.27962e-11) (1.27636 0.0069927 2.22678e-11) (1.27242 0.00578622 0) (1.26855 0.00471851 0) (1.26482 0.00377561 0) (1.26127 0.00294692 0) (1.25788 0.00222409 0) (1.25464 0.00159992 0) (1.25155 0.00106768 0) (1.24862 0.000620818 0) (1.24584 0.000252792 0) (1.24322 -4.2765e-05 0) (1.24078 -0.000272122 0) (1.23851 -0.000441512 0) (1.23643 -0.000556914 1.75919e-11) (1.23455 -0.000624082 3.47897e-11) (1.23286 -0.000648609 1.72202e-11) (1.23137 -0.000635929 0) (1.23009 -0.000591322 -1.69373e-11) (1.22901 -0.000519924 -1.68288e-11) (1.22815 -0.00042675 0) (1.2275 -0.0003167 -1.66772e-11) (1.22707 -0.000194709 -1.6634e-11) (1.22686 -6.5754e-05 -4.79286e-28) (1.17638 0.0267653 2.63596e-11) (1.2343 0.0243599 2.57488e-11) (1.26493 0.0206678 0) (1.27822 0.0179123 2.45224e-11) (1.28199 0.0156036 2.39254e-11) (1.28118 0.0136489 6.73015e-28) (1.27837 0.0119445 -2.27962e-11) (1.2748 0.0104287 -2.22678e-11) (1.27104 0.00907035 0) (1.26731 0.00785039 0) (1.26372 0.00675471 0) (1.26029 0.00577276 0) (1.25702 0.00489626 0) (1.25389 0.0041181 0) (1.2509 0.00343165 0) (1.24806 0.00283047 0) (1.24537 0.00230812 0) (1.24283 0.00185837 0) (1.24046 0.00147503 0) (1.23826 0.00115194 0) (1.23624 0.000883178 -1.75919e-11) (1.23441 0.000663029 -3.47897e-11) (1.23276 0.000485912 -1.72202e-11) (1.23131 0.000346388 0) (1.23007 0.000239159 1.69373e-11) (1.22902 0.000159058 1.68288e-11) (1.22818 0.000101027 0) (1.22755 6.01042e-05 1.66772e-11) (1.22713 3.12861e-05 1.6634e-11) (1.22692 9.57925e-06 4.79286e-28) (1.17233 0.0305659 0) (1.23023 0.0282061 0) (1.26137 0.0245518 0) (1.27523 0.0216944 0) (1.27947 0.0192713 0) (1.279 0.0171846 0) (1.27645 0.0153419 0) (1.27308 0.0136859 0) (1.26948 0.0121865 0) (1.26591 0.0108246 0) (1.26246 0.00958609 0) (1.25915 0.00846053 0) (1.25599 0.00743976 0) (1.25297 0.00651673 0) (1.25008 0.00568493 0) (1.24734 0.00493804 0) (1.24473 0.00426975 0) (1.24227 0.00367391 0) (1.23997 0.00314442 0) (1.23784 0.00267524 0) (1.23588 0.00226052 0) (1.23409 0.00189459 0) (1.2325 0.00157189 0) (1.23109 0.00128699 0) (1.22987 0.00103461 0) (1.22886 0.000809566 0) (1.22804 0.000606773 0) (1.22742 0.000421233 0) (1.22701 0.0002479 0) (1.22681 8.17832e-05 0) (1.16845 0.0341234 0) (1.22621 0.0318105 0) (1.25776 0.028196 0) (1.27213 0.025254 0) (1.27682 0.0227278 0) (1.27668 0.0205209 0) (1.27437 0.0185512 0) (1.2712 0.0167662 0) (1.26777 0.0151363 0) (1.26435 0.0136425 0) (1.26103 0.0122709 0) (1.25785 0.0110112 0) (1.2548 0.00985542 0) (1.25189 0.00879649 0) (1.2491 0.00782806 0) (1.24645 0.00694391 0) (1.24393 0.00613788 0) (1.24155 0.00540393 0) (1.23932 0.00473605 0) (1.23725 0.00412833 0) (1.23535 0.00357499 0) (1.23362 0.00307043 0) (1.23207 0.00260912 0) (1.2307 0.00218569 0) (1.22952 0.00179484 0) (1.22853 0.00143142 0) (1.22774 0.00109034 0) (1.22714 0.000766573 0) (1.22674 0.000455064 0) (1.22654 0.000150838 0) (1.16473 0.0374422 0) (1.22226 0.035177 0) (1.25411 0.0316044 0) (1.26894 0.0285932 0) (1.27404 0.0259755 0) (1.27422 0.0236601 0) (1.27216 0.021575 0) (1.26918 0.0196717 0) (1.26592 0.0179216 0) (1.26264 0.0163058 0) (1.25945 0.0148107 0) (1.25639 0.0134263 0) (1.25346 0.0121444 0) (1.25066 0.0109584 0) (1.24797 0.00986185 0) (1.24541 0.00884874 0) (1.24297 0.00791304 0) (1.24067 0.00704882 0) (1.23852 0.00625021 0) (1.23651 0.00551139 0) (1.23467 0.00482671 0) (1.23299 0.0041906 0) (1.23149 0.00359763 0) (1.23016 0.00304244 0) (1.22901 0.0025198 0) (1.22805 0.00202456 0) (1.22728 0.00155166 0) (1.2267 0.00109608 0) (1.22631 0.000652751 0) (1.22612 0.000216735 0) (1.16117 0.0405269 0) (1.21836 0.0383099 0) (1.25045 0.0347812 0) (1.26568 0.0317151 0) (1.27116 0.0290176 0) (1.27164 0.0266054 0) (1.26982 0.024416 0) (1.26703 0.022405 0) (1.26393 0.0205447 0) (1.2608 0.0188166 0) (1.25774 0.0172075 0) (1.2548 0.0157073 0) (1.25199 0.0143083 0) (1.24928 0.0130037 0) (1.2467 0.0117874 0) (1.24422 0.0106535 0) (1.24187 0.00959603 0) (1.23965 0.00860925 0) (1.23757 0.00768743 0) (1.23563 0.00682486 0) (1.23384 0.00601599 0) (1.23222 0.00525536 0) (1.23076 0.00453758 0) (1.22947 0.00385739 0) (1.22836 0.00320958 0) (1.22743 0.00258905 0) (1.22668 0.00199078 0) (1.22611 0.00140977 0) (1.22574 0.000840971 0) (1.22555 0.000279479 0) (1.15775 0.0433832 0) (1.21453 0.0412143 0) (1.24676 0.0377318 0) (1.26234 0.0346238 0) (1.26818 0.0318578 0) (1.26895 0.0293603 0) (1.26736 0.0270775 0) (1.26477 0.0249692 0) (1.26183 0.0230085 0) (1.25883 0.0211776 0) (1.25591 0.0194635 0) (1.25309 0.0178565 0) (1.25038 0.0163489 0) (1.24778 0.0149342 0) (1.24529 0.0136063 0) (1.24291 0.0123594 0) (1.24064 0.0111879 0) (1.2385 0.0100861 0) (1.23648 0.00904848 0) (1.23461 0.00806937 0) (1.23288 0.00714337 0) (1.23131 0.00626512 0) (1.22989 0.00542933 0) (1.22865 0.00463079 0) (1.22757 0.00386438 0) (1.22666 0.00312505 0) (1.22594 0.00240782 0) (1.22539 0.00170773 0) (1.22502 0.00101977 0) (1.22484 0.000339084 0) (1.15447 0.0460174 0) (1.21077 0.0438962 0) (1.24308 0.0404623 0) (1.25896 0.0373243 0) (1.26512 0.0345008 0) (1.26617 0.031929 0) (1.2648 0.0295635 0) (1.26239 0.0273677 0) (1.25961 0.0253162 0) (1.25675 0.0233917 0) (1.25396 0.0215815 0) (1.25125 0.0198763 0) (1.24865 0.0182685 0) (1.24616 0.0167517 0) (1.24376 0.0153201 0) (1.24147 0.013968 0) (1.23928 0.01269 0) (1.23721 0.0114806 0) (1.23527 0.0103343 0) (1.23346 0.00924576 0) (1.23179 0.00820956 0) (1.23026 0.00722049 0) (1.2289 0.00627336 0) (1.22769 0.00536305 0) (1.22664 0.00448453 0) (1.22577 0.00363281 0) (1.22506 0.00280296 0) (1.22453 0.00199008 0) (1.22418 0.00118922 0) (1.224 0.000395576 0) (1.15132 0.0484369 0) (1.20707 0.0463625 0) (1.2394 0.0429798 0) (1.25553 0.0398225 0) (1.26199 0.0369519 0) (1.26331 0.0343163 0) (1.26215 0.0318781 0) (1.25992 0.0296046 0) (1.25729 0.0274715 0) (1.25457 0.0254622 0) (1.2519 0.0235645 0) (1.24931 0.0217693 0) (1.24682 0.0200694 0) (1.24442 0.0184584 0) (1.24211 0.0169308 0) (1.23991 0.015481 0) (1.2378 0.0141039 0) (1.23581 0.0127941 0) (1.23393 0.0115462 0) (1.23218 0.010355 0) (1.23057 0.00921542 0) (1.2291 0.0081222 0) (1.22778 0.0070703 0) (1.22661 0.0060547 0) (1.22559 0.00507045 0) (1.22475 0.00411265 0) (1.22406 0.00317645 0) (1.22355 0.002257 0) (1.22321 0.00134942 0) (1.22303 0.000448988 0) (1.14829 0.0506498 0) (1.20345 0.0486213 0) (1.23573 0.0452921 0) (1.25208 0.0421251 0) (1.25881 0.0392172 0) (1.26037 0.0365277 0) (1.25942 0.0340265 0) (1.25736 0.0316843 0) (1.25488 0.0294784 0) (1.2523 0.0273927 0) (1.24974 0.0254158 0) (1.24727 0.0235386 0) (1.24488 0.0217543 0) (1.24258 0.0200568 0) (1.24036 0.0184405 0) (1.23824 0.0169004 0) (1.23622 0.0154313 0) (1.23429 0.014028 0) (1.23249 0.0126854 0) (1.2308 0.0113984 0) (1.22924 0.010162 0) (1.22782 0.00897112 0) (1.22654 0.00782088 0) (1.22541 0.00670634 0) (1.22443 0.00562265 0) (1.22361 0.00456499 0) (1.22295 0.0035286 0) (1.22245 0.00250871 0) (1.22212 0.00150051 0) (1.22195 0.000499363 0) (1.14538 0.052665 0) (1.1999 0.0506812 0) (1.23208 0.0474077 0) (1.2486 0.0442395 0) (1.25558 0.0413033 0) (1.25737 0.0385693 0) (1.25662 0.036014 0) (1.25473 0.0336117 0) (1.25239 0.0313413 0) (1.24994 0.0291874 0) (1.2475 0.027139 0) (1.24513 0.0251876 0) (1.24284 0.0233263 0) (1.24064 0.0215495 0) (1.23851 0.0198518 0) (1.23648 0.0182283 0) (1.23453 0.016674 0) (1.23268 0.015184 0) (1.23093 0.0137533 0) (1.22931 0.0123771 0) (1.2278 0.0110503 0) (1.22643 0.00976824 0) (1.22519 0.00852595 0) (1.2241 0.00731869 0) (1.22315 0.00614171 0) (1.22236 0.00499029 0) (1.22172 0.00385976 0) (1.22124 0.00274545 0) (1.22091 0.00164264 0) (1.22075 0.000546752 0) (1.14257 0.0544924 0) (1.19643 0.0525519 0) (1.22847 0.0493357 0) (1.24511 0.0461738 0) (1.25231 0.0432175 0) (1.25432 0.0404473 0) (1.25376 0.0378464 0) (1.25203 0.0353921 0) (1.24983 0.033065 0) (1.2475 0.0308505 0) (1.24518 0.028738 0) (1.24292 0.0267196 0) (1.24073 0.0247885 0) (1.23861 0.0229394 0) (1.23658 0.0211671 0) (1.23462 0.019467 0) (1.23274 0.0178342 0) (1.23096 0.0162641 0) (1.22928 0.0147518 0) (1.22772 0.0132926 0) (1.22626 0.0118818 0) (1.22494 0.0105147 0) (1.22374 0.00918645 0) (1.22269 0.00789254 0) (1.22177 0.00662828 0) (1.221 0.00538907 0) (1.22039 0.00417035 0) (1.21992 0.00296752 0) (1.21961 0.00177596 0) (1.21945 0.000591209 0) (1.13988 0.0561423 0) (1.19303 0.0542433 0) (1.22488 0.0510857 0) (1.24163 0.0479365 0) (1.24902 0.0449673 0) (1.25123 0.0421688 0) (1.25085 0.0395298 0) (1.24927 0.0370311 0) (1.24721 0.0346545 0) (1.245 0.0323865 0) (1.24279 0.030217 0) (1.24063 0.0281384 0) (1.23853 0.0261443 0) (1.23651 0.0242295 0) (1.23455 0.0223892 0) (1.23267 0.0206189 0) (1.23087 0.018914 0) (1.22916 0.01727 0) (1.22754 0.0156824 0) (1.22603 0.0141465 0) (1.22463 0.0126577 0) (1.22335 0.0112115 0) (1.2222 0.00980338 0) (1.22118 0.00842874 0) (1.2203 0.00708308 0) (1.21955 0.00576192 0) (1.21896 0.00446079 0) (1.2185 0.00317521 0) (1.2182 0.00190068 0) (1.21805 0.000632797 0) (1.13728 0.0576254 0) (1.1897 0.0557662 0) (1.22134 0.0526676 0) (1.23814 0.0495363 0) (1.24571 0.0465607 0) (1.24811 0.0437408 0) (1.2479 0.0410706 0) (1.24647 0.0385342 0) (1.24453 0.0361149 0) (1.24244 0.0338001 0) (1.24033 0.0315802 0) (1.23827 0.0294478 0) (1.23627 0.0273971 0) (1.23433 0.025423 0) (1.23246 0.023521 0) (1.23065 0.0216867 0) (1.22892 0.0199158 0) (1.22728 0.0182041 0) (1.22572 0.016547 0) (1.22426 0.0149403 0) (1.22292 0.0133795 0) (1.22168 0.0118601 0) (1.22057 0.0103778 0) (1.21958 0.0089282 0) (1.21873 0.00750686 0) (1.21801 0.00610943 0) (1.21743 0.00473156 0) (1.217 0.00336888 0) (1.21671 0.00201697 0) (1.21656 0.00067158 0) (1.13478 0.0589529 0) (1.18645 0.057131 0) (1.21783 0.0540915 0) (1.23467 0.0509823 0) (1.24239 0.0480057 0) (1.24496 0.0451704 0) (1.24491 0.0424754 0) (1.24362 0.0399075 0) (1.24181 0.0374517 0) (1.23983 0.0350961 0) (1.23782 0.0328318 0) (1.23586 0.0306518 0) (1.23394 0.0285505 0) (1.23209 0.026523 0) (1.23029 0.0245652 0) (1.22856 0.0226728 0) (1.2269 0.0208419 0) (1.22532 0.0190682 0) (1.22382 0.0173476 0) (1.22242 0.0156758 0) (1.22112 0.0140486 0) (1.21993 0.0124617 0) (1.21886 0.0109109 0) (1.21791 0.0093919 0) (1.21708 0.00790043 0) (1.21639 0.00643226 0) (1.21583 0.00498315 0) (1.21541 0.00354885 0) (1.21513 0.00212507 0) (1.21499 0.00070763 0) (1.13236 0.0601356 0) (1.18327 0.0583485 0) (1.21437 0.0553673 0) (1.23122 0.0522834 0) (1.23906 0.0493104 0) (1.24179 0.0464649 0) (1.24189 0.0437505 0) (1.24073 0.0411567 0) (1.23905 0.03867 0) (1.23717 0.0362794 0) (1.23527 0.0339764 0) (1.23339 0.0317544 0) (1.23156 0.0296081 0) (1.22978 0.0275329 0) (1.22807 0.0255249 0) (1.22641 0.0235802 0) (1.22481 0.0216947 0) (1.22329 0.0198646 0) (1.22185 0.018086 0) (1.2205 0.0163547 0) (1.21925 0.0146666 0) (1.2181 0.0130177 0) (1.21707 0.0114038 0) (1.21615 0.00982082 0) (1.21535 0.00826462 0) (1.21469 0.00673108 0) (1.21415 0.00521609 0) (1.21374 0.00371552 0) (1.21347 0.00222518 0) (1.21333 0.000741019 0) (1.13003 0.0611843 0) (1.18016 0.0594289 0) (1.21095 0.0565046 0) (1.22778 0.0534483 0) (1.23573 0.0504826 0) (1.23861 0.0476314 0) (1.23885 0.0449024 0) (1.23782 0.0422876 0) (1.23625 0.0397751 0) (1.23448 0.0373546 0) (1.23266 0.0350181 0) (1.23087 0.0327594 0) (1.22913 0.0305735 0) (1.22743 0.028456 0) (1.22578 0.0264032 0) (1.22419 0.0244113 0) (1.22266 0.0224767 0) (1.2212 0.0205956 0) (1.21982 0.0187643 0) (1.21852 0.0169787 0) (1.21731 0.0152351 0) (1.21621 0.0135294 0) (1.21521 0.0118577 0) (1.21432 0.010216 0) (1.21356 0.00860028 0) (1.21291 0.00700659 0) (1.21239 0.00543091 0) (1.212 0.00386925 0) (1.21173 0.00231753 0) (1.2116 0.000771823 0) (1.12778 0.0621093 0) (1.17711 0.0603822 0) (1.20758 0.0575128 0) (1.22436 0.0544854 0) (1.23241 0.0515299 0) (1.23542 0.0486768 0) (1.23579 0.0459372 0) (1.23488 0.043306 0) (1.23342 0.0407723 0) (1.23175 0.0383266 0) (1.23002 0.0359615 0) (1.22832 0.033671 0) (1.22665 0.0314503 0) (1.22503 0.0292955 0) (1.22345 0.0272029 0) (1.22193 0.025169 0) (1.22046 0.0231904 0) (1.21906 0.0212634 0) (1.21773 0.0193844 0) (1.21648 0.0175497 0) (1.21532 0.0157556 0) (1.21425 0.0139983 0) (1.21329 0.0122738 0) (1.21243 0.0105784 0) (1.21169 0.00890829 0) (1.21107 0.00725948 0) (1.21057 0.00562816 0) (1.21019 0.00401043 0) (1.20993 0.00240235 0) (1.20981 0.000800118 0) (1.1256 0.0629199 0) (1.17413 0.0612174 0) (1.20425 0.0584004 0) (1.22097 0.0554026 0) (1.22909 0.0524595 0) (1.23223 0.0496074 0) (1.23272 0.0468611 0) (1.23193 0.0442172 0) (1.23057 0.0416664 0) (1.22899 0.0391999 0) (1.22735 0.0368105 0) (1.22573 0.0344927 0) (1.22414 0.0322421 0) (1.22258 0.0300547 0) (1.22108 0.0279271 0) (1.21962 0.025856 0) (1.21821 0.0238381 0) (1.21686 0.0218701 0) (1.21558 0.0199484 0) (1.21438 0.0180695 0) (1.21326 0.0162299 0) (1.21224 0.0144257 0) (1.21131 0.0126534 0) (1.21049 0.0109093 0) (1.20977 0.00918953 0) (1.20917 0.00749049 0) (1.20868 0.00580838 0) (1.20832 0.00413945 0) (1.20807 0.00247989 0) (1.20795 0.000825984 0) (1.12348 0.0636247 0) (1.17121 0.0619428 0) (1.20096 0.0591751 0) (1.21761 0.056207 0) (1.22578 0.0532779 0) (1.22903 0.0504295 0) (1.22964 0.0476794 0) (1.22896 0.0450264 0) (1.22769 0.0424622 0) (1.22621 0.0399788 0) (1.22465 0.0375693 0) (1.22311 0.0352285 0) (1.22159 0.0329522 0) (1.22011 0.0307366 0) (1.21866 0.0285785 0) (1.21726 0.0264749 0) (1.21591 0.0244224 0) (1.21462 0.022418 0) (1.21339 0.0204583 0) (1.21223 0.0185399 0) (1.21116 0.0166593 0) (1.21017 0.0148131 0) (1.20928 0.0129977 0) (1.20848 0.0112095 0) (1.20779 0.0094449 0) (1.20721 0.00770033 0) (1.20674 0.00597215 0) (1.20639 0.00425673 0) (1.20615 0.00255037 0) (1.20604 0.0008495 0) (1.12142 0.0642312 0) (1.16835 0.0625657 0) (1.19772 0.0598441 0) (1.21426 0.0569051 0) (1.22249 0.0539912 0) (1.22583 0.0511485 0) (1.22655 0.0483974 0) (1.22598 0.0457383 0) (1.22481 0.0431642 0) (1.22341 0.0406674 0) (1.22193 0.0382417 0) (1.22046 0.0358819 0) (1.21901 0.0335839 0) (1.2176 0.0313444 0) (1.21622 0.0291602 0) (1.21487 0.0270282 0) (1.21358 0.0249456 0) (1.21234 0.0229093 0) (1.21116 0.020916 0) (1.21005 0.0189626 0) (1.20901 0.0170457 0) (1.20806 0.0151619 0) (1.2072 0.0133079 0) (1.20643 0.0114802 0) (1.20577 0.00967528 0) (1.20521 0.00788973 0) (1.20476 0.00612003 0) (1.20441 0.00436265 0) (1.20419 0.00261405 0) (1.20407 0.000870746 0) (1.11941 0.0647457 0) (1.16553 0.0630922 0) (1.19451 0.0604132 0) (1.21095 0.0575027 0) (1.21921 0.0546047 0) (1.22264 0.0517696 0) (1.22347 0.0490197 0) (1.22299 0.0463574 0) (1.22191 0.0437764 0) (1.22059 0.0412697 0) (1.2192 0.0388312 0) (1.21779 0.0364561 0) (1.21641 0.0341405 0) (1.21506 0.031881 0) (1.21374 0.0296746 0) (1.21246 0.0275186 0) (1.21121 0.0254101 0) (1.21002 0.023346 0) (1.20889 0.0213235 0) (1.20782 0.0193394 0) (1.20682 0.0173905 0) (1.20591 0.0154735 0) (1.20508 0.0135853 0) (1.20434 0.0117224 0) (1.2037 0.00988157 0) (1.20316 0.00805941 0) (1.20272 0.00625256 0) (1.20239 0.00445762 0) (1.20217 0.00267115 0) (1.20206 0.000889801 0) (1.11744 0.0651732 0) (1.16276 0.0635274 0) (1.19135 0.0608875 0) (1.20766 0.0580045 0) (1.21594 0.0551231 0) (1.21946 0.052297 0) (1.22038 0.0495506 0) (1.21999 0.0468877 0) (1.219 0.0443027 0) (1.21777 0.0417892 0) (1.21644 0.0393414 0) (1.21511 0.0369545 0) (1.21379 0.0346248 0) (1.2125 0.0323492 0) (1.21124 0.0301246 0) (1.21001 0.0279484 0) (1.20882 0.0258179 0) (1.20768 0.0237303 0) (1.20659 0.0216827 0) (1.20556 0.019672 0) (1.2046 0.0176952 0) (1.20372 0.0157493 0) (1.20292 0.013831 0) (1.20221 0.0119372 0) (1.20159 0.0100647 0) (1.20107 0.00821011 0) (1.20065 0.00637033 0) (1.20033 0.00454204 0) (1.20012 0.00272192 0) (1.20001 0.000906745 0) (1.1155 0.0655177 0) (1.16003 0.0638754 0) (1.18821 0.0612712 0) (1.2044 0.0584147 0) (1.21269 0.0555503 0) (1.21628 0.0527347 0) (1.2173 0.0499938 0) (1.217 0.0473327 0) (1.21609 0.0447466 0) (1.21493 0.0422293 0) (1.21368 0.0397753 0) (1.21241 0.03738 0) (1.21116 0.0350398 0) (1.20993 0.0327516 0) (1.20872 0.0305126 0) (1.20754 0.0283201 0) (1.2064 0.0261715 0) (1.20531 0.0240642 0) (1.20426 0.0219954 0) (1.20327 0.0199621 0) (1.20235 0.0179615 0) (1.2015 0.0159906 0) (1.20073 0.0140463 0) (1.20004 0.0121256 0) (1.19945 0.0102254 0) (1.19894 0.00834252 0) (1.19854 0.00647388 0) (1.19823 0.0046163 0) (1.19803 0.0027666 0) (1.19792 0.000921657 0) (1.1136 0.0657818 0) (1.15734 0.0641391 0) (1.18511 0.0615674 0) (1.20116 0.0587365 0) (1.20946 0.0558897 0) (1.21312 0.053086 0) (1.21422 0.0503527 0) (1.21401 0.0476957 0) (1.21318 0.045111 0) (1.21209 0.0425929 0) (1.21091 0.0401359 0) (1.20971 0.0377355 0) (1.20851 0.0353882 0) (1.20734 0.0330909 0) (1.20618 0.0308409 0) (1.20506 0.0286358 0) (1.20397 0.0264729 0) (1.20291 0.0243496 0) (1.20191 0.0222634 0) (1.20096 0.0202114 0) (1.20007 0.0181908 0) (1.19925 0.0161988 0) (1.19851 0.0142324 0) (1.19785 0.0122887 0) (1.19728 0.0103647 0) (1.19679 0.00845737 0) (1.1964 0.00656376 0) (1.1961 0.00468079 0) (1.1959 0.00280541 0) (1.1958 0.000934618 0) (1.11171 0.0659671 0) (1.15467 0.0643205 0) (1.18204 0.0617784 0) (1.19794 0.0589725 0) (1.20624 0.056144 0) (1.20997 0.0533537 0) (1.21115 0.0506299 0) (1.21102 0.0479795 0) (1.21027 0.045399 0) (1.20926 0.0428829 0) (1.20814 0.0404259 0) (1.207 0.0380236 0) (1.20586 0.0356724 0) (1.20474 0.0333695 0) (1.20364 0.031112 0) (1.20256 0.0288977 0) (1.20151 0.026724 0) (1.20051 0.0245885 0) (1.19954 0.0224885 0) (1.19863 0.0204215 0) (1.19777 0.0183846 0) (1.19699 0.0163752 0) (1.19627 0.0143904 0) (1.19563 0.0124274 0) (1.19508 0.0104834 0) (1.19461 0.00855536 0) (1.19423 0.00664052 0) (1.19394 0.00473592 0) (1.19375 0.00283861 0) (1.19366 0.000945703 0) (1.10985 0.0660743 0) (1.15204 0.0644207 0) (1.179 0.061906 0) (1.19475 0.0591248 0) (1.20305 0.0563154 0) (1.20683 0.0535401 0) (1.20809 0.050828 0) (1.20804 0.0481867 0) (1.20737 0.0456131 0) (1.20642 0.0431019 0) (1.20537 0.0406479 0) (1.20429 0.0382467 0) (1.20321 0.035895 0) (1.20214 0.0335896 0) (1.20108 0.0313281 0) (1.20005 0.0291081 0) (1.19905 0.0269271 0) (1.19808 0.0247827 0) (1.19716 0.0226725 0) (1.19628 0.0205939 0) (1.19546 0.0185443 0) (1.1947 0.0165211 0) (1.19401 0.0145215 0) (1.19339 0.0125428 0) (1.19286 0.0105823 0) (1.19241 0.00863718 0) (1.19204 0.00670471 0) (1.19176 0.00478206 0) (1.19158 0.00286642 0) (1.19149 0.000954993 0) (1.10799 0.0661032 0) (1.14943 0.0644403 0) (1.17599 0.0619511 0) (1.19159 0.0591946 0) (1.19987 0.0564057 0) (1.20371 0.0536473 0) (1.20504 0.0509493 0) (1.20507 0.0483196 0) (1.20447 0.0457556 0) (1.20359 0.0432522 0) (1.2026 0.0408042 0) (1.20158 0.0384074 0) (1.20055 0.0360581 0) (1.19953 0.0337536 0) (1.19853 0.0314913 0) (1.19754 0.0292689 0) (1.19658 0.0270839 0) (1.19565 0.0249341 0) (1.19476 0.022817 0) (1.19392 0.0207303 0) (1.19313 0.0186714 0) (1.1924 0.0166378 0) (1.19173 0.0146268 0) (1.19114 0.0126358 0) (1.19062 0.0106623 0) (1.19019 0.00870354 0) (1.18983 0.00675687 0) (1.18957 0.00481962 0) (1.18939 0.00288906 0) (1.1893 0.000962563 0) (1.10614 0.066053 0) (1.14684 0.0643791 0) (1.17301 0.0619144 0) (1.18845 0.0591832 0) (1.19672 0.0564162 0) (1.2006 0.0536769 0) (1.20201 0.0509955 0) (1.20212 0.0483802 0) (1.20159 0.0458288 0) (1.20078 0.0433361 0) (1.19984 0.0408972 0) (1.19887 0.0385077 0) (1.1979 0.0361642 0) (1.19693 0.0338637 0) (1.19597 0.0316038 0) (1.19503 0.0293821 0) (1.19411 0.0271964 0) (1.19322 0.0250444 0) (1.19236 0.0229238 0) (1.19155 0.0208323 0) (1.19079 0.0187673 0) (1.19008 0.0167265 0) (1.18944 0.0147074 0) (1.18887 0.0127075 0) (1.18837 0.0107243 0) (1.18795 0.00875512 0) (1.18761 0.00679754 0) (1.18735 0.00484896 0) (1.18718 0.00290679 0) (1.18709 0.000968493 0) (1.10429 0.0659226 0) (1.14428 0.0642369 0) (1.17005 0.0617962 0) (1.18534 0.0590914 0) (1.19359 0.0563483 0) (1.19752 0.0536306 0) (1.199 0.0509685 0) (1.19918 0.0483705 0) (1.19872 0.0458347 0) (1.19797 0.0433558 0) (1.1971 0.040929 0) (1.19618 0.03855 0) (1.19525 0.0362153 0) (1.19433 0.033922 0) (1.19341 0.0316676 0) (1.19251 0.0294498 0) (1.19163 0.0272666 0) (1.19078 0.0251155 0) (1.18996 0.0229945 0) (1.18918 0.0209013 0) (1.18844 0.0188334 0) (1.18777 0.0167887 0) (1.18715 0.0147646 0) (1.1866 0.0127589 0) (1.18611 0.010769 0) (1.18571 0.00879261 0) (1.18538 0.00682726 0) (1.18513 0.00487048 0) (1.18496 0.00291982 0) (1.18488 0.000972857 0) (1.10245 0.0657106 0) (1.14173 0.064013 0) (1.16712 0.0615966 0) (1.18226 0.0589199 0) (1.19049 0.056203 0) (1.19447 0.0535098 0) (1.19601 0.05087 0) (1.19626 0.0482925 0) (1.19587 0.0457753 0) (1.19518 0.0433134 0) (1.19436 0.0409019 0) (1.1935 0.0385364 0) (1.19262 0.0362136 0) (1.19174 0.0339305 0) (1.19087 0.0316847 0) (1.19001 0.029474 0) (1.18916 0.0272962 0) (1.18834 0.0251492 0) (1.18755 0.0230308 0) (1.1868 0.0209389 0) (1.1861 0.0188712 0) (1.18544 0.0168254 0) (1.18485 0.0147994 0) (1.18431 0.0127908 0) (1.18385 0.0107974 0) (1.18346 0.00881672 0) (1.18314 0.00684657 0) (1.1829 0.00488458 0) (1.18273 0.0029284 0) (1.18265 0.000975738 0) (1.10061 0.0654158 0) (1.13921 0.0637071 0) (1.16423 0.061316 0) (1.17921 0.0586694 0) (1.18742 0.0559817 0) (1.19144 0.053316 0) (1.19305 0.0507018 0) (1.19337 0.048148 0) (1.19304 0.0456527 0) (1.19241 0.043211 0) (1.19165 0.0408179 0) (1.19083 0.0384692 0) (1.19 0.0361613 0) (1.18916 0.0338915 0) (1.18833 0.0316573 0) (1.18751 0.0294566 0) (1.1867 0.0272872 0) (1.18591 0.0251472 0) (1.18516 0.0230343 0) (1.18443 0.0209466 0) (1.18375 0.018882 0) (1.18312 0.0168381 0) (1.18255 0.014813 0) (1.18203 0.0128044 0) (1.18158 0.0108102 0) (1.1812 0.00882813 0) (1.18089 0.00685601 0) (1.18066 0.00489162 0) (1.1805 0.00293275 0) (1.18042 0.000977207 0) (1.09877 0.0650371 0) (1.13671 0.063319 0) (1.16136 0.0609548 0) (1.17619 0.058341 0) (1.18438 0.0556856 0) (1.18844 0.0530508 0) (1.19012 0.0504658 0) (1.19051 0.0479391 0) (1.19024 0.0454691 0) (1.18967 0.0430508 0) (1.18895 0.0406794 0) (1.18819 0.0383504 0) (1.1874 0.0360606 0) (1.1866 0.0338071 0) (1.18581 0.0315875 0) (1.18502 0.0293997 0) (1.18425 0.0272416 0) (1.18349 0.0251113 0) (1.18276 0.0230068 0) (1.18207 0.0209262 0) (1.18141 0.0188672 0) (1.1808 0.0168281 0) (1.18025 0.0148066 0) (1.17975 0.0128007 0) (1.17931 0.0108084 0) (1.17895 0.00882756 0) (1.17865 0.00685614 0) (1.17842 0.00489202 0) (1.17827 0.00293312 0) (1.17819 0.000977352 0) (1.09693 0.064574 0) (1.13423 0.0628489 0) (1.15853 0.0605138 0) (1.17322 0.0579359 0) (1.18139 0.0553163 0) (1.18549 0.0527162 0) (1.18722 0.0501639 0) (1.18767 0.047668 0) (1.18747 0.0452268 0) (1.18695 0.0428353 0) (1.18629 0.0404886 0) (1.18556 0.0381827 0) (1.18482 0.0359139 0) (1.18406 0.0336796 0) (1.1833 0.0314774 0) (1.18255 0.0293053 0) (1.18181 0.0271613 0) (1.18108 0.0250435 0) (1.18038 0.0229501 0) (1.17971 0.020879 0) (1.17908 0.0188285 0) (1.17849 0.0167965 0) (1.17795 0.0147812 0) (1.17747 0.0127806 0) (1.17705 0.0107928 0) (1.17669 0.00881572 0) (1.1764 0.00684751 0) (1.17618 0.00488617 0) (1.17604 0.00292973 0) (1.17596 0.000976242 0) (1.0951 0.0640263 0) (1.13178 0.0622974 0) (1.15574 0.0599943 0) (1.17028 0.0574558 0) (1.17843 0.0548759 0) (1.18257 0.0523142 0) (1.18436 0.0497986 0) (1.18487 0.0473371 0) (1.18473 0.0449281 0) (1.18426 0.0425668 0) (1.18365 0.0402482 0) (1.18297 0.0379682 0) (1.18226 0.0357235 0) (1.18154 0.0335113 0) (1.18082 0.0313294 0) (1.1801 0.0291757 0) (1.17939 0.0270484 0) (1.17869 0.0249456 0) (1.17801 0.0228657 0) (1.17737 0.0208068 0) (1.17675 0.0187672 0) (1.17619 0.0167449 0) (1.17567 0.0147382 0) (1.1752 0.0127452 0) (1.17479 0.0107642 0) (1.17444 0.00879333 0) (1.17416 0.00683069 0) (1.17395 0.00487448 0) (1.17381 0.00292285 0) (1.17374 0.000973972 0) (1.09328 0.063395 0) (1.12936 0.0616663 0) (1.15299 0.0593982 0) (1.1674 0.056903 0) (1.17553 0.0543667 0) (1.1797 0.0518476 0) (1.18155 0.0493724 0) (1.18212 0.0469491 0) (1.18203 0.0445759 0) (1.18161 0.0422481 0) (1.18104 0.0399607 0) (1.1804 0.0377098 0) (1.17973 0.035492 0) (1.17905 0.0333047 0) (1.17836 0.0311456 0) (1.17767 0.0290129 0) (1.17698 0.0269048 0) (1.17631 0.0248197 0) (1.17566 0.0227557 0) (1.17504 0.0207114 0) (1.17445 0.0186849 0) (1.1739 0.0166745 0) (1.17339 0.0146787 0) (1.17294 0.0126957 0) (1.17254 0.0107237 0) (1.17221 0.00876114 0) (1.17193 0.00680625 0) (1.17173 0.00485734 0) (1.17159 0.00291269 0) (1.17152 0.000970606 0) (1.09146 0.0626814 0) (1.12698 0.0609573 0) (1.15029 0.0587281 0) (1.16457 0.0562801 0) (1.17267 0.0537916 0) (1.17687 0.0513191 0) (1.17878 0.0488884 0) (1.1794 0.046507 0) (1.17937 0.0441731 0) (1.179 0.0418821 0) (1.17847 0.0396291 0) (1.17787 0.0374101 0) (1.17724 0.035222 0) (1.17658 0.0330622 0) (1.17592 0.0309286 0) (1.17526 0.0288194 0) (1.1746 0.0267329 0) (1.17396 0.0246676 0) (1.17333 0.0226219 0) (1.17272 0.0205942 0) (1.17215 0.0185831 0) (1.17162 0.0165868 0) (1.17113 0.014604 0) (1.17069 0.0126329 0) (1.1703 0.0106721 0) (1.16998 0.00871989 0) (1.16971 0.00677479 0) (1.16951 0.00483521 0) (1.16938 0.00289955 0) (1.16931 0.000966253 0) (1.08966 0.0618886 0) (1.12463 0.0601739 0) (1.14764 0.0579873 0) (1.16179 0.0555907 0) (1.16987 0.0531541 0) (1.17411 0.0507324 0) (1.17606 0.04835 0) (1.17674 0.0460142 0) (1.17675 0.0437231 0) (1.17643 0.041472 0) (1.17594 0.0392564 0) (1.17538 0.0370722 0) (1.17478 0.0349165 0) (1.17415 0.0327868 0) (1.17352 0.030681 0) (1.17288 0.0285976 0) (1.17225 0.0265349 0) (1.17162 0.0244916 0) (1.17102 0.0224662 0) (1.17043 0.0204573 0) (1.16988 0.0184635 0) (1.16936 0.0164833 0) (1.16888 0.0145153 0) (1.16845 0.0125581 0) (1.16808 0.0106103 0) (1.16776 0.00867036 0) (1.1675 0.0067369 0) (1.16731 0.00480847 0) (1.16718 0.00288363 0) (1.16711 0.000960965 0) (1.08788 0.0610195 0) (1.12233 0.0593196 0) (1.14505 0.0571797 0) (1.15907 0.0548387 0) (1.16713 0.0524584 0) (1.1714 0.0500914 0) (1.1734 0.0477612 0) (1.17413 0.0454745 0) (1.17418 0.0432294 0) (1.1739 0.0410214 0) (1.17345 0.0388459 0) (1.17292 0.0366993 0) (1.17235 0.0345784 0) (1.17175 0.0324811 0) (1.17114 0.0304054 0) (1.17053 0.0283499 0) (1.16992 0.0263131 0) (1.16931 0.0242938 0) (1.16872 0.0222907 0) (1.16816 0.0203024 0) (1.16762 0.0183277 0) (1.16711 0.0163654 0) (1.16665 0.0144141 0) (1.16623 0.0124725 0) (1.16587 0.0105393 0) (1.16556 0.00861333 0) (1.16531 0.0066932 0) (1.16511 0.00477761 0) (1.16499 0.00286527 0) (1.16492 0.000954875 0) (1.08612 0.0600795 0) (1.12008 0.0583997 0) (1.14252 0.0563106 0) (1.15642 0.0540292 0) (1.16446 0.0517091 0) (1.16875 0.0494006 0) (1.1708 0.0471261 0) (1.17157 0.0448919 0) (1.17168 0.042696 0) (1.17143 0.040534 0) (1.17101 0.0384014 0) (1.17051 0.0362947 0) (1.16996 0.034211 0) (1.16939 0.0321482 0) (1.16881 0.0301047 0) (1.16822 0.0280791 0) (1.16762 0.0260701 0) (1.16704 0.0240766 0) (1.16646 0.0220974 0) (1.16591 0.0201314 0) (1.16539 0.0181776 0) (1.16489 0.0162346 0) (1.16444 0.0143015 0) (1.16404 0.0123771 0) (1.16368 0.0104602 0) (1.16338 0.00854962 0) (1.16313 0.00664429 0) (1.16294 0.00474302 0) (1.16282 0.00284464 0) (1.16275 0.000948012 0) (1.08439 0.0590733 2.39424e-29) (1.11787 0.0574193 0) (1.14005 0.0553851 0) (1.15384 0.0531674 0) (1.16186 0.0509114 1.48147e-28) (1.16617 0.0486652 1.49518e-28) (1.16825 0.0464498 -2.68419e-29) (1.16907 0.0442712 -2.83746e-29) (1.16921 0.0421273 0) (1.169 0.0400138 0) (1.16861 0.0379265 0) (1.16814 0.035862 0) (1.16762 0.0338176 0) (1.16707 0.0317914 3.00793e-29) (1.1665 0.0297819 -1.06155e-28) (1.16593 0.0277879 0) (1.16535 0.0258083 3.06153e-29) (1.16478 0.0238421 0) (1.16422 0.0218885 0) (1.16368 0.0199463 0) (1.16317 0.0180146 1.6867e-28) (1.16269 0.0160926 1.09324e-28) (1.16225 0.0141791 -3.12559e-29) (1.16185 0.0122731 0) (1.1615 0.0103738 1.09993e-28) (1.1612 0.00848003 -3.14158e-29) (1.16096 0.00659084 0) (1.16078 0.00470521 -1.70729e-28) (1.16066 0.00282212 0) (1.16059 0.000940543 0) (1.0827 0.0580086 -2.39423e-29) (1.11573 0.0563859 0) (1.13766 0.0544102 0) (1.15134 0.0522598 0) (1.15934 0.0500712 -1.48147e-28) (1.16367 0.0478905 -1.49518e-28) (1.16579 0.0457373 2.68419e-29) (1.16665 0.0436171 2.83746e-29) (1.16682 0.0415279 0) (1.16664 0.0394653 0) (1.16628 0.0374255 0) (1.16583 0.0354051 0) (1.16532 0.0334019 0) (1.16479 0.0314139 -3.00793e-29) (1.16424 0.02944 1.06155e-28) (1.16369 0.0274792 0) (1.16313 0.0255304 -3.06153e-29) (1.16257 0.023593 0) (1.16202 0.0216662 0) (1.16149 0.0197491 0) (1.16099 0.0178409 -1.6867e-28) (1.16052 0.0159409 -1.09324e-28) (1.16009 0.0140481 3.12559e-29) (1.1597 0.0121619 0) (1.15935 0.0102813 -1.09993e-28) (1.15906 0.00840541 3.14158e-29) (1.15883 0.00653347 0) (1.15865 0.00466458 1.70729e-28) (1.15852 0.00279785 0) (1.15846 0.000932461 0) (1.08104 0.0568915 0) (1.11365 0.0553057 0) (1.13533 0.0533924 0) (1.14891 0.0513128 0) (1.15688 0.049195 0) (1.16123 0.0470827 0) (1.16338 0.0449945 0) (1.16427 0.0429351 0) (1.16448 0.0409027 0) (1.16432 0.0388931 0) (1.16398 0.0369026 0) (1.16355 0.0349281 0) (1.16306 0.0329675 0) (1.16255 0.0310193 0) (1.16201 0.0290823 0) (1.16147 0.0271558 0) (1.16092 0.0252392 0) (1.16037 0.0233316 0) (1.15984 0.0214327 0) (1.15932 0.0195417 0) (1.15882 0.0176581 0) (1.15836 0.0157811 0) (1.15793 0.0139101 0) (1.15755 0.0120445 0) (1.15721 0.0101836 0) (1.15693 0.00832659 0) (1.15669 0.00647286 0) (1.15652 0.00462167 0) (1.1564 0.0027723 0) (1.15634 0.000923989 0) (1.07943 0.0557324 0) (1.11164 0.0541881 0) (1.13309 0.0523403 0) (1.14657 0.0503341 0) (1.15452 0.0482896 0) (1.15888 0.0462482 0) (1.16106 0.044227 0) (1.16198 0.0422307 0) (1.16221 0.0402569 0) (1.16208 0.038302 0) (1.16176 0.0363623 0) (1.16134 0.0344351 0) (1.16087 0.0325185 0) (1.16036 0.0306111 0) (1.15984 0.0287122 0) (1.15931 0.0268211 0) (1.15877 0.0249374 0) (1.15823 0.0230607 0) (1.1577 0.0211905 0) (1.15719 0.0193265 0) (1.15671 0.0174681 0) (1.15625 0.015615 0) (1.15583 0.0137666 0) (1.15545 0.0119224 0) (1.15512 0.0100818 0) (1.15483 0.00824444 0) (1.1546 0.00640964 0) (1.15443 0.00457684 0) (1.15431 0.00274549 0) (1.15425 0.000915051 0) (1.07787 0.0545378 0) (1.10969 0.0530405 0) (1.13092 0.0512613 0) (1.1443 0.0493313 0) (1.15222 0.0473626 0) (1.1566 0.0453941 0) (1.1588 0.0434419 0) (1.15974 0.04151 0) (1.15999 0.0395963 0) (1.15987 0.0376973 0) (1.15957 0.0358095 0) (1.15916 0.0339305 0) (1.1587 0.0320587 0) (1.1582 0.030193 0) (1.15768 0.0283328 0) (1.15716 0.0264779 0) (1.15662 0.0246278 0) (1.15609 0.0227825 0) (1.15557 0.0209417 0) (1.15507 0.0191053 0) (1.15459 0.0172728 0) (1.15414 0.0154441 0) (1.15372 0.0136188 0) (1.15334 0.0117965 0) (1.15301 0.00997699 0) (1.15273 0.00815978 0) (1.15251 0.0063445 0) (1.15233 0.00453073 0) (1.15222 0.00271805 0) (1.15216 0.000905961 0) (1.07637 0.0533208 0) (1.10783 0.051874 0) (1.12886 0.0501653 0) (1.14214 0.048313 0) (1.15004 0.0464214 0) (1.15442 0.0445271 0) (1.15664 0.042645 0) (1.1576 0.0407788 0) (1.15787 0.0389262 0) (1.15776 0.0370839 0) (1.15747 0.0352489 0) (1.15707 0.0334188 0) (1.15661 0.0315924 0) (1.15612 0.029769 0) (1.15561 0.0279481 0) (1.15508 0.0261296 0) (1.15456 0.0243136 0) (1.15403 0.0225001 0) (1.15351 0.0206891 0) (1.15301 0.0188805 0) (1.15253 0.0170743 0) (1.15209 0.0152703 0) (1.15167 0.0134684 0) (1.1513 0.0116685 0) (1.15097 0.00987026 0) (1.15069 0.00807355 0) (1.15047 0.00627808 0) (1.1503 0.0044836 0) (1.15018 0.00268981 0) (1.15012 0.000896529 0) (1.07492 0.0520875 0) (1.10602 0.0506962 0) (1.12685 0.0490607 0) (1.14004 0.0472879 0) (1.14791 0.0454747 0) (1.15229 0.0436556 0) (1.15452 0.0418443 0) (1.15549 0.0400441 0) (1.15577 0.038253 0) (1.15567 0.0364677 0) (1.15538 0.0346856 0) (1.15498 0.0329046 0) (1.15453 0.0311237 0) (1.15404 0.0293426 0) (1.15353 0.027561 0) (1.153 0.0257792 0) (1.15248 0.0239974 0) (1.15195 0.0222157 0) (1.15144 0.0204345 0) (1.15094 0.0186539 0) (1.15046 0.0168741 0) (1.15002 0.015095 0) (1.1496 0.0133167 0) (1.14923 0.0115392 0) (1.14891 0.00976248 0) (1.14863 0.00798647 0) (1.1484 0.00621106 0) (1.14823 0.00443616 0) (1.14812 0.00266163 0) (1.14806 0.000887217 0) (1.07354 0.0508543 0) (1.10432 0.0495201 0) (1.12497 0.047958 0) (1.13807 0.0462647 0) (1.14591 0.04453 0) (1.15029 0.0427861 0) (1.15253 0.0410458 0) (1.15351 0.0393118 0) (1.1538 0.0375822 0) (1.1537 0.0358539 0) (1.15341 0.0341246 0) (1.15301 0.0323926 0) (1.15255 0.0306572 0) (1.15206 0.0289182 0) (1.15155 0.0271758 0) (1.15103 0.0254304 0) (1.1505 0.0236825 0) (1.14997 0.0219326 0) (1.14946 0.0201811 0) (1.14896 0.0184283 0) (1.14848 0.0166746 0) (1.14804 0.0149203 0) (1.14763 0.0131655 0) (1.14726 0.0114103 0) (1.14693 0.00965502 0) (1.14665 0.0078996 0) (1.14643 0.00614412 0) (1.14626 0.0043886 0) (1.14614 0.00263305 0) (1.14608 0.00087764 0) (1.07221 0.049625 0) (1.10267 0.0483529 0) (1.12313 0.0468662 0) (1.13614 0.0452533 0) (1.14393 0.0435971 0) (1.14831 0.0419281 0) (1.15055 0.040258 0) (1.15153 0.0385894 0) (1.15182 0.0369204 0) (1.15172 0.0352483 0) (1.15142 0.033571 0) (1.15102 0.0318872 0) (1.15055 0.0301965 0) (1.15005 0.028499 0) (1.14954 0.0267951 0) (1.14901 0.0250856 0) (1.14848 0.0233712 0) (1.14795 0.0216525 0) (1.14743 0.0199302 0) (1.14693 0.0182049 0) (1.14645 0.0164771 0) (1.146 0.0147472 0) (1.14559 0.0130155 0) (1.14522 0.0112825 0) (1.14489 0.00954842 0) (1.14461 0.00781344 0) (1.14439 0.0060778 0) (1.14422 0.00434169 0) (1.1441 0.00260528 0) (1.14404 0.000868505 0) (1.07097 0.0484202 0) (1.10115 0.0472092 0) (1.12144 0.0457962 0) (1.13436 0.044262 0) (1.14213 0.042683 0) (1.14649 0.0410876 0) (1.14873 0.0394867 0) (1.14972 0.0378825 0) (1.15 0.0362733 0) (1.1499 0.0346565 0) (1.14959 0.0330303 0) (1.14918 0.0313938 0) (1.1487 0.0297468 0) (1.1482 0.0280899 0) (1.14767 0.0264237 0) (1.14714 0.0247493 0) (1.1466 0.0230675 0) (1.14606 0.0213792 0) (1.14554 0.0196855 0) (1.14504 0.017987 0) (1.14456 0.0162844 0) (1.1441 0.0145783 0) (1.14369 0.0128693 0) (1.14332 0.0111578 0) (1.14299 0.00944439 0) (1.14271 0.0077293 0) (1.14248 0.00601292 0) (1.14231 0.00429553 0) (1.1422 0.00257741 0) (1.14214 0.000859107 0) (1.06976 0.0472399 0) (1.09964 0.0460951 0) (1.11975 0.0447574 0) (1.13258 0.0433015 0) (1.1403 0.0417984 0) (1.14465 0.0402748 0) (1.14688 0.0387409 0) (1.14785 0.0371989 0) (1.14812 0.0356472 0) (1.148 0.0340837 0) (1.14768 0.0325067 0) (1.14725 0.0309157 0) (1.14676 0.0293109 0) (1.14624 0.0276931 0) (1.14571 0.0260632 0) (1.14516 0.0244226 0) (1.14461 0.0227723 0) (1.14407 0.0211135 0) (1.14354 0.0194474 0) (1.14303 0.0177748 0) (1.14254 0.0160966 0) (1.14208 0.0144136 0) (1.14167 0.0127266 0) (1.14129 0.0110362 0) (1.14096 0.00934286 0) (1.14068 0.00764722 0) (1.14045 0.00594974 0) (1.14028 0.00425091 0) (1.14016 0.00255115 0) (1.1401 0.000850547 0) (1.06869 0.04611 0) (1.0983 0.0450271 0) (1.11826 0.0437606 0) (1.13102 0.0423796 0) (1.1387 0.0409495 0) (1.14303 0.0394952 0) (1.14525 0.0380262 0) (1.14621 0.0365444 0) (1.14647 0.0350484 0) (1.14634 0.0335362 0) (1.146 0.0320066 0) (1.14555 0.0304594 0) (1.14505 0.0288951 0) (1.14452 0.0273148 0) (1.14397 0.0257197 0) (1.14341 0.0241114 0) (1.14285 0.0224912 0) (1.1423 0.0208606 0) (1.14176 0.0192207 0) (1.14124 0.0175728 0) (1.14075 0.0159179 0) (1.14029 0.014257 0) (1.13987 0.0125909 0) (1.13949 0.0109204 0) (1.13915 0.00924625 0) (1.13887 0.00756905 0) (1.13864 0.00588942 0) (1.13846 0.00420788 0) (1.13835 0.00252496 0) (1.13829 0.000841613 0) (1.0676 0.0450238 0) (1.09693 0.0440089 0) (1.11671 0.0428147 0) (1.12936 0.0415072 0) (1.13699 0.0401473 0) (1.14129 0.0387588 0) (1.14348 0.0373509 0) (1.14443 0.0359255 0) (1.14466 0.0344815 0) (1.1445 0.0330173 0) (1.14414 0.0315321 0) (1.14367 0.0300259 0) (1.14314 0.0284996 0) (1.14259 0.0269545 0) (1.14202 0.0253921 0) (1.14144 0.0238143 0) (1.14087 0.0222225 0) (1.1403 0.0206185 0) (1.13975 0.0190036 0) (1.13922 0.0173792 0) (1.13872 0.0157464 0) (1.13825 0.0141065 0) (1.13782 0.0124604 0) (1.13744 0.0108091 0) (1.1371 0.00915327 0) (1.13681 0.00749385 0) (1.13658 0.00583155 0) (1.1364 0.00416711 0) (1.13628 0.00250124 0) (1.13622 0.000834012 0) (1.06669 0.0440159 0) (1.09579 0.0430601 0) (1.11543 0.0419317 0) (1.12801 0.0406923 0) (1.1356 0.0393982 0) (1.13988 0.0380718 0) (1.14205 0.0367216 0) (1.14298 0.0353497 0) (1.14319 0.0339549 0) (1.14301 0.0325361 0) (1.14263 0.0310926 0) (1.14214 0.0296249 0) (1.14159 0.0281341 0) (1.14102 0.0266219 0) (1.14043 0.02509 0) (1.13984 0.0235405 0) (1.13925 0.0219751 0) (1.13867 0.0203957 0) (1.13811 0.0188038 0) (1.13757 0.0172011 0) (1.13706 0.0155888 0) (1.13659 0.0139683 0) (1.13615 0.0123406 0) (1.13576 0.0107068 0) (1.13542 0.00906788 0) (1.13513 0.00742472 0) (1.13489 0.00577814 0) (1.13471 0.00412887 0) (1.13459 0.0024776 0) (1.13453 0.00082578 0) (1.06571 0.0430679 0) (1.09451 0.0421788 0) (1.11397 0.0411169 0) (1.12644 0.0399429 0) (1.13396 0.0387102 0) (1.13819 0.0374405 0) (1.14033 0.0361427 0) (1.14122 0.0348187 0) (1.1414 0.0334681 0) (1.14118 0.0320899 0) (1.14076 0.0306839 0) (1.14024 0.029251 0) (1.13966 0.0277924 0) (1.13906 0.0263101 0) (1.13844 0.0248061 0) (1.13783 0.0232826 0) (1.13722 0.0217415 0) (1.13662 0.0201849 0) (1.13604 0.0186145 0) (1.13549 0.017032 0) (1.13497 0.0154389 0) (1.13448 0.0138365 0) (1.13404 0.0122262 0) (1.13364 0.0106091 0) (1.13329 0.00898622 0) (1.13299 0.00735864 0) (1.13275 0.0057273 0) (1.13257 0.00409319 0) (1.13245 0.00245728 0) (1.13239 0.000819489 0) (1.06498 0.0422291 0) (1.09359 0.0413928 0) (1.11293 0.0403879 0) (1.12533 0.0392719 0) (1.13281 0.0380946 0) (1.13701 0.0368767 0) (1.13913 0.0356268 0) (1.14 0.034347 0) (1.14015 0.0330368 0) (1.13991 0.0316958 0) (1.13946 0.030324 0) (1.13892 0.0289225 0) (1.13831 0.0274929 0) (1.13769 0.0260374 0) (1.13706 0.0245582 0) (1.13643 0.0230577 0) (1.1358 0.0215382 0) (1.13519 0.0200016 0) (1.1346 0.0184501 0) (1.13404 0.0168853 0) (1.13351 0.015309 0) (1.13301 0.0137225 0) (1.13256 0.0121273 0) (1.13216 0.0105246 0) (1.1318 0.00891568 0) (1.1315 0.0073015 0) (1.13126 0.00568309 0) (1.13107 0.00406133 0) (1.13095 0.00243701 0) (1.13089 0.000812161 0) (1.06407 0.0414606 0) (1.09236 0.0406857 0) (1.11149 0.0397377 0) (1.12376 0.0386756 0) (1.13115 0.0375475 0) (1.13529 0.0363744 0) (1.13736 0.0351651 0) (1.13818 0.0339223 0) (1.13828 0.0326461 0) (1.13799 0.0313364 0) (1.1375 0.0299937 0) (1.13691 0.0286191 0) (1.13627 0.0272147 0) (1.1356 0.0257827 0) (1.13494 0.0243255 0) (1.13428 0.0228456 0) (1.13362 0.0213455 0) (1.13299 0.0198273 0) (1.13238 0.018293 0) (1.1318 0.0167447 0) (1.13125 0.015184 0) (1.13074 0.0136124 0) (1.13027 0.0120316 0) (1.12986 0.0104427 0) (1.1295 0.00884711 0) (1.12919 0.00724594 0) (1.12894 0.00564033 0) (1.12875 0.0040315 0) (1.12862 0.00242064 0) (1.12856 0.000807422 0) (1.06355 0.0408395 0) (1.09168 0.040107 0) (1.11072 0.0392033 0) (1.12293 0.0381854 0) (1.13029 0.0370987 0) (1.1344 0.035964 0) (1.13645 0.0347899 0) (1.13724 0.0335793 0) (1.13732 0.0323325 0) (1.13701 0.0310498 0) (1.13649 0.0297317 0) (1.13588 0.0283798 0) (1.13521 0.0269963 0) (1.13453 0.0255836 0) (1.13385 0.0241443 0) (1.13317 0.0226811 0) (1.1325 0.0211966 0) (1.13186 0.0196929 0) (1.13123 0.0181724 0) (1.13064 0.016637 0) (1.13008 0.0150884 0) (1.12957 0.0135285 0) (1.1291 0.0119587 0) (1.12868 0.0103805 0) (1.12831 0.00879509 0) (1.128 0.00720378 0) (1.12775 0.00560767 0) (1.12756 0.00400769 0) (1.12743 0.00240469 0) (1.12736 0.000801271 0) (1.06264 0.0402846 0) (1.0904 0.0396024 0) (1.10918 0.0387416 0) (1.12123 0.0377624 0) (1.12848 0.0367097 0) (1.13251 0.0356047 0) (1.13448 0.0344572 0) (1.13521 0.0332706 0) (1.13523 0.0320459 0) (1.13486 0.0307837 0) (1.13428 0.0294849 0) (1.13361 0.0281513 0) (1.13289 0.026785 0) (1.13216 0.0253886 0) (1.13144 0.023965 0) (1.13072 0.0225166 0) (1.13002 0.0210461 0) (1.12934 0.019556 0) (1.12869 0.0180484 0) (1.12807 0.0165254 0) (1.1275 0.0149889 0) (1.12696 0.0134405 0) (1.12648 0.0118819 0) (1.12604 0.0103145 0) (1.12566 0.00873973 0) (1.12534 0.00715882 0) (1.12508 0.00557301 0) (1.12489 0.00398365 0) (1.12476 0.00239213 0) (1.12469 0.000798006 0) (1.06237 0.0399361 0) (1.09003 0.0392805 0) (1.10876 0.0384459 0) (1.12078 0.0374921 0) (1.12801 0.0364629 0) (1.13202 0.0353793 0) (1.13398 0.0342512 0) (1.13469 0.0330822 0) (1.13469 0.0318736 0) (1.1343 0.030626 0) (1.13371 0.0293406 0) (1.13302 0.0280192 0) (1.13229 0.0266643 0) (1.13155 0.0252784 0) (1.13081 0.0238645 0) (1.13009 0.0224252 0) (1.12938 0.0209633 0) (1.12869 0.0194812 0) (1.12803 0.0179811 0) (1.12741 0.0164652 0) (1.12683 0.0149354 0) (1.12629 0.0133935 0) (1.1258 0.0118411 0) (1.12536 0.0102796 0) (1.12498 0.00871053 0) (1.12465 0.00713516 0) (1.12439 0.00555468 0) (1.1242 0.00397008 0) (1.12406 0.00238223 0) (1.124 0.000793809 0) (1.06135 0.0396133 0) (1.08852 0.0389885 0) (1.10693 0.0381779 0) (1.11873 0.0372445 0) (1.12581 0.0362313 0) (1.12971 0.0351606 0) (1.13158 0.0340434 0) (1.13221 0.0328843 0) (1.13212 0.0316851 0) (1.13165 0.0304468 0) (1.13098 0.0291707 0) (1.13022 0.0278587 0) (1.12942 0.0265132 0) (1.12862 0.0251368 0) (1.12782 0.0237322 0) (1.12704 0.0223022 0) (1.12629 0.0208495 0) (1.12556 0.0193764 0) (1.12487 0.0178853 0) (1.12421 0.0163782 0) (1.1236 0.0148571 0) (1.12304 0.0133238 0) (1.12253 0.0117798 0) (1.12207 0.0102267 0) (1.12168 0.00866592 0) (1.12134 0.00709878 0) (1.12107 0.00552655 0) (1.12087 0.00395051 0) (1.12073 0.00237195 0) (1.12066 0.000791093 0) (1.25191 -0.102146 -3.85085e-20) (1.2444 -0.0941133 1.17907e-19) (1.23495 -0.0843641 -8.73081e-20) (1.22494 -0.0743915 -4.54919e-20) (1.21506 -0.0649061 6.24213e-20) (1.20534 -0.0559264 -6.76112e-21) (1.19578 -0.0474527 2.83475e-20) (1.1865 -0.0394722 -5.35666e-20) (1.17759 -0.0319557 -5.62084e-20) (1.16914 -0.0248625 5.87641e-20) (1.16118 -0.0181696 -6.01355e-20) (1.15374 -0.0118624 5.84223e-20) (1.14682 -0.0059072 -4.25823e-20) (1.14026 -0.000571337 6.8381e-20) (1.1342 0.00488702 -7.64561e-20) (1.12882 0.0100807 7.42556e-20) (1.12384 0.0150635 6.26411e-21) (1.11923 0.0197783 -4.73091e-20) (1.11497 0.0242107 -1.84242e-20) (1.11105 0.0283788 7.22118e-20) (1.10742 0.0322936 -9.33459e-21) (1.10406 0.0359604 7.28262e-21) (1.10095 0.0393836 -3.66711e-20) (1.09806 0.0425682 -1.66996e-20) (1.09538 0.045519 -1.42181e-20) (1.09287 0.0482414 1.7793e-20) (1.09053 0.0507414 4.37395e-20) (1.08834 0.0530262 -2.09676e-20) (1.08628 0.0551037 7.81e-21) (1.08435 0.0569832 -1.20753e-20) (1.08254 0.0586747 4.17011e-21) (1.08084 0.060189 -1.41744e-20) (1.07923 0.0615375 -3.49039e-20) (1.07772 0.062732 5.67921e-20) (1.07629 0.0637843 1.30745e-20) (1.07494 0.0647057 9.46289e-23) (1.07366 0.0655073 -3.96302e-20) (1.07244 0.0661991 4.21071e-20) (1.07127 0.06679 -6.43261e-20) (1.07015 0.0672879 2.16159e-20) (1.06907 0.0676993 2.40654e-21) (1.06802 0.0680293 1.90505e-21) (1.06698 0.0682817 -2.46597e-21) (1.06597 0.068459 7.0738e-21) (1.06495 0.0685622 -8.68668e-23) (1.06394 0.0685917 -3.70512e-22) (1.06292 0.0685467 5.26082e-21) (1.06189 0.0684257 2.07713e-21) (1.06084 0.0682271 -8.33316e-21) (1.05978 0.0679488 -2.72445e-21) (1.05869 0.067589 3.62652e-21) (1.05758 0.0671458 -2.24275e-22) (1.05644 0.0666184 -3.70932e-21) (1.05529 0.0660061 7.68681e-21) (1.05412 0.0653095 5.7535e-22) (1.05293 0.0645296 2.28756e-22) (1.05173 0.0636693 -2.70112e-21) (1.05053 0.0627315 -4.00424e-21) (1.04932 0.0617215 5.20672e-21) (1.04812 0.060644 -3.86268e-21) (1.04693 0.0595071 -5.19922e-22) (1.04574 0.0583166 4.4097e-22) (1.04459 0.0570836 1.17273e-21) (1.04345 0.0558141 -1.91988e-21) (1.04236 0.0545228 1.412e-21) (1.04129 0.0532141 -3.67487e-22) (1.04028 0.0519074 -2.07917e-23) (1.0393 0.0506031 1.2548e-22) (1.03839 0.0493273 1.7139e-22) (1.0375 0.0480727 -3.17308e-22) (1.03671 0.0468762 2.49836e-22) (1.03593 0.045717 -1.5819e-22) (1.03528 0.044649 1.26684e-22) (1.03461 0.0436296 -9.05925e-23) (1.0341 0.0427399 -1.58203e-22) (1.03353 0.0419026 4.05657e-23) (1.03318 0.0412423 -1.79233e-23) (1.03267 0.0406246 1.97004e-23) (1.0325 0.0402514 -9.77503e-24) (1.03199 0.0398793 1.1491e-24) (1.2136 -0.0949506 -9.33126e-20) (1.20015 -0.0855012 3.56103e-20) (1.18613 -0.075328 -7.95239e-20) (1.17226 -0.0652597 1.29302e-19) (1.15916 -0.0560163 -4.47426e-20) (1.14679 -0.0474855 -2.13485e-20) (1.13509 -0.039543 -5.62248e-20) (1.12412 -0.0321283 4.27962e-20) (1.11394 -0.0251827 2.31115e-20) (1.10458 -0.0186454 -9.08118e-21) (1.09602 -0.0124952 -6.53134e-20) (1.08823 -0.00670618 6.76622e-20) (1.08107 -0.00124504 -2.81913e-20) (1.0747 0.00373587 -1.8416e-20) (1.06912 0.00892613 3.06094e-20) (1.06414 0.0138581 -2.01566e-20) (1.05969 0.0184873 -7.18566e-21) (1.05572 0.0228533 6.89058e-20) (1.0522 0.0269692 -2.80662e-20) (1.04908 0.0308504 -3.39969e-21) (1.04631 0.0345056 1.87016e-20) (1.04386 0.0379368 -5.9435e-21) (1.0417 0.0411459 1.3254e-20) (1.03978 0.0441355 -3.773e-20) (1.03808 0.0469085 -1.29341e-20) (1.03657 0.0494688 -1.9845e-20) (1.03524 0.051821 1.74946e-20) (1.03406 0.0539712 3.70577e-20) (1.03301 0.0559264 -8.76458e-21) (1.03208 0.0576949 -6.68949e-22) (1.03127 0.0592861 -8.44075e-22) (1.03055 0.0607102 5.36744e-21) (1.02992 0.061978 -3.23332e-21) (1.02937 0.0631008 1.20663e-20) (1.02889 0.0640899 1.09181e-20) (1.02847 0.0649563 -1.86336e-20) (1.02811 0.0657107 -2.32738e-20) (1.02779 0.0663626 3.70665e-20) (1.02752 0.0669206 -3.18253e-20) (1.02727 0.0673922 4.00243e-21) (1.02704 0.0677834 2.64374e-21) (1.02683 0.0680989 3.28086e-21) (1.02662 0.068342 -2.69785e-20) (1.0264 0.0685147 1.40979e-20) (1.02617 0.0686176 -8.86136e-21) (1.02593 0.0686505 1.42795e-20) (1.02565 0.0686121 -1.18806e-20) (1.02534 0.0685005 1.22642e-20) (1.025 0.0683134 -8.13695e-21) (1.02461 0.0680483 1.70951e-21) (1.02418 0.0677028 7.50942e-21) (1.02371 0.0672749 -9.70066e-21) (1.02318 0.0667629 8.69149e-21) (1.02262 0.066166 -2.31229e-21) (1.02201 0.0654844 -7.41328e-21) (1.02136 0.0647188 -1.14027e-22) (1.02068 0.0638718 -2.07417e-21) (1.01996 0.062946 6.58692e-21) (1.01922 0.0619465 -7.00173e-21) (1.01846 0.0608779 5.46814e-21) (1.01769 0.0597482 -4.07968e-22) (1.0169 0.0585629 -1.09524e-21) (1.01612 0.0573334 9.71938e-22) (1.01533 0.0560651 1.91744e-22) (1.01457 0.0547735 -1.09754e-21) (1.01381 0.0534618 1.74071e-21) (1.01309 0.052151 -1.34674e-22) (1.01239 0.0508392 -1.0197e-21) (1.01173 0.049556 -7.38595e-22) (1.0111 0.0482893 7.90564e-22) (1.01053 0.0470829 3.91787e-22) (1.00999 0.0459065 -2.49892e-22) (1.00952 0.0448274 -3.4508e-23) (1.00909 0.0437851 -2.08154e-22) (1.00874 0.0428854 2.87915e-22) (1.00841 0.0420194 -1.81602e-22) (1.00818 0.0413528 7.33611e-23) (1.00797 0.0407027 5.33707e-25) (1.00786 0.0403281 -1.0494e-23) (1.00773 0.0399303 -8.30586e-25) (1.15556 -0.0854792 5.74154e-20) (1.13749 -0.0755308 -3.07386e-20) (1.11966 -0.065833 -2.05265e-20) (1.10265 -0.0563981 -4.2712e-20) (1.08704 -0.0477923 1.11407e-19) (1.07273 -0.0399229 -1.21809e-19) (1.05959 -0.0326175 -4.58122e-20) (1.04761 -0.0258045 -4.58985e-20) (1.03679 -0.0194244 1.35056e-20) (1.02707 -0.0134138 -1.94994e-20) (1.0184 -0.00773985 -8.66083e-21) (1.01067 -0.00233035 4.29223e-21) (1.00387 0.00254646 3.02109e-20) (0.998026 0.00754954 3.03409e-20) (0.993035 0.0123057 -4.1604e-20) (0.988723 0.0168239 7.76553e-20) (0.985027 0.0211065 -5.04383e-20) (0.9819 0.0251686 5.90077e-20) (0.979285 0.0290144 -6.27669e-20) (0.977123 0.0326509 3.60068e-20) (0.975362 0.0360826 -8.10564e-20) (0.973954 0.0393098 9.50907e-20) (0.972857 0.0423326 -1.14725e-20) (0.972032 0.0451521 -5.11811e-20) (0.971441 0.0477699 -1.18832e-20) (0.971056 0.0501885 -1.97383e-20) (0.970849 0.0524115 4.42491e-20) (0.970797 0.0544438 -4.56663e-20) (0.970881 0.0562916 7.40468e-20) (0.971082 0.0579625 1.53381e-20) (0.971386 0.0594651 -2.36763e-20) (0.971781 0.0608091 -1.7959e-20) (0.972255 0.062005 -1.48514e-20) (0.972797 0.0630636 3.95064e-20) (0.973398 0.063996 2.63572e-21) (0.974049 0.064813 -1.60051e-20) (0.974741 0.0655248 1.13988e-20) (0.975464 0.0661409 -3.52065e-20) (0.976211 0.0666695 1.70532e-21) (0.97697 0.067118 2.4663e-20) (0.977734 0.0674922 8.00724e-22) (0.978492 0.0677963 -2.35972e-20) (0.979236 0.0680334 9.21216e-21) (0.979957 0.068205 -3.30537e-21) (0.980644 0.0683115 6.64473e-21) (0.981291 0.068352 2.95863e-21) (0.98189 0.0683248 4.61407e-21) (0.982433 0.0682277 -1.61099e-20) (0.982916 0.0680577 3.65916e-21) (0.983334 0.067812 -5.82861e-21) (0.983682 0.0674877 6.90776e-22) (0.983959 0.0670821 4.18877e-21) (0.984165 0.0665933 -4.19464e-21) (0.984299 0.0660199 5.90211e-21) (0.984362 0.0653618 -1.50774e-21) (0.984358 0.0646193 -2.4144e-21) (0.98429 0.0637947 4.26561e-21) (0.984162 0.0628902 -4.876e-22) (0.98398 0.0619108 -1.02676e-21) (0.983749 0.0608607 1.45582e-21) (0.983478 0.0597478 4.6413e-22) (0.983171 0.0585774 1.04867e-21) (0.982837 0.0573608 -1.09167e-21) (0.982482 0.0561032 -3.91431e-22) (0.982116 0.0548201 1.11771e-21) (0.981742 0.0535143 -3.8646e-22) (0.981372 0.0522075 -1.64047e-21) (0.98101 0.0508966 -2.17737e-22) (0.980665 0.0496129 1.23952e-21) (0.980343 0.0483415 1.32471e-22) (0.980047 0.0471307 -3.0245e-22) (0.979795 0.0459432 -3.3933e-23) (0.979566 0.0448571 2.23153e-22) (0.979412 0.0437965 -5.61018e-23) (0.979262 0.0428893 -6.07164e-24) (0.979235 0.0419968 -8.8682e-23) (0.97916 0.0413252 -5.31421e-23) (0.979291 0.0406421 3.1977e-23) (0.979265 0.0402668 -9.0204e-25) (0.979593 0.039839 -1.47016e-25) (1.07259 -0.0740541 3.5161e-20) (1.05166 -0.0641318 7.39976e-20) (1.03168 -0.0551625 -9.9385e-20) (1.0132 -0.0466679 1.16806e-20) (0.996622 -0.0389139 5.7306e-20) (0.981779 -0.031867 5.57138e-20) (0.968454 -0.0253414 1.42858e-20) (0.956578 -0.0192522 7.10601e-20) (0.946078 -0.0135427 -2.34607e-20) (0.936873 -0.00816071 -3.6907e-20) (0.928846 -0.00307222 5.14627e-20) (0.921822 0.00160801 -5.4901e-20) (0.915851 0.00633016 3.63182e-20) (0.911022 0.0108986 -2.9538e-20) (0.906994 0.0152282 6.49822e-21) (0.903665 0.0193445 5.46886e-20) (0.900996 0.0232641 -6.09751e-21) (0.898931 0.0269994 -8.58246e-20) (0.897406 0.0305528 9.80633e-20) (0.896357 0.0339272 -4.15651e-20) (0.895728 0.0371234 -2.66139e-20) (0.895469 0.0401392 4.09306e-20) (0.895534 0.0429724 2.81196e-21) (0.89588 0.0456216 -3.51508e-20) (0.896471 0.0480866 1.72602e-20) (0.897272 0.050368 4.2086e-20) (0.898256 0.0524677 -4.24723e-21) (0.899396 0.0543894 -7.8908e-20) (0.900672 0.056138 4.90251e-20) (0.902064 0.0577201 -3.57973e-20) (0.903555 0.0591435 5.54808e-20) (0.905131 0.060417 1.7597e-20) (0.90678 0.0615508 -6.52074e-20) (0.90849 0.062555 5.67563e-20) (0.910249 0.0634404 -4.93012e-20) (0.912049 0.0642174 1.6622e-20) (0.913878 0.0648959 9.7339e-22) (0.915727 0.0654853 4.4032e-21) (0.917587 0.0659936 7.08845e-21) (0.919446 0.0664279 -1.32331e-20) (0.921295 0.0667937 1.67711e-20) (0.923124 0.0670951 -2.01448e-20) (0.924921 0.0673348 1.32745e-20) (0.926678 0.0675141 -9.05146e-21) (0.928384 0.0676329 1.22337e-20) (0.930029 0.0676899 -8.35744e-21) (0.931606 0.0676832 4.34584e-21) (0.933105 0.0676098 -9.71442e-21) (0.934521 0.0674665 5.47339e-21) (0.935847 0.0672498 3.8336e-21) (0.937078 0.0669564 -5.12611e-22) (0.938211 0.0665831 -8.96028e-21) (0.939245 0.0661276 2.81912e-21) (0.940179 0.0655879 3.72543e-21) (0.941013 0.0649634 -6.99319e-21) (0.941749 0.0642541 9.57961e-21) (0.942391 0.0634618 -7.41374e-21) (0.942942 0.0625884 -2.16881e-21) (0.943409 0.0616387 2.97336e-21) (0.943796 0.0606164 -1.28005e-21) (0.944113 0.0595293 1.15292e-21) (0.944363 0.0583825 -1.4569e-21) (0.944558 0.0571869 2.86999e-21) (0.944703 0.0559478 -2.25588e-21) (0.944809 0.0546803 1.58709e-21) (0.944884 0.0533874 3.35367e-22) (0.944935 0.0520904 -1.56453e-22) (0.944976 0.0507861 -8.66906e-22) (0.945004 0.0495064 -3.229e-22) (0.945049 0.0482348 5.52264e-22) (0.945084 0.0470223 7.0792e-23) (0.945174 0.0458271 -7.06977e-23) (0.945237 0.0447351 3.74329e-23) (0.945416 0.0436579 8.23247e-23) (0.945516 0.0427427 -7.73478e-23) (0.94584 0.0418234 -5.79629e-23) (0.945962 0.0411456 1.78502e-23) (0.946502 0.0404256 1.59767e-23) (0.946587 0.0400483 -3.52203e-24) (0.947458 0.0395824 1.86517e-24) (0.965112 -0.0617662 1.09649e-20) (0.943614 -0.0524029 9.04634e-20) (0.923421 -0.0443856 -7.99823e-20) (0.905394 -0.0370935 -6.21557e-20) (0.889604 -0.0303882 1.20708e-19) (0.875754 -0.0242893 -1.20162e-19) (0.863582 -0.0186435 -1.23174e-19) (0.852966 -0.0133567 4.31616e-20) (0.843785 -0.00837999 -5.23136e-20) (0.835922 -0.0036587 8.62642e-20) (0.829136 0.000805426 5.66492e-21) (0.823568 0.00497617 -6.74043e-20) (0.819139 0.00933771 8.24318e-20) (0.815592 0.0134733 -3.59772e-20) (0.812826 0.0173622 -3.53502e-20) (0.810765 0.0210812 2.74579e-20) (0.809355 0.0246505 3.15073e-20) (0.808536 0.0280717 -5.13607e-20) (0.808243 0.0313428 4.29137e-20) (0.808416 0.0344628 -8.49485e-20) (0.809 0.0374296 -3.67169e-21) (0.809948 0.0402389 5.90276e-20) (0.811215 0.0428864 -2.95419e-21) (0.812761 0.0453688 -4.9038e-20) (0.81455 0.0476842 4.98234e-20) (0.816548 0.0498317 1.33581e-20) (0.818728 0.0518119 -5.66954e-20) (0.821064 0.0536269 6.17214e-20) (0.823534 0.0552808 1.69142e-21) (0.826119 0.056779 -4.75472e-20) (0.828803 0.0581286 2.53306e-20) (0.831569 0.0593377 -2.71675e-20) (0.834405 0.0604157 3.23685e-21) (0.837298 0.0613725 1.00973e-20) (0.840237 0.0622182 6.55421e-21) (0.84321 0.0629629 8.36268e-21) (0.846207 0.0636164 -2.31429e-20) (0.849216 0.0641876 1.56385e-20) (0.852228 0.0646845 4.09729e-21) (0.855232 0.0651139 -1.83056e-20) (0.858215 0.0654812 2.18412e-20) (0.861166 0.0657902 -1.69546e-20) (0.864075 0.0660432 6.59837e-21) (0.866929 0.0662413 1.16927e-20) (0.869717 0.0663841 -1.22519e-20) (0.872429 0.0664699 3.19563e-21) (0.875054 0.0664964 -1.21113e-20) (0.877583 0.0664601 1.09121e-20) (0.880006 0.0663574 -9.35883e-22) (0.882318 0.0661841 -4.86022e-21) (0.884511 0.0659366 -4.02683e-22) (0.88658 0.0656109 -1.55256e-21) (0.888523 0.0652043 3.92143e-21) (0.890337 0.0647143 2.90879e-21) (0.892023 0.0641397 7.87176e-23) (0.89358 0.06348 6.20254e-21) (0.895012 0.0627365 -6.33643e-21) (0.896322 0.0619107 -1.92054e-22) (0.897516 0.0610069 1.96286e-21) (0.898598 0.0600285 1.32568e-21) (0.899577 0.0589828 -1.60948e-21) (0.900459 0.0578747 -1.71864e-22) (0.901253 0.0567148 -8.3054e-22) (0.90197 0.0555083 1.52215e-21) (0.902616 0.0542698 -1.38245e-21) (0.903206 0.0530024 1.63276e-21) (0.903742 0.0517268 -7.58676e-22) (0.904248 0.0504402 2.46625e-22) (0.904712 0.0491738 -5.80606e-22) (0.905182 0.0479115 -5.99662e-22) (0.905607 0.0467045 1.85531e-22) (0.906094 0.0455091 -4.59627e-23) (0.906505 0.0444156 -3.56815e-23) (0.907072 0.0433273 2.08226e-22) (0.907476 0.0424064 2.20563e-24) (0.908206 0.0414626 1.49118e-23) (0.90857 0.0407793 1.19532e-23) (0.909585 0.0400205 -1.78254e-23) (0.909811 0.0396418 -5.24402e-24) (0.911317 0.0391307 -2.54881e-24) (0.838223 -0.0496782 7.40596e-20) (0.818563 -0.0414387 -4.42337e-20) (0.800041 -0.0345645 2.42861e-20) (0.784244 -0.0285622 2.48422e-20) (0.770768 -0.0229729 2.07894e-20) (0.759176 -0.017836 5.00136e-20) (0.749217 -0.0130562 -1.52841e-20) (0.740741 -0.00854538 4.11357e-20) (0.733605 -0.00424661 -2.68215e-20) (0.727662 -9.89557e-05 4.10693e-20) (0.722803 0.00375104 -6.30161e-20) (0.719051 0.00775633 5.24712e-20) (0.716268 0.0115439 -1.08164e-20) (0.71429 0.0151619 2.94204e-20) (0.713024 0.0186334 -8.60411e-20) (0.712401 0.0219892 8.93234e-21) (0.712371 0.0252344 6.03011e-20) (0.712879 0.0283633 -2.0639e-20) (0.71387 0.0313703 -6.45293e-21) (0.715291 0.0342515 1.54883e-20) (0.717094 0.0370023 3.36954e-20) (0.719238 0.0396165 -1.08819e-21) (0.721683 0.042088 -8.07685e-20) (0.724393 0.0444119 4.49097e-20) (0.727336 0.0465848 -4.62801e-20) (0.730482 0.0486043 9.69491e-20) (0.733805 0.05047 -7.67224e-20) (0.737282 0.052183 5.79917e-20) (0.740892 0.0537463 -4.18869e-20) (0.744618 0.0551645 2.79508e-20) (0.748442 0.0564439 5.63507e-21) (0.752351 0.0575921 -2.05799e-20) (0.75633 0.0586179 -4.75532e-21) (0.760367 0.0595307 2.50726e-20) (0.76445 0.0603404 4.93772e-23) (0.768568 0.0610568 1.35527e-21) (0.77271 0.0616895 -7.5343e-21) (0.776863 0.0622472 7.28906e-21) (0.781016 0.0627376 1.92681e-21) (0.785158 0.0631676 -2.36622e-21) (0.789276 0.0635421 1.23381e-20) (0.793357 0.063865 -1.22938e-21) (0.797388 0.0641384 9.85071e-22) (0.801357 0.0643631 -8.46385e-21) (0.80525 0.0645383 -7.53183e-21) (0.809056 0.0646621 1.77029e-20) (0.812761 0.0647317 -4.71705e-21) (0.816355 0.0647433 -7.93234e-21) (0.819828 0.0646928 1.0397e-21) (0.823169 0.0645754 -5.53188e-22) (0.826371 0.0643868 7.94258e-21) (0.829427 0.0641228 7.78473e-22) (0.832332 0.0637797 -4.23937e-21) (0.835083 0.0633545 7.19619e-21) (0.837678 0.0628454 -6.67097e-21) (0.840115 0.0622513 5.84255e-21) (0.842398 0.0615729 -1.79265e-21) (0.844527 0.0608112 -9.94942e-22) (0.846509 0.0599698 1.05602e-21) (0.848348 0.0590518 -6.45353e-22) (0.850051 0.0580638 -4.05169e-22) (0.851627 0.0570106 -1.84352e-22) (0.853083 0.055902 1.35448e-21) (0.854432 0.0547432 1.03988e-22) (0.85568 0.0535479 -1.70219e-22) (0.856844 0.0523199 -5.5131e-23) (0.857925 0.0510784 5.17398e-22) (0.858955 0.0498218 -3.3993e-23) (0.859913 0.0485795 5.02633e-22) (0.860864 0.0473369 1.57981e-23) (0.861739 0.0461434 1.30669e-22) (0.862676 0.0449566 1.25403e-22) (0.863495 0.0438668 3.13357e-22) (0.864501 0.0427741 -2.96412e-22) (0.865266 0.04185 1.33081e-22) (0.866456 0.0408856 1.48985e-23) (0.867116 0.0401979 5.40195e-23) (0.868669 0.0393989 -3.49593e-23) (0.869068 0.0390203 1.06784e-23) (0.871307 0.0384568 1.34576e-24) (0.700661 -0.0387852 -5.17105e-20) (0.684436 -0.0321455 -4.1185e-20) (0.669012 -0.02653 2.40611e-20) (0.656716 -0.0217111 3.86712e-20) (0.646528 -0.0171549 -2.20224e-20) (0.637928 -0.012892 1.79321e-20) (0.63074 -0.00888147 2.23012e-20) (0.624835 -0.00506198 -6.17161e-20) (0.620074 -0.00137736 -4.26759e-20) (0.616305 0.00214131 9.23448e-20) (0.613475 0.00572577 -5.88211e-20) (0.611659 0.00923797 -8.68918e-21) (0.610613 0.0126058 3.74526e-20) (0.610235 0.015852 6.82617e-21) (0.610471 0.0189901 -1.20206e-20) (0.611267 0.0220389 -4.71805e-20) (0.61258 0.0250021 8.68029e-20) (0.614364 0.0278726 -3.16412e-20) (0.616573 0.030644 -9.70314e-21) (0.619166 0.0333103 4.30991e-20) (0.622104 0.0358652 -2.0199e-20) (0.625351 0.0383008 -2.78217e-20) (0.628875 0.04061 -3.15056e-20) (0.632647 0.0427867 5.45007e-20) (0.636638 0.0448261 -4.98308e-20) (0.640823 0.0467252 5.6288e-20) (0.645181 0.0484823 -2.12362e-20) (0.649691 0.050098 -5.57182e-20) (0.654335 0.0515745 2.29876e-20) (0.659097 0.0529156 2.24101e-20) (0.663961 0.0541272 4.05977e-21) (0.668914 0.0552165 -2.99903e-20) (0.673944 0.0561917 2.13169e-20) (0.679038 0.0570621 -5.96515e-21) (0.684184 0.0578373 4.76626e-21) (0.68937 0.058527 3.08005e-21) (0.694586 0.0591405 -9.66709e-21) (0.699819 0.0596864 -5.31674e-21) (0.705057 0.0601727 -2.41134e-21) (0.710286 0.0606057 6.52751e-21) (0.715494 0.0609906 -2.30237e-21) (0.720666 0.061331 -3.2491e-21) (0.725789 0.061629 -1.0311e-20) (0.730847 0.0618852 5.57193e-21) (0.735827 0.0620986 7.10407e-21) (0.740713 0.062267 2.1234e-21) (0.745492 0.0623873 1.20772e-21) (0.750151 0.0624553 -9.00042e-21) (0.754676 0.0624663 3.09743e-21) (0.759056 0.0624151 -1.91181e-21) (0.763282 0.0622968 -4.36279e-22) (0.767343 0.0621064 7.12867e-21) (0.771234 0.0618397 -8.5387e-21) (0.774948 0.0614931 -1.8207e-21) (0.778482 0.0610638 2.35473e-22) (0.781834 0.0605503 1.48783e-21) (0.785003 0.0599523 2.69253e-21) (0.787992 0.0592703 -3.45357e-21) (0.790804 0.0585071 9.65183e-22) (0.793443 0.0576654 -3.82057e-23) (0.795917 0.0567509 -5.3916e-22) (0.798233 0.0557682 8.32313e-22) (0.8004 0.054726 -9.89472e-22) (0.80243 0.0536298 5.94021e-22) (0.804329 0.0524919 -8.45339e-22) (0.806119 0.0513169 3.39334e-22) (0.807798 0.050122 1.54726e-22) (0.809403 0.0489076 3.5821e-22) (0.81091 0.0476997 -1.49805e-22) (0.812393 0.0464873 -4.91635e-23) (0.813773 0.0453154 1.4848e-22) (0.815213 0.0441459 -4.16347e-23) (0.816497 0.0430649 6.24834e-23) (0.817993 0.0419747 -1.61432e-22) (0.819179 0.0410494 -4.78622e-23) (0.820879 0.0400688 4.64114e-23) (0.821889 0.0393767 -2.52891e-24) (0.82404 0.0385369 -3.96451e-24) (0.824651 0.0381595 5.61638e-24) (0.827718 0.0375353 5.2593e-25) (0.562323 -0.0299886 7.91512e-20) (0.549824 -0.0252405 -1.97356e-20) (0.538258 -0.0207533 -3.88234e-20) (0.529989 -0.0168507 -1.51576e-21) (0.523331 -0.0131334 2.85881e-20) (0.517822 -0.00958357 4.76663e-20) (0.513416 -0.00619234 -4.05988e-20) (0.510016 -0.0029165 2.93887e-20) (0.507475 0.000294182 6.39779e-21) (0.505836 0.00338542 -3.29834e-20) (0.504978 0.00663161 1.84862e-20) (0.504836 0.00976383 -1.2727e-21) (0.505324 0.0127635 -3.98057e-21) (0.506376 0.0156792 -4.15637e-20) (0.507943 0.0185246 7.5845e-20) (0.509985 0.0213069 7.25118e-21) (0.512467 0.0240256 -2.28394e-20) (0.515354 0.0266707 -1.53258e-20) (0.518611 0.0292347 7.79098e-21) (0.522207 0.0317101 3.81324e-20) (0.52611 0.034089 7.50193e-21) (0.530294 0.0363626 -6.02461e-20) (0.534733 0.0385228 1.79759e-20) (0.539403 0.0405628 4.37409e-20) (0.544281 0.042477 -4.74647e-20) (0.549348 0.0442618 -7.42985e-22) (0.554585 0.0459149 6.68302e-21) (0.559976 0.0474363 2.44625e-21) (0.565505 0.0488277 -9.05254e-21) (0.571157 0.0500925 3.25002e-21) (0.576921 0.0512363 8.95585e-21) (0.582783 0.0522659 -1.46861e-20) (0.588732 0.0531895 -7.19466e-21) (0.594756 0.0540161 9.19868e-21) (0.600845 0.0547552 9.14523e-21) (0.606986 0.0554166 4.12375e-21) (0.613169 0.0560093 -1.3973e-20) (0.619379 0.0565422 5.29557e-21) (0.625606 0.057023 7.93422e-21) (0.631834 0.0574584 4.80162e-21) (0.638049 0.0578535 -1.9212e-20) (0.644238 0.0582118 3.68525e-21) (0.650382 0.0585356 1.26308e-20) (0.656468 0.0588252 -2.84019e-21) (0.662478 0.0590796 3.35169e-21) (0.668396 0.0592965 -9.2778e-21) (0.674207 0.0594723 1.40813e-21) (0.679893 0.0596024 -4.83141e-21) (0.685441 0.0596817 1.2519e-20) (0.690837 0.0597047 -4.32627e-21) (0.696068 0.0596656 -3.96003e-22) (0.701123 0.0595589 -6.85578e-21) (0.705992 0.0593796 7.83297e-21) (0.710668 0.0591233 -3.94839e-21) (0.715145 0.0587866 2.23638e-21) (0.719418 0.0583669 -2.23485e-21) (0.723488 0.0578632 -9.46923e-22) (0.727352 0.0572754 1.60889e-21) (0.731014 0.0566051 -6.40322e-22) (0.734478 0.0558545 -5.57264e-22) (0.73775 0.0550284 2.57846e-22) (0.740837 0.0541309 -8.67038e-24) (0.743747 0.0531696 -1.38027e-21) (0.746494 0.0521502 7.97574e-22) (0.749084 0.0510832 -3.46892e-22) (0.75154 0.0499743 6.6716e-22) (0.75386 0.0488381 -3.38103e-22) (0.756084 0.0476774 -2.69047e-22) (0.758187 0.0465143 -3.17065e-22) (0.760249 0.045342 -2.00467e-25) (0.762187 0.0441995 2.34745e-22) (0.764175 0.0430556 -2.64582e-22) (0.76598 0.0419882 8.17977e-24) (0.768012 0.0409076 1.29599e-23) (0.769677 0.0399824 6.02877e-23) (0.771934 0.0389909 -7.16939e-23) (0.773354 0.0382934 2.08799e-23) (0.776154 0.0374133 -6.74453e-24) (0.77702 0.0370373 1.52509e-24) (0.781005 0.0363433 -3.50369e-25) (0.431592 -0.0238602 7.73588e-20) (0.422051 -0.0209273 -5.45736e-20) (0.414472 -0.0172018 -2.52199e-20) (0.409943 -0.0138971 5.29928e-20) (0.406366 -0.010784 5.34236e-21) (0.403513 -0.00775756 -3.95728e-20) (0.401458 -0.00482371 7.40472e-20) (0.400143 -0.00195507 2.02824e-20) (0.399498 0.000881662 -8.63443e-20) (0.399524 0.00379163 7.06361e-20) (0.400156 0.00663072 4.0415e-20) (0.401361 0.00940281 -8.94545e-21) (0.403072 0.012107 -3.38832e-20) (0.405244 0.0147596 -2.21483e-20) (0.407845 0.0173646 -4.67599e-20) (0.410848 0.019923 1.13597e-19) (0.414228 0.0224326 -7.99251e-20) (0.41796 0.0248813 3.90072e-20) (0.422019 0.0272622 -2.48252e-21) (0.42638 0.0295667 -1.60449e-20) (0.431022 0.0317858 1.47131e-20) (0.435924 0.0339105 -1.76908e-20) (0.441066 0.0359319 -1.31459e-20) (0.446429 0.0378427 2.1879e-20) (0.451996 0.0396371 4.50228e-21) (0.457751 0.0413109 -2.59463e-20) (0.46368 0.0428617 2.87572e-21) (0.469769 0.0442889 3.21427e-20) (0.476005 0.0455942 -1.49733e-20) (0.482376 0.0467806 -2.62078e-22) (0.488871 0.0478535 1.74445e-21) (0.49548 0.0488198 5.99806e-22) (0.502191 0.0496875 4.1507e-21) (0.508995 0.0504657 1.84873e-21) (0.51588 0.051164 -1.84822e-20) (0.522836 0.051792 1.43548e-20) (0.52985 0.052359 1.68126e-20) (0.53691 0.052874 -8.83313e-21) (0.544002 0.0533449 -5.24488e-21) (0.551112 0.0537785 1.53206e-20) (0.558226 0.0541801 -1.97903e-20) (0.565326 0.0545534 3.88369e-21) (0.572395 0.0549006 2.98579e-21) (0.579417 0.0552222 -6.94296e-23) (0.586373 0.0555171 -1.02023e-21) (0.593244 0.0557827 -6.29861e-21) (0.600014 0.0560154 5.7129e-21) (0.606663 0.0562103 3.73565e-22) (0.613176 0.0563618 -3.89158e-21) (0.619534 0.0564638 9.96293e-21) (0.625725 0.05651 -1.11934e-20) (0.631733 0.0564942 9.38488e-21) (0.637547 0.0564106 -1.3017e-21) (0.643157 0.0562539 -4.15998e-21) (0.648555 0.0560198 2.52901e-21) (0.653735 0.055705 1.08569e-21) (0.658693 0.0553074 -1.22703e-21) (0.663428 0.0548259 5.38388e-22) (0.667941 0.0542613 5.91049e-22) (0.672234 0.0536149 1.80597e-21) (0.676313 0.0528903 -3.41681e-21) (0.680185 0.0520912 1.97301e-21) (0.683858 0.0512239 -3.98824e-22) (0.687344 0.0502939 8.78465e-23) (0.690652 0.0493103 -2.65182e-22) (0.693803 0.0482792 7.76033e-23) (0.696798 0.047213 9.43583e-24) (0.699675 0.0461164 -2.62128e-22) (0.702415 0.0450076 -7.5068e-23) (0.705096 0.0438844 -2.28754e-22) (0.707636 0.0427786 -1.32491e-23) (0.710215 0.0416679 1.30881e-22) (0.712593 0.0406188 -4.70718e-23) (0.715201 0.0395543 1.94052e-24) (0.717405 0.0386302 -8.18447e-24) (0.720255 0.0376335 2.34271e-23) (0.722146 0.0369283 -7.48414e-24) (0.725638 0.0360099 -3.69691e-24) (0.726804 0.0356347 -1.52892e-24) (0.731787 0.0348616 1.24307e-24) (0.313815 -0.0205038 -5.00528e-20) (0.306067 -0.0187678 -2.16442e-21) (0.302043 -0.0154047 5.69787e-20) (0.30032 -0.0124646 -3.2783e-20) (0.298946 -0.00974487 -2.67163e-20) (0.297999 -0.00706932 1.46657e-20) (0.297612 -0.00445348 -5.30506e-20) (0.297752 -0.00188279 2.10534e-21) (0.298416 0.0006655 6.86098e-20) (0.299598 0.00328911 4.95711e-20) (0.30124 0.0058703 -3.71533e-20) (0.303339 0.00839554 5.49095e-21) (0.305856 0.0108682 -3.1179e-20) (0.308763 0.0133019 1.76534e-21) (0.312041 0.0157009 3.70618e-20) (0.315671 0.0180643 -1.87168e-21) (0.319635 0.0203894 -1.09401e-20) (0.323915 0.0226613 -2.63282e-20) (0.328495 0.0248755 1.95573e-20) (0.333358 0.0270222 7.65953e-21) (0.338485 0.029092 7.6673e-21) (0.343863 0.0310752 -3.69541e-20) (0.349475 0.032963 7.02029e-22) (0.355307 0.0347479 7.68417e-21) (0.361348 0.0364237 1.5187e-20) (0.367583 0.0379861 -2.20758e-20) (0.374001 0.0394325 3.2753e-20) (0.380591 0.0407625 -2.76497e-20) (0.387344 0.0419773 2.26839e-20) (0.394249 0.0430799 -2.1042e-20) (0.401296 0.0440759 1.61617e-20) (0.408477 0.0449721 -2.27498e-20) (0.415782 0.0457766 2.39801e-20) (0.423201 0.0464987 -1.35767e-20) (0.430723 0.0471482 1.66428e-20) (0.438339 0.0477347 -2.47716e-20) (0.446036 0.0482679 1.79925e-20) (0.453801 0.048757 -8.86664e-21) (0.461621 0.0492102 -4.81097e-21) (0.46948 0.0496347 -3.68077e-21) (0.477363 0.050036 -8.05233e-22) (0.485252 0.0504179 1.08931e-20) (0.49313 0.050783 -1.47983e-20) (0.500977 0.0511318 1.68432e-20) (0.508773 0.0514632 -8.62802e-21) (0.5165 0.0517749 9.61977e-21) (0.524135 0.0520627 -1.24902e-20) (0.531661 0.0523217 1.35963e-20) (0.539056 0.0525458 -6.81515e-21) (0.546303 0.0527286 -5.09394e-21) (0.553385 0.0528629 1.95691e-21) (0.560284 0.052942 -3.59528e-21) (0.566988 0.0529592 2.56123e-21) (0.573483 0.0529084 1.50414e-21) (0.57976 0.0527843 1.48778e-21) (0.58581 0.0525825 -3.00027e-21) (0.591627 0.0522999 1.40215e-21) (0.597209 0.0519344 7.97075e-22) (0.602555 0.0514855 -1.2246e-21) (0.607666 0.0509538 6.30828e-22) (0.612547 0.0503415 -2.96107e-21) (0.617204 0.0496516 1.84484e-21) (0.621644 0.0488892 7.92337e-22) (0.62588 0.0480592 -1.74608e-21) (0.62992 0.0471694 2.63145e-22) (0.633785 0.046226 1.97768e-22) (0.637478 0.0452394 -3.98341e-22) (0.641037 0.0442157 7.47873e-23) (0.644445 0.0431695 3.2525e-22) (0.647777 0.0421029 -1.4293e-22) (0.650959 0.0410405 -1.28705e-22) (0.654164 0.0399694 1.8528e-22) (0.657162 0.0389426 -3.70184e-24) (0.660382 0.0379002 -8.65472e-23) (0.663177 0.0369777 -1.15527e-23) (0.666652 0.0359821 2.67241e-23) (0.669074 0.0352657 -2.15931e-23) (0.673285 0.0343131 1.132e-23) (0.674801 0.0339359 3.21563e-24) (0.680847 0.0330754 3.65264e-25) (0.211229 -0.0194044 -4.29219e-21) (0.204211 -0.0179761 2.867e-20) (0.202882 -0.0147234 -2.0182e-20) (0.202732 -0.0120278 5.48684e-22) (0.202582 -0.00954717 4.62406e-22) (0.202719 -0.00710111 8.19602e-20) (0.203265 -0.00471218 -6.70018e-20) (0.204207 -0.00236476 -3.60731e-20) (0.205584 -2.60062e-05 4.12071e-20) (0.207377 0.0023646 1.51551e-20) (0.209532 0.00471109 4.01853e-20) (0.212081 0.00701136 -9.06327e-20) (0.214998 0.0092774 1.9787e-20) (0.218264 0.0115165 2.26423e-20) (0.221867 0.0137302 -8.33894e-21) (0.225794 0.0159157 -1.99665e-21) (0.230033 0.0180709 8.12261e-21) (0.234569 0.0201764 -1.65094e-20) (0.239397 0.0222321 -2.04531e-21) (0.244498 0.024227 1.13236e-20) (0.249862 0.026151 -2.45446e-20) (0.255477 0.0279946 1.86719e-20) (0.261331 0.0297489 1.66672e-20) (0.267414 0.0314061 -3.35193e-20) (0.273715 0.0329603 9.91032e-21) (0.280225 0.0344069 -1.92235e-20) (0.286934 0.0357435 3.48649e-20) (0.293834 0.0369696 -1.95746e-20) (0.300916 0.0380863 -7.2913e-21) (0.308172 0.0390967 1.71065e-20) (0.315594 0.0400066 -5.81107e-21) (0.323175 0.0408229 5.67539e-21) (0.330904 0.0415541 1.99451e-20) (0.338774 0.0422095 4.11481e-22) (0.346774 0.0427994 -1.377e-20) (0.354894 0.0433337 6.11602e-21) (0.363122 0.0438222 7.43624e-23) (0.371445 0.0442746 6.63309e-21) (0.379848 0.0446996 -2.42464e-20) (0.388318 0.0451048 1.38412e-20) (0.396836 0.0454959 9.30896e-22) (0.405384 0.0458774 -1.03532e-20) (0.413944 0.0462519 6.55355e-21) (0.422495 0.0466202 -6.61794e-21) (0.431016 0.0469814 1.17895e-20) (0.439485 0.0473332 -4.41441e-21) (0.447881 0.0476713 6.50638e-21) (0.456182 0.0479907 4.44549e-22) (0.464365 0.0482849 -5.70676e-21) (0.472412 0.0485469 8.54139e-23) (0.480301 0.0487691 5.43714e-21) (0.488015 0.048944 -1.37829e-22) (0.495537 0.049064 -2.52077e-21) (0.502853 0.049122 2.40489e-21) (0.50995 0.0491119 -1.97279e-21) (0.516818 0.049028 2.14002e-21) (0.52345 0.0488661 -1.60607e-21) (0.52984 0.048623 1.81621e-21) (0.535987 0.0482969 6.14395e-22) (0.541891 0.0478873 -6.96982e-22) (0.547554 0.0473951 -1.71166e-21) (0.552983 0.0468225 1.79334e-23) (0.558184 0.0461731 1.91493e-21) (0.563168 0.0454513 -6.02418e-22) (0.567946 0.0446632 -1.62418e-23) (0.572535 0.0438152 1.51772e-22) (0.576942 0.0429156 2.87016e-22) (0.581201 0.0419717 -5.93801e-22) (0.585301 0.0409948 6.81395e-23) (0.58931 0.0399907 3.91749e-22) (0.593166 0.0389773 -3.68394e-22) (0.597026 0.0379508 1.2813e-22) (0.600682 0.0369502 1.23288e-22) (0.604541 0.0359348 -1.04837e-23) (0.607976 0.0350146 -1.41333e-24) (0.612095 0.0340261 -3.25557e-23) (0.615105 0.0332943 1.03571e-23) (0.620048 0.0323141 -4.2771e-24) (0.621965 0.0319299 -1.97215e-24) (0.629115 0.0309758 -4.06905e-24) (0.123734 -0.0196269 2.17551e-20) (0.116686 -0.0177471 -1.52331e-20) (0.116999 -0.0145614 1.85272e-21) (0.117253 -0.0120601 5.05038e-20) (0.117484 -0.0097336 2.43935e-20) (0.11798 -0.00745887 8.15253e-20) (0.118815 -0.00525463 -5.34925e-20) (0.119991 -0.00309756 1.10249e-20) (0.121557 -0.000956346 -3.44305e-20) (0.123494 0.00116956 2.81314e-20) (0.125742 0.00335048 6.50093e-22) (0.128361 0.00546142 -1.94048e-20) (0.131326 0.00754008 7.04643e-21) (0.134623 0.00959797 -4.99946e-21) (0.138244 0.0116359 3.80574e-21) (0.142181 0.0136506 3.04748e-22) (0.146422 0.0156416 1.15887e-20) (0.150959 0.0175821 -1.43411e-22) (0.155791 0.0194812 -4.34516e-21) (0.160901 0.0213236 -8.00728e-21) (0.16628 0.0231 2.65873e-20) (0.17192 0.0248007 1.70071e-23) (0.177811 0.0264167 -3.17536e-20) (0.183947 0.0279405 2.2757e-20) (0.190319 0.029366 -1.83353e-20) (0.196918 0.0306889 2.54727e-20) (0.203739 0.0319068 -4.62388e-22) (0.210773 0.0330194 -3.21458e-20) (0.218014 0.0340276 1.81623e-20) (0.225455 0.0349345 5.03305e-21) (0.233089 0.0357465 -4.97482e-21) (0.24091 0.0364708 -1.14438e-20) (0.248908 0.037116 2.73931e-20) (0.257076 0.037692 -1.1329e-21) (0.265404 0.0382094 5.49995e-22) (0.27388 0.0386782 -1.62902e-20) (0.282495 0.0391088 -1.21497e-20) (0.291234 0.0395116 5.30309e-21) (0.300084 0.0398956 -6.0424e-21) (0.309028 0.0402692 1.67755e-20) (0.318048 0.0406383 -5.98445e-21) (0.327126 0.0410079 1.05483e-20) (0.336242 0.041381 -6.04676e-21) (0.345374 0.0417589 3.48019e-22) (0.3545 0.0421406 3.99579e-22) (0.363597 0.042524 -9.24741e-22) (0.372641 0.0429051 7.95732e-22) (0.38161 0.0432784 -4.26303e-21) (0.390479 0.0436372 -2.53164e-21) (0.399227 0.0439741 8.17643e-21) (0.407832 0.0442809 -5.73798e-21) (0.416273 0.0445493 3.52235e-22) (0.424532 0.0447708 4.28851e-21) (0.432594 0.0449376 -1.48147e-21) (0.440442 0.0450421 4.22823e-22) (0.448066 0.0450777 -9.892e-22) (0.455457 0.0450389 -1.67083e-21) (0.462607 0.0449213 1.19763e-21) (0.469512 0.0447217 -6.90931e-22) (0.476173 0.0444384 -1.95752e-22) (0.48259 0.044071 2.23001e-21) (0.488768 0.0436205 -1.49722e-21) (0.494714 0.0430893 -4.82788e-23) (0.500437 0.0424808 7.44791e-22) (0.505947 0.0417999 -4.77603e-23) (0.511261 0.0410523 -1.54309e-22) (0.516388 0.040245 1.54619e-22) (0.521357 0.0393856 4.73692e-22) (0.526164 0.038483 -2.46654e-22) (0.530867 0.0375455 8.59114e-23) (0.535418 0.0365855 2.73105e-24) (0.539956 0.0356072 2.56434e-22) (0.544297 0.0346365 3.5435e-23) (0.548816 0.0336517 -6.96721e-23) (0.552926 0.0327352 3.57637e-23) (0.557702 0.0317594 4.22065e-23) (0.561346 0.0310083 -1.6211e-23) (0.567018 0.0300091 1.33351e-23) (0.569383 0.0296105 2.38482e-24) (0.577656 0.0285609 -1.04625e-25) (0.0498548 -0.0203501 -1.06406e-20) (0.0424512 -0.0173803 4.28267e-20) (0.043372 -0.0144599 -3.87112e-20) (0.0431575 -0.0121358 9.08613e-21) (0.0431743 -0.00993899 -3.67746e-20) (0.0434839 -0.00782876 3.97369e-20) (0.0441232 -0.00580228 -3.13422e-20) (0.0450983 -0.0038266 4.10257e-20) (0.0464378 -0.00186946 -1.92871e-20) (0.0481881 3.68796e-05 -2.99789e-20) (0.050244 0.00201462 4.7811e-20) (0.0526184 0.00393969 -5.21898e-20) (0.0553565 0.00583451 4.30047e-20) (0.0584296 0.0077127 1.78306e-20) (0.0618299 0.00957547 -9.67424e-21) (0.0655514 0.0114194 -3.28595e-20) (0.069579 0.0132464 3.83365e-20) (0.0739144 0.0150091 -3.61375e-20) (0.0785599 0.0167489 4.14819e-22) (0.0834906 0.0184349 -2.19284e-21) (0.0887057 0.0200579 1.2399e-20) (0.0941979 0.0216086 -7.72654e-21) (0.0999606 0.0230783 -1.36341e-21) (0.105987 0.0244596 8.33742e-21) (0.112272 0.0257467 -1.74286e-20) (0.118808 0.0269353 1.83424e-20) (0.125591 0.0280232 -2.1638e-20) (0.132612 0.0290104 -2.3434e-22) (0.139868 0.0298974 1.67921e-20) (0.147353 0.0306874 9.1397e-21) (0.155061 0.031388 -1.18939e-20) (0.162985 0.0320063 1.10212e-20) (0.171117 0.0325513 1.13381e-20) (0.17945 0.0330333 -2.8555e-20) (0.187973 0.0334636 1.37998e-20) (0.196677 0.0338524 7.01861e-21) (0.205549 0.0342105 6.88374e-21) (0.214578 0.0345491 -9.37483e-21) (0.223747 0.034878 -3.36825e-21) (0.23304 0.0352062 2.77931e-21) (0.24244 0.0355398 -6.35944e-21) (0.251926 0.0358845 -5.10975e-21) (0.261478 0.0362438 6.24661e-21) (0.271073 0.0366195 -3.82631e-21) (0.280687 0.0370105 5.65597e-21) (0.290299 0.0374154 -9.01407e-21) (0.299881 0.0378299 3.92416e-21) (0.30941 0.0382484 6.10158e-23) (0.318861 0.0386641 -3.64935e-21) (0.32821 0.039069 5.24682e-21) (0.337434 0.0394544 -4.59842e-21) (0.346512 0.0398112 4.95016e-21) (0.355422 0.0401302 -1.97517e-21) (0.364148 0.0404023 -1.26323e-21) (0.372673 0.0406189 1.37464e-21) (0.380984 0.0407724 1.38079e-22) (0.38907 0.0408558 -1.22806e-21) (0.396922 0.0408634 5.20802e-22) (0.404537 0.0407907 -7.36245e-22) (0.41191 0.0406345 -1.39365e-21) (0.419044 0.0403933 6.35632e-22) (0.42594 0.0400666 -3.64984e-22) (0.432605 0.0396556 -7.13367e-23) (0.439048 0.0391627 1.7479e-22) (0.445277 0.0385914 -9.43901e-22) (0.451309 0.0379469 2.6163e-22) (0.457152 0.0372347 4.80822e-22) (0.462832 0.0364626 -3.6691e-22) (0.46835 0.0356373 -1.16547e-22) (0.473755 0.0347691 -9.18065e-23) (0.479012 0.033866 -1.49609e-22) (0.484237 0.0329383 -3.10659e-23) (0.48928 0.032001 2.80584e-23) (0.494469 0.0310495 -1.07871e-22) (0.499275 0.0301391 2.06442e-23) (0.504707 0.0291809 -3.27112e-23) (0.509019 0.0284078 -5.77976e-24) (0.5154 0.0274 -5.90164e-24) (0.518254 0.0269774 -1.07867e-24) (0.527635 0.0258364 5.02383e-24) (-0.0123691 -0.0209321 8.62303e-21) (-0.0198866 -0.0163545 6.36126e-21) (-0.0193397 -0.0141398 -1.45671e-20) (-0.0204676 -0.0119492 -1.03613e-20) (-0.0210218 -0.00991339 2.54959e-20) (-0.0212544 -0.0079913 -3.40173e-20) (-0.0211226 -0.00615637 1.9436e-20) (-0.0206267 -0.00437213 1.3611e-21) (-0.0197502 -0.00260395 -1.9145e-20) (-0.0184505 -0.00085601 -2.38221e-20) (-0.0168187 0.000871264 2.05286e-20) (-0.0148638 0.0025873 2.02307e-20) (-0.0125327 0.00428804 -4.86133e-20) (-0.00985682 0.00598042 4.12846e-20) (-0.00684155 0.00766101 3.77338e-22) (-0.0034915 0.00932551 -3.99016e-20) (0.000167332 0.0109728 1.72655e-22) (0.00416156 0.0125837 2.7079e-20) (0.00848806 0.0141478 7.0158e-21) (0.0131058 0.0156657 -3.41702e-20) (0.0180275 0.0171242 1.49859e-20) (0.0232467 0.0185138 2.77076e-20) (0.0287583 0.0198258 -2.38086e-20) (0.0345572 0.021053 2.07728e-20) (0.0406383 0.0221896 1.16318e-21) (0.0469968 0.0232314 -1.87405e-20) (0.0536278 0.0241763 7.40638e-22) (0.060526 0.0250249 -2.16018e-20) (0.0676867 0.0257762 1.68283e-20) (0.075107 0.0264342 9.42086e-21) (0.0827808 0.027009 -2.65015e-20) (0.0907002 0.0275065 1.27529e-20) (0.0988588 0.0279363 1.18833e-21) (0.107249 0.0283092 8.57501e-21) (0.11586 0.0286373 -3.30897e-21) (0.124683 0.0289305 -7.674e-23) (0.133706 0.0292007 5.26558e-22) (0.142915 0.0294602 -6.85296e-21) (0.152296 0.0297191 -4.2063e-23) (0.16183 0.0299874 -1.06838e-21) (0.171499 0.0302714 -4.91297e-21) (0.181284 0.0305774 5.2142e-21) (0.191162 0.0309096 -5.96322e-21) (0.201112 0.0312704 9.43847e-21) (0.211107 0.0316585 -6.73355e-21) (0.221126 0.0320732 7.14879e-21) (0.23114 0.0325101 -7.73623e-21) (0.241126 0.0329636 3.21257e-21) (0.251057 0.0334265 -2.2464e-21) (0.260908 0.0338905 -1.43538e-21) (0.270656 0.0343463 2.97698e-21) (0.280277 0.0347841 2.17225e-21) (0.28975 0.0351937 -2.05651e-21) (0.299056 0.0355651 -3.05812e-21) (0.308179 0.0358886 -2.10571e-22) (0.317102 0.0361552 1.88751e-21) (0.325815 0.0363567 -2.89859e-22) (0.334308 0.036486 9.0252e-22) (0.342574 0.0365373 -2.26741e-22) (0.350609 0.036506 -1.44405e-21) (0.358414 0.0363891 5.52384e-22) (0.365989 0.0361848 -1.08219e-21) (0.37334 0.0358932 8.81188e-22) (0.380474 0.0355153 1.82126e-22) (0.387399 0.0350536 -1.9556e-22) (0.394129 0.0345124 1.40934e-22) (0.400673 0.0338961 -4.99548e-22) (0.407054 0.033212 -1.33564e-22) (0.413275 0.0324657 -1.18743e-22) (0.419377 0.031668 1.92578e-22) (0.425336 0.0308244 -5.47075e-23) (0.431248 0.0299489 -5.14197e-23) (0.436991 0.0290487 2.84214e-23) (0.442846 0.0281323 -3.72543e-23) (0.448352 0.0272319 1.49769e-23) (0.454426 0.0262951 1.09061e-23) (0.45942 0.0255 -2.09336e-23) (0.466472 0.0244945 -3.48621e-24) (0.469843 0.0240373 -8.21703e-25) (0.480284 0.0228168 2.61652e-24) (-0.0642802 -0.0202812 -1.1933e-20) (-0.071649 -0.0149575 1.70152e-21) (-0.0723193 -0.0133464 -1.85433e-20) (-0.0743675 -0.0113354 1.22778e-20) (-0.0756983 -0.00951436 1.96176e-21) (-0.0766544 -0.00781437 2.62066e-21) (-0.0771908 -0.00619461 -4.98362e-21) (-0.0773227 -0.00462182 -1.44843e-20) (-0.0770416 -0.00306757 1.61341e-20) (-0.0763213 -0.00153615 2.64215e-20) (-0.0752356 -6.37979e-05 -1.51293e-20) (-0.0738063 0.00147882 -2.20534e-20) (-0.0719811 0.00298694 5.57087e-21) (-0.0697975 0.00448593 -2.0499e-20) (-0.0672603 0.0059758 2.75282e-20) (-0.0643739 0.00745251 1.3875e-20) (-0.0611509 0.00890798 -2.90674e-20) (-0.0575796 0.0103579 6.06636e-21) (-0.0536709 0.0117393 -6.61582e-21) (-0.049442 0.0130786 3.13822e-20) (-0.0448891 0.0143619 -3.15129e-20) (-0.0400173 0.0155793 2.47876e-20) (-0.0348305 0.0167221 -5.01743e-21) (-0.0293324 0.017783 -2.18214e-20) (-0.0235272 0.0187565 1.49077e-20) (-0.0174188 0.0196383 5.12837e-22) (-0.011011 0.0204264 -4.22631e-22) (-0.00430912 0.0211213 1.7164e-20) (0.00268375 0.0217243 -3.60027e-21) (0.00996704 0.0222385 -4.20553e-22) (0.0175324 0.0226714 -6.56684e-22) (0.0253714 0.0230326 -2.59784e-21) (0.0334792 0.0233319 2.80174e-21) (0.0418478 0.0235805 -1.59399e-21) (0.0504672 0.0237912 2.06102e-21) (0.0593267 0.0239735 -1.30898e-21) (0.0684161 0.0241404 8.39901e-21) (0.0777205 0.024306 -5.61476e-21) (0.0872237 0.0244806 7.04378e-21) (0.0969081 0.0246749 -4.06351e-21) (0.106755 0.024895 -8.05434e-22) (0.116744 0.0251485 -5.0561e-21) (0.126854 0.0254404 8.94658e-21) (0.137061 0.0257735 1.34594e-21) (0.14734 0.0261459 -1.01526e-21) (0.157667 0.0265585 -3.05741e-21) (0.168015 0.027006 7.13875e-22) (0.178359 0.0274832 -3.32867e-21) (0.188672 0.0279826 6.15637e-21) (0.198929 0.0284954 -2.5259e-21) (0.209106 0.0290117 -1.01559e-21) (0.219179 0.0295211 2.74271e-21) (0.229126 0.0300125 7.47948e-22) (0.238928 0.0304748 5.84911e-22) (0.248565 0.0308972 -1.41166e-21) (0.258024 0.0312696 4.44567e-22) (0.267291 0.0315824 1.3347e-21) (0.276354 0.0318272 -1.39616e-22) (0.285208 0.0319968 2.06415e-22) (0.293847 0.0320851 4.95814e-22) (0.302269 0.0320878 -6.39847e-22) (0.310474 0.0320019 6.05456e-23) (0.318467 0.0318261 7.13458e-22) (0.326252 0.0315604 5.06392e-22) (0.333837 0.0312059 -4.48192e-22) (0.341234 0.0307661 3.2161e-22) (0.348451 0.0302445 8.82052e-23) (0.355508 0.0296478 -1.06804e-22) (0.362408 0.0289807 1.52269e-22) (0.369186 0.0282539 6.5955e-23) (0.375827 0.0274716 1.02902e-22) (0.382406 0.0266496 6.64815e-23) (0.38883 0.0257902 -8.40244e-23) (0.395332 0.0249108 7.08176e-23) (0.401519 0.0240255 4.82449e-24) (0.408208 0.0231134 2.23526e-23) (0.413872 0.0222992 9.61526e-24) (0.421543 0.0213069 3.709e-24) (0.425441 0.0208045 5.63756e-25) (0.436859 0.0195253 -5.00343e-24) (-0.106757 -0.0180425 -6.16612e-21) (-0.114069 -0.0133449 -3.1179e-20) (-0.116102 -0.01198 1.65487e-20) (-0.11908 -0.010241 -1.00055e-21) (-0.121232 -0.00868638 1.34778e-20) (-0.122958 -0.00724044 -2.59738e-20) (-0.124206 -0.005862 2.43827e-20) (-0.125007 -0.00452218 -2.63966e-20) (-0.125365 -0.00319672 7.53982e-21) (-0.125278 -0.00188738 1.22163e-22) (-0.124748 -0.000629958 2.58557e-20) (-0.123845 0.000681364 -4.30211e-20) (-0.122574 0.00197961 3.96609e-20) (-0.120916 0.00327473 -2.96876e-20) (-0.118884 0.004565 7.47177e-21) (-0.116486 0.00584592 9.81622e-21) (-0.11373 0.00710969 -9.72098e-21) (-0.110611 0.00835495 -3.89485e-22) (-0.107139 0.00955102 -1.16134e-20) (-0.103325 0.0107051 1.78625e-20) (-0.0991668 0.0118045 -1.18045e-20) (-0.0946687 0.0128399 1.17317e-21) (-0.0898333 0.0138026 5.4372e-21) (-0.0846635 0.0146858 -1.29747e-20) (-0.0791628 0.0154842 1.22021e-20) (-0.0733345 0.0161936 -1.01886e-20) (-0.0671816 0.0168119 -2.64815e-21) (-0.0607078 0.0173395 5.23654e-21) (-0.0539158 0.0177803 -8.71057e-21) (-0.0468084 0.0181371 5.4341e-21) (-0.0393932 0.0184143 -6.17336e-21) (-0.0316768 0.0186251 3.26618e-21) (-0.0236652 0.0187795 4.5249e-21) (-0.0153668 0.0188894 3.96614e-21) (-0.0067923 0.0189676 -1.00562e-20) (0.00204842 0.0190261 -1.99948e-21) (0.0111452 0.0190773 -1.21541e-21) (0.0204813 0.019135 5.67076e-21) (0.0300398 0.0192117 -1.1078e-21) (0.0398032 0.0193188 -5.45865e-21) (0.0497527 0.0194617 6.54226e-21) (0.0598693 0.0196498 -3.82881e-21) (0.0701294 0.0198892 1.69887e-21) (0.0805084 0.0201825 1.41144e-21) (0.0909834 0.0205267 2.4213e-21) (0.10153 0.0209255 -5.16653e-21) (0.112121 0.021372 3.1684e-22) (0.122731 0.0218615 9.99373e-22) (0.133334 0.022386 -7.59165e-22) (0.143905 0.0229365 -2.41775e-22) (0.154419 0.0235025 1.2232e-21) (0.164852 0.0240728 -3.14717e-21) (0.175183 0.0246355 2.03327e-21) (0.185392 0.0251786 2.54908e-22) (0.19546 0.0256903 -1.5201e-21) (0.205372 0.026159 1.29549e-22) (0.215113 0.0265741 1.38114e-22) (0.224672 0.0269258 1.229e-22) (0.234042 0.0272056 -2.06375e-22) (0.243216 0.027406 -4.9269e-22) (0.252191 0.0275213 -7.31937e-22) (0.260966 0.0275475 9.4111e-22) (0.269543 0.0274818 -4.88303e-22) (0.277926 0.0273232 -2.74055e-23) (0.286121 0.0270719 1.54651e-22) (0.294137 0.0267301 -3.06567e-22) (0.301982 0.0263006 -1.70389e-22) (0.309671 0.0257895 2.29596e-23) (0.31721 0.0252009 1.29932e-22) (0.324624 0.0245449 -3.08723e-23) (0.331906 0.0238252 -1.90992e-22) (0.339115 0.0230579 -3.75313e-23) (0.346179 0.0222431 1.72868e-23) (0.353289 0.0214026 1.01292e-23) (0.360114 0.0205391 -2.22573e-23) (0.367374 0.0196544 2.26085e-23) (0.37367 0.0188277 -1.16527e-23) (0.381894 0.0178582 3.36132e-25) (0.386304 0.017302 6.26466e-25) (0.398583 0.0159932 3.51412e-24) (-0.140418 -0.0148958 -1.79832e-21) (-0.147775 -0.0111928 3.19055e-22) (-0.151053 -0.0100921 -9.90353e-21) (-0.154867 -0.00867728 -7.46353e-21) (-0.157783 -0.00743149 1.7111e-20) (-0.160227 -0.00626937 -1.63991e-20) (-0.162138 -0.00515726 2.63448e-21) (-0.163565 -0.00407121 -4.0487e-21) (-0.164517 -0.00299145 -3.50393e-21) (-0.164998 -0.00191378 1.11492e-20) (-0.165025 -0.000848911 -4.67008e-21) (-0.164647 0.000197592 1.09093e-20) (-0.163873 0.00126892 2.71181e-21) (-0.162702 0.00234856 -2.39831e-20) (-0.161145 0.0034286 2.01582e-20) (-0.159206 0.00450271 -1.09967e-20) (-0.156892 0.00556302 1.39473e-21) (-0.1542 0.00660333 2.914e-21) (-0.15114 0.0076025 3.80801e-21) (-0.147718 0.00856015 -1.63642e-21) (-0.143933 0.00946494 -5.42225e-22) (-0.13979 0.0103074 -1.69834e-21) (-0.135288 0.0110792 3.12282e-21) (-0.130432 0.0117733 8.27469e-21) (-0.125223 0.0123854 -4.73297e-21) (-0.119664 0.0129108 -3.08534e-21) (-0.113758 0.0133477 -4.78841e-21) (-0.107509 0.0136968 1.45146e-20) (-0.100918 0.0139612 -1.03617e-20) (-0.0939893 0.0141455 6.08132e-21) (-0.0867307 0.0142561 -2.17261e-21) (-0.0791483 0.0143049 6.44925e-21) (-0.0712492 0.0143025 -6.03338e-21) (-0.0630419 0.0142615 2.62562e-21) (-0.0545371 0.0141952 -3.99456e-22) (-0.045745 0.0141179 -1.88173e-21) (-0.0366781 0.0140419 -1.41098e-21) (-0.027353 0.0139802 2.3592e-21) (-0.0177861 0.0139475 1.25918e-21) (-0.00799673 0.0139554 -1.01501e-21) (0.00199789 0.0140122 2.66166e-21) (0.0121789 0.014125 4.12973e-22) (0.0225212 0.0143006 -2.48539e-21) (0.0329999 0.0145434 2.18528e-21) (0.0435947 0.0148474 -2.40835e-21) (0.0542815 0.0152216 -5.23584e-22) (0.0650314 0.0156561 2.68523e-21) (0.0758215 0.0161468 -1.26201e-21) (0.0866258 0.0166854 -2.04788e-23) (0.0974198 0.0172624 -1.03898e-21) (0.108179 0.0178668 6.84579e-22) (0.118882 0.0184868 7.33767e-22) (0.129506 0.0191097 4.19151e-22) (0.140031 0.0197225 -1.89935e-21) (0.15044 0.0203122 9.11654e-22) (0.160716 0.0208665 1.77061e-21) (0.170845 0.0213733 -1.78901e-21) (0.180816 0.0218217 1.3274e-21) (0.19062 0.0222019 -1.83063e-22) (0.200249 0.0225051 5.57513e-22) (0.2097 0.0227244 -5.08383e-22) (0.218971 0.0228544 2.41296e-22) (0.228061 0.0228918 3.66773e-22) (0.236972 0.0228339 -8.4633e-24) (0.24571 0.0226801 -3.67821e-22) (0.254279 0.0224317 -4.40922e-23) (0.262688 0.0220909 1.66462e-22) (0.270947 0.0216628 5.27669e-23) (0.279062 0.0211514 -7.20289e-24) (0.287053 0.0205657 2.14369e-23) (0.294914 0.0199097 -4.49851e-23) (0.302693 0.0191987 6.4891e-23) (0.310334 0.0184322 -2.86085e-23) (0.317993 0.0176334 3.45976e-24) (0.32539 0.0167989 7.73057e-24) (0.333158 0.0159448 -8.40687e-24) (0.340021 0.0151148 -5.80082e-25) (0.348718 0.0141763 -8.72039e-25) (0.353596 0.0135618 -1.01725e-24) (0.366592 0.0122588 -2.19178e-24) (-0.165595 -0.0111855 1.65437e-20) (-0.173015 -0.00854447 -2.31465e-20) (-0.177312 -0.00774653 2.01308e-21) (-0.181799 -0.00670481 -1.1438e-20) (-0.185349 -0.00579881 1.55963e-20) (-0.188388 -0.00494539 -1.16878e-20) (-0.19085 -0.00412077 2.41231e-22) (-0.1928 -0.00330649 8.86197e-21) (-0.194248 -0.00248838 -1.1663e-20) (-0.19521 -0.00166526 -2.91694e-21) (-0.195697 -0.000846161 -3.8695e-21) (-0.195751 -2.64197e-05 3.54147e-21) (-0.195396 0.000821384 -3.6774e-22) (-0.194637 0.00167916 1.47963e-21) (-0.193477 0.00254093 3.02151e-21) (-0.191924 0.00339999 -1.16603e-20) (-0.18998 0.00424794 -2.76194e-21) (-0.187647 0.00507656 1.53698e-20) (-0.18493 0.00586972 -1.09485e-20) (-0.181836 0.00662235 1.93699e-21) (-0.178364 0.00732375 1.2543e-21) (-0.174516 0.00796439 -5.56562e-22) (-0.170293 0.00853567 6.25276e-21) (-0.165696 0.00903087 -2.15567e-21) (-0.16073 0.00944687 1.98407e-21) (-0.155396 0.00977827 -6.6394e-21) (-0.149696 0.0100235 3.54078e-21) (-0.143634 0.0101835 -5.76891e-21) (-0.137211 0.0102617 4.07252e-21) (-0.130435 0.0102642 -4.8302e-21) (-0.12331 0.010198 4.32463e-21) (-0.115846 0.0100749 2.72685e-21) (-0.108049 0.00990619 -3.64462e-21) (-0.0999283 0.00970523 -2.59556e-21) (-0.0914955 0.00948588 2.69574e-21) (-0.0827614 0.00926245 1.22522e-21) (-0.07374 0.00904945 -5.89921e-21) (-0.0644484 0.00886075 3.53212e-21) (-0.0549028 0.00871078 -1.66382e-21) (-0.0451223 0.00861131 2.74666e-21) (-0.0351247 0.0085739 -2.26439e-21) (-0.0249302 0.00860312 1.93207e-21) (-0.0145621 0.00870577 -1.14093e-21) (-0.00404629 0.00888706 7.75276e-22) (0.00660114 0.00914759 3.59918e-22) (0.0173559 0.00948616 -9.49099e-23) (0.0281874 0.00989854 -1.50149e-21) (0.0390761 0.0103807 5.30921e-22) (0.0499966 0.0109235 -7.9862e-22) (0.0609257 0.0115168 9.96351e-22) (0.0718406 0.0121491 -7.35177e-23) (0.0827197 0.0128078 5.58679e-23) (0.0935422 0.0134797 -1.5741e-22) (0.104289 0.0141508 -4.911e-23) (0.114943 0.0148072 -3.50102e-22) (0.125488 0.0154354 1.01388e-21) (0.135911 0.0160226 -3.72617e-22) (0.146199 0.0165565 -2.93195e-22) (0.156343 0.0170261 -3.75031e-22) (0.166336 0.0174217 1.38129e-22) (0.176172 0.0177351 -4.25595e-22) (0.185849 0.01796 6.97629e-22) (0.195363 0.0180921 -1.75103e-22) (0.204717 0.0181276 -9.56336e-23) (0.21391 0.018065 3.00017e-23) (0.22295 0.0179047 1.56942e-22) (0.231838 0.0176485 -6.19344e-23) (0.240584 0.0173005 -3.80676e-23) (0.249192 0.0168645 2.99741e-23) (0.257677 0.0163487 -4.7991e-24) (0.266036 0.0157573 9.64339e-23) (0.274303 0.0151043 -4.35192e-23) (0.282436 0.0143902 -3.24252e-23) (0.290563 0.0136365 9.10519e-24) (0.298445 0.0128386 2.22521e-23) (0.30664 0.0120189 -1.85006e-23) (0.313977 0.0111967 7.85231e-24) (0.323059 0.0102967 2.12071e-24) (0.328331 0.00962397 5.57539e-25) (0.341881 0.00836486 8.51186e-26) (-0.182399 -0.00707197 5.37054e-21) (-0.189862 -0.0055124 -1.21421e-20) (-0.19488 -0.00504448 9.31823e-21) (-0.199837 -0.00441707 3.75919e-21) (-0.203841 -0.00387174 -4.46614e-21) (-0.207302 -0.00334578 5.02692e-21) (-0.210158 -0.00282449 2.97684e-21) (-0.212481 -0.0022952 1.97922e-21) (-0.214284 -0.00174914 -3.13366e-21) (-0.215588 -0.00118531 5.84689e-21) (-0.216407 -0.000608379 -1.07255e-20) (-0.216774 -2.32779e-05 4.68468e-21) (-0.216718 0.000589151 2.72861e-21) (-0.216252 0.00121673 -1.29686e-21) (-0.215377 0.00185249 9.00392e-22) (-0.214098 0.00248897 -1.20878e-21) (-0.212419 0.00311717 2.06401e-21) (-0.210339 0.00372758 -2.87319e-21) (-0.207866 0.00430691 9.22606e-21) (-0.205002 0.00484691 -6.06557e-21) (-0.201748 0.00533719 1.51728e-21) (-0.198105 0.00576802 -5.18914e-21) (-0.194074 0.00613075 6.1163e-21) (-0.189655 0.00641857 1.076e-21) (-0.184852 0.00663214 -3.83247e-21) (-0.179668 0.00676259 2.63132e-22) (-0.174106 0.00680884 -2.42506e-21) (-0.168168 0.00677243 5.11095e-21) (-0.161857 0.00665731 -4.30292e-21) (-0.15518 0.00647125 3.01652e-21) (-0.148145 0.00622111 -4.02556e-22) (-0.14076 0.00591908 9.02699e-22) (-0.133033 0.00557712 -2.08196e-21) (-0.124975 0.00520903 1.2493e-21) (-0.116597 0.00482932 2.67869e-22) (-0.107912 0.00445252 1.39219e-21) (-0.098935 0.00409522 -2.22475e-21) (-0.0896833 0.00377135 9.24122e-22) (-0.0801737 0.00349576 1.01817e-22) (-0.0704251 0.00328101 2.14919e-22) (-0.0604557 0.00313883 8.46661e-22) (-0.0502862 0.00307692 -1.23047e-21) (-0.0399387 0.00310296 5.72036e-22) (-0.0294356 0.00322109 4.15567e-22) (-0.0187952 0.00343693 -1.49789e-21) (-0.00804185 0.00373814 1.24177e-22) (0.00280008 0.00412709 1.52227e-21) (0.0137104 0.00459608 -1.46097e-21) (0.0246647 0.00513674 1.52791e-21) (0.035642 0.00573877 -1.79623e-21) (0.0466213 0.00639029 5.29301e-22) (0.0575827 0.00707827 2.35311e-22) (0.0685068 0.00778878 -6.11173e-22) (0.079376 0.00850729 4.04204e-22) (0.0901739 0.00921888 6.66091e-22) (0.100886 0.00990963 -3.70898e-22) (0.111498 0.0105655 1.55604e-22) (0.121999 0.0111733 -1.30211e-22) (0.13238 0.0117212 1.08324e-22) (0.142632 0.0121983 -5.42584e-23) (0.152748 0.0125953 4.79557e-23) (0.162726 0.0129052 2.63137e-22) (0.172561 0.0131239 -7.02815e-23) (0.182252 0.0132452 -5.73891e-23) (0.191799 0.013267 8.87097e-23) (0.201204 0.0131892 -1.09332e-22) (0.21047 0.0130131 5.53537e-23) (0.219601 0.0127421 1.75985e-23) (0.2286 0.0123797 -7.64591e-23) (0.237477 0.0119331 6.5172e-23) (0.246229 0.0114073 1.2886e-23) (0.254885 0.0108146 -3.48788e-23) (0.263405 0.0101569 3.66824e-23) (0.271901 0.00945239 -4.62956e-24) (0.280157 0.00869867 -1.80192e-25) (0.288685 0.00791834 8.54588e-24) (0.296382 0.00711586 -1.49475e-24) (0.305749 0.00626144 1.5538e-24) (0.311316 0.00553602 -5.03689e-25) (0.325242 0.00435688 -1.48396e-24) (-0.190831 -0.00270931 1.7382e-21) (-0.198315 -0.00223687 -4.26508e-21) (-0.20371 -0.0021173 2.71214e-21) (-0.20891 -0.00193216 3.42868e-21) (-0.213151 -0.00176018 2.33175e-21) (-0.216833 -0.00157431 -3.34606e-21) (-0.219895 -0.00136685 3.26547e-21) (-0.222413 -0.00113139 -1.97748e-21) (-0.224402 -0.000864395 9.68081e-22) (-0.225885 -0.000566128 -3.11173e-21) (-0.226877 -0.00024027 1.38732e-21) (-0.227407 0.000107607 -1.30025e-21) (-0.227507 0.000476643 6.62497e-22) (-0.227194 0.00086722 8.82306e-22) (-0.226466 0.00127158 6.53524e-22) (-0.225326 0.00168065 -9.16105e-22) (-0.223779 0.00208448 4.59362e-22) (-0.221826 0.00247258 -1.02486e-21) (-0.21947 0.00283339 4.91515e-22) (-0.216716 0.00315631 8.58739e-22) (-0.213563 0.00343125 -2.23797e-21) (-0.210012 0.00364824 1.94588e-21) (-0.206065 0.00379862 1.49501e-22) (-0.201718 0.00387393 -2.12577e-21) (-0.196979 0.00388253 6.40906e-23) (-0.191853 0.00380804 4.51051e-22) (-0.186341 0.00365142 -6.2218e-22) (-0.180445 0.00341533 1.35762e-21) (-0.174171 0.00310411 -1.24609e-21) (-0.167525 0.00272788 -3.01218e-22) (-0.160518 0.00229292 3.06337e-22) (-0.153158 0.00181134 1.25999e-21) (-0.145455 0.00129618 -1.23579e-21) (-0.137422 0.000761893 -8.46572e-22) (-0.12907 0.000223536 9.88573e-22) (-0.120413 -0.000304401 -2.7385e-24) (-0.111467 -0.000802707 2.14991e-22) (-0.102251 -0.00125838 -1.06722e-21) (-0.0927815 -0.0016561 6.21601e-22) (-0.0830772 -0.00198275 -2.13929e-22) (-0.0731562 -0.00222661 2.10114e-22) (-0.0630386 -0.00237836 -4.69644e-23) (-0.0527462 -0.00243036 1.33258e-22) (-0.0423003 -0.00237856 -3.89246e-22) (-0.03172 -0.00222016 8.20087e-24) (-0.0210272 -0.00196258 -1.57807e-23) (-0.0102432 -0.0016052 -1.14451e-22) (0.000612912 -0.00115804 -5.69233e-23) (0.0115202 -0.000628504 9.85828e-23) (0.0224597 -2.70391e-05 -9.52567e-23) (0.0334125 0.000634025 2.30486e-22) (0.0443608 0.00134107 -5.42708e-23) (0.0552873 0.00207956 -1.84214e-22) (0.0661759 0.00283461 5.47081e-23) (0.077012 0.00359139 -1.6148e-22) (0.0877822 0.00433385 8.6074e-23) (0.0984736 0.00504751 -4.21537e-23) (0.109075 0.0057185 1.68327e-23) (0.119578 0.006334 -1.25627e-24) (0.129973 0.00688241 -5.83008e-23) (0.140254 0.00735354 2.59203e-23) (0.150416 0.0077386 -1.9446e-23) (0.160454 0.00803491 -8.55426e-24) (0.170364 0.00823387 -2.0416e-23) (0.180146 0.00833327 3.0075e-24) (0.189798 0.00833244 -1.45534e-23) (0.199322 0.00823209 -3.65466e-23) (0.208719 0.00803491 -1.12933e-24) (0.217989 0.00774448 1.16676e-23) (0.22714 0.0073668 1.75947e-24) (0.236167 0.00690714 -1.37894e-23) (0.245092 0.00637665 1.30045e-23) (0.25388 0.00577896 -1.03814e-23) (0.262629 0.00512802 -4.7211e-25) (0.271137 0.00442551 2.63618e-24) (0.279888 0.0036906 -1.20882e-24) (0.287814 0.00291925 -2.63701e-25) (0.297362 0.002119 -8.10827e-25) (0.303106 0.00135065 6.4753e-26) (0.317223 0.000280794 7.22464e-25) ) ; boundaryField { inlet { type uniformFixedValue; uniformValue constant (1 0 0); value uniform (1 0 0); } outlet { type pressureInletOutletVelocity; value nonuniform List<vector> 100 ( (1.06391 -0.0439921 0) (1.09058 -0.0430962 0) (1.10864 -0.0419718 0) (1.12019 -0.040709 0) (1.12709 -0.0393696 0) (1.13086 -0.0379875 0) (1.13263 -0.0365805 0) (1.13318 -0.0351562 0) (1.13302 -0.0337169 0) (1.13249 -0.0322625 0) (1.13176 -0.0307925 0) (1.13095 -0.0293068 0) (1.13011 -0.0278054 0) (1.12926 -0.0262892 0) (1.12842 -0.0247589 0) (1.1276 -0.0232157 0) (1.12681 -0.0216606 0) (1.12606 -0.0200949 0) (1.12533 -0.0185195 0) (1.12465 -0.0169356 0) (1.12402 -0.015344 0) (1.12343 -0.0137458 0) (1.12291 -0.0121418 0) (1.12243 -0.0105327 0) (1.12202 -0.00891929 0) (1.12168 -0.00730237 0) (1.1214 -0.00568262 0) (1.12119 -0.00406079 0) (1.12105 -0.00243764 0) (1.12098 -0.000812919 0) (0.318091 -0.00381818 7.11398e-25) (0.327814 -0.00789591 -1.37087e-24) (0.346061 -0.0119093 2.1829e-25) (0.372226 -0.0158166 -1.60791e-24) (0.405459 -0.0195775 2.67195e-24) (0.444723 -0.0231541 -3.10035e-24) (0.488854 -0.0265121 1.65603e-24) (0.536614 -0.0296216 2.57244e-24) (0.586758 -0.0324577 -1.25309e-24) (0.638081 -0.0350013 -2.52571e-25) (0.689458 -0.0372391 2.37013e-24) (0.739877 -0.0391637 -3.73151e-24) (0.78846 -0.0407743 -5.81925e-25) (0.834476 -0.0420764 -3.75124e-24) (0.877351 -0.0430816 6.54157e-24) (0.916663 -0.0438074 -2.34359e-24) (0.952149 -0.044276 -4.92863e-24) (0.983688 -0.0445142 1.92667e-24) (1.01129 -0.0445538 2.4519e-24) (1.0351 -0.0444203 -1.54554e-24) (1.03199 0.0398793 1.1491e-24) (1.00773 0.0399303 -8.30586e-25) (0.979593 0.039839 -1.47016e-25) (0.947458 0.0395824 1.86517e-24) (0.911317 0.0391307 -2.54881e-24) (0.871307 0.0384568 1.34576e-24) (0.827718 0.0375353 5.2593e-25) (0.781005 0.0363433 -3.50369e-25) (0.731787 0.0348616 1.24307e-24) (0.680847 0.0330754 3.65264e-25) (0.629115 0.0309758 -4.06905e-24) (0.577656 0.0285609 -1.04625e-25) (0.527635 0.0258364 5.02383e-24) (0.480284 0.0228168 2.61652e-24) (0.436859 0.0195253 -5.00343e-24) (0.398583 0.0159932 3.51412e-24) (0.366592 0.0122588 -2.19178e-24) (0.341881 0.00836486 8.51186e-26) (0.325242 0.00435688 -1.48396e-24) (0.317223 0.000280794 7.22464e-25) (1.06135 0.0396133 0) (1.08852 0.0389885 0) (1.10693 0.0381779 0) (1.11873 0.0372445 0) (1.12581 0.0362313 0) (1.12971 0.0351606 0) (1.13158 0.0340434 0) (1.13221 0.0328843 0) (1.13212 0.0316851 0) (1.13165 0.0304468 0) (1.13098 0.0291707 0) (1.13022 0.0278587 0) (1.12942 0.0265132 0) (1.12862 0.0251368 0) (1.12782 0.0237322 0) (1.12704 0.0223022 0) (1.12629 0.0208495 0) (1.12556 0.0193764 0) (1.12487 0.0178853 0) (1.12421 0.0163782 0) (1.1236 0.0148571 0) (1.12304 0.0133238 0) (1.12253 0.0117798 0) (1.12207 0.0102267 0) (1.12168 0.00866592 0) (1.12134 0.00709878 0) (1.12107 0.00552655 0) (1.12087 0.00395051 0) (1.12073 0.00237195 0) (1.12066 0.000791093 0) ) ; } cylinder { type fixedValue; value uniform (0 0 0); } top { type symmetryPlane; } bottom { type symmetryPlane; } defaultFaces { type empty; } } // ************************************************************************* //
[ "carsonlansdowne@gmail.com" ]
carsonlansdowne@gmail.com
58ad396c813173301f0f97f1bc1468597f63380b
178ac2eecef425180aa665f9689b7762c407bd3a
/manifold-ipa/.svn/pristine/58/58ad396c813173301f0f97f1bc1468597f63380b.svn-base
40d072e0df6514e97ce6b34eba998d37adebb981
[]
no_license
RaoKarter/manifold_0_12_ei
e211708d54251bf43405458000fbc158e1d8fa97
191112e0d2b2eaf65cbcf9aa2e3bd6804076c9c7
refs/heads/master
2021-06-03T02:34:08.653720
2018-12-10T02:51:40
2018-12-10T02:51:40
94,926,163
0
0
null
2018-02-14T00:26:38
2017-06-20T19:10:17
C++
UTF-8
C++
false
false
61,771
/** This program tests the Schedule() functions of the Manifold class. */ #include <TestFixture.h> #include <TestAssert.h> #include <TestSuite.h> #include <Test.h> #include <TestCaller.h> #include <cppunit/ui/text/TestRunner.h> #include <stdlib.h> #include <sys/time.h> #include "manifold.h" #include "component.h" #include "link.h" using namespace std; using namespace manifold::kernel; //#################################################################### // helper classes, functions, and data //#################################################################### class MyDataType1 { public: MyDataType1() : x(0) {} MyDataType1(int i) : x(i) {} int getX() { return x; } bool operator==(MyDataType1& other) { return x == other.x; } //These two functions are only here so the program will compile. static int Serialize(MyDataType1&, unsigned char*){return 0;} static MyDataType1 Deserialize(unsigned char*, int) { return MyDataType1(); } private: int x; }; class MyDataType2 { public: MyDataType2() : x(0) {} MyDataType2(int i) : x(i) {} int getX() { return x; } bool operator==(MyDataType2& other) { return x == other.x; } private: int x; }; class MyDataType3 { public: MyDataType3() : x(0) {} MyDataType3(int i) : x(i) {} int getX() { return x; } bool operator==(MyDataType3& other) { return x == other.x; } private: int x; }; class MyDataType4 { public: MyDataType4() : x(0) {} MyDataType4(int i) : x(i) {} int getX() { return x; } bool operator==(MyDataType4& other) { return x == other.x; } private: int x; }; class MyObj1 { private: Clock& m_clock; // m_tick is used to record the tick of associated clock at the // time when the handler is called. Ticks_t m_tick; // m_time is used to record the simulation time at the // time when the handler is called. double m_time; MyDataType1 m_d1; MyDataType2 m_d2; MyDataType3 m_d3; MyDataType4 m_d4; public: MyObj1(Clock& clk) : m_clock(clk) {} Clock& getClock() const { return m_clock; } Ticks_t getTick() const { return m_tick; } double getTime() const { return m_time; } MyDataType1 getD1() const { return m_d1; } MyDataType2 getD2() const { return m_d2; } MyDataType3 getD3() const { return m_d3; } MyDataType4 getD4() const { return m_d4; } void handler0() { m_tick = m_clock.NowTicks(); m_time = Manifold::Now(); } void handler1(MyDataType1 d1) { m_tick = m_clock.NowTicks(); m_time = Manifold::Now(); m_d1 = d1; } void handler2(MyDataType1 d1, MyDataType2 d2) { m_tick = m_clock.NowTicks(); m_time = Manifold::Now(); m_d1 = d1; m_d2 = d2; } void handler3(MyDataType1 d1, MyDataType2 d2, MyDataType3 d3) { m_tick = m_clock.NowTicks(); m_time = Manifold::Now(); m_d1 = d1; m_d2 = d2; m_d3 = d3; } void handler4(MyDataType1 d1, MyDataType2 d2, MyDataType3 d3, MyDataType4 d4) { m_tick = m_clock.NowTicks(); m_time = Manifold::Now(); m_d1 = d1; m_d2 = d2; m_d3 = d3; m_d4 = d4; } }; class StaticHandlers { private: // Static_tick is used to record the tick of associated clock at the // time when the handler is called. static Ticks_t Static_tick; // Static_time is used to record the simulation time at the // time when the handler is called. static double Static_time; static Clock* Static_clock; static MyDataType1 Static_d1; static MyDataType2 Static_d2; static MyDataType3 Static_d3; static MyDataType4 Static_d4; public: static Clock& GetClock() { return *Static_clock; } static void SetClock(Clock& clk) { Static_clock = &clk; } static Ticks_t getTick() { return Static_tick; } static double getTime() { return Static_time; } static MyDataType1 getD1() { return Static_d1; } static MyDataType2 getD2() { return Static_d2; } static MyDataType3 getD3() { return Static_d3; } static MyDataType4 getD4() { return Static_d4; } static void Static_handler0() { Static_tick = Static_clock->NowTicks(); Static_time = Manifold::Now(); } static void Static_handler1(MyDataType1 d1) { Static_tick = Static_clock->NowTicks(); Static_time = Manifold::Now(); Static_d1 = d1; } static void Static_handler2(MyDataType1 d1, MyDataType2 d2) { Static_tick = Static_clock->NowTicks(); Static_time = Manifold::Now(); Static_d1 = d1; Static_d2 = d2; } static void Static_handler3(MyDataType1 d1, MyDataType2 d2, MyDataType3 d3) { Static_tick = Static_clock->NowTicks(); Static_time = Manifold::Now(); Static_d1 = d1; Static_d2 = d2; Static_d3 = d3; } static void Static_handler4(MyDataType1 d1, MyDataType2 d2, MyDataType3 d3, MyDataType4 d4) { Static_tick = Static_clock->NowTicks(); Static_time = Manifold::Now(); Static_d1 = d1; Static_d2 = d2; Static_d3 = d3; Static_d4 = d4; } }; Clock* StaticHandlers::Static_clock = 0; Ticks_t StaticHandlers::Static_tick = 0; double StaticHandlers::Static_time = 0; MyDataType1 StaticHandlers::Static_d1; MyDataType2 StaticHandlers::Static_d2; MyDataType3 StaticHandlers::Static_d3; MyDataType4 StaticHandlers::Static_d4; //#################################################################### // ManifoldTest is the unit test class for the class Manifold. //#################################################################### class ManifoldTest : public CppUnit::TestFixture { private: static Clock MasterClock; //clock has to be global or static. static Clock Clock1; enum { MASTER_CLOCK_HZ = 10 }; enum { CLOCK1_HZ = 4 }; MyObj1* comp1; MyObj1* comp2; // The following are parameters passed to the handlers. MyDataType1 m_d1; MyDataType2 m_d2; MyDataType3 m_d3; MyDataType4 m_d4; static const double DOUBLE_COMP_DELTA = 1.0E-5; public: /** * Initialization function. Inherited from the CPPUnit framework. */ void setUp() { comp1 = new MyObj1(MasterClock); comp2 = new MyObj1(Clock1); // component 2 uses Clock1 m_d1 = 567; //randomly selected numbers. m_d2 = 41; m_d3 = 239; m_d4 = 9013; } //====================================================================== // The following set of functions test Schedule() for an object. //====================================================================== /** * Test Schedule(Ticks_t, void(T::*handler)(void), OBJ*) */ void testSchedule_0() { if(random() % 2 == 0) Manifold::Reset(Manifold::TICKED); else Manifold::Reset(Manifold::MIXED); Ticks_t WHEN = 3; //Note events are scheduled relative to current clock ticks. TickEventId te = Manifold::Schedule(WHEN, &MyObj1::handler0, comp1); Ticks_t scheduledAt = WHEN + comp1->getClock().NowTicks(); CPPUNIT_ASSERT_EQUAL(scheduledAt, te.time); // CPPUNIT_ASSERT_EQUAL(expected, actual) Manifold::StopAt(WHEN+1); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_EQUAL(scheduledAt, comp1->getTick()); } /** * Test Schedule(Ticks_t, void(T::*handler)(U1), OBJ*, T1) */ void testSchedule_1() { if(random() % 2 == 0) Manifold::Reset(Manifold::TICKED); else Manifold::Reset(Manifold::MIXED); Ticks_t WHEN = 5; TickEventId te = Manifold::Schedule(WHEN, &MyObj1::handler1, comp1, m_d1); Ticks_t scheduledAt = WHEN + comp1->getClock().NowTicks(); CPPUNIT_ASSERT_EQUAL(scheduledAt, te.time); // CPPUNIT_ASSERT_EQUAL(expected, actual) Manifold::StopAt(WHEN + 1); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_EQUAL(scheduledAt, comp1->getTick()); //verify handler called with right parameters CPPUNIT_ASSERT(comp1->getD1() == m_d1); } /** * Test Schedule(Ticks_t, void(T::*handler)(U1, U2), OBJ*, T1, T2) */ void testSchedule_2() { if(random() % 2 == 0) Manifold::Reset(Manifold::TICKED); else Manifold::Reset(Manifold::MIXED); Ticks_t WHEN = 6; TickEventId te = Manifold::Schedule(WHEN, &MyObj1::handler2, comp1, m_d1, m_d2); Ticks_t scheduledAt = WHEN + comp1->getClock().NowTicks(); CPPUNIT_ASSERT_EQUAL(scheduledAt, te.time); // CPPUNIT_ASSERT_EQUAL(expected, actual) Manifold::StopAt(WHEN + 1); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_EQUAL(scheduledAt, comp1->getTick()); //verify handler called with right parameters CPPUNIT_ASSERT(comp1->getD1() == m_d1 && comp1->getD2() == m_d2); } /** * Test Schedule(Ticks_t, void(T::*handler)(U1, U2, U3), OBJ*, T1, T2, T3) */ void testSchedule_3() { if(random() % 2 == 0) Manifold::Reset(Manifold::TICKED); else Manifold::Reset(Manifold::MIXED); Ticks_t WHEN = 2; TickEventId te = Manifold::Schedule(WHEN, &MyObj1::handler3, comp1, m_d1, m_d2, m_d3); Ticks_t scheduledAt = WHEN + comp1->getClock().NowTicks(); CPPUNIT_ASSERT_EQUAL(scheduledAt, te.time); // CPPUNIT_ASSERT_EQUAL(expected, actual) Manifold::StopAt(WHEN + 1); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_EQUAL(scheduledAt, comp1->getTick()); //verify handler called with right parameters CPPUNIT_ASSERT(comp1->getD1() == m_d1 && comp1->getD2() == m_d2 && comp1->getD3() == m_d3); } /** * Test Schedule(Ticks_t, void(T::*handler)(U1, U2, U3, U4), OBJ*, T1, T2, T3, T4) */ void testSchedule_4() { if(random() % 2 == 0) Manifold::Reset(Manifold::TICKED); else Manifold::Reset(Manifold::MIXED); Ticks_t WHEN = 3; TickEventId te = Manifold::Schedule(WHEN, &MyObj1::handler4, comp1, m_d1, m_d2, m_d3, m_d4); Ticks_t scheduledAt = WHEN + comp1->getClock().NowTicks(); CPPUNIT_ASSERT_EQUAL(scheduledAt, te.time); // CPPUNIT_ASSERT_EQUAL(expected, actual) Manifold::StopAt(WHEN + 1); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_EQUAL(scheduledAt, comp1->getTick()); //verify handler called with right parameters CPPUNIT_ASSERT(comp1->getD1() == m_d1 && comp1->getD2() == m_d2 && comp1->getD3() == m_d3 && comp1->getD4() == m_d4); } //====================================================================== // The following set of functions test ScheduleHalf() for an object. //====================================================================== /** * Test ScheduleHalf(Ticks_t, void(T::*handler)(void), OBJ*) */ void testScheduleHalf_0() { Ticks_t WHEN = 1; // There are 2 test cases here. We test both even and odd number of half ticks. for(int i=0; i<2; i++) { if(random() % 2 == 0) Manifold::Reset(Manifold::TICKED); else Manifold::Reset(Manifold::MIXED); WHEN += i; //Note events are scheduled relative to current clock ticks. TickEventId te = Manifold::ScheduleHalf(WHEN, &MyObj1::handler0, comp1); Ticks_t scheduledAt = WHEN/2 + comp1->getClock().NowTicks(); CPPUNIT_ASSERT_EQUAL(scheduledAt, te.time); // CPPUNIT_ASSERT_EQUAL(expected, actual) Manifold::StopAt(WHEN+1); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_EQUAL(scheduledAt, comp1->getTick()); } } /** * Test ScheduleHalf(Ticks_t, void(T::*handler)(U1), OBJ*, T1) */ void testScheduleHalf_1() { Ticks_t WHEN = 2; // There are 2 test cases here. We test both even and odd number of half ticks. for(int i=0; i<2; i++) { if(random() % 2 == 0) Manifold::Reset(Manifold::TICKED); else Manifold::Reset(Manifold::MIXED); WHEN += i; //Note events are scheduled relative to current clock ticks. TickEventId te = Manifold::ScheduleHalf(WHEN, &MyObj1::handler1, comp1, m_d1); Ticks_t scheduledAt = WHEN/2 + comp1->getClock().NowTicks(); CPPUNIT_ASSERT_EQUAL(scheduledAt, te.time); // CPPUNIT_ASSERT_EQUAL(expected, actual) Manifold::StopAt(WHEN+1); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_EQUAL(scheduledAt, comp1->getTick()); //verify handler called with right parameters CPPUNIT_ASSERT(comp1->getD1() == m_d1); } } /** * Test ScheduleHalf(Ticks_t, void(T::*handler)(U1, U2), OBJ*, T1, T2) */ void testScheduleHalf_2() { Ticks_t WHEN = 2; // There are 2 test cases here. We test both even and odd number of half ticks. for(int i=0; i<2; i++) { if(random() % 2 == 0) Manifold::Reset(Manifold::TICKED); else Manifold::Reset(Manifold::MIXED); WHEN += i; //Note events are scheduled relative to current clock ticks. TickEventId te = Manifold::ScheduleHalf(WHEN, &MyObj1::handler2, comp1, m_d1, m_d2); Ticks_t scheduledAt = WHEN/2 + comp1->getClock().NowTicks(); CPPUNIT_ASSERT_EQUAL(scheduledAt, te.time); // CPPUNIT_ASSERT_EQUAL(expected, actual) Manifold::StopAt(WHEN+1); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_EQUAL(scheduledAt, comp1->getTick()); //verify handler called with right parameters CPPUNIT_ASSERT(comp1->getD1() == m_d1); } } /** * Test ScheduleHalf(Ticks_t, void(T::*handler)(U1, U2, U3), OBJ*, T1, T2, T3) */ void testScheduleHalf_3() { Ticks_t WHEN = 2; // There are 2 test cases here. We test both even and odd number of half ticks. for(int i=0; i<2; i++) { if(random() % 2 == 0) Manifold::Reset(Manifold::TICKED); else Manifold::Reset(Manifold::MIXED); WHEN += i; //Note events are scheduled relative to current clock ticks. TickEventId te = Manifold::ScheduleHalf(WHEN, &MyObj1::handler3, comp1, m_d1, m_d2, m_d3); Ticks_t scheduledAt = WHEN/2 + comp1->getClock().NowTicks(); CPPUNIT_ASSERT_EQUAL(scheduledAt, te.time); // CPPUNIT_ASSERT_EQUAL(expected, actual) Manifold::StopAt(WHEN+1); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_EQUAL(scheduledAt, comp1->getTick()); //verify handler called with right parameters CPPUNIT_ASSERT(comp1->getD1() == m_d1); } } /** * Test ScheduleHalf(Ticks_t, void(T::*handler)(U1, U2, U3, U4), OBJ*, T1, T2, T3, T4) */ void testScheduleHalf_4() { Ticks_t WHEN = 2; // There are 2 test cases here. We test both even and odd number of half ticks. for(int i=0; i<2; i++) { if(random() % 2 == 0) Manifold::Reset(Manifold::TICKED); else Manifold::Reset(Manifold::MIXED); WHEN += i; //Note events are scheduled relative to current clock ticks. TickEventId te = Manifold::ScheduleHalf(WHEN, &MyObj1::handler4, comp1, m_d1, m_d2, m_d3, m_d4); Ticks_t scheduledAt = WHEN/2 + comp1->getClock().NowTicks(); CPPUNIT_ASSERT_EQUAL(scheduledAt, te.time); // CPPUNIT_ASSERT_EQUAL(expected, actual) Manifold::StopAt(WHEN+1); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_EQUAL(scheduledAt, comp1->getTick()); //verify handler called with right parameters CPPUNIT_ASSERT(comp1->getD1() == m_d1); } } //====================================================================== // The following set of functions test ScheduleClock() for an object. //====================================================================== /** * Test ScheduleClock(Ticks_t, Clock&, void(T::*handler)(void), OBJ*) */ void testScheduleClock_0() { if(random() % 2 == 0) Manifold::Reset(Manifold::TICKED); else Manifold::Reset(Manifold::MIXED); Ticks_t WHEN = 3; TickEventId te = Manifold::ScheduleClock(WHEN, Clock1, &MyObj1::handler0, comp2); Ticks_t scheduledAt = WHEN + comp2->getClock().NowTicks(); CPPUNIT_ASSERT_EQUAL(scheduledAt, te.time); // CPPUNIT_ASSERT_EQUAL(expected, actual) Manifold::StopAt((WHEN+1) * (MASTER_CLOCK_HZ/CLOCK1_HZ + 1)); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_EQUAL(scheduledAt, comp2->getTick()); } /** * Test ScheduleClock(Ticks_t, Clock&, void(T::*handler)(U1), OBJ*, T1) */ void testScheduleClock_1() { if(random() % 2 == 0) Manifold::Reset(Manifold::TICKED); else Manifold::Reset(Manifold::MIXED); Ticks_t WHEN = 3; TickEventId te = Manifold::ScheduleClock(WHEN, Clock1, &MyObj1::handler1, comp2, m_d1); Ticks_t scheduledAt = WHEN + comp2->getClock().NowTicks(); CPPUNIT_ASSERT_EQUAL(scheduledAt, te.time); // CPPUNIT_ASSERT_EQUAL(expected, actual) Manifold::StopAt((WHEN+1) * (MASTER_CLOCK_HZ/CLOCK1_HZ + 1)); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_EQUAL(scheduledAt, comp2->getTick()); //verify handler called with right parameters CPPUNIT_ASSERT(comp2->getD1() == m_d1); } /** * Test ScheduleClock(Ticks_t, Clock&, void(T::*handler)(U1, U2), OBJ*, T1, T2) */ void testScheduleClock_2() { if(random() % 2 == 0) Manifold::Reset(Manifold::TICKED); else Manifold::Reset(Manifold::MIXED); Ticks_t WHEN = 3; TickEventId te = Manifold::ScheduleClock(WHEN, Clock1, &MyObj1::handler2, comp2, m_d1, m_d2); Ticks_t scheduledAt = WHEN + comp2->getClock().NowTicks(); CPPUNIT_ASSERT_EQUAL(scheduledAt, te.time); // CPPUNIT_ASSERT_EQUAL(expected, actual) Manifold::StopAt((WHEN+1) * (MASTER_CLOCK_HZ/CLOCK1_HZ + 1)); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_EQUAL(scheduledAt, comp2->getTick()); //verify handler called with right parameters CPPUNIT_ASSERT(comp2->getD1() == m_d1 && comp2->getD2() == m_d2); } /** * Test ScheduleClock(Ticks_t, Clock&, void(T::*handler)(U1, U2, U3), OBJ*, T1, T2, T3) */ void testScheduleClock_3() { if(random() % 2 == 0) Manifold::Reset(Manifold::TICKED); else Manifold::Reset(Manifold::MIXED); Ticks_t WHEN = 3; TickEventId te = Manifold::ScheduleClock(WHEN, Clock1, &MyObj1::handler3, comp2, m_d1, m_d2, m_d3); Ticks_t scheduledAt = WHEN + comp2->getClock().NowTicks(); CPPUNIT_ASSERT_EQUAL(scheduledAt, te.time); // CPPUNIT_ASSERT_EQUAL(expected, actual) Manifold::StopAt((WHEN+1) * (MASTER_CLOCK_HZ/CLOCK1_HZ + 1)); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_EQUAL(scheduledAt, comp2->getTick()); //verify handler called with right parameters CPPUNIT_ASSERT(comp2->getD1() == m_d1 && comp2->getD2() == m_d2 && comp2->getD3() == m_d3); } /** * Test ScheduleClock(Ticks_t, Clock&, void(T::*handler)(U1, U2, U3, U4), OBJ*, T1, T2, T3, T4) */ void testScheduleClock_4() { if(random() % 2 == 0) Manifold::Reset(Manifold::TICKED); else Manifold::Reset(Manifold::MIXED); Ticks_t WHEN = 3; TickEventId te = Manifold::ScheduleClock(WHEN, Clock1, &MyObj1::handler4, comp2, m_d1, m_d2, m_d3, m_d4); Ticks_t scheduledAt = WHEN + comp2->getClock().NowTicks(); CPPUNIT_ASSERT_EQUAL(scheduledAt, te.time); // CPPUNIT_ASSERT_EQUAL(expected, actual) Manifold::StopAt((WHEN+1) * (MASTER_CLOCK_HZ/CLOCK1_HZ + 1)); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_EQUAL(scheduledAt, comp2->getTick()); //verify handler called with right parameters CPPUNIT_ASSERT(comp2->getD1() == m_d1 && comp2->getD2() == m_d2 && comp2->getD3() == m_d3 && comp2->getD4() == m_d4); } //====================================================================== // The following set of functions test ScheduleClockHalf() for an object. //====================================================================== /** * Test ScheduleClockHalf(Ticks_t, Clock&, void(T::*handler)(void), OBJ*) */ void testScheduleClockHalf_0() { Ticks_t WHEN = 3; // There are 2 test cases here. We test both even and odd number of half ticks. for(int i=0; i<2; i++) { if(random() % 2 == 0) Manifold::Reset(Manifold::TICKED); else Manifold::Reset(Manifold::MIXED); WHEN += i; //Note events are scheduled relative to current clock ticks. TickEventId te = Manifold::ScheduleClockHalf(WHEN, Clock1, &MyObj1::handler0, comp2); Ticks_t scheduledAt = WHEN/2 + comp2->getClock().NowTicks(); CPPUNIT_ASSERT_EQUAL(scheduledAt, te.time); // CPPUNIT_ASSERT_EQUAL(expected, actual) Manifold::StopAt((WHEN+1) * (MASTER_CLOCK_HZ/CLOCK1_HZ + 1)); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_EQUAL(scheduledAt, comp2->getTick()); } } /** * Test ScheduleClockHalf(Ticks_t, Clock&, void(T::*handler)(U1), OBJ*, T1) */ void testScheduleClockHalf_1() { Ticks_t WHEN = 3; // There are 2 test cases here. We test both even and odd number of half ticks. for(int i=0; i<2; i++) { if(random() % 2 == 0) Manifold::Reset(Manifold::TICKED); else Manifold::Reset(Manifold::MIXED); WHEN += i; //Note events are scheduled relative to current clock ticks. TickEventId te = Manifold::ScheduleClockHalf(WHEN, Clock1, &MyObj1::handler1, comp2, m_d1); Ticks_t scheduledAt = WHEN/2 + comp2->getClock().NowTicks(); CPPUNIT_ASSERT_EQUAL(scheduledAt, te.time); // CPPUNIT_ASSERT_EQUAL(expected, actual) Manifold::StopAt((WHEN+1) * (MASTER_CLOCK_HZ/CLOCK1_HZ + 1)); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_EQUAL(scheduledAt, comp2->getTick()); //verify handler called with right parameters CPPUNIT_ASSERT(comp2->getD1() == m_d1); } } /** * Test ScheduleClockHalf(Ticks_t, Clock&, void(T::*handler)(U1, U2), OBJ*, T1, T2) */ void testScheduleClockHalf_2() { Ticks_t WHEN = 3; // There are 2 test cases here. We test both even and odd number of half ticks. for(int i=0; i<2; i++) { if(random() % 2 == 0) Manifold::Reset(Manifold::TICKED); else Manifold::Reset(Manifold::MIXED); WHEN += i; //Note events are scheduled relative to current clock ticks. TickEventId te = Manifold::ScheduleClockHalf(WHEN, Clock1, &MyObj1::handler2, comp2, m_d1, m_d2); Ticks_t scheduledAt = WHEN/2 + comp2->getClock().NowTicks(); CPPUNIT_ASSERT_EQUAL(scheduledAt, te.time); // CPPUNIT_ASSERT_EQUAL(expected, actual) Manifold::StopAt((WHEN+1) * (MASTER_CLOCK_HZ/CLOCK1_HZ + 1)); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_EQUAL(scheduledAt, comp2->getTick()); //verify handler called with right parameters CPPUNIT_ASSERT(comp2->getD1() == m_d1 && comp2->getD2() == m_d2); } } /** * Test ScheduleClockHalf(Ticks_t, Clock&, void(T::*handler)(U1, U2, U3), OBJ*, T1, T2, T3) */ void testScheduleClockHalf_3() { Ticks_t WHEN = 3; // There are 2 test cases here. We test both even and odd number of half ticks. for(int i=0; i<2; i++) { if(random() % 2 == 0) Manifold::Reset(Manifold::TICKED); else Manifold::Reset(Manifold::MIXED); WHEN += i; //Note events are scheduled relative to current clock ticks. TickEventId te = Manifold::ScheduleClockHalf(WHEN, Clock1, &MyObj1::handler3, comp2, m_d1, m_d2, m_d3); Ticks_t scheduledAt = WHEN/2 + comp2->getClock().NowTicks(); CPPUNIT_ASSERT_EQUAL(scheduledAt, te.time); // CPPUNIT_ASSERT_EQUAL(expected, actual) Manifold::StopAt((WHEN+1) * (MASTER_CLOCK_HZ/CLOCK1_HZ + 1)); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_EQUAL(scheduledAt, comp2->getTick()); //verify handler called with right parameters CPPUNIT_ASSERT(comp2->getD1() == m_d1 && comp2->getD2() == m_d2 && comp2->getD3() == m_d3); } } /** * Test ScheduleClockHalf(Ticks_t, Clock&, void(T::*handler)(U1, U2, U3, U4), OBJ*, T1, T2, T3, T4) */ void testScheduleClockHalf_4() { Ticks_t WHEN = 3; // There are 2 test cases here. We test both even and odd number of half ticks. for(int i=0; i<2; i++) { if(random() % 2 == 0) Manifold::Reset(Manifold::TICKED); else Manifold::Reset(Manifold::MIXED); WHEN += i; //Note events are scheduled relative to current clock ticks. TickEventId te = Manifold::ScheduleClockHalf(WHEN, Clock1, &MyObj1::handler4, comp2, m_d1, m_d2, m_d3, m_d4); Ticks_t scheduledAt = WHEN/2 + comp2->getClock().NowTicks(); CPPUNIT_ASSERT_EQUAL(scheduledAt, te.time); // CPPUNIT_ASSERT_EQUAL(expected, actual) Manifold::StopAt((WHEN+1) * (MASTER_CLOCK_HZ/CLOCK1_HZ + 1)); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_EQUAL(scheduledAt, comp2->getTick()); //verify handler called with right parameters CPPUNIT_ASSERT(comp2->getD1() == m_d1 && comp2->getD2() == m_d2 && comp2->getD3() == m_d3 && comp2->getD4() == m_d4); } } //====================================================================== // The following set of functions test ScheduleTime() for an object. //====================================================================== /** * Test ScheduleTime(double, void(T::*handler)(void), OBJ*) */ void testScheduleTime_0() { if(random() % 2 == 0) Manifold::Reset(Manifold::TIMED); else Manifold::Reset(Manifold::MIXED); double WHEN = 3.4; //Note events are scheduled relative to current time. EventId ev = Manifold::ScheduleTime(WHEN, &MyObj1::handler0, comp1); double scheduledAt = WHEN + Manifold::Now(); CPPUNIT_ASSERT_DOUBLES_EQUAL(scheduledAt, ev.time, DOUBLE_COMP_DELTA); // CPPUNIT_ASSERT_DOUBLES_EQUAL(expected, actual, delta) Manifold::StopAtTime(WHEN+1); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_DOUBLES_EQUAL(scheduledAt, comp1->getTime(), DOUBLE_COMP_DELTA); } /** * Test ScheduleTime(double, void(T::*handler)(U1), OBJ*, T1) */ void testScheduleTime_1() { if(random() % 2 == 0) Manifold::Reset(Manifold::TIMED); else Manifold::Reset(Manifold::MIXED); double WHEN = 2.7; //Note events are scheduled relative to current time. EventId ev = Manifold::ScheduleTime(WHEN, &MyObj1::handler1, comp1, m_d1); double scheduledAt = WHEN + Manifold::Now(); CPPUNIT_ASSERT_DOUBLES_EQUAL(scheduledAt, ev.time, DOUBLE_COMP_DELTA); // CPPUNIT_ASSERT_DOUBLES_EQUAL(expected, actual, delta) Manifold::StopAtTime(WHEN+1); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_DOUBLES_EQUAL(scheduledAt, comp1->getTime(), DOUBLE_COMP_DELTA); //verify handler called with right parameters CPPUNIT_ASSERT(comp1->getD1() == m_d1); } /** * Test ScheduleTime(double, void(T::*handler)(U1, U2), OBJ*, T1, T2) */ void testScheduleTime_2() { if(random() % 2 == 0) Manifold::Reset(Manifold::TIMED); else Manifold::Reset(Manifold::MIXED); double WHEN = 2.7; //Note events are scheduled relative to current time. EventId ev = Manifold::ScheduleTime(WHEN, &MyObj1::handler2, comp1, m_d1, m_d2); double scheduledAt = WHEN + Manifold::Now(); CPPUNIT_ASSERT_DOUBLES_EQUAL(scheduledAt, ev.time, DOUBLE_COMP_DELTA); // CPPUNIT_ASSERT_DOUBLES_EQUAL(expected, actual, delta) Manifold::StopAtTime(WHEN+1); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_DOUBLES_EQUAL(scheduledAt, comp1->getTime(), DOUBLE_COMP_DELTA); //verify handler called with right parameters CPPUNIT_ASSERT(comp1->getD1() == m_d1 && comp1->getD2() == m_d2); } /** * Test ScheduleTime(double, void(T::*handler)(U1, U2, U3), OBJ*, T1, T2, T3) */ void testScheduleTime_3() { if(random() % 2 == 0) Manifold::Reset(Manifold::TIMED); else Manifold::Reset(Manifold::MIXED); double WHEN = 2.7; //Note events are scheduled relative to current time. EventId ev = Manifold::ScheduleTime(WHEN, &MyObj1::handler3, comp1, m_d1, m_d2, m_d3); double scheduledAt = WHEN + Manifold::Now(); CPPUNIT_ASSERT_DOUBLES_EQUAL(scheduledAt, ev.time, DOUBLE_COMP_DELTA); // CPPUNIT_ASSERT_DOUBLES_EQUAL(expected, actual, delta) Manifold::StopAtTime(WHEN+1); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_DOUBLES_EQUAL(scheduledAt, comp1->getTime(), DOUBLE_COMP_DELTA); //verify handler called with right parameters CPPUNIT_ASSERT(comp1->getD1() == m_d1 && comp1->getD2() == m_d2 && comp1->getD3() == m_d3); } /** * Test ScheduleTime(double, void(T::*handler)(U1, U2, U3, U4), OBJ*, T1, T2, T3, T4) */ void testScheduleTime_4() { if(random() % 2 == 0) Manifold::Reset(Manifold::TIMED); else Manifold::Reset(Manifold::MIXED); double WHEN = 2.7; //Note events are scheduled relative to current time. EventId ev = Manifold::ScheduleTime(WHEN, &MyObj1::handler4, comp1, m_d1, m_d2, m_d3, m_d4); double scheduledAt = WHEN + Manifold::Now(); CPPUNIT_ASSERT_DOUBLES_EQUAL(scheduledAt, ev.time, DOUBLE_COMP_DELTA); // CPPUNIT_ASSERT_DOUBLES_EQUAL(expected, actual, delta) Manifold::StopAtTime(WHEN+1); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_DOUBLES_EQUAL(scheduledAt, comp1->getTime(), DOUBLE_COMP_DELTA); //verify handler called with right parameters CPPUNIT_ASSERT(comp1->getD1() == m_d1 && comp1->getD2() == m_d2 && comp1->getD3() == m_d3 && comp1->getD4() == m_d4); } //====================================================================== // The following set of functions test Schedule() for static callbacks. //====================================================================== /** * Test Schedule(Ticks_t, void(*handler)(void)) */ void testSchedule_s0() { if(random() % 2 == 0) Manifold::Reset(Manifold::TICKED); else Manifold::Reset(Manifold::MIXED); Ticks_t WHEN = 2; //Note events are scheduled relative to current clock ticks. StaticHandlers::SetClock(MasterClock); TickEventId te = Manifold::Schedule(WHEN, &StaticHandlers::Static_handler0); Ticks_t scheduledAt = WHEN + StaticHandlers::GetClock().NowTicks(); CPPUNIT_ASSERT_EQUAL(scheduledAt, te.time); // CPPUNIT_ASSERT_EQUAL(expected, actual) Manifold::StopAt(WHEN+1); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_EQUAL(scheduledAt, StaticHandlers::getTick()); } /** * Test Schedule(Ticks_t, void(*handler)(U1), T1) */ void testSchedule_s1() { if(random() % 2 == 0) Manifold::Reset(Manifold::TICKED); else Manifold::Reset(Manifold::MIXED); Ticks_t WHEN = 5; //Note events are scheduled relative to current clock ticks. StaticHandlers::SetClock(MasterClock); TickEventId te = Manifold::Schedule(WHEN, &StaticHandlers::Static_handler1, m_d1); Ticks_t scheduledAt = WHEN + StaticHandlers::GetClock().NowTicks(); CPPUNIT_ASSERT_EQUAL(scheduledAt, te.time); // CPPUNIT_ASSERT_EQUAL(expected, actual) Manifold::StopAt(WHEN + 1); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_EQUAL(scheduledAt, StaticHandlers::getTick()); //verify handler called with right parameters CPPUNIT_ASSERT(StaticHandlers::getD1() == m_d1); } /** * Test Schedule(Ticks_t, void(*handler)(U1, U2), T1, T2) */ void testSchedule_s2() { if(random() % 2 == 0) Manifold::Reset(Manifold::TICKED); else Manifold::Reset(Manifold::MIXED); Ticks_t WHEN = 6; //Note events are scheduled relative to current clock ticks. StaticHandlers::SetClock(MasterClock); TickEventId te = Manifold::Schedule(WHEN, &StaticHandlers::Static_handler2, m_d1, m_d2); Ticks_t scheduledAt = WHEN + StaticHandlers::GetClock().NowTicks(); CPPUNIT_ASSERT_EQUAL(scheduledAt, te.time); // CPPUNIT_ASSERT_EQUAL(expected, actual) Manifold::StopAt(WHEN + 1); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_EQUAL(scheduledAt, StaticHandlers::getTick()); //verify handler called with right parameters CPPUNIT_ASSERT(StaticHandlers::getD1() == m_d1 && StaticHandlers::getD2() == m_d2); } /** * Test Schedule(Ticks_t, void(*handler)(U1, U2, U3), T1, T2, T3) */ void testSchedule_s3() { if(random() % 2 == 0) Manifold::Reset(Manifold::TICKED); else Manifold::Reset(Manifold::MIXED); Ticks_t WHEN = 2; //Note events are scheduled relative to current clock ticks. StaticHandlers::SetClock(MasterClock); TickEventId te = Manifold::Schedule(WHEN, &StaticHandlers::Static_handler3, m_d1, m_d2, m_d3); Ticks_t scheduledAt = WHEN + StaticHandlers::GetClock().NowTicks(); CPPUNIT_ASSERT_EQUAL(scheduledAt, te.time); // CPPUNIT_ASSERT_EQUAL(expected, actual) Manifold::StopAt(WHEN + 1); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_EQUAL(scheduledAt, StaticHandlers::getTick()); //verify handler called with right parameters CPPUNIT_ASSERT(StaticHandlers::getD1() == m_d1 && StaticHandlers::getD2() == m_d2 && StaticHandlers::getD3() == m_d3); } /** * Test Schedule(Ticks_t, void(*handler)(U1, U2, U3, U4), T1, T2, T3, T4) */ void testSchedule_s4() { if(random() % 2 == 0) Manifold::Reset(Manifold::TICKED); else Manifold::Reset(Manifold::MIXED); Ticks_t WHEN = 3; //Note events are scheduled relative to current clock ticks. StaticHandlers::SetClock(MasterClock); TickEventId te = Manifold::Schedule(WHEN, &StaticHandlers::Static_handler4, m_d1, m_d2, m_d3, m_d4); Ticks_t scheduledAt = WHEN + StaticHandlers::GetClock().NowTicks(); CPPUNIT_ASSERT_EQUAL(scheduledAt, te.time); // CPPUNIT_ASSERT_EQUAL(expected, actual) Manifold::StopAt(WHEN + 1); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_EQUAL(scheduledAt, StaticHandlers::getTick()); //verify handler called with right parameters CPPUNIT_ASSERT(StaticHandlers::getD1() == m_d1 && StaticHandlers::getD2() == m_d2 && StaticHandlers::getD3() == m_d3 && StaticHandlers::getD4() == m_d4); } //====================================================================== // The following set of functions test ScheduleHalf() for static callbacks. //====================================================================== /** * Test ScheduleHalf(Ticks_t, void(*handler)(void)) */ void testScheduleHalf_s0() { Ticks_t WHEN = 3; StaticHandlers::SetClock(MasterClock); // There are 2 test cases here. We test both even and odd number of half ticks. for(int i=0; i<2; i++) { if(random() % 2 == 0) Manifold::Reset(Manifold::TICKED); else Manifold::Reset(Manifold::MIXED); WHEN += i; //Note events are scheduled relative to current clock ticks. TickEventId te = Manifold::ScheduleHalf(WHEN, StaticHandlers::Static_handler0); Ticks_t scheduledAt = WHEN/2 + StaticHandlers::GetClock().NowTicks(); CPPUNIT_ASSERT_EQUAL(scheduledAt, te.time); // CPPUNIT_ASSERT_EQUAL(expected, actual) Manifold::StopAt(WHEN+1); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_EQUAL(scheduledAt, StaticHandlers::getTick()); } } /** * Test ScheduleHalf(Ticks_t, void(*handler)(U1), T1) */ void testScheduleHalf_s1() { Ticks_t WHEN = 3; StaticHandlers::SetClock(MasterClock); // There are 2 test cases here. We test both even and odd number of half ticks. for(int i=0; i<2; i++) { if(random() % 2 == 0) Manifold::Reset(Manifold::TICKED); else Manifold::Reset(Manifold::MIXED); WHEN += i; //Note events are scheduled relative to current clock ticks. TickEventId te = Manifold::ScheduleHalf(WHEN, StaticHandlers::Static_handler1, m_d1); Ticks_t scheduledAt = WHEN/2 + StaticHandlers::GetClock().NowTicks(); CPPUNIT_ASSERT_EQUAL(scheduledAt, te.time); // CPPUNIT_ASSERT_EQUAL(expected, actual) Manifold::StopAt(WHEN+1); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_EQUAL(scheduledAt, StaticHandlers::getTick()); //verify handler called with right parameters CPPUNIT_ASSERT(StaticHandlers::getD1() == m_d1); } } /** * Test ScheduleHalf(Ticks_t, void(*handler)(U1, U2), T1, T2) */ void testScheduleHalf_s2() { Ticks_t WHEN = 3; StaticHandlers::SetClock(MasterClock); // There are 2 test cases here. We test both even and odd number of half ticks. for(int i=0; i<2; i++) { if(random() % 2 == 0) Manifold::Reset(Manifold::TICKED); else Manifold::Reset(Manifold::MIXED); WHEN += i; //Note events are scheduled relative to current clock ticks. TickEventId te = Manifold::ScheduleHalf(WHEN, StaticHandlers::Static_handler2, m_d1, m_d2); Ticks_t scheduledAt = WHEN/2 + StaticHandlers::GetClock().NowTicks(); CPPUNIT_ASSERT_EQUAL(scheduledAt, te.time); // CPPUNIT_ASSERT_EQUAL(expected, actual) Manifold::StopAt(WHEN+1); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_EQUAL(scheduledAt, StaticHandlers::getTick()); //verify handler called with right parameters CPPUNIT_ASSERT(StaticHandlers::getD1() == m_d1 && StaticHandlers::getD2() == m_d2); } } /** * Test ScheduleHalf(Ticks_t, void(*handler)(U1, U2, U3), T1, T2, T3) */ void testScheduleHalf_s3() { Ticks_t WHEN = 3; StaticHandlers::SetClock(MasterClock); // There are 2 test cases here. We test both even and odd number of half ticks. for(int i=0; i<2; i++) { if(random() % 2 == 0) Manifold::Reset(Manifold::TICKED); else Manifold::Reset(Manifold::MIXED); WHEN += i; //Note events are scheduled relative to current clock ticks. TickEventId te = Manifold::ScheduleHalf(WHEN, StaticHandlers::Static_handler3, m_d1, m_d2, m_d3); Ticks_t scheduledAt = WHEN/2 + StaticHandlers::GetClock().NowTicks(); CPPUNIT_ASSERT_EQUAL(scheduledAt, te.time); // CPPUNIT_ASSERT_EQUAL(expected, actual) Manifold::StopAt(WHEN+1); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_EQUAL(scheduledAt, StaticHandlers::getTick()); //verify handler called with right parameters CPPUNIT_ASSERT(StaticHandlers::getD1() == m_d1 && StaticHandlers::getD2() == m_d2 && StaticHandlers::getD3() == m_d3); } } /** * Test ScheduleHalf(Ticks_t, void(*handler)(U1, U2, U3, U4), T1, T2, T3, T4) */ void testScheduleHalf_s4() { Ticks_t WHEN = 3; StaticHandlers::SetClock(MasterClock); // There are 2 test cases here. We test both even and odd number of half ticks. for(int i=0; i<2; i++) { if(random() % 2 == 0) Manifold::Reset(Manifold::TICKED); else Manifold::Reset(Manifold::MIXED); WHEN += i; //Note events are scheduled relative to current clock ticks. TickEventId te = Manifold::ScheduleHalf(WHEN, StaticHandlers::Static_handler4, m_d1, m_d2, m_d3, m_d4); Ticks_t scheduledAt = WHEN/2 + StaticHandlers::GetClock().NowTicks(); CPPUNIT_ASSERT_EQUAL(scheduledAt, te.time); // CPPUNIT_ASSERT_EQUAL(expected, actual) Manifold::StopAt(WHEN+1); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_EQUAL(scheduledAt, StaticHandlers::getTick()); //verify handler called with right parameters CPPUNIT_ASSERT(StaticHandlers::getD1() == m_d1 && StaticHandlers::getD2() == m_d2 && StaticHandlers::getD3() == m_d3 && StaticHandlers::getD4() == m_d4); } } //====================================================================== // The following set of functions test ScheduleClock() for static callbacks. //====================================================================== /** * Test ScheduleClock(Ticks_t, Clock&, void(*handler)(void)) */ void testScheduleClock_s0() { Ticks_t WHEN = 3; StaticHandlers::SetClock(Clock1); if(random() % 2 == 0) Manifold::Reset(Manifold::TICKED); else Manifold::Reset(Manifold::MIXED); TickEventId te = Manifold::ScheduleClock(WHEN, Clock1, StaticHandlers::Static_handler0); Ticks_t scheduledAt = WHEN + StaticHandlers::GetClock().NowTicks(); CPPUNIT_ASSERT_EQUAL(scheduledAt, te.time); // CPPUNIT_ASSERT_EQUAL(expected, actual) Manifold::StopAt((WHEN+1) * (MASTER_CLOCK_HZ/CLOCK1_HZ + 1)); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_EQUAL(scheduledAt, StaticHandlers::getTick()); } /** * Test ScheduleClock(Ticks_t, Clock&, void(*handler)(U1), T1) */ void testScheduleClock_s1() { Ticks_t WHEN = 3; StaticHandlers::SetClock(Clock1); if(random() % 2 == 0) Manifold::Reset(Manifold::TICKED); else Manifold::Reset(Manifold::MIXED); TickEventId te = Manifold::ScheduleClock(WHEN, Clock1, StaticHandlers::Static_handler1, m_d1); Ticks_t scheduledAt = WHEN + StaticHandlers::GetClock().NowTicks(); CPPUNIT_ASSERT_EQUAL(scheduledAt, te.time); // CPPUNIT_ASSERT_EQUAL(expected, actual) Manifold::StopAt((WHEN+1) * (MASTER_CLOCK_HZ/CLOCK1_HZ + 1)); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_EQUAL(scheduledAt, StaticHandlers::getTick()); //verify handler called with right parameters CPPUNIT_ASSERT(StaticHandlers::getD1() == m_d1); } /** * Test ScheduleClock(Ticks_t, Clock&, void(*handler)(U1, U2), T1, T2) */ void testScheduleClock_s2() { Ticks_t WHEN = 3; StaticHandlers::SetClock(Clock1); if(random() % 2 == 0) Manifold::Reset(Manifold::TICKED); else Manifold::Reset(Manifold::MIXED); TickEventId te = Manifold::ScheduleClock(WHEN, Clock1, StaticHandlers::Static_handler2, m_d1, m_d2); Ticks_t scheduledAt = WHEN + StaticHandlers::GetClock().NowTicks(); CPPUNIT_ASSERT_EQUAL(scheduledAt, te.time); // CPPUNIT_ASSERT_EQUAL(expected, actual) Manifold::StopAt((WHEN+1) * (MASTER_CLOCK_HZ/CLOCK1_HZ + 1)); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_EQUAL(scheduledAt, StaticHandlers::getTick()); //verify handler called with right parameters CPPUNIT_ASSERT(StaticHandlers::getD1() == m_d1 && StaticHandlers::getD2() == m_d2); } /** * Test ScheduleClock(Ticks_t, Clock&, void(*handler)(U1, U2, U3), T1, T2, T3) */ void testScheduleClock_s3() { if(random() % 2 == 0) Manifold::Reset(Manifold::TICKED); else Manifold::Reset(Manifold::MIXED); Ticks_t WHEN = 3; StaticHandlers::SetClock(Clock1); TickEventId te = Manifold::ScheduleClock(WHEN, Clock1, StaticHandlers::Static_handler3, m_d1, m_d2, m_d3); Ticks_t scheduledAt = WHEN + StaticHandlers::GetClock().NowTicks(); CPPUNIT_ASSERT_EQUAL(scheduledAt, te.time); // CPPUNIT_ASSERT_EQUAL(expected, actual) Manifold::StopAt((WHEN+1) * (MASTER_CLOCK_HZ/CLOCK1_HZ + 1)); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_EQUAL(scheduledAt, StaticHandlers::getTick()); //verify handler called with right parameters CPPUNIT_ASSERT(StaticHandlers::getD1() == m_d1 && StaticHandlers::getD2() == m_d2 && StaticHandlers::getD3() == m_d3); } /** * Test ScheduleClock(Ticks_t, Clock&, void(*handler)(U1, U2, U3, U4), T1, T2, T3, T4) */ void testScheduleClock_s4() { if(random() % 2 == 0) Manifold::Reset(Manifold::TICKED); else Manifold::Reset(Manifold::MIXED); Ticks_t WHEN = 3; StaticHandlers::SetClock(Clock1); TickEventId te = Manifold::ScheduleClock(WHEN, Clock1, StaticHandlers::Static_handler4, m_d1, m_d2, m_d3, m_d4); Ticks_t scheduledAt = WHEN + StaticHandlers::GetClock().NowTicks(); CPPUNIT_ASSERT_EQUAL(scheduledAt, te.time); // CPPUNIT_ASSERT_EQUAL(expected, actual) Manifold::StopAt((WHEN+1) * (MASTER_CLOCK_HZ/CLOCK1_HZ + 1)); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_EQUAL(scheduledAt, StaticHandlers::getTick()); //verify handler called with right parameters CPPUNIT_ASSERT(StaticHandlers::getD1() == m_d1 && StaticHandlers::getD2() == m_d2 && StaticHandlers::getD3() == m_d3 && StaticHandlers::getD4() == m_d4); } //====================================================================== // The following set of functions test ScheduleClockHalf() for static callbacks. //====================================================================== /** * Test ScheduleClockHalf(Ticks_t, Clock&, void(*handler)(void)) */ void testScheduleClockHalf_s0() { Ticks_t WHEN = 3; StaticHandlers::SetClock(Clock1); // There are 2 test cases here. We test both even and odd number of half ticks. for(int i=0; i<2; i++) { if(random() % 2 == 0) Manifold::Reset(Manifold::TICKED); else Manifold::Reset(Manifold::MIXED); WHEN += i; //Note events are scheduled relative to current clock ticks. TickEventId te = Manifold::ScheduleClockHalf(WHEN, Clock1, StaticHandlers::Static_handler0); Ticks_t scheduledAt = WHEN/2 + StaticHandlers::GetClock().NowTicks(); CPPUNIT_ASSERT_EQUAL(scheduledAt, te.time); // CPPUNIT_ASSERT_EQUAL(expected, actual) Manifold::StopAt((WHEN+1) * (MASTER_CLOCK_HZ/CLOCK1_HZ + 1)); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_EQUAL(scheduledAt, StaticHandlers::getTick()); } } /** * Test ScheduleClockHalf(Ticks_t, Clock&, void(*handler)(U1), T1) */ void testScheduleClockHalf_s1() { Ticks_t WHEN = 3; StaticHandlers::SetClock(Clock1); // There are 2 test cases here. We test both even and odd number of half ticks. for(int i=0; i<2; i++) { if(random() % 2 == 0) Manifold::Reset(Manifold::TICKED); else Manifold::Reset(Manifold::MIXED); WHEN += i; //Note events are scheduled relative to current clock ticks. TickEventId te = Manifold::ScheduleClockHalf(WHEN, Clock1, StaticHandlers::Static_handler1, m_d1); Ticks_t scheduledAt = WHEN/2 + StaticHandlers::GetClock().NowTicks(); CPPUNIT_ASSERT_EQUAL(scheduledAt, te.time); // CPPUNIT_ASSERT_EQUAL(expected, actual) Manifold::StopAt((WHEN+1) * (MASTER_CLOCK_HZ/CLOCK1_HZ + 1)); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_EQUAL(scheduledAt, StaticHandlers::getTick()); //verify handler called with right parameters CPPUNIT_ASSERT(StaticHandlers::getD1() == m_d1); } } /** * Test ScheduleClockHalf(Ticks_t, Clock&, void(*handler)(U1, U2), T1, T2) */ void testScheduleClockHalf_s2() { Ticks_t WHEN = 3; StaticHandlers::SetClock(Clock1); // There are 2 test cases here. We test both even and odd number of half ticks. for(int i=0; i<2; i++) { if(random() % 2 == 0) Manifold::Reset(Manifold::TICKED); else Manifold::Reset(Manifold::MIXED); WHEN += i; //Note events are scheduled relative to current clock ticks. TickEventId te = Manifold::ScheduleClockHalf(WHEN, Clock1, StaticHandlers::Static_handler2, m_d1, m_d2); Ticks_t scheduledAt = WHEN/2 + StaticHandlers::GetClock().NowTicks(); CPPUNIT_ASSERT_EQUAL(scheduledAt, te.time); // CPPUNIT_ASSERT_EQUAL(expected, actual) Manifold::StopAt((WHEN+1) * (MASTER_CLOCK_HZ/CLOCK1_HZ + 1)); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_EQUAL(scheduledAt, StaticHandlers::getTick()); //verify handler called with right parameters CPPUNIT_ASSERT(StaticHandlers::getD1() == m_d1 && StaticHandlers::getD2() == m_d2); } } /** * Test ScheduleClockHalf(Ticks_t, Clock&, void(*handler)(U1, U2, U3), T1, T2, T3) */ void testScheduleClockHalf_s3() { Ticks_t WHEN = 3; StaticHandlers::SetClock(Clock1); // There are 2 test cases here. We test both even and odd number of half ticks. for(int i=0; i<2; i++) { if(random() % 2 == 0) Manifold::Reset(Manifold::TICKED); else Manifold::Reset(Manifold::MIXED); WHEN += i; //Note events are scheduled relative to current clock ticks. TickEventId te = Manifold::ScheduleClockHalf(WHEN, Clock1, StaticHandlers::Static_handler3, m_d1, m_d2, m_d3); Ticks_t scheduledAt = WHEN/2 + StaticHandlers::GetClock().NowTicks(); CPPUNIT_ASSERT_EQUAL(scheduledAt, te.time); // CPPUNIT_ASSERT_EQUAL(expected, actual) Manifold::StopAt((WHEN+1) * (MASTER_CLOCK_HZ/CLOCK1_HZ + 1)); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_EQUAL(scheduledAt, StaticHandlers::getTick()); //verify handler called with right parameters CPPUNIT_ASSERT(StaticHandlers::getD1() == m_d1 && StaticHandlers::getD2() == m_d2 && StaticHandlers::getD3() == m_d3); } } /** * Test ScheduleClockHalf(Ticks_t, Clock&, void(*handler)(U1, U2, U3, U4), T1, T2, T3, T4) */ void testScheduleClockHalf_s4() { Ticks_t WHEN = 3; StaticHandlers::SetClock(Clock1); // There are 2 test cases here. We test both even and odd number of half ticks. for(int i=0; i<2; i++) { if(random() % 2 == 0) Manifold::Reset(Manifold::TICKED); else Manifold::Reset(Manifold::MIXED); WHEN += i; //Note events are scheduled relative to current clock ticks. TickEventId te = Manifold::ScheduleClockHalf(WHEN, Clock1, StaticHandlers::Static_handler4, m_d1, m_d2, m_d3, m_d4); Ticks_t scheduledAt = WHEN/2 + StaticHandlers::GetClock().NowTicks(); CPPUNIT_ASSERT_EQUAL(scheduledAt, te.time); // CPPUNIT_ASSERT_EQUAL(expected, actual) Manifold::StopAt((WHEN+1) * (MASTER_CLOCK_HZ/CLOCK1_HZ + 1)); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_EQUAL(scheduledAt, StaticHandlers::getTick()); //verify handler called with right parameters CPPUNIT_ASSERT(StaticHandlers::getD1() == m_d1 && StaticHandlers::getD2() == m_d2 && StaticHandlers::getD3() == m_d3 && StaticHandlers::getD4() == m_d4); } } //====================================================================== // The following set of functions test ScheduleTime() for static callbacks. //====================================================================== /** * Test ScheduleTime(double, void(*handler)(void)) */ void testScheduleTime_s0() { if(random() % 2 == 0) Manifold::Reset(Manifold::TIMED); else Manifold::Reset(Manifold::MIXED); double WHEN = 3.4; //Note events are scheduled relative to current time. EventId ev = Manifold::ScheduleTime(WHEN, StaticHandlers::Static_handler0); double scheduledAt = WHEN + Manifold::Now(); CPPUNIT_ASSERT_DOUBLES_EQUAL(scheduledAt, ev.time, DOUBLE_COMP_DELTA); // CPPUNIT_ASSERT_DOUBLES_EQUAL(expected, actual, delta) Manifold::StopAtTime(WHEN+1); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_DOUBLES_EQUAL(scheduledAt, StaticHandlers::getTime(), DOUBLE_COMP_DELTA); } /** * Test ScheduleTime(double, void(*handler)(U1), T1) */ void testScheduleTime_s1() { if(random() % 2 == 0) Manifold::Reset(Manifold::TIMED); else Manifold::Reset(Manifold::MIXED); double WHEN = 3.4; //Note events are scheduled relative to current time. EventId ev = Manifold::ScheduleTime(WHEN, StaticHandlers::Static_handler1, m_d1); double scheduledAt = WHEN + Manifold::Now(); CPPUNIT_ASSERT_DOUBLES_EQUAL(scheduledAt, ev.time, DOUBLE_COMP_DELTA); // CPPUNIT_ASSERT_DOUBLES_EQUAL(expected, actual, delta) Manifold::StopAtTime(WHEN+1); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_DOUBLES_EQUAL(scheduledAt, StaticHandlers::getTime(), DOUBLE_COMP_DELTA); //verify handler called with right parameters CPPUNIT_ASSERT(StaticHandlers::getD1() == m_d1); } /** * Test ScheduleTime(double, void(*handler)(U1, U2), T1, T2) */ void testScheduleTime_s2() { if(random() % 2 == 0) Manifold::Reset(Manifold::TIMED); else Manifold::Reset(Manifold::MIXED); double WHEN = 3.4; //Note events are scheduled relative to current time. EventId ev = Manifold::ScheduleTime(WHEN, StaticHandlers::Static_handler2, m_d1, m_d2); double scheduledAt = WHEN + Manifold::Now(); CPPUNIT_ASSERT_DOUBLES_EQUAL(scheduledAt, ev.time, DOUBLE_COMP_DELTA); // CPPUNIT_ASSERT_DOUBLES_EQUAL(expected, actual, delta) Manifold::StopAtTime(WHEN+1); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_DOUBLES_EQUAL(scheduledAt, StaticHandlers::getTime(), DOUBLE_COMP_DELTA); //verify handler called with right parameters CPPUNIT_ASSERT(StaticHandlers::getD1() == m_d1 && StaticHandlers::getD2() == m_d2); } /** * Test ScheduleTime(double, void(*handler)(U1, U2, U3), T1, T2, T3) */ void testScheduleTime_s3() { if(random() % 2 == 0) Manifold::Reset(Manifold::TIMED); else Manifold::Reset(Manifold::MIXED); double WHEN = 3.4; //Note events are scheduled relative to current time. EventId ev = Manifold::ScheduleTime(WHEN, StaticHandlers::Static_handler3, m_d1, m_d2, m_d3); double scheduledAt = WHEN + Manifold::Now(); CPPUNIT_ASSERT_DOUBLES_EQUAL(scheduledAt, ev.time, DOUBLE_COMP_DELTA); // CPPUNIT_ASSERT_DOUBLES_EQUAL(expected, actual, delta) Manifold::StopAtTime(WHEN+1); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_DOUBLES_EQUAL(scheduledAt, StaticHandlers::getTime(), DOUBLE_COMP_DELTA); //verify handler called with right parameters CPPUNIT_ASSERT(StaticHandlers::getD1() == m_d1 && StaticHandlers::getD2() == m_d2 && StaticHandlers::getD3() == m_d3); } /** * Test ScheduleTime(double, void(*handler)(U1, U2, U3, U4), T1, T2, T3, T4) */ void testScheduleTime_s4() { if(random() % 2 == 0) Manifold::Reset(Manifold::TIMED); else Manifold::Reset(Manifold::MIXED); double WHEN = 3.4; //Note events are scheduled relative to current time. EventId ev = Manifold::ScheduleTime(WHEN, StaticHandlers::Static_handler4, m_d1, m_d2, m_d3, m_d4); double scheduledAt = WHEN + Manifold::Now(); CPPUNIT_ASSERT_DOUBLES_EQUAL(scheduledAt, ev.time, DOUBLE_COMP_DELTA); // CPPUNIT_ASSERT_DOUBLES_EQUAL(expected, actual, delta) Manifold::StopAtTime(WHEN+1); Manifold::Run(); //verify handler called at right time CPPUNIT_ASSERT_DOUBLES_EQUAL(scheduledAt, StaticHandlers::getTime(), DOUBLE_COMP_DELTA); //verify handler called with right parameters CPPUNIT_ASSERT(StaticHandlers::getD1() == m_d1 && StaticHandlers::getD2() == m_d2 && StaticHandlers::getD3() == m_d3 && StaticHandlers::getD4() == m_d4); } /** * Build a test suite. */ static CppUnit::Test* suite() { CppUnit::TestSuite* mySuite = new CppUnit::TestSuite("ManifoldTest"); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testSchedule_0", &ManifoldTest::testSchedule_0)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testSchedule_1", &ManifoldTest::testSchedule_1)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testSchedule_2", &ManifoldTest::testSchedule_2)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testSchedule_3", &ManifoldTest::testSchedule_3)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testSchedule_4", &ManifoldTest::testSchedule_4)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testScheduleHalf_0", &ManifoldTest::testScheduleHalf_0)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testScheduleHalf_1", &ManifoldTest::testScheduleHalf_1)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testScheduleHalf_2", &ManifoldTest::testScheduleHalf_2)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testScheduleHalf_3", &ManifoldTest::testScheduleHalf_3)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testScheduleHalf_4", &ManifoldTest::testScheduleHalf_4)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testScheduleClock_0", &ManifoldTest::testScheduleClock_0)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testScheduleClock_1", &ManifoldTest::testScheduleClock_1)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testScheduleClock_2", &ManifoldTest::testScheduleClock_2)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testScheduleClock_3", &ManifoldTest::testScheduleClock_3)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testScheduleClock_4", &ManifoldTest::testScheduleClock_4)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testScheduleClockHalf_0", &ManifoldTest::testScheduleClockHalf_0)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testScheduleClockHalf_1", &ManifoldTest::testScheduleClockHalf_1)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testScheduleClockHalf_2", &ManifoldTest::testScheduleClockHalf_2)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testScheduleClockHalf_3", &ManifoldTest::testScheduleClockHalf_3)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testScheduleClockHalf_4", &ManifoldTest::testScheduleClockHalf_4)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testScheduleTime_0", &ManifoldTest::testScheduleTime_0)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testScheduleTime_1", &ManifoldTest::testScheduleTime_1)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testScheduleTime_2", &ManifoldTest::testScheduleTime_2)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testScheduleTime_3", &ManifoldTest::testScheduleTime_3)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testScheduleTime_4", &ManifoldTest::testScheduleTime_4)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testSchedule_s0", &ManifoldTest::testSchedule_s0)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testSchedule_s1", &ManifoldTest::testSchedule_s1)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testSchedule_s2", &ManifoldTest::testSchedule_s2)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testSchedule_s3", &ManifoldTest::testSchedule_s3)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testSchedule_s4", &ManifoldTest::testSchedule_s4)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testScheduleHalf_s0", &ManifoldTest::testScheduleHalf_s0)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testScheduleHalf_s1", &ManifoldTest::testScheduleHalf_s1)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testScheduleHalf_s2", &ManifoldTest::testScheduleHalf_s2)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testScheduleHalf_s3", &ManifoldTest::testScheduleHalf_s3)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testScheduleHalf_s4", &ManifoldTest::testScheduleHalf_s4)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testScheduleClock_s0", &ManifoldTest::testScheduleClock_s0)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testScheduleClock_s1", &ManifoldTest::testScheduleClock_s1)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testScheduleClock_s2", &ManifoldTest::testScheduleClock_s2)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testScheduleClock_s3", &ManifoldTest::testScheduleClock_s3)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testScheduleClock_s4", &ManifoldTest::testScheduleClock_s4)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testScheduleClockHalf_s0", &ManifoldTest::testScheduleClockHalf_s0)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testScheduleClockHalf_s1", &ManifoldTest::testScheduleClockHalf_s1)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testScheduleClockHalf_s2", &ManifoldTest::testScheduleClockHalf_s2)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testScheduleClockHalf_s3", &ManifoldTest::testScheduleClockHalf_s3)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testScheduleClockHalf_s4", &ManifoldTest::testScheduleClockHalf_s4)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testScheduleTime_s0", &ManifoldTest::testScheduleTime_s0)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testScheduleTime_s1", &ManifoldTest::testScheduleTime_s1)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testScheduleTime_s2", &ManifoldTest::testScheduleTime_s2)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testScheduleTime_s3", &ManifoldTest::testScheduleTime_s3)); mySuite->addTest(new CppUnit::TestCaller<ManifoldTest>("testScheduleTime_s4", &ManifoldTest::testScheduleTime_s4)); /* */ return mySuite; } }; Clock ManifoldTest::MasterClock(MASTER_CLOCK_HZ); Clock ManifoldTest::Clock1(CLOCK1_HZ); int main() { struct timeval t; gettimeofday(&t, NULL); srandom(t.tv_usec); CppUnit::TextUi::TestRunner runner; runner.addTest( ManifoldTest::suite() ); if(runner.run("", false)) return 0; //all is well else return 1; }
[ "karthik.the.rao@gmail.com" ]
karthik.the.rao@gmail.com
595cf61b5f3f89cb023717a1c900d4f29bb21416
8eb16117b9064d905f22d6f11d9e8123bfacee10
/src/jaws/rs232.h
9add00f7242eb5b105f4100ff90ada9a4dd33c8a
[]
no_license
YanyZhao/VisionGrab
cf8c4031277b581d1eeb21b8056d46713de00af7
10e071f16a223fcd8cf3c92c0bdb7ebe5503da32
refs/heads/master
2022-12-29T19:42:36.876733
2020-10-15T02:36:39
2020-10-15T02:36:39
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,385
h
#ifndef github_com_kranfix_rs232_rs232_h #define github_com_kranfix_rs232_rs232_h #include <stdio.h> #include <string.h> #include <termios.h> #include <sys/ioctl.h> #include <unistd.h> #include <fcntl.h> #include <sys/types.h> #include <sys/stat.h> #include <limits.h> namespace kfx { const char Comports[22][13] = {"/dev/ttyACM0", "/dev/ttyS1", "/dev/ttyS2", "/dev/ttyS3", "/dev/ttyS4", "/dev/ttyS5", "/dev/ttyS6", "/dev/ttyS7", "/dev/ttyS8", "/dev/ttyS9", "/dev/ttyS10", "/dev/ttyS11", "/dev/ttyS12", "/dev/ttyS13", "/dev/ttyS14", "/dev/ttyS15", "/dev/ttyUSB0", "/dev/ttyUSB1", "/dev/ttyUSB2", "/dev/ttyUSB3", "/dev/ttyUSB4", "/dev/ttyUSB5"}; class RS232 { char devname[13]; // Device Name int baudr, port; // Baudrate and Port Number bool available; struct termios ops; // old port settings public: RS232(char *, int); int IsAvailable() { return available; } char *GetDeviceName() { return devname; } int Read(unsigned char); int Read(unsigned char *, int); int Write(unsigned char); int Write(unsigned char *, int); void Print(const char *); void Close(); int IsCTSEnabled(); }; } #endif // giihub_com_kranfix_rs232_rs232_h
[ "422168787@qq.com" ]
422168787@qq.com