blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 2 247 | content_id stringlengths 40 40 | detected_licenses listlengths 0 57 | license_type stringclasses 2 values | repo_name stringlengths 4 111 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringlengths 4 58 | visit_date timestamp[ns]date 2015-07-25 18:16:41 2023-09-06 10:45:08 | revision_date timestamp[ns]date 1970-01-14 14:03:36 2023-09-06 06:22:19 | committer_date timestamp[ns]date 1970-01-14 14:03:36 2023-09-06 06:22:19 | github_id int64 3.89k 689M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 25 values | gha_event_created_at timestamp[ns]date 2012-06-07 00:51:45 2023-09-14 21:58:52 ⌀ | gha_created_at timestamp[ns]date 2008-03-27 23:40:48 2023-08-24 19:49:39 ⌀ | gha_language stringclasses 159 values | src_encoding stringclasses 34 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 2 classes | length_bytes int64 7 10.5M | extension stringclasses 111 values | filename stringlengths 1 195 | text stringlengths 7 10.5M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
973a51fafe4b14fd4b6fb6e9c470d65fbd2aaa0b | a98b91b68030137c1afad4e5e3136656e1052f60 | /MegaArrowCross/include/Obstacle.h | 8d160caee36766d179e9b76f0ff86b1e87f6bc3c | [] | no_license | CastBart/MegaArrow | efe10b9454e66f1f088afefd90fec1a31aa69f52 | 4e9e976c210fed9603557d7efcd62d83559464ea | refs/heads/master | 2020-03-14T14:22:12.113025 | 2018-05-16T15:44:02 | 2018-05-16T15:44:02 | 131,652,171 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 556 | h | Obstacle.h | #pragma once
#include "SFML\Graphics.hpp"
#include <memory>
class Obstacle
{
public:
Obstacle(sf::Vector2f position, int radius, int speed);
~Obstacle();
void update(double dt);
void draw(sf::RenderWindow &window);
sf::Vector2f Pos();
sf::FloatRect boudingBox();
private:
//circle shape representing the obatacle
sf::CircleShape m_obstacle;
// position of the obsatcle
sf::Vector2f m_position;
// velocity of the obstacle
sf::Vector2f m_velocity;
// speed of the obstacle
int m_speed;
// radius of the obstacle
int m_radius;
};
|
1b58d2dd36bdd1ea0e70ddc1f951af831d416cb6 | 332692cfb3a42a549074a44cd3beaacfe089a079 | /include/mensura/extensions/TriggerRange.hpp | f28b10293475be7e8a1fed95c762769457f44e16 | [] | no_license | andrey-popov/mensura | deaad1c7758407f0baac75e131d81bea59b3a60c | 1bec1ef29bb327c492d764c433bcc28ff840e331 | refs/heads/master | 2020-04-14T12:12:27.692722 | 2019-05-25T13:35:40 | 2019-05-25T13:50:30 | 11,433,820 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 19 | hpp | TriggerRange.hpp | ../TriggerRange.hpp |
77f05d0d05f746701f39c02b4966d726f7afc904 | 15fbb35cb68bd707f6a1eee9485e2ee37fc52876 | /lib/parameter/tests/parameter_types_test.cpp | cdf2421299e8fc3a623f9ad7ed9f4987648bfa0a | [
"MIT"
] | permissive | cvra/robot-software | f922ec80a5d24f6d7904c1586a9d5f5aa7c1b4bf | dcbfa7a99c452145e53142c182ae909079a63962 | refs/heads/master | 2023-07-20T09:58:30.975456 | 2022-03-20T17:53:25 | 2022-03-20T17:53:25 | 68,636,610 | 42 | 23 | MIT | 2023-07-06T21:24:19 | 2016-09-19T19:00:32 | C | UTF-8 | C++ | false | false | 4,108 | cpp | parameter_types_test.cpp | #include "CppUTest/TestHarness.h"
#include <parameter/parameter.h>
TEST_GROUP (IntegerParamter) {
parameter_namespace_t ns;
parameter_t p;
void setup() override
{
parameter_namespace_declare(&ns, nullptr, nullptr);
parameter_integer_declare(&p, &ns, "int");
}
};
TEST(IntegerParamter, TypeFlag)
{
CHECK_EQUAL(_PARAM_TYPE_INTEGER, p.type);
}
TEST(IntegerParamter, CanSet)
{
parameter_integer_set(&p, 42);
CHECK_TRUE(parameter_changed(&p));
CHECK_EQUAL(42, p.value.i);
}
TEST(IntegerParamter, CanGet)
{
parameter_integer_set(&p, 42);
CHECK_EQUAL(42, parameter_integer_get(&p));
CHECK_FALSE(parameter_changed(&p));
}
TEST(IntegerParamter, CanRead)
{
parameter_integer_set(&p, 42);
CHECK_EQUAL(42, parameter_integer_read(&p));
CHECK_TRUE(parameter_changed(&p));
}
TEST(IntegerParamter, CanDeclareWithDefault)
{
parameter_t p_default;
parameter_integer_declare_with_default(&p_default, &ns, "defaultint", 1337);
CHECK_TRUE(parameter_changed(&p_default));
CHECK_EQUAL(1337, parameter_integer_get(&p_default));
}
TEST_GROUP (StringParamter) {
parameter_namespace_t ns;
parameter_t p;
char str_buffer[8];
void setup() override
{
parameter_namespace_declare(&ns, nullptr, nullptr);
parameter_string_declare(&p, &ns, "str", str_buffer, sizeof(str_buffer));
}
};
TEST(StringParamter, TypeFlag)
{
CHECK_EQUAL(_PARAM_TYPE_STRING, p.type);
}
TEST(StringParamter, BufLen)
{
CHECK_EQUAL(sizeof(str_buffer), p.value.str.buf_len);
}
TEST(StringParamter, CanSet)
{
parameter_string_set(&p, "hello");
CHECK_TRUE(parameter_changed(&p));
BYTES_EQUAL('h', p.value.str.buf[0]);
BYTES_EQUAL('e', p.value.str.buf[1]);
BYTES_EQUAL('l', p.value.str.buf[2]);
BYTES_EQUAL('l', p.value.str.buf[3]);
BYTES_EQUAL('o', p.value.str.buf[4]);
CHECK_EQUAL(5, p.value.str.len);
}
TEST(StringParamter, CanGet)
{
parameter_string_set(&p, "hello");
char buf[9];
parameter_string_get(&p, buf, sizeof(buf));
STRCMP_EQUAL("hello", buf);
CHECK_FALSE(parameter_changed(&p));
}
TEST(StringParamter, CanRead)
{
parameter_string_set(&p, "hello");
char buf[9];
int len = parameter_string_read(&p, buf, sizeof(buf));
CHECK_EQUAL(5, len);
STRCMP_EQUAL("hello", buf);
CHECK_TRUE(parameter_changed(&p));
}
TEST(StringParamter, CanGetSmallBuf)
{
parameter_string_set(&p, "hello");
char buf[3]; // "he"+'\0'
int len = parameter_string_get(&p, buf, sizeof(buf));
CHECK_EQUAL(5, len);
STRCMP_EQUAL("he", buf);
CHECK_FALSE(parameter_changed(&p));
}
TEST(StringParamter, CanDeclareWithDefault)
{
parameter_t p_default;
parameter_string_declare_with_default(&p_default, &ns, "defaultstr",
str_buffer, sizeof(str_buffer), "#default");
char buf[9];
parameter_string_read(&p_default, buf, sizeof(buf));
STRCMP_EQUAL("#default", buf);
CHECK_TRUE(parameter_changed(&p_default));
}
TEST_GROUP (BoolParameter) {
parameter_namespace_t ns;
parameter_t p;
void setup() override
{
parameter_namespace_declare(&ns, nullptr, nullptr);
parameter_boolean_declare(&p, &ns, "bool");
}
};
TEST(BoolParameter, TypeFlag)
{
CHECK_EQUAL(_PARAM_TYPE_BOOLEAN, p.type);
STRCMP_EQUAL("bool", p.id);
}
TEST(BoolParameter, CanSet)
{
parameter_boolean_set(&p, true);
CHECK_TRUE(parameter_changed(&p));
CHECK_EQUAL(true, p.value.b);
}
TEST(BoolParameter, CanRead)
{
parameter_boolean_set(&p, true);
CHECK_EQUAL(true, parameter_boolean_read(&p));
CHECK_TRUE(parameter_changed(&p));
}
TEST(BoolParameter, CanGet)
{
parameter_boolean_set(&p, true);
CHECK_EQUAL(true, parameter_boolean_get(&p));
CHECK_FALSE(parameter_changed(&p));
}
TEST(BoolParameter, CanDeclareWithDefault)
{
parameter_t p_default;
parameter_boolean_declare_with_default(&p_default, &ns, "defaultbool", true);
CHECK_TRUE(parameter_changed(&p_default));
CHECK_EQUAL(true, parameter_boolean_get(&p_default));
}
|
42649148fac84e81ba26ea51add1a8dbb4160f1b | 480a519a2861718ee8d787727ea889271429e3f1 | /cpp_NN/general_function.h | 6b840de8de0ceced75b038536c39fad53a3b3994 | [] | no_license | fukushi0294/cpp_NN | 01377fc7cbf9e23512db21c1dae1b57142c1089c | c2a5a9b5d16e90cbecb71a2ba44943fd6a76f15c | refs/heads/master | 2020-05-15T06:20:28.364967 | 2019-06-07T15:42:04 | 2019-06-07T15:42:04 | 182,122,084 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,704 | h | general_function.h | #pragma once
#include <math.h>
#include <Eigen/Core>
#include <Eigen/Geometry>
using namespace Eigen;
double sigmoid(double m)
{
double y = 1 / (1 + std::exp(-m));
return y;
}
void softmax(MatrixXd x, MatrixXd *y)
{
double sum = 0;
for (int i = 0; i < x.rows(); i++) {
for (int j = 0; j < x.cols(); j++) {
sum += std::exp(x(i, j));
}
}
for (int i = 0; i < x.rows(); i++) {
for (int j = 0; j < x.cols(); j++) {
(*y)(i, j) = std::exp(x(i, j)) / sum;
}
}
}
double cross_entropy_err(MatrixXd x, MatrixXd t)
{
double err = 0;
double delta = 1e-4;
MatrixXd log_x = (x.array() + delta).log();
for (int i = 0; i < t.rows(); i++) {
err = err+(-1*t(i, 0)*log_x(i, 0));
}
return err;
}
// Dynamically giving type , but this is not recommended...
/*
template <class T>
MatrixXd liner_num_grad_weight_tmp(MatrixXd x, MatrixXd t, T obj, MatrixXd out) {
int ret = 0;
try
{
// Check the member of obj correspoding to out using pointer
// Is it need to add one more member pointing all member ?
for (int i = 0; sizeof(obj.p) / sizeof(obj.p[0]); i++) {
if (obj.p[i] == out) {
ret = i;
break;
}
}
}
catch (const std::exception&)
{
std::cout << "something wrong method\n" << std::endl;
}
MatrixXd dout = MatrixXd::Zero(*(obj->p[ret]).rows(), *(obj->p[ret]).cols());
double h = 1e-4;
for (int i = 0; i < *(obj.p[ret]).rows(); i++) {
for (int j = 0; j < *(obj.p[ret]).cols(); j++) {
double tmp = *(obj.p[ret])(i, j);
*(obj.p[ret])(i, j) = tmp + h;
double tmp1 = obj.loss(x, t);
*(obj.p[ret])(i, j) = tmp - h;
double tmp2 = obj.loss(x, t);
dW(i, j) = (tmp1 - tmp2) / (2 * h);
*(obj.p[ret])(i, j) = tmp;
}
}
return dout;
}
*/ |
1d2192c57184f00d456a13b2c0d1623eb09924a6 | fb7efe44f4d9f30d623f880d0eb620f3a81f0fbd | /base/trace_event/memory_peak_detector.h | bbe205ba2e4ff7f1178d5907257985e4e43b474e | [
"BSD-3-Clause"
] | permissive | wzyy2/chromium-browser | 2644b0daf58f8b3caee8a6c09a2b448b2dfe059c | eb905f00a0f7e141e8d6c89be8fb26192a88c4b7 | refs/heads/master | 2022-11-23T20:25:08.120045 | 2018-01-16T06:41:26 | 2018-01-16T06:41:26 | 117,618,467 | 3 | 2 | BSD-3-Clause | 2022-11-20T22:03:57 | 2018-01-16T02:09:10 | null | UTF-8 | C++ | false | false | 7,410 | h | memory_peak_detector.h | // Copyright 2017 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 BASE_TRACE_EVENT_MEMORY_PEAK_DETECTOR_H_
#define BASE_TRACE_EVENT_MEMORY_PEAK_DETECTOR_H_
#include <stdint.h>
#include <memory>
#include <vector>
#include "base/base_export.h"
#include "base/callback.h"
#include "base/macros.h"
#include "base/memory/ref_counted.h"
namespace base {
class SequencedTaskRunner;
namespace trace_event {
struct MemoryDumpProviderInfo;
// Detects temporally local memory peaks. Peak detection is based on
// continuously querying memory usage using MemoryDumpprovider(s) that support
// fast polling (e.g., ProcessMetricsDumpProvider which under the hoods reads
// /proc/PID/statm on Linux) and using a combination of:
// - An static threshold (currently 1% of total system memory).
// - Sliding window stddev analysis.
// Design doc: https://goo.gl/0kOU4A .
// This class is NOT thread-safe, the caller has to ensure linearization of
// the calls to the public methods. In any case, the public methods do NOT have
// to be called from the |task_runner| on which the polling tasks run.
class BASE_EXPORT MemoryPeakDetector {
public:
using OnPeakDetectedCallback = RepeatingClosure;
using DumpProvidersList = std::vector<scoped_refptr<MemoryDumpProviderInfo>>;
using GetDumpProvidersFunction = RepeatingCallback<void(DumpProvidersList*)>;
enum State {
NOT_INITIALIZED = 0, // Before Setup()
DISABLED, // Before Start() or after Stop().
ENABLED, // After Start() but no dump_providers_ are available.
RUNNING // After Start(). The PollMemoryAndDetectPeak() task is scheduled.
};
// Peak detector configuration, passed to Start().
struct BASE_EXPORT Config {
Config();
Config(uint32_t polling_interval_ms,
uint32_t min_time_between_peaks_ms,
bool enable_verbose_poll_tracing);
// The rate at which memory will be polled. Polls will happen on the task
// runner passed to Setup().
uint32_t polling_interval_ms;
// Two consecutive peak detection callbacks will happen at least
// |min_time_between_peaks_ms| apart from each other.
uint32_t min_time_between_peaks_ms;
// When enabled causes a TRACE_COUNTER event to be injected in the trace
// for each poll (if tracing is enabled).
bool enable_verbose_poll_tracing;
};
static MemoryPeakDetector* GetInstance();
// Configures the peak detector, binding the polling tasks on the given
// thread. Setup() can be called several times, provided that: (1) Stop()
// is called; (2a) the previous task_runner is flushed or (2b) the task_runner
// remains the same.
// GetDumpProvidersFunction: is the function that will be invoked to get
// an updated list of polling-capable dump providers. This is really just
// MemoryDumpManager::GetDumpProvidersForPolling, but this extra level of
// indirection allows easier testing.
// SequencedTaskRunner: the task runner where PollMemoryAndDetectPeak() will
// be periodically called.
// OnPeakDetectedCallback: a callback that will be invoked on the
// given task runner when a memory peak is detected.
void Setup(const GetDumpProvidersFunction&,
const scoped_refptr<SequencedTaskRunner>&,
const OnPeakDetectedCallback&);
// Releases the |task_runner_| and the bound callbacks.
void TearDown();
// This posts a task onto the passed task runner which refreshes the list of
// dump providers via the GetDumpProvidersFunction. If at least one dump
// provider is available, this starts immediately polling on the task runner.
// If not, the detector remains in the ENABLED state and will start polling
// automatically (i.e. without requiring another call to Start()) on the
// next call to NotifyMemoryDumpProvidersChanged().
void Start(Config);
// Stops the polling on the task runner (if was active at all). This doesn't
// wait for the task runner to drain pending tasks, so it is possible that
// a polling will happen concurrently (or in the immediate future) with the
// Stop() call. It is responsibility of the caller to drain or synchronize
// with the task runner.
void Stop();
// If Start()-ed, prevents that a peak callback is triggered before the next
// |min_time_between_peaks_ms|. No-op if the peak detector is not enabled.
void Throttle();
// Used by MemoryDumpManager to notify that the list of polling-capable dump
// providers has changed. The peak detector will reload the list on the next
// polling task. This function can be called before Setup(), in which
// case will be just a no-op.
void NotifyMemoryDumpProvidersChanged();
void SetStaticThresholdForTesting(uint64_t static_threshold_bytes);
private:
friend class MemoryPeakDetectorTest;
static constexpr uint32_t kSlidingWindowNumSamples = 50;
MemoryPeakDetector();
~MemoryPeakDetector();
// All these methods are always called on the |task_runner_|.
void StartInternal(Config);
void StopInternal();
void TearDownInternal();
void ReloadDumpProvidersAndStartPollingIfNeeded();
void PollMemoryAndDetectPeak(uint32_t expected_generation);
bool DetectPeakUsingSlidingWindowStddev(uint64_t last_sample_bytes);
void ResetPollHistory(bool keep_last_sample = false);
// It is safe to call these testing methods only on the |task_runner_|.
State state_for_testing() const { return state_; }
uint32_t poll_tasks_count_for_testing() const {
return poll_tasks_count_for_testing_;
}
// The task runner where all the internal calls are posted onto. This field
// must be NOT be accessed by the tasks posted on the |task_runner_| because
// there might still be outstanding tasks on the |task_runner_| while this
// refptr is reset. This can only be safely accessed by the public methods
// above, which the client of this class is supposed to call sequentially.
scoped_refptr<SequencedTaskRunner> task_runner_;
// After the Setup() call, the fields below, must be accessed only from
// the |task_runner_|.
// Bound function to get an updated list of polling-capable dump providers.
GetDumpProvidersFunction get_dump_providers_function_;
// The callback to invoke when peaks are detected.
OnPeakDetectedCallback on_peak_detected_callback_;
// List of polling-aware dump providers to invoke upon each poll.
DumpProvidersList dump_providers_;
// The generation is incremented every time the |state_| is changed and causes
// PollMemoryAndDetectPeak() to early out if the posted task doesn't match the
// most recent |generation_|. This allows to drop on the floor outstanding
// PostDelayedTask that refer to an old sequence that was later Stop()-ed or
// disabled because of NotifyMemoryDumpProvidersChanged().
uint32_t generation_;
State state_;
// Config passed to Start(), only valid when |state_| = {ENABLED, RUNNING}.
Config config_;
uint64_t static_threshold_bytes_;
uint32_t skip_polls_;
uint64_t last_dump_memory_total_;
uint64_t samples_bytes_[kSlidingWindowNumSamples];
uint32_t samples_index_;
uint32_t poll_tasks_count_for_testing_;
DISALLOW_COPY_AND_ASSIGN(MemoryPeakDetector);
};
} // namespace trace_event
} // namespace base
#endif // BASE_TRACE_EVENT_MEMORY_PEAK_DETECTOR_H_
|
d232b45f1aef96a36fede229145bfec89c86df07 | 4b10301804f0c9bbc32c12b20e70c4e91cfdaf24 | /nelson/SolverCholeskyDense.cpp | 458f67b1bd651b9555203e58ef7386f4217d9714 | [] | no_license | simoneceriani/nelson | a99f446448e51bf59af9a655769ed10247ae72ef | 5cd24d11ab7a7c8219f0dbac621461e7527c3e3e | refs/heads/master | 2023-07-14T05:10:41.728514 | 2021-06-18T10:38:27 | 2021-06-18T10:38:27 | 399,262,803 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 91 | cpp | SolverCholeskyDense.cpp | #include "SolverCholeskyDense.h"
#include "SolverCholeskyDense.hpp"
namespace nelson {
} |
26f4496cd7be30f7ce9513c9cb88345587d84358 | aa96ae5fee9e0dedaaf73bfb6c820db3e844a5de | /Sources/Interface/LogDlg.cpp | 7e841c08c7a2ebb4c0eaf0b5ed82da2f827bd098 | [] | no_license | jotak/shahnarman | 1aded6d198d8b8abfd1c43f7f8230403b5034762 | 0876f31e0572b9f465cf9d5ff4582045488788e9 | refs/heads/master | 2021-01-01T18:33:26.850009 | 2012-09-17T20:19:10 | 2012-09-17T20:19:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,465 | cpp | LogDlg.cpp | #include "LogDlg.h"
#include "../LocalClient.h"
#include "../Data/LocalisationTool.h"
#include "../GUIClasses/guiButton.h"
#include "../GUIClasses/guiFrame.h"
#include "../Gameboard/Unit.h"
#include "../Gameboard/Town.h"
#include "../Gameboard/GameboardManager.h"
#include "../Interface/InterfaceManager.h"
#include "../Interface/MapObjectDlg.h"
#include "../Fx/FxManager.h"
#define SPACING 5
#define HSPACING 3
// -----------------------------------------------------------------
// Name : LogDlg
// Constructor
// -----------------------------------------------------------------
LogDlg::LogDlg(LocalClient * pLocalClient) : guiDocument()
{
m_pLocalClient = pLocalClient;
m_uLogs = 0;
m_pAllLogs = new ObjectList(true);
m_pMapPosList = new ObjectList(true);
char sTitle[64];
i18n->getText("LOG", sTitle, 64);
init(sTitle,
pLocalClient->getDisplay()->getTextureEngine()->findTexture("interface:WinBg"),
0, 0, 1, 1, pLocalClient->getDisplay());
m_bLastLogIsNewTurn = true;
}
// -----------------------------------------------------------------
// Name : ~LogDlg
// Destructor
// -----------------------------------------------------------------
LogDlg::~LogDlg()
{
#ifdef DBG_VERBOSE1
printf("Begin destroy LogDlg\n");
#endif
delete m_pMapPosList;
delete m_pAllLogs;
#ifdef DBG_VERBOSE1
printf("End destroy LogDlg\n");
#endif
}
// -----------------------------------------------------------------
// Name : onButtonEvent
// -----------------------------------------------------------------
bool LogDlg::onButtonEvent(ButtonAction * pEvent, guiComponent * pCpnt)
{
if (strcmp(pCpnt->getId(), "MapObjScreen") == 0)
{
MapObject * pObj = (MapObject*) pCpnt->getAttachment();
assert(pObj != NULL);
MapTile * pTile = m_pLocalClient->getGameboard()->getMap()->getTileAt(pObj->getMapPos());
assert(pTile != NULL);
m_pLocalClient->getInterface()->showMapObjectDialog(pTile);
MapObjectDlg * pDlg = m_pLocalClient->getInterface()->getMapObjectDialog();
pDlg->setSelectedObject(pObj);
m_pLocalClient->getFx()->zoomToMapPos(pObj->getMapPos());
}
else if (strcmp(pCpnt->getId(), "ZoomTo") == 0)
{
CoordsObject * pObj = (CoordsObject*) pCpnt->getAttachment();
assert(pObj != NULL);
m_pLocalClient->getFx()->zoomToMapPos(pObj->getCoordsMap());
}
return true;
}
// -----------------------------------------------------------------
// Name : log
// -----------------------------------------------------------------
void LogDlg::log(char * sText, u8 uLevel, u8 uAction, void * pParam)
{
int xPxl = SPACING;
int yPxl = SPACING;
guiButton * pBtn = NULL;
char sTooltip[LABEL_MAX_CHARS];
switch (uAction)
{
case LOG_ACTION_ZOOMTO:
{
CoordsObject * pCoords = new CoordsObject(*(CoordsMap*) pParam);
m_pMapPosList->addLast(pCoords);
int iTex = getDisplay()->getTextureEngine()->loadTexture("eye", false, 0, 25, 0, 16);
pBtn = guiButton::createDefaultImageButton(iTex, "ZoomTo", getDisplay());
pBtn->moveTo(xPxl, yPxl);
pBtn->setAttachment(pCoords);
i18n->getText("SEE", sTooltip, LABEL_MAX_CHARS);
pBtn->setTooltipText(sTooltip);
break;
}
case LOG_ACTION_UNITSCREEN:
case LOG_ACTION_TOWNSCREEN:
{
int iTex = getDisplay()->getTextureEngine()->loadTexture("eye", false, 0, 25, 0, 16);
pBtn = guiButton::createDefaultImageButton(iTex, "MapObjScreen", getDisplay());
pBtn->moveTo(xPxl, yPxl);
BaseObject * pObj = (BaseObject*) pParam;
pBtn->setAttachment(pObj);
i18n->getText("SEE", sTooltip, LABEL_MAX_CHARS);
pBtn->setTooltipText(sTooltip);
break;
}
default:
break;
}
xPxl += (pBtn == NULL) ? 0 : pBtn->getWidth() + SPACING;
int wPxl = getWidth() - xPxl;
guiLabel * pLbl = new guiLabel();
pLbl->init(sText, TEXT_FONT, TEXT_COLOR, "", xPxl, yPxl, wPxl, 0, getDisplay());
int lblHeight = pLbl->getHeight();
guiLabel * pLbl2 = pLbl;
guiComponent * cpnt = getFirstComponent();
while (cpnt != NULL)
{
cpnt->moveBy(0, lblHeight + HSPACING);
if (cpnt->getType() & GOTYPE_LABEL && cpnt->getYPos() > yPxl)
{
yPxl = cpnt->getYPos();
pLbl2 = (guiLabel*) cpnt;
}
cpnt = getNextComponent();
}
addComponent(pLbl);
if (pBtn != NULL)
addComponent(pBtn);
setHeight(yPxl + pLbl2->getHeight() + HSPACING);
m_uLogs++;
guiFrame * pFrm = m_pLocalClient->getInterface()->findFrameFromDoc(this);
if (!pFrm->isSticked())
pFrm->extract();
// pFrm->flash(1.0f);
if (uLevel > 0)
m_pLocalClient->getFx()->showMessage(pLbl->getText());
m_bLastLogIsNewTurn = false;
m_pAllLogs->addLast(new LogItem(pLbl, pBtn, m_pLocalClient->getTurn()));
}
// -----------------------------------------------------------------
// Name : logNewTurn
// -----------------------------------------------------------------
void LogDlg::logNewTurn()
{
if (!m_bLastLogIsNewTurn)
{
char sText[64];
char sBuf[64];
i18n->getText("NEW_TURN", sBuf, 64);
snprintf(sText, 64, "** %s **", sBuf);
log(sText);
m_bLastLogIsNewTurn = true;
}
// Remove perimed items
if (m_pLocalClient->getClientParameters()->iGameLogsLifetime >= 0)
{
bool bDeleted = false;
LogItem * pItem = (LogItem*) m_pAllLogs->getFirst(0);
while (pItem != NULL)
{
if (pItem->iTurn < m_pLocalClient->getTurn() - m_pLocalClient->getClientParameters()->iGameLogsLifetime)
{
getComponentsList()->deleteObject(pItem->pLbl, true);
if (pItem->pBtn != NULL)
getComponentsList()->deleteObject(pItem->pBtn, true);
bDeleted = true;
}
pItem = (LogItem*) m_pAllLogs->getNext(0);
}
if (bDeleted)
{
int maxy = 0;
guiComponent * pCpnt = getFirstComponent();
while (pCpnt != NULL)
{
if (pCpnt->getYPos() + pCpnt->getHeight() + HSPACING > maxy)
maxy = pCpnt->getYPos() + pCpnt->getHeight() + HSPACING;
pCpnt = getNextComponent();
}
setHeight(maxy);
}
}
}
|
af15ee35f5c33a023fc61d130db128521896faf3 | 1c0c7c1c3674cd6d49d746a8d5c2577e019254ed | /Face.cpp | 712ca3217a64f5519fc9eac397ff09a8baf1a19e | [] | no_license | alexandreblin/OpenGL-SchoolProject | 75cb49ae1b76804ab01dea68231807cd7f00d2d8 | 374334da02f2e4544200d14aad8d0c75b3ded0a9 | refs/heads/master | 2020-05-17T04:19:38.870871 | 2011-04-06T19:06:44 | 2011-04-06T19:06:44 | 1,547,971 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 699 | cpp | Face.cpp | #include "Face.h"
Face::Face() : m_material(NULL) {}
std::vector<int> & Face::vertices() {
return m_vertices;
}
std::vector<float> & Face::texCoords() {
return m_texCoords;
}
std::vector<int> & Face::normals() {
return m_normals;
}
void Face::setMaterial(Material *mat) {
if (mat == NULL)
mat = new Material(); // création d'un matériau par défaut si aucun n'est précisé
m_material = mat;
}
Material * Face::material() {
return m_material;
}
bool Face::hasTexCoords() {
return (m_texCoords.size() == m_vertices.size());
}
bool Face::hasNormals() {
return (m_normals.size() == m_vertices.size());
}
unsigned int Face::numVertices() {
return m_vertices.size();
}
|
4a64da9f18605bdab46442e8e6750cdfe809b342 | 5cabb19260371b30e40c1189a5cd3650aeafd7b0 | /src/SubStringSearchTests.cpp | 9506703f09786c93e236533f7cb8167c34233326 | [] | no_license | QuentinDuval/Algorithms-Tests | 639e22d9a9bd984785a2c4ab8a591724377a1946 | d05db1cef812aeecd2c641863c4327b03c29ff01 | refs/heads/master | 2020-12-24T14:01:04.993845 | 2015-03-15T12:30:25 | 2015-03-15T12:30:25 | 31,845,130 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,396 | cpp | SubStringSearchTests.cpp | #include "SubStringSearchTests.h"
#include "SubStringSearch.h"
#include "utils/Timer.h"
#include "utils/Utils.h"
#include <assert.h>
#include <iostream>
namespace algorithm
{
template<typename SearchImpl>
void basicTests(SearchImpl search)
{
static const std::string text = "searching for random strings";
assert(0 == search("searching for random strings", "searching"));
assert(9 == search("searching for random strings", " "));
assert(21 == search("searching for random strings", "strings"));
assert(12 == search("ababababababababac", "ababac"));
assert(std::string::npos == search("searching for random strings", "ramdon"));
assert(std::string::npos == search("searching for random strings", ""));
assert(std::string::npos == search("", "ramdon"));
}
template<typename SearchImpl>
void performanceTests(SearchImpl search, std::string const& algorithmName)
{
std::cout << " * " << algorithmName << std::endl;
const size_t N = 20000000;
const size_t M = 50;
const std::string text(N, 'a');
utils::showTimeLog(std::cout, "1 b, 49 a", [&]{ search(text, "b" + std::string(M - 1, 'a')); });
utils::showTimeLog(std::cout, "1 a, 49 b", [&]{ search(text, "a" + std::string(M - 1, 'b')); });
utils::showTimeLog(std::cout, "49 a, 1 b", [&]{ search(text, std::string(M - 1, 'a') + "b"); });
utils::showTimeLog(std::cout, "49 b, 1 a", [&]{ search(text, std::string(M - 1, 'b') + "a"); });
}
//--------------------------------------------------------------------------
void subStringSearchTests()
{
basicTests(BruteForceSearch::search);
basicTests(BoyerMooreSearch::search);
basicTests(RabinKarpSearch::search);
basicTests(KMPSearchFullDfa::search);
basicTests(KMPSearchBorder::search);
}
void subStringSearchPerfTests()
{
std::cout << std::endl << "[String search timings] (in milliseconds)" << std::endl;
std::cout << "(searching a string made of 'a' only)" << std::endl;
performanceTests(BruteForceSearch::search, "Brute Force");
performanceTests(BoyerMooreSearch::search, "Boyer Moore");
performanceTests(RabinKarpSearch::search, "Rabin Karp");
performanceTests(KMPSearchFullDfa::search, "KMP search (dfa)");
performanceTests(KMPSearchBorder::search, "KMP search (border)");
}
}
|
2a4a829c9e6eae2cec07f6dd30ce59fffa556227 | 8e8fc1b1ed2dbaa4e3a7b042ce46140f7631f164 | /drawtools.h | e28545c571b9abbe041823b5f25fbeadfbdf3664 | [] | no_license | RithZU/OpenGL_QT_Paint | 96e4f553a26767324745c0c24749f4164b1588cc | e726205d3436ff95cecf4edd58bb31704480a57a | refs/heads/master | 2020-03-23T09:03:47.250440 | 2018-07-18T01:33:17 | 2018-07-18T01:33:17 | 141,364,766 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,468 | h | drawtools.h | #ifndef DRAWTOOLS_H
#define DRAWTOOLS_H
#include<QColor>
#include <QDebug>
#include "common.h"
#include <vector>
#include <cmath>
using namespace std;
class DrawTool
{
public:
//function of tools
virtual void startDrawing(GLint x, GLint y) = 0;
virtual void update(GLint x, GLint y) = 0;
virtual void stopDrawing(GLint x, GLint y) = 0;
virtual void drawTemporary() {}
virtual void drawRemaining() {}
~DrawTool() {}
};
//Pencil is a subclass of tools
class Pencil: public DrawTool
{
private:
//color of tool
QColor color;
Object temp;
vector< GLint > points;
float LineWidth=3;
float newLineWidth=3;
float newLineWidthRemaining=3;
float LineWidthCircle = 3;
public:
Pencil();
~Pencil() {}
void startDrawing(GLint x, GLint y); //drawing
void update(GLint x, GLint y); //update
void stopDrawing(GLint x, GLint y); //stop drawing
void drawTemporary(); //temporary draw
void drawRemaining();
vector<vector<GLint> > newpoints;
// vector<vector<GLint> > getNewpoints() const;
float getLineWidth();
void setLineWidth(float value);
vector<vector<GLint> > getNewpoints() const;
void setNewpoints(const vector<vector<GLint> > &value);
};
class Line: public DrawTool
{
private:
//color of tool
QColor color;
Object temp;
vector< GLint > points;
float LineWidth=3;
float newLineWidth=3;
float newLineWidthRemaining=3;
public:
Line();
~Line() {}
void startDrawing(GLint x, GLint y); //drawing
void update(GLint x, GLint y); //update
void stopDrawing(GLint x, GLint y); //stop drawing
void drawTemporary(); //temporary draw
void drawRemaining();
vector<vector<GLint> > newpoints;
// vector<vector<GLint> > getNewpoints() const;
float getLineWidth();
void setLineWidth(float value);
vector<vector<GLint> > getNewpoints() const;
void setNewpoints(const vector<vector<GLint> > &value);
};
class Circle: public DrawTool
{
private:
//color of tool
QColor color;
Object temp;
vector< GLint > points;
float LineWidth=3;
float newLineWidth=3;
float newLineWidthRemaining=3;
float radius=1;
public:
Circle();
~Circle() {}
void startDrawing(GLint x, GLint y); //drawing
void update(GLint x, GLint y); //update
void stopDrawing(GLint x, GLint y); //stop drawing
void drawTemporary(); //temporary draw
void drawRemaining();
void drawMidPoint(float xCenter,float yCenter,float radius);
void drawCircle(float xCircle,float yCircle);
vector<vector<GLint> > newpoints;
// vector<vector<GLint> > getNewpoints() const;
float getLineWidth();
void setLineWidth(float value);
float findRadius(int x1, int x2,int y1, int y2)
{
return sqrt((pow(y2-y1,2)+pow(x2-x1,2)));
}
vector<vector<GLint> > getNewpoints() const;
void setNewpoints(const vector<vector<GLint> > &value);
};
class Rect: public DrawTool
{
private:
//color of tool
QColor color;
Object temp;
vector< GLint > points;
float LineWidth=3;
float newLineWidth=3;
float newLineWidthRemaining=3;
public:
Rect();
~Rect() {}
void startDrawing(GLint x, GLint y); //drawing
void update(GLint x, GLint y); //update
void stopDrawing(GLint x, GLint y); //stop drawing
void drawTemporary(); //temporary draw
void drawRemaining();
vector<vector<GLint> > newpoints;
// vector<vector<GLint> > getNewpoints() const;
float getLineWidth();
void setLineWidth(float value);
vector<vector<GLint> > getNewpoints() const;
void setNewpoints(const vector<vector<GLint> > &value);
};
class Triangle: public DrawTool
{
private:
//color of tool
QColor color;
Object temp;
vector< GLint > points;
float LineWidth=3;
float newLineWidth=3;
float newLineWidthRemaining=3;
public:
Triangle();
~Triangle() {}
void startDrawing(GLint x, GLint y); //drawing
void update(GLint x, GLint y); //update
void stopDrawing(GLint x, GLint y); //stop drawing
void drawTemporary(); //temporary draw
void drawRemaining();
vector<vector<GLint> > newpoints;
// vector<vector<GLint> > getNewpoints() const;
float getLineWidth();
void setLineWidth(float value);
vector<vector<GLint> > getNewpoints() const;
void setNewpoints(const vector<vector<GLint> > &value);
};
#endif // DRAWTOOLS_H
|
9b8785ebbd6807d2ca81b14badfc8b410e669349 | 643c9349cdde9792f646c5e74ea9e9cc8fb82ac1 | /142_linked_list_cycle_II/142_linked_list_cycle_II.cpp | 3a3425f01fc27a6aa240a5f94cbf59c2312737a1 | [] | no_license | silencewings1/Leetcode | 93a511d49a913cf8c3b8c42ffed6671738947d3a | 4e047ddc36abb8a8ad40ff7ad186c20595cabb64 | refs/heads/master | 2020-04-23T11:07:46.657459 | 2019-08-06T14:08:42 | 2019-08-06T14:08:42 | 171,125,420 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 247 | cpp | 142_linked_list_cycle_II.cpp | class Solution {
public:
ListNode *detectCycle(ListNode *head) {
unordered_set<ListNode *> us;
while (head){
if (us.find(head) != us.end())
return head;
else{
us.insert(head);
head = head->next;
}
}
return NULL;
}
}; |
2aac4440f6432087e751fda6898065f9b58a2262 | 90d2b810cfdbf8f4ae870ec3f23304fbf7e56c41 | /AnalyseLog.cpp | 58fe77874d38ec35b0fbc44cde67e806a0e73f87 | [] | no_license | MatheoAtche/TP_CPP_4_analog | 9f6ff0f86984438a22c225637964d4e059b5406c | 718e79e2397a07783bee2d45b4561eb7ff97cb9c | refs/heads/master | 2021-10-16T18:06:41.641120 | 2019-02-12T13:11:39 | 2019-02-12T13:11:39 | 166,815,745 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,379 | cpp | AnalyseLog.cpp | /*************************************************************************
AnalyseLog - Classe qui analyse le fichier log Apache
-------------------
début : 21/01/2019
copyright : (C) Mathéo ATCHE et Andréa CROC
e-mail : matheo.atche@insa-lyon.fr et andrea.croc@insa-lyon.fr
*************************************************************************/
//---------- Réalisation de la classe <AnalyseLog> (fichier AnalyseLog.cpp) ------------
//---------------------------------------------------------------- INCLUDE
//-------------------------------------------------------- Include système
#include <iostream>
using namespace std;
#include<set>
#include<string>
//------------------------------------------------------ Include personnel
#include "AnalyseLog.h"
#include "LectureLog.h"
//------------------------------------------------------------- Constantes
//----------------------------------------------------------------- PUBLIC
//----------------------------------------------------- Méthodes publiques
void AnalyseLog::RemplirMap (bool e, bool t,int heure)
// Algorithme : Remplit la map de la classe AnalyseLog
//selon les options d'exécution e (extension document),
//t (heure requête)
{
// Conteneur Suffixe contenant la liste des suffixes que l'on
//ne souhaite pas si l'option e est true
set<string>Suffixe {"php","css","jpg","gif","ico","png","jpeg","ics"};
LectureLog lect;
while(!file.eof())
{
bool check=true;
lect.LireLigneFichierLog(file);
if(e)
{
//On recupère la position du point
int pos=lect.ligneFichier.url.find_last_of(".");
//cout << pos;
string suf;
if(pos!=-1)
{ //On recupère la chaine de caracteres qui se trouve après le point
suf = lect.ligneFichier.url.substr(pos + 1);
//cout << suf << endl;
//Si l'extension du document est dans Suffixe
if(Suffixe.find(suf)!=Suffixe.end())
{
check=false;
}
}
}
if(t && check)
{
int h = atoi(lect.ligneFichier.date.substr(12, 2).c_str());
//Si l'heure de la requête ne correspond pas à celle attendue
if(h!=heure)
{
check=false;
}
}
if(check)
{
//Si l'url de la ligne lu n'est pas present dans le graphe
if (graphe.find(lect.ligneFichier.url) == graphe.end())
{
//On crée une map avec le referer et 1 car c'est la première fois
//qu'on trouve l'url et donc le referer vers cet url
map<string, int> reference;
reference.insert(make_pair(lect.ligneFichier.referer, 1));
//On cree une paire avec la map precedente et le nombre total de reference a l'url
//qui est pour le moment de 1
pair<map<string, int>, int> pref(reference, 1);
//On insère la paire dans le graphe
graphe.insert(make_pair(lect.ligneFichier.url,pref));
}
//Si l'url de la ligne lu est déja présent dans le graphe
else
{
StructGraphe::iterator itRef;
itRef = graphe.lower_bound(lect.ligneFichier.url);
//Si le referer de la ligne lu est déja présent dans la map de l'url du graphe
if (itRef->second.first.find(lect.ligneFichier.referer) != itRef->second.first.end())
{
map<string, int>::iterator itNb;
itNb = itRef->second.first.lower_bound(lect.ligneFichier.referer);
//On incrémente le nombre de fois qu'on a fait
//la requete depuis ce referer vers l'url
itNb->second = itNb->second + 1;
//On incrémente le nombre total de fois qu'on a fait une requete vers cet url
itRef->second.second = itRef->second.second + 1;
}
//Si le referer de la ligne lu n'est pas présent dans la map de l'url du graphe
else
{
//On insère le referer et 1 car c'est la premiere fois
//qu'on trouve une requête depuis ce referer vers l'url
itRef->second.first.insert(make_pair(lect.ligneFichier.referer, 1));
//On incrémente le nombre total de fois qu'on a fait une requete vers cet url
itRef->second.second = itRef->second.second + 1;
}
}
}
}
} //----- Fin de RemplirMap
void AnalyseLog::GenererGraphe(bool g, string nomFichier)
// Algorithme : Génerer un fichier .dot en écrivant dedans
// la description textuelle du graphe avec comme noeud les
// url et referer et des arcs représentant les liens entre
//les referers et les url avec le nombre de hits sur les arcs
{
if (g)
{
//Tester si ouverture fichier ok
ofstream fichier(nomFichier.c_str());
fichier << "digraph {" << endl;
//Itérateurs sur le debut et la fin de la map de map
StructGraphe::const_iterator debutG, finG;
debutG = graphe.begin();
finG = graphe.end();
//Itérateurs sur le début et la fin de la map avec referer et hit
map<string, int>::const_iterator debR,finR;
//Map contenant le nom de l'url ou referer et le numéro du noeud
map<string,int>node;
//Numéro des noeuds
int compteur=0;
while (debutG != finG)
{
debR = debutG->second.first.begin();
finR = debutG->second.first.end();
//Si l'url n'est pas déjà un noeud
if (node.find(debutG->first) == node.end())
{
//On représente les noeuds
fichier << "node" <<compteur<<" [label=\""<<debutG->first << "\"];" << endl;
node.insert(make_pair(debutG->first,compteur));
compteur++;
}
while (debR != finR)
{
//Si le referer n'est pas déjà un noeud
if (node.find(debR->first)==node.end())
{
//On représente les noeuds
fichier << "node" <<compteur<<" [label=\""<<debR->first << "\"];" << endl;
node.insert(make_pair(debR->first,compteur));
compteur++;
}
debR++;
}
debutG++;
}
//On remet l'itérateur au début
debutG = graphe.begin();
while (debutG != finG)
{
debR = debutG->second.first.begin();
finR = debutG->second.first.end();
while (debR != finR)
{
//On décrit les liens entre url et referer
fichier<<"node"<<node.find(debR->first)->second<<" -> "<<"node"<<node.find(debutG->first)->second<<" [label=\""<<debR->second<<"\"];" << endl;
debR++;
}
debutG++;
}
fichier << "}" << endl;
cout << "Dot-file " << nomFichier << " generated" << endl;
}
}//----- Fin de GenererGraphe
void AnalyseLog ::AfficherTop10(ostream & os)
{
StructGraphe::const_iterator debut, fin;
fin = graphe.end();
set<string>listeMax;
//On cherche le top 10
for (int i = 0; i < 10; i++)
{
debut = graphe.begin();
bool existe = false;
int hitmax = 0;
string url="";
while (debut != fin)
{
//Si le nombre total de réferences à l'url est supérieur au max
//et l'url n'a pas déjà été affiché
if (debut->second.second > hitmax && listeMax.find(debut->first) == listeMax.end())
{
hitmax = debut->second.second;
url = debut->first;
existe = true;
}
debut++;
}
//Pour sortir de la boucle si il y a moins de 10 documents dans la map
if (!existe)
{
break;
}
os << url << " (" << hitmax << " hits)"<<endl;
listeMax.insert(url);
}
}
//------------------------------------------------- Surcharge d'opérateurs
//AnalyseLog & AnalyseLog::operator = ( const AnalyseLog & unAnalyseLog )
// Algorithme :
//
//{
//} //----- Fin de operator =
//-------------------------------------------- Constructeurs - destructeur
//AnalyseLog::AnalyseLog ( const AnalyseLog & unAnalyseLog )
// Algorithme :
//
/*{
#ifdef MAP
cout << "Appel au constructeur de copie de <AnalyseLog>" << endl;
#endif
} *///----- Fin de AnalyseLog (constructeur de copie)
AnalyseLog::AnalyseLog (string fic,bool g, bool e, bool t, string nomFic,int heure)
// Algorithme :
//
{
file.open(fic);
while (!file)
{
throw "Erreur, le fichier log indiqué n'existe pas ou n'est pas accessible en lecture";
}
RemplirMap(e,t,heure);
GenererGraphe(g,nomFic);
AfficherTop10();
#ifdef MAP
cout << "Appel au constructeur de <AnalyseLog>" << endl;
#endif
} //----- Fin de AnalyseLog
AnalyseLog::~AnalyseLog ( )
// Algorithme :
//
{
#ifdef MAP
cout << "Appel au destructeur de <AnalyseLog>" << endl;
#endif
} //----- Fin de ~AnalyseLog
//------------------------------------------------------------------ PRIVE
//----------------------------------------------------- Méthodes protégées
|
a0ca71b28461a9320b4e83af5228bcfe8917f063 | 6e6ea2f11aac21479e35c7333b51b1c2689add70 | /Classes/Button/PopMenuItemImage.cpp | 91531e82c7f0f2b0c3fcc4f9eb0e257cb1f767fc | [] | no_license | alexkangbiao/KingdomRush | a8e72ad7c94509cdfb6cb3711c17a74ffcaceb13 | f241427966069ea4656a9e0764f186fd07434a49 | refs/heads/master | 2020-06-22T23:38:35.640971 | 2019-07-24T14:44:51 | 2019-07-24T14:44:51 | 198,432,251 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 416 | cpp | PopMenuItemImage.cpp | //
// PopMenuItemImage.cpp
// KingdomRush
//
// Created by kangbiao on 15/11/5.
//
//
#include "PopMenuItemImage.hpp"
/** The item was selected (not activated), similar to "mouse-over". */
void PopMenuItemImage::selected() {
MenuItemImage::selected();
this->setScale(1.2);
}
/** The item was unselected. */
void PopMenuItemImage::unselected() {
MenuItemImage::unselected();
this->setScale(1);
} |
0a18eb5a586d30b480a97586ba1a765c46e60c46 | 9b08b0a540255f3d3586dd3eca6e8b1e197e3d35 | /Screensaver/Screensaver/DazzleFirework.cpp | ec43763fd81ec9a1dafcb6b53fc32f1fc11aa896 | [
"MIT"
] | permissive | Wang961506/OpenGL-Fireworks-Display | 2bb3a13e23bb785c9c5e26d675d8fbfbd9588ba8 | 7f303d021ac0cbbc49f90c6cad2206c7c4f0ce0a | refs/heads/master | 2021-06-04T08:31:46.690419 | 2016-09-17T11:03:12 | 2016-09-17T11:03:12 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,529 | cpp | DazzleFirework.cpp | #include "stdafx.h"
#include "DazzleFirework.h"
//Creates a dazzleFirework which subclasses a firework with:
//the id of the texture to use in the firework
DazzleFirework::DazzleFirework(GLuint texture)
: Firework(texture) {
//load default values
loadDefaultValues();
}
//Creates a dazzleFirework which subclasses a firework with:
//the name of the texture to use in the firework
DazzleFirework::DazzleFirework(char * particleTexture)
: Firework(particleTexture) {
//load default values
loadDefaultValues();
}
//loads the default values for the dazzle firework
void DazzleFirework::loadDefaultValues() {
Firework::loadDefaultValues();
MaxDazzleParticles = 20;
DazzleLifeSpan = 0.2f;
DazzlePosVar = Vector3(0.4f, 0.4f, 0);
DazzleColour = RGBA(1, 1, 0, 1);
_timeSinceDazzleStarted = 0;
MaxDazzleTime = 0.8f;
}
//Updates the dazzle firework
void DazzleFirework::update(float dt) {
//update the normal firework
Firework::update(dt);
if (State == kExploding) {
//if it hasn't already passed the max time, increment the time since the firework started dazzling
if (_timeSinceDazzleStarted < MaxDazzleTime)
_timeSinceDazzleStarted += dt;
}
}
//Explodes the normal firework, then begins work on
void DazzleFirework::explode() {
//explode the normal firework first
Firework::explode();
//now set up the dazzle system
ShouldRegenParticles = true;
ParticleLife = DazzleLifeSpan;
OriginVariance = DazzlePosVar;
StartColour = DazzleColour;
StartColourVariance = RGBA(0, 0, 0, 0);
EndColour = RGBA(-1, -1, -1, 0);
EndColourVariance = RGBA(0, 0, 0, 0);
Gravity = Vector3(0, 0, 0);
StartScale = 0.75f;
EndScale = 0;
//increase the max amount of particles possible to allow for dazzle particles to spawn
MaxParticles = ExplodeParticleCount + MaxDazzleParticles;
}
//Replenishes particles, spawning new particles while the number of active particles is below the max amount of particles allowed.
//if the system is currently exploding and its a dazzle particle that's being spawned, adjust its life based off
//takes the time since the last update call
void DazzleFirework::replenishParticles(float dt) {
//Don't allow replenishment when the firework has finished
if (State == kFinished)
return;
//allow normal replenishing when not exploding
if (State != kExploding)
Firework::replenishParticles(dt);
else {
//if exploding, only allow dazzle replenishment if it hasn't passed the max time
if (_timeSinceDazzleStarted < MaxDazzleTime)
Firework::replenishParticles(dt);
}
} |
4af120b8d9d4004ce8bdad2cc04fdef1173a4ed1 | 331426c3acb53224f923275fd16d1937dc28de4d | /GeeksForGeeks/Arrays/10-EqulibriumPoint.cpp | 0ab71f4fc04858f6930bb39e8962982c696fcb0e | [] | no_license | ag-richa-13/Competitive-Coding | 63cc875b1afe2c5fde230e78880ebaaca1274707 | 2b2dcc75013a4f31f7ed5ae32bb02b7f58e43083 | refs/heads/master | 2023-04-05T12:54:16.340639 | 2021-03-28T09:15:20 | 2021-03-28T09:15:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,499 | cpp | 10-EqulibriumPoint.cpp | // Equlibrium point in an array
// Question:
// Given an array A of N positive numbers. The task is to find the position where equilibrium first occurs in the
// array. Equilibrium position in an array is a position such that the sum of elements before it is equal to the
// sum of elements after it.
// Input:
// The first line of input contains an integer T, denoting the number of test cases. Then T test cases follow.
// First line of each test case contains an integer N denoting the size of the array. Then in the next line are
// N space separated values of the array A.
// Output:
// For each test case in a new line print the position at which the elements are at equilibrium if no equilibrium
// point exists print -1.
// Example:
// Input:
// 2
// 1
// 1
// 5
// 1 3 5 2 2
// Output:
// 1
// 3
// Solution:
// initialize leftSum as 0 and rightSum as totalSum
// while accessing every element calulate leftSum and rightSum and compare both
// if both sums are equal print the respective position
#include <iostream>
#include <algorithm>
using namespace std;
int main() {
long int T;
cin>>T;
while(T--){
long int N;
cin>>N;
int arr[N],i=1,j=N-1,pos=-1,leftsum=0,rightsum=0;
for(long int i=0;i<N;i++){
cin>>arr[i];
rightsum = rightsum + arr[i];
}
for(long int i=0;i<N;i++){
rightsum = rightsum - arr[i];
if(leftsum == rightsum){
pos = i+1;
break;
}
leftsum = leftsum + arr[i];
}
cout<<pos<<endl;
}
return 0;
} |
7b3e26d180e2c9540ee4cfadab8ff4debc48fcc7 | 1aa6d2a52cb6a7cd46c57619d580e67ee81681d6 | /include/scalapackpp/pblas/hemm.hpp | 9ca469700215104878ef3d449e485186cc46147c | [
"BSD-3-Clause"
] | permissive | wavefunction91/scalapackpp | e8a920a7e2260ae35bd18fd9c047c1719599cb41 | 6397f52cf11c0dfd82a79698ee198a2fce515d81 | refs/heads/master | 2022-11-02T18:38:01.524273 | 2022-10-05T02:02:32 | 2022-10-05T02:02:32 | 219,229,670 | 5 | 2 | BSD-3-Clause | 2022-10-05T02:02:33 | 2019-11-03T00:03:55 | C++ | UTF-8 | C++ | false | false | 1,848 | hpp | hemm.hpp | /**
* This file is a part of scalapackpp (see LICENSE)
*
* Copyright (c) 2019-2020 David Williams-Young
* All rights reserved
*/
#pragma once
#include <scalapackpp/wrappers/pblas/hemm.hpp>
#include <scalapackpp/pblas/symm.hpp>
#include <scalapackpp/util/type_conversions.hpp>
#include <blacspp/util/type_conversions.hpp>
namespace scalapackpp {
template <typename T, typename ALPHAT, typename BETAT,
detail::enable_if_scalapack_complex_supported_t<T,bool> = true
>
detail::enable_if_t<
std::is_convertible<ALPHAT,T>::value and
std::is_convertible<BETAT,T>::value
>
phemm( Side side, Uplo uplo,
int64_t M, int64_t N, ALPHAT ALPHA,
const T* A, int64_t IA, int64_t JA, const scalapack_desc& DESCA,
const T* B, int64_t IB, int64_t JB, const scalapack_desc& DESCB,
BETAT BETA,
T* C, int64_t IC, int64_t JC, const scalapack_desc& DESCC ) {
assert( A != C );
assert( B != C );
auto SIDE = char( side );
auto UPLO = char( uplo );
const T ALPHA_t = T(ALPHA);
const T BETA_t = T(BETA);
wrappers::phemm( &SIDE, &UPLO, M, N, ALPHA_t, A, IA, JA,
DESCA, B, IB, JB, DESCB, BETA_t, C, IC, JC, DESCC );
}
template <typename T, typename ALPHAT, typename BETAT,
detail::enable_if_scalapack_real_supported_t<T,bool> = true
>
detail::enable_if_t<
std::is_convertible<ALPHAT,T>::value and
std::is_convertible<BETAT,T>::value
>
phemm( Side side, Uplo uplo,
int64_t M, int64_t N, ALPHAT ALPHA,
const T* A, int64_t IA, int64_t JA, const scalapack_desc& DESCA,
const T* B, int64_t IB, int64_t JB, const scalapack_desc& DESCB,
BETAT BETA,
T* C, int64_t IC, int64_t JC, const scalapack_desc& DESCC ) {
psymm( side, uplo, M, N, ALPHA, A, IA, JA, DESCA, B, IB, JB, DESCB,
BETA, C, IC, JC, DESCC );
}
}
|
4f704714c0b20a8fe1005ddfe984d16a439c3851 | e9bd89578ccf045a4c5db4b124cc49eb5554528c | /ServerIII/Aris_Vision/Vision_AvoidControl.cpp | f9260161a2ee07bb4392d1376ce06934f4aff156 | [] | no_license | loomplyty/robots_app | bbec6262ca129254edc6a1f890588b0dc1ba666c | 1b2127eeb9450ba74d99fbf14d980afcaf3fe85f | refs/heads/master | 2021-06-21T23:58:35.204095 | 2018-07-04T06:24:32 | 2018-07-04T06:24:32 | 96,540,416 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,868 | cpp | Vision_AvoidControl.cpp | #include "Vision_AvoidControl.h"
void DistanceComputation(Pose cRobotPos, ObstaclePosition cObstaclePos, double cdistance[2])
{
double l = 0.275;
double robRadius = sqrt(l*l + 0.45*0.45);
double frontCenterX = l*cos(M_PI/2 + cRobotPos.gama) + cRobotPos.X;
double frontCenterY = l*sin(M_PI/2 + cRobotPos.gama) + cRobotPos.Y;
double backCenterX = l*cos(3*M_PI/2 + cRobotPos.gama) + cRobotPos.X;
double backCenterY = l*sin(3*M_PI/2 + cRobotPos.gama) + cRobotPos.Y;
double frontDistance = sqrt(pow((frontCenterX - cObstaclePos.X),2) + pow((frontCenterY - cObstaclePos.Y),2)) - robRadius - cObstaclePos.radius;
double backDistance = sqrt(pow((backCenterX - cObstaclePos.X),2) + pow((backCenterY - cObstaclePos.Y),2)) - robRadius - cObstaclePos.radius;
cdistance[0] = frontDistance;
cdistance[1] = backDistance;
}
double PenaltyParameter(Pose cRobotPos, ObstaclePosition cObstaclePos)
{
double distance[2]{0, 0};
double cPenaltyValue[2]{0, 0};
DistanceComputation(cRobotPos, cObstaclePos, distance);
for(int i = 0; i < 2; i++)
{
if(distance[i] <= 0.05)
{
cPenaltyValue[i] = 1;
}
else if(distance[i] >= 0.05&&distance[i] <= 0.2)
{
cPenaltyValue[i] = 0.5*(1 + tanh(1/(distance[i] - 0.05) + 1/(distance[i] - 0.2)));
}
else
{
cPenaltyValue[i] = 0;
}
}
double penaltyValue = cPenaltyValue[0] + cPenaltyValue[1];
return penaltyValue;
}
void AvoidControl::AvoidWalkControl(Pose cTargetPos, Pose cRobotPos, vector<ObstaclePosition> cObstaclePoses)
{
memset(&avoidWalkParam, 0, sizeof(avoidWalkParam));
double robotWalkDirection[14];
double robotWalkVector[14][2];
double robotwalkStepNum = 2;
double robotWalkStepLength[14] = {0.20, 0.25, 0.30, 0.35, 0.40, 0.45, 0.50, 0.45, 0.40, 0.35, 0.30, 0.25, 0.20, 0};
int directionLabel = 13;
for(int i = 0; i < 13; i++)
{
robotWalkDirection[i] = i*15*M_PI/180;
}
if((cTargetPos.X - cRobotPos.X) < 0.5)
{
robotWalkDirection[13] = M_PI/2;
}
else
{
robotWalkDirection[13] = atan((cTargetPos.Y - cRobotPos.Y)/(cTargetPos.X - cRobotPos.X));
}
for(int i = 0; i < 14; i++)
{
robotWalkVector[i][0] = 1*cos(robotWalkDirection[i]);
robotWalkVector[i][1] = 1*sin(robotWalkDirection[i]);
}
robotWalkStepLength[13] = 0.50 - fabs(robotWalkDirection[13] - M_PI/2)*0.3/(M_PI/2);
double minCost = 1000;
double costFunction[14]{0};
for(int i = 0; i < 14; i++)
{
Pose tempRobotPos = cRobotPos;
costFunction[i] = 1/(1 + robotWalkVector[i][0]*robotWalkVector[13][0] + robotWalkVector[i][1]*robotWalkVector[13][1]);
for(int j = 0; j < robotwalkStepNum; j++)
{
if(robotwalkStepNum == 1 || robotwalkStepNum == 2)
{
tempRobotPos.X = tempRobotPos.X + 0.5*robotWalkStepLength[i]*robotWalkVector[i][0];
tempRobotPos.Y = tempRobotPos.Y + 0.5*robotWalkStepLength[i]*robotWalkVector[i][1];
}
else
{
if(j == 0)
{
tempRobotPos.X = tempRobotPos.X + 0.5*robotWalkStepLength[i]*robotWalkVector[i][0];
tempRobotPos.Y = tempRobotPos.Y + 0.5*robotWalkStepLength[i]*robotWalkVector[i][1];
}
else if(j < robotwalkStepNum - 1)
{
tempRobotPos.X = tempRobotPos.X + robotWalkStepLength[i]*robotWalkVector[i][0];
tempRobotPos.Y = tempRobotPos.Y + robotWalkStepLength[i]*robotWalkVector[i][1];
}
else
{
tempRobotPos.X = tempRobotPos.X + 0.5*robotWalkStepLength[i]*robotWalkVector[i][0];
tempRobotPos.Y = tempRobotPos.Y + 0.5*robotWalkStepLength[i]*robotWalkVector[i][1];
}
}
if (cObstaclePoses.size() > 0)
{
for(vector<ObstaclePosition>::iterator obsIter = cObstaclePoses.begin(); obsIter != cObstaclePoses.end(); obsIter++ )
{
costFunction[i] = costFunction[i] + PenaltyParameter(tempRobotPos, *obsIter);
}
}
else
{
costFunction[i] = costFunction[i] + 0;
}
}
if(minCost > costFunction[i])
{
minCost = costFunction[i];
directionLabel = i;
nextRobotPos = tempRobotPos;
}
}
cout<<"Direction Num: ------"<<directionLabel<<endl;
avoidWalkParam.stepLength = robotWalkStepLength[directionLabel];
avoidWalkParam.stepNum = robotwalkStepNum;
avoidWalkParam.walkDirection = robotWalkDirection[directionLabel] + M_PI/2;
}
|
7841e8236a6fdf018374de7a6f27aa7dc0fd9305 | fcafe855585b61d26dd0a3e1a7ab4d9b3fcdeedb | /Compass_Module/Compass_Module.ino | 3e0fd2a1e3b143fb82fbe7478d845e3b4183c9d5 | [] | no_license | TanselKahramanSwinburne/RME40005_FYP_Autonomous | 55bd34a5d624b31fd510062a9a309dafb2d08347 | a8b4a036378e242e64d98d2edc8bdc69368bb710 | refs/heads/master | 2022-12-22T06:24:25.238309 | 2020-09-27T02:46:51 | 2020-09-27T02:46:51 | 256,959,247 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,760 | ino | Compass_Module.ino | // Compass Module Code
// Author: Tansel A Kahraman
// Last Modified: 22/04/2020
// Description:
/* Reads in value from a HMC5883L Compass.
* Convert the readings from the x and y axis into degree bearings to be used with an autonomous robot.
* The values read are already smoothed out, but then further averaged by the last 25 values for a smoother reading.
*/
#include <math.h>
#include "QMC5883LCompass.h"
// Constants and variables used by the compass module.
QMC5883LCompass compass;
const int ArraySize = 25;
int AveragingXArray[ArraySize];
int AveragingYArray[ArraySize];
int AveragingLoop = 0;
// Procedure for setting up the compass module for communication.
void setupCompass() {
Serial.begin(9600);
compass.init();
/*
* call setSmoothing(STEPS, ADVANCED);
*
* STEPS = int The number of steps to smooth the results by. Valid 1 to 10.
* Higher steps equals more smoothing but longer process time.
*
* ADVANCED = bool Turn advanced smoothing on or off. True will remove the max and min values from each step and then process as normal.
* Turning this feature on will results in even more smoothing but will take longer to process.
*
*/
compass.setSmoothing(3,true);
}
// Procedure for reading, averaging and converting values from the compass to degrees.
int readCompass() {
int x, xAve;
int y, yAve;
int dirAngle;
long xAveBuff, yAveBuff;
// Read compass values.
compass.read();
// Return XY readings.
x = compass.getX();
y = compass.getY();
// Serial.println("X: " + String(x));
// Serial.println("Y: " + String(y));
/*
// Store XY readings into averaging array.
AveragingXArray[AveragingLoop] = x;
AveragingYArray[AveragingLoop] = y;
AveragingLoop++;
if (AveragingLoop >= ArraySize) AveragingLoop = 0;
// Calculate the average x value.
xAveBuff = 0;
for (int i = 0; i < ArraySize; i++) {
xAveBuff += AveragingXArray[i];
}
xAve = xAveBuff / ArraySize;
// Calculate the average y value.
yAveBuff = 0;
for (int j = 0; j < ArraySize; j++) {
yAveBuff += AveragingYArray[j];
}
yAve = yAveBuff / ArraySize;
*/
// Calculate the direction in degrees.
dirAngle = atan2(x, y)/0.0174532925;
dirAngle = 360 - dirAngle + 180; //added to adjust sensor (for southern hemisphere?)
if (dirAngle < 0) dirAngle+=360;
if (dirAngle >= 360) dirAngle-=360;
return dirAngle;
}
void setup() {
setupCompass();
}
void loop() {
int degreesRead = 0;
degreesRead = readCompass();
Serial.print(degreesRead);
Serial.println();
delay(50);
}
|
e5e9d26c2847f60252dc68acc8d04ae53cc90a9e | 453809fc11cada1e8aa4768a454ed4c9c5815662 | /Leetcode/Strings/String Compression.cpp | dcfb4b007578fb552729d2ef85f9dbe4b3f160ee | [] | no_license | chiranjeev-thapliyal/Tech-Interview-Preparation | 823496f40e202257b35a9fedd3920b499b638714 | fdbf72a5bcd437182494a3896711e05502d4e10b | refs/heads/master | 2023-09-01T09:21:26.981319 | 2021-10-27T11:38:48 | 2021-10-27T11:38:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,465 | cpp | String Compression.cpp | /* Idea is to use 2 pointers 'i' and 'j'.
'i' to read characters from the string, and 'j' to write back to the character array.
TC: O(N) and O(1) space
Input: ["a","a","b","b","c","c","c","a"] Output: a2b2c3a
Edge Case: Input: ["a","b","x"] Output: abx here we didn't included no. otherwise length will become greater than original array, then there would be no point in compression
*/
class Solution {
public:
int compress(vector<char>& chars)
{
if(chars.size()<2)
return chars.size();
int i=0, j=0;
while(i<chars.size()) // 'i' to read the character array
{
char currentChar = chars[i];
int count = 0;
while(i<chars.size() && chars[i] == currentChar) // find the no. times char has occurred
{
count++;
i++;
}
chars[j++] = currentChar; // write head will start writing from the 'j', if count = 1 then it will just write the 'character' and increment further
if(count != 1)
{
for(char c: to_string(count)) // max time this loop will run is log10(N)
chars[j++] = c; // if count>1, then it will keep on writing each digit
}
}
return j; // to get the resultant/modified vector<> just print all the characters till jth index
}
}; |
0e130d5bc146e06b12893c920d241556b707d0a6 | 46f4e15baf9a8f1f6b54a77027fe571788f83efa | /DataStructures/usermanager.cpp | 7342419e3433544a60d99344dd3e8e5efb1b7d73 | [] | no_license | SeraphRobotics/TabletSystem | 9ed59740298159e648e6000c752588973a3e8ecf | a0189bdd12fadf44d7a64b62fb8585c202f2debd | refs/heads/master | 2021-03-27T11:46:54.176087 | 2016-07-07T14:17:07 | 2016-07-07T14:17:07 | 22,484,359 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,164 | cpp | usermanager.cpp | #include "usermanager.h"
#include <QTextStream>
#include <QSettings>
UserDataManager::UserDataManager(QObject *parent) :
QObject(parent)
{
//THESE VALUES SHOULD BE LOADED FROM QSETTINGS
QSettings settings;
dir_= settings.value("users-directory",QDir::currentPath()).toString();
filename_ = settings.value("users-file","users.xml").toString();
rescan();
}
QPixmap UserDataManager::getIcon(QString user_id){
if(hasUserID(user_id)){
return QPixmap(getUserByID(user_id).iconfile);
}
return QPixmap();
}
QList<User> UserDataManager::getUsers(){
return users_;
}
bool UserDataManager::hasUserID(QString id){
for(int i=0;i<users_.size();i++){
User u = users_.at(i);
if(u.id==id){
return true;
}
}
return false;
}
User UserDataManager::getUserByPwd(QString pwd){
for(int i=0;i<users_.size();i++){
User u = users_.at(i);
if(u.pwd==pwd){
return u;
}
}
User return_u;
return_u.id="";
return return_u;
}
User UserDataManager::getUserByID(QString id){
for(int i=0;i<users_.size();i++){
User u = users_.at(i);
if(u.id==id){
return u;
}
}
User return_u;
return_u.id="";
return return_u;
}
void UserDataManager::changeDir(QString dir){
QDir d(dir);
if(d.exists()){
dir_=d;
rescan();
//SET QSETTINGS
}
}
void UserDataManager::changeUserPin(QString id, QString Pin){
if(hasUserID(id)){
User u = getUserByID(id);
u.pwd=Pin;
writeToDisk();
}
}
void UserDataManager::addUser(User u){
if(!hasUserID(u.id)){
users_.append(u);
writeToDisk();
}
}
void UserDataManager::removeUser(User u){
if(hasUserID(u.id)){
users_.removeOne(u);
writeToDisk();
}
}
void UserDataManager::updateUser(User u){
for(int i=0;i<users_.size();i++){
User u_old = users_[i];
if(u.id==u_old.id){
users_[i] = u;
writeToDisk();
return;
}
}
}
void UserDataManager::rescan(){
QDomDocument d("UserData");
QFile file(filename_); //TODO: implement QDir dir_.path()+
if (!file.open(QIODevice::ReadOnly)){return;}
if (!d.setContent(&file)) {
file.close();
return;
}
file.close();
QDomElement usersEl = d.documentElement();
if(!("users"==usersEl.nodeName().toLower())){return;}
QDomNodeList userEls = usersEl.childNodes();
for(int i=0;i<userEls.size();i++){
QDomNode mchild = userEls.at(i);
if(!mchild.isElement()){continue;}
if(("user"==mchild.nodeName().toLower())){
users_.append(userFromNode(mchild));
}
}
}
void UserDataManager::writeToDisk(){
QDomDocument d("UserFile");
QFile file(filename_);
if (!file.open(QIODevice::WriteOnly)){return;}
QDomElement node = d.createElement("Users");
for(int i=0; i<users_.size(); i++){
node.appendChild(nodeFromUsers(users_.at(i)));
}
d.appendChild(node);
QTextStream f(&file);
f<<d.toString();
file.close();
}
|
e4bb66a318a9498edf272509fc3adc5507fd9030 | db0a76e5088f87be15a90dc74ff2826098f35b4a | /UDPServer/UDPServer/src/UDPServerSource.cpp | ec07cf23eed6d2cd4eeb801e746f627bc9b420c8 | [] | no_license | tkapa/WinsockNetworking | a990f4721e842add547add07076afa684f6f8fb4 | 6f28b625977c998489159623581e5180d803a85c | refs/heads/master | 2021-01-25T05:09:39.160588 | 2017-06-09T09:22:53 | 2017-06-09T09:22:53 | 93,512,827 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,642 | cpp | UDPServerSource.cpp | //Server
#define _WINSOCK_DEPRECATED_NO_WARNINGS
#pragma warning(disable:4996)
using namespace std;
#include <winsock2.h>
#include <mswsock.h>
#include <iostream>
#include "Packet.h"
//Init Variables
WSADATA wsaData;
SOCKET receiveSocket;
sockaddr_in receiveAddress;
void ReadInType() {
char buffer[10000];
int readLength = sizeof(receiveAddress);
int result = recvfrom(receiveSocket,
buffer,
10000,
0,
(SOCKADDR*)&receiveAddress,
&readLength);
if (result == SOCKET_ERROR) {
cout << "Result Error " << WSAGetLastError() << endl;
}
//Recast buffer as a packet
Packet *p = (Packet *)buffer;
//Decide which packet has been sent
switch (p->type) {
case 1: {
PacketPlayerInformation *pp = (PacketPlayerInformation *)p;
cout << "Server Received Player Information" << endl;
break;
}
case 2: {
PacketAnnouncement *pa = (PacketAnnouncement *)p;
cout << "Server Received a Client Announcement" << endl;
//Send an acknowledgement back
PacketRequest pan;
pan.type = Packet::e_ServerAcknowledgement;
int result;
result = sendto(
receiveSocket,
(const char *)&pan,
sizeof(pan),
0,
(SOCKADDR*)&receiveAddress,
sizeof(receiveAddress));
cout << result << endl;
break;
}
case 3: {
PacketRequest *pac = (PacketRequest *)p;
break;
}
case 4: {
PacketInformation *pi = (PacketInformation *)p;
cout << "Received user and password from client" << endl;
cout << pi->username << "\n" << pi->password << endl;;
}
}
}
void Selection() {
int waiting;
do {
fd_set checkSockets;
checkSockets.fd_count = 1;
checkSockets.fd_array[0] = receiveSocket;
struct timeval t;
t.tv_sec = 100;
t.tv_usec = 100;
waiting = select(NULL, &checkSockets, NULL, NULL, &t);
if (waiting > 0) {
ReadInType();
}
} while (waiting);
}
void main() {
//Init WSA
if (WSAStartup(MAKEWORD(2, 2), &wsaData) != 0) {
std::cout << "WSAStartup kill" << std::endl;
return;
}
//Make send address
receiveAddress.sin_family = AF_INET;
receiveAddress.sin_port = htons(1234);
receiveAddress.sin_addr.s_addr = INADDR_ANY;
//Make a socket
receiveSocket = socket(AF_INET, SOCK_DGRAM, 0);
//Resist windows shitter function
DWORD dwBytesReturned = 0;
BOOL bNewBehavior = FALSE;
WSAIoctl(receiveSocket,
SIO_UDP_CONNRESET,
&bNewBehavior,
sizeof(bNewBehavior),
NULL,
0,
&dwBytesReturned,
NULL,
NULL);
if (bind(receiveSocket, (SOCKADDR*)&receiveAddress, sizeof(receiveAddress)) == SOCKET_ERROR) {
std::cout << "Bind Kill " << WSAGetLastError() << std::endl;
return;
}
Selection();
system("Pause");
WSACleanup();
return;
} |
4914c4541178600059c8bd5d2aa3ac83dfcae52e | df9dbd3dd08fd0998a542b028ab1a37827fe044c | /Part 2 - Bistromatic/subject/bistromatic.h | af1d502d8fbbfafcb37b53b7d9413c70b1cb6479 | [] | no_license | salmanhers1/Epitech-C-Pool-2021 | 5e12871d48e6a42c6c1cc3ed53e4a524d407ec4d | 2f5633368e34f6a4f8c21b63748eda5136a0d193 | refs/heads/master | 2023-09-03T08:19:13.354096 | 2021-11-08T10:00:01 | 2021-11-08T10:00:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 557 | h | bistromatic.h | #define OP_OPEN_PARENT_IDX 0
#define OP_CLOSE_PARENT_IDX 1
#define OP_PLUS_IDX 2
#define OP_SUB_IDX 3
#define OP_NEG_IDX 3
#define OP_MULT_IDX 4
#define OP_DIV_IDX 5
#define OP_MOD_IDX 6
#define EXIT_USAGE 84
#define EXIT_BASE 84
#define EXIT_SIZE_NEG 84
#define EXIT_MALLOC 84
#define EXIT_READ 84
#define EXIT_OPS 84
#define SYNTAX_ERROR_MSG "syntax error"
#define ERROR_MSG "error"
char *eval_expr(char const *base, char const *ops,
char const *expr, unsigned int size);
|
5184b6bcd96eea1e7121a471ff710e3f35bf5285 | 13ce41c5b5e02bc2620b78e565c70e89478d6086 | /main.cpp | 2d6e826b7a48320b3510698c5ae9049da0bba1e4 | [] | no_license | NoahOConnor44/DS2Project1 | 95a78930475cfe8a6d2960bdc49faa20e146baed | aab260366559c8c44a51d0838baa024c533b60b0 | refs/heads/master | 2023-02-13T20:55:36.451672 | 2020-01-28T19:03:21 | 2020-01-28T19:03:21 | 234,125,315 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 253 | cpp | main.cpp | #include <iostream>
#include "userInformation.hpp"
#include "hashTable.hpp"
using namespace std;
int main ()
{
userInformation userinfo;
hashTable hash;
userinfo.loadLastNames();
userinfo.loadRawPasswords();
hash.makeHashTable();
return 0;
}
|
353098ab23f16911e4f8cd01b8170cb8adcdb357 | 511cc86f80c130addd427cb56255b352217b1068 | /c++/cg/N4v2/Nucleo.hpp | 5fca3f34365400013987a16dcb65a4c183837358 | [] | no_license | arthureggert/faculdade | cd62445b859f23514155963162c4d006904a5af8 | 18d65ae793a51949b7b983baf4fab3f00b111f97 | refs/heads/master | 2023-05-01T03:06:28.356746 | 2022-06-30T13:42:50 | 2022-06-30T13:42:50 | 50,296,135 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 227 | hpp | Nucleo.hpp | #include <vector>
#include "Hadron.hpp"
using namespace std;
class Nucleo {
private:
vector<Hadron> hadrons;
public:
void desenha();
void adicionaHadron(Hadron hadron);
Nucleo();
Nucleo(int protons, int neutrons);
};
|
ff51252eb758f30c6eaaadc23872c6ccf97f89da | efa1cddfa8b779306af6837552ca70cac99672b0 | /C++/Hook Demos/MouseHook/MouseHook/MouseHook.cpp | c0c8d7239718931610e9e12099a777e1916e7b2c | [] | no_license | lanicon/MyRepository | f21cee83a2fb97e730b1e324d807b51495f4d64e | 6f2e61343fccbaa7ad1f4213df5efc9eb6502c65 | refs/heads/master | 2023-03-14T05:01:01.114757 | 2021-02-26T03:17:01 | 2021-02-26T03:17:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,451 | cpp | MouseHook.cpp | // MouseHook.cpp : Defines the entry point for the DLL application.
//
#include "stdafx.h"
#define _COMPILING_44E531B1_14D3_11d5_A025_006067718D04
#include "MouseHook.h"
#pragma data_seg(".JOE")
HWND g_hWndServer = NULL;
HHOOK g_hHook = NULL;
UINT UWM_MOUSEMOVE = 0;
UINT UWM_CHAR = 0;
#pragma data_seg()
#pragma comment(linker, "/section:.JOE,rws")
HINSTANCE g_hInst;
static LRESULT CALLBACK Msghook(UINT nCode, WPARAM wParam, LPARAM lParam);
BOOL APIENTRY DllMain( HINSTANCE hInstance,
DWORD Reason,
LPVOID Reserved)
{
switch(Reason)
{
case DLL_PROCESS_ATTACH:
g_hInst = hInstance;
UWM_MOUSEMOVE = RegisterWindowMessage(UWM_MOUSEMOVE_MSG);
UWM_CHAR = ::RegisterWindowMessage(UWM_CHAR_MSG);
return TRUE;
case DLL_PROCESS_DETACH:
if(g_hWndServer != NULL)
ClearMyHook(g_hWndServer);
return TRUE;
}
return TRUE;
}
/****************************************************************************
* setMyHook
* Inputs:
* HWND hWnd: Window to notify
* Result: BOOL
* TRUE if successful
* FALSE if error
* Effect:
* Sets the hook
****************************************************************************/
BOOL SetMyHook(HWND hWnd)
{
if(g_hWndServer != NULL)
return FALSE; // already hooked!
g_hHook = SetWindowsHookEx(WH_GETMESSAGE,
(HOOKPROC)Msghook,
g_hInst,
0);
if(g_hHook != NULL)
{
g_hWndServer = hWnd;
return TRUE;
}
return FALSE; // failed to set hook
}
/****************************************************************************
* clearMyHook
* Inputs:
* HWND hWnd: Window hook
* Result: BOOL
* TRUE if successful
* FALSE if error
* Effect:
* Removes the hook that has been set
****************************************************************************/
BOOL ClearMyHook(HWND hWnd)
{
if(hWnd != g_hWndServer || hWnd == NULL)
return FALSE;
BOOL unhooked = UnhookWindowsHookEx(g_hHook);
if(unhooked)
g_hWndServer = NULL;
return unhooked;
}
/****************************************************************************
* Msghook
* Inputs:
* int nCode: Code value
* WPARAM wParam:
* LPARAM lParam:
* Result: LRESULT
* Either 0 or the result of CallNextHookEx
* Effect:
* Hook processing function. If the message is a mouse-move message,
* posts the coordinates to the parent window
****************************************************************************/
static LRESULT CALLBACK Msghook(UINT nCode, WPARAM wParam, LPARAM lParam)
{
if(nCode < 0)
{
CallNextHookEx(g_hHook, nCode, wParam, lParam);
return 0;
}
LPMSG msg = (LPMSG)lParam;
if(msg->message == WM_MOUSEMOVE || msg->message == WM_NCMOUSEMOVE)
{
PostMessage(g_hWndServer, UWM_MOUSEMOVE, 0, 0);
}
else if (msg->message==WM_CHAR)
{
PostMessage(g_hWndServer, UWM_CHAR, msg->wParam, msg->lParam);
}
return CallNextHookEx(g_hHook, nCode, wParam, lParam);
}
|
0df71cc8790795f250e683542748f29fa9890dab | e30007fe6f827245515fbbda9a68fde01bd85f0e | /mainwindow.cpp | acde55fa954f11d449af733f971c836da4b845fe | [] | no_license | colmlg/ZorkProject | 4da66a531894b044625b7f1c607dd555f06096d7 | 1154e7198df02f05c94eee451082dcc3cdcec390 | refs/heads/master | 2021-03-27T10:27:21.496483 | 2018-04-11T19:41:00 | 2018-04-11T19:41:00 | 120,497,505 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,122 | cpp | mainwindow.cpp | #include "mainwindow.h"
#include "ui_mainwindow.h"
#include "battledialog.h"
#include <QMessageBox>
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow) {
ui->setupUi(this);
ui->attackValue->setSegmentStyle(QLCDNumber::SegmentStyle::Flat);
zork = new ZorkGame();
roomItemButtons[0] = ui->roomItem0;
roomItemButtons[1] = ui->roomItem1;
roomItemButtons[2] = ui->roomItem2;
roomItemButtons[3] = ui->roomItem3;
inventoryItemButtons[0] = ui->inventoryItem0;
inventoryItemButtons[1] = ui->inventoryItem1;
inventoryItemButtons[2] = ui->inventoryItem2;
inventoryItemButtons[3] = ui->inventoryItem3;
displayCurrentRoomInfo();
}
MainWindow::~MainWindow() {
delete zork;
delete ui;
}
void MainWindow::displayCurrentRoomInfo() {
QString roomInfo = QString::fromStdString(zork->getCurrentRoomInfo());
ui->mainDisplayLabel->setText(roomInfo);
ui->healthBar->setValue(zork->getPlayer()->getHealth());
ui->attackValue->display(zork->getPlayer()->getAttack());
setRoomItems();
setInventoryItems();
setWeapon();
displayBattleDialog();
checkGameState();
}
void MainWindow::checkGameState() {
if (zork->hasPlayerLost()) {
displayAlert("Oh no, game over! You have lost all your health.\nPress OK to start again.");
restartGame();
} else if(zork->hasPlayerWon()) {
displayAlert("Congratulations, you beat the final boss and won the game!\nYour score is: " + to_string(zork->getScore()) + "\nPress OK to start again.");
restartGame();
}
}
void MainWindow::restartGame() {
removeInventoryItemSelectionFrame();
removeRoomItemSelectionFrame();
ui->gameLog->setText("");
delete zork;
zork = new ZorkGame();
displayCurrentRoomInfo();
}
void MainWindow::setRoomItems() {
vector<Item*> items = zork->getCurrentRoom()->getInventory().getItems();
setItems(roomItemButtons, items);
}
void MainWindow::setInventoryItems() {
vector<Item*> items = zork->getPlayer()->getInventory().getItems();
setItems(inventoryItemButtons, items);
}
void MainWindow::setItems(QPushButton** buttons, vector<Item*> items) {
for (unsigned int i = 0; i < Constants::itemSlots; i++) {
bool itemExists = i < items.size();
QIcon icon = itemExists ? *items[i]->icon : QIcon(":/images/emptyItemSlot.png");
QString toolTipText = itemExists ? QString::fromStdString(items[i]->getLongDescription()) : "";
buttons[i]->setEnabled(itemExists);
buttons[i]->setIcon(icon);
buttons[i]->setToolTip(toolTipText);
}
}
void MainWindow::setWeapon() {
Weapon* weapon = zork->getPlayer()->getWeapon();
bool hasWeapon = weapon != NULL;
QIcon icon = hasWeapon ? *weapon->icon : QIcon(":/images/emptyItemSlot.png");
QString toolTipText = hasWeapon ? QString::fromStdString(weapon->getLongDescription()) : "";
ui->weaponSlot->setIcon(icon);
ui->weaponSlot->setToolTip(toolTipText);
ui->weaponSlot->setEnabled(hasWeapon);
}
void MainWindow::displayBattleDialog() {
Enemy* enemy = zork->getCurrentRoom()->getEnemy();
if (enemy != NULL && enemy->getHealth() > 0 && !zork->hasPlayerLost()) {
this->setEnabled(false);
BattleDialog* dialog = new BattleDialog(enemy);
dialog->setWindowFlags(Qt::Window | Qt::WindowMinimizeButtonHint);
dialog->connect(dialog, SIGNAL(finished(int)), this, SLOT(on_dialog_finished(int)));
dialog->show();
}
}
void MainWindow::goToRoom(Direction direction) {
zork->getCurrentRoom()->getInventory().deselectItems();
removeRoomItemSelectionFrame();
ui->takeButton->setEnabled(false);
zork->go(direction);
displayCurrentRoomInfo();
}
void MainWindow::on_dialog_finished(int result) {
switch (result) {
case ATTACK:
executeBattleOption(zork->attackEnemy());
break;
case RUN:
executeBattleOption(zork->runFromEnemy());
break;
case HIDE:
executeBattleOption(zork->hideFromEnemy());
break;
case PLAYDEAD:
executeBattleOption(zork->playDead());
break;
}
}
void MainWindow::executeBattleOption(string logMessage) {
log(logMessage);
this->setEnabled(true);
displayCurrentRoomInfo();
}
void MainWindow::on_northButton_clicked(){
goToRoom(north);
}
void MainWindow::on_southButton_clicked() {
goToRoom(south);
}
void MainWindow::on_eastButton_clicked() {
goToRoom(east);
}
void MainWindow::on_westButton_clicked() {
goToRoom(west);
}
void MainWindow::on_takeButton_clicked() {
if (zork->getPlayer()->getInventory().getNumberOfItems() >= Constants::itemSlots) {
displayAlert("Your inventory is full!\nTry placing an item in the room before taking another one.");
return;
}
zork->takeSelectedItem();
removeRoomItemSelectionFrame();
ui->takeButton->setEnabled(false);
displayCurrentRoomInfo();
}
void MainWindow::on_putButton_clicked() {
if (zork->getCurrentRoom()->getInventory().getNumberOfItems() >= Constants::itemSlots) {
displayAlert("The room is full of items!\nTry taking an item from the room before placing another one.");
return;
}
zork->placeSelectedItem();
removeInventoryItemSelectionFrame();
ui->putButton->setEnabled(false);
ui->useButton->setEnabled(false);
displayCurrentRoomInfo();
}
void MainWindow::on_roomItem0_clicked() {
selectRoomItem(0);
}
void MainWindow::on_roomItem1_clicked() {
selectRoomItem(1);
}
void MainWindow::on_roomItem2_clicked() {
selectRoomItem(2);
}
void MainWindow::on_roomItem3_clicked() {
selectRoomItem(3);
}
void MainWindow::selectRoomItem(const int itemIndex) {
removeRoomItemSelectionFrame();
ui->takeButton->setEnabled(true);
zork->getCurrentRoom()->getInventory().selectItem(itemIndex);
roomItemButtons[itemIndex]->setStyleSheet("QPushButton { border: 2px solid blue; border-radius: 3px; outline: none; }");
}
void MainWindow::on_inventoryItem0_clicked() {
selectInventoryItem(0);
}
void MainWindow::on_inventoryItem1_clicked() {
selectInventoryItem(1);
}
void MainWindow::on_inventoryItem2_clicked() {
selectInventoryItem(2);
}
void MainWindow::on_inventoryItem3_clicked() {
selectInventoryItem(3);
}
void MainWindow::selectInventoryItem(const int itemIndex) {
removeInventoryItemSelectionFrame();
Inventory& inventory = zork->getPlayer()->getInventory();
ui->useButton->setEnabled(inventory.getItems()[itemIndex]->action != NULL);
ui->equipButton->setEnabled(inventory.getItems()[itemIndex]->isWeapon() && zork->getPlayer()->getWeapon() == NULL);
ui->putButton->setEnabled(true);
ui->unequipButton->setEnabled(false);
inventory.selectItem(itemIndex);
inventoryItemButtons[itemIndex]->setStyleSheet("QPushButton { border: 2px solid red; border-radius: 3px; outline: none; }");
}
void MainWindow::removeRoomItemSelectionFrame() {
for (QPushButton* button : roomItemButtons) {
button->setStyleSheet("");
}
}
void MainWindow::removeInventoryItemSelectionFrame() {
for (QPushButton* button : inventoryItemButtons) {
button->setStyleSheet("");
}
ui->weaponSlot->setStyleSheet("");
}
void MainWindow::log(string input) {
ui->gameLog->append(QString::fromStdString(input));
}
void MainWindow::displayAlert(const string message) {
QMessageBox messageBox;
messageBox.setIcon(QMessageBox::Warning);
messageBox.setText(QString::fromStdString(message));
messageBox.exec();
}
void MainWindow::on_useButton_clicked() {
vector<Item*> items = zork->getPlayer()->getInventory().getItems();
for (unsigned int i = 0 ; i < items.size(); i++) {
if (items[i]->isSelected() && items[i]->action != NULL) {
if (!items[i]->action()) {
log("It had no effect...");
return;
}
log(items[i]->getActionDescription());
if(items[i]->isConsumable()) {
zork->getPlayer()->getInventory().removeItem(i);
removeInventoryItemSelectionFrame();
ui->putButton->setEnabled(false);
ui->useButton->setEnabled(false);
}
displayCurrentRoomInfo();
return;
}
}
}
void MainWindow::on_weaponSlot_clicked() {
removeInventoryItemSelectionFrame();
ui->weaponSlot->setStyleSheet("QPushButton { border: 2px solid red; border-radius: 3px; outline: none; }");
ui->unequipButton->setEnabled(true);
ui->putButton->setEnabled(false);
ui->useButton->setEnabled(false);
}
void MainWindow::on_equipButton_clicked() {
removeInventoryItemSelectionFrame();
vector<Item*> items = zork->getPlayer()->getInventory().getItems();
for(unsigned int i = 0 ; i < items.size(); i++) {
if(items[i]->isSelected()) {
zork->getPlayer()->setWeapon((Weapon*) items[i]);
zork->getPlayer()->getInventory().removeItem(i);
ui->putButton->setEnabled(false);
ui->equipButton->setEnabled(false);
displayCurrentRoomInfo();
return;
}
}
}
void MainWindow::on_unequipButton_clicked() {
vector<Item*> items = zork->getPlayer()->getInventory().getItems();
if (items.size() >= 4) {
displayAlert("Your inventory is too full to unequip this item.");
return;
}
Item* weapon = (Item*) zork->getPlayer()->takeWeapon();
zork->getPlayer()->getInventory().addItem(weapon);
ui->unequipButton->setEnabled(false);
ui->weaponSlot->setStyleSheet("");
displayCurrentRoomInfo();
}
|
049554b7c176f7ce98f2e0c6d9bfa6fb68433997 | 94a14701ac1c70e4b9746a2fbcfe4c24e31f34ea | /svr/src/net/EventLoop.h | 1fa87c35394a9f2243f025aed81fe57f1a236346 | [] | no_license | mildrock/dummy | b187a740088f416fea52a46241a3903bd18739bc | f90560e7373b0977237eea5f50304415c32ba674 | refs/heads/master | 2020-01-31T03:41:11.300723 | 2015-09-22T15:09:09 | 2015-09-22T15:09:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,475 | h | EventLoop.h | // Copyright 2010, Shuo Chen. All rights reserved.
// http://code.google.com/p/muduo/
//
// Use of this source code is governed by a BSD-style license
// that can be found in the License file.
// Author: Shuo Chen (chenshuo at chenshuo dot com)
//
// This is a public header file, it must only include public header files.
#ifndef MUDUO_NET_EVENTLOOP_H
#define MUDUO_NET_EVENTLOOP_H
#include <vector>
#include <boost/function.hpp>
#include <boost/noncopyable.hpp>
#include <boost/scoped_ptr.hpp>
#include <base/Mutex.h>
#include <base/Thread.h>
#include <base/Timestamp.h>
#include "Callbacks.h"
struct event_base;
struct bufferevent;
namespace net
{
class Channel;
class TimerQueue;
class Timer;
///
/// Reactor, at most one per thread.
///
/// This is an interface class, so don't expose too much details.
class EventLoop : boost::noncopyable
{
public:
typedef boost::function<void()> Functor;
EventLoop();
~EventLoop(); // force out-line dtor, for scoped_ptr members.
///
/// Loops forever.
///
/// Must be called in the same thread as creation of the object.
///
void loop();
void quit();
/// Runs callback immediately in the loop thread.
/// It wakes up the loop, and run the cb.
/// If in the same loop thread, cb is run within the function.
/// Safe to call from other threads.
void runInLoop(const Functor& cb);
/// Queues callback in the loop thread.
/// Runs after finish pooling.
/// Safe to call from other threads.
void queueInLoop(const Functor& cb);
// timers
///
/// Runs callback at 'time'.
/// Safe to call from other threads.
///
Timer* runAt(const Timestamp& time, const TimerCallback& cb);
///
/// Runs callback after @c delay seconds.
/// Safe to call from other threads.
///
Timer* runAfter(TimeInMs delay, const TimerCallback& cb);
///
/// Runs callback every @c interval seconds.
/// Safe to call from other threads.
///
Timer* runEvery(TimeInMs interval, const TimerCallback& cb);
// internal usage
void wakeup();
// pid_t threadId() const { return threadId_; }
void assertInLoopThread()
{
if (!isInLoopThread())
{
abortNotInLoopThread();
}
}
bool isInLoopThread() const { return threadId_ == this_thread::get_id(); }
// bool callingPendingFunctors() const { return callingPendingFunctors_; }
static EventLoop& getEventLoopOfCurrentThread();
private:
void breakLoop();
private:
void abortNotInLoopThread();
void handleRead(struct bufferevent &incoming); // waked up
void doPendingFunctors();
bool looping_; /* atomic */
bool quit_; /* atomic */
bool callingPendingFunctors_; /* atomic */
const thread::id threadId_;
int m_wakeupFd;
// unlike in TimerQueue, which is an internal class,
// we don't expose Channel to client.
boost::scoped_ptr<Channel> m_wakeupChannel;
MutexLock mutex_;
std::vector<Functor> pendingFunctors_; // @BuardedBy mutex_
public:
struct event_base *m_eventBase;
};
}
#endif // MUDUO_NET_EVENTLOOP_H
|
40ba7451c4c99170e74d6a1c81d39c684ad76025 | ae2e017176d879e53c0e1d62b5e02f1d41182266 | /pgen/message.cpp | 07d31a3d785d9e9e0799994e4f69d2db95ad7f92 | [] | no_license | nbingham1/pgen | b676cd40a4c60030597e680b151348f6b21ce3ba | c56617fd58ced7191f477b86dfb797d6fc2c922c | refs/heads/master | 2021-05-10T20:00:07.275889 | 2021-04-03T00:03:34 | 2021-04-03T00:03:34 | 118,171,326 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,537 | cpp | message.cpp | #include <pgen/message.h>
namespace pgen
{
messenger fail(message::fail);
messenger error(message::error);
messenger warning(message::warning);
messenger note(message::note);
std::ostream &operator<<(std::ostream &os, const message &msg)
{
if (msg.file.size() > 0)
os << msg.file << ":";
if (msg.line >= 0)
os << msg.line << ":";
if (msg.column >= 0)
os << msg.column << " ";
switch (msg.type)
{
case message::fail: os << "fail: "; break;
case message::error: os << "error: "; break;
case message::warning: os << "warning: "; break;
default: os << "note: "; break;
}
os << msg.text << std::endl;
if (msg.context.size() > 0)
os << msg.context;
return os;
}
messenger::messenger(int type)
{
this->type = type;
context = false;
}
messenger::~messenger()
{
}
messenger &messenger::operator() (lexer_t &lexer, token_t token)
{
return this->operator()(lexer, token.begin, token.end);
}
messenger &messenger::operator() (lexer_t &lexer, intptr_t begin, intptr_t end)
{
file = lexer.name;
line = lexer.lineof(begin);
column = begin - lexer.lines[line];
length = end - begin;
text.str("");
context = lexer.getline(line);
if (context.back() != '\n')
context.push_back('\n');
int maxlen = (int)context.size()-1;
for (int i = 0; i < column; i++)
{
if (context[i] < 32 || context[i] == 127)
context.push_back(context[i]);
else
context.push_back(' ');
}
context += '^';
for (int i = 0; i < length-1 and i+column+1 < maxlen; i++)
context += '~';
context += '\n';
return *this;
}
messenger &messenger::operator() (std::string file, long line, long column, long length)
{
this->file = file;
this->line = line;
this->column = column;
this->length = length;
this->text.str("");
this->context.clear();
return *this;
}
messenger::operator message()
{
message result;
result.type = type;
result.file = file;
result.line = line;
result.column = column;
result.length = length;
result.text = text.str();
result.context = context;
return result;
}
std::ostream &operator<<(std::ostream &os, const messenger &msg)
{
if (msg.file.size() > 0)
os << msg.file << ":";
if (msg.line >= 0)
os << msg.line << ":";
if (msg.column >= 0)
os << msg.column << " ";
switch (msg.type)
{
case message::fail: os << "fail: "; break;
case message::error: os << "error: "; break;
case message::warning: os << "warning: "; break;
default: os << "note: "; break;
}
os << msg.text.str() << std::endl;
if (msg.context.size() > 0)
os << msg.context;
return os;
}
}
|
b7871881add62a078464a130ce9b83971f6f82aa | 39fe085377f3c7327e82d92dcb38083d039d8447 | /core/sql/exp/exp_attrs.cpp | b94a1fa333cdf54cfe9b0cd6a72c039f63f3e1c3 | [
"Apache-2.0"
] | permissive | naveenmahadevuni/incubator-trafodion | 0da8d4c7d13a47d3247f260b4e67618c0fae1539 | ed24b19436530b2c214e4bf73280bc8e3f419669 | refs/heads/master | 2021-01-22T04:40:52.402291 | 2015-07-16T00:02:50 | 2015-07-16T00:02:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 25,607 | cpp | exp_attrs.cpp | /**********************************************************************
// @@@ START COPYRIGHT @@@
//
// (C) Copyright 1994-2015 Hewlett-Packard Development Company, L.P.
//
// 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.
//
// @@@ END COPYRIGHT @@@
**********************************************************************/
/* -*-C++-*-
*****************************************************************************
*
* File: <file>
* Description:
*
*
* Created: 7/10/95
* Language: C++
*
*
*
*
*****************************************************************************
*/
#include "Platform.h"
#include "exp_stdh.h"
// #ifndef __EID
// #include <stdio.h>
// #include <stdlib.h>
// #endif
//
// #include "ComPackDefs.h"
#include "exp_attrs.h"
#include "exp_clause_derived.h"
#include "exp_bignum.h"
#include "str.h"
#include "NLSConversion.h"
Int32 Attributes::getStorageLength(){return -1;};
Int32 Attributes::getDefaultValueStorageLength(){return -1;};
Int32 Attributes::getLength(){return -1;};
Attributes * Attributes::newCopy(){return 0;};
Attributes * Attributes::newCopy(CollHeap *){return 0;};
void Attributes::copyAttrs(Attributes * /*source_*/){};
Attributes * SimpleType::newCopy()
{
SimpleType * new_copy = new SimpleType();
*new_copy = *this;
return new_copy;
}
Attributes * SimpleType::newCopy(CollHeap * heap)
{
SimpleType * new_copy = new(heap) SimpleType();
*new_copy = *this;
return new_copy;
}
void SimpleType::copyAttrs(Attributes *source_) // copy source attrs to this.
{
*this = *(SimpleType *)source_;
}
NA_EIDPROC Attributes::Attributes(short complex_type) :
NAVersionedObject(AttribAnchorID)
{
datatype_ = -1;
nullFlag_ = 0;
nullIndicatorLength_ = 2; // the default
vcIndicatorLength_ = 2; // for now
#pragma nowarn(161) // warning elimination
offset_ = ExpOffsetMax;
atpindex_ = 0;
atp_ = 0;
nullIndOffset_ = ExpOffsetMax;
vcLenIndOffset_ = ExpOffsetMax;
#pragma warn(161) // warning elimination
voaOffset_ = ExpOffsetMax;
relOffset_ = 0;
nextAttrIdx_ = ExpOffsetMax;
rowsetSize_ = 0;
rowsetInfo_ = 0;
nullBitIdx_ = -1;
tdf_ = ExpTupleDesc::UNINITIALIZED_FORMAT;
alignment_ = 1; // no alignment
defClass_ = NO_DEFAULT;
defaultValue_ = 0;
defaultFieldNum_ = 0x0ffff ; // initialize to an invalid field num
flags_ = 0;
flags2_ = 0;
if (!complex_type)
setClassID(SimpleTypeID);
else {
flags_ |= COMPLEX_TYPE;
setClassID(ComplexTypeID);
}
setBulkMoveable(TRUE);
str_pad(fillers_, sizeof(fillers_), '\0');
}
// -----------------------------------------------------------------------
// This method returns the virtual function table pointer for an object
// with the given class ID; used by NAVersionedObject::driveUnpack().
// -----------------------------------------------------------------------
NA_EIDPROC char *Attributes::findVTblPtr(short classID)
{
char *vtblPtr;
switch (classID)
{
case ShowplanID:
#pragma nowarn(1506) // warning elimination
GetVTblPtr(vtblPtr, ShowplanAttributes);
#pragma warn(1506) // warning elimination
break;
case SimpleTypeID:
#pragma nowarn(1506) // warning elimination
GetVTblPtr(vtblPtr, SimpleType);
#pragma warn(1506) // warning elimination
break;
case BigNumID:
#pragma nowarn(1506) // warning elimination
GetVTblPtr(vtblPtr, BigNum);
#pragma warn(1506) // warning elimination
break;
case ComplexTypeID:
default:
#pragma nowarn(1506) // warning elimination
GetVTblPtr(vtblPtr, ComplexType);
#pragma warn(1506) // warning elimination
break;
}
return vtblPtr;
}
NA_EIDPROC Long Attributes::pack(void * space)
{
defaultValue_.pack(space);
return NAVersionedObject::pack(space);
}
NA_EIDPROC Lng32 Attributes::unpack(void * base, void * reallocator)
{
if (defaultValue_.unpack(base)) return -1;
return NAVersionedObject::unpack(base, reallocator);
}
void Attributes::fixup(Space * /*space*/,
char * constantsArea,
char * tempsArea,
char * persistentArea,
short fixupConstsAndTemps,
NABoolean spaceCompOnly)
{
if ((! fixupConstsAndTemps) || (spaceCompOnly))
return;
char *area;
if ((atp_ == 0) && (atpindex_ == 0))
area = constantsArea;
else if((atp_ == 0) && (atpindex_ == 1))
area = tempsArea;
else if((atp_ == 1) && (atpindex_ == 1))
area = persistentArea;
else
return;
#if 1
assert( area == (char *)0 );
#else /* FOLLOWING CODE SHOULD NOT BE NEEDED */
#pragma nowarn(1506) // warning elimination
offset_ = (uLong)(area + offset_);
#pragma warn(1506) // warning elimination
if (getNullFlag()) // nullable
#pragma nowarn(1506) // warning elimination
nullIndOffset_ = (ULng32)(area + nullIndOffset_);
#pragma warn(1506) // warning elimination
if (getVCIndicatorLength() > 0)
#pragma nowarn(1506) // warning elimination
vcLenIndOffset_ = (ULng32)(area + vcLenIndOffset_);
#pragma warn(1506) // warning elimination
#endif
}
NA_EIDPROC SQLEXP_LIB_FUNC
char * getDatatypeAsString(Int32 datatype, NABoolean extFormat = false )
{
switch (datatype)
{
// When you add new datatype in /common/dfs2rec.h, don't
// forget add new case here. Otherwise, showplan won't display it.
case REC_BIN16_SIGNED: return extFormat? (char *)"SMALLINT SIGNED":(char *)"REC_BIN16_SIGNED";
case REC_BIN16_UNSIGNED: return extFormat? (char *)"SMALLINT UNSIGNED":(char *)"REC_BIN16_UNSIGNED";
case REC_BIN32_SIGNED: return extFormat? (char *)"INTEGER SIGNED":(char *)"REC_BIN32_SIGNED";
case REC_BIN32_UNSIGNED: return extFormat? (char *)"INTEGER UNSIGNED":(char *)"REC_BIN32_UNSIGNED";
case REC_BIN64_SIGNED: return extFormat? (char *)"LARGEINT":(char *)"REC_BIN64_SIGNED";
case REC_BPINT_UNSIGNED: return extFormat? (char *)"BIT PRECISION INTEGER":(char *)"REC_BPINT_UNSIGNED";
case REC_TDM_FLOAT32: return extFormat? (char *)"FLOAT":(char *)"REC_TDM_FLOAT32";
case REC_TDM_FLOAT64: return extFormat? (char *)"DOUBLE PRECISION":(char *)"REC_TDM_FLOAT64";
case REC_IEEE_FLOAT32: return extFormat? (char *)"IEEE FLOAT":(char *)"REC_IEEE_FLOAT32";
case REC_IEEE_FLOAT64: return extFormat? (char *)"IEEE DOUBLE PRECISION":(char *)"REC_IEEE_FLOAT64";
case REC_DECIMAL_UNSIGNED: return extFormat? (char *)"DECIMAL UNSIGNED":(char *)"REC_DECIMAL_UNSIGNED";
case REC_DECIMAL_LS: return extFormat? (char *)"DECIMAL SIGNED":(char *)"REC_DECIMAL_LS";
case REC_DECIMAL_LSE: return extFormat? (char *)"DECIMAL SIGNED":(char *)"REC_DECIMAL_LSE";
case REC_NUM_BIG_UNSIGNED: return extFormat? (char *)"NUMERIC":(char *)"REC_NUM_BIG_UNSIGNED";
case REC_NUM_BIG_SIGNED: return extFormat? (char *)"NUMERIC":(char *)"REC_NUM_BIG_SIGNED";
case REC_BYTE_F_ASCII: return extFormat? (char *)"CHAR":(char *)"REC_BYTE_F_ASCII";
#ifdef READTABLEDEF_IMPLEMENTATION
case REC_BYTE_F_ASCII_UP: return extFormat? (char *)"CHAR UPSHIFT":(char *)"REC_BYTE_F_ASCII_UP";
#endif
case REC_NCHAR_F_UNICODE: return extFormat? (char *)"NCHAR":(char *)"REC_NCHAR_F_UNICODE";
case REC_BYTE_V_ASCII: return extFormat? (char *)"VARCHAR":(char *)"REC_BYTE_V_ASCII";
#ifdef READTABLEDEF_IMPLEMENTATION
case REC_BYTE_V_ASCII_UP: return extFormat? (char *)"VARCHAR UPSHIFT":(char *)"REC_BYTE_V_ASCII_UP";
#endif
case REC_NCHAR_V_UNICODE: return extFormat? (char *)"NCHAR VARYING":(char *)"REC_NCHAR_V_UNICODE";
case REC_BYTE_V_ASCII_LONG: return extFormat? (char *)"VARCHAR":(char *)"REC_BYTE_V_ASCII_LONG";
case REC_BYTE_V_ANSI: return extFormat? (char *)"VARCHAR":(char *)"REC_BYTE_V_ANSI";
case REC_BYTE_V_ANSI_DOUBLE: return extFormat? (char *)"VARCHAR":(char *)"REC_BYTE_V_ANSI_DOUBLE";
case REC_SBYTE_LOCALE_F: return extFormat? (char *)"CHAR":(char *)"REC_SBYTE_LOCALE_F";
case REC_MBYTE_LOCALE_F: return extFormat? (char *)"CHAR":(char *)"REC_MBYTE_LOCALE_F";
case REC_MBYTE_F_SJIS: return extFormat? (char *)"CHAR":(char *)"REC_MBYTE_F_SJIS";
case REC_MBYTE_V_SJIS: return extFormat? (char *)"VARCHAR":(char *)"REC_MBYTE_V_SJIS";
case REC_DATETIME: return extFormat? (char *)"DATETIME":(char *)"REC_DATETIME";
case REC_INT_YEAR: return extFormat? (char *)"INTERVAL YEAR":(char *)"REC_INT_YEAR";
case REC_INT_MONTH: return extFormat? (char *)"INTERVAL MONTH":(char *)"REC_INT_MONTH";
case REC_INT_YEAR_MONTH: return extFormat? (char *)"INTERVAL YEAR TO MONTH":(char *)"REC_INT_YEAR_MONTH";
case REC_INT_DAY: return extFormat? (char *)"INTERVAL DAY":(char *)"REC_INT_DAY";
case REC_INT_HOUR: return extFormat? (char *)"INTERVAL HOUR":(char *)"REC_INT_HOUR";
case REC_INT_DAY_HOUR: return extFormat? (char *)"INTERVAL DAY TO HOUR":(char *)"REC_INT_DAY_HOUR";
case REC_INT_MINUTE: return extFormat? (char *)"INTERVAL MINUTE":(char *)"REC_INT_MINUTE";
case REC_INT_HOUR_MINUTE: return extFormat? (char *)"INTERVAL HOUR TO MINUTE":(char *)"REC_INT_HOUR_MINUTE";
case REC_INT_DAY_MINUTE: return extFormat? (char *)"INTERVAL DAY TO MINUTE":(char *)"REC_INT_DAY_MINUTE";
case REC_INT_SECOND: return extFormat? (char *)"INTERVAL SECOND":(char *)"REC_INT_SECOND";
case REC_INT_MINUTE_SECOND: return extFormat? (char *)"INTERVAL MINUTE TO SECOND":(char *)"REC_INT_MINUTE_SECOND";
case REC_INT_HOUR_SECOND: return extFormat? (char *)"INTERVAL HOUR TO SECOND":(char *)"REC_INT_HOUR_SECOND";
case REC_INT_DAY_SECOND: return extFormat? (char *)"INTERVAL DAY TO SECOND":(char *)"REC_INT_DAY_SECOND";
case REC_INT_FRACTION: return extFormat? (char *)"INTERVAL FRACTION":(char *)"REC_INT_FRACTION";
case REC_BLOB: return extFormat? (char *)"BLOB":(char *)"REC_BLOB";
case REC_CLOB: return extFormat? (char *)"CLOB":(char *)"REC_CLOB";
// When you add new datatype in /common/dfs2rec.h, don't
// forget add new case here. Otherwise, showplan won't display it.
default: return extFormat? (char *)"UNKNOWN":(char *)"add datatype in getDatatypeAsString()";
}
}
ShowplanAttributes::ShowplanAttributes(Lng32 valueId, char * text)
{
setClassID(ShowplanID);
valueId_ = valueId;
if (text)
{
if (str_len(text) < sizeof(text_))
str_cpy(text_, text, str_len(text)+1,'\0');
else
{
memset(text_, 0, sizeof(text_));
str_cpy_all(text_, text, sizeof(text_) - 4);
str_cat(text_, " ...",text_);
}
}
else
text_[0] = 0;
memset(fillers_, 0, sizeof(fillers_));
}
ShowplanAttributes::~ShowplanAttributes()
{}
Attributes * ShowplanAttributes::newCopy()
{
ShowplanAttributes * new_copy = new ShowplanAttributes(valueId(), text());
*new_copy = *this;
return new_copy;
}
Attributes * ShowplanAttributes::newCopy(CollHeap * heap)
{
ShowplanAttributes * new_copy = new(heap) ShowplanAttributes(valueId(), text());
*new_copy = *this;
return new_copy;
}
void Attributes::displayContents(Space * space, Int32 operandNum,
char * constsArea, Attributes * spAttr)
{
#ifndef __EID
char buf[250];
char r[15];
if (operandNum == 0)
str_cpy(r, " (result)",str_len(" (result)")+1,'\0');
else
r[0] = 0;
str_sprintf(buf, " Operand #%d%s:", operandNum, r);
space->allocateAndCopyToAlignedSpace(buf, str_len(buf), sizeof(short));
str_sprintf(buf, " Datatype = %s(%d), Length = %d, Null Flag = %d",
getDatatypeAsString(getDatatype()), getDatatype(), getLength(), getNullFlag());
space->allocateAndCopyToAlignedSpace(buf, str_len(buf), sizeof(short));
if ((getDatatype() == REC_BLOB) ||
(getDatatype() == REC_CLOB))
{
Int16 precision = getPrecision();
UInt16 scale = getScaleAsUI();
Lng32 lobLen = (precision << 16);
lobLen += scale;
Int64 ll = (Int64)lobLen;
// Int64 ll = (Int64)getPrecision() * 1000 + (Int64)getScale();
str_sprintf(buf, " LobLength = %Ld Mb", ll);
space->allocateAndCopyToAlignedSpace(buf, str_len(buf), sizeof(short));
}
str_sprintf(buf, " Precision = %d, Scale = %d, Collation = %d, flags_ = %b",
getPrecision(), getScale(), getCollation(), flags_);
space->allocateAndCopyToAlignedSpace(buf, str_len(buf), sizeof(short));
str_cpy(buf, " Tuple Data Format = ",
str_len(" Tuple Data Format = ")+1,'\0');
switch (getTupleFormat())
{
case ExpTupleDesc::UNINITIALIZED_FORMAT:
str_cat(buf, "UNINITIALIZED_FORMAT", buf);
break;
case ExpTupleDesc::PACKED_FORMAT:
str_cat(buf, "PACKED_FORMAT", buf);
break;
case ExpTupleDesc::SQLMX_KEY_FORMAT:
str_cat(buf, "SQLMX_KEY_FORMAT", buf);
break;
case ExpTupleDesc::SQLARK_EXPLODED_FORMAT:
str_cat(buf, "SQLARK_EXPLODED_FORMAT", buf);
break;
case ExpTupleDesc::SQLMX_FORMAT:
str_cat(buf, "SQLMX_FORMAT", buf);
break;
case ExpTupleDesc::SQLMX_ALIGNED_FORMAT:
str_cat(buf, "SQLMX_ALIGNED_FORMAT", buf);
break;
default:
str_cat(buf, "Unrecognized format", buf);
break;
} // switch tuple format
space->allocateAndCopyToAlignedSpace(buf, str_len(buf), sizeof(short));
if (isSpecialField())
{
str_sprintf(buf, " DefaultFieldNum = %d",getDefaultFieldNum());
space->allocateAndCopyToAlignedSpace(buf, str_len(buf), sizeof(short));
}
char constOrTemp[150];
if ((getAtp()) == 0 && (getAtpIndex() == 0))
{
str_cpy(constOrTemp, " (Constant)",
str_len(" (Constant)")+1,'\0');
}
else if ((getAtp() == 0) && (getAtpIndex() == 1))
str_cpy(constOrTemp, " (Temporary)",
str_len(" (Temporary)")+1,'\0');
else if ((getAtp() == 1) && (getAtpIndex() == 1))
str_cpy(constOrTemp, " (Persistent)",
str_len(" (Persistent)")+1,'\0');
else if (getAtpIndex() == 0)
str_cpy(constOrTemp, " !!!ERROR!!! - Invalid (Atp,AtpIndex)",
str_len(" !!!ERROR!!! - Invalid (Atp,AtpIndex)")+1,'\0');
else
str_cpy(constOrTemp, " ", str_len(" ")+1,'\0');
str_sprintf(buf, " Atp = %d, AtpIndex = %d%s",
getAtp(), getAtpIndex(), constOrTemp);
space->allocateAndCopyToAlignedSpace(buf, str_len(buf), sizeof(short));
str_sprintf(buf, " Offset = %d, NullIndOffset = %d, VClenIndOffset = %d",
(getOffset() == ExpOffsetMax ? -1 : (Lng32)getOffset()),
(getNullIndOffset() == ExpOffsetMax ? -1 : getNullIndOffset()),
(getVCLenIndOffset() == ExpOffsetMax ? -1 : getVCLenIndOffset()));
space->allocateAndCopyToAlignedSpace(buf, str_len(buf), sizeof(short));
if ((getTupleFormat() == ExpTupleDesc::SQLMX_FORMAT) ||
(getTupleFormat() == ExpTupleDesc::SQLMX_ALIGNED_FORMAT))
{
str_sprintf(buf, " RelOffset = %d, VoaOffset = %d, NullBitIdx = %d",
getRelOffset(),
(getVoaOffset() == ExpOffsetMax ? -1 : getVoaOffset()),
getNullBitIndex());
space->allocateAndCopyToAlignedSpace(buf, str_len(buf), sizeof(short));
}
str_sprintf(buf, " NullIndLength = %d, VClenIndLength = %d",
getNullIndicatorLength(), getVCIndicatorLength());
space->allocateAndCopyToAlignedSpace(buf, str_len(buf), sizeof(short));
if ((getRowsetSize() > 0) ||
(getRowsetInfo()))
{
str_sprintf(buf, " rowsetSize_ = %d, rowsetInfo_ = %b",
getRowsetSize(), getRowsetInfo());
space->allocateAndCopyToAlignedSpace(buf, str_len(buf), sizeof(short));
}
if (spAttr)
{
str_sprintf(buf, " ValueId = %d",
((ShowplanAttributes *)spAttr)->valueId());
space->allocateAndCopyToAlignedSpace(buf, str_len(buf), sizeof(short));
str_sprintf(buf, " Text = %s",
(((ShowplanAttributes *)spAttr)->text() ?
((ShowplanAttributes *)spAttr)->text() : ""));
space->allocateAndCopyToAlignedSpace(buf, str_len(buf), sizeof(short));
}
#endif // __EID
}
ExpDatetime *
Attributes::castToExpDatetime()
{
return NULL;
}
// ---------------------------------------------------------------------
// Method for comparing if two Attributes are equal.
// ---------------------------------------------------------------------
NABoolean Attributes::operator==(const Attributes& other) const
{
Attributes thisAttr = (Attributes&)(*this); // to make 'this' a non-const
Attributes otherAttr = (Attributes&)other;
if (datatype_ == otherAttr.datatype_ &&
nullFlag_ == otherAttr.nullFlag_ &&
defClass_ == otherAttr.defClass_ &&
(thisAttr.upshift() == otherAttr.upshift()) &&
tdf_ == otherAttr.tdf_ &&
( (alignment_ > 0 && otherAttr.alignment_ > 0)
? (alignment_ == otherAttr.alignment_ ) : TRUE ) &&
( (nullFlag_ != 0)
? (nullIndicatorLength_ == otherAttr.nullIndicatorLength_ &&
vcIndicatorLength_ == otherAttr.vcIndicatorLength_ ) : TRUE)
)
return TRUE;
else
return FALSE;
}
NABoolean SimpleType::operator==(const Attributes& other) const
{
if (Attributes::operator==(other))
{
SimpleType thisAttr = (SimpleType&)(*this);
SimpleType otherAttr = (SimpleType&)other;
if (length_ == otherAttr.length_ &&
precision_ == otherAttr.precision_ &&
(DFS2REC::isAnyCharacter(thisAttr.getDatatype())
? (thisAttr.getCharSet() == otherAttr.getCharSet())
: (scale_ == otherAttr.scale_)) &&
((thisAttr.getDefaultClass() == DEFAULT_NULL ||
thisAttr.getDefaultClass() == NO_DEFAULT ||
thisAttr.getDefaultClass() == DEFAULT_CURRENT) ||
(thisAttr.getDefaultValue() && otherAttr.getDefaultValue() &&
(str_cmp(thisAttr.getDefaultValue(),
otherAttr.getDefaultValue(),
(thisAttr.getNullIndicatorLength() +
thisAttr.getVCIndicatorLength() +
length_) ) == 0)
) )
)
return TRUE;
else
return FALSE;
}
else
return FALSE;
}
NABoolean ComplexType::operator==(const Attributes& other) const
{
if (Attributes::operator==(other))
{
ComplexType &thisAttr = (ComplexType&)(*this);
ComplexType &otherAttr = (ComplexType&)other;
if ((thisAttr.complexDatatype_ == otherAttr.complexDatatype_) &&
(thisAttr.getLength() == otherAttr.getLength()) &&
(thisAttr.getPrecision() == otherAttr.getPrecision()) &&
(thisAttr.getScale() == otherAttr.getScale()))
return TRUE;
else
return FALSE;
}
else
return FALSE;
}
NA_EIDPROC NABoolean isAddedColumn(Attributes * srcAttr,
NABoolean tableHasAddedColumns,
NABoolean tableHasVariableColumns,
ULng32 offsetOfFirstFixedFieldInRec,
ULng32 recordLength,
char * recordPtr
)
{
// Check if this is an added column.
// There are 4 cases to check for:
// (1) The column is a variable column and the offset to the first
// fixed field in the audit row image is greater than the offset
// to VOA entry for this column.
// (2) This is a fixed column and its offset is greater than the
// length of the audit image passed in, and there are no varchar
// columns in the audit row image.
// (3) This is a fixed column and its offset is greater than
// the offset for the first variable length column in the audit
// row image.
// (4) This is a fixed column, but there are no previous fixed fields
// in the audit row image.
if (((srcAttr->isSpecialField()) || (tableHasAddedColumns)) &&
(((srcAttr->getVCIndicatorLength() > 0) &&
(srcAttr->getVoaOffset() >= offsetOfFirstFixedFieldInRec)) ||
(((!tableHasVariableColumns) &&
((offsetOfFirstFixedFieldInRec + srcAttr->getRelOffset()) >=
recordLength)) ||
((tableHasVariableColumns) &&
((offsetOfFirstFixedFieldInRec + srcAttr->getRelOffset()) >=
*(ULng32 *)(recordPtr + sizeof(Lng32)))) ||
(tableHasVariableColumns &&
(srcAttr->getVCIndicatorLength() == 0) &&
((offsetOfFirstFixedFieldInRec == sizeof(Lng32)) ||
(offsetOfFirstFixedFieldInRec == 0))))))
return TRUE;
return FALSE;
}
// Return number of bytes of the first character in buf. SJIS should be 1 or
// 2. UTF8 should be 1 to 4 (byte). UCS2 is 1 (we use wchar for UCS2 data. So
// it is 1, not 2).
Int32 Attributes::getFirstCharLength(const char *buf,
Int32 buflen,
CharInfo::CharSet cs)
{
UInt32 UCS4value;
UInt32 firstCharLenInBuf;
// The buffer explain send to string function includes character 0,
// treat it as single byte character.
if( cs == CharInfo::ISO88591 ||
cs == CharInfo::UCS2 ||
buf[0] == 0)
{
firstCharLenInBuf = 1;
}
else
{
firstCharLenInBuf =
LocaleCharToUCS4(buf, buflen, &UCS4value, convertCharsetEnum(cs));
}
return firstCharLenInBuf;
}
// Find the number of character at the offset in buf.
Int32 Attributes::convertOffsetToChar(const char *buf,
Int32 offset,
CharInfo::CharSet cs)
{
if (cs == CharInfo::ISO88591 || cs == CharInfo::UCS2)
return(offset);
Int32 firstCharLenInBuf;
UInt32 UCS4value;
cnv_charset charset = convertCharsetEnum(cs);
Int32 numberOfChar = 0;
Int32 i = 0;
while(i < offset)
{
firstCharLenInBuf = LocaleCharToUCS4(&buf[i],
offset - i,
&UCS4value,
charset);
if(firstCharLenInBuf < 0) return firstCharLenInBuf;
i += firstCharLenInBuf;
++numberOfChar;
}
return numberOfChar;
}
// Return number of bytes used by the characters in buf preceding the Nth char.
// Return an error if we encounter a character that is not valid in the cs
// character set.
Int32 Attributes::convertCharToOffset (const char *buf,
Int32 numOfChar,
Int32 maxBufLen,
CharInfo::CharSet cs)
{
if (cs == CharInfo::ISO88591 || cs == CharInfo::UCS2)
return((numOfChar <= maxBufLen) ? numOfChar - 1 : maxBufLen);
Int32 firstCharLenInBuf;
UInt32 UCS4value;
cnv_charset charset = convertCharsetEnum(cs);
// Number of character in string functions start from 1, not 0. 1 means
// the first character in the string. Offset start from 0. The offset of
// the first character in a string is 0.
Int32 count = 1;
Int32 offset = 0;
while(count < numOfChar && offset < maxBufLen)
{
firstCharLenInBuf = LocaleCharToUCS4(&buf[offset],
maxBufLen - offset,
&UCS4value,
charset);
if(firstCharLenInBuf < 0) return firstCharLenInBuf;
offset += firstCharLenInBuf;
++count;
}
return offset;
}
Int32 Attributes::getCharLengthInBuf
(const char *buf,
const char *endOfBuf,
char *charLengthInBuf,
CharInfo::CharSet cs)
{
Int32 numberOfCharacterInBuf;
if (cs == CharInfo::ISO88591 || cs == CharInfo::UCS2)
{
numberOfCharacterInBuf = endOfBuf - buf;
if(charLengthInBuf != NULL)
{
for(Int32 i = 0; i < numberOfCharacterInBuf; i ++)
charLengthInBuf[i] = 1;
}
return numberOfCharacterInBuf;
}
Int32 firstCharLenInBuf;
UInt32 UCS4value;
cnv_charset charset = convertCharsetEnum(cs);
// For SJIS, it is impossible to get the length of the last character
// from right. Scan the string from the beginning and save the vales to
// an array.
// For example: SJIS string (x'5182828251') and (x'51828251'), the last
// character in the first string is 2-byte, double-byte "2". The last
// character in the second string is 1 byte, single-byte "Q".
size_t len = endOfBuf - buf;
numberOfCharacterInBuf = 0;
while(len > 0)
{
firstCharLenInBuf = LocaleCharToUCS4 (buf, len, &UCS4value, charset);
if (firstCharLenInBuf <= 0)
return CNV_ERR_INVALID_CHAR;
else
{
if(charLengthInBuf != NULL)
{
charLengthInBuf[numberOfCharacterInBuf] = (char)firstCharLenInBuf;
}
numberOfCharacterInBuf++;
buf += firstCharLenInBuf;
len -= firstCharLenInBuf;
}
}
return numberOfCharacterInBuf;
}
Int32 Attributes::trimFillerSpaces
(const char* buf, Int32 precision, Int32 maxBufLen, CharInfo::CharSet cs)
{
#if 0 /* All callers have already checked this for speed reasons. May need this if SJIS supported later. */
if (cs == CharInfo::UTF8)
#endif
{
if ( precision > 0 )
{
Int32 endOff = lightValidateUTF8Str(buf, maxBufLen, precision, FALSE);
if (endOff >= 0) // If no error
return (endOff);
// else bad UTF8 chars will get detected later by caller
}
}
return (maxBufLen);
}
|
5303e238ba9195760a63dcf39761155ee48697e7 | f71a0efcc63451be14bb3c42eab093f06ce12409 | /Tool/kvsview/OrthoSlice.h | 74b5ce763623300620d92978ea729dc9965f0eba | [
"BSD-3-Clause"
] | permissive | hayashi-kengo/KVS | bbc79772b2b9c2c325243d5599f543c28399d1ab | cd28ca8ea95d2d6dabfeea467691286209860f2c | refs/heads/develop | 2020-04-05T09:34:03.621422 | 2016-06-17T08:32:41 | 2016-06-17T08:32:41 | 61,693,298 | 0 | 0 | null | 2016-06-22T06:06:18 | 2016-06-22T06:06:17 | null | UTF-8 | C++ | false | false | 2,054 | h | OrthoSlice.h | /*****************************************************************************/
/**
* @file OrthoSlice.h
*/
/*----------------------------------------------------------------------------
*
* Copyright (c) Visualization Laboratory, Kyoto University.
* All rights reserved.
* See http://www.viz.media.kyoto-u.ac.jp/kvs/copyright/ for details.
*
* $Id: OrthoSlice.h 621 2010-09-30 08:04:55Z naohisa.sakamoto $
*/
/*****************************************************************************/
#ifndef KVSVIEW__ORTHO_SLICE_H_INCLUDE
#define KVSVIEW__ORTHO_SLICE_H_INCLUDE
#include <string>
#include <kvs/Type>
#include <kvs/CommandLine>
#include <kvs/PolygonObject>
#include <kvs/TransferFunction>
#include <kvs/OrthoSlice>
#include "Argument.h"
namespace kvsview
{
namespace OrthoSlice
{
const std::string CommandName("OrthoSlice");
const std::string Description("Extract a orthogonal slice plane. (optional)");
/*===========================================================================*/
/**
* Argument class for OrthoSlice.
*/
/*===========================================================================*/
class Argument : public kvsview::Argument::Common
{
public:
Argument( int argc, char** argv );
public:
const kvs::OrthoSlice::AlignedAxis axis( void );
const float position( void );
const kvs::TransferFunction transferFunction( const kvs::VolumeObjectBase* volume );
};
/*===========================================================================*/
/**
* Main class for OrthoSlice.
*/
/*===========================================================================*/
class Main
{
protected:
int m_argc; ///< argument count
char** m_argv; ///< argument values
std::string m_input_name; ///< input filename
std::string m_output_name; ///< output filename
public:
Main( int argc, char** argv );
public:
const bool exec( void );
};
} // end of namespace OrthoSlice
} // end of namespace kvsview
#endif // KVSVIEW__ORTHO_SLICE_H_INCLUDE
|
e0551ee664b8346526d9212c016c4a3caa37764e | 64ec5548ad8aa8ec8b701d16112a3a37e51c0a5e | /src/model/bullet.h | 6855ef9ab360b5b99e2862cafcb022987d14d1b8 | [] | no_license | dalsat/ladybug | 7fc5df14766d57ab3a9c0615b6e4054a462df452 | c9e83d20d86a88f7c530f798c4b1844ab58dd4d8 | refs/heads/master | 2021-09-10T08:31:01.402979 | 2018-03-23T00:00:47 | 2018-03-23T00:00:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 861 | h | bullet.h | #ifndef BULLET_H_
#define BULLET_H_
class Enemy; // predichiarazione della classe Enemy
// accelerazione di gravita'
#define G 9.8
// pigreco
#ifndef M_PI
#define M_PI 3.14159265358979323846
#endif
// diametro dei proiettili
#define BULLET_RADIUS 0.4
class Bullet
{
public:
Bullet( float startX, float startY, float startZ,
float ang, float dir, float pow );
virtual ~Bullet();
// metodi get
float getX() const;
float getY() const;
float getZ() const;
// altri metodi
/**Muove il proiettile e ritorna true finche' il proiettile esiste*/
bool move( double elapsedTime );
/**Verifica se il proiettile ha colpito un nemico*/
bool hit( const Enemy& ) const;
private:
float bullX, bullY, bullZ, // posizone del proiettile
VX, VY, VZ, // vettori dell'accelerazione
alzo, direzione, potenza;
};
#endif /*BULLET_H_*/
|
bb885c662742f88514f16ea6d8bc2e8989a5e222 | f83ef53177180ebfeb5a3e230aa29794f52ce1fc | /live555/live.2019.03.06/liveMedia/MP3ADUdescriptor.cpp | 334fdbbc0a407121e1637e5786f3063e8b3bc05c | [
"GPL-3.0-only",
"LGPL-3.0-only",
"Apache-2.0"
] | permissive | msrLi/portingSources | fe7528b3fd08eed4a1b41383c88ee5c09c2294ef | 57d561730ab27804a3172b33807f2bffbc9e52ae | refs/heads/master | 2021-07-08T01:22:29.604203 | 2019-07-10T13:07:06 | 2019-07-10T13:07:06 | 196,183,165 | 2 | 1 | Apache-2.0 | 2020-10-13T14:30:53 | 2019-07-10T10:16:46 | null | UTF-8 | C++ | false | false | 2,140 | cpp | MP3ADUdescriptor.cpp | /**********
This library is free software; you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License as published by the
Free Software Foundation; either version 3 of the License, or (at your
option) any later version. (See <http://www.gnu.org/copyleft/lesser.html>.)
This library is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for
more details.
You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
**********/
// "liveMedia"
// Copyright (c) 1996-2019 Live Networks, Inc. All rights reserved.
// Descriptor preceding frames of 'ADU' MP3 streams (for improved loss-tolerance)
// Implementation
#include "MP3ADUdescriptor.hh"
////////// ADUdescriptor //////////
//##### NOTE: For now, ignore fragmentation. Fix this later! #####
#define TWO_BYTE_DESCR_FLAG 0x40
unsigned ADUdescriptor::generateDescriptor(unsigned char*& toPtr,
unsigned remainingFrameSize) {
unsigned descriptorSize = ADUdescriptor::computeSize(remainingFrameSize);
switch (descriptorSize) {
case 1: {
*toPtr++ = (unsigned char)remainingFrameSize;
break;
}
case 2: {
generateTwoByteDescriptor(toPtr, remainingFrameSize);
break;
}
}
return descriptorSize;
}
void ADUdescriptor::generateTwoByteDescriptor(unsigned char*& toPtr,
unsigned remainingFrameSize) {
*toPtr++ = (TWO_BYTE_DESCR_FLAG|(unsigned char)(remainingFrameSize>>8));
*toPtr++ = (unsigned char)(remainingFrameSize&0xFF);
}
unsigned ADUdescriptor::getRemainingFrameSize(unsigned char*& fromPtr) {
unsigned char firstByte = *fromPtr++;
if (firstByte&TWO_BYTE_DESCR_FLAG) {
// This is a 2-byte descriptor
unsigned char secondByte = *fromPtr++;
return ((firstByte&0x3F)<<8) | secondByte;
} else {
// This is a 1-byte descriptor
return (firstByte&0x3F);
}
}
|
9458f48b8f166b2c1873629c422cd0c6fad94ce5 | 00d5b0e47f6b9d22a6a18ad9b5fb69270c6ae232 | /esp12-narodmon-bme280/esp12-narodmon-bme280.ino | be3d114d1ae7fe658d7099c1c67e1606b5715f44 | [] | no_license | sash999/Arduino-projects | f2a4d07545c62f0b8bff595ef360969fef6c59e8 | 40a4b234068c0d95aafb37af2f72b96ac2b4265c | refs/heads/master | 2020-05-15T02:57:50.081199 | 2019-10-29T05:51:59 | 2019-10-29T05:51:59 | 182,059,088 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,559 | ino | esp12-narodmon-bme280.ino |
#include "ESP8266WiFi.h"
#include <Wire.h>
#include <Adafruit_BME280.h>
//ADC_MODE(ADC_VCC); //АЦП цепляем к VCC а не к ADC0 (чтобы измерять напряжение на шине)
const char* ssid = "xxxxx";
const char* password = "xxxxx";
const char* host = "narodmon.ru";
const int httpPort = 8283;
#define DEBUG false //писать ли дебаг в сериал
#define BLINK false // мигать ли светодиодом
#define WIFITIMEOUT 15000 // Таймаут после которого считаем что к вифи подключиться не удалось
//#define SLEEPTIME 1800e6 // В дипслипе проводим 30 минут
#define SLEEPTIME 600e6 // В дипслипе проводим 10 минут
#define SENSORNAME "ESP8266_BME280" // Имя датчика на народмоне
#define LED_BUILTIN 2 // В esp-12 встроенный светодиод на gpio2
#define LED_ON 0 // и он инверсный
#define LED_OFF 1
Adafruit_BME280 bme;
void setup()
{
pinMode(LED_BUILTIN, OUTPUT);
if (!BLINK) digitalWrite(LED_BUILTIN, LED_OFF); //погасим изначально горящий для экономии энергии
if (DEBUG) Serial.begin(115200);
DoBlink(3,200,200);
Wire.pins(4, 5); // gpio4-SDA, gpio5-SCL
Wire.begin(4, 5);
if (!bme.begin(0x76)) { // по дефолту в либе 0x77, а у нашего китайца не так, так что задаем явно
if (DEBUG) Serial.println("Missing BME280 sensor!");
DoBlink(5,100,100);
ESP.deepSleep(SLEEPTIME);
}
SendDataToNarodmon();
if (DEBUG) {
Serial.print("Going to deep sleep for ");
Serial.print(SLEEPTIME/1e6);
Serial.println(" seconds");
}
ESP.deepSleep(SLEEPTIME);
}
void DoBlink(int count, int intervalHigh, int intervalLow) {
if(!BLINK) return;
for (int i=count; i>0; i--) {
digitalWrite(LED_BUILTIN, LED_ON);
delay(intervalHigh);
digitalWrite(LED_BUILTIN, LED_OFF);
delay(intervalLow);
}
}
void SendDataToNarodmon() {
float t,h,p,v; // Температура, влажность, давление, напряжение на батарейке
//v = ESP.getVcc()/1000.0;
//int v;
v = (analogRead(A0) * 4.5)/1024.0;
char msgbuffer[128];
int TryToConnectTime = 0;
if (DEBUG) {
Serial.println();
Serial.println();
Serial.print("Connecting to ");
Serial.println(ssid);
}
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED && TryToConnectTime < WIFITIMEOUT) {
delay(500);
TryToConnectTime += 500;
if (DEBUG) Serial.print(".");
}
if (WiFi.status() != WL_CONNECTED) {
if (DEBUG) Serial.println("WiFi connection was not established in allowed time!");
DoBlink(5,300, 100);
return;
}
DoBlink(2,100,100);
if (DEBUG) {
Serial.println();
Serial.println("WiFi connected");
Serial.print("IP address: ");
Serial.println(WiFi.localIP());
Serial.print("MAC address: ");
Serial.println(WiFi.macAddress());
Serial.println();
Serial.print("connecting to ");
Serial.println(host);
}
// Use WiFiClient class to create TCP connections
WiFiClient client;
if (!client.connect(host, httpPort)) {
if (DEBUG) Serial.println("connection failed");
return;
}
char * mac = strdup(WiFi.macAddress().c_str());
p = bme.readPressure()/133.3;
t = bme.readTemperature();
h = bme.readHumidity();
snprintf(msgbuffer,sizeof msgbuffer, "#%s#%s\n#T1#%2.2f\n#H1#%2.2f\n#U1#%2.2f\n#P1#%3.2f\n##", mac, SENSORNAME, t, h, v, p);
//snprintf(msgbuffer,sizeof msgbuffer, "#%s#%s\n#T1#%2.2f\n#T2#%2.2f\n#H1#%2.2f\n#U1#%4u\n#P1#%3.2f\n##", mac, SENSORNAME, t_dht, t_bmp, h, v, p);
if(DEBUG) {
Serial.println("Sending data to narodmon.ru");
Serial.print(msgbuffer);
Serial.println();
}
client.print(msgbuffer);
delay(1000);
// читаем ответ с и отправляем его в сериал
// вообще на ответ нужно както реагировать
if (DEBUG) Serial.print("Requesting: ");
while(client.available()){
String line = client.readStringUntil('\r');
if (DEBUG) {
Serial.println("Received answer:");
Serial.print(line);
}
}
client.stop();
if (DEBUG) Serial.println("Closing connection");
WiFi.disconnect(); // отключаемся от сети
if (DEBUG) Serial.println("Disconnect WiFi.");
}
void loop() {}
|
adb30305896a9f357d07fdd195f77348dfa8b4ee | 1a7c9fe49eb39083c4031e84c152a05e1846dca9 | /WSLDVCPlugin/dllmain.cpp | 832efd09583b343631fdba6da4a4262f71bab683 | [
"MIT"
] | permissive | CyberFlameGO/wslg | c74b8903f02d66e7cff550781aaa37bd20d8ea13 | e870e00e86a317e3b38e0f29e6f5f7573482cc0f | refs/heads/main | 2023-09-01T20:42:22.262731 | 2021-10-15T00:41:49 | 2021-10-15T00:41:49 | 417,987,234 | 0 | 0 | MIT | 2021-10-17T01:09:11 | 2021-10-17T01:07:39 | null | UTF-8 | C++ | false | false | 1,316 | cpp | dllmain.cpp | // Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
#include "pch.h"
#include <cchannel.h>
#include "WSLDVCPlugin.h"
BOOL APIENTRY DllMain( HMODULE hModule,
DWORD ul_reason_for_call,
LPVOID lpReserved
)
{
UNREFERENCED_PARAMETER(hModule);
UNREFERENCED_PARAMETER(lpReserved);
switch (ul_reason_for_call)
{
case DLL_PROCESS_ATTACH:
case DLL_THREAD_ATTACH:
case DLL_THREAD_DETACH:
case DLL_PROCESS_DETACH:
break;
}
return TRUE;
}
extern "C"
{
__declspec(dllexport) HRESULT VCAPITYPE
VirtualChannelGetInstance(
_In_ REFIID refiid,
_Inout_ ULONG* pNumObjs,
_Out_opt_ VOID** ppObjArray
)
{
HRESULT hr = S_OK;
ComPtr<IWTSPlugin> spPlugin;
if (refiid != __uuidof(IWTSPlugin))
{
return E_NOINTERFACE;
}
if (ppObjArray == NULL)
{
*pNumObjs = 1;
return S_OK;
}
hr = WSLDVCPlugin_CreateInstance(&spPlugin);
if (SUCCEEDED(hr))
{
*pNumObjs = 1;
ppObjArray[0] = spPlugin.Detach();
}
return hr;
}
}
|
c155ceb62e85848520d3ebb78af69d53199f701e | 33035c05aad9bca0b0cefd67529bdd70399a9e04 | /src/boost_local_function_aux__preprocessor_traits_decl_sign__any_bind_type.hpp | b73d7a961bca939034829c19f387edcf82e16a89 | [
"LicenseRef-scancode-unknown-license-reference",
"BSL-1.0"
] | permissive | elvisbugs/BoostForArduino | 7e2427ded5fd030231918524f6a91554085a8e64 | b8c912bf671868e2182aa703ed34076c59acf474 | refs/heads/master | 2023-03-25T13:11:58.527671 | 2021-03-27T02:37:29 | 2021-03-27T02:37:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 86 | hpp | boost_local_function_aux__preprocessor_traits_decl_sign__any_bind_type.hpp | #include <boost/local_function/aux_/preprocessor/traits/decl_sign_/any_bind_type.hpp>
|
9ae15f275b426d1341e97d9a44ae4b0ec8957d50 | 7dc67a956d5516c8c8d9234861ec21b8d9111213 | /Leet2015/Leet2015/DistinctSubsequences.cpp | 0b219f0333567c6f53706a275e8fb1b91ec789c2 | [] | no_license | flameshimmer/leet2015 | 285a1f4f0c31789e1012a7c056797915662611ba | 45297dfe330a16f001fb0b2c8cc3df99b2c76dda | refs/heads/master | 2021-01-22T05:15:40.849200 | 2015-08-15T19:46:43 | 2015-08-15T19:46:43 | 31,512,278 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 881 | cpp | DistinctSubsequences.cpp | #include "stdafx.h"
//Given a string S and a string T, count the number of distinct subsequences of T in S.
//
//A subsequence of a string is a new string which is formed from the original string by
//deleting some(can be none) of the characters without disturbing the relative positions
//of the remaining characters. (ie, "ACE" is a subsequence of "ABCDE" while "AEC" is not).
//
//Here is an example :
//S = "rabbbit", T = "rabbit"
//
//Return 3.
namespace Solution1
{
int numDistinct(string s, string t) {
int lens = s.size();
int lent = t.size();
if (lens < lent) { return 0; }
vector<int>M(lent+1, 0);
M[0] = 1;
for (int j = 1; j <= lens; j++)
{
for (int i = lent; i >= 1; i--)
{
if (t[i-1] == s[j-1])
{
M[i] += M[i - 1];
}
}
}
return M[lent];
}
void DistinctSubsequences()
{
print(numDistinct("rabbbit", "rabbit"));
}
} |
b3deab5389ea40136b19b6d5fe2934232109b8ab | 39b1332127a70797ea05fd5de147959db888b5e2 | /spoj and codechef/spoj numbers.cpp | ff1545f2d99fe86918b4be4503f5c431b9e1deb4 | [] | no_license | chowmean/Programs | ba61c5abb68c867722cc535ac7328cfc2565a525 | 5f1fc42b08e59483de393d10d9782424e2773c48 | refs/heads/master | 2021-01-17T04:35:16.679412 | 2014-06-18T07:38:23 | 2014-06-18T07:38:23 | 19,817,740 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 558 | cpp | spoj numbers.cpp | #include<iostream>
using namespace std;
int main()
{int a;
cin>>a;
long long int mind=100000000;
long long int mind2=100000000;
long long int b;
for(int i=0;i<a;i++)
{cin>>b;
if(b<mind)
{mind2=mind;
mind=b;
}
if(b>mind && mind2>b)
{mind2=b;
}
}
if(mind2==100000000)
cout<<"NO";
else
cout<<mind2; }
|
4dc2683f08980b7ccc4cce21a5cf3be900563768 | eb10d421252568464bf17d0552bb5e811e1ff300 | /Leetcod_way/Leetcod_way/538.h | bd04b983288aa51ae8f7a85d74aa58b433ed0f45 | [] | no_license | Meveral/Leetcode | 213d697489e5f5b723c8e45c13bbf68f142b4bcd | 674f4e4858d63a5c209d77924cbbd22b24ee9cfd | refs/heads/master | 2023-02-13T13:03:05.070954 | 2021-01-15T02:00:10 | 2021-01-15T02:00:10 | 270,582,300 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 958 | h | 538.h | #pragma once
/****************************************
*538. 把二叉搜索树转换为累加树
给定一个二叉搜索树(Binary Search Tree),把它转换成为累加树(Greater Tree),使得每个节点的值是原来的节点值加上所有大于它的节点值之和。
例如:
输入: 原始二叉搜索树:
5
/ \
2 13
输出: 转换为累加树:
18
/ \
20 13
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/convert-bst-to-greater-tree
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
***************************************/
#include"dft.h"
// Definition for a binary tree node.
struct TreeNode {
int val;
TreeNode *left;
TreeNode *right;
TreeNode(int x) : val(x), left(NULL), right(NULL) {}
};
class Solution {
public:
TreeNode* convertBST(TreeNode* root) {
if (root == nullptr)
return NULL;
};
};
|
fea0bd67443bf41117ab5ff164851c61b596a13f | b3fc3ea86651a8b6f081d8d3ee6b7afd24ce32e2 | /src/util/store/SmallMap.h | f3f5ec7b2517b7bc3a872fbea3325cef5a8752f9 | [] | no_license | andy-hanson/backup | 577ce8df2c2dcaca39286c680e04f9be55d39655 | d6c7d1c0e418be40afc97ead9f87281298b6589b | refs/heads/master | 2020-03-15T21:27:12.240241 | 2018-05-19T23:17:21 | 2018-05-19T23:17:21 | 132,355,292 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 460 | h | SmallMap.h | #pragma once
#include "../int.h"
#include "./KeyValuePair.h"
#include "./MaxSizeVector.h"
template <uint capacity, typename K, typename V>
class SmallMap {
MaxSizeVector<capacity, KeyValuePair<K, V>> pairs;
public:
void push(K key, V value) {
pairs.push({ key, value });
}
void pop() {
pairs.pop();
}
V must_get(const K& key) {
for (const KeyValuePair<K, V>& pair : pairs)
if (pair.key == key)
return pair.value;
unreachable();
}
};
|
d956a6ce31fb4907dc3ccc26f735ec41c067ee5b | 153f1a687db1f025e5a373191b25ab1e50948564 | /PBR_3D_Renderer/sources/game_pbr_3d.h | 419bc86777c297e3a97aed8467bc3ecc5d7b44bc | [] | no_license | Leon-Cantin/MoteurVulkan | 8d7655531f9c9efbc167ef2f80eda2515ef20c12 | 729de9aec1b1ee9424c18827b07ea1aeb2f6e15a | refs/heads/master | 2023-05-07T16:37:43.297440 | 2021-05-30T20:28:48 | 2021-05-30T20:28:48 | 167,554,941 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,175 | h | game_pbr_3d.h | #pragma once
#include "3d_pbr_renderer_imp.h"
#include "console_command.h"
#include "input.h"
#include "tick_system.h"
#include "asset_library.h"
#include "window_handler_vk.h"
#include "gfx_heaps_batched_allocator.h"
#include <glm/glm.hpp>
#include <glm/vec4.hpp>
#include <glm/mat4x4.hpp>
#include <glm/gtc/matrix_transform.hpp>
#include <chrono>
#include <iostream>
#include <vector>
#include <algorithm>
#include <assert.h>
namespace Scene3DGame
{
uint32_t current_frame = 0;
const int VIEWPORT_WIDTH = 800;
const int VIEWPORT_HEIGHT = 600;
SceneInstance planeSceneInstance;
GfxAsset planeRenderable;
SceneInstance shipSceneInstance;
GfxAsset cubeRenderable;
SceneInstance cameraSceneInstance;
BindlessTexturesState bindlessTexturesState;
LightUniform g_light;
float frameDeltaTime = 0.0f;
GfxHeap gfx_heap_device_local;
void LightCallback(const std::string* params, uint32_t paramsCount)
{
if (paramsCount >= 4)
{
g_light.position = glm::vec3((float)atof(params[1].data()), (float)atof(params[2].data()), (float)atof(params[3].data()));
}
}
glm::vec3 ForwardVector()
{
return glm::axis(cameraSceneInstance.orientation * glm::fquat{ 0.0f, 0.0f, 0.0f, 1.0f } *glm::conjugate(cameraSceneInstance.orientation));
}
glm::vec3 YawVector()
{
return glm::axis(cameraSceneInstance.orientation * glm::fquat{ 0.0f, 0.0f, 1.0f, 0.0f } *glm::conjugate(cameraSceneInstance.orientation));
}
glm::vec3 PitchVector()
{
return glm::axis(cameraSceneInstance.orientation * glm::fquat{ 0.0f, 1.0f, 0.0f, 0.0f } *glm::conjugate(cameraSceneInstance.orientation));
}
void ForwardCallback()
{
cameraSceneInstance.location += ForwardVector() * (frameDeltaTime/1000.0f);
}
void BackwardCallback()
{
cameraSceneInstance.location -= ForwardVector() * (frameDeltaTime / 1000.0f);
}
void MoveRightCallback()
{
cameraSceneInstance.location += PitchVector() * (frameDeltaTime / 1000.0f);
}
void MoveLeftCallback()
{
cameraSceneInstance.location -= PitchVector() * (frameDeltaTime / 1000.0f);
}
void ReloadShadersCallback(const std::string* params, uint32_t paramsCount)
{
//ForceReloadShaders();
}
void TickObjectCallback(float dt, void* unused)
{
static bool goRight = true;
shipSceneInstance.location.x += (dt/1000.0f) * (goRight ? 0.5f : -0.5f);
if (abs(shipSceneInstance.location.x) >= 2.0f)
goRight ^= true;
}
void mainLoop() {
size_t currentTime = WH::GetTime();
static size_t lastTime = currentTime;
frameDeltaTime = static_cast<float>(currentTime - lastTime);
lastTime = currentTime;
//Input
IH::DoCommands();
//Update objects
TickUpdate(frameDeltaTime);
std::vector<GfxAssetInstance> drawList = { {&planeRenderable, planeSceneInstance}, { &cubeRenderable, shipSceneInstance} };
DrawFrame( current_frame, &cameraSceneInstance, &g_light, drawList);
current_frame = (++current_frame) % SIMULTANEOUS_FRAMES;
}
void CreateGfxAsset(const GfxModel* modelAsset, uint32_t albedoIndex, uint32_t normalIndex, GfxAsset* o_renderable)
{
*o_renderable = { modelAsset, { albedoIndex, normalIndex } };
}
void Init()
{
//Input callbacks
IH::InitInputs();
IH::RegisterAction( "console", IH::TILD );
IH::BindAction( "console", IH::Pressed, &ConCom::OpenConsole );
IH::RegisterAction( "forward", IH::W );
IH::BindAction( "forward", IH::Pressed, &ForwardCallback );
IH::RegisterAction( "backward", IH::S );
IH::BindAction( "backward", IH::Pressed, &BackwardCallback );
IH::RegisterAction( "left", IH::A );
IH::BindAction( "left", IH::Pressed, &MoveLeftCallback );
IH::RegisterAction( "right", IH::D );
IH::BindAction( "right", IH::Pressed, &MoveRightCallback );
//Console commands callback (need IH)
ConCom::Init();
ConCom::RegisterCommand( "light", &LightCallback );
ConCom::RegisterCommand( "reloadshaders", &ReloadShadersCallback );
//Objects update callbacks
RegisterTickFunction( &TickObjectCallback );
gfx_heap_device_local = create_gfx_heap( 16 * 1024 * 1024, GFX_MEMORY_PROPERTY_DEVICE_LOCAL_BIT );
GfxHeaps_BatchedAllocator gfx_device_local_mem_allocator( &gfx_heap_device_local );
gfx_device_local_mem_allocator.Prepare();
//LoadAssets
GfxImage* skyboxTexture = AL::LoadCubeTexture( "SkyboxTexture", "assets/mountaincube.ktx", &gfx_device_local_mem_allocator );
GfxImage* albedoTexture = AL::CreateSolidColorTexture( "ModelAlbedoTexture", glm::vec4( 0.8f, 0.8f, 0.8f, 1.0f ), &gfx_device_local_mem_allocator );
GfxImage* normalTexture = AL::CreateSolidColorTexture( "ModelNormalTexture", glm::vec4( 0.0f, 0.0f, 1.0f, 0.0f ), &gfx_device_local_mem_allocator );
GfxImage* BadHelicopterAlbedoTexture = AL::LoadTexture( "BadHelicopterAlbedoTexture", "assets/Tructext.png", &gfx_device_local_mem_allocator );
GfxModel* planeModelAsset = AL::Load3DModel( "Plane", "assets/plane.obj", 0, &gfx_device_local_mem_allocator );
GfxModel* cubeModelAsset = AL::LoadglTf3DModel( "Cube", "assets/horrible_helicopter.glb", &gfx_device_local_mem_allocator );
uint32_t albedoIndex = RegisterBindlessTexture( &bindlessTexturesState, albedoTexture );
uint32_t normalIndex = RegisterBindlessTexture( &bindlessTexturesState, normalTexture );
uint32_t badHelicopterTextIndex = RegisterBindlessTexture( &bindlessTexturesState, BadHelicopterAlbedoTexture );
gfx_device_local_mem_allocator.Commit();
CreateGfxAsset( planeModelAsset, albedoIndex, normalIndex, &planeRenderable );
CreateGfxAsset( cubeModelAsset, badHelicopterTextIndex, normalIndex, &cubeRenderable );
CompileScene( &bindlessTexturesState, skyboxTexture );
planeSceneInstance = { glm::vec3( 0.0f, -0.5f, 0.0f ), glm::angleAxis( glm::radians( 0.0f ), glm::vec3{0.0f, 1.0f, 0.0f} ), 10.0f };
shipSceneInstance = { glm::vec3( 0.0f, 1.0f, 2.0f ), glm::angleAxis( glm::radians( 0.0f ), glm::vec3{0.0f, 1.0f, 0.0f} ), 0.5f };
cameraSceneInstance = { glm::vec3( 0.0f, 0.0f, -2.0f ), glm::angleAxis( glm::radians( 0.0f ), glm::vec3{0.0f, 1.0f, 0.0f} ), 1.0f };
g_light = { glm::mat4( 1.0f ), {3.0f, 3.0f, 1.0f}, 1.0f };
}
void cleanup()
{
IH::CleanupInputs();
ConCom::Cleanup();
AL::Cleanup();
destroy( &gfx_heap_device_local );
}
} |
47898691c24ad59b18e99f2253d94ccf003c850a | 0fa1152e1e434ce9fe9e2db95f43f25675bf7d27 | /src/systemcmds/nshterm/nshterm.cpp | aa4a615c2fca7aba015b30a79da98bf4734aec8f | [
"BSD-3-Clause"
] | permissive | PX4/PX4-Autopilot | 4cc90dccc9285ca4db7f595ac5a7547df02ca92e | 3d61ab84c42ff8623bd48ff0ba74f9cf26bb402b | refs/heads/main | 2023-08-30T23:58:35.398450 | 2022-03-26T01:29:03 | 2023-08-30T15:40:01 | 5,298,790 | 3,146 | 3,798 | BSD-3-Clause | 2023-09-14T17:22:04 | 2012-08-04T21:19:36 | C++ | UTF-8 | C++ | false | false | 3,477 | cpp | nshterm.cpp | /****************************************************************************
*
* Copyright (c) 2012, 2013 PX4 Development Team. All rights reserved.
* Author: Andrew Tridgell
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
* 3. Neither the name PX4 nor the names of its contributors may be
* used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
****************************************************************************/
/**
* @file nshterm.c
*/
#include <px4_platform_common/px4_config.h>
#include <px4_platform_common/module.h>
#include <termios.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdarg.h>
#include <unistd.h>
#include <stdlib.h>
#include <errno.h>
#include <nshlib/nshlib.h>
#include <fcntl.h>
#include <systemlib/err.h>
#include <drivers/drv_hrt.h>
static void print_usage()
{
PRINT_MODULE_DESCRIPTION("Start an NSH shell on a given port.\n"
"\n"
"This was previously used to start a shell on the USB serial port.\n"
"Now there runs mavlink, and it is possible to use a shell over mavlink.\n"
);
PRINT_MODULE_USAGE_NAME_SIMPLE("nshterm", "command");
PRINT_MODULE_USAGE_ARG("<file:dev>", "Device on which to start the shell (eg. /dev/ttyACM0)", false);
}
extern "C" __EXPORT int nshterm_main(int argc, char *argv[])
{
if (argc < 2) {
print_usage();
return 1;
}
/* set up the serial port with output processing */
int fd = open(argv[1], O_RDWR);
/* Try to set baud rate */
struct termios uart_config;
int termios_state;
/* Back up the original uart configuration to restore it after exit */
if ((termios_state = tcgetattr(fd, &uart_config)) < 0) {
PX4_ERR("get config %s: %d\n", argv[1], termios_state);
close(fd);
return -1;
}
/* Set ONLCR flag (which appends a CR for every LF) */
uart_config.c_oflag |= (ONLCR | OPOST);
if ((termios_state = tcsetattr(fd, TCSANOW, &uart_config)) < 0) {
PX4_ERR("set config %s\n", argv[1]);
close(fd);
return -1;
}
/* setup standard file descriptors */
close(0);
close(1);
close(2);
dup2(fd, 0);
dup2(fd, 1);
dup2(fd, 2);
nsh_consolemain(0, nullptr);
close(fd);
PX4_INFO("exiting");
return 0;
}
|
68b3e15862ad3ce1068fe9f0d17d536684c58775 | eaa34624359f5be70b657ab43960545397804b52 | /OrionUO/GUI/GUISlider.cpp | b4919a467c6ff90f8c4d9f5a1c7f3360f3bf5db7 | [
"MIT"
] | permissive | Hotride/OrionUO | 2184d5faa8d239444c7567d370e9814c9d2e1a0e | 0377275cab9147725a6c74553191d6dd7df27935 | refs/heads/master | 2022-11-01T08:24:22.825336 | 2022-10-25T16:30:58 | 2022-10-25T16:30:58 | 68,417,639 | 187 | 123 | MIT | 2019-09-21T17:50:51 | 2016-09-16T22:08:51 | C++ | UTF-8 | C++ | false | false | 11,894 | cpp | GUISlider.cpp | // This is an open source non-commercial project. Dear PVS-Studio, please check it.
// PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com
/***********************************************************************************
**
** GUISlider.cpp
**
** Copyright (C) August 2016 Hotride
**
************************************************************************************
*/
//----------------------------------------------------------------------------------
#include "stdafx.h"
//----------------------------------------------------------------------------------
CGUISlider::CGUISlider(
int serial,
ushort graphic,
ushort graphicSelected,
ushort graphicPressed,
ushort backgroundGraphic,
bool compositeBackground,
bool vertical,
int x,
int y,
int length,
int minValue,
int maxValue,
int value)
: CBaseGUI(GOT_SLIDER, serial, graphic, 0, x, y)
, GraphicSelected(graphicSelected)
, GraphicPressed(graphicPressed)
, BackgroundGraphic(backgroundGraphic)
, CompositeBackground(compositeBackground)
, Vertical(vertical)
, Length(length)
, MinValue(minValue)
, MaxValue(maxValue)
, Value(value)
{
WISPFUN_DEBUG("c77_f1");
CalculateOffset();
}
//----------------------------------------------------------------------------------
CGUISlider::~CGUISlider()
{
WISPFUN_DEBUG("c77_f2");
Text.Clear();
}
//----------------------------------------------------------------------------------
void CGUISlider::UpdateText()
{
WISPFUN_DEBUG("c77_f3");
if (HaveText)
{
if (Unicode)
g_FontManager.GenerateW(
Font, Text, std::to_wstring(Value), TextColor, 30, TextWidth, Align, TextFlags);
else
g_FontManager.GenerateA(
Font, Text, std::to_string(Value), TextColor, TextWidth, Align, TextFlags);
CGLTexture *th = g_Orion.ExecuteGump(Graphic);
if (th != NULL)
{
int textX = m_X;
int textY = m_Y;
switch (TextPosition)
{
case STP_TOP:
case STP_TOP_CENTER:
{
textY -= Text.Height - DefaultTextOffset;
break;
}
case STP_BOTTOM:
case STP_BOTTOM_CENTER:
{
if (Vertical)
textY += Length + DefaultTextOffset;
else
textY += th->Height + DefaultTextOffset;
break;
}
case STP_LEFT:
//textY -= 4;
case STP_LEFT_CENTER:
{
textX -= Text.Width - DefaultTextOffset;
break;
}
case STP_RIGHT:
//textY -= 4;
case STP_RIGHT_CENTER:
{
if (Vertical)
textX += th->Width + DefaultTextOffset;
else
textX += Length + DefaultTextOffset;
break;
}
default:
break;
}
switch (TextPosition)
{
case STP_TOP_CENTER:
case STP_BOTTOM_CENTER:
{
int textWidth = Text.Width;
int sliderWidth = Length;
if (Vertical)
sliderWidth = th->Width;
int deltaX = abs(sliderWidth - textWidth) / 2;
if (sliderWidth > textWidth)
textX += deltaX;
else
textX -= deltaX;
break;
}
case STP_LEFT_CENTER:
case STP_RIGHT_CENTER:
{
int textHeight = Text.Height;
int sliderHeight = Length;
if (!Vertical)
sliderHeight = th->Height;
int deltaY = abs(sliderHeight - textHeight) / 2;
if (sliderHeight > textHeight)
textY += deltaY;
else
textY -= deltaY;
break;
}
default:
break;
}
TextX = textX;
TextY = textY;
}
}
}
//----------------------------------------------------------------------------------
WISP_GEOMETRY::CSize CGUISlider::GetSize()
{
WISPFUN_DEBUG("c77_f4");
WISP_GEOMETRY::CSize size;
CGLTexture *th = g_Orion.ExecuteGump(Graphic);
if (th != NULL)
{
if (Vertical)
{
size.Width = th->Width;
size.Height = Length;
}
else
{
size.Width = Length;
size.Height = th->Height;
}
if (HaveText)
{
//Text.Draw(TextX, TextY, checktrans);
}
}
return size;
}
//----------------------------------------------------------------------------------
void CGUISlider::OnScroll(bool up, int delay)
{
WISPFUN_DEBUG("c77_f5");
if (LastScrollTime < g_Ticks)
{
if (up)
Value += ScrollStep;
else
Value -= ScrollStep;
if (Value < MinValue)
Value = MinValue;
else if (Value > MaxValue)
Value = MaxValue;
LastScrollTime = g_Ticks + delay;
CalculateOffset();
UpdateText();
}
}
//----------------------------------------------------------------------------------
void CGUISlider::OnClick(int x, int y)
{
WISPFUN_DEBUG("c77_f6");
int lenght = Length;
int maxValue = MaxValue - MinValue;
CGLTexture *th = g_Orion.ExecuteGump(Graphic);
if (th != NULL)
lenght -= (Vertical ? (th->Height / 2) : th->Width);
float percents = ((Vertical ? y : x) / (float)lenght) * 100.0f;
Value = (int)((maxValue * percents) / 100.0f) + MinValue;
CalculateOffset();
UpdateText();
}
//----------------------------------------------------------------------------------
void CGUISlider::CalculateOffset()
{
WISPFUN_DEBUG("c77_f7");
if (Value < MinValue)
Value = MinValue;
else if (Value > MaxValue)
Value = MaxValue;
int value = Value - MinValue;
int maxValue = MaxValue - MinValue;
int lenght = Length;
CGLTexture *th = g_Orion.ExecuteGump(Graphic);
if (th != NULL)
lenght -= (Vertical ? th->Height : th->Width);
if (maxValue > 0)
Percents = ((value / (float)maxValue) * 100.0f);
else
Percents = 0.0f;
Offset = (int)((lenght * Percents) / 100.0f);
if (Offset < 0)
Offset = 0;
}
//----------------------------------------------------------------------------------
void CGUISlider::SetTextParameters(
bool haveText,
SLIDER_TEXT_POSITION textPosition,
uchar font,
ushort color,
bool unicode,
int textWidth,
TEXT_ALIGN_TYPE align,
ushort textFlags)
{
WISPFUN_DEBUG("c77_f8");
HaveText = haveText;
TextPosition = textPosition;
Font = font;
TextColor = color;
Unicode = unicode;
TextWidth = textWidth;
Align = align;
TextFlags = textFlags;
UpdateText();
}
//----------------------------------------------------------------------------------
void CGUISlider::PrepareTextures()
{
WISPFUN_DEBUG("c77_f9");
g_Orion.ExecuteGump(Graphic);
g_Orion.ExecuteGump(GraphicSelected);
g_Orion.ExecuteGump(GraphicPressed);
if (BackgroundGraphic)
{
if (CompositeBackground)
g_Orion.ExecuteGumpPart(BackgroundGraphic, 3);
else
g_Orion.ExecuteGump(BackgroundGraphic);
}
}
//----------------------------------------------------------------------------------
ushort CGUISlider::GetDrawGraphic()
{
WISPFUN_DEBUG("c77_f10");
ushort graphic = Graphic;
if (g_GumpPressedElement == this)
graphic = GraphicPressed;
else if (g_GumpSelectedElement == this)
graphic = GraphicSelected;
return graphic;
}
//----------------------------------------------------------------------------------
void CGUISlider::Draw(bool checktrans)
{
WISPFUN_DEBUG("c77_f11");
/*Value++;
if (Value > MaxValue)
{
Value = MinValue;
TextPosition = (SLIDER_TEXT_POSITION)(TextPosition + 1);
if (TextPosition > STP_RIGHT)
TextPosition = STP_TOP;
}
UpdateText();
CalculateOffset();*/
glUniform1iARB(g_ShaderDrawMode, SDM_NO_COLOR);
if (BackgroundGraphic)
{
if (CompositeBackground)
{
CGLTexture *th[3] = { NULL };
IFOR (i, 0, 3)
{
th[i] = g_Orion.ExecuteGump(BackgroundGraphic + (int)i);
if (th[i] == NULL)
return;
}
if (Vertical)
{
th[0]->Draw(m_X, m_Y, checktrans);
th[2]->Draw(m_X, m_Y + (Length - th[2]->Height), checktrans);
th[1]->Draw(
m_X,
m_Y + th[0]->Height,
0,
(Length - (th[0]->Height + th[2]->Height)),
checktrans);
}
else
{
th[0]->Draw(m_X, m_Y, checktrans);
th[2]->Draw(m_X + (Length - th[2]->Width), m_Y, checktrans);
th[1]->Draw(
m_X + th[0]->Width,
m_Y,
(Length - (th[0]->Width + th[2]->Width)),
0,
checktrans);
}
}
else
{
CGLTexture *th = g_Orion.ExecuteGump(BackgroundGraphic);
if (th != NULL)
{
if (Vertical)
th->Draw(m_X, m_Y, 0, Length, checktrans);
else
th->Draw(m_X, m_Y, Length, 0, checktrans);
}
}
}
CGLTexture *th = g_Orion.ExecuteGump(GetDrawGraphic());
if (th != NULL)
{
if (Vertical)
th->Draw(m_X, m_Y + Offset, checktrans);
else
th->Draw(m_X + Offset, m_Y, checktrans);
if (HaveText)
Text.Draw(TextX, TextY, checktrans);
}
}
//----------------------------------------------------------------------------------
bool CGUISlider::Select()
{
WISPFUN_DEBUG("c77_f12");
CGLTexture *th = g_Orion.ExecuteGump(Graphic);
if (th != NULL)
{
int buttonX = m_X;
int buttonY = m_Y;
if (Vertical)
buttonY += Offset;
else
buttonX += Offset;
if (th->Select(buttonX, buttonY, !CheckPolygone))
return true;
if (BackgroundGraphic)
{
int x = g_MouseManager.Position.X - m_X;
int y = g_MouseManager.Position.Y - m_Y;
if (x >= 0 && y >= 0)
{
if (Vertical)
return (x < th->Width && y < Length);
else
return (x < Length && y < th->Height);
}
}
}
return false;
}
//----------------------------------------------------------------------------------
void CGUISlider::OnMouseEnter()
{
WISPFUN_DEBUG("c77_f13");
if (g_SelectedObject.Gump != NULL)
g_SelectedObject.Gump->WantRedraw = true;
}
//----------------------------------------------------------------------------------
void CGUISlider::OnMouseExit()
{
WISPFUN_DEBUG("c77_f14");
if (g_LastSelectedObject.Gump != NULL)
g_LastSelectedObject.Gump->WantRedraw = true;
}
//----------------------------------------------------------------------------------
|
bdcd4c4ab1a2e08566935ed2c07dc9268fe170d6 | a37c0ccadb02af2877c4be9bad863d7ba8a1a390 | /engine/VideoServices/Viewport2D.h | cc13ca12a347b883dc11ecd19fc5e700b556664f | [] | no_license | johnsie/HoverNet | 9dec639cdb6471f98ffc357d5f9d1b089eba1336 | 05ac3afbd8edfc6301eff352f1ae467c7e930f43 | refs/heads/master | 2022-02-23T15:37:50.754976 | 2020-03-03T16:13:31 | 2020-03-03T16:13:31 | 145,713,174 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,410 | h | Viewport2D.h | // Viewport2D.h
//
//
// Copyright (c) 1995-1998 - Richard Langlois and Grokksoft Inc.
//
// Licensed under GrokkSoft HoverRace SourceCode License v1.0(the "License");
// you may not use this file except in compliance with the License.
//
// A copy of the license should have been attached to the package from which
// you have taken this file. If you can not find the license you can not use
// this file.
//
//
// The author makes no representations about the suitability of
// this software for any purpose. It is provided "as is" "AS IS",
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
// implied.
//
// See the License for the specific language governing permissions
// and limitations under the License.
//
#pragma once
#include "../Util/MR_Types.h"
#if defined(_WIN32) && defined(HR_ENGINE_SHARED)
# ifdef MR_ENGINE
# define MR_DllDeclare __declspec( dllexport )
# else
# define MR_DllDeclare __declspec( dllimport )
# endif
#else
# define MR_DllDeclare
#endif
namespace HoverRace {
namespace VideoServices {
class VideoBuffer;
class Viewport2D
{
protected:
enum {
eNone = 0,
eBuffer = 1,
eXSize = 2,
eYSize = 4,
eXPitch = 8,
eYPitch = 16
};
// VideobufferRelativeStock
VideoBuffer *mVideoBuffer;
MR_UInt8 *mBuffer; // With computed offset
int mLineLen;
int mXPitch;
int mYPitch;
// ViewportStock
int mXRes;
int mYRes;
MR_DllDeclare virtual void OnMetricsChange(int pMetrics);
public:
MR_DllDeclare Viewport2D();
MR_DllDeclare ~ Viewport2D();
MR_DllDeclare void Setup(VideoBuffer * pBuffer, int pX0, int pY0, int pSizeX, int pSizeY, int pMetrics = eNone);
MR_DllDeclare void Clear(MR_UInt8 pColor = 0);
MR_DllDeclare int GetXRes() const;
MR_DllDeclare int GetYRes() const;
// 2DDrawing primitives, defined in VideoBuffer2DDraw.cpp
MR_DllDeclare void DrawPoint(int pX, int pY, MR_UInt8 pColor);
MR_DllDeclare void DrawLine(int pX0, int pY0, int pX1, int pY1, MR_UInt8 pColor);
MR_DllDeclare void DrawHorizontalLine(int pY, int pX0, int pX1, MR_UInt8 pColor);
// HighLevel 2D functionalities
MR_DllDeclare void DrawHorizontalMeter(int pX0, int pXLen, int pY0, int pYHeight, int pXM, MR_UInt8 pColor, MR_UInt8 pBackColor);
// Buffer access functions
MR_UInt8 *GetBuffer();
int GetLineLen() const;
};
} // namespace VideoServices
} // namespace HoverRace
#undef MR_DllDeclare
|
00ed97bef0567b605e1389e5eaeda4ccf057b407 | 91d6c82cf7e7c86f1770786033f91edc039535fa | /PlayBox/dev/prj/PlayBox/src/AppConfig/config/SetBaseCtrls/SetBaseStatic.cpp | 6b03da046adf16bd7341a8df6a14ee1f57630f91 | [] | no_license | linjianbjfu/PlayBox | 147c23ab304e9cc94d7b5a430c97fdc847e1819d | 83672444459b21d91ad68a9e6c1b4b9c04b18da8 | refs/heads/master | 2020-05-19T11:03:33.892941 | 2013-03-25T16:01:28 | 2013-03-25T16:01:28 | null | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 2,229 | cpp | SetBaseStatic.cpp | #include "stdafx.h"
#include "SetBaseStatic.h"
IMPLEMENT_DYNAMIC(SetBaseStatic, CStatic)
SetBaseStatic::SetBaseStatic()
{
m_bTrans = false;
m_FontSize = 12;
m_TextColor = RGB(0,0,0);
m_bBold = false;
}
SetBaseStatic::~SetBaseStatic()
{
}
BEGIN_MESSAGE_MAP(SetBaseStatic, CStatic)
//ON_WM_CTLCOLOR_REFLECT()
//ON_WM_PAINT()
//ON_MESSAGE(WM_SETTEXT,OnSetText)
END_MESSAGE_MAP()
void SetBaseStatic::OnPaint()
{
if(m_bTrans)
{
CPaintDC dc(this);
RECT rect;
GetClientRect(&rect); // get clip region
dc.SetBkMode(TRANSPARENT); // preserve background
dc.SetTextColor(m_TextColor);
CString strContent ;
GetWindowText(strContent);
LOGFONT lf;
ZeroMemory(&lf,sizeof(lf));
lf.lfHeight = m_FontSize; /*-MulDiv(m_FontSize,GetDeviceCaps(dc.m_hDC,LOGPIXELSY),72);*/
lf.lfWeight = (m_bBold)?FW_BOLD:FW_NORMAL;
lf.lfWidth = 0;
lf.lfCharSet = GB2312_CHARSET;
lf.lfStrikeOut = FALSE;
// lf.lfCharSet= 0;
lf.lfOutPrecision = OUT_DEFAULT_PRECIS;
lf.lfClipPrecision = CLIP_DEFAULT_PRECIS;
lf.lfQuality = DEFAULT_QUALITY;
lf.lfPitchAndFamily = FF_DONTCARE | DEFAULT_PITCH;
lf.lfUnderline = false;
strcpy(lf.lfFaceName, "ËÎÌå");
CFont font;
font.CreateFontIndirect(&lf);
CFont* oldFont = (CFont*)dc.SelectObject(&font);
::DrawText(
dc.m_hDC,
strContent,
strContent.GetLength(),
&rect,
DT_SINGLELINE|DT_END_ELLIPSIS|DT_NOPREFIX/*|DT_EXTERNALLEADING|DT_WORDBREAK|DT_END_ELLIPSIS|DT_EDITCONTROL*/
);
//dc.SetTextColor(ltempColor);
dc.SelectObject(oldFont);
font.DeleteObject();
}
else
{
CStatic::OnPaint();
}
}
LRESULT SetBaseStatic::OnSetText(WPARAM wParam,LPARAM lParam)
{
LRESULT Result = Default();
if(m_bTrans)
{
CRect Rect;
GetWindowRect(&Rect);
GetParent()->ScreenToClient(&Rect);
GetParent()->InvalidateRect(&Rect);
GetParent()->UpdateWindow();
}
return Result;
}
HBRUSH SetBaseStatic::CtlColor( CDC* pDC, UINT nCtlColor )
{
if(m_bTrans)
{
pDC->SetBkMode(TRANSPARENT);
return (HBRUSH)GetStockObject(NULL_BRUSH);
}
else
{
pDC->SetBkMode( TRANSPARENT );
pDC->SetBkColor( RGB(255,255,255) );
return ::CreateSolidBrush( RGB(255,255,255) );
}
}
BOOL SetBaseStatic::OnEraseBkgnd( CDC* pDC )
{
return TRUE;
} |
204d8fb9f0a6705a7e9bd978c1a6c3c75ce6f357 | 057a475216e9beed41983481aafcaf109bbf58da | /src/Functions/FunctionsVisitParam.h | 5e13fbbad5cebec35c393d1b2e594d779be4a7f6 | [
"Apache-2.0"
] | permissive | ClickHouse/ClickHouse | fece5204263a5b4d693854b6039699265f1bb27f | 6649328db809d51a694c358571539bc5820464be | refs/heads/master | 2023-08-31T18:48:36.615225 | 2023-08-31T17:51:24 | 2023-08-31T17:51:24 | 60,246,359 | 23,878 | 5,449 | Apache-2.0 | 2023-09-14T20:10:52 | 2016-06-02T08:28:18 | C++ | UTF-8 | C++ | false | false | 7,404 | h | FunctionsVisitParam.h | #pragma once
#include <DataTypes/DataTypesNumber.h>
#include <DataTypes/DataTypeString.h>
#include <DataTypes/DataTypeFixedString.h>
#include <Columns/ColumnsNumber.h>
#include <Columns/ColumnString.h>
#include <Common/Volnitsky.h>
#include <Functions/IFunction.h>
#include <Functions/FunctionHelpers.h>
#include <IO/ReadBufferFromMemory.h>
#include <IO/ReadHelpers.h>
/** Functions for retrieving "visit parameters".
* Visit parameters in Metrica web analytics system are a special kind of JSONs.
* These functions are applicable to almost any JSONs.
* Implemented via templates from FunctionsStringSearch.h.
*
* Check if there is a parameter
* visitParamHas
*
* Retrieve the numeric value of the parameter
* visitParamExtractUInt
* visitParamExtractInt
* visitParamExtractFloat
* visitParamExtractBool
*
* Retrieve the string value of the parameter
* visitParamExtractString - unescape value
* visitParamExtractRaw
*/
namespace DB
{
namespace ErrorCodes
{
extern const int ILLEGAL_COLUMN;
extern const int ILLEGAL_TYPE_OF_ARGUMENT;
}
template <typename NumericType>
struct ExtractNumericType
{
using ResultType = NumericType;
static ResultType extract(const UInt8 * begin, const UInt8 * end)
{
ReadBufferFromMemory in(begin, end - begin);
/// Read numbers in double quotes
if (!in.eof() && *in.position() == '"')
++in.position();
ResultType x = 0;
if (!in.eof())
{
if constexpr (std::is_floating_point_v<NumericType>)
tryReadFloatText(x, in);
else
tryReadIntText(x, in);
}
return x;
}
};
/** Searches for occurrences of a field in the visit parameter and calls ParamExtractor
* for each occurrence of the field, passing it a pointer to the part of the string,
* where the occurrence of the field value begins.
* ParamExtractor must parse and return the value of the desired type.
*
* If a field was not found or an incorrect value is associated with the field,
* then the default value used - 0.
*/
template <typename Name, typename ParamExtractor>
struct ExtractParamImpl
{
using ResultType = typename ParamExtractor::ResultType;
static constexpr bool use_default_implementation_for_constants = true;
static constexpr bool supports_start_pos = false;
static constexpr auto name = Name::name;
static ColumnNumbers getArgumentsThatAreAlwaysConstant() { return {1, 2};}
/// It is assumed that `res` is the correct size and initialized with zeros.
static void vectorConstant(
const ColumnString::Chars & haystack_data,
const ColumnString::Offsets & haystack_offsets,
std::string needle,
const ColumnPtr & start_pos,
PaddedPODArray<ResultType> & res,
[[maybe_unused]] ColumnUInt8 * res_null)
{
/// `res_null` serves as an output parameter for implementing an XYZOrNull variant.
assert(!res_null);
if (start_pos != nullptr)
throw Exception(ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT, "Function '{}' doesn't support start_pos argument", name);
/// We are looking for a parameter simply as a substring of the form "name"
needle = "\"" + needle + "\":";
const UInt8 * const begin = haystack_data.data();
const UInt8 * const end = haystack_data.data() + haystack_data.size();
const UInt8 * pos = begin;
/// The current index in the string array.
size_t i = 0;
Volnitsky searcher(needle.data(), needle.size(), end - pos);
/// We will search for the next occurrence in all strings at once.
while (pos < end && end != (pos = searcher.search(pos, end - pos)))
{
/// Let's determine which index it belongs to.
while (begin + haystack_offsets[i] <= pos)
{
res[i] = 0;
++i;
}
/// We check that the entry does not pass through the boundaries of strings.
if (pos + needle.size() < begin + haystack_offsets[i])
res[i] = ParamExtractor::extract(pos + needle.size(), begin + haystack_offsets[i] - 1); /// don't include terminating zero
else
res[i] = 0;
pos = begin + haystack_offsets[i];
++i;
}
if (res.size() > i)
memset(&res[i], 0, (res.size() - i) * sizeof(res[0]));
}
template <typename... Args> static void vectorVector(Args &&...)
{
throw Exception(ErrorCodes::ILLEGAL_COLUMN, "Function '{}' doesn't support non-constant needle argument", name);
}
template <typename... Args> static void constantVector(Args &&...)
{
throw Exception(ErrorCodes::ILLEGAL_COLUMN, "Function '{}' doesn't support non-constant needle argument", name);
}
template <typename... Args>
static void vectorFixedConstant(Args &&...)
{
throw Exception(ErrorCodes::ILLEGAL_COLUMN, "Function '{}' doesn't support FixedString haystack argument", name);
}
template <typename... Args>
static void vectorFixedVector(Args &&...)
{
throw Exception(ErrorCodes::ILLEGAL_COLUMN, "Function '{}' doesn't support FixedString haystack argument", name);
}
};
/** For the case where the type of field to extract is a string.
*/
template <typename ParamExtractor>
struct ExtractParamToStringImpl
{
static void vector(const ColumnString::Chars & haystack_data, const ColumnString::Offsets & haystack_offsets,
std::string needle,
ColumnString::Chars & res_data, ColumnString::Offsets & res_offsets)
{
/// Constant 5 is taken from a function that performs a similar task FunctionsStringSearch.h::ExtractImpl
res_data.reserve(haystack_data.size() / 5);
res_offsets.resize(haystack_offsets.size());
/// We are looking for a parameter simply as a substring of the form "name"
needle = "\"" + needle + "\":";
const UInt8 * const begin = haystack_data.data();
const UInt8 * const end = haystack_data.data() + haystack_data.size();
const UInt8 * pos = begin;
/// The current index in the string array.
size_t i = 0;
Volnitsky searcher(needle.data(), needle.size(), end - pos);
/// We will search for the next occurrence in all strings at once.
while (pos < end && end != (pos = searcher.search(pos, end - pos)))
{
/// Determine which index it belongs to.
while (begin + haystack_offsets[i] <= pos)
{
res_data.push_back(0);
res_offsets[i] = res_data.size();
++i;
}
/// We check that the entry does not pass through the boundaries of strings.
if (pos + needle.size() < begin + haystack_offsets[i])
ParamExtractor::extract(pos + needle.size(), begin + haystack_offsets[i], res_data);
pos = begin + haystack_offsets[i];
res_data.push_back(0);
res_offsets[i] = res_data.size();
++i;
}
while (i < res_offsets.size())
{
res_data.push_back(0);
res_offsets[i] = res_data.size();
++i;
}
}
};
}
|
00f427898d1e47866f197989c67829145db63739 | 38ac816be546215996fbe05089c3d2dab373a72b | /制作ゲーム/FMAndroid(TurretFight)/FMAndroid/FMAndroid.NativeActivity/src/BaseObject/GameObject/Bullet/BomLaser/cBomLaser.h | 25e9ec4457c88cbbe16b8fcb2b88bf4ed92003b1 | [] | no_license | s-kosugi/FMAndroidBase | 105381f3834cf781b63e965c5b3b1f8ae4a38a25 | 5b3d62fb71942995dcbc7e9c19aa250ecb735094 | refs/heads/master | 2022-12-20T10:42:38.514012 | 2020-10-05T23:47:23 | 2020-10-05T23:47:23 | 292,743,746 | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 1,121 | h | cBomLaser.h | #pragma once
/*==============================================================================*/
/* */
/* @file title : cBomLaser.h */
/* @brief : レーザー(ボム)クラス */
/* @written : s.kosugi */
/* @create : 2020/07/20 */
/* */
/*==============================================================================*/
#include "..\IBullet.h"
//================================================================================================
// レーザー(ボム)クラス
class cBomLaser : public IBullet
{
public:
cBomLaser(IBaseObject* parent);
~cBomLaser(void);
void Update(void) override;
private:
//--------------------------------------------------------------------------------------------
// 定数
// 表示優先度
static const int PRIORITY;
static const float HIT_DIST;
//--------------------------------------------------------------------------------------------
};
//================================================================================================ |
a17dae6615cfd880369df91e4686af91f8ebfce5 | d76e66fe0cbb01622721f2df0c38789be99f4345 | /TheMaze/Maze.h | 69ab74b35764774d59925ec6a39aefcac1ab67cd | [] | no_license | MorFix/TheMaze | 3082ca6643ce42997fcd6829c20f53f23408fa8c | e6b2e2579a03bbc449354897092f4fecf96bdd5f | refs/heads/master | 2022-12-26T11:04:02.801855 | 2020-10-01T23:41:12 | 2020-10-03T22:51:56 | 298,274,170 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,271 | h | Maze.h | #pragma once
#include <iostream>
#include <vector>
#include "Room.h"
#include "Location.h"
#include "MoveSide.h"
class Room;
class Player;
class Maze {
private:
Room*** _rooms;
int _rows;
int _cols;
friend std::ostream& operator<<(std::ostream& out, const Maze& maze);
void outputTopBorder(std::ostream& out, Room** row) const;
void outputBottomBorder(std::ostream& out, Room** row) const;
bool isExternal(int row, int col);
bool isLocationInMaze(int row, int col);
std::vector<Location> getConnectedExternalRooms(int row, int col, std::vector<Location>& recursiveStack);
void addConnectedExternalRooms(int row, int col, bool isPathOpen, std::vector<Location>& rooms, std::vector<Location>& recursiveStack);
public:
Maze(int rows, int cols);
Maze(const Maze& other);
std::vector<Location> getExternalRooms();
std::vector<Location> getConnectedEmptyExternalRooms(Location& originalRoom);
std::vector<Location> getTreasures();
void setData(int rows, int cols);
Room**& operator[](int row) const;
Room*& operator[](const Location& location) const;
void setRoom(int row, int col, Room* room);
Location findPlayer(Player* player);
Location getMoveInDirection(Location& sourceLocation, MoveSide direction);
~Maze();
}; |
ed41e9089103836c959fba93153fdeb8b37b03e7 | 82fba7822cce0376e242019679ef9bdae7231ad3 | /ABACUS/source/src_lcao/lcao_nnr.cpp | b7642beeb149224a1faaf2bc172648ea3279a1f3 | [] | no_license | abacus-ustc/abacus-GPU | 968bf7f7f91b3922ff43ff332438fbeacc748fd1 | d326fe411c8cdd718ac101693645da3bc17b4a19 | refs/heads/master | 2023-04-15T08:07:00.917906 | 2021-04-09T16:50:34 | 2021-04-09T16:50:34 | 346,221,292 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 20,878 | cpp | lcao_nnr.cpp | #include "lcao_nnr.h"
#include "../src_pw/global.h"
#include "record_adj.h" //mohan add 2012-07-06
//----------------------------
// define a global class obj.
LCAO_nnr LNNR;
//----------------------------
LCAO_nnr::LCAO_nnr()
{
nnr = 1;
nlocdimg = new int[1];
nlocstartg = new int[1];
nlocdim = new int[1];
nlocstart = new int[1];
// number of adjacent atoms for each atom.
nad = new int[1];
allocate_find_R2 = false;
}
LCAO_nnr::~LCAO_nnr()
{
delete[] nlocdimg;
delete[] nlocstartg;
delete[] nad;
delete[] nlocdim;
delete[] nlocstart;
if(allocate_find_R2)
{
for(int iat=0; iat<ucell.nat; iat++)
{
delete[] find_R2[iat];
delete[] find_R2st[iat];
}
delete[] find_R2;
delete[] find_R2st;
}
}
// be called in local_orbital_ions.cpp
void LCAO_nnr::cal_nnr(void)
{
TITLE("LCAO_nnr","cal_nnr");
delete[] nlocdim;
delete[] nlocstart;
nlocdim = new int[ucell.nat];
nlocstart = new int[ucell.nat];
ZEROS(nlocdim, ucell.nat);
ZEROS(nlocstart, ucell.nat);
this->nnr = 0;
int start = 0;
int ind1 = 0;
int iat = 0;
// (1) find the adjacent atoms of atom[T1,I1];
Vector3<double> tau1, tau2, dtau;
Vector3<double> tau0, dtau1, dtau2;
for (int T1 = 0; T1 < ucell.ntype; T1++)
{
for (int I1 = 0; I1 < ucell.atoms[T1].na; I1++)
{
tau1 = ucell.atoms[T1].tau[I1];
//GridD.Find_atom( tau1 );
GridD.Find_atom( tau1 ,T1, I1);
const int start1 = ucell.itiaiw2iwt(T1, I1, 0);
this->nlocstart[iat] = nnr;
int nw1 = ucell.atoms[T1].nw * NPOL;
// (2) search among all adjacent atoms.
for (int ad = 0; ad < GridD.getAdjacentNum()+1; ad++)
{
const int T2 = GridD.getType(ad);
const int I2 = GridD.getNatom(ad);
const int iat2 = ucell.itia2iat(T2, I2);
const int start2 = ucell.itiaiw2iwt(T2, I2, 0);
int nw2 = ucell.atoms[T2].nw * NPOL;
//if(NONCOLIN) nw2 *= 2;
tau2 = GridD.getAdjacentTau(ad);
dtau = tau2 - tau1;
double distance = dtau.norm() * ucell.lat0;
double rcut = ORB.Phi[T1].getRcut() + ORB.Phi[T2].getRcut();
if(distance < rcut)
{
//--------------------------------------------------
// calculate how many matrix elements are in
// this processor.
for(int ii=0; ii<nw1; ii++)
{
// the index of orbitals in this processor
// according to HPSEPS's division method.
const int iw1_all = start1 + ii;
const int mu = ParaO.trace_loc_row[iw1_all];
if(mu<0)continue;
for(int jj=0; jj<nw2; jj++)
{
const int iw2_all = start2 + jj;
const int nu = ParaO.trace_loc_col[iw2_all];
if(nu<0)continue;
// orbital numbers for this atom (iat),
// seperated by atoms in different cells.
this->nlocdim[iat]++;
++nnr;
}// end jj
}// end ii
}//end distance
// there is another possibility that i and j are adjacent atoms.
// which is that <i|beta> are adjacents while <beta|j> are also
// adjacents, these considerations are only considered in k-point
// algorithm,
// mohan fix bug 2012-07-03
else if(distance >= rcut)
{
for (int ad0 = 0; ad0 < GridD.getAdjacentNum()+1; ++ad0)
{
const int T0 = GridD.getType(ad0);
const int I0 = GridD.getNatom(ad0);
const int iat0 = ucell.itia2iat(T0, I0);
const int start0 = ucell.itiaiw2iwt(T0, I0, 0);
tau0 = GridD.getAdjacentTau(ad0);
dtau1 = tau0 - tau1;
double distance1 = dtau1.norm() * ucell.lat0;
double rcut1 = ORB.Phi[T1].getRcut() + ORB.Beta[T0].get_rcut_max();
dtau2 = tau0 - tau2;
double distance2 = dtau2.norm() * ucell.lat0;
double rcut2 = ORB.Phi[T2].getRcut() + ORB.Beta[T0].get_rcut_max();
if( distance1 < rcut1 && distance2 < rcut2 )
{
for(int ii=0; ii<nw1; ++ii)
{
const int iw1_all = start1 + ii;
const int mu = ParaO.trace_loc_row[iw1_all];
if(mu<0)continue;
for(int jj=0; jj<nw2; ++jj)
{
const int iw2_all = start2 + jj;
const int nu = ParaO.trace_loc_col[iw2_all];
if(nu<0)continue;
// orbital numbers for this atom (iat),
// seperated by atoms in different cells.
this->nlocdim[iat]++;
++nnr;
}
}
break;
} // dis1, dis2
}//ad0
}
}// end ad
//start position of atom[T1,I1]
start += nw1;
++iat;
}// end I1
} // end T1
//xiaohui add 'OUT_LEVEL' line, 2015-09-16
if(OUT_LEVEL != "m") OUT(ofs_running,"nnr",nnr);
// for(int iat=0; iat<ucell.nat; iat++)
// {
// cout << " nlocdim[" << iat << "]=" << nlocdim[iat];
// cout << " nlocstart[" << iat << "]=" << nlocstart[iat] << endl;
// }
return;
}
// This is for cell R dependent part.
void LCAO_nnr::cal_nnrg(const Grid_Technique >)
{
TITLE("LCAO_nnr","cal_nnrg");
this->cal_max_box_index();
this->nnrg = 0;
delete[] nlocdimg;
delete[] nlocstartg;
delete[] nad;
this->nad = new int[ucell.nat];
this->nlocdimg = new int[ucell.nat];
this->nlocstartg = new int[ucell.nat];
ZEROS(nad, ucell.nat);
ZEROS(nlocdimg, ucell.nat);
ZEROS(nlocstartg, ucell.nat);
// stringstream ss;
// ss << global_out_dir << "sltk_box.dat";
// ofstream ofs(ss.str().c_str());
Vector3<double> tau1, tau2, dtau;
Vector3<double> dtau1, dtau2, tau0;
for (int T1 = 0; T1 < ucell.ntype; ++T1)
{
Atom* atom1 = &ucell.atoms[T1];
for (int I1 = 0; I1 < atom1->na; ++I1)
{
tau1 = atom1->tau[I1];
//GridD.Find_atom(tau1);
GridD.Find_atom(tau1, T1, I1);
const int iat = ucell.itia2iat(T1,I1);
// for grid integration (on FFT box),
// we only need to consider <phi_i | phi_j>,
// which is different from non-local term,
// which we need to consdier <phi_i|beta_k><beta_k|phi_j>
// whether this atom is in this processor.
if(GT.in_this_processor[iat])
{
// starting index of adjacents.
this->nlocstartg[iat] = this->nnrg;
// number of adjacent atoms for atom 'iat'
this->nad[iat] = 0;
int count = 0;
for (int ad = 0; ad < GridD.getAdjacentNum()+1; ++ad)
{
const int T2 = GridD.getType(ad);
const int I2 = GridD.getNatom(ad);
const int iat2 = ucell.itia2iat(T2, I2);
Atom* atom2 = &ucell.atoms[T2];
// if the adjacent atom is in this processor.
if(GT.in_this_processor[iat2])
{
tau2 = GridD.getAdjacentTau(ad);
dtau = GridD.getAdjacentTau(ad) - tau1;
double distance = dtau.norm() * ucell.lat0;
double rcut = ORB.Phi[T1].getRcut() + ORB.Phi[T2].getRcut();
//if(distance < rcut)
// mohan reset this 2013-07-02 in Princeton
// we should make absolutely sure that the distance is smaller than ORB.Phi[it].getRcut
// this should be consistant with LCAO_nnr::cal_nnrg function
// typical example : 7 Bohr cutoff Si orbital in 14 Bohr length of cell.
// distance = 7.0000000000000000
// ORB.Phi[it].getRcut = 7.0000000000000008
if(distance < rcut - 1.0e-15)
{
const int nelement = atom1->nw * atom2->nw;//modified by zhengdy-soc, no need to double
this->nnrg += nelement;
this->nlocdimg[iat] += nelement;
this->nad[iat]++;
++count;
/*
ofs << setw(10) << iat << setw(10) << iat2
<< setw(10) << GridD.getBox(ad).x
<< setw(10) << GridD.getBox(ad).y
<< setw(10) << GridD.getBox(ad).z
<< setw(20) << distance << endl;
*/
}
// there is another possibility that i and j are adjacent atoms.
// which is that <i|beta> are adjacents while <beta|j> are also
// adjacents, these considerations are only considered in k-point
// algorithm,
// mohan fix bug 2012-07-03
/*
else if(distance >= rcut)
{
for (int ad0 = 0; ad0 < GridD.getAdjacentNum()+1; ++ad0)
{
const int T0 = GridD.getType(ad0);
const int I0 = GridD.getNatom(ad0);
const int iat0 = ucell.itia2iat(T0, I0);
const int start0 = ucell.itiaiw2iwt(T0, I0, 0);
tau0 = GridD.getAdjacentTau(ad0);
dtau1 = tau0 - tau1;
dtau2 = tau0 - tau2;
double distance1 = dtau1.norm() * ucell.lat0;
double distance2 = dtau2.norm() * ucell.lat0;
double rcut1 = ORB.Phi[T1].getRcut() + ORB.Beta[T0].get_rcut_max();
double rcut2 = ORB.Phi[T2].getRcut() + ORB.Beta[T0].get_rcut_max();
if( distance1 < rcut1 && distance2 < rcut2 )
{
const int nelement = atom1->nw * atom2->nw;
this->nnrg += nelement;
this->nlocdimg[iat] += nelement;
this->nad[iat]++;
++count;
break;
} // dis1, dis2
}//ad0
}//distance
*/
}// end iat2
}// end ad
// ofs_running << " iat=" << iat << " nlocstartg=" << nlocstartg[iat] << " nad=" << nad[iat] << endl;
}// end iat
}// end I1
}// end T1
//ofs.close();
if(OUT_LEVEL != "m") OUT(ofs_running,"nnrg",this->nnrg);
//--------------------------------------------------
// search again, to order each (iat2, b1, b2, b3)
// find_R2 is used to target DM_R.
// because DM_R is allocated with nnrg.
// So once we had dR = R2 - R1 and iat2,
// we need to find out the corresponding positions
// in DM_R
//--------------------------------------------------
if(allocate_find_R2)
{
for(int iat=0; iat<ucell.nat; iat++)delete[] find_R2[iat];
delete[] find_R2;
for(int iat=0; iat<ucell.nat; iat++)delete[] find_R2st[iat];
delete[] find_R2st;
allocate_find_R2 = false;
}
this->find_R2 = new int*[ucell.nat];
for(int iat=0; iat<ucell.nat; iat++)
{
// at least nad contains itself, so nad[iat] can not be 0.
this->find_R2[iat] = new int[nad[iat]];
ZEROS(find_R2[iat], nad[iat]);
}
this->find_R2st = new int*[ucell.nat];
for(int iat=0; iat<ucell.nat; iat++)
{
this->find_R2st[iat] = new int[nad[iat]];
ZEROS(find_R2st[iat], nad[iat]);
}
allocate_find_R2 = true;
// ofs_running << setw(5) << "b1" << setw(5) << "b2" << setw(5) << "b3"
// << setw(8) << "iat" << setw(8) << "ad" << setw(8) << "iat2"
// << setw(8) << "find_R2" << setw(8) << "find_R2st" << setw(8) << "dis" << endl;
for (int T1 = 0; T1 < ucell.ntype; T1++)
{
for (int I1 = 0; I1 < ucell.atoms[T1].na; I1++)
{
// cout << " T1=" << T1 << " I1=" << I1 << endl;
tau1 = ucell.atoms[T1].tau[I1];
//GridD.Find_atom(tau1);
GridD.Find_atom(tau1, T1, I1);
const int iat = ucell.itia2iat(T1,I1);
// cout << " Number of adjacent = " << GridD.getAdjacentNum()+1 << endl;
int count=0;
for (int ad = 0; ad < GridD.getAdjacentNum()+1; ad++)
{
// cout << " ad=" << ad << endl;
const int T2 = GridD.getType(ad);
const int I2 = GridD.getNatom(ad);
const int iat2 = ucell.itia2iat(T2,I2);
// if this atom is in this processor.
if(GT.in_this_processor[iat])
{
if(GT.in_this_processor[iat2])
{
dtau = GridD.getAdjacentTau(ad) - tau1;
double distance = dtau.norm() * ucell.lat0;
double rcut = ORB.Phi[T1].getRcut() + ORB.Phi[T2].getRcut();
const int b1 = GridD.getBox(ad).x;
const int b2 = GridD.getBox(ad).y;
const int b3 = GridD.getBox(ad).z;
// for test
/*
if( this->cal_RindexAtom(b1, b2, b3, iat2) == 232 )
{
cout << " ====== nnrg =========" << endl;
cout << " index=" << cal_RindexAtom(b1, b2, b3, iat2) << endl;
cout << " iat=" << iat << " iat2=" << iat2 << endl;
cout << " R1 = " << tau1.x << " " << tau1.y << " " << tau1.z << endl;
cout << " R2 = " << GridD.getAdjacentTau(ad).x
<< " " << GridD.getAdjacentTau(ad).y
<< " " << GridD.getAdjacentTau(ad).z << endl;
cout << setprecision(25);
cout << " distance = " << distance << endl;
cout << " box = " << b1 << " " << b2 << " " << b3 << endl;
cout << " rcut = " << rcut << endl;
}
*/
//cout << " iat=" << iat << " find_R2=" << this->cal_RindexAtom(b1, b2, b3, iat2) <<
// " b1=" << b1 << " b2=" << b2 << " b3=" << b3 << " iat2=" << iat2 << " distance=" << distance << endl;
// mohan fix bug 2011-06-26, should be '<', not '<='
// if(distance < rcut)
// mohan reset this 2013-07-02 in Princeton
// we should make absolutely sure that the distance is smaller than ORB.Phi[it].getRcut
// this should be consistant with LCAO_nnr::cal_nnrg function
// typical example : 7 Bohr cutoff Si orbital in 14 Bohr length of cell.
// distance = 7.0000000000000000
// ORB.Phi[it].getRcut = 7.0000000000000008
if(distance < rcut - 1.0e-15)
{
// assert( count < nad[iat] );
//--------------------------------------------------------------
// start positions of adjacent atom of 'iat'
// note: the first is not zero.
//--------------------------------------------------------------
find_R2[iat][count] = this->cal_RindexAtom(b1, b2, b3, iat2);
if(iat==50 && iat2==96)
{
ofs_running << " ************** iat=" << iat << " count=" << count << " find_R2=" << find_R2[iat][count] <<
" b1=" << b1 << " b2=" << b2 << " b3=" << b3 << " iat2=" << iat2 << " distance=" << distance
<< " rcut=" << rcut <<endl;
}
else if(find_R2[iat][count]==10536)
{
ofs_running << " ************** iat=" << iat << " count=" << count << " find_R2=" << find_R2[iat][count] <<
" b1=" << b1 << " b2=" << b2 << " b3=" << b3 << " iat2=" << iat2 << " distance=" << distance
<< " rcut=" << rcut <<endl;
}
// find_R2st
// note: the first must be zero.
// find_R2st: start position of each adjacen atom.
if( count + 1 < nad[iat] )
{
find_R2st[iat][count+1] = find_R2st[iat][count] + ucell.atoms[T1].nw * ucell.atoms[T2].nw; //modified by zhengdy-soc
}
++count;
}
}
}
}
}
}
//---------
// for test
//---------
/*
ofs_running << " print find_R2 " << endl;
for(int i=0; i<ucell.nat; i++)
{
for(int j=0; j<nad[i]; j++)
{
ofs_running << " i=" << i << " j=" << j << " find_R2=" << find_R2[i][j] << endl;
}
}
ofs_running << endl;
*/
return;
}
void LCAO_nnr::cal_max_box_index(void)
{
TITLE("LCAO_nnr","cal_max_box_index");
this->maxB1 = this->maxB2 = this->maxB3 = -10000;
this->minB1 = this->minB2 = this->minB3 = 10000;
for (int T1 = 0; T1 < ucell.ntype; T1++)
{
for (int I1 = 0; I1 < ucell.atoms[T1].na; I1++)
{
Vector3<double> tau1 = ucell.atoms[T1].tau[I1];
//GridD.Find_atom(tau1);
GridD.Find_atom(tau1, T1, I1);
for (int ad = 0; ad < GridD.getAdjacentNum()+1; ad++)
{
this->maxB1 = max( GridD.getBox(ad).x, maxB1 );
this->maxB2 = max( GridD.getBox(ad).y, maxB2 );
this->maxB3 = max( GridD.getBox(ad).z, maxB3 );
this->minB1 = min( GridD.getBox(ad).x, minB1 );
this->minB2 = min( GridD.getBox(ad).y, minB2 );
this->minB3 = min( GridD.getBox(ad).z, minB3 );
}
}
}
/*
OUT(ofs_running,"maxB1",maxB1);
OUT(ofs_running,"maxB2",maxB2);
OUT(ofs_running,"maxB3",maxB3);
OUT(ofs_running,"minB1",minB1);
OUT(ofs_running,"minB2",minB2);
OUT(ofs_running,"minB3",minB3);
*/
nB1 = maxB1-minB1+1;
nB2 = maxB2-minB2+1;
nB3 = maxB3-minB3+1;
/*
OUT(ofs_running,"nB1",nB1);
OUT(ofs_running,"nB2",nB2);
OUT(ofs_running,"nB3",nB3);
*/
nbox = nB1 * nB2 * nB3;
//OUT(ofs_running,"nbox",nbox);
return;
}
int LCAO_nnr::cal_RindexAtom(const int &u1, const int &u2, const int &u3, const int &iat2)
{
const int x1 = u1 - this->minB1;
const int x2 = u2 - this->minB2;
const int x3 = u3 - this->minB3;
if(x1<0 || x2<0 || x3<0)
{
cout << " u1=" << u1 << " minB1=" << minB1 << endl;
cout << " u2=" << u2 << " minB2=" << minB2 << endl;
cout << " u3=" << u3 << " minB3=" << minB3 << endl;
WARNING_QUIT("LCAO_nnr::cal_Rindex","x1<0 || x2<0 || x3<0 !");
}
assert(x1>=0);
assert(x2>=0);
assert(x3>=0);
return (iat2 + (x3 + x2 * this->nB3 + x1 * this->nB2 * this->nB3) * ucell.nat);
}
// be called in Use_Hamilt_Matrix::calculate_Hk.
void LCAO_nnr::folding_fixedH(const int &ik)
{
TITLE("LCAO_nnr","folding_fixedH");
timer::tick("LCAO_nnr","folding_fixedH",'G');
// cout << " kvec_c = " << kv.kvec_c[ik].x << " " << kv.kvec_c[ik].y << " " << kv.kvec_c[ik].z << endl;
// Record_adj RA;
// RA.for_2d();
int iat = 0;
int index = 0;
Vector3<double> dtau, tau1, tau2;
Vector3<double> dtau1, dtau2, tau0;
for (int T1 = 0; T1 < ucell.ntype; ++T1)
{
Atom* atom1 = &ucell.atoms[T1];
for (int I1 = 0; I1 < atom1->na; ++I1)
{
tau1 = atom1->tau[I1];
//GridD.Find_atom(tau1);
GridD.Find_atom(tau1, T1, I1);
Atom* atom1 = &ucell.atoms[T1];
const int start = ucell.itiaiw2iwt(T1,I1,0);
// (2) search among all adjacent atoms.
for (int ad = 0; ad < GridD.getAdjacentNum()+1; ++ad)
{
const int T2 = GridD.getType(ad);
const int I2 = GridD.getNatom(ad);
Atom* atom2 = &ucell.atoms[T2];
tau2 = GridD.getAdjacentTau(ad);
dtau = tau2 - tau1;
double distance = dtau.norm() * ucell.lat0;
double rcut = ORB.Phi[T1].getRcut() + ORB.Phi[T2].getRcut();
bool adj = false;
if(distance < rcut) adj = true;
else if(distance >= rcut)
{
for (int ad0 = 0; ad0 < GridD.getAdjacentNum()+1; ++ad0)
{
const int T0 = GridD.getType(ad0);
const int I0 = GridD.getNatom(ad0);
const int iat0 = ucell.itia2iat(T0, I0);
const int start0 = ucell.itiaiw2iwt(T0, I0, 0);
tau0 = GridD.getAdjacentTau(ad0);
dtau1 = tau0 - tau1;
dtau2 = tau0 - tau2;
double distance1 = dtau1.norm() * ucell.lat0;
double distance2 = dtau2.norm() * ucell.lat0;
double rcut1 = ORB.Phi[T1].getRcut() + ORB.Beta[T0].get_rcut_max();
double rcut2 = ORB.Phi[T2].getRcut() + ORB.Beta[T0].get_rcut_max();
if( distance1 < rcut1 && distance2 < rcut2 )
{
adj = true;
break;
}
}
}
if(adj) // mohan fix bug 2011-06-26, should not be '<='
{
// (3) calculate the nu of atom (T2, I2)
const int start2 = ucell.itiaiw2iwt(T2,I2,0);
//------------------------------------------------
// exp(k dot dR)
// dR is the index of box in Crystal coordinates
//------------------------------------------------
Vector3<double> dR(GridD.getBox(ad).x, GridD.getBox(ad).y, GridD.getBox(ad).z);
const double arg = ( kv.kvec_d[ik] * dR ) * TWO_PI;
//const double arg = ( kv.kvec_d[ik] * GridD.getBox(ad) ) * TWO_PI;
const complex<double> kphase = complex <double> ( cos(arg), sin(arg) );
//--------------------------------------------------
// calculate how many matrix elements are in
// this processor.
//--------------------------------------------------
for(int ii=0; ii<atom1->nw*NPOL; ii++)
{
// the index of orbitals in this processor
const int iw1_all = start + ii;
const int mu = ParaO.trace_loc_row[iw1_all];
if(mu<0)continue;
for(int jj=0; jj<atom2->nw*NPOL; jj++)
{
int iw2_all = start2 + jj;
const int nu = ParaO.trace_loc_col[iw2_all];
if(nu<0)continue;
//const int iic = mu*ParaO.ncol+nu;
int iic;
if(KS_SOLVER=="genelpa") // save the matrix as column major format
{
iic=mu+nu*ParaO.nrow;
}
else
{
iic=mu*ParaO.ncol+nu;
}
//########################### EXPLAIN ###############################
// 1. overlap matrix with k point
// LM.SlocR = < phi_0i | phi_Rj >, where 0, R are the cell index
// while i,j are the orbital index.
// 2. H_fixed=T+Vnl matrix element with k point (if Vna is not used).
// H_fixed=T+Vnl+Vna matrix element with k point (if Vna is used).
// LM.Hloc_fixed = < phi_0i | H_fixed | phi_Rj>
// 3. H(k) |psi(k)> = S(k) | psi(k)>
// Sloc2 is used to diagonalize for a give k point.
// Hloc_fixed2 is used to diagonalize (eliminate index R).
//###################################################################
if(!NONCOLIN){
LM.Sloc2[iic] += LM.SlocR[index] * kphase;
LM.Hloc_fixed2[iic] += LM.Hloc_fixedR[index] * kphase;
}
else
{
LM.Sloc2[iic] += LM.SlocR_soc[index] * kphase;
LM.Hloc_fixed2[iic] += LM.Hloc_fixedR_soc[index] * kphase;
}
++index;
}//end jj
}//end ii
}
}// end ad
++iat;
}// end I1
} // end T1
assert(index==this->nnr);
// cout << " folding Hfixed" << endl;
timer::tick("LCAO_nnr","folding_fixedH",'G');
return;
}
|
61a8f16f403c2cb482986a705e298f32f99670c4 | d86ca3196c250c7d33d3d202206f256044fa4a52 | /src/components/webserver/webserver/webserver.cpp | c039c0f87c6abf58da42fcef8fdcb2022ffb91c1 | [] | no_license | fvln/tomtom | b0b8b323d9035653e00966f551d8760f2778f2d1 | 22e25f1d77c29a7e4937e6b69dad94d997a1e3af | refs/heads/master | 2021-03-12T08:44:04.736178 | 2020-03-07T07:53:30 | 2020-03-07T07:53:30 | 246,605,294 | 0 | 0 | null | 2020-03-11T15:15:20 | 2020-03-11T15:15:19 | null | UTF-8 | C++ | false | false | 1,155 | cpp | webserver.cpp | #include "webserver.h"
EspWebServer::EspWebServer () {
}
void EspWebServer::setup (DebugInterface* dI) {
debug = dI;
started = false;
}
void EspWebServer::loop () {
if (started == true) {
server->handleClient();
}
}
bool EspWebServer::isStarted () {
return started;
}
bool EspWebServer::startWebServer (int port) {
debug->debug("EspWebServer::startWebServer");
server = new ESP8266WebServer(port);
server->begin();
started = true;
return started;
}
void EspWebServer::stopWebServer () {
debug->debug("EspWebServer::stopWebServer");
server->stop();
started = false;
}
void EspWebServer::on (const String &uri, String method, ESP8266WebServer::THandlerFunction handler) {
if (method == "GET") {
server->on(uri, HTTP_GET, handler);
} else if (method == "POST") {
server->on(uri, HTTP_POST, handler);
}
}
void EspWebServer::serve (int statusCode, String contentType, const String &content) {
server->send(statusCode, contentType, content);
}
String EspWebServer::getBodyField (String field) {
String message = "";
if (server->hasArg(field)) {
message = server->arg(field);
}
return message;
} |
3d5ca1bec44f1b6700fba61d740bea6d2379a8ac | 421f5b6d1a471a554ba99f6052ebc39a67581c96 | /ACM ICPC/Practice problems/Dynamic Programming/1 Dimensional/dp-Rhezo and prime problems.cpp | 2c3d661673a252e556e731a0298ebf7415063e2f | [] | no_license | avinashw50w/practice_problems | 045a2a60998dcf2920a1443319f958ede4f58385 | 1968132eccddb1edeb68babaa05aaa81a7c8ecf3 | refs/heads/master | 2022-08-31T08:39:19.934398 | 2022-08-10T16:11:35 | 2022-08-10T16:11:35 | 193,635,081 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,694 | cpp | dp-Rhezo and prime problems.cpp | /*Rhezo and his friend Vanya love problem solving. They have a problem set containing N problems, with points assigned to each. Rhezo wants to solve problems
in such a way that he gets the maximum number of points. Rhezo has a weird habit of solving only prime number of consecutive problems, that is, if he solves
X consecutive problems from the problem set, then X should be prime. Vanya has already solved all problems from the problem set and he wonders how much
maximum points Rhezo can get. Vanya can answer this, but can you?
Input:
First line contains a single integer N, denoting the number of problems in the problem set.
Next line contains N space separated integers denoting the points assigned to the problems.
Output:
Print a single integer, the maximum points Rhezo can get.
Constraints:
1
≤
N
≤
5000
1≤N≤5000
1
≤
1≤Points of Problems
≤
10
5*/
#include <bits/stdc++.h>
using namespace std;
const int maxn = 5000+1;
vector<int> v;
bool p[maxn];
int pre[maxn], dp[maxn];
void seive() {
v.push_back(2);
for(int i=3; i<maxn; i+=2) {
if(!p[i]){
v.push_back(i);
for(int j=i*i; j<maxn; j+= 2*i) p[j] = true;
}
}
}
int main() {
seive();
int n; cin>>n;
for(int i=1;i<=n;++i){
int x; cin>>x;
pre[i] = pre[i-1] + x; // cummulative sum of all points
}
dp[0] = dp[1] = 0;
// if the number of elements are i
for(int i=2; i<=n; ++i) {
dp[i] = dp[i-1];
for(int j=0; j<v.size() and v[j]<=i; ++j){
int r = i-v[j]-1;
if(r == -1) dp[i] = max(dp[i], pre[i]);
else dp[i] = max(dp[i], dp[r] + (pre[i]-pre[r+1]) );
}
}
cout << dp[n] << endl;
}
|
409e630c342abc0da222712255f07da057c2df86 | d3a402bce2fffee58681d3986f70f52051121deb | /src/ledGroup.h | b17002858213921f4056be8f2c938dcf822d8fef | [] | no_license | plong0/halloween17 | 1ebd669013730b3dc237f4d6da7264985d9d3a23 | cbe7cecd96f896007af155d6888d5f5c0e9cbd38 | refs/heads/master | 2021-09-03T05:03:03.195458 | 2018-01-05T20:36:53 | 2018-01-05T20:36:53 | 108,598,663 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 427 | h | ledGroup.h | //
// ledGroup.h
// halloween17
//
// Created by Pat Long on 2017-10-27.
//
#ifndef ledGroup_h
#define ledGroup_h
#include "ofMain.h"
#include "ledPixel.h"
class ledGroup {
public:
ledGroup(string name, vector<ledPixel*> pixels);
~ledGroup();
void setPixels(vector<ledPixel*> pixels);
void setColor(ofColor color);
string name;
vector<ledPixel*> pixels;
};
#endif /* ledGroup_h */
|
982a117779f68f5d7e71babdd3717a16a6e7072f | 45b32ffcdc7ac3864c0b810b61deeee136616554 | /3dMaxExport_KOK/CurEasy/Easy/include/EasyOgreExporterLog.h | d17a353fb51b5c447e66f615ccdf6122d692bc15 | [] | no_license | atom-chen/Tools-2 | 812071cf6ab3e5a22fb13e4ffdc896ac03de1c68 | 0c41e12bd7526d2e7bd3328b82f11ea1b4a93938 | refs/heads/master | 2020-11-29T10:05:24.253448 | 2017-07-12T06:05:17 | 2017-07-12T06:05:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 627 | h | EasyOgreExporterLog.h | #ifndef EasyOgreExporterLog_H__
#define EasyOgreExporterLog_H__
#include <string>
namespace EasyOgreExporter
{
#define EasyOgreExporterLog ::EasyOgreExporter::EasyOgreExporterLogFile::Log
class EasyOgreExporterLogFile
{
public:
// Sets the full path to the log file.
static void SetPath(const std::string& logPath);
// Returns the full path to the log file.
static std::string GetPath(void);
// Printf-style log output.
static void Log(const char* format, ...);
void operator<<(const char* str);
protected:
// The full path to the log file.
static std::string _logPath;
};
} // namespace
#endif
|
9684c73ab6081748fe8daa368ca627b166cc5807 | 887f3a72757ff8f691c1481618944b727d4d9ff5 | /gears/geolocation/reverse_geocoder.cc | d12501c6e7be2c35614acef7adc6d00fcb0121d0 | [
"LicenseRef-scancode-warranty-disclaimer",
"BSD-2-Clause"
] | permissive | zied-ellouze/gears | 329f754f7f9e9baa3afbbd652e7893a82b5013d1 | d3da1ed772ed5ae9b82f46f9ecafeb67070d6899 | refs/heads/master | 2020-04-05T08:27:05.806590 | 2015-09-03T13:07:39 | 2015-09-03T13:07:39 | 41,813,794 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,728 | cc | reverse_geocoder.cc | // Copyright 2008, Google Inc.
//
// 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 Google Inc. nor the names of its contributors may be
// used to endorse or promote products derived from this software without
// specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
// WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
// EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
// OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
// ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "gears/geolocation/reverse_geocoder.h"
#include "gears/base/common/event.h"
#include "gears/base/common/stopwatch.h" // For GetCurrentTimeMillis
#include "gears/geolocation/access_token_manager.h"
ReverseGeocoder::ReverseGeocoder(const std::string16 &url,
const std::string16 &host_name,
const std::string16 &address_language,
ReverseGeocoderListenerInterface *listener)
: url_(url),
host_name_(host_name),
address_language_(address_language),
listener_(listener),
request_(NULL) {
assert(listener_);
AccessTokenManager::GetInstance()->Register(url_);
}
ReverseGeocoder::~ReverseGeocoder() {
if (request_) {
request_->StopThreadAndDelete();
}
AccessTokenManager::GetInstance()->Unregister();
}
bool ReverseGeocoder::MakeRequest(BrowsingContext *browsing_context,
const Position &position) {
// Lazily create the network request object. We must do this on the same
// thread from which we'll call MakeRequest().
if (request_ == NULL) {
request_ = NetworkLocationRequest::Create(browsing_context, url_,
host_name_, this);
}
assert(request_);
RadioData radio_data;
WifiData wifi_data;
std::string16 access_token;
AccessTokenManager::GetInstance()->GetToken(url_, &access_token);
return request_->MakeRequest(access_token,
radio_data,
wifi_data,
true, // request_address
address_language_,
position.latitude,
position.longitude,
position.timestamp);
}
// NetworkLocationRequest::ListenerInterface implementation.
void ReverseGeocoder::LocationResponseAvailable(
const Position &position,
bool server_error,
const std::string16 &access_token) {
// Record access_token if it's set.
if (!access_token.empty()) {
AccessTokenManager::GetInstance()->SetToken(url_, access_token);
}
listener_->ReverseGeocodeAvailable(position, server_error);
}
|
c1dcca440ad912d99ead99c86c6dbfc313442708 | f4e240deee69bc3c11024f0a3e495b6bc5b232b6 | /ZOJ/BlowingFuses#1195.cpp | 8abdb086d98abd6c7eb5187a0c0bb4b28a0a7537 | [] | no_license | cache-tlb/problem_solving | e9535dcfe73b50154479aad4733305545b277043 | df69eb95cbbad032ede93a72d32b091e0e7f80e0 | refs/heads/master | 2022-08-25T18:36:20.026055 | 2022-08-14T06:02:55 | 2022-08-14T06:02:55 | 50,178,859 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 876 | cpp | BlowingFuses#1195.cpp | #include<iostream>
using namespace std;
const int MAXN = 20 + 10;
int main()
{
int n, m, c;
int round = 1;
while(cin >> n >> m >> c){
if(!n && !m && !c) break;
bool de[MAXN] = {};
//for(int i = 0; i < n; i++){
// de[i] = false;
//}
int a[MAXN] = {};
for(int i = 0; i < n; i++){
cin >> a[i];
}
int amp = 0, flag = 1, Maxmum = 0;
for(int i = 0; i < m; i++){
int k;
cin >> k;
if(de[k]){
amp -= a[k-1];
}
else{
amp += a[k-1];
}
//cout << amp << endl;
de[k] = !de[k];
if(amp>Maxmum) Maxmum = amp;
if(amp>c && flag){
flag = 0;
}
}
//if(round > 1) cout << endl;
cout << "Sequence " << round << endl;
if(!flag) cout << "Fuse was blown." << endl;
else cout << "Fuse was not blown." << endl << "Maximal power consumption was " << Maxmum << " amperes." << endl;
cout << endl;
round++;
}
return 0;
}
|
d7f6a70726848f285b39cc0ab42d8a38055ea1be | 681b414e2e4b8df79a6bb785d0e6b0bd0e81be99 | /src/FYBA/FYTA.cpp | ee63876f66ed8eb7738726b68398ac8bdcf9d488 | [
"MIT"
] | permissive | tibnor/fyba | a0c50b5035e0d56895cbfe6c87e38964422a3b65 | 1e914d90c275615674273fa0d5067c4e2388cfa6 | refs/heads/master | 2022-02-06T04:08:56.129209 | 2020-02-16T20:41:00 | 2020-02-16T20:41:00 | 28,741,374 | 0 | 0 | null | 2015-01-03T10:54:40 | 2015-01-03T10:54:39 | null | ISO-8859-15 | C++ | false | false | 6,068 | cpp | FYTA.cpp | /* === 900607 ============================================================= */
/* STATENS KARTVERK - FYSAK-PC */
/* Fil: fyta.c */
/* Innhold: Lagring og henting av "fil"-tabeller */
/* ======================================================================== */
#include "stdafx.h"
#include <fcntl.h>
/* Div. styrevariabler */
#define NY 0
#define LES 1
#define SKRIV 2
/* Tabellsystem */
static short fytab_open = 0;
static struct {
FILE *fpek;
size_t recl;
short modus;
long cur_lin;
} fytab;
/*
AR-900105
CH LC_InitTabel pner tabellsystemet
CD =============================================================================
CD Formål:
CD Initierer tabellsystemet og åpner filen.
CD
CD Parametre:
CD Type Navn I/U Forklaring
CD -----------------------------------------------------------------------------
CD long n_rec i Antall reckords som skal nullstilles. Disse kan
CD etterpå brukes til tilfeldig aksess. Utvidelse
CD av filen kan senere bare skje i fortløpende
CD rekkefølge.
CD short rec_len i Reckordlengde. (Bruk sizeof for å finne lengden.)
CD void *buffer i Peker til buffer som skal brukes for nullstilling.
CD short ist r Status. (0=OK, -1=feil)
CD
CD Bruk:
CD .
CD struct{
CD long snr;
CD short ngi;
CD short nko;
CD } buffer;
CD .
CD .
CD ist = LC_InitTabel(10000L,sizeof buffer,(void *)(&buffer));
CD .
CD ist = LC_PutTabel(linje,(void *)&buffer);
CD .
CD ist = LC_GetTabel(linje,(void *)&buffer);
CD .
CD LC_CloseTabel();
=============================================================================
*/
SK_EntPnt_FYBA short LC_InitTabel(long n_rec,short rec_len,void *buffer)
{
short ierr;
if (fytab_open){ /* Systemet er allerede i bruk */
return -1;
}
/* pner tabellfilen */
fytab.fpek = UT_OpenFile("fytabell.tmp","",UT_UPDATE,UT_UNKNOWN,&ierr);
if (ierr != UT_OK){ /* pningsfeil */
return -1;
}
fytab.recl = rec_len;
/* Nullstill tabellen */
if (fseek(fytab.fpek,0L,SEEK_SET) != 0){
return -1;
}
for (; n_rec>0; n_rec--){
if (fwrite(buffer,fytab.recl,1,fytab.fpek) != 1){
return -1;
}
}
fytab.modus = NY;
fytab_open = 1; /* Merke for at systemet aktivisert */
return 0;
}
/*
AR-900106
CH LC_GetTabel Get tabell-linje
CD =============================================================================
CD Formål:
CD Henter en linje fra tabellfilen.
CD
CD Parametre:
CD Type Navn I/U Forklaring
CD -----------------------------------------------------------------------------
CD long linje i Linjenummer som skal hentes. (0 er første linje)
CD void *buffer i Peker til struktur som skal ta mot lest reckord.
CD short ist r Status (0=OK, -1=feil)
CD
CD Bruk:
CD ist = LC_GetTabel(linje,(void *)&buffer);
=============================================================================
*/
SK_EntPnt_FYBA short LC_GetTabel(long linje,void *buffer)
{
if ( ! fytab_open){ /* Systemet er ikke aktivisert */
return -1;
}
if (fytab.modus != LES || fytab.cur_lin != linje){ /* Posisjoner */
if (fseek(fytab.fpek,(long)(linje * fytab.recl),SEEK_SET) != 0){
return -1;
}
}
if (fread(buffer,fytab.recl,1,fytab.fpek) != 1){ /* Les */
return -1;
}
fytab.modus = LES;
fytab.cur_lin = linje + 1L;
return 0;
}
/*
AR-900106
CH LC_PutTabel Put tabell-linje
CD =============================================================================
CD Formål:
CD Legg inn en linje fra tabellfilen.
CD
CD Parametre:
CD Type Navn I/U Forklaring
CD -----------------------------------------------------------------------------
CD long linje i Linjenummer som skal legges inn. (0 er første linje)
CD (Største lovlige er 1 større enn det største hittil.)
CD void *buffer i Peker til struktur som skal legges inn.
CD short ist r Status (0=OK, -1=feil)
CD
CD Bruk:
CD ist = LC_PutTabel(linje,(void *)&buffer);
=============================================================================
*/
SK_EntPnt_FYBA short LC_PutTabel(long linje,void *buffer)
{
if ( ! fytab_open){ /* Systemet er ikke aktivisert */
return -1;
}
if (fytab.modus != SKRIV || linje != fytab.cur_lin){ /* Posisjoner */
if (fseek(fytab.fpek,(long)(linje * fytab.recl),SEEK_SET) != 0){
return -1;
}
}
if (fwrite(buffer,fytab.recl,1,fytab.fpek) != 1){ /* Skriv */
return -1;
}
fytab.modus = SKRIV;
fytab.cur_lin = linje + 1L;
return 0;
}
/*
AR-900106
CH LC_CloseTabel Stenge tabellsystemet
CD =============================================================================
CD Formål:
CD Avslutter tabellsystemet og stenger og sletter filen.
CD Tabellen kan nå åpnes på nytt for annen bruk.
CD
CD Parametre: ingen
CD
CD Bruk:
CD LC_CloseTabel();
=============================================================================
*/
SK_EntPnt_FYBA void LC_CloseTabel(void)
{
if (fytab_open){
fclose(fytab.fpek); /* Stenger tabellfilen */
UT_DeleteFile("fytabell.tmp"); /* Sletter tabellfilen */
fytab_open = 0; /* Merke for at systemet er stengt */
}
}
|
b6ee5a5612baa1706e818404ddba9a265936ffe4 | d51522011bc09367eb4b8eec4768fdb6b14b5395 | /ConsoleApplicationDti/ConsoleApplication1/ClientView.cpp | c0b1184ddaafe42b68db2201c737907ca7e5ef1f | [] | no_license | FabyoSilveira/DtiTest | 321c6f4120fb858f9f9901c016a14134fe977b3b | 030ab87ee772bc500f383fcd695f27bdb703e581 | refs/heads/master | 2020-11-25T12:32:47.121339 | 2019-12-21T01:29:52 | 2019-12-21T01:29:52 | 228,663,224 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,197 | cpp | ClientView.cpp | #include "pch.h"
#include "ClientView.h"
#include "Client.h"
#include <iostream>
#include <conio.h>
using namespace std;
ClientView::ClientView() {
}
//Menu de cadastro de cliente
void ClientView::showClientRegisterMenu(list<Client>* clientList) {
int userOption;
do{
cout << "Deseja prosseguir com o cadastro ou voltar ao menu principal? 1 - Prosseguir / 2 - Menu Principal" << endl;
cin >> userOption;
if (userOption != 1) {
return;
}
cin.ignore();
cout << "Nome : ";
getline(cin, clientObject.name);
cout << "Endereco : ";
getline(cin, clientObject.address);
cout << "Telefone : ";
cin >> clientObject.phone;
cout << "Email : ";
cin >> clientObject.email;
cin.ignore();
cout << "Data de Nascimento : ";
getline(cin, clientObject.birthDate);
cout << endl;
//Faz a chamada do fluxo de cadastro de cliente no sistema
}while(!controllerObject.subscribeClient(clientList, clientObject));
cout << "Cliente cadastrado com sucesso!" << endl;
}
//Exibe a lista de clientes, caso exista algum cadastrado
void ClientView::showClientList(list<Client> clientList) {
list<Client>::iterator i;
if(!clientList.empty()){
cout << "***** Lista de Clientes *****" << endl;
cout << "\n" << endl;
for (i = clientList.begin(); i != clientList.end(); ++i) {
cout << " Nome - " << i->name << " " << endl;
cout << " Email - " << i->email << " " << endl;
cout << " Telefone - " << i->phone << " " << endl;
cout << " Data de Nascimento - " << i->birthDate << " " << endl;
cout << " Endereco - " << i->address << " " << endl;
cout << " ------------------" << endl;
cout << "\n" << endl;
}
cout << "**************************************************" << endl;
cout << "\n" << endl;
cout << "Aperte qualquer tecla para voltar ao menu principal..." << endl;
_getch();
}
else {
cout << "\n" << endl;
cout << "Voce ainda nao possui nenhum cliente cadastrado." << endl;
cout << "\n" << endl;
cout << "Aperte qualquer tecla para voltar ao menu principal e cadastrar seu novo cliente..." << endl;
_getch();
}
} |
aac5bad4355346ff161896d7c07e4911a26581cf | 3ed50163536cde7fb7a94e330b1ceefa94026edf | /ConfettiVision/xcode/ParticleCollection.cpp | de708fe8d2616c38c59ec231a8f4aeda8d49e7b8 | [] | no_license | kronick/confetti | 3a811ca480be46b119634fe67153bf0f2bdd83e0 | 4cd7e8dfe2b7ef1b09696a5f69d315aeaff5fc15 | refs/heads/master | 2016-09-08T00:34:56.958540 | 2015-05-15T02:57:49 | 2015-05-15T02:57:49 | 34,832,153 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,567 | cpp | ParticleCollection.cpp | //
// ParticleCollection.cpp
// ConfettiVision
//
// Created by Sam Kronick on 4/23/15.
//
//
#include "ParticleCollection.h"
using namespace std;
ParticleCollection::ParticleCollection(ParticleColor color) {
this->color = color;
this->particles = vector<ParticleRef>();
// Choose a random debug color
cv::RNG rng(time(NULL));
setDebugColor(rng.uniform(0, 255), rng.uniform(0, 255), rng.uniform(0, 255));
}
void ParticleCollection::setDebugColor(int r, int g, int b) {
this->debugColor = cv::Scalar(r, g, b);
}
void ParticleCollection::resetParticles() {
this->particles.clear();
this->newParticles.clear();
this->movedParticles.clear();
this->largestParticleArea = 0;
}
void ParticleCollection::findParticles(const cv::Mat &frame) {
// TODO:
// [x] Set up n HLS ranges to mask video & identify each color of confetti
// [x] Run a blob detector on each (either with SimpleBlobDetector or manually with findContours)
// [x] Calculate center of each blob
// [ ] Find nearest neighbor in previous frame for each blob-- try to correspond to continuous motion
// [ ] If no neighbor in previous frame is found, create new point (trigger new musical event)
// [ ] Also trigger events for points that disappear for ~2 frames and remove them from the list
// [ ] Maybe point management/event triggering should happen elsewhere instead?
if(frame.rows == 0) return;
vector<cv::Mat> channels;
cv::split(frame, channels);
cv::Mat mask = channels[0];
// // Threshold the incoming frame
// cv::inRange(frame,
// cv::Scalar(this->threshold.h_min, this->threshold.l_min, this->threshold.s_min),
// cv::Scalar(this->threshold.h_max, this->threshold.l_max, this->threshold.s_max),
// mask);
// Optional erod & blur to make things look a bit nicer
cv::dilate(mask, mask, cv::getStructuringElement(cv::MORPH_ELLIPSE, cv::Size(5,5)));
//cv::medianBlur(mask, mask, 5);
// Find contour polygons
vector<vector<cv::Point> > contours;
vector< vector<ci::Vec2f> >contourVectors;
vector<cv::Point> contour_centers;
cv::findContours(mask, contours, CV_RETR_EXTERNAL, CV_CHAIN_APPROX_SIMPLE);
// Delete the ones that are too big or small
this->largestParticleArea = 0;
for(auto contour = contours.begin(); contour != contours.end();) {
double area = cv::contourArea(*contour);
this->largestParticleArea = max(this->largestParticleArea, (int)area);
if(area > particleAreaMax || area < particleAreaMin) {
contour = contours.erase(contour);
}
else {
++contour;
}
}
// Calculate centers of mass
for(auto &contour : contours) {
cv::Rect bounds = cv::boundingRect(contour);
contour_centers.push_back(cv::Point(bounds.x + bounds.width/2, bounds.y + bounds.height/2));
vector<ci::Vec2f> points;
for(auto &p : contour) {
points.push_back(ci::Vec2f(p.x, p.y));
}
contourVectors.push_back(points);
}
// Run through list of particles and find correspondences
// ------------------------------------------------------
// First update the old particle positions & lifetimes
for(auto p = this->particles.begin(); p != this->particles.end();) {
(*p)->update();
// Clean out dead particles
if((*p)->isAlive()) {
++p;
}
else {
p = this->particles.erase(p);
}
}
movedParticles = vector<ParticleRef>();
newParticles = vector<ParticleRef>();
int i =0;
for(auto &found_point : contour_centers) {
ci::Vec2f found_vec(found_point.x, found_point.y);
bool match_found = false;
float closestDistance = numeric_limits<float>::max();
ParticleRef closestParticle;
for(auto &p : this->particles) {
// Find the closest particle within range that hasn't already been updated this cycle
if(p->freshness < 1) {
float distance = p->position.distanceSquared(found_vec);
if(distance < this->particleSeparationThreshold && distance < closestDistance) {
closestDistance = distance;
closestParticle = p;
match_found = true;
}
}
}
if(match_found) {
closestParticle->setPosition(found_vec);
closestParticle->setContour(contourVectors[i]);
this->movedParticles.push_back(closestParticle);
}
// Add new particle if it's not in the junk zone
if(!match_found && found_point.y > this->deadZoneTop) {
// Create a new particle
ParticleRef p = Particle::create(found_vec, this->color);
p->setContour(contourVectors[i]);
this->particles.push_back(p);
this->newParticles.push_back(p);
}
i++;
}
if(this->debugOn) {
// Create debug view
this->debugView = cv::Mat::zeros(480, 640, CV_8UC3);
cv::rectangle(this->debugView, cv::Rect(0,0, 640,480), cv::Scalar(230,230,230), -1);
frame.copyTo(this->debugView, mask);
return;
}
}
int ParticleCollection::getActiveParticleCount() {
int n = 0;
for(auto &p : particles) {
if(p->isActive()) n++;
}
return n;
} |
3bbef4f7271e0a11e544b64fb7a9abe867c19f46 | a36aff909766992ce910ebcb8069a4069da2b835 | /build/out_packages/opencv/modules/imgproc/median_blur.avx2.cpp | 8d6b7fe35b7eeb2ebe40e5e4fb120adbd67869dc | [] | no_license | asdi952/cmake_test | 38ee0828428d94a824190b31bee61a52d97fa05b | bd6134603a080b379e4d112b97b23a74cfa234df | refs/heads/master | 2023-08-03T10:08:39.923666 | 2021-09-14T12:47:05 | 2021-09-14T12:47:05 | 406,362,782 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 226 | cpp | median_blur.avx2.cpp |
#include "C:/Users/eeeri/OneDrive/Documents/cmake_proj/out_packages/opencv/modules/imgproc/src/precomp.hpp"
#include "C:/Users/eeeri/OneDrive/Documents/cmake_proj/out_packages/opencv/modules/imgproc/src/median_blur.simd.hpp"
|
0b45d6eec2a18a786c207b07105e25db65c41173 | 59418b5794f251391650d8593704190606fa2b41 | /sample_plugins/original_snippets/em5/event/standard/medical/MedicalInBuildingEvent.cpp | 2b5b365872b0b4e13bd993b4553da4efa9289b5e | [] | no_license | JeveruBerry/emergency5_sdk | 8e5726f28123962541f7e9e4d70b2d8d5cc76cff | e5b23d905c356aab6f8b26432c72d18e5838ccf6 | refs/heads/master | 2023-08-25T12:25:19.117165 | 2018-12-18T16:55:16 | 2018-12-18T17:09:54 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,950 | cpp | MedicalInBuildingEvent.cpp | // Copyright (C) 2012-2018 Promotion Software GmbH
//[-------------------------------------------------------]
//[ Includes ]
//[-------------------------------------------------------]
#include "em5/PrecompiledHeader.h"
#include "em5/event/standard/medical/MedicalInBuildingEvent.h"
#include "em5/base/GameplayAssets.h"
#include "em5/base/ContainerCategory.h"
#include "em5/component/building/BuildingComponent.h"
#include "em5/component/spawnpoint/civilist/PersonSpawnPointComponent.h"
#include "em5/freeplay/objective/ObjectiveHelper.h"
#include "em5/game/Game.h"
#include "em5/health/HealthHelper.h"
#include "em5/logic/cleanup/LayerCleanup.h"
#include "em5/logic/ObserverHelper.h"
#include "em5/logic/HintHelper.h"
#include "em5/logic/observer/hint/HintMessageGeneralObserver.h"
#include "em5/logic/observer/generic/MessageObserver.h"
#include "em5/logic/observer/PersonDiedObserver.h"
#include "em5/map/EntityHelper.h"
#include "em5/map/MapHelper.h"
#include "em5/plugin/Messages.h"
#include "em5/EM5Helper.h"
#include <qsf/audio/component/DynamicMusicCompositorComponent.h>
#include <qsf/component/link/LinkComponent.h>
#include <qsf/log/LogSystem.h>
#include <qsf/map/layer/LayerManager.h>
//[-------------------------------------------------------]
//[ Namespace ]
//[-------------------------------------------------------]
namespace em5
{
//[-------------------------------------------------------]
//[ Local definitions ]
//[-------------------------------------------------------]
// Hints
const std::string PERSON_BALCONY_HINT_01 = "EM5_EVENT_PERSON_BALCONY_HINT_01";
const qsf::Time PERSON_BALCONY_HINT_01_WAIT_TIME = qsf::Time::fromSeconds(60.0f);
//[-------------------------------------------------------]
//[ Public definitions ]
//[-------------------------------------------------------]
const uint32 MedicalInBuildingEvent::FREEPLAY_EVENT_ID = qsf::StringHash("em5::MedicalInBuildingEvent");
//[-------------------------------------------------------]
//[ Public methods ]
//[-------------------------------------------------------]
MedicalInBuildingEvent::MedicalInBuildingEvent() :
mTargetEntityId(qsf::getUninitialized<uint64>()),
mDeadPersonsToFail(0),
mPersonsInside(false),
mPersonsAtWindow(false),
mTrappedPersonsRescueTime(qsf::Time::fromSeconds(300.0f)),
mTrappedHealthyPersonsMin(1),
mTrappedHealthyPersonsMax(3),
mTrappedInjuredPersonsMin(0),
mTrappedInjuredPersonsMax(0),
mTrappedPersonWithPlague(false),
mBlockedDoor(true),
mSpawnFromConnectedSpawnpools(false),
mTrappedPersons(0),
mTrappedInjuredPersons(0),
mFailAmountInfectedPersons(2),
mHint01WaitTime(qsf::Time::fromSeconds(60.0f))
{
// Nothing here
}
MedicalInBuildingEvent::~MedicalInBuildingEvent()
{
// Nothing here
}
uint64 MedicalInBuildingEvent::getTargetEntityId() const
{
return mTargetEntityId;
}
void MedicalInBuildingEvent::setTargetEntity(const qsf::Entity& entity)
{
mTargetEntityId = entity.getId();
}
uint32 MedicalInBuildingEvent::getDeadPersonsToFail() const
{
return mDeadPersonsToFail;
}
void MedicalInBuildingEvent::setDeadPersonsToFail(uint32 personsToFail)
{
mDeadPersonsToFail = personsToFail;
}
void MedicalInBuildingEvent::setAmbientLayerName(const std::string& layerName)
{
mAmbientLayerName = layerName;
}
//[-------------------------------------------------------]
//[ Public virtual em5::FreeplayEvent methods ]
//[-------------------------------------------------------]
bool MedicalInBuildingEvent::onStartup()
{
// Event is now running
setRunning();
// Done
return true;
}
void MedicalInBuildingEvent::onShutdown()
{
// Ensure everything from the event is cleaned up
if (!mAmbientLayerName.empty())
{
qsf::Layer* layer = getMap().getLayerManager().getLayerByName(qsf::StringHash(mAmbientLayerName));
if (nullptr != layer)
{
LayerCleanup::createLayerCleanup(*layer);
}
}
mMessageProxyStoppedBurning.unregister();
mMessageProxyContaminationStart.unregister();
mMessageProxyNeedContaminatedTime.unregister();
}
void MedicalInBuildingEvent::onRun()
{
// No null pointer check in here. The factory already checked these pointers.
qsf::Entity* targetEntity = getMap().getEntityById(mTargetEntityId);
if (mPersonsInside)
{
executeFireWithPersonsInside(*targetEntity);
}
else if (mPersonsAtWindow)
{
executeFireWithPersonAtWindow(*targetEntity);
}
spawnPersonsFromConnectedSpawnPoints(*targetEntity);
// Activate ambient layer
if (!mAmbientLayerName.empty())
{
MapHelper(getMap()).activateLayerByName(mAmbientLayerName, true);
}
// Set all observers and objectives for the first target
if (mDeadPersonsToFail > 0)
{
ObjectiveHelper(*this).addDeadCivilPersonsFailCondition(mDeadPersonsToFail);
}
// Set start hint observers after the event entity was added
startHintObservers(*targetEntity);
// Show supervisor message
showSupervisorMessage(HintHelper::getRandomStringOfIdString(HintHelper(*this).getHintParameters().mSupervisorMessageIds));
createEventLocationEntity(*targetEntity);
// Added the number of infected persons at start. So we can easier check against this value;
mFailAmountInfectedPersons += getNumberInfectedPersons();
}
void MedicalInBuildingEvent::updateFreeplayEvent(const qsf::Time& timePassed)
{
// Check objectives for success or failure
checkObjectivesState();
if (getNumberInfectedPersons() > mFailAmountInfectedPersons)
{
setFinished(false);
}
}
bool MedicalInBuildingEvent::addEntityToEvent(qsf::Entity& targetEntity, eventspreadreason::Reason eventSpreadReason, bool newReason)
{
// Call base implementation
return FreeplayEvent::addEntityToEvent(targetEntity, eventSpreadReason, newReason);
}
void MedicalInBuildingEvent::hintCallback(Observer& hintObserver)
{
showHint(hintObserver.getName(), false);
// Play short action music
getDynamicMusicCompositor().setMusicLevel(3);
}
const qsf::Entity* MedicalInBuildingEvent::getFocusEntity()
{
const qsf::Map& map = getMap();
const ObjectiveHelper objectiveHelper(*this);
{ // Are there any persons injured?
Objective* treatPersonsObjective = objectiveHelper.getObjectiveByTypeId(ObjectiveHelper::OBJECTIVE_NEED_TREATPERSONS);
if (nullptr != treatPersonsObjective)
{
qsf::Entity* candidateEntity = map.getEntityById(treatPersonsObjective->getRandomNeededEntityId());
if (nullptr != candidateEntity)
{
return candidateEntity;
}
}
}
{ // Is there an entity to untrap?
const Objective* freePersonsObjective = objectiveHelper.getObjectiveByTypeId(ObjectiveHelper::OBJECTIVE_NEED_FREEPERSONSFROMBUILDING);
if (nullptr != freePersonsObjective)
{
const qsf::Entity* candidateEntity = map.getEntityById(freePersonsObjective->getRandomNeededEntityId());
if (nullptr != candidateEntity)
{
return candidateEntity;
}
}
}
{ // Are there any persons to test?
Objective* objective = objectiveHelper.getObjectiveByTypeId(ObjectiveHelper::OBJECTIVE_NEED_QUICKTESTPERSONS);
if (nullptr != objective)
{
qsf::Entity* candidateEntity = map.getEntityById(objective->getRandomNeededEntityId());
if (nullptr != candidateEntity)
{
return candidateEntity;
}
}
}
return getEventLocationEntity();
}
bool MedicalInBuildingEvent::checkEventConfiguration()
{
// TODO(mk) Add Check if event has right configuration an can start now
return true;
}
void MedicalInBuildingEvent::serialize(qsf::BinarySerializer& serializer)
{
// Call base implementation
FreeplayEvent::serialize(serializer);
serializer.serialize(mTargetEntityId);
serializer.serialize(mDeadPersonsToFail);
}
//[-------------------------------------------------------]
//[ Private methods ]
//[-------------------------------------------------------]
void MedicalInBuildingEvent::startHintObservers(const qsf::Entity& targetEntity)
{
const HintHelper hintHelper(*this);
hintHelper.createAndInitializeGeneralHintsAtInjured();
hintHelper.createAndInitializeGeneralHintAtDamagedVehicle();
if (mPersonsInside)
{
if (mBlockedDoor)
{
// Firefighter has not started to break the door after X sec
createGeneralObserver<HintMessageGeneralObserver>("EM5X_HOSTEL_UNITHINT01").initialize(
qsf::MessageConfiguration(Messages::EM5_ACTION_BREAK_BUILDING_DOOR_OPEN_START, mTargetEntityId), mHint01WaitTime, false);
}
}
}
bool MedicalInBuildingEvent::onFailure(EventResult& eventResult)
{
const uint32 failObjective = getFailReasonObjectiveTypeId(eventResult.mObjectives);
if (ObjectiveHelper::OBJECTIVE_FAIL_DEADPERSONS == failObjective)
{
setFailHintsForMiniEvent(eventResult, "EM5_GE14_FAIL01", "EM5_GE01_SUPERV_FAIL01", "");
return true;
}
if (mFailAmountInfectedPersons > getNumberInfectedPersons())
{
setFailHintsForMiniEvent(eventResult, "EM5X_ME100_FAIL02", "EM5X_ME101_SUPERV_FAIL02", "");
return true;
}
// Call base implementation
return FreeplayEvent::onFailure(eventResult);
}
void MedicalInBuildingEvent::executeFireWithPersonAtWindow(qsf::Entity& entity)
{
BuildingComponent* buildingComponent = entity.getComponent<BuildingComponent>();
if (nullptr == buildingComponent)
return;
qsf::Entity* personEntity = SpawnPointComponent::spawnRandomAt(qsf::Transform(), getMap(), assets::SPAWNPOOL_DEFAULT_PERSON, false);
if (nullptr == personEntity)
return;
EntityHelper(*personEntity).enterContainer(entity, container::CONTAINERTYPE_PASSENGER);
// Let person wave out of window
buildingComponent->letPersonWaveOutOfWindow(*personEntity, this);
// Start fire
EntityHelper(entity).startFire(this);
// Specific hint if no DLK ordered after X seconds
createGeneralObserver<HintMessageGeneralObserver>(PERSON_BALCONY_HINT_01).initialize(
qsf::MessageConfiguration(Messages::EM5_ACTION_LOAD_PERSON_ON_DLK, personEntity->getId()), PERSON_BALCONY_HINT_01_WAIT_TIME, false);
}
void MedicalInBuildingEvent::executeFireWithPersonsInside(qsf::Entity& entity)
{
BuildingComponent* buildingComponent = entity.getComponent<BuildingComponent>();
if (nullptr == buildingComponent)
return;
// Trap persons inside the building
buildingComponent->setTrappedPersonsInjuryId(injury::PLAGUE_CONTAMINATION);
buildingComponent->setupTrappedInjuredPersons(mTrappedHealthyPersonsMin, mTrappedHealthyPersonsMax, mTrappedInjuredPersonsMin, mTrappedInjuredPersonsMax, mBlockedDoor, true, mTrappedPersonsRescueTime);
mTrappedPersons = buildingComponent->getSetupNumberOfTrappedPersons();
mTrappedInjuredPersons = buildingComponent->getSetupNumberOfTrappedInjuredPersons();
buildingComponent->createTrappedPerson(*this);
}
void MedicalInBuildingEvent::spawnPersonsFromConnectedSpawnPoints(qsf::Entity& buildingEntity)
{
if (mSpawnFromConnectedSpawnpools)
{
BuildingComponent* buildingComponent = buildingEntity.getComponent<BuildingComponent>();
if (nullptr == buildingComponent)
return;
qsf::LinkComponent* linkComponent = buildingEntity.getComponent<qsf::LinkComponent>();
if (linkComponent != nullptr)
{
// We test here for tags but it is also possible to use the array position to find the right entity
for (const qsf::LinkComponent* childComponent : linkComponent->getChildLinks())
{
qsf::Entity& childEntity = childComponent->getEntity();
PersonSpawnPointComponent* personSpawnPointComponent = childEntity.getComponent<PersonSpawnPointComponent>();
if (nullptr != personSpawnPointComponent && !personSpawnPointComponent->isActive()) // Use only inactive spawnpoints, not the building doors, only the extra edited ones!
{
qsf::Entity* spawnedEntity = personSpawnPointComponent->spawnRandom();
if (spawnedEntity != nullptr)
{
HealthHelper healthHelper(*spawnedEntity);
if (mTrappedPersonWithPlague)
{
healthHelper.injurePersonByPlague(this, false);
}
else
{
healthHelper.injurePersonBySmoke(this, false);
}
}
}
}
}
}
}
int MedicalInBuildingEvent::getNumberInfectedPersons()
{
// Check objectives with the number of protester
ObjectiveHelper objectiveHelper(*this);
Objective* quicktestObjective = objectiveHelper.getObjectiveByTypeId(ObjectiveHelper::OBJECTIVE_NEED_QUICKTESTPERSONS);
if (nullptr != quicktestObjective)
{
return quicktestObjective->getNeededNumber();
}
// Error
return 0;
}
//[-------------------------------------------------------]
//[ Namespace ]
//[-------------------------------------------------------]
} // em5
|
7e2577b78eda50c76ea660fe75122110355a2fc1 | 8c5e442c2e95925e82afb8d41830bbc9ca78571b | /STL/deque.cpp | b312201aa679a8c4df7ab43a709f8d1eace40702 | [] | no_license | 1aman1/Cplusplus | 7f7bfb9a86f40719df396316a9ce948ed2539ad1 | a9dd8d4dc2f8ccd32fad70d79a386c135ba72770 | refs/heads/master | 2022-05-07T01:59:35.419213 | 2022-04-11T11:19:29 | 2022-04-11T11:19:29 | 193,675,347 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 857 | cpp | deque.cpp | #include<iostream>
#include<deque>
using namespace std;
void print(deque<int> Q, int type = 1) {
cout << "Queue " << type << ":";
if (!Q.empty())
for (auto i : Q) cout << " " << i;
else
cout << " empty";
cout << endl;
}
int main() {
deque<int> Q;
Q.push_back(256);
Q.push_front(128);
print(Q);
Q.emplace_front(64);
Q.emplace_back(512);
Q.emplace(Q.begin(), 32);
print(Q);
Q.erase(Q.begin() + Q.size() -1);
print(Q);
Q.erase(Q.begin(), Q.end());
print(Q);
Q.insert(Q.begin(), 64);
Q.insert(Q.end(), 256);
deque<int> Q2;
//for cloning a queue
//Q.assign(begin, end)
Q2.assign(Q.begin(), Q.end());
Q2.insert(Q2.begin() + Q2.size() -1, 128);
print(Q);
print(Q2, 2);
Q2.erase(Q2.begin() + Q2.size() - 1);
print(Q2, 2);
print(Q);
print(Q2, 2);
Q.swap(Q2);
print(Q);
print(Q2, 2);
system("pause");
return 0;
}
|
50b63cb247b9f3607ad5d50cb5a6104a0e7956bb | ef4dcefd43498716e3154119d5005b310ada157b | /Arduino/MiP_ProMini_Pack_Library/examples/SRSdemo/SRSdemo.ino | f2efb95e10edeb1c7cbda2530b58d8cf9d89cabb | [
"Apache-2.0"
] | permissive | adamgreen/MiP_ProMini-Pack | 640414cba689b109e58c908d2e0aeed97f5c8f79 | 52bc2ea88eebbdb6ce0d85cd069cbecc091e94d4 | refs/heads/master | 2021-06-25T10:42:06.383786 | 2021-06-11T03:22:37 | 2021-06-11T03:25:50 | 106,907,663 | 6 | 2 | null | 2018-09-03T20:47:55 | 2017-10-14T07:26:03 | C++ | UTF-8 | C++ | false | false | 4,944 | ino | SRSdemo.ino | /* Copyright (C) 2018 Adam Green (https://github.com/adamgreen)
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.
*/
// Program that I demoed at the Seattle Robotics Society meeting on April 21, 2018.
#include <mip.h>
static MiP g_mip;
static MiPHeadLEDs g_headLEDs;
void setup()
{
// First need to initialize the serial connection with the MiP.
bool connectResult = g_mip.begin();
if (!connectResult)
{
Serial.println(F("Failed connecting to MiP!"));
return;
}
Serial.println(F("Seattle Robotics Society Demo for April 21st, 2018."));
}
void loop()
{
enum States
{
RESTART,
WAITING_TO_STANDUP,
WAITING_FOR_GESTURE,
PLAYING_EYE_ANIMATION
} static state = RESTART;
static int8_t animationDirection = 0;
static uint32_t keyframeStart = 0;
static uint8_t frameCount = 0;
MiPGesture gesture;
switch (state)
{
case RESTART:
// Turn all of the eye LEDs off and prepare to wait for the MiP to indicate that is it standing.
g_mip.disableGestureMode();
g_headLEDs.clear();
g_mip.writeHeadLEDs(g_headLEDs);
state = WAITING_TO_STANDUP;
break;
case WAITING_TO_STANDUP:
// Waiting for the robot to indicate that it is standing upright and balancing on its own.
if (g_mip.isUpright())
{
// Switch into gesture mode now that robot is up and balancing.
g_mip.enableGestureMode();
// Blink the left and and right most eye LEDs in a fast mode.
blinkOuterEyes();
state = WAITING_FOR_GESTURE;
}
break;
case WAITING_FOR_GESTURE:
if (!g_mip.isUpright())
{
// Robot is no longer up and balancing so go back to waiting for it to balance again.
state = RESTART;
return;
}
// See if the user has moved their hand in front of the robot from left to right or vice versa.
gesture = g_mip.readGestureEvent();
if (gesture == MIP_GESTURE_LEFT)
{
// The user has moved their hand from right to left.
animationDirection = 1;
}
else if (gesture == MIP_GESTURE_RIGHT)
{
// The user has moved their hand from left to right.
animationDirection = -1;
}
else
{
// The user hasn't performed either gesture so just exit loop() and check again on next loop.
return;
}
// Start playing eye animation in desired direction.
g_headLEDs.clear();
if (animationDirection > 0)
{
g_headLEDs.led1 = MIP_HEAD_LED_ON;
}
else
{
g_headLEDs.led4 = MIP_HEAD_LED_ON;
}
keyframeStart = millis();
frameCount = 5;
g_mip.writeHeadLEDs(g_headLEDs);
state = PLAYING_EYE_ANIMATION;
break;
case PLAYING_EYE_ANIMATION:
if (!g_mip.isUpright())
{
// Robot is no longer up and balancing so go back to waiting for it to balance again.
state = RESTART;
return;
}
// Update to next animation keyframe in 250 milliseconds.
if (millis() - keyframeStart >= 250)
{
keyframeStart = millis();
animateEyes(animationDirection);
frameCount--;
if (frameCount == 0)
{
// Animation is done so switch back to the state which just waits for the next user gesture.
blinkOuterEyes();
state = WAITING_FOR_GESTURE;
}
}
break;
}
}
static void blinkOuterEyes()
{
g_headLEDs.led1 = MIP_HEAD_LED_BLINK_FAST;
g_headLEDs.led2 = MIP_HEAD_LED_OFF;
g_headLEDs.led3 = MIP_HEAD_LED_OFF;
g_headLEDs.led4 = MIP_HEAD_LED_BLINK_FAST;
g_mip.writeHeadLEDs(g_headLEDs);
}
static void animateEyes(int8_t direction)
{
if (direction > 0)
{
g_headLEDs.led4 = g_headLEDs.led3;
g_headLEDs.led3 = g_headLEDs.led2;
g_headLEDs.led2 = g_headLEDs.led1;
g_headLEDs.led1 = MIP_HEAD_LED_OFF;
}
else
{
g_headLEDs.led1 = g_headLEDs.led2;
g_headLEDs.led2 = g_headLEDs.led3;
g_headLEDs.led3 = g_headLEDs.led4;
g_headLEDs.led4 = MIP_HEAD_LED_OFF;
}
g_mip.writeHeadLEDs(g_headLEDs);
}
|
de25d29813e217bd663db63c0e70359443a6999f | 788cfa8d89ab6f8aacd84fb5587ae41aeef33e44 | /src/reverse_graph.cpp | 6eac9cf5db4b529172b0741285216b52291b7099 | [
"LicenseRef-scancode-boost-original",
"MIT",
"BSL-1.0"
] | permissive | vgteam/vg | 5064ca0996db9c54c9642cc4d63d2fef2cefcdb0 | e173d0a81c6aa0e5b93a863f19b73ee4200177dc | refs/heads/master | 2023-08-31T04:08:13.862938 | 2023-08-25T00:35:47 | 2023-08-25T00:35:47 | 24,727,800 | 886 | 202 | NOASSERTION | 2023-09-08T11:33:30 | 2014-10-02T16:54:27 | C++ | UTF-8 | C++ | false | false | 2,569 | cpp | reverse_graph.cpp | /**
* \file reverse_graph.cpp: contains the implementation of ReverseGraph
*/
#include "reverse_graph.hpp"
namespace vg {
using namespace std;
ReverseGraph::ReverseGraph(const HandleGraph* forward_graph, bool complement) :
forward_graph(forward_graph), complement(complement) {
// nothing to do
}
bool ReverseGraph::has_node(id_t node_id) const {
return forward_graph->has_node(node_id);
}
handle_t ReverseGraph::get_handle(const id_t& node_id, bool is_reverse) const {
return forward_graph->get_handle(node_id, is_reverse);
}
id_t ReverseGraph::get_id(const handle_t& handle) const {
return forward_graph->get_id(handle);
}
bool ReverseGraph::get_is_reverse(const handle_t& handle) const {
return forward_graph->get_is_reverse(handle);
}
handle_t ReverseGraph::flip(const handle_t& handle) const {
return forward_graph->flip(handle);
}
size_t ReverseGraph::get_length(const handle_t& handle) const {
return forward_graph->get_length(handle);
}
string ReverseGraph::get_sequence(const handle_t& handle) const {
// reverse, possibly complement, the sequence
string sequence = forward_graph->get_sequence(handle);
if (complement) {
reverse_complement_in_place(sequence);
}
else {
reverse(sequence.begin(), sequence.end());
}
return sequence;
}
bool ReverseGraph::follow_edges_impl(const handle_t& handle, bool go_left,
const function<bool(const handle_t&)>& iteratee) const {
// the left and right side have been switched, so reverse the direction
return forward_graph->follow_edges(handle, !go_left, iteratee);
}
bool ReverseGraph::for_each_handle_impl(const function<bool(const handle_t&)>& iteratee,
bool parallel) const {
// since the handles are the same we can just execute this
return forward_graph->for_each_handle(iteratee, parallel);
}
size_t ReverseGraph::get_node_count() const {
return forward_graph->get_node_count();
}
id_t ReverseGraph::min_node_id() const {
return forward_graph->min_node_id();
}
id_t ReverseGraph::max_node_id() const {
return forward_graph->max_node_id();
}
handle_t ReverseGraph::get_underlying_handle(const handle_t& handle) const {
return flip(handle);
}
}
|
d9f364e53b46c75cebafaa4e918a527252a44f68 | 01c00bfac9b7098fb4bed77c02d580ee5be75e9d | /leetcode289.cpp | e91b50543f19b32cef51dcc514b00b7613f5884c | [] | no_license | ParticularJ/interview | 2dfc9d4e775b9f7b597dbbde176755d7cf8fec04 | a64ccc159736d02f2a5a30cc84e03a58dac4b532 | refs/heads/master | 2021-04-03T08:55:20.815482 | 2019-05-27T10:01:11 | 2019-05-27T10:01:11 | 124,547,456 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,160 | cpp | leetcode289.cpp | #include<iotream>
#include<vector>
using namespace std;
//解题思路:
// 我们需要通过一个简单的循环分别判断
// 当前位置的周围位置的信息,统计他们活着的出现次数
// 之后使用一个二进制的数去保存这一信息
// 活着的可能为10,11
// 其余元素则是0,1
// 统一右移一位,则就是更新后的信息
class Solution{
public:
void gameOfLife(vector<vector<int> >& board){
int m = board.size();
int n = board[0].size();
if(m==0||n==0)return;
for(int i=0;i<m;i++){
for(int j=0;j<n;j++){
//记录1出现的次数
int temp=0;
// 八个方向
for(int dx=-1;dx<2;dx++){
for(int dy=-1;dy<2;dy++){
if(i-dx>=0&&i-dx<m&&j-dy>=0&&j-dy<n&&!(dx==0&&dy==0)){
temp += (board[i-dx][j-dy] & 1);
}
}
}
if((temp==2||temp==3)&&board[i][j]==1){
board[i][j] |= 2;
}
else if(temp==3&&board[i][j]==0){
board[i][j] |= 2;
}
}
}
for(int i=0;i<m;i++){
for(int j=0;j<n;j++){
board[i][j]>>=1;
}
}
}
};
|
b4568d815da3071e42ddb2090af4d03797526df3 | d6e9f5ab0689d4edd1d9da90985d6bf02dc1b708 | /CodingNinjas/minEditDist.cpp | 077b770f2247ea3ca7140e9d259a67180694bedc | [] | no_license | Dhruvik-Chevli/Code | 30af2133f7f55404bf47a1bf87b372aa93461ba2 | 615a599c1e5e6406f50c316cebe357cc86486a6f | refs/heads/master | 2022-12-21T03:00:29.650021 | 2020-09-24T21:21:23 | 2020-09-24T21:21:23 | 260,184,858 | 6 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 994 | cpp | minEditDist.cpp | #include <iostream>
#include<vector>
#include<algorithm>
#include<utility>
#include<string>
using namespace std;
typedef long long int ll;
#define EPS 1e-9
#define pb push_back
#define FOR(i, a, b) for(ll i = a; i < b; i++)
#define PI 3.1415926535897932384626433832795
#define MOD 1000000007
ll minEditDist(string a,string b)
{
ll n=a.length();
ll m=b.length();
vector<vector<ll> >dp(n+1,vector<ll>(m+1,0));
FOR(i,0,n+1)
{
dp[i][0]=i;
}
FOR(i,0,m+1)
{
dp[0][i]=i;
}
FOR(i,1,n+1)
{
FOR(j,1,m+1)
{
if(a[i-1]==b[j-1])
{
dp[i][j]=dp[i-1][j-1];
}
else
{
dp[i][j]=min(dp[i-1][j],min(dp[i-1][j-1],dp[i][j-1]))+1;
}
}
}
return dp[n][m];
}
int main()
{
std::ios_base::sync_with_stdio(false);
cin.tie(NULL);
string a;
string b;
cin>>a>>b;
cout<<minEditDist(a,b)<<endl;
return 0;
} |
e051231ef32c48c8ea541631c6a4405a86eef961 | 4b81e7a27211dec609b74a2114060f37814cb2f8 | /src/VM/Vars.cpp | 48b0cc452328cda53ac3598be80505fe6b7b3d68 | [
"BSD-3-Clause"
] | permissive | BenjaminNavarro/Feral | c4110b0624be180b385fcbb9ab569328fedd19a0 | 579411c36a1cc66f96fcda1b82e3259e22022ac2 | refs/heads/master | 2021-05-23T18:53:57.394274 | 2020-04-06T07:28:55 | 2020-04-06T16:50:00 | 253,425,708 | 0 | 0 | BSD-3-Clause | 2020-04-06T07:28:30 | 2020-04-06T07:28:29 | null | UTF-8 | C++ | false | false | 4,879 | cpp | Vars.cpp | /*
Copyright (c) 2020, Electrux
All rights reserved.
Using the BSD 3-Clause license for the project,
main LICENSE file resides in project's root directory.
Please read that file and understand the license terms
before using or altering the project.
*/
#include "Vars.hpp"
#include "Memory.hpp"
vars_frame_t::vars_frame_t() {}
vars_frame_t::~vars_frame_t()
{
for( auto & var : m_vars ) var_dref( var.second );
}
var_base_t * vars_frame_t::get( const std::string & name )
{
if( m_vars.find( name ) == m_vars.end() ) return nullptr;
return m_vars[ name ];
}
void vars_frame_t::add( const std::string & name, var_base_t * val, const bool inc_ref )
{
if( m_vars.find( name ) != m_vars.end() ) {
var_dref( m_vars[ name ] );
}
if( inc_ref ) var_iref( val );
m_vars[ name ] = val;
}
void vars_frame_t::rem( const std::string & name, const bool dec_ref )
{
if( m_vars.find( name ) == m_vars.end() ) return;
if( dec_ref ) var_dref( m_vars[ name ] );
m_vars.erase( name );
}
void * vars_frame_t::operator new( size_t sz )
{
return mem::alloc( sz );
}
void vars_frame_t::operator delete( void * ptr, size_t sz )
{
mem::free( ptr, sz );
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
vars_stack_t::vars_stack_t()
: m_top( 0 )
{
m_stack.push_back( new vars_frame_t() );
}
vars_stack_t::~vars_stack_t()
{
for( auto layer = m_stack.rbegin(); layer != m_stack.rend(); ++layer ) {
delete * layer;
}
}
bool vars_stack_t::exists( const std::string & name )
{
return m_stack.back()->exists( name );
}
var_base_t * vars_stack_t::get( const std::string & name )
{
for( auto layer = m_stack.rbegin(); layer != m_stack.rend(); ++layer ) {
if( ( * layer )->exists( name ) ) {
return ( * layer )->get( name );
}
}
return nullptr;
}
void vars_stack_t::inc_top( const size_t & count )
{
for( size_t i = 0; i < count; ++i ) {
m_stack.push_back( new vars_frame_t() );
++m_top;
}
}
void vars_stack_t::dec_top( const size_t & count )
{
if( m_top == 0 ) return;
for( size_t i = 0; i < count && m_top > 0; ++i ) {
delete m_stack.back();
m_stack.pop_back();
--m_top;
}
}
void vars_stack_t::push_loop()
{
m_loops_from.push_back( m_top + 1 );
inc_top( 1 );
}
void vars_stack_t::pop_loop()
{
assert( m_loops_from.size() > 0 );
if( m_top >= m_loops_from.back() ) {
dec_top( m_top - m_loops_from.back() + 1 );
}
m_loops_from.pop_back();
}
void vars_stack_t::loop_continue()
{
assert( m_loops_from.size() > 0 );
if( m_top > m_loops_from.back() ) {
dec_top( m_top - m_loops_from.back() );
}
}
void vars_stack_t::add( const std::string & name, var_base_t * val, const bool inc_ref )
{
m_stack.back()->add( name, val, inc_ref );
}
void vars_stack_t::rem( const std::string & name, const bool dec_ref )
{
for( auto layer = m_stack.rbegin(); layer != m_stack.rend(); ++layer ) {
if( ( * layer )->exists( name ) ) {
( * layer )->rem( name, dec_ref );
return;
}
}
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
vars_t::vars_t() : m_fn_stack( -1 )
{
m_fn_vars[ 0 ] = new vars_stack_t;
}
vars_t::~vars_t()
{
assert( m_fn_stack == 0 || m_fn_stack == -1 );
delete m_fn_vars[ 0 ];
}
bool vars_t::exists( const std::string & name )
{
return m_fn_vars[ m_fn_stack ]->exists( name );
}
var_base_t * vars_t::get( const std::string & name )
{
var_base_t * res = m_fn_vars[ m_fn_stack ]->get( name );
if( res == nullptr && m_fn_stack != 0 ) {
res = m_fn_vars[ 0 ]->get( name );
}
return res;
}
void vars_t::blk_add( const size_t & count )
{
m_fn_vars[ m_fn_stack ]->inc_top( count );
for( auto & s : m_stash ) {
m_fn_vars[ m_fn_stack ]->add( s.first, s.second, true );
}
m_stash.clear();
}
void vars_t::blk_rem( const size_t & count )
{
m_fn_vars[ m_fn_stack ]->dec_top( count );
}
void vars_t::push_fn()
{
++m_fn_stack;
if( m_fn_stack == 0 ) return;
m_fn_vars[ m_fn_stack ] = new vars_stack_t;
}
void vars_t::pop_fn()
{
if( m_fn_stack == 0 ) return;
delete m_fn_vars[ m_fn_stack ];
m_fn_vars.erase( m_fn_stack );
--m_fn_stack;
}
void vars_t::stash( const std::string & name, var_base_t * val )
{
m_stash[ name ] = val;
}
void vars_t::unstash()
{
m_stash.clear();
}
void vars_t::add( const std::string & name, var_base_t * val, const bool inc_ref )
{
m_fn_vars[ m_fn_stack ]->add( name, val, inc_ref );
}
void vars_t::addm( const std::string & name, var_base_t * val, const bool inc_ref )
{
m_fn_vars[ 0 ]->add( name, val, inc_ref );
}
void vars_t::rem( const std::string & name, const bool dec_ref )
{
m_fn_vars[ m_fn_stack ]->rem( name, dec_ref );
}
|
3fc38746f32adc1456a40db3462d694bc60ccaac | 43e7fa31d21e557802e4a5856b12557105794641 | /eff10_mod.cc | b1d2ac419f2335accb1a3384854a14b12111eb05 | [] | no_license | ebagli/G4_ISOL_RELEASE | 96f6cc6c1f5e058ee68830e9cf08dc64819246b8 | 1bcaa9c57c22b71fa7ae0820d271d64a503971e2 | refs/heads/master | 2021-09-22T23:53:37.096309 | 2018-09-18T16:11:40 | 2018-09-18T16:11:40 | 61,789,714 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,319 | cc | eff10_mod.cc | #include "G4MTRunManager.hh"
#include "G4UImanager.hh"
#include "Randomize.hh"
#include "G4UIterminal.hh"
#include "UserActionInitialization.hh"
#include "DetectorConstruction.hh"
#ifdef G4VIS_USE
#include "G4VisExecutive.hh"
#endif
#ifdef G4UI_USE
#include "G4UIExecutive.hh"
#endif
#include "PhysicsList.hh"
#include "G4PhysListFactory.hh"
#include "G4VModularPhysicsList.hh"
#include "G4GenericBiasingPhysics.hh"
#include <iostream>
#include <fstream>
using namespace std;
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
int main (int argc,char** argv) {
if (argc!=1)
{
G4String version = argv[1];
if(strcmp(argv[1],"--version")==0){
std::cout << "1.0" << std::endl;
return 0;
}
}
G4MTRunManager* runManager = new G4MTRunManager;
runManager->SetNumberOfThreads(G4Threading::G4GetNumberOfCores());
G4bool bPrimaries = false;
// Set mandatory initialization classes
if(argc>2){
if(strcmp(argv[2],"--primaries")==0){
G4PhysListFactory factory;
G4VModularPhysicsList* phys = 0;
if (argc>3) {
G4String physName = argv[3];
if(factory.IsReferencePhysList(physName))
phys = factory.GetReferencePhysList(physName);
}
if(!phys) phys = factory.ReferencePhysList();
runManager->SetUserInitialization(phys);
std::cout << "........................" << std::endl;
std::cout << "........................" << std::endl;
std::cout << "........................" << std::endl;
std::cout << ". Generating Primaries ." << std::endl;
std::cout << "........................" << std::endl;
std::cout << "........................" << std::endl;
std::cout << "........................" << std::endl;
bPrimaries = true;
}
}
else{
PhysicsList* physlist = new PhysicsList();
G4GenericBiasingPhysics* biasingPhysics = new G4GenericBiasingPhysics();
biasingPhysics->PhysicsBiasAllCharged();
physlist->RegisterPhysics(biasingPhysics);
runManager->SetUserInitialization(physlist);
}
DetectorConstruction* detector = new DetectorConstruction();
detector->SetPrimaries(bPrimaries);
runManager->SetUserInitialization(detector);
runManager->SetUserInitialization(new UserActionInitialization());
G4UImanager* UI = G4UImanager::GetUIpointer();
if (argc!=1) // batch mode
{
G4String command = "/control/execute ";
G4String fileName = argv[1];
UI->ApplyCommand(command+fileName);
}
else //define visualization and UI terminal for interactive mode
{
#ifdef G4VIS_USE
G4VisManager* visManager = new G4VisExecutive;
visManager->Initialize();
#endif
#ifdef G4UI_USE
G4UIExecutive * ui = new G4UIExecutive(argc,argv);
ui->SessionStart();
delete ui;
#endif
#ifdef G4VIS_USE
delete visManager;
#endif
}
delete runManager;
return 0;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
7ceceb61bb35292f93eb0902eb870d8cf87f0549 | c886eb9e62bff00c2f788e8c4fd7360c8e1c5fdc | /nwnx2_plugins/cpp/handles/hndl_RunScriptSituation.cpp | f4be026cf546ce14f9f40cee1cdb0ab92c84bab4 | [] | no_license | jd28/land_of_misfit_nwn_toys | d3be4d81075b58f504f81d04603fe3aa76730aac | 825168c0b2258830b5a5d5755f23c9510e69bda0 | refs/heads/main | 2023-08-02T17:07:06.331016 | 2021-09-25T03:21:25 | 2021-09-25T18:56:31 | 410,161,503 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 510 | cpp | hndl_RunScriptSituation.cpp | #include "NWNXCpp.h"
extern CNWNXCpp nwcpp;
int Handle_RunScriptSituation(uintptr_t p)
{
CoreRunScriptSituationEvent *s = reinterpret_cast<CoreRunScriptSituationEvent *>(p);
if(!s || !s->marker) {
return 0;
}
if(strcmp(s->marker, "$nwcpp") != 0) {
return 0;
}
else {
nwcpp.Log(4, "This situation isn't for us.\n");
}
if(ScriptManager::RunScriptSituation(s->token, s->objectId)) {
s->suppress = true;
return 1;
}
return 0;
}
|
c2192add440783b8ddf50a3705538d8554c13d66 | fd9662c59f27f84eba090caefafda7cbf55f7408 | /assignments/assignment_2/code/exercise_00/cleaned_t_b_one_timer.cc | bf237af1df9374db04b1781d855b8bf1271042da | [
"MIT"
] | permissive | wilsonjefferson/DSSC_FHPC | 46bdfdc5a8f38131902baad3d8889aa1162c67e0 | 4bbf7b6ae115dfc09d98f677bca035beb436aec6 | refs/heads/master | 2022-12-16T09:43:07.467298 | 2020-09-22T14:27:08 | 2020-09-22T14:27:08 | 297,354,111 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,347 | cc | cleaned_t_b_one_timer.cc | /**
F.H.P.C. Assingment 2
@file cleaned_t_b_one_timer.cc
@brief Fill and sum by means of mpi reduction (timer version)
@author Pietro Morichetti
@date 17/12/2019
@version 1.1
*/
#include <stdlib.h>
#include <stdio.h>
#include <omp.h>
#include <ctime>
#define N 1000000000 // size of the problem
int main(int argc, char **argv){
long int S = 0;
int *array = (int*)malloc(N * sizeof(int));
// ------- clock parameters ---------//
std::clock_t c_start {0};
std::clock_t c_end {0};
double duration {0};
//----------------------------------//
#if defined(_OPENMP)
if(argc > 1){
omp_set_num_threads(atoi(*(argv + 1))); // set the number of threads
}
#endif
// c_start = std::clock();
for(int ii = 1; ii <= N; ++ii){ // thread 0 fills the array
array[ii] = ii;
}
// c_end = std::clock();
c_start = std::clock();
#pragma omp parallel for reduction(+:S) // everyone adding up and reduct on S
for(int ii = 1; ii <= N; ++ii){
S += array[ii];
}
c_end = std::clock();
// --------- clock operation ----------//
duration = (c_end - c_start ) / (double) CLOCKS_PER_SEC;
printf("%6.3g\n", (double)N*2*sizeof(double) / (1024*1024*1024) /duration);
//----------------------------------//
free(array);
return 0;
}
|
38bf1acc3352dda6efeec6dda724dc0e11cb5472 | b5dc7707f81c8ac398c13d037bbea4725bf9ca98 | /Observer/main.cpp | 5c291afa28586a9bacb7ec22e893a0240985736a | [] | no_license | 15831944/Head-First-Pattern-Design | 41ec22ca0358ab1acf21ab4352bd421723675e02 | b13b960e6ee29e48d59cca6eccb5456bf4d9c071 | refs/heads/master | 2022-01-06T02:18:26.405406 | 2019-03-19T02:30:54 | 2019-03-19T02:30:54 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 383 | cpp | main.cpp | #include<iostream>
#include "Subject.h"
#include "Observer.h"
#include "WeatherData.h"
#include "CurrentConditionDisplay.h"
using namespace std;
int main()
{
WeatherData wd;
CurrentConditionDisplay ccd = CurrentConditionDisplay(&wd);
TempOnlyDisplay tod = TempOnlyDisplay(&wd);
wd.setMeasurement(3, 2, 1);
wd.removeObserver(&tod);
wd.setMeasurement(4, 5, 6);
return 0;
} |
bd32e5c0d51f41701d9b92bd60df2da83d5e33a6 | d9e144cfd6ad5089b7d89120cb48e7d17f89b658 | /src/detail/tuple.hpp | 78a68a3125e1c5c88867bc8e51b97a76c463d690 | [] | no_license | scalexm/monte_carlo | 37311526e1dd2e7afb6acc0bddb2b781af7eb2f7 | c4d05de144d76db57ff4c182c5faa46d5578f7e7 | refs/heads/master | 2020-03-06T17:27:07.180643 | 2018-04-28T17:59:17 | 2018-04-28T17:59:17 | 126,990,086 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,263 | hpp | tuple.hpp | #ifndef DETAIL_TUPLE_HPP
#define DETAIL_TUPLE_HPP
#include <tuple>
// Opérations génériques sur les tuple (absentes de la bibliothèque standard): addition
// et soustraction terme à terme, multiplication et division par un scalaire. Beaucoup de
// template meta-programming laborieux, pas forcément très intéressant à regarder.
//
// On s'en sert pour `src/detail/averaging.hpp/averaging::next` (en effet c'est beaucoup
// pour pas grand chose, mais à peu près indispensable si on veut garder la généricité de
// cette méthode).
namespace detail {
template<class Tuple, size_t N>
struct TupleAdd {
static void add(Tuple & l, const Tuple & r) {
std::get<N - 1>(l) += std::get<N - 1>(r);
TupleAdd<Tuple, N - 1>::add(l, r);
}
};
template<class Tuple>
struct TupleAdd<Tuple, 1> {
static void add(Tuple & l, const Tuple & r) {
std::get<0>(l) += std::get<0>(r);
}
};
// Addition terme à terme.
template<class... T>
auto operator +(
const std::tuple<T...> & l,
const std::tuple<T...> & r
) -> std::tuple<T...>
{
auto result = l;
TupleAdd<std::tuple<T...>, sizeof...(T)>::add(result, r);
return result;
}
template<class Tuple, size_t N>
struct TupleSub {
static void sub(Tuple & l, const Tuple & r) {
std::get<N - 1>(l) -= std::get<N - 1>(r);
TupleSub<Tuple, N - 1>::sub(l, r);
}
};
template<class Tuple>
struct TupleSub<Tuple, 1> {
static void sub(Tuple & l, const Tuple & r) {
std::get<0>(l) -= std::get<0>(r);
}
};
// Soustraction terme à terme.
template<class... T>
auto operator -(
const std::tuple<T...> & l,
const std::tuple<T...> & r
) -> std::tuple<T...>
{
auto result = l;
TupleSub<std::tuple<T...>, sizeof...(T)>::sub(result, r);
return result;
}
template<class Tuple, class Arg, size_t N>
struct TupleMul {
static void mul(Tuple & l, const Arg & r) {
std::get<N - 1>(l) *= r;
TupleMul<Tuple, Arg, N - 1>::mul(l, r);
}
};
template<class Tuple, class Arg>
struct TupleMul<Tuple, Arg, 1> {
static void mul(Tuple & l, const Arg & r) {
std::get<0>(l) *= r;
}
};
// Multiplication à droite par un scalaire.
template<class Arg, class... T>
auto operator *(
const std::tuple<T...> & l,
const Arg & r
) -> std::tuple<T...>
{
auto result = l;
TupleMul<std::tuple<T...>, Arg, sizeof...(T)>::mul(result, r);
return result;
}
// Mutiplication à gauche par un scalaire.
template<class Arg, class... T>
auto operator *(
const Arg & l,
const std::tuple<T...> & r
) -> std::tuple<T...>
{
return r * l;
}
template<class Tuple, class Arg, size_t N>
struct TupleDiv {
static void div(Tuple & l, const Arg & r) {
std::get<N - 1>(l) /= r;
TupleDiv<Tuple, Arg, N - 1>::div(l, r);
}
};
template<class Tuple, class Arg>
struct TupleDiv<Tuple, Arg, 1> {
static void div(Tuple & l, const Arg & r) {
std::get<0>(l) /= r;
}
};
// Division (uniquement à droite) par un scalaire.
template<class Arg, class... T>
auto operator /(
const std::tuple<T...> & l,
const Arg & r
) -> std::tuple<T...>
{
auto result = l;
TupleDiv<std::tuple<T...>, Arg, sizeof...(T)>::div(result, r);
return result;
}
}
#endif
|
e300b56897812f9ff1b7363594491c7161e9e7bb | 5195b2d10b685c0df2e90972d8f9ad859c891da7 | /__engine_1.1/__graphic_engine_/Camera/Camera.hpp | d2b64c566d55277ab2c7ab17e206eec6b624487e | [] | no_license | olegoks/GameEngine | b971047ec36c95b3c17d6f63ea07ed932c741305 | 08de836e0128791d49526ba914434e4f8ad1cc4f | refs/heads/master | 2023-02-01T06:04:52.263061 | 2020-12-11T21:18:02 | 2020-12-11T21:18:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,022 | hpp | Camera.hpp | #pragma once
#ifndef _CAMERA_HPP_
#define _CAMERA_HPP_
#include "../../engine_types.hpp"
#include <cmath>
struct SizeOfProjectionPlane {
SizeOfProjectionPlane() noexcept :length(1920), width(1080) {}
SizeOfProjectionPlane(unsigned int length_, unsigned int width_) noexcept : length(length_), width(width_) {};
unsigned int length;
unsigned int width;
};
class Camera {
private:
Vector3D vector_x_;
Vector3D vector_y_;
Vector3D vector_z_;
Vertex3D observer_pos_;
float proj_plane_dist_;
size_t width_;
size_t height_;
public:
explicit Camera()noexcept(true);
void SetVectorZ(float x, float y, float z)noexcept(true);
void ChangeDistanceToProgPlane(float offset_distance)noexcept(true);
void Translate(const Vertex3D& delta_vertex)noexcept(true);
void Rotate(const float alpha_deegree, const Vector3D& around_vector, const Vertex3D& around_point)noexcept(true);
inline const Vertex3D& GetPosition()const noexcept(true) { return observer_pos_; }
inline float GetDistanceToProjPlane() const noexcept(true) { return proj_plane_dist_; };
inline Vector3D GetDirection()const noexcept(true) { return vector_z_; }
inline Vector3D GetVectorX()const noexcept(true) { return vector_x_; }
inline Vector3D GetVectorY()const noexcept(true) { return vector_y_; }
inline void Position(const float x, const float y, const float z)noexcept(true) {
observer_pos_.x = x;
observer_pos_.y = y;
observer_pos_.z = z;
}
inline void Position(const Vertex3D& new_pos)noexcept(true) {
observer_pos_ = new_pos;
}
inline const Vertex3D& Position()const noexcept(true) { return observer_pos_; };
inline void SetDirection(const float x, const float y, const float z)noexcept(true) {
vector_z_.x = x;
vector_z_.y = y;
vector_z_.z = z;
}
inline void SetPlaneSize(const unsigned int width, const unsigned int height)noexcept(true) {
width_ = width;
height_ = height;
}
inline void SetDistanceToPlane(const float distance)noexcept(true) { proj_plane_dist_ = distance; }
};
#endif |
a51538bdcd12573b44ebf6a65275dd18b2ce6aca | 316372126e1a8b63cc61c2e3580cd95c345a284a | /Assignment 6.cpp | d8489efbd84c65f95238d69c1c2833195e4ef751 | [] | no_license | prathamesh1301/Data-Structures-2-Lab-Codes-TRI-6 | 99b809c243570aea24aabbb74ecd52bd1a394711 | bdb89a3d6395a3a5ac7e3fb19465820c4ebbe0b6 | refs/heads/main | 2023-05-18T18:41:58.102673 | 2021-06-09T17:37:11 | 2021-06-09T17:37:11 | 361,445,420 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,163 | cpp | Assignment 6.cpp | #include<bits/stdc++.h>
#include<iostream>
using namespace std;
class graph
{
int infty=999;
int n;
int cost[30][30];
public:
graph()
{
int i,j;
cout<<"Enter the number of vertices:"<<endl;
cin>>n;
for(int i=0;i<n;i++){
for(int j=0;j<n;j++){
cost[i][j]=infty;
}
}
}
void create();
void prims();
void print();
};
void graph::create()
{
int i,j;
char ch;
for(i=0;i<n;i++){
for(j=i+1;j<n;j++){
cout<<"Is there an Edge present from "<<i<<"<----->"<<j<<"(y/n)?"<<endl;
cin>>ch;
if(ch=='y'||ch=='Y'){
cout<<"Enter the cost for "<<i<<"<----->"<<j<<" Edge:"<<endl;
cin>>cost[i][j];
cost[j][i]=cost[i][j];
}
}
}
}
void graph::prims()
{
int i,j,k,stv;
int nearest[30],t[30][30];
int mincost=0;
int r=0;
cout<<"Enter the starting vertex:"<<endl;
cin>>stv;
if(stv<0||stv>=n)
{
cout<<"Enter between 0 to "<<n<<endl;
return;
}
else{
nearest[stv]=-1;
}
for(i=0;i<n;i++){
if(i != stv){
nearest[i]=stv;
}
}
// r=1;
for(int i=0;i<n-1;i++)
{
int min=999;
for(int k=0;k<n;k++)
{
if(nearest[k]!=-1 && cost[k][nearest[k]]<min)
{
j=k;
min=cost[k][nearest[k]];
}
}
t[r][1]=j;
t[r][2]=nearest[j];
r=r+1;
mincost=mincost+cost[j][nearest[j]];
nearest[j]=-1;
for(k=0;k<n;k++)
{
if(nearest[k]!=-1 && cost[k][nearest[k]]>cost[k][j])
nearest[k]=j;
}
}
cout<<"Minimum cost by Prims Algorithm= "<<mincost<<endl;}
void graph::print()
{
int i,j;
for(i=0;i<n;i++)
{
for(j=0;j<n;j++){
cout<<"\t\t"<<cost[i][j];
}
cout<<"\n";
}
}
int main()
{
graph g;
g.create();
g.print();
g.prims();
return 0;
}
|
3f73bcbc0318641732ad1d545242120dd04a94c3 | bc38f7e81f7e59174b799b8d37b2db38c055c3f2 | /main.cpp | bf58c7916c7ff16fd3dda0670a90476b1ae47abb | [] | no_license | maxmaxjian/countBits_revisit | a1371bd595ece0dff9840fa039650629d19f113c | 8c0de4e7d1177a5a6fe35b82bf9eb85a3459eb85 | refs/heads/master | 2021-01-12T04:29:38.321609 | 2016-12-29T15:56:26 | 2016-12-29T15:56:26 | 77,623,249 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 804 | cpp | main.cpp | #include <iostream>
#include <vector>
#include <algorithm>
#include <iterator>
class solution {
public:
std::vector<int> countBits(int num) {
std::vector<int> bits{0,1};
while (bits.size() <= num)
bits = expand(bits);
return std::vector<int>(bits.begin(), bits.begin()+num+1);
}
private:
std::vector<int> expand(const std::vector<int> & vec) {
std::vector<int> result;
result = vec;
std::transform(vec.begin(), vec.end(), std::inserter(result,result.end()), [](int i){return i+1;});
return result;
}
};
int main() {
int num = 55;
solution soln;
auto bitVec = soln.countBits(num);
std::copy(bitVec.begin(), bitVec.end(), std::ostream_iterator<int>(std::cout, " "));
std::cout << std::endl;
}
|
1b5c38f462ba84c18453a88ed40fd501f9d3ea6c | d3c0d1fcd582f18d7e5ddbba06f089d2e67138b2 | /VizCuPy/src/timeline_schedule.h | a29e9b16fa796391f2c646f520dd4c350259b9c7 | [
"MIT"
] | permissive | ftxj/ftxj | 7070a82228712d88431d8ac76cf042f857e83bc8 | a8a1f976dae47989165af0cf38287360a925f885 | refs/heads/master | 2023-04-29T15:36:51.059946 | 2023-04-24T09:38:31 | 2023-04-24T09:38:31 | 247,520,445 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 692 | h | timeline_schedule.h |
#pragma once
#include <Python.h>
#include <vector>
#include "queue.h"
namespace ftxj {
namespace profiler {
enum class ScheduleType : uint8_t { Split = 0, Align };
struct Event;
class TimeLineSchedule {
public:
TimeLineSchedule(RecordQueue* q) : queue(q) {}
void split();
void align();
void update_queue_data(struct timespec tp);
PyObject* toPyObj();
private:
std::vector<std::vector<RecordQueue::Pos*>> getAlignForEachPid();
RecordQueue* queue;
std::vector<Event*> split_events_;
std::vector<RecordQueue::Pos*> split_events_idx_;
std::vector<RecordQueue::Pos*> align_events_idx_;
std::vector<Event*> align_events_;
};
} // namespace profiler
} // namespace ftxj |
92f7be6317202d472381aaa132df480844c6a461 | 404e13f4bd55ba749b568ac9d69d81159c6ef637 | /Engine/src/Core/Logic/SceneHandler.h | 5dd22162a7c6d53e3676eed86e20dc3dc986895c | [] | no_license | norda97/ANKEngine | df1a75845af12cfcb6a6c3130ad5c55dfd2a1596 | 9a1903fc2783c64a387184a28ed981bd0b25d6ce | refs/heads/master | 2023-04-07T10:13:42.860910 | 2021-04-14T18:09:52 | 2021-04-14T18:09:52 | 245,679,355 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 244 | h | SceneHandler.h | #pragma once
class IScene;
class SceneHandler
{
public:
SceneHandler();
~SceneHandler();
bool SetCurrentScene(IScene* pscene);
void Tick(double dt);
void Shutdown();
private:
void ShutdownCurrScene();
IScene* m_pCurrentScene;
};
|
5bce0c654e1e409029e60fa8d87a22d85e4cc00c | f36040d73ef68b6e362f7334db6f112d498a4d95 | /src/renderer/scene.cpp | 63069e1ad96de3aa67de8912f4a40ead8f49d57e | [] | no_license | sbroadhead/lray | 66d7a45fd82e3913a019802e953137ffb912b6c0 | 825e2958aae3c2561422c8e928ac03ff0c490832 | refs/heads/master | 2021-01-10T04:02:40.685981 | 2015-10-17T16:35:20 | 2015-10-17T16:35:20 | 44,445,288 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,081 | cpp | scene.cpp | #include "common.h"
#include "math/math.h"
#include "renderer/intersection.h"
#include "renderer/scene.h"
namespace raytrace {;
void Scene::AddEntity(boost::shared_ptr<Entity> const& entity) {
entities.push_back(entity);
}
void Scene::AddLight(boost::shared_ptr<Light> const& light) {
lights.push_back(light);
}
bool Scene::Intersect(Ray const& ray, Intersection *out) const {
Intersection nearest;
nearest.distance = HUGE_VAL;
for (vector<boost::shared_ptr<Entity> >::const_iterator it = entities.begin();
it != entities.end(); ++it) {
Entity const& entity = **it;
Intersection& inter = nearest;
Ray new_ray = ray;
new_ray.max_dist = nearest.distance;
bool did_hit = entity.Intersect(new_ray, out ? &nearest : NULL);
if (did_hit) {
if (!out) {
return true;
}
if (out && inter.distance < nearest.distance) {
nearest = inter;
}
}
}
if (nearest.distance == HUGE_VAL) {
return false;
}
if (out) *out = nearest;
return true;
};
} |
a85df536ec9462fa675e5775388693f584e1dfea | c7ac83779cdf0f9c02c2bc4e3ba2236138001cb2 | /code/test.cpp | c1c25533f382f4ca3ba683e1c602f6b31dabe9e5 | [] | no_license | WavyBoard/WavyBoard | 7969e5245b60ff89e41aa613282c03ce67104810 | b4ed3b37c1ade140f98cd60695124401b13ab413 | refs/heads/master | 2021-09-02T23:52:16.115797 | 2018-01-04T05:01:19 | 2018-01-04T05:01:19 | 111,288,006 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,614 | cpp | test.cpp | /*----------------------------------------------------------------------------
MAIN.CPP
=^.,.^= DENISE THUY VY NGUYEN
11/17/2017
CS435 PROJECT
PROGRAMMING USING MBED
----------------------------------------
Buttons will change LED patterns.
Potentiometers will change the speed of the pattern.
Potentiometers will cahnge the brightness of the LEDS.
*----------------------------------------------------------------------------*/
#include "mbed.h"
#include "pindef.h"
#include "DigitalIn.h"
#include "DigitalOut.h"
//Button
DigitalIn B1(PA_0); //AnalogIn
//Light
//CN-10 SIDE TEST
DigitalOut L1(PC_4); //34 PC_4 Good
DigitalOut L2(PB_13); //30 PB_13 Good
//DigitalOut L1(PB_14);
//DigitalOut L1(PB_15);
//DigitalOut L1(PB_1);
//DigitalOut L1(PB_2);
//DigitalOut L1(PB_12);
//DigitalOut L1(PA_11);
//DigitalOut L1(PA_12);
//DigitalOut L1(PC_5);
//DigitalOut L1(PC_6);
//DigitalOut L1(PC_8);
//CN-9
//DigitalOut L1(PA_3);
//DigitalOut L1(PA_2);
//DigitalOut L1(PA_10);
//DigitalOut L1(PB_3);
//DigitalOut L1(PB_5);
//DigitalOut L1(PB_4);
//DigitalOut L1(PB_10);
//DigitalOut L1(PA_)10);
//DigitalOut L1(PA_8);
//DigitalOut L1(PA_9);
//DigitalOut L1(PC_7);
//DigitalOut L1(PB_6);
//DigitalOut L1(PA_7);
//DigitalOut L1(PA_6);
//DigitalOut L1(PA_)5);
//DigitalOut L1(PB_9);
//DigitalOut L1(PB_8);
//DigitalOut L1(PC_9);
//Simple software debouncing
void delay(float time){
volatile int i;
for(i=0; i<1000000*time; i++);
}
/*----------------------------------------------------------------------------
MAIN function
*----------------------------------------------------------------------------*/
int main(){
L1=0; //sets all LED off
L2=0;
while(1){
if(!(B1 & 0x1)){
wait(1); //Delay 1 sec (change or increase)
L1=1;
L2=1;
wait(1);
L1 =0;
L1 =0;
}
}/*----------------------------------------------------------------------------
MAIN.CPP
=^.,.^= DENISE THUY VY NGUYEN
11/17/2017
CS435 PROJECT
PROGRAMMING USING MBED
----------------------------------------
Buttons will change LED patterns.
Potentiometers will change the speed of the pattern.
Potentiometers will cahnge the brightness of the LEDS.
*----------------------------------------------------------------------------*/
#include "mbed.h"
#include "pindef.h"
#include "DigitalIn.h"
#include "DigitalOut.h"
//Button
DigitalIn B1(PA_0); //AnalogIn
//Light
//CN-10 SIDE TEST
DigitalOut L1(PC_4); //34 PC_4 Good
DigitalOut L2(PB_13); //30 PB_13 Good
//DigitalOut L1(PB_14);
//DigitalOut L1(PB_15);
//DigitalOut L1(PB_1);
//DigitalOut L1(PB_2);
//DigitalOut L1(PB_12);
//DigitalOut L1(PA_11);
//DigitalOut L1(PA_12);
//DigitalOut L1(PC_5);
//DigitalOut L1(PC_6);
//DigitalOut L1(PC_8);
//CN-9
//DigitalOut L1(PA_3);
//DigitalOut L1(PA_2);
//DigitalOut L1(PA_10);
//DigitalOut L1(PB_3);
//DigitalOut L1(PB_5);
//DigitalOut L1(PB_4);
//DigitalOut L1(PB_10);
//DigitalOut L1(PA_)10);
//DigitalOut L1(PA_8);
//DigitalOut L1(PA_9);
//DigitalOut L1(PC_7);
//DigitalOut L1(PB_6);
//DigitalOut L1(PA_7);
//DigitalOut L1(PA_6);
//DigitalOut L1(PA_)5);
//DigitalOut L1(PB_9);
//DigitalOut L1(PB_8);
//DigitalOut L1(PC_9);
//Simple software debouncing
void delay(float time){
volatile int i;
for(i=0; i<1000000*time; i++);
}
/*----------------------------------------------------------------------------
MAIN function
*----------------------------------------------------------------------------*/
int main(){
L1=0; //sets all LED off
L2=0;
while(1){
if(!(B1 & 0x1)){
wait(1); //Delay 1 sec (change or increase)
L1=1;
L2=1;
wait(1);
L1 =0;
L1 =0;
}
}
} |
f88d52fa552ba01029304911f842144543db0211 | 9939e0e5fafc9c8c6d0121c3bcc7113b8644b166 | /BILL.CPP | 0142b24d6d9ca4eea90393a3d2e952b98393eba2 | [] | no_license | fullmeteor172/School-Stuff | 36a43f4b273f8c5b7a2d4f32517f6654b22fafaf | 267182ef3b9c7abdc08fb1371b5bb9a0ca783162 | refs/heads/master | 2020-03-29T13:59:26.854279 | 2019-03-03T15:01:31 | 2019-03-03T15:01:31 | 149,993,322 | 3 | 1 | null | 2019-02-17T10:41:08 | 2018-09-23T14:42:46 | C++ | UTF-8 | C++ | false | false | 651 | cpp | BILL.CPP | /* Phone Bill:
First 100:Rs.0.5
Second 100:Rs.0.45
Third 100:Rs.0.35
After 300 calls service is free
Base Fare: Rs.100 */
#include<iostream.h>
#include<conio.h>
void main(){
float n,bill=0;
clrscr();
cout<<"Calculate your phone bill:";
cout<<endl<<endl<<"Enter the number of calls made: ";
cin>>n;
//calculating bill amount:
if(n>=0&&n<100){
bill=100+n*0.5;
}
if(n>=100&&n<200){
bill=150+(n-100)*0.45;
}
if(n>=200&&n<300){
bill=195+(n-200)*0.45;
}
if(n>=300){
bill=230+(n-300)*0.45;
}
cout<<endl<<"The Phone bill is Rs. "<<bill;
cout<<endl<<endl<<"Press any button to exit. ";
getch();
}
|
4357f4e2e3d903369db2988ddbb6949aebaaa06d | 916395161c7e5f2eacc294222d80e1bd19cae5e3 | /LifeEngine/src/renderer/RenderBuffer.h | 3e5513e904b81dc5cbc477364f8d500e9377e36e | [] | no_license | KyroVibe/LifeEngine | 76a81b89075503c8aac2843f56e1164923dc83a8 | 3ea2f984d4d4b2e410a4e45b5d1ef3f1a2674a7b | refs/heads/master | 2022-12-18T01:36:46.890844 | 2020-09-10T08:04:14 | 2020-09-10T08:04:14 | 294,344,127 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,469 | h | RenderBuffer.h | #pragma once
#include <vector>
#include <GL/glew.h>
#include "../util/Debug.h"
#include "RenderBuffer.h"
#include "VertexBuffer.h"
#include "IndexBuffer.h"
namespace LifeEngine {
/*
* Gotta rename this to a 2D Render Buffer. This is a render buffer used for 2d graphics.
*/
class RenderBuffer {
public:
RenderBuffer();
RenderBuffer(unsigned int vertexCount, float* vertices, unsigned int indiceCount, unsigned int* indices);
~RenderBuffer();
void Draw();
inline VertexBuffer& GetVertexBuffer() { return *vertexBuffer; }
inline IndexBuffer& GetIndexBuffer() { return *indexBuffer; }
inline void BindVertexArray() { GLCall(glBindVertexArray(vertexArray)); }
inline void BindVertexBuffer() { vertexBuffer->Bind(); }
inline void BindIndexBuffer() { indexBuffer->Bind(); }
void RefreshVertexBuffer();
void RefreshIndexBuffer();
unsigned int VertexCount, IndiceCount;
float* Vertices = nullptr;
unsigned int* Indices;
private:
void Init();
void CreateVertexArray();
unsigned int vertexArray;
VertexBuffer* vertexBuffer = nullptr;
IndexBuffer* indexBuffer = nullptr;
};
static void CreateSquare(float width, float height, RenderBuffer* output) {
float* ver = new float[8] {
width / 2, height / 2,
width / 2, -height / 2,
-width / 2, -height / 2,
-width / 2, height / 2
};
unsigned int* ind = new unsigned int[6]{
0, 1, 2,
2, 3, 0
};
(*output) = *(new RenderBuffer(8, ver, 6, ind));
}
}
|
2d8c0531aa3f6fd37dd7b3a598e5305b762a8edb | 4a6c947a450f059ae1e50b6e09310bf9e7047ec3 | /IWBTJP/IWBTJP/Core/Export_Lua_Game.cpp | e047dcf654d294d26634622e8a8b57feb1e443c5 | [] | no_license | CBE7F1F65/b1d87503db43c4dad04a0f6bab369839 | 72628691935936b499635caff37df50aa79e35b5 | 75042ab2219c28d1b94562e5643582fedfe705f4 | refs/heads/master | 2021-01-18T16:29:51.576341 | 2013-03-13T06:36:16 | 2013-03-13T06:36:16 | 32,192,722 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,317 | cpp | Export_Lua_Game.cpp | #include "../Header/Export_Lua_Game.h"
#include "../Header/BMath.h"
#include "../Header/BResource.h"
bool Export_Lua_Game::_LuaRegistConst(LuaObject * obj)
{
return true;
}
bool Export_Lua_Game::_LuaRegistFunction(LuaObject * obj)
{
LuaObject _gameobj;
_gameobj = obj->CreateTable("game");
_gameobj.Register("Random_Int", LuaFn_Game_Random_Int);
_gameobj.Register("Random_Float", LuaFn_Game_Random_Float);
_gameobj.Register("FreeTexture", LuaFn_Game_LoadTexture);
_gameobj.Register("FreeTexture", LuaFn_Game_FreeTexture);
return true;
}
int Export_Lua_Game::LuaFn_Game_Random_Int(LuaState * ls)
{
LuaStack args(ls);
int argscount = args.Count();
int _imin = 0;
int _imax = RAND_MAX;
int _seed;
int * _pseed = NULL;
if (argscount > 0)
{
_imin = args[1].GetInteger();
if (argscount > 1)
{
_imax = args[2].GetInteger();
if (argscount > 2)
{
_seed = args[3].GetInteger();
_pseed = &_seed;
}
}
}
int _iret = randt(_imin, _imax, _pseed);
ls->PushInteger(_iret);
if (_pseed)
{
ls->PushInteger(_seed);
return 2;
}
return 1;
}
int Export_Lua_Game::LuaFn_Game_Random_Float(LuaState * ls)
{
LuaStack args(ls);
int argscount = args.Count();
float _fmin = 0.0f;
float _fmax = 1.0f;
int _seed;
int * _pseed = NULL;
if (argscount > 0)
{
_fmin = args[1].GetFloat();
if (argscount > 1)
{
_fmax = args[2].GetFloat();
if (argscount > 2)
{
_seed = args[3].GetInteger();
_pseed = &_seed;
}
}
}
float _fret = randtf(_fmin, _fmax);
ls->PushNumber(_fret);
if (_pseed)
{
ls->PushInteger(_seed);
return 2;
}
return 1;
}
int Export_Lua_Game::LuaFn_Game_LoadTexture(LuaState * ls)
{
LuaStack args(ls);
int _texindex = -1;
if (args.Count() > 0)
{
_texindex = args[1].GetInteger();
}
bool bret = BResource::PIns()->LoadTexture(_texindex);
ls->PushBoolean(bret);
return 1;
}
int Export_Lua_Game::LuaFn_Game_FreeTexture(LuaState * ls)
{
LuaStack args(ls);
#ifndef __WIN32
int _texindex = -1;
if (args.Count() > 0)
{
_texindex = args[1].GetInteger();
}
bool bret = BResource::PIns()->FreeTexture(_texindex);
ls->PushBoolean(bret);
#else
ls->PushBoolean(true);
#endif // __WIN32
return 1;
}
|
37c809f85af19361c16f0f5d463b65d7bfa8f7c5 | da2d9cdb9affba818c1fba47a2ce7230e2338e81 | /tempUser.cpp | c2e4b2a9f6c93e927d454c771ec14ca8aa0efcbc | [] | no_license | abdool86/QuickTrack | 20dac09776101706c1d41daeb25c83ba4aeae11b | 669cf1549007a44e3c968d6d95440b084384e00a | refs/heads/main | 2023-09-05T21:41:18.873551 | 2021-11-10T13:02:25 | 2021-11-10T13:02:25 | 426,619,180 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 227 | cpp | tempUser.cpp | #include "tempUser.h"
using namespace std;
tempUser::tempUser(){
this->timeIn="";
this->timeOut="";
this->userID="";
this->firstName="";
this->lastName="";
this->email="";
this->phoneNumber="";
this->businessID="";
}
|
5d138afd13d6806063ad4bf2ea90332be93378f6 | 0efb71923c02367a1194a9b47779e8def49a7b9f | /Oblig1/les/0.35/phi | 2a385a72136cd12411fe2a8b9a24f6cad4c5c027 | [] | no_license | andergsv/blandet | bbff505e8663c7547b5412700f51e3f42f088d78 | f648b164ea066c918e297001a8049dd5e6f786f9 | refs/heads/master | 2021-01-17T13:23:44.372215 | 2016-06-14T21:32:00 | 2016-06-14T21:32:00 | 41,495,450 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 214,219 | phi | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.4.0 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class surfaceScalarField;
location "0.35";
object phi;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 3 -1 0 0 0 0];
internalField nonuniform List<scalar>
17320
(
1.76343e-05
7.36569e-06
1.16148e-05
6.01948e-06
8.68685e-06
2.92798e-06
7.35217e-06
1.33468e-06
6.71711e-06
6.3506e-07
6.34676e-06
3.70341e-07
6.07723e-06
2.69534e-07
5.86061e-06
2.16623e-07
5.72074e-06
1.39864e-07
5.57309e-06
1.47652e-07
5.47522e-06
9.78728e-08
5.38177e-06
9.34525e-08
5.30665e-06
7.51164e-08
5.19724e-06
1.09408e-07
5.12996e-06
6.7279e-08
5.01171e-06
1.18248e-07
4.91068e-06
1.01038e-07
4.7877e-06
1.2298e-07
4.56829e-06
2.1941e-07
-1.73836e-07
4.74212e-06
2.5451e-05
6.91468e-06
2.32474e-05
8.22311e-06
2.09936e-05
5.1818e-06
1.93123e-05
3.01593e-06
1.80773e-05
1.87005e-06
1.71156e-05
1.33204e-06
1.63628e-05
1.02239e-06
1.5768e-05
8.11353e-07
1.5321e-05
5.86891e-07
1.49228e-05
5.45817e-07
1.46315e-05
3.8923e-07
1.4362e-05
3.62921e-07
1.41463e-05
2.90808e-07
1.3901e-05
3.54765e-07
1.37225e-05
2.45718e-07
1.34671e-05
3.73646e-07
1.3258e-05
3.102e-07
1.29599e-05
4.21e-07
1.27241e-05
4.55289e-07
4.32433e-08
1.2507e-05
2.66028e-05
5.31187e-06
2.71591e-05
7.66686e-06
2.67875e-05
5.55336e-06
2.62422e-05
3.56124e-06
2.5607e-05
2.5053e-06
2.48765e-05
2.06251e-06
2.41542e-05
1.74469e-06
2.34998e-05
1.46575e-06
2.29462e-05
1.14048e-06
2.24337e-05
1.05828e-06
2.20369e-05
7.86087e-07
2.16613e-05
7.38501e-07
2.13571e-05
5.95046e-07
2.10342e-05
6.77635e-07
2.07902e-05
4.89712e-07
2.04625e-05
7.01379e-07
2.02117e-05
5.6098e-07
1.98025e-05
8.30183e-07
1.95808e-05
6.76987e-07
6.35265e-07
1.89888e-05
2.63025e-05
4.00938e-06
2.75431e-05
6.42624e-06
2.80958e-05
5.00065e-06
2.84459e-05
3.21119e-06
2.86458e-05
2.30536e-06
2.86266e-05
2.08168e-06
2.84704e-05
1.90095e-06
2.82255e-05
1.71058e-06
2.79825e-05
1.38355e-06
2.76805e-05
1.3602e-06
2.74388e-05
1.02778e-06
2.71543e-05
1.02308e-06
2.69195e-05
8.29835e-07
2.66388e-05
9.58355e-07
2.64317e-05
6.96793e-07
2.61218e-05
1.01126e-06
2.59205e-05
7.62315e-07
2.54691e-05
1.2815e-06
2.50909e-05
1.05527e-06
1.57366e-06
2.41525e-05
2.60223e-05
2.98706e-06
2.72245e-05
5.22407e-06
2.80713e-05
4.15388e-06
2.85234e-05
2.75905e-06
2.89801e-05
1.84866e-06
2.93225e-05
1.73932e-06
2.95802e-05
1.64316e-06
2.97166e-05
1.57421e-06
2.98472e-05
1.25292e-06
2.9907e-05
1.30043e-06
2.99739e-05
9.60912e-07
2.99519e-05
1.04504e-06
2.99639e-05
8.1786e-07
2.99095e-05
1.01275e-06
2.9866e-05
7.40262e-07
2.97641e-05
1.11319e-06
2.96915e-05
8.34977e-07
2.95966e-05
1.37632e-06
2.95974e-05
1.0545e-06
1.23474e-06
2.99363e-05
2.58526e-05
2.13442e-06
2.69044e-05
4.17228e-06
2.78134e-05
3.24494e-06
2.82861e-05
2.28631e-06
2.8718e-05
1.41674e-06
2.90831e-05
1.3743e-06
2.94634e-05
1.26286e-06
2.9724e-05
1.31356e-06
2.99378e-05
1.03911e-06
3.01743e-05
1.06397e-06
3.0414e-05
7.21165e-07
3.05382e-05
9.20829e-07
3.07041e-05
6.51981e-07
3.08823e-05
8.34564e-07
3.09489e-05
6.7363e-07
3.10547e-05
1.00743e-06
3.11642e-05
7.25452e-07
3.14071e-05
1.13343e-06
3.1536e-05
9.25662e-07
8.52402e-07
3.19183e-05
2.57504e-05
1.38397e-06
2.6727e-05
3.19573e-06
2.75071e-05
2.46487e-06
2.80952e-05
1.69813e-06
2.85225e-05
9.89438e-07
2.88252e-05
1.07162e-06
2.91903e-05
8.97801e-07
2.95042e-05
9.99672e-07
2.97133e-05
8.30024e-07
3.00011e-05
7.76169e-07
3.02324e-05
4.89822e-07
3.0385e-05
7.68222e-07
3.05885e-05
4.48526e-07
3.08643e-05
5.58698e-07
3.09559e-05
5.82012e-07
3.11281e-05
8.35297e-07
3.13668e-05
4.86739e-07
3.16563e-05
8.43947e-07
3.18134e-05
7.68525e-07
4.83099e-07
3.21827e-05
2.55176e-05
8.66348e-07
2.65469e-05
2.16646e-06
2.74444e-05
1.56739e-06
2.80227e-05
1.11981e-06
2.83439e-05
6.68285e-07
2.87013e-05
7.14168e-07
2.89893e-05
6.09855e-07
2.93051e-05
6.8386e-07
2.95618e-05
5.73331e-07
2.98593e-05
4.78592e-07
3.00547e-05
2.94505e-07
3.02508e-05
5.72048e-07
3.04407e-05
2.58609e-07
3.068e-05
3.19406e-07
3.07573e-05
5.04721e-07
3.10033e-05
5.89318e-07
3.1287e-05
2.0307e-07
3.15527e-05
5.78188e-07
3.16542e-05
6.67024e-07
1.93232e-07
3.19441e-05
2.54439e-05
4.22441e-07
2.6484e-05
1.12639e-06
2.73667e-05
6.84692e-07
2.79187e-05
5.67741e-07
2.81708e-05
4.16218e-07
2.86452e-05
2.39744e-07
2.89407e-05
3.14413e-07
2.91173e-05
5.07209e-07
2.94761e-05
2.14511e-07
2.97978e-05
1.5697e-07
2.99029e-05
1.89322e-07
3.01835e-05
2.91525e-07
3.03539e-05
8.8141e-08
3.04864e-05
1.86954e-07
3.06605e-05
3.30582e-07
3.09594e-05
2.90401e-07
3.11264e-05
3.60735e-08
3.14141e-05
2.90537e-07
3.16031e-05
4.78001e-07
-1.82137e-11
3.17964e-05
2.53848e-05
3.76493e-08
2.65331e-05
-2.18707e-08
2.73385e-05
-1.20743e-07
2.78008e-05
1.05421e-07
2.82032e-05
1.38348e-08
2.85494e-05
-1.06499e-07
2.87733e-05
9.0515e-08
2.91756e-05
1.04974e-07
2.94436e-05
-5.34715e-08
2.96623e-05
-6.177e-08
2.99015e-05
-4.98507e-08
3.0141e-05
5.20304e-08
3.02438e-05
-1.47189e-08
3.04288e-05
1.98454e-09
3.07081e-05
5.12963e-08
3.09177e-05
8.07468e-08
3.10199e-05
-6.61416e-08
3.13093e-05
1.15998e-09
3.15933e-05
1.94028e-07
-1.9212e-07
3.17854e-05
2.54311e-05
-3.93469e-07
2.6473e-05
-1.06375e-06
2.72574e-05
-9.05176e-07
2.78752e-05
-5.12351e-07
2.82087e-05
-3.19618e-07
2.84639e-05
-3.61743e-07
2.8809e-05
-2.5456e-07
2.92193e-05
-3.05337e-07
2.94264e-05
-2.60617e-07
2.96646e-05
-2.99961e-07
2.99103e-05
-2.95494e-07
3.0129e-05
-1.66672e-07
3.02414e-05
-1.27129e-07
3.04604e-05
-2.16998e-07
3.06557e-05
-1.44016e-07
3.0861e-05
-1.24604e-07
3.10917e-05
-2.96784e-07
3.13681e-05
-2.75265e-07
3.16144e-05
-5.22595e-08
-2.45887e-07
3.16681e-05
2.54788e-05
-8.7231e-07
2.64984e-05
-2.08332e-06
2.72914e-05
-1.69817e-06
2.79335e-05
-1.1544e-06
2.82694e-05
-6.55556e-07
2.85318e-05
-6.24195e-07
2.88511e-05
-5.73794e-07
2.92338e-05
-6.88059e-07
2.95059e-05
-5.32745e-07
2.97579e-05
-5.51966e-07
2.99379e-05
-4.75445e-07
3.01406e-05
-3.69343e-07
3.02908e-05
-2.77355e-07
3.05216e-05
-4.47817e-07
3.07033e-05
-3.25712e-07
3.09595e-05
-3.8084e-07
3.11307e-05
-4.67926e-07
3.14009e-05
-5.45437e-07
3.16655e-05
-3.16887e-07
-2.54098e-07
3.16737e-05
2.55501e-05
-1.42242e-06
2.65978e-05
-3.13103e-06
2.74255e-05
-2.52583e-06
2.79906e-05
-1.71955e-06
2.83309e-05
-9.95788e-07
2.86688e-05
-9.62164e-07
2.89822e-05
-8.87213e-07
2.93513e-05
-1.05712e-06
2.96151e-05
-7.96507e-07
2.98509e-05
-7.87768e-07
3.00151e-05
-6.39646e-07
3.02508e-05
-6.0508e-07
3.04187e-05
-4.45251e-07
3.0628e-05
-6.5711e-07
3.08118e-05
-5.09468e-07
3.10519e-05
-6.2102e-07
3.1232e-05
-6.47979e-07
3.14887e-05
-8.02178e-07
3.17362e-05
-5.64388e-07
-4.92665e-07
3.19748e-05
2.56863e-05
-2.10875e-06
2.6764e-05
-4.20869e-06
2.75746e-05
-3.33649e-06
2.80412e-05
-2.18606e-06
2.84956e-05
-1.45023e-06
2.88399e-05
-1.30643e-06
2.91782e-05
-1.22558e-06
2.95339e-05
-1.41279e-06
2.97567e-05
-1.01932e-06
2.99745e-05
-1.00558e-06
3.02073e-05
-8.72424e-07
3.04306e-05
-8.28367e-07
3.05733e-05
-5.87948e-07
3.08033e-05
-8.87118e-07
3.09572e-05
-6.63349e-07
3.1186e-05
-8.49842e-07
3.13553e-05
-8.17301e-07
3.16357e-05
-1.0826e-06
3.18908e-05
-8.194e-07
-7.99364e-07
3.21975e-05
2.58559e-05
-2.96461e-06
2.69427e-05
-5.29552e-06
2.77766e-05
-4.1704e-06
2.82421e-05
-2.65159e-06
2.8729e-05
-1.93708e-06
2.90943e-05
-1.67176e-06
2.94643e-05
-1.59558e-06
2.97354e-05
-1.68388e-06
2.99638e-05
-1.24773e-06
3.01644e-05
-1.20615e-06
3.0381e-05
-1.08903e-06
3.0541e-05
-9.88405e-07
3.0705e-05
-7.5189e-07
3.08524e-05
-1.03456e-06
3.09743e-05
-7.85246e-07
3.11122e-05
-9.87704e-07
3.11976e-05
-9.02687e-07
3.13999e-05
-1.28497e-06
3.15626e-05
-9.82032e-07
-1.09712e-06
3.18603e-05
2.60419e-05
-4.00649e-06
2.72128e-05
-6.46642e-06
2.80232e-05
-4.98082e-06
2.85214e-05
-3.14979e-06
2.89838e-05
-2.39951e-06
2.93279e-05
-2.01584e-06
2.96049e-05
-1.87254e-06
2.97215e-05
-1.80052e-06
2.98462e-05
-1.37246e-06
2.98986e-05
-1.25853e-06
2.99512e-05
-1.14162e-06
2.99474e-05
-9.84601e-07
2.99707e-05
-7.7521e-07
2.99097e-05
-9.73554e-07
2.98781e-05
-7.53683e-07
2.9793e-05
-9.02533e-07
2.97029e-05
-8.12654e-07
2.96412e-05
-1.22327e-06
2.95888e-05
-9.29588e-07
-1.20297e-06
2.96946e-05
2.63052e-05
-5.3117e-06
2.75229e-05
-7.68416e-06
2.80836e-05
-5.54148e-06
2.84652e-05
-3.53142e-06
2.86312e-05
-2.56551e-06
2.86337e-05
-2.01833e-06
2.8484e-05
-1.72281e-06
2.82092e-05
-1.52572e-06
2.79752e-05
-1.13842e-06
2.76943e-05
-9.77693e-07
2.74173e-05
-8.64586e-07
2.71565e-05
-7.23797e-07
2.69331e-05
-5.51818e-07
2.66433e-05
-6.83779e-07
2.64249e-05
-5.35235e-07
2.61522e-05
-6.2988e-07
2.59096e-05
-5.7008e-07
2.55857e-05
-8.99286e-07
2.53818e-05
-7.25724e-07
-1.11239e-06
2.52912e-05
2.66037e-05
-6.91538e-06
2.71494e-05
-8.22989e-06
2.67856e-05
-5.1777e-06
2.62522e-05
-2.99803e-06
2.55892e-05
-1.90247e-06
2.48847e-05
-1.31381e-06
2.41636e-05
-1.00168e-06
2.34846e-05
-8.46791e-07
2.29405e-05
-5.94274e-07
2.24509e-05
-4.88076e-07
2.20216e-05
-4.35364e-07
2.16638e-05
-3.65943e-07
2.13682e-05
-2.56212e-07
2.10408e-05
-3.56403e-07
2.07848e-05
-2.79239e-07
2.04867e-05
-3.31782e-07
2.02256e-05
-3.08926e-07
1.98198e-05
-4.9356e-07
1.94931e-05
-3.98975e-07
-3.29279e-07
1.871e-05
2.54507e-05
-7.36607e-06
2.32418e-05
-6.02095e-06
2.09924e-05
-2.92832e-06
1.93201e-05
-1.32573e-06
1.80655e-05
-6.47858e-07
1.71193e-05
-3.67658e-07
1.63721e-05
-2.5452e-07
1.57579e-05
-2.32581e-07
1.53121e-05
-1.48399e-07
1.49417e-05
-1.17674e-07
1.46226e-05
-1.16343e-07
1.43591e-05
-1.02413e-07
1.4157e-05
-5.41326e-08
1.39111e-05
-1.10505e-07
1.37156e-05
-8.37539e-08
1.34867e-05
-1.02851e-07
1.32725e-05
-9.46907e-08
1.29482e-05
-1.69308e-07
1.27289e-05
-1.79686e-07
-6.26763e-09
1.24059e-05
1.76339e-05
1.1613e-05
8.68466e-06
7.35893e-06
6.71107e-06
6.34341e-06
6.08889e-06
5.85631e-06
5.70791e-06
5.59024e-06
5.4739e-06
5.37148e-06
5.31735e-06
5.20685e-06
5.12309e-06
5.02024e-06
4.92555e-06
4.75624e-06
4.57656e-06
4.57029e-06
5.41077e-06
1.05077e-07
-7.73723e-07
5.89546e-06
1.5051e-07
-6.35198e-07
6.08008e-06
-1.11856e-07
-7.27656e-08
6.23916e-06
-3.33671e-07
1.74587e-07
6.33353e-06
-3.61768e-07
2.67396e-07
6.40853e-06
-3.13704e-07
2.38709e-07
6.45884e-06
-1.33732e-07
8.34157e-08
6.53952e-06
4.84358e-08
-1.29116e-07
6.78686e-06
3.11138e-07
-5.58471e-07
7.00066e-06
4.05051e-07
-6.1885e-07
7.27901e-06
4.60039e-07
-7.38393e-07
7.6083e-06
5.34875e-07
-8.64163e-07
7.94264e-06
5.39823e-07
-8.74166e-07
8.25466e-06
5.07225e-07
-8.19244e-07
8.5171e-06
4.47602e-07
-7.10045e-07
8.71803e-06
3.53531e-07
-5.54463e-07
8.86225e-06
2.72874e-07
-4.1709e-07
8.97286e-06
1.84791e-07
-2.95398e-07
9.07524e-06
1.25102e-07
-2.27486e-07
9.1637e-06
6.62422e-08
-1.547e-07
9.27435e-06
1.01117e-08
-1.20768e-07
9.37242e-06
-3.54578e-08
-6.26124e-08
9.4485e-06
-8.78299e-08
1.17504e-08
9.55678e-06
-1.65629e-07
5.73572e-08
9.62608e-06
-1.82007e-07
1.12701e-07
9.67858e-06
-2.47336e-07
1.94838e-07
9.73933e-06
-2.71092e-07
2.1034e-07
9.78497e-06
-2.7811e-07
2.32477e-07
9.83592e-06
-2.70284e-07
2.19329e-07
9.90813e-06
-2.42589e-07
1.70377e-07
1.00072e-05
-1.74637e-07
7.55231e-08
1.01452e-05
-1.00944e-07
-3.69622e-08
1.03604e-05
1.18831e-09
-2.16479e-07
1.06055e-05
1.15094e-07
-3.60153e-07
1.08999e-05
1.6694e-07
-4.61291e-07
1.12143e-05
2.08607e-07
-5.23015e-07
1.15625e-05
2.30314e-07
-5.78576e-07
1.19142e-05
2.11565e-07
-5.63196e-07
1.22782e-05
1.22146e-07
-4.86238e-07
1.26357e-05
-1.5632e-08
-3.41773e-07
1.29726e-05
-1.71024e-07
-1.65899e-07
1.32891e-05
-4.11587e-07
9.50624e-08
1.35805e-05
-6.71861e-07
3.80507e-07
1.38652e-05
-1.01123e-06
7.26475e-07
1.40622e-05
-1.36881e-06
1.17181e-06
1.41857e-05
-1.76533e-06
1.64182e-06
1.42409e-05
-2.16469e-06
2.10956e-06
1.4196e-05
-2.48005e-06
2.52491e-06
1.41153e-05
-2.69747e-06
2.77811e-06
1.40792e-05
-2.79385e-06
2.83003e-06
1.40159e-05
-2.6956e-06
2.75882e-06
1.3916e-05
-2.53449e-06
2.63447e-06
1.3879e-05
-2.30064e-06
2.33762e-06
1.37925e-05
-1.9349e-06
2.02134e-06
1.37281e-05
-1.64696e-06
1.71142e-06
1.36375e-05
-1.27297e-06
1.36356e-06
1.34299e-05
-8.76831e-07
1.08438e-06
1.31977e-05
-4.37457e-07
6.69664e-07
1.30912e-05
3.83557e-08
6.81323e-08
1.3242e-05
5.42715e-07
-6.93499e-07
1.34805e-05
1.0672e-06
-1.30563e-06
1.38182e-05
1.34877e-06
-1.6865e-06
1.43326e-05
1.71871e-06
-2.23308e-06
1.50048e-05
1.96694e-06
-2.63916e-06
1.57343e-05
2.00628e-06
-2.73585e-06
1.63615e-05
2.19659e-06
-2.82377e-06
1.70465e-05
1.96029e-06
-2.64531e-06
1.78212e-05
1.78001e-06
-2.55465e-06
1.85127e-05
1.7425e-06
-2.43408e-06
1.91567e-05
1.14051e-06
-1.78444e-06
1.98469e-05
6.59307e-07
-1.3495e-06
2.05781e-05
1.91094e-07
-9.2233e-07
2.1193e-05
-6.71501e-07
5.6637e-08
2.16974e-05
-1.33298e-06
8.28506e-07
2.22418e-05
-2.15371e-06
1.60938e-06
2.27562e-05
-3.19629e-06
2.6818e-06
2.32022e-05
-3.65919e-06
3.21323e-06
2.39238e-05
-4.78102e-06
4.05947e-06
2.46517e-05
-5.68122e-06
4.95326e-06
2.53859e-05
-6.09642e-06
5.36223e-06
2.65109e-05
-7.43768e-06
6.31274e-06
2.74238e-05
-8.13089e-06
7.21794e-06
2.8517e-05
-8.71936e-06
7.62613e-06
2.96584e-05
-9.90553e-06
8.7642e-06
3.04588e-05
-1.05434e-05
9.74296e-06
3.13987e-05
-1.10833e-05
1.01433e-05
3.21889e-05
-1.19043e-05
1.11141e-05
3.25895e-05
-1.2421e-05
1.20204e-05
3.29415e-05
-1.26535e-05
1.23014e-05
3.32438e-05
-1.31944e-05
1.28921e-05
3.30036e-05
-1.31569e-05
1.33971e-05
3.28318e-05
-1.32672e-05
1.3439e-05
3.25008e-05
-1.32545e-05
1.35855e-05
3.20582e-05
-1.30979e-05
1.35404e-05
3.15293e-05
-1.28757e-05
1.34047e-05
3.10969e-05
-1.2806e-05
1.32384e-05
3.07562e-05
-1.26044e-05
1.29451e-05
3.02887e-05
-1.23084e-05
1.27759e-05
3.01715e-05
-1.23072e-05
1.24243e-05
2.9992e-05
-1.20508e-05
1.22303e-05
2.99488e-05
-1.21249e-05
1.21681e-05
2.97891e-05
-1.15016e-05
1.16613e-05
2.99327e-05
-1.18089e-05
1.16654e-05
2.99491e-05
-1.14172e-05
1.14008e-05
2.98729e-05
-1.1026e-05
1.11022e-05
2.99164e-05
-1.0939e-05
1.08955e-05
2.99842e-05
-1.02769e-05
1.02092e-05
3.00635e-05
-1.01211e-05
1.00418e-05
3.0023e-05
-9.21905e-06
9.25958e-06
2.99467e-05
-8.57693e-06
8.65325e-06
2.99744e-05
-7.70326e-06
7.6755e-06
2.99521e-05
-6.73817e-06
6.76047e-06
2.97054e-05
-5.58568e-06
5.83239e-06
2.94579e-05
-4.28834e-06
4.53584e-06
2.88413e-05
-2.81479e-06
3.43145e-06
2.85972e-05
-1.58845e-06
1.83251e-06
2.80711e-05
-2.14635e-07
7.40693e-07
2.76154e-05
9.42663e-07
-4.86875e-07
2.68638e-05
2.45037e-06
-1.69883e-06
2.61835e-05
3.53246e-06
-2.85214e-06
2.52698e-05
4.86162e-06
-3.94792e-06
2.45791e-05
5.92138e-06
-5.2307e-06
2.36057e-05
6.78961e-06
-5.81619e-06
2.28529e-05
7.39529e-06
-6.64252e-06
2.19483e-05
8.5154e-06
-7.61078e-06
2.1099e-05
8.48006e-06
-7.6307e-06
2.01581e-05
8.53605e-06
-7.59519e-06
1.9275e-05
9.4398e-06
-8.55673e-06
1.85204e-05
1.03952e-05
-9.64062e-06
1.7491e-05
9.34329e-06
-8.31383e-06
1.67186e-05
6.99688e-06
-6.2245e-06
1.62444e-05
7.19752e-06
-6.72328e-06
1.62897e-05
1.07232e-05
-1.07686e-05
1.65154e-05
1.59576e-05
-1.61832e-05
1.6489e-05
2.03203e-05
-2.02939e-05
1.66074e-05
2.35156e-05
-2.36341e-05
1.64877e-05
2.6535e-05
-2.64153e-05
1.61393e-05
2.82897e-05
-2.79413e-05
1.62299e-05
2.76988e-05
-2.77894e-05
1.61149e-05
2.62798e-05
-2.61649e-05
1.58775e-05
2.3243e-05
-2.30056e-05
1.57528e-05
2.10208e-05
-2.0896e-05
1.58341e-05
1.80895e-05
-1.81708e-05
1.60637e-05
1.51827e-05
-1.54123e-05
1.60069e-05
1.23819e-05
-1.2325e-05
1.5902e-05
9.69191e-06
-9.58704e-06
1.58726e-05
7.01198e-06
-6.98262e-06
1.6148e-05
3.95629e-06
-4.2317e-06
1.65513e-05
1.43131e-06
-1.83454e-06
1.70955e-05
-6.32817e-07
8.86083e-08
1.76043e-05
-3.16481e-06
2.65595e-06
1.80976e-05
-5.38915e-06
4.89588e-06
1.85222e-05
-7.85065e-06
7.42605e-06
1.9077e-05
-1.01447e-05
9.58995e-06
1.97639e-05
-1.2857e-05
1.21701e-05
2.03667e-05
-1.54487e-05
1.48459e-05
2.0853e-05
-1.79569e-05
1.74706e-05
2.10899e-05
-1.93463e-05
1.91093e-05
2.09575e-05
-1.99407e-05
2.00732e-05
2.1021e-05
-1.90513e-05
1.89878e-05
2.0935e-05
-1.87948e-05
1.88808e-05
2.08966e-05
-1.75946e-05
1.76331e-05
2.08522e-05
-1.61068e-05
1.61512e-05
2.08148e-05
-1.40472e-05
1.40846e-05
2.10873e-05
-1.29794e-05
1.27069e-05
2.11938e-05
-1.13624e-05
1.12559e-05
2.09514e-05
-9.77135e-06
1.00138e-05
2.05915e-05
-7.69893e-06
8.05885e-06
2.07926e-05
-6.53017e-06
6.32913e-06
2.05795e-05
-4.74647e-06
4.95957e-06
2.05144e-05
-3.57998e-06
3.64501e-06
2.0587e-05
-2.78351e-06
2.71091e-06
2.03064e-05
-1.76433e-06
2.04493e-06
1.99587e-05
-8.16495e-07
1.16423e-06
1.97222e-05
-1.59543e-07
3.96043e-07
1.99216e-05
-7.3734e-08
-1.25694e-07
2.02095e-05
-1.95976e-07
-9.19172e-08
2.06453e-05
-3.1081e-08
-4.04664e-07
2.11614e-05
-4.31259e-08
-4.72988e-07
2.11623e-05
3.94229e-07
-3.95116e-07
2.11998e-05
-9.8419e-09
-2.76709e-08
2.17018e-05
-2.82437e-07
-2.19614e-07
2.25719e-05
-5.00831e-08
-8.19982e-07
2.34399e-05
1.44182e-08
-8.82384e-07
2.42315e-05
1.24069e-06
-2.03235e-06
2.43683e-05
2.52681e-06
-2.66364e-06
2.43095e-05
3.63625e-06
-3.57739e-06
2.41376e-05
5.62535e-06
-5.45348e-06
2.40079e-05
7.6389e-06
-7.50921e-06
2.3348e-05
9.94182e-06
-9.28194e-06
2.25319e-05
1.07577e-05
-9.94159e-06
2.19656e-05
1.22189e-05
-1.16526e-05
2.08398e-05
1.47445e-05
-1.36186e-05
1.98677e-05
1.56216e-05
-1.46496e-05
1.92932e-05
1.85406e-05
-1.79661e-05
1.879e-05
2.22495e-05
-2.17464e-05
1.80404e-05
2.61613e-05
-2.54117e-05
1.65068e-05
3.07912e-05
-2.92576e-05
1.69211e-05
3.47427e-05
-3.51569e-05
4.5462e-05
-4.5917e-05
1.73761e-05
1.26538e-05
-4.17097e-08
1.28183e-05
-1.40634e-08
1.28882e-05
-1.81698e-07
1.29258e-05
-3.7131e-07
1.2998e-05
-4.33968e-07
1.30446e-05
-3.60294e-07
1.3075e-05
-1.64073e-07
1.31104e-05
1.29857e-08
1.32119e-05
2.09641e-07
1.32681e-05
3.4881e-07
1.33321e-05
3.96038e-07
1.34394e-05
4.276e-07
1.3555e-05
4.24256e-07
1.36762e-05
3.86027e-07
1.37879e-05
3.35867e-07
1.38895e-05
2.51966e-07
1.39769e-05
1.85438e-07
1.40549e-05
1.06841e-07
1.41382e-05
4.17835e-08
1.42187e-05
-1.4229e-08
1.43048e-05
-7.60254e-08
1.43996e-05
-1.30249e-07
1.44796e-05
-1.67801e-07
1.45694e-05
-2.55425e-07
1.46579e-05
-2.70515e-07
1.4734e-05
-3.23457e-07
1.48122e-05
-3.49331e-07
1.4888e-05
-3.53857e-07
1.49716e-05
-3.53921e-07
1.50554e-05
-3.26372e-07
1.51727e-05
-2.91954e-07
1.52995e-05
-2.27738e-07
1.54778e-05
-1.77133e-07
1.56887e-05
-9.5819e-08
1.59223e-05
-6.65947e-08
1.61761e-05
-4.52526e-08
1.64718e-05
-6.53154e-08
1.67686e-05
-8.53019e-08
1.70837e-05
-1.92949e-07
1.74054e-05
-3.37304e-07
1.77117e-05
-4.77333e-07
1.80448e-05
-7.44659e-07
1.83227e-05
-9.49818e-07
1.86075e-05
-1.29595e-06
1.88476e-05
-1.60891e-06
1.90168e-05
-1.93458e-06
1.9145e-05
-2.29284e-06
1.91833e-05
-2.51839e-06
1.91868e-05
-2.70095e-06
1.91475e-05
-2.75456e-06
1.91213e-05
-2.66944e-06
1.91067e-05
-2.51988e-06
1.90893e-05
-2.28321e-06
1.90861e-05
-1.93166e-06
1.9029e-05
-1.58993e-06
1.89183e-05
-1.1622e-06
1.88133e-05
-7.71822e-07
1.86871e-05
-3.11317e-07
1.8564e-05
1.61486e-07
1.85814e-05
5.25303e-07
1.85873e-05
1.06132e-06
1.86642e-05
1.27181e-06
1.88221e-05
1.56088e-06
1.90305e-05
1.75852e-06
1.94101e-05
1.62671e-06
1.98093e-05
1.79735e-06
2.02496e-05
1.51997e-06
2.07578e-05
1.27183e-06
2.13972e-05
1.10315e-06
2.20112e-05
5.26488e-07
2.25855e-05
8.50324e-08
2.32823e-05
-5.0572e-07
2.3958e-05
-1.34721e-06
2.45297e-05
-1.90466e-06
2.52466e-05
-2.87069e-06
2.59437e-05
-3.89336e-06
2.66917e-05
-4.40714e-06
2.75099e-05
-5.59928e-06
2.83165e-05
-6.48781e-06
2.93175e-05
-7.09742e-06
3.01314e-05
-8.25156e-06
3.09533e-05
-8.95284e-06
3.18989e-05
-9.66491e-06
3.2466e-05
-1.04727e-05
3.29354e-05
-1.10128e-05
3.34874e-05
-1.16353e-05
3.36661e-05
-1.20829e-05
3.35247e-05
-1.22796e-05
3.35999e-05
-1.27287e-05
3.32265e-05
-1.2821e-05
3.27161e-05
-1.26465e-05
3.23594e-05
-1.29105e-05
3.18648e-05
-1.27599e-05
3.13053e-05
-1.25384e-05
3.09961e-05
-1.25665e-05
3.07858e-05
-1.25958e-05
3.04632e-05
-1.22817e-05
3.04035e-05
-1.22487e-05
3.04413e-05
-1.2345e-05
3.03077e-05
-1.19171e-05
3.02029e-05
-1.20202e-05
3.0239e-05
-1.15376e-05
3.01439e-05
-1.17139e-05
2.99364e-05
-1.12096e-05
2.98464e-05
-1.09361e-05
2.97574e-05
-1.085e-05
2.97484e-05
-1.02679e-05
2.94942e-05
-9.86688e-06
2.95032e-05
-9.22809e-06
2.93784e-05
-8.45209e-06
2.93826e-05
-7.70749e-06
2.91272e-05
-6.48271e-06
2.87994e-05
-5.25787e-06
2.86013e-05
-4.09031e-06
2.82046e-05
-2.41804e-06
2.80012e-05
-1.38505e-06
2.74977e-05
2.88787e-07
2.69692e-05
1.47116e-06
2.63029e-05
3.11672e-06
2.56687e-05
4.16668e-06
2.48468e-05
5.68347e-06
2.41603e-05
6.6079e-06
2.34214e-05
7.52853e-06
2.26356e-05
8.18101e-06
2.18492e-05
9.30187e-06
2.0991e-05
9.33821e-06
2.02716e-05
9.25549e-06
1.9445e-05
1.02663e-05
1.86841e-05
1.11561e-05
1.76587e-05
1.03687e-05
1.66445e-05
8.01107e-06
1.60479e-05
7.79416e-06
1.5919e-05
1.08521e-05
1.63614e-05
1.55152e-05
1.65461e-05
2.01355e-05
1.66856e-05
2.33761e-05
1.68894e-05
2.63312e-05
1.67469e-05
2.84322e-05
1.68162e-05
2.76294e-05
1.69986e-05
2.60975e-05
1.69511e-05
2.32905e-05
1.70177e-05
2.09541e-05
1.71194e-05
1.79879e-05
1.71944e-05
1.51076e-05
1.73691e-05
1.22072e-05
1.74422e-05
9.61879e-06
1.75575e-05
6.89673e-06
1.7885e-05
3.62874e-06
1.83605e-05
9.55823e-07
1.88177e-05
-1.09003e-06
1.92185e-05
-3.56557e-06
1.97153e-05
-5.88592e-06
2.02538e-05
-8.38915e-06
2.08287e-05
-1.07197e-05
2.14636e-05
-1.34918e-05
2.21033e-05
-1.60884e-05
2.2526e-05
-1.83796e-05
2.26116e-05
-1.94319e-05
2.24662e-05
-1.97954e-05
2.24303e-05
-1.90154e-05
2.22146e-05
-1.85791e-05
2.20665e-05
-1.74465e-05
2.18654e-05
-1.59057e-05
2.18894e-05
-1.40712e-05
2.19182e-05
-1.30082e-05
2.16677e-05
-1.1112e-05
2.12532e-05
-9.35689e-06
2.13246e-05
-7.77036e-06
2.10741e-05
-6.27968e-06
2.05478e-05
-4.22012e-06
2.05707e-05
-3.60289e-06
2.02095e-05
-2.42228e-06
1.96079e-05
-1.16277e-06
1.92034e-05
-4.11987e-07
1.90758e-05
-3.19111e-08
1.95675e-05
-5.65451e-07
1.99792e-05
-6.07634e-07
1.98957e-05
5.23843e-08
1.97464e-05
1.06198e-07
1.989e-05
2.50619e-07
2.08648e-05
-9.84693e-07
2.22478e-05
-1.66537e-06
2.36568e-05
-1.45917e-06
2.47567e-05
-1.08544e-06
2.56874e-05
3.09952e-07
2.58476e-05
2.36662e-06
2.60723e-05
3.41155e-06
2.5927e-05
5.77069e-06
2.54339e-05
8.13202e-06
2.53744e-05
1.00013e-05
2.43081e-05
1.1824e-05
2.37895e-05
1.27375e-05
2.31143e-05
1.54197e-05
2.18319e-05
1.6904e-05
2.12001e-05
1.91725e-05
2.07223e-05
2.27272e-05
2.15319e-05
2.53517e-05
2.05156e-05
3.18075e-05
2.53895e-05
2.98688e-05
4.67601e-05
2.40914e-05
1.90354e-05
-8.83136e-08
1.92468e-05
-2.25455e-07
1.94322e-05
-3.67167e-07
1.95411e-05
-4.8019e-07
1.95668e-05
-4.59598e-07
1.95527e-05
-3.46199e-07
1.95606e-05
-1.72007e-07
1.95597e-05
1.39216e-08
1.9606e-05
1.63265e-07
1.96451e-05
3.09696e-07
1.96721e-05
3.69053e-07
1.97077e-05
3.92038e-07
1.97594e-05
3.72548e-07
1.98091e-05
3.36351e-07
1.98642e-05
2.80769e-07
1.99104e-05
2.05736e-07
1.99597e-05
1.36153e-07
2.00005e-05
6.59975e-08
2.0043e-05
-6.53976e-10
2.00941e-05
-6.53277e-08
2.01438e-05
-1.25719e-07
2.02088e-05
-1.95232e-07
2.02617e-05
-2.20783e-07
2.03258e-05
-3.19476e-07
2.03755e-05
-3.20186e-07
2.04463e-05
-3.94321e-07
2.05002e-05
-4.03224e-07
2.05601e-05
-4.13724e-07
2.06411e-05
-4.34968e-07
2.07107e-05
-3.95969e-07
2.08186e-05
-3.99809e-07
2.09298e-05
-3.38924e-07
2.10758e-05
-3.23198e-07
2.12443e-05
-2.64254e-07
2.14428e-05
-2.65126e-07
2.16347e-05
-2.37188e-07
2.18777e-05
-3.08258e-07
2.21212e-05
-3.28813e-07
2.23684e-05
-4.40194e-07
2.26366e-05
-6.05522e-07
2.28829e-05
-7.23544e-07
2.31567e-05
-1.01852e-06
2.33948e-05
-1.1879e-06
2.36135e-05
-1.51468e-06
2.38108e-05
-1.8062e-06
2.39432e-05
-2.06697e-06
2.40282e-05
-2.37786e-06
2.40519e-05
-2.5421e-06
2.403e-05
-2.67907e-06
2.39945e-05
-2.71903e-06
2.39484e-05
-2.62333e-06
2.38987e-05
-2.47015e-06
2.38425e-05
-2.227e-06
2.37868e-05
-1.87596e-06
2.37359e-05
-1.53901e-06
2.36468e-05
-1.07315e-06
2.35945e-05
-7.19528e-07
2.35408e-05
-2.57648e-07
2.34752e-05
2.27139e-07
2.3489e-05
5.11483e-07
2.35315e-05
1.01883e-06
2.36237e-05
1.17962e-06
2.37225e-05
1.46208e-06
2.39081e-05
1.57288e-06
2.40956e-05
1.43927e-06
2.43568e-05
1.53608e-06
2.47291e-05
1.14768e-06
2.50412e-05
9.59719e-07
2.54847e-05
6.59708e-07
2.60526e-05
-4.1402e-08
2.65303e-05
-3.92722e-07
2.7128e-05
-1.10338e-06
2.77849e-05
-2.00418e-06
2.84299e-05
-2.54965e-06
2.90858e-05
-3.52657e-06
2.97895e-05
-4.59708e-06
3.04997e-05
-5.11731e-06
3.12217e-05
-6.32124e-06
3.18037e-05
-7.06988e-06
3.25708e-05
-7.86448e-06
3.3064e-05
-8.74481e-06
3.34484e-05
-9.33721e-06
3.39252e-05
-1.01416e-05
3.40424e-05
-1.059e-05
3.41004e-05
-1.10708e-05
3.40821e-05
-1.16169e-05
3.37757e-05
-1.17765e-05
3.34685e-05
-1.19725e-05
3.30866e-05
-1.23467e-05
3.24829e-05
-1.22173e-05
3.2108e-05
-1.22717e-05
3.164e-05
-1.24424e-05
3.12384e-05
-1.23583e-05
3.10522e-05
-1.23521e-05
3.09707e-05
-1.24851e-05
3.07944e-05
-1.24194e-05
3.08284e-05
-1.23157e-05
3.0868e-05
-1.22883e-05
3.07018e-05
-1.21788e-05
3.05637e-05
-1.17791e-05
3.03243e-05
-1.17808e-05
3.01398e-05
-1.13531e-05
2.96904e-05
-1.12645e-05
2.94306e-05
-1.09498e-05
2.91569e-05
-1.06623e-05
2.88262e-05
-1.05192e-05
2.85446e-05
-9.9864e-06
2.82423e-05
-9.56453e-06
2.81695e-05
-9.15532e-06
2.78964e-05
-8.179e-06
2.77653e-05
-7.5764e-06
2.74851e-05
-6.20248e-06
2.73067e-05
-5.07945e-06
2.70758e-05
-3.85946e-06
2.68973e-05
-2.23956e-06
2.65697e-05
-1.05737e-06
2.62746e-05
5.83827e-07
2.5696e-05
2.04977e-06
2.51986e-05
3.61412e-06
2.46363e-05
4.72898e-06
2.41534e-05
6.16641e-06
2.3517e-05
7.24425e-06
2.31029e-05
7.94271e-06
2.23372e-05
8.94663e-06
2.17161e-05
9.92298e-06
2.07823e-05
1.0272e-05
1.99943e-05
1.00435e-05
1.92075e-05
1.10531e-05
1.84132e-05
1.19504e-05
1.749e-05
1.1292e-05
1.63563e-05
9.14477e-06
1.57685e-05
8.38192e-06
1.55095e-05
1.11111e-05
1.59861e-05
1.50385e-05
1.64522e-05
1.96694e-05
1.6634e-05
2.31944e-05
1.70516e-05
2.59136e-05
1.73361e-05
2.81478e-05
1.74176e-05
2.75479e-05
1.7776e-05
2.57391e-05
1.79342e-05
2.31322e-05
1.81949e-05
2.06934e-05
1.84201e-05
1.77627e-05
1.86568e-05
1.4871e-05
1.89561e-05
1.19078e-05
1.90831e-05
9.4918e-06
1.94357e-05
6.5442e-06
1.98371e-05
3.22732e-06
2.0114e-05
6.78941e-07
2.03552e-05
-1.33126e-06
2.08132e-05
-4.02356e-06
2.14081e-05
-6.48083e-06
2.19371e-05
-8.91816e-06
2.25353e-05
-1.13179e-05
2.33023e-05
-1.42588e-05
2.38755e-05
-1.66616e-05
2.41297e-05
-1.86339e-05
2.40631e-05
-1.93652e-05
2.36995e-05
-1.94318e-05
2.35421e-05
-1.8858e-05
2.32406e-05
-1.82775e-05
2.29867e-05
-1.71926e-05
2.27215e-05
-1.56406e-05
2.27877e-05
-1.41374e-05
2.26137e-05
-1.28342e-05
2.20563e-05
-1.05546e-05
2.17262e-05
-9.02686e-06
2.14433e-05
-7.48739e-06
2.06553e-05
-5.49174e-06
2.05412e-05
-4.10598e-06
2.01573e-05
-3.219e-06
1.93408e-05
-1.60584e-06
1.86365e-05
-4.58468e-07
1.8266e-05
-4.14076e-08
1.87444e-05
-5.10326e-07
1.90319e-05
-8.52989e-07
1.8422e-05
2.32394e-09
1.80586e-05
4.15728e-07
1.83801e-05
-2.1524e-07
2.00213e-05
-1.3906e-06
2.18591e-05
-2.82253e-06
2.36311e-05
-3.43732e-06
2.50077e-05
-2.83584e-06
2.6087e-05
-2.16467e-06
2.69106e-05
-5.13725e-07
2.73272e-05
1.95009e-06
2.74022e-05
3.33652e-06
2.75419e-05
5.63095e-06
2.69828e-05
8.69112e-06
2.67755e-05
1.02087e-05
2.63157e-05
1.22837e-05
2.58302e-05
1.32231e-05
2.55817e-05
1.56682e-05
2.47084e-05
1.77773e-05
2.42923e-05
1.95886e-05
2.30742e-05
2.39452e-05
2.44891e-05
2.39369e-05
2.39201e-05
3.23765e-05
3.04558e-05
2.33331e-05
4.69209e-05
3.02949e-05
2.43322e-05
-2.68033e-07
2.47827e-05
-6.75946e-07
2.51358e-05
-7.2033e-07
2.52282e-05
-5.72575e-07
2.52097e-05
-4.41061e-07
2.51544e-05
-2.90887e-07
2.51152e-05
-1.32817e-07
2.51125e-05
1.66492e-08
2.51302e-05
1.45524e-07
2.51605e-05
2.79361e-07
2.52077e-05
3.21916e-07
2.52214e-05
3.78257e-07
2.52577e-05
3.36297e-07
2.5279e-05
3.15021e-07
2.53112e-05
2.48548e-07
2.53447e-05
1.72266e-07
2.53706e-05
1.10262e-07
2.54047e-05
3.18767e-08
2.54366e-05
-3.24765e-08
2.54704e-05
-9.92198e-08
2.55005e-05
-1.5574e-07
2.55397e-05
-2.34499e-07
2.55604e-05
-2.41429e-07
2.56109e-05
-3.70047e-07
2.56258e-05
-3.35027e-07
2.56773e-05
-4.45784e-07
2.57201e-05
-4.46041e-07
2.57607e-05
-4.54382e-07
2.5826e-05
-5.0026e-07
2.58816e-05
-4.51499e-07
2.59615e-05
-4.79782e-07
2.60451e-05
-4.22458e-07
2.61567e-05
-4.34836e-07
2.62716e-05
-3.79143e-07
2.64328e-05
-4.26294e-07
2.65725e-05
-3.76942e-07
2.67601e-05
-4.95896e-07
2.69438e-05
-5.12465e-07
2.71373e-05
-6.33678e-07
2.7339e-05
-8.0721e-07
2.75193e-05
-9.03859e-07
2.77261e-05
-1.22531e-06
2.7866e-05
-1.32785e-06
2.80275e-05
-1.67611e-06
2.81172e-05
-1.89597e-06
2.81628e-05
-2.11257e-06
2.81832e-05
-2.39827e-06
2.81175e-05
-2.47636e-06
2.80513e-05
-2.61286e-06
2.79552e-05
-2.62298e-06
2.78258e-05
-2.49384e-06
2.77246e-05
-2.36903e-06
2.76016e-05
-2.10401e-06
2.74963e-05
-1.77067e-06
2.74246e-05
-1.46726e-06
2.7357e-05
-1.00559e-06
2.73114e-05
-6.73901e-07
2.72827e-05
-2.28993e-07
2.73403e-05
1.6963e-07
2.73794e-05
4.72325e-07
2.74874e-05
9.10854e-07
2.77097e-05
9.57307e-07
2.78199e-05
1.35191e-06
2.81016e-05
1.2912e-06
2.83291e-05
1.21171e-06
2.8558e-05
1.30721e-06
2.89545e-05
7.51159e-07
2.92179e-05
6.96336e-07
2.96289e-05
2.48714e-07
3.00585e-05
-4.71036e-07
3.04884e-05
-8.22641e-07
3.10295e-05
-1.64443e-06
3.14514e-05
-2.4261e-06
3.2049e-05
-3.14719e-06
3.25649e-05
-4.04257e-06
3.29026e-05
-4.93477e-06
3.35356e-05
-5.75031e-06
3.38347e-05
-6.62026e-06
3.41135e-05
-7.34877e-06
3.44483e-05
-8.19927e-06
3.44907e-05
-8.7872e-06
3.45064e-05
-9.35286e-06
3.44693e-05
-1.01046e-05
3.41881e-05
-1.03088e-05
3.39257e-05
-1.08084e-05
3.35753e-05
-1.12665e-05
3.30512e-05
-1.12524e-05
3.27684e-05
-1.16897e-05
3.22284e-05
-1.18067e-05
3.18228e-05
-1.18118e-05
3.16008e-05
-1.20497e-05
3.1351e-05
-1.21926e-05
3.12491e-05
-1.22564e-05
3.12289e-05
-1.23319e-05
3.12576e-05
-1.25138e-05
3.11842e-05
-1.2346e-05
3.11897e-05
-1.23212e-05
3.10014e-05
-1.21e-05
3.06277e-05
-1.1805e-05
3.02935e-05
-1.14449e-05
2.97418e-05
-1.12291e-05
2.92479e-05
-1.08593e-05
2.86266e-05
-1.06432e-05
2.81279e-05
-1.04511e-05
2.75449e-05
-1.00794e-05
2.69834e-05
-9.95768e-06
2.64797e-05
-9.48274e-06
2.61097e-05
-9.1945e-06
2.57978e-05
-8.84341e-06
2.54791e-05
-7.86029e-06
2.52009e-05
-7.29822e-06
2.50242e-05
-6.02579e-06
2.49333e-05
-4.98858e-06
2.47495e-05
-3.67562e-06
2.47089e-05
-2.19896e-06
2.43854e-05
-7.33864e-07
2.43226e-05
6.4661e-07
2.39683e-05
2.4041e-06
2.39321e-05
3.65033e-06
2.35422e-05
5.11888e-06
2.33004e-05
6.40814e-06
2.27365e-05
7.80821e-06
2.23242e-05
8.35494e-06
2.16264e-05
9.64453e-06
2.09202e-05
1.06292e-05
2.01451e-05
1.10471e-05
1.9409e-05
1.07796e-05
1.8735e-05
1.17271e-05
1.78955e-05
1.279e-05
1.71579e-05
1.20295e-05
1.60182e-05
1.02845e-05
1.5427e-05
8.97318e-06
1.52637e-05
1.12744e-05
1.56049e-05
1.46973e-05
1.62869e-05
1.89874e-05
1.65989e-05
2.28823e-05
1.70132e-05
2.54993e-05
1.76051e-05
2.7556e-05
1.79368e-05
2.72161e-05
1.8417e-05
2.5259e-05
1.8607e-05
2.29422e-05
1.89801e-05
2.03203e-05
1.94735e-05
1.72693e-05
1.99817e-05
1.43628e-05
2.03427e-05
1.15468e-05
2.07084e-05
9.12611e-06
2.10667e-05
6.18583e-06
2.1325e-05
2.96901e-06
2.15357e-05
4.6827e-07
2.20236e-05
-1.81919e-06
2.25138e-05
-4.51377e-06
2.30159e-05
-6.98293e-06
2.34751e-05
-9.3773e-06
2.41231e-05
-1.19659e-05
2.4873e-05
-1.50086e-05
2.527e-05
-1.70586e-05
2.53433e-05
-1.87072e-05
2.51223e-05
-1.91443e-05
2.48083e-05
-1.91178e-05
2.45914e-05
-1.8641e-05
2.41157e-05
-1.78018e-05
2.37484e-05
-1.68254e-05
2.35004e-05
-1.53926e-05
2.33897e-05
-1.40266e-05
2.28216e-05
-1.22661e-05
2.22508e-05
-9.98381e-06
2.17988e-05
-8.57482e-06
2.09197e-05
-6.60833e-06
2.02163e-05
-4.78831e-06
1.99125e-05
-3.80224e-06
1.88669e-05
-2.1734e-06
1.7919e-05
-6.57935e-07
1.72325e-05
2.28043e-07
1.76175e-05
-4.26399e-07
1.77041e-05
-5.96865e-07
1.67324e-05
1.18724e-07
1.60954e-05
6.39235e-07
1.67659e-05
-2.54756e-07
1.86899e-05
-2.13917e-06
2.10043e-05
-3.70503e-06
2.27303e-05
-4.54859e-06
2.42415e-05
-4.94849e-06
2.53539e-05
-3.94826e-06
2.61238e-05
-2.93449e-06
2.6249e-05
-6.38989e-07
2.65668e-05
1.6323e-06
2.66589e-05
3.24444e-06
2.65962e-05
5.6936e-06
2.66358e-05
8.65152e-06
2.64043e-05
1.04403e-05
2.63354e-05
1.23526e-05
2.62821e-05
1.32764e-05
2.73654e-05
1.45848e-05
2.69871e-05
1.81556e-05
2.78212e-05
1.87545e-05
2.64632e-05
2.53032e-05
2.85491e-05
2.1851e-05
2.57758e-05
3.51497e-05
3.06024e-05
1.85066e-05
4.32735e-05
3.42499e-05
2.97287e-05
-6.04278e-08
2.94678e-05
-4.15001e-07
2.93264e-05
-5.79e-07
2.92983e-05
-5.44459e-07
2.92766e-05
-4.19345e-07
2.92451e-05
-2.59424e-07
2.92253e-05
-1.12976e-07
2.91957e-05
4.62992e-08
2.92123e-05
1.28847e-07
2.92254e-05
2.66302e-07
2.92764e-05
2.70902e-07
2.93118e-05
3.42827e-07
2.9361e-05
2.8715e-07
2.94031e-05
2.7286e-07
2.94268e-05
2.24898e-07
2.94632e-05
1.35846e-07
2.94721e-05
1.01418e-07
2.94884e-05
1.55153e-08
2.95145e-05
-5.85911e-08
2.95242e-05
-1.08857e-07
2.95555e-05
-1.87086e-07
2.95756e-05
-2.54625e-07
2.95812e-05
-2.47038e-07
2.96238e-05
-4.12637e-07
2.96066e-05
-3.17802e-07
2.9645e-05
-4.84159e-07
2.96583e-05
-4.59388e-07
2.96763e-05
-4.72328e-07
2.97327e-05
-5.56699e-07
2.97516e-05
-4.70428e-07
2.98242e-05
-5.52308e-07
2.98729e-05
-4.71172e-07
2.99408e-05
-5.02731e-07
3.00353e-05
-4.73655e-07
3.01148e-05
-5.05808e-07
3.02302e-05
-4.92378e-07
3.03462e-05
-6.11881e-07
3.04559e-05
-6.22132e-07
3.06012e-05
-7.7893e-07
3.07117e-05
-9.17736e-07
3.08312e-05
-1.02337e-06
3.09398e-05
-1.33397e-06
3.10043e-05
-1.39233e-06
3.10623e-05
-1.73406e-06
3.10606e-05
-1.89431e-06
3.10099e-05
-2.06181e-06
3.09441e-05
-2.33251e-06
3.07999e-05
-2.33219e-06
3.0674e-05
-2.48694e-06
3.05082e-05
-2.45712e-06
3.03072e-05
-2.29285e-06
3.01847e-05
-2.24659e-06
2.99635e-05
-1.88278e-06
2.98538e-05
-1.66098e-06
2.97363e-05
-1.34975e-06
2.96125e-05
-8.81823e-07
2.96334e-05
-6.94801e-07
2.95577e-05
-1.53262e-07
2.96824e-05
4.48859e-08
2.9792e-05
3.62772e-07
2.99414e-05
7.61503e-07
3.02254e-05
6.73283e-07
3.04813e-05
1.09603e-06
3.07932e-05
9.79242e-07
3.11197e-05
8.85255e-07
3.14771e-05
9.49735e-07
3.1775e-05
4.53268e-07
3.21566e-05
3.14755e-07
3.25686e-05
-1.63267e-07
3.28296e-05
-7.31992e-07
3.33036e-05
-1.29667e-06
3.36239e-05
-1.96479e-06
3.3907e-05
-2.70918e-06
3.43124e-05
-3.55252e-06
3.4498e-05
-4.22823e-06
3.4675e-05
-5.1118e-06
3.48769e-05
-5.95213e-06
3.48267e-05
-6.57008e-06
3.48497e-05
-7.37176e-06
3.46745e-05
-8.02408e-06
3.44211e-05
-8.53381e-06
3.4242e-05
-9.17379e-06
3.37578e-05
-9.62031e-06
3.34296e-05
-9.98063e-06
3.31652e-05
-1.0544e-05
3.26017e-05
-1.0703e-05
3.23938e-05
-1.10444e-05
3.2138e-05
-1.1434e-05
3.17201e-05
-1.13888e-05
3.16719e-05
-1.17636e-05
3.16429e-05
-1.20207e-05
3.14675e-05
-1.20172e-05
3.15092e-05
-1.22981e-05
3.15666e-05
-1.23894e-05
3.13858e-05
-1.23329e-05
3.12529e-05
-1.22132e-05
3.09872e-05
-1.20555e-05
3.04671e-05
-1.15799e-05
2.9835e-05
-1.11729e-05
2.92164e-05
-1.08263e-05
2.83711e-05
-1.03837e-05
2.75662e-05
-1.00544e-05
2.67424e-05
-9.81935e-06
2.58466e-05
-9.5553e-06
2.49351e-05
-9.16787e-06
2.40819e-05
-9.10453e-06
2.33716e-05
-8.77242e-06
2.27294e-05
-8.55228e-06
2.2112e-05
-8.22605e-06
2.18443e-05
-7.59257e-06
2.16225e-05
-7.07646e-06
2.15538e-05
-5.9571e-06
2.14335e-05
-4.86822e-06
2.15172e-05
-3.75938e-06
2.17443e-05
-2.42604e-06
2.17741e-05
-7.63648e-07
2.19641e-05
4.56654e-07
2.19182e-05
2.44998e-06
2.17491e-05
3.81944e-06
2.15109e-05
5.35709e-06
2.11947e-05
6.72425e-06
2.06843e-05
8.31863e-06
2.02503e-05
8.78892e-06
1.97686e-05
1.01263e-05
1.90779e-05
1.13198e-05
1.86278e-05
1.14972e-05
1.80034e-05
1.1404e-05
1.77724e-05
1.19581e-05
1.71541e-05
1.34083e-05
1.64562e-05
1.27274e-05
1.55952e-05
1.11455e-05
1.4883e-05
9.68537e-06
1.49171e-05
1.12404e-05
1.5031e-05
1.45834e-05
1.5887e-05
1.81314e-05
1.66277e-05
2.21417e-05
1.70323e-05
2.50947e-05
1.7686e-05
2.69023e-05
1.82869e-05
2.66152e-05
1.88662e-05
2.46797e-05
1.91407e-05
2.26676e-05
1.97128e-05
1.97483e-05
2.03805e-05
1.66015e-05
2.10129e-05
1.37304e-05
2.14743e-05
1.10854e-05
2.19718e-05
8.62864e-06
2.23782e-05
5.77942e-06
2.28093e-05
2.53795e-06
2.32133e-05
6.42053e-08
2.3635e-05
-2.24084e-06
2.39251e-05
-4.80388e-06
2.45233e-05
-7.58116e-06
2.51983e-05
-1.00523e-05
2.59726e-05
-1.27402e-05
2.64991e-05
-1.55351e-05
2.66806e-05
-1.72401e-05
2.66011e-05
-1.86277e-05
2.62032e-05
-1.87464e-05
2.57752e-05
-1.86898e-05
2.52642e-05
-1.813e-05
2.47595e-05
-1.72971e-05
2.43737e-05
-1.64397e-05
2.39933e-05
-1.50121e-05
2.36145e-05
-1.36478e-05
2.27335e-05
-1.13851e-05
2.19994e-05
-9.24965e-06
2.10941e-05
-7.66959e-06
2.01982e-05
-5.71235e-06
1.95809e-05
-4.17105e-06
1.86275e-05
-2.8489e-06
1.74055e-05
-9.51362e-07
1.6565e-05
1.82567e-07
1.65372e-05
2.55883e-07
1.65048e-05
-3.94047e-07
1.49727e-05
9.35202e-07
1.43568e-05
7.34693e-07
1.50292e-05
-3.31714e-08
1.7231e-05
-2.45659e-06
1.93835e-05
-4.29161e-06
2.1062e-05
-5.3836e-06
2.24296e-05
-5.91612e-06
2.31597e-05
-5.6786e-06
2.37375e-05
-4.52612e-06
2.38242e-05
-3.02114e-06
2.39248e-05
-7.39583e-07
2.41495e-05
1.40761e-06
2.44544e-05
2.93956e-06
2.42549e-05
5.89304e-06
2.44421e-05
8.46438e-06
2.44318e-05
1.04505e-05
2.56456e-05
1.11388e-05
2.47732e-05
1.41488e-05
2.78262e-05
1.15318e-05
2.80679e-05
1.79139e-05
3.04347e-05
1.63878e-05
2.86736e-05
2.70643e-05
3.34255e-05
1.7099e-05
3.1125e-05
3.74503e-05
3.05803e-05
1.90513e-05
3.81539e-05
3.56999e-05
3.18541e-05
3.73961e-09
3.16525e-05
-2.13383e-07
3.14505e-05
-3.77033e-07
3.13323e-05
-4.26261e-07
3.12751e-05
-3.62088e-07
3.12642e-05
-2.48507e-07
3.12663e-05
-1.15142e-07
3.12683e-05
4.43197e-08
3.12994e-05
9.77867e-08
3.1317e-05
2.48672e-07
3.13588e-05
2.29117e-07
3.14068e-05
2.94834e-07
3.14471e-05
2.46878e-07
3.15113e-05
2.08595e-07
3.1551e-05
1.85181e-07
3.15991e-05
8.77584e-08
3.16421e-05
5.84966e-08
3.16575e-05
3.24649e-11
3.16956e-05
-9.66625e-08
3.16944e-05
-1.07627e-07
3.17081e-05
-2.00858e-07
3.17181e-05
-2.64549e-07
3.1707e-05
-2.35988e-07
3.17168e-05
-4.22451e-07
3.17116e-05
-3.12556e-07
3.16975e-05
-4.70084e-07
3.1723e-05
-4.84838e-07
3.17114e-05
-4.60785e-07
3.17484e-05
-5.93653e-07
3.17849e-05
-5.06946e-07
3.18137e-05
-5.81153e-07
3.18886e-05
-5.4603e-07
3.19137e-05
-5.27866e-07
3.19976e-05
-5.5751e-07
3.20356e-05
-5.43804e-07
3.21086e-05
-5.65396e-07
3.21704e-05
-6.7363e-07
3.22181e-05
-6.69918e-07
3.22921e-05
-8.52885e-07
3.23083e-05
-9.33942e-07
3.23685e-05
-1.08358e-06
3.23323e-05
-1.2978e-06
3.23524e-05
-1.4124e-06
3.22732e-05
-1.65486e-06
3.21899e-05
-1.81104e-06
3.20914e-05
-1.96326e-06
3.19076e-05
-2.1487e-06
3.17759e-05
-2.20053e-06
3.15827e-05
-2.29371e-06
3.13946e-05
-2.26902e-06
3.12272e-05
-2.12547e-06
3.10309e-05
-2.05031e-06
3.0848e-05
-1.69986e-06
3.07089e-05
-1.52191e-06
3.05447e-05
-1.18553e-06
3.04547e-05
-7.91828e-07
3.04019e-05
-6.41959e-07
3.03964e-05
-1.47812e-07
3.04584e-05
-1.70994e-08
3.05928e-05
2.28398e-07
3.08129e-05
5.41352e-07
3.10469e-05
4.39329e-07
3.14167e-05
7.26184e-07
3.17388e-05
6.57211e-07
3.20985e-05
5.25552e-07
3.25418e-05
5.06353e-07
3.28102e-05
1.84932e-07
3.32606e-05
-1.35674e-07
3.36004e-05
-5.03026e-07
3.38759e-05
-1.00749e-06
3.42064e-05
-1.62724e-06
3.44247e-05
-2.18305e-06
3.46048e-05
-2.88928e-06
3.4717e-05
-3.66473e-06
3.47533e-05
-4.26449e-06
3.4751e-05
-5.10955e-06
3.45791e-05
-5.78023e-06
3.44575e-05
-6.44851e-06
3.4211e-05
-7.12524e-06
3.38762e-05
-7.68928e-06
3.36452e-05
-8.30275e-06
3.32919e-05
-8.82049e-06
3.29633e-05
-9.29178e-06
3.28018e-05
-9.81914e-06
3.24779e-05
-1.02201e-05
3.22413e-05
-1.04663e-05
3.21915e-05
-1.09946e-05
3.18504e-05
-1.10928e-05
3.17952e-05
-1.13336e-05
3.18243e-05
-1.17927e-05
3.15753e-05
-1.17717e-05
3.15537e-05
-1.19956e-05
3.15167e-05
-1.2261e-05
3.12183e-05
-1.2091e-05
3.09584e-05
-1.20731e-05
3.06071e-05
-1.18618e-05
2.99219e-05
-1.13703e-05
2.92072e-05
-1.08652e-05
2.83643e-05
-1.033e-05
2.73648e-05
-9.82676e-06
2.62286e-05
-9.24753e-06
2.51458e-05
-8.97168e-06
2.38501e-05
-8.52358e-06
2.24748e-05
-8.18004e-06
2.13024e-05
-7.9955e-06
2.00308e-05
-7.83285e-06
1.89065e-05
-7.64821e-06
1.80336e-05
-7.67936e-06
1.74563e-05
-7.6487e-06
1.72284e-05
-7.36473e-06
1.71497e-05
-6.99773e-06
1.74354e-05
-6.24276e-06
1.78631e-05
-5.29592e-06
1.84492e-05
-4.34552e-06
1.87713e-05
-2.74815e-06
1.91521e-05
-1.1444e-06
1.93582e-05
2.50483e-07
1.9456e-05
2.35226e-06
1.93042e-05
3.9712e-06
1.92402e-05
5.42106e-06
1.87558e-05
7.20867e-06
1.83547e-05
8.7197e-06
1.77211e-05
9.42259e-06
1.73787e-05
1.04686e-05
1.67082e-05
1.19904e-05
1.62678e-05
1.19376e-05
1.60095e-05
1.16623e-05
1.60157e-05
1.19519e-05
1.59861e-05
1.34378e-05
1.55268e-05
1.31867e-05
1.50346e-05
1.16377e-05
1.42031e-05
1.05169e-05
1.43998e-05
1.10436e-05
1.46369e-05
1.43463e-05
1.53552e-05
1.74131e-05
1.6375e-05
2.11219e-05
1.70388e-05
2.44309e-05
1.78361e-05
2.6105e-05
1.86929e-05
2.57584e-05
1.94644e-05
2.39082e-05
1.99537e-05
2.21784e-05
2.04897e-05
1.92122e-05
2.1154e-05
1.59372e-05
2.18065e-05
1.3078e-05
2.23198e-05
1.05721e-05
2.29544e-05
7.99404e-06
2.37112e-05
5.02259e-06
2.41138e-05
2.13538e-06
2.4501e-05
-3.23034e-07
2.50577e-05
-2.79751e-06
2.55949e-05
-5.34104e-06
2.62948e-05
-8.2811e-06
2.68181e-05
-1.05756e-05
2.73576e-05
-1.32797e-05
2.76115e-05
-1.5789e-05
2.75411e-05
-1.71697e-05
2.72111e-05
-1.82977e-05
2.66477e-05
-1.8183e-05
2.61513e-05
-1.81934e-05
2.56095e-05
-1.75883e-05
2.51921e-05
-1.68796e-05
2.47054e-05
-1.5953e-05
2.40776e-05
-1.43843e-05
2.32646e-05
-1.28348e-05
2.22303e-05
-1.03509e-05
2.13971e-05
-8.41638e-06
2.0308e-05
-6.58054e-06
1.93453e-05
-4.74966e-06
1.83184e-05
-3.14408e-06
1.70461e-05
-1.57668e-06
1.59336e-05
1.61193e-07
1.55214e-05
5.94721e-07
1.5366e-05
4.11343e-07
1.37786e-05
1.19329e-06
1.27396e-05
1.97418e-06
1.3375e-05
9.93122e-08
1.519e-05
-1.84814e-06
1.74358e-05
-4.7024e-06
1.87983e-05
-5.65414e-06
1.97926e-05
-6.37792e-06
2.05598e-05
-6.6833e-06
2.08687e-05
-5.98749e-06
2.14505e-05
-5.10785e-06
2.15363e-05
-3.10702e-06
2.20023e-05
-1.20556e-06
2.20261e-05
1.38378e-06
2.21985e-05
2.76719e-06
2.20234e-05
6.06809e-06
2.26335e-05
7.85428e-06
2.16385e-05
1.14456e-05
2.48912e-05
7.88614e-06
2.33459e-05
1.56941e-05
2.78058e-05
7.07188e-06
2.71857e-05
1.8534e-05
3.29603e-05
1.06132e-05
3.04605e-05
2.9564e-05
3.41295e-05
1.343e-05
3.5247e-05
3.63328e-05
3.23505e-05
2.19478e-05
3.40885e-05
3.64159e-05
3.2199e-05
-1.25962e-08
3.2117e-05
-1.31293e-07
3.19685e-05
-2.28565e-07
3.18343e-05
-2.92085e-07
3.173e-05
-2.57815e-07
3.16757e-05
-1.94201e-07
3.16605e-05
-9.99099e-08
3.1656e-05
4.88103e-08
3.16974e-05
5.63709e-08
3.17419e-05
2.04239e-07
3.17878e-05
1.83164e-07
3.1877e-05
2.05611e-07
3.19085e-05
2.15457e-07
3.19969e-05
1.20167e-07
3.20407e-05
1.41333e-07
3.20779e-05
5.06212e-08
3.21384e-05
-2.03507e-09
3.21384e-05
7.63696e-11
3.21707e-05
-1.28987e-07
3.2161e-05
-9.79381e-08
3.21585e-05
-1.98325e-07
3.21544e-05
-2.60511e-07
3.21552e-05
-2.36766e-07
3.21315e-05
-3.98725e-07
3.21646e-05
-3.45675e-07
3.21408e-05
-4.46252e-07
3.21703e-05
-5.14332e-07
3.21851e-05
-4.75604e-07
3.21799e-05
-5.88475e-07
3.22327e-05
-5.59717e-07
3.22153e-05
-5.63793e-07
3.22722e-05
-6.02893e-07
3.22737e-05
-5.29428e-07
3.23203e-05
-6.04082e-07
3.23447e-05
-5.68184e-07
3.23961e-05
-6.16791e-07
3.24269e-05
-7.04486e-07
3.24775e-05
-7.20483e-07
3.24949e-05
-8.70336e-07
3.24973e-05
-9.36295e-07
3.251e-05
-1.0963e-06
3.24098e-05
-1.19758e-06
3.2403e-05
-1.40565e-06
3.22386e-05
-1.49039e-06
3.21331e-05
-1.70559e-06
3.19918e-05
-1.82199e-06
3.17665e-05
-1.92337e-06
3.16562e-05
-2.0902e-06
3.14068e-05
-2.04439e-06
3.12587e-05
-2.12084e-06
3.10947e-05
-1.96151e-06
3.0859e-05
-1.81458e-06
3.07854e-05
-1.62632e-06
3.0557e-05
-1.29348e-06
3.04582e-05
-1.08669e-06
3.04211e-05
-7.54776e-07
3.02679e-05
-4.88682e-07
3.04027e-05
-2.82691e-07
3.03829e-05
2.68266e-09
3.05313e-05
8.00563e-08
3.07964e-05
2.76259e-07
3.09203e-05
3.1538e-07
3.13592e-05
2.87339e-07
3.16033e-05
4.13093e-07
3.1978e-05
1.50836e-07
3.23711e-05
1.13229e-07
3.26592e-05
-1.03087e-07
3.30458e-05
-5.22292e-07
3.33105e-05
-7.67777e-07
3.3596e-05
-1.293e-06
3.37767e-05
-1.80795e-06
3.39342e-05
-2.34054e-06
3.40365e-05
-2.99151e-06
3.4e-05
-3.62828e-06
3.40248e-05
-4.28924e-06
3.3888e-05
-4.97277e-06
3.37352e-05
-5.62746e-06
3.3596e-05
-6.30933e-06
3.33657e-05
-6.89485e-06
3.32041e-05
-7.52774e-06
3.3012e-05
-8.11065e-06
3.28415e-05
-8.64997e-06
3.27063e-05
-9.15652e-06
3.25358e-05
-9.64867e-06
3.23156e-05
-9.99986e-06
3.22287e-05
-1.03794e-05
3.19523e-05
-1.07182e-05
3.17796e-05
-1.09202e-05
3.17178e-05
-1.12718e-05
3.13986e-05
-1.14735e-05
3.12316e-05
-1.16047e-05
3.10754e-05
-1.18394e-05
3.06665e-05
-1.18522e-05
3.03332e-05
-1.17576e-05
2.98929e-05
-1.16328e-05
2.91638e-05
-1.11328e-05
2.83225e-05
-1.0529e-05
2.7386e-05
-9.92873e-06
2.60873e-05
-9.0313e-06
2.47431e-05
-8.48255e-06
2.32959e-05
-7.8003e-06
2.15897e-05
-7.2655e-06
1.99068e-05
-6.84064e-06
1.80909e-05
-6.36417e-06
1.63631e-05
-6.26773e-06
1.48083e-05
-6.27797e-06
1.34189e-05
-6.2588e-06
1.23584e-05
-6.61887e-06
1.198e-05
-7.27035e-06
1.24912e-05
-7.87592e-06
1.34227e-05
-7.92927e-06
1.44311e-05
-7.2511e-06
1.54535e-05
-6.31832e-06
1.63894e-05
-5.28143e-06
1.71614e-05
-3.5202e-06
1.78298e-05
-1.81281e-06
1.82862e-05
-2.05905e-07
1.87232e-05
1.91525e-06
1.8676e-05
4.01846e-06
1.86249e-05
5.47212e-06
1.82996e-05
7.534e-06
1.77811e-05
9.23823e-06
1.69995e-05
1.02042e-05
1.64202e-05
1.10479e-05
1.56206e-05
1.279e-05
1.48432e-05
1.27149e-05
1.44474e-05
1.20581e-05
1.43637e-05
1.20356e-05
1.46409e-05
1.31606e-05
1.43589e-05
1.34687e-05
1.4149e-05
1.18476e-05
1.36389e-05
1.1027e-05
1.36027e-05
1.10798e-05
1.42091e-05
1.37399e-05
1.48804e-05
1.67418e-05
1.59561e-05
2.00461e-05
1.69162e-05
2.34708e-05
1.79105e-05
2.51107e-05
1.9112e-05
2.45569e-05
2.0012e-05
2.30082e-05
2.08065e-05
2.13839e-05
2.14156e-05
1.86031e-05
2.19839e-05
1.53689e-05
2.26035e-05
1.24583e-05
2.33335e-05
9.84214e-06
2.4116e-05
7.21157e-06
2.49084e-05
4.23016e-06
2.5325e-05
1.71879e-06
2.5923e-05
-9.20973e-07
2.65792e-05
-3.45372e-06
2.71093e-05
-5.87122e-06
2.75525e-05
-8.72425e-06
2.81344e-05
-1.11575e-05
2.86753e-05
-1.38206e-05
2.87564e-05
-1.58701e-05
2.85059e-05
-1.69192e-05
2.78412e-05
-1.7633e-05
2.72523e-05
-1.7594e-05
2.66827e-05
-1.76239e-05
2.60556e-05
-1.69612e-05
2.54192e-05
-1.62432e-05
2.46163e-05
-1.51501e-05
2.37206e-05
-1.34886e-05
2.24772e-05
-1.15915e-05
2.13584e-05
-9.23209e-06
2.03513e-05
-7.40923e-06
1.92135e-05
-5.44277e-06
1.80995e-05
-3.6356e-06
1.67864e-05
-1.83105e-06
1.54774e-05
-2.67627e-07
1.47122e-05
9.26397e-07
1.44937e-05
8.13236e-07
1.31051e-05
1.79993e-06
1.1411e-05
2.88736e-06
1.1597e-05
1.78818e-06
1.30732e-05
-1.37692e-06
1.53341e-05
-4.109e-06
1.63096e-05
-5.67791e-06
1.6892e-05
-6.2365e-06
1.77502e-05
-7.23619e-06
1.84534e-05
-7.38641e-06
1.92058e-05
-6.73993e-06
1.96578e-05
-5.55991e-06
2.00428e-05
-3.49198e-06
2.03174e-05
-1.48018e-06
2.03601e-05
1.34111e-06
2.06171e-05
2.51017e-06
1.98621e-05
6.82306e-06
2.15154e-05
6.20104e-06
2.0248e-05
1.27129e-05
2.41477e-05
3.98639e-06
2.25177e-05
1.73241e-05
3.06809e-05
-1.0913e-06
2.69959e-05
2.2219e-05
3.35889e-05
4.02023e-06
3.29047e-05
3.02482e-05
3.25565e-05
1.37782e-05
3.64742e-05
3.24151e-05
3.43804e-05
2.40416e-05
3.12601e-05
3.72088e-05
3.19913e-05
-5.98225e-08
3.1963e-05
-1.02957e-07
3.18724e-05
-1.37984e-07
3.17486e-05
-1.68282e-07
3.16376e-05
-1.46765e-07
3.15508e-05
-1.0748e-07
3.15248e-05
-7.38767e-08
3.15207e-05
5.28851e-08
3.15771e-05
-2.37271e-11
3.16554e-05
1.2593e-07
3.17362e-05
1.02419e-07
3.18581e-05
8.3735e-08
3.19002e-05
1.73274e-07
3.19911e-05
2.92566e-08
3.19969e-05
1.356e-07
3.20085e-05
3.89744e-08
3.20058e-05
7.37491e-10
3.19684e-05
3.74656e-08
3.19757e-05
-1.36275e-07
3.19412e-05
-6.35265e-08
3.19588e-05
-2.15918e-07
3.19448e-05
-2.46437e-07
3.19817e-05
-2.73744e-07
3.19798e-05
-3.96831e-07
3.20231e-05
-3.88968e-07
3.20417e-05
-4.648e-07
3.20576e-05
-5.30289e-07
3.20851e-05
-5.03027e-07
3.20582e-05
-5.61643e-07
3.20767e-05
-5.78178e-07
3.20397e-05
-5.26833e-07
3.20565e-05
-6.19706e-07
3.20662e-05
-5.39052e-07
3.20949e-05
-6.32849e-07
3.21548e-05
-6.28001e-07
3.2209e-05
-6.7107e-07
3.22602e-05
-7.5568e-07
3.23261e-05
-7.86361e-07
3.23103e-05
-8.54545e-07
3.23394e-05
-9.6536e-07
3.22742e-05
-1.03113e-06
3.22049e-05
-1.12828e-06
3.21338e-05
-1.33452e-06
3.19739e-05
-1.33054e-06
3.18736e-05
-1.60526e-06
3.16909e-05
-1.63929e-06
3.15324e-05
-1.76486e-06
3.13639e-05
-1.92168e-06
3.11645e-05
-1.84504e-06
3.10188e-05
-1.97507e-06
3.08448e-05
-1.78751e-06
3.07192e-05
-1.68898e-06
3.06205e-05
-1.52761e-06
3.05111e-05
-1.18413e-06
3.04779e-05
-1.05352e-06
3.04018e-05
-6.78609e-07
3.0412e-05
-4.98924e-07
3.04296e-05
-3.00267e-07
3.04437e-05
-1.14151e-08
3.05981e-05
-7.43625e-08
3.06579e-05
2.16463e-07
3.08868e-05
8.64702e-08
3.10956e-05
7.85737e-08
3.13393e-05
1.69384e-07
3.16939e-05
-2.03774e-07
3.19224e-05
-1.15282e-07
3.23118e-05
-4.92465e-07
3.25531e-05
-7.63658e-07
3.28008e-05
-1.01546e-06
3.30803e-05
-1.57244e-06
3.31499e-05
-1.87757e-06
3.33419e-05
-2.5326e-06
3.33798e-05
-3.02939e-06
3.33594e-05
-3.60787e-06
3.34133e-05
-4.34315e-06
3.32903e-05
-4.84978e-06
3.32543e-05
-5.59143e-06
3.31739e-05
-6.22896e-06
3.30615e-05
-6.7824e-06
3.30034e-05
-7.46962e-06
3.28747e-05
-7.98199e-06
3.27392e-05
-8.51445e-06
3.25894e-05
-9.00677e-06
3.23467e-05
-9.4059e-06
3.21443e-05
-9.79745e-06
3.19074e-05
-1.01426e-05
3.16146e-05
-1.04254e-05
3.14177e-05
-1.07233e-05
3.11072e-05
-1.09613e-05
3.07562e-05
-1.11224e-05
3.04621e-05
-1.13106e-05
3.00019e-05
-1.13793e-05
2.94644e-05
-1.13147e-05
2.89442e-05
-1.12374e-05
2.8072e-05
-1.07606e-05
2.71265e-05
-1.01873e-05
2.59655e-05
-9.36799e-06
2.44446e-05
-8.40782e-06
2.28797e-05
-7.46641e-06
2.09667e-05
-6.56961e-06
1.90434e-05
-5.87695e-06
1.6855e-05
-5.07712e-06
1.46786e-05
-4.66421e-06
1.26971e-05
-4.38274e-06
1.08092e-05
-4.37982e-06
8.93921e-06
-4.40796e-06
7.191e-06
-4.5106e-06
6.94611e-06
-6.37398e-06
8.09805e-06
-8.42229e-06
9.85504e-06
-9.63291e-06
1.15747e-05
-9.64893e-06
1.30843e-05
-8.76067e-06
1.439e-05
-7.62402e-06
1.53412e-05
-6.23265e-06
1.61138e-05
-4.2928e-06
1.67589e-05
-2.4579e-06
1.7186e-05
-6.32988e-07
1.76436e-05
1.45763e-06
1.779e-05
3.87209e-06
1.78465e-05
5.4156e-06
1.77247e-05
7.65574e-06
1.73889e-05
9.57409e-06
1.68358e-05
1.07573e-05
1.6189e-05
1.16947e-05
1.55598e-05
1.34192e-05
1.45447e-05
1.373e-05
1.37684e-05
1.28344e-05
1.34512e-05
1.23529e-05
1.35135e-05
1.30983e-05
1.35349e-05
1.34473e-05
1.32372e-05
1.21452e-05
1.29978e-05
1.12664e-05
1.29051e-05
1.11725e-05
1.36578e-05
1.29871e-05
1.44939e-05
1.59057e-05
1.54278e-05
1.91123e-05
1.65939e-05
2.23046e-05
1.78405e-05
2.38641e-05
1.92936e-05
2.31037e-05
2.03784e-05
2.19234e-05
2.15233e-05
2.0239e-05
2.2345e-05
1.77813e-05
2.29652e-05
1.47487e-05
2.37083e-05
1.17152e-05
2.4475e-05
9.07538e-06
2.52878e-05
6.3988e-06
2.60184e-05
3.49953e-06
2.65333e-05
1.20394e-06
2.72094e-05
-1.59708e-06
2.77957e-05
-4.04005e-06
2.83686e-05
-6.44414e-06
2.89988e-05
-9.35441e-06
2.96012e-05
-1.17599e-05
2.96911e-05
-1.39105e-05
2.93293e-05
-1.55082e-05
2.86583e-05
-1.62482e-05
2.7839e-05
-1.68138e-05
2.72932e-05
-1.70482e-05
2.65451e-05
-1.68757e-05
2.58151e-05
-1.62312e-05
2.50499e-05
-1.54781e-05
2.3953e-05
-1.40532e-05
2.26194e-05
-1.2155e-05
2.12232e-05
-1.01952e-05
2.0237e-05
-8.24587e-06
1.91836e-05
-6.35584e-06
1.82133e-05
-4.47249e-06
1.71578e-05
-2.5801e-06
1.59513e-05
-6.24584e-07
1.45999e-05
1.08383e-06
1.38743e-05
1.652e-06
1.26198e-05
2.0677e-06
1.07156e-05
3.70417e-06
9.96231e-06
3.64061e-06
1.10365e-05
7.13991e-07
1.27803e-05
-3.12074e-06
1.36845e-05
-5.0132e-06
1.42815e-05
-6.27493e-06
1.52627e-05
-7.2177e-06
1.61438e-05
-8.11724e-06
1.6629e-05
-7.87159e-06
1.73563e-05
-7.46721e-06
1.77572e-05
-5.96083e-06
1.80403e-05
-3.77507e-06
1.83324e-05
-1.77227e-06
1.82094e-05
1.46408e-06
1.88582e-05
1.86134e-06
1.79582e-05
7.72312e-06
1.92867e-05
4.87246e-06
1.83571e-05
1.36426e-05
2.40827e-05
-1.73928e-06
1.89458e-05
2.2461e-05
2.63035e-05
-8.44905e-06
2.47991e-05
2.37234e-05
3.08696e-05
-2.05032e-06
3.36121e-05
2.75058e-05
3.21577e-05
1.52326e-05
3.63472e-05
2.82255e-05
3.57697e-05
2.46192e-05
2.92105e-05
3.78193e-05
3.1841e-05
-1.0448e-07
3.18131e-05
-7.50034e-08
3.176e-05
-8.49539e-08
3.16544e-05
-6.26384e-08
3.1558e-05
-5.03523e-08
3.14871e-05
-3.65598e-08
3.14266e-05
-1.33905e-08
3.14371e-05
4.23422e-08
3.14273e-05
9.76074e-09
3.14841e-05
6.91532e-08
3.15276e-05
5.89371e-08
3.16022e-05
9.16997e-09
3.16732e-05
1.0228e-07
3.17475e-05
-4.50757e-08
3.18075e-05
7.56076e-08
3.18544e-05
-7.9673e-09
3.18767e-05
-2.15489e-08
3.18851e-05
2.90721e-08
3.18861e-05
-1.37288e-07
3.18808e-05
-5.82471e-08
3.18993e-05
-2.34414e-07
3.1899e-05
-2.46075e-07
3.19288e-05
-3.03532e-07
3.19282e-05
-3.9623e-07
3.19186e-05
-3.79402e-07
3.19099e-05
-4.56111e-07
3.18712e-05
-4.9161e-07
3.18486e-05
-4.80445e-07
3.18445e-05
-5.57475e-07
3.18261e-05
-5.5977e-07
3.18533e-05
-5.54069e-07
3.18741e-05
-6.40535e-07
3.19076e-05
-5.72537e-07
3.19466e-05
-6.71829e-07
3.19832e-05
-6.64631e-07
3.20189e-05
-7.06768e-07
3.20571e-05
-7.93895e-07
3.20989e-05
-8.28141e-07
3.21207e-05
-8.7629e-07
3.21729e-05
-1.01757e-06
3.21513e-05
-1.00955e-06
3.21715e-05
-1.14849e-06
3.21051e-05
-1.26806e-06
3.20343e-05
-1.25981e-06
3.19297e-05
-1.50065e-06
3.17516e-05
-1.46118e-06
3.15933e-05
-1.60658e-06
3.13435e-05
-1.67188e-06
3.11151e-05
-1.6166e-06
3.08919e-05
-1.75189e-06
3.06769e-05
-1.5725e-06
3.05455e-05
-1.55761e-06
3.04537e-05
-1.4358e-06
3.04101e-05
-1.14049e-06
3.04363e-05
-1.07969e-06
3.0467e-05
-7.09351e-07
3.05147e-05
-5.4658e-07
3.06029e-05
-3.885e-07
3.06826e-05
-9.11238e-08
3.07632e-05
-1.54973e-07
3.08981e-05
8.15385e-08
3.09818e-05
2.83372e-09
3.11242e-05
-6.39028e-08
3.13527e-05
-5.90964e-08
3.14631e-05
-3.14145e-07
3.17568e-05
-4.08949e-07
3.19261e-05
-6.61823e-07
3.21154e-05
-9.52929e-07
3.23847e-05
-1.28474e-06
3.24584e-05
-1.64616e-06
3.26843e-05
-2.10344e-06
3.27701e-05
-2.61844e-06
3.28188e-05
-3.07814e-06
3.29593e-05
-3.74833e-06
3.29075e-05
-4.2914e-06
3.29727e-05
-4.91489e-06
3.29751e-05
-5.59385e-06
3.28761e-05
-6.13004e-06
3.28872e-05
-6.79346e-06
3.27423e-05
-7.32474e-06
3.25793e-05
-7.81893e-06
3.2444e-05
-8.37922e-06
3.21782e-05
-8.74098e-06
3.19527e-05
-9.18037e-06
3.17204e-05
-9.56513e-06
3.13987e-05
-9.82094e-06
3.10953e-05
-1.01219e-05
3.07186e-05
-1.03466e-05
3.01926e-05
-1.04354e-05
2.96939e-05
-1.06237e-05
2.90126e-05
-1.06293e-05
2.82014e-05
-1.05682e-05
2.73546e-05
-1.04678e-05
2.62327e-05
-1.01156e-05
2.50773e-05
-9.60521e-06
2.36446e-05
-8.75456e-06
2.20554e-05
-7.77876e-06
2.02021e-05
-6.55459e-06
1.81789e-05
-5.44319e-06
1.61042e-05
-4.49493e-06
1.37991e-05
-3.5718e-06
1.15826e-05
-2.86065e-06
9.43989e-06
-2.52148e-06
7.65387e-06
-2.59672e-06
5.64308e-06
-2.36902e-06
3.22414e-06
-1.98902e-06
2.67812e-06
-3.96457e-06
4.34922e-06
-8.04508e-06
6.69035e-06
-1.07634e-05
8.46426e-06
-1.14068e-05
9.63078e-06
-1.08154e-05
1.06267e-05
-9.75657e-06
1.14411e-05
-8.43847e-06
1.20793e-05
-6.87079e-06
1.27306e-05
-4.94415e-06
1.33929e-05
-3.12016e-06
1.39704e-05
-1.21054e-06
1.43976e-05
1.03043e-06
1.48193e-05
3.45042e-06
1.50934e-05
5.14149e-06
1.54326e-05
7.3165e-06
1.5595e-05
9.41174e-06
1.54856e-05
1.08667e-05
1.52474e-05
1.19328e-05
1.49791e-05
1.36875e-05
1.43016e-05
1.44075e-05
1.34732e-05
1.36628e-05
1.28461e-05
1.29799e-05
1.27487e-05
1.31958e-05
1.2741e-05
1.3455e-05
1.24694e-05
1.24169e-05
1.22879e-05
1.14479e-05
1.23089e-05
1.11515e-05
1.28632e-05
1.24328e-05
1.39709e-05
1.4798e-05
1.50406e-05
1.80426e-05
1.62999e-05
2.10454e-05
1.77407e-05
2.24232e-05
1.92497e-05
2.15947e-05
2.05636e-05
2.06096e-05
2.19574e-05
1.88452e-05
2.31056e-05
1.66331e-05
2.39651e-05
1.38893e-05
2.48188e-05
1.08616e-05
2.55928e-05
8.30137e-06
2.65071e-05
5.48444e-06
2.71381e-05
2.86858e-06
2.77922e-05
5.49773e-07
2.84815e-05
-2.28633e-06
2.91015e-05
-4.66003e-06
2.98013e-05
-7.14393e-06
3.02952e-05
-9.84834e-06
3.04261e-05
-1.18908e-05
3.01442e-05
-1.36287e-05
2.96131e-05
-1.49771e-05
2.88384e-05
-1.54734e-05
2.80743e-05
-1.60497e-05
2.73944e-05
-1.63683e-05
2.64512e-05
-1.59326e-05
2.55546e-05
-1.53346e-05
2.4417e-05
-1.43404e-05
2.29529e-05
-1.25891e-05
2.14798e-05
-1.06819e-05
2.02082e-05
-8.92361e-06
1.92941e-05
-7.33179e-06
1.86657e-05
-5.7274e-06
1.78623e-05
-3.66907e-06
1.62612e-05
-9.79057e-07
1.46736e-05
9.63057e-07
1.32925e-05
2.46488e-06
1.24309e-05
2.51365e-06
1.06571e-05
3.84148e-06
9.22493e-06
5.13632e-06
9.19688e-06
3.66866e-06
1.05143e-05
-6.03405e-07
1.11995e-05
-3.80595e-06
1.19768e-05
-5.79055e-06
1.28482e-05
-7.14631e-06
1.34467e-05
-7.81616e-06
1.3929e-05
-8.59958e-06
1.46156e-05
-8.55814e-06
1.51004e-05
-7.95206e-06
1.5199e-05
-6.05944e-06
1.54495e-05
-4.02555e-06
1.58691e-05
-2.19183e-06
1.58686e-05
1.46452e-06
1.63416e-05
1.38835e-06
1.56225e-05
8.44223e-06
1.674e-05
3.75501e-06
1.38636e-05
1.6519e-05
1.99585e-05
-7.83419e-06
1.44426e-05
2.79769e-05
1.58e-05
-9.80649e-06
1.77176e-05
2.18059e-05
2.20001e-05
-6.33279e-06
2.95312e-05
1.99746e-05
3.03383e-05
1.44256e-05
3.5024e-05
2.35398e-05
3.63813e-05
2.32619e-05
2.73526e-05
3.82391e-05
3.17854e-05
-1.04449e-07
3.17112e-05
-8.23029e-10
3.16515e-05
-2.5281e-08
3.15348e-05
5.40878e-08
3.14552e-05
2.92049e-08
3.14003e-05
1.83804e-08
3.1357e-05
2.99053e-08
3.14e-05
-6.90924e-10
3.14018e-05
7.97963e-09
3.14637e-05
7.27612e-09
3.14939e-05
2.86825e-08
3.15214e-05
-1.82805e-08
3.15629e-05
6.07454e-08
3.15755e-05
-5.76579e-08
3.16318e-05
1.93499e-08
3.16712e-05
-4.73777e-08
3.17371e-05
-8.74404e-08
3.18052e-05
-3.90545e-08
3.18482e-05
-1.80255e-07
3.18987e-05
-1.08789e-07
3.19011e-05
-2.36819e-07
3.18969e-05
-2.4188e-07
3.18764e-05
-2.83035e-07
3.18505e-05
-3.70286e-07
3.18123e-05
-3.4125e-07
3.18046e-05
-4.4839e-07
3.17817e-05
-4.68691e-07
3.17803e-05
-4.79091e-07
3.18272e-05
-6.04378e-07
3.1808e-05
-5.40574e-07
3.18825e-05
-6.28497e-07
3.18697e-05
-6.27782e-07
3.19005e-05
-6.03315e-07
3.19135e-05
-6.84848e-07
3.18856e-05
-6.36777e-07
3.19258e-05
-7.46955e-07
3.18927e-05
-7.60745e-07
3.19229e-05
-8.58317e-07
3.19544e-05
-9.07858e-07
3.1935e-05
-9.9816e-07
3.20001e-05
-1.07461e-06
3.19614e-05
-1.10982e-06
3.19457e-05
-1.25233e-06
3.1929e-05
-1.24314e-06
3.17947e-05
-1.36639e-06
3.17631e-05
-1.4295e-06
3.15887e-05
-1.43219e-06
3.14567e-05
-1.5399e-06
3.13181e-05
-1.478e-06
3.10842e-05
-1.51807e-06
3.09839e-05
-1.47213e-06
3.0777e-05
-1.3507e-06
3.06709e-05
-1.32971e-06
3.0617e-05
-1.08657e-06
3.05088e-05
-9.71501e-07
3.05703e-05
-7.70848e-07
3.05553e-05
-5.31597e-07
3.05833e-05
-4.16499e-07
3.07137e-05
-2.21506e-07
3.07016e-05
-1.42858e-07
3.08803e-05
-9.71748e-08
3.09542e-05
-7.10583e-08
3.10361e-05
-1.45809e-07
3.12199e-05
-2.42958e-07
3.12953e-05
-3.89503e-07
3.1476e-05
-5.89699e-07
3.16263e-05
-8.12047e-07
3.17918e-05
-1.11843e-06
3.19399e-05
-1.43285e-06
3.21241e-05
-1.83038e-06
3.22714e-05
-2.25071e-06
3.23748e-05
-2.72186e-06
3.25616e-05
-3.26491e-06
3.25784e-05
-3.7652e-06
3.26723e-05
-4.38528e-06
3.27186e-05
-4.96123e-06
3.26191e-05
-5.49432e-06
3.26248e-05
-6.13567e-06
3.24748e-05
-6.64351e-06
3.23062e-05
-7.15615e-06
3.21941e-05
-7.70677e-06
3.19334e-05
-8.11852e-06
3.17028e-05
-8.51044e-06
3.1459e-05
-8.93655e-06
3.1004e-05
-9.11014e-06
3.06009e-05
-9.41787e-06
3.00129e-05
-9.53392e-06
2.92156e-05
-9.54931e-06
2.84478e-05
-9.66757e-06
2.73709e-05
-9.54668e-06
2.62045e-05
-9.46295e-06
2.49274e-05
-9.29108e-06
2.34822e-05
-9.0226e-06
2.20172e-05
-8.65058e-06
2.04103e-05
-7.99826e-06
1.88094e-05
-7.15365e-06
1.71391e-05
-6.10849e-06
1.5396e-05
-4.81147e-06
1.37326e-05
-3.7798e-06
1.17176e-05
-2.47993e-06
9.47409e-06
-1.3283e-06
7.58872e-06
-9.75275e-07
5.93533e-06
-8.68096e-07
3.94059e-06
-6.01985e-07
1.02174e-06
5.4983e-07
-1.39116e-07
-8.28169e-07
1.24607e-06
-5.34976e-06
2.51853e-06
-9.31754e-06
3.58567e-06
-1.18306e-05
4.57579e-06
-1.23969e-05
5.53117e-06
-1.17708e-05
6.56753e-06
-1.07929e-05
7.49626e-06
-9.3672e-06
8.37574e-06
-7.75028e-06
9.26799e-06
-5.83639e-06
1.00075e-05
-3.85971e-06
1.05602e-05
-1.76321e-06
1.10123e-05
5.78336e-07
1.158e-05
2.88277e-06
1.21056e-05
4.61585e-06
1.26304e-05
6.79173e-06
1.29671e-05
9.07503e-06
1.32738e-05
1.056e-05
1.34769e-05
1.17297e-05
1.35895e-05
1.35749e-05
1.33438e-05
1.46532e-05
1.28429e-05
1.41637e-05
1.22499e-05
1.3573e-05
1.20733e-05
1.33723e-05
1.19941e-05
1.35343e-05
1.17933e-05
1.26177e-05
1.15839e-05
1.16572e-05
1.17875e-05
1.0948e-05
1.23423e-05
1.1878e-05
1.3222e-05
1.39183e-05
1.45001e-05
1.67645e-05
1.59728e-05
1.95727e-05
1.77062e-05
2.06898e-05
1.92806e-05
2.00203e-05
2.07848e-05
1.91054e-05
2.22965e-05
1.73336e-05
2.36042e-05
1.53253e-05
2.47807e-05
1.27128e-05
2.57119e-05
9.93044e-06
2.6629e-05
7.38427e-06
2.75098e-05
4.60356e-06
2.817e-05
2.20839e-06
2.90069e-05
-2.87073e-07
2.96646e-05
-2.94401e-06
3.02355e-05
-5.23099e-06
3.08792e-05
-7.78764e-06
3.1079e-05
-1.00481e-05
3.08781e-05
-1.16898e-05
3.04399e-05
-1.31905e-05
2.95535e-05
-1.40907e-05
2.85596e-05
-1.44795e-05
2.76966e-05
-1.51867e-05
2.67069e-05
-1.53786e-05
2.55851e-05
-1.48108e-05
2.44529e-05
-1.42024e-05
2.30307e-05
-1.29182e-05
2.14392e-05
-1.09975e-05
2.01414e-05
-9.38417e-06
1.93028e-05
-8.08498e-06
1.88211e-05
-6.8501e-06
1.83215e-05
-5.22784e-06
1.71772e-05
-2.52476e-06
1.56503e-05
5.47896e-07
1.44814e-05
2.13193e-06
1.38375e-05
3.10881e-06
1.25703e-05
3.78081e-06
1.03405e-05
6.07131e-06
8.83627e-06
6.64052e-06
8.72443e-06
3.7805e-06
9.29197e-06
-1.17094e-06
9.72498e-06
-4.23896e-06
1.0552e-05
-6.61759e-06
1.07543e-05
-7.34861e-06
1.13369e-05
-8.3987e-06
1.20939e-05
-9.35659e-06
1.2266e-05
-8.73029e-06
1.24162e-05
-8.10221e-06
1.2957e-05
-6.60028e-06
1.31325e-05
-4.20106e-06
1.33192e-05
-2.37854e-06
1.36758e-05
1.10794e-06
1.40288e-05
1.03536e-06
1.34199e-05
9.05109e-06
1.32163e-05
3.9587e-06
9.83689e-06
1.98984e-05
1.38843e-05
-1.18816e-05
1.24413e-05
2.94199e-05
1.3456e-05
-1.08212e-05
1.44265e-05
2.08354e-05
1.42282e-05
-6.13452e-06
2.29993e-05
1.12035e-05
2.58855e-05
1.15394e-05
3.11817e-05
1.82435e-05
3.46549e-05
1.97888e-05
2.49042e-05
3.71033e-05
3.16239e-05
-6.01851e-08
3.15794e-05
4.36491e-08
3.15282e-05
2.59194e-08
3.14715e-05
1.10761e-07
3.14374e-05
6.33651e-08
3.14067e-05
4.90224e-08
3.1407e-05
2.96574e-08
3.14381e-05
-3.17853e-08
3.14637e-05
-1.76059e-08
3.15108e-05
-3.98203e-08
3.15472e-05
-7.71612e-09
3.15597e-05
-3.08639e-08
3.15923e-05
2.81429e-08
3.15798e-05
-4.50926e-08
3.16081e-05
-8.95766e-09
3.16218e-05
-6.10441e-08
3.1648e-05
-1.13733e-07
3.17125e-05
-1.0352e-07
3.173e-05
-1.97735e-07
3.18025e-05
-1.81251e-07
3.181e-05
-2.4433e-07
3.18361e-05
-2.67983e-07
3.18498e-05
-2.96724e-07
3.18458e-05
-3.66352e-07
3.18685e-05
-3.63884e-07
3.18723e-05
-4.52206e-07
3.18812e-05
-4.77625e-07
3.18875e-05
-4.85361e-07
3.18778e-05
-5.94732e-07
3.18605e-05
-5.2322e-07
3.18542e-05
-6.22206e-07
3.18346e-05
-6.08227e-07
3.18495e-05
-6.18226e-07
3.18536e-05
-6.88942e-07
3.188e-05
-6.63188e-07
3.19084e-05
-7.7531e-07
3.19156e-05
-7.67927e-07
3.1932e-05
-8.74696e-07
3.19259e-05
-9.01822e-07
3.18972e-05
-9.69406e-07
3.18903e-05
-1.06771e-06
3.18396e-05
-1.05919e-06
3.18226e-05
-1.23527e-06
3.17765e-05
-1.19708e-06
3.17242e-05
-1.31405e-06
3.16817e-05
-1.38707e-06
3.15807e-05
-1.33119e-06
3.15362e-05
-1.49538e-06
3.13984e-05
-1.34013e-06
3.13098e-05
-1.4295e-06
3.11806e-05
-1.34289e-06
3.10226e-05
-1.19274e-06
3.09204e-05
-1.22753e-06
3.07636e-05
-9.2979e-07
3.06981e-05
-9.06004e-07
3.06426e-05
-7.15281e-07
3.06253e-05
-5.14287e-07
3.06881e-05
-4.79335e-07
3.07195e-05
-2.52884e-07
3.08159e-05
-2.39315e-07
3.09042e-05
-1.85403e-07
3.09719e-05
-1.38773e-07
3.10957e-05
-2.69684e-07
3.11427e-05
-2.89951e-07
3.12813e-05
-5.28044e-07
3.13811e-05
-6.89543e-07
3.1502e-05
-9.32876e-07
3.1671e-05
-1.28744e-06
3.17597e-05
-1.52159e-06
3.19427e-05
-2.01338e-06
3.20404e-05
-2.3484e-06
3.2139e-05
-2.82049e-06
3.22539e-05
-3.37977e-06
3.22554e-05
-3.7667e-06
3.23221e-05
-4.45199e-06
3.2261e-05
-4.90012e-06
3.22328e-05
-5.46611e-06
3.21508e-05
-6.05373e-06
3.19782e-05
-6.47089e-06
3.18883e-05
-7.06627e-06
3.15733e-05
-7.39178e-06
3.12836e-05
-7.82883e-06
3.08739e-05
-8.10074e-06
3.02365e-05
-8.29914e-06
2.96213e-05
-8.49487e-06
2.87134e-05
-8.50999e-06
2.76862e-05
-8.50677e-06
2.65359e-05
-8.39892e-06
2.51017e-05
-8.23342e-06
2.35537e-05
-7.99867e-06
2.18705e-05
-7.77977e-06
2.01141e-05
-7.53472e-06
1.83148e-05
-7.22326e-06
1.66029e-05
-6.93866e-06
1.53379e-05
-6.73331e-06
1.431e-05
-6.12571e-06
1.32894e-05
-5.08783e-06
1.25094e-05
-4.03156e-06
1.09897e-05
-2.2601e-06
9.06686e-06
-5.57044e-07
7.20832e-06
5.30232e-07
5.23266e-06
1.00038e-06
3.41273e-06
9.51843e-07
5.00521e-07
2.31022e-06
-1.8449e-06
2.89525e-06
-1.75801e-06
-9.15065e-07
-1.65774e-06
-5.45002e-06
-1.29636e-06
-9.67892e-06
-3.42706e-07
-1.27842e-05
1.05474e-06
-1.37944e-05
2.30331e-06
-1.30194e-05
3.32804e-06
-1.18177e-05
4.23936e-06
-1.02785e-05
5.06741e-06
-8.57833e-06
5.80508e-06
-6.57406e-06
6.43469e-06
-4.48932e-06
6.93152e-06
-2.26004e-06
7.54558e-06
-3.57236e-08
8.26198e-06
2.16637e-06
8.84053e-06
4.0373e-06
9.33954e-06
6.29272e-06
9.88201e-06
8.53256e-06
1.04824e-05
9.95966e-06
1.09207e-05
1.12914e-05
1.14153e-05
1.30803e-05
1.16396e-05
1.44289e-05
1.15874e-05
1.42159e-05
1.13127e-05
1.38477e-05
1.11069e-05
1.35781e-05
1.1269e-05
1.33722e-05
1.10495e-05
1.28372e-05
1.09956e-05
1.17112e-05
1.11227e-05
1.08209e-05
1.17046e-05
1.12961e-05
1.25928e-05
1.30301e-05
1.39328e-05
1.54245e-05
1.55975e-05
1.7908e-05
1.75469e-05
1.87404e-05
1.92328e-05
1.83343e-05
2.10044e-05
1.73338e-05
2.26259e-05
1.57121e-05
2.40376e-05
1.39136e-05
2.5421e-05
1.13294e-05
2.64535e-05
8.89789e-06
2.75054e-05
6.33233e-06
2.8361e-05
3.74795e-06
2.91582e-05
1.41121e-06
3.00419e-05
-1.17078e-06
3.06469e-05
-3.549e-06
3.11924e-05
-5.77651e-06
3.16076e-05
-8.20279e-06
3.14304e-05
-9.87095e-06
3.09436e-05
-1.1203e-05
3.01549e-05
-1.24019e-05
2.90854e-05
-1.30212e-05
2.81537e-05
-1.35478e-05
2.71707e-05
-1.42037e-05
2.58362e-05
-1.40441e-05
2.43778e-05
-1.33524e-05
2.28741e-05
-1.26987e-05
2.11712e-05
-1.12153e-05
1.97599e-05
-9.58618e-06
1.89703e-05
-8.59456e-06
1.83139e-05
-7.42865e-06
1.7842e-05
-6.37815e-06
1.7276e-05
-4.66183e-06
1.61588e-05
-1.4076e-06
1.45578e-05
2.14895e-06
1.31321e-05
3.5576e-06
1.20983e-05
4.14263e-06
1.04129e-05
5.46619e-06
8.73563e-06
7.74856e-06
7.76127e-06
7.61488e-06
7.80195e-06
3.73982e-06
7.8411e-06
-1.21009e-06
8.18224e-06
-4.5801e-06
8.3207e-06
-6.75606e-06
8.67184e-06
-7.69975e-06
9.52284e-06
-9.2497e-06
9.55825e-06
-9.392e-06
9.66595e-06
-8.838e-06
1.01308e-05
-8.56707e-06
1.03484e-05
-6.81786e-06
1.02462e-05
-4.09891e-06
1.08857e-05
-3.018e-06
1.11133e-05
8.80373e-07
1.12639e-05
8.84681e-07
1.17392e-05
8.5758e-06
1.14969e-05
4.20106e-06
6.84442e-06
2.45508e-05
9.82923e-06
-1.48664e-05
1.10334e-05
2.82157e-05
1.2778e-05
-1.25658e-05
1.36583e-05
1.99552e-05
1.11945e-05
-3.67079e-06
1.77935e-05
4.60455e-06
2.10511e-05
8.2818e-06
2.64115e-05
1.28831e-05
3.10013e-05
1.5199e-05
2.17602e-05
3.41453e-05
3.16557e-05
-4.2196e-08
3.16646e-05
3.47259e-08
3.16297e-05
6.08254e-08
3.16128e-05
1.2763e-07
3.15674e-05
1.08839e-07
3.15164e-05
1.0003e-07
3.14879e-05
5.81235e-08
3.14567e-05
-5.50598e-10
3.14424e-05
-3.36554e-09
3.1459e-05
-5.6374e-08
3.14917e-05
-4.04645e-08
3.1537e-05
-7.61261e-08
3.16244e-05
-5.92309e-08
3.16651e-05
-8.58443e-08
3.17433e-05
-8.71755e-08
3.17822e-05
-9.9888e-08
3.17938e-05
-1.25395e-07
3.18298e-05
-1.39524e-07
3.18047e-05
-1.72623e-07
3.18234e-05
-1.99913e-07
3.18281e-05
-2.4907e-07
3.18375e-05
-2.7731e-07
3.18719e-05
-3.31213e-07
3.1876e-05
-3.70397e-07
3.19076e-05
-3.9547e-07
3.19042e-05
-4.48863e-07
3.18957e-05
-4.69088e-07
3.19094e-05
-4.9908e-07
3.18677e-05
-5.53046e-07
3.18939e-05
-5.49427e-07
3.18703e-05
-5.98559e-07
3.18869e-05
-6.24813e-07
3.1907e-05
-6.38383e-07
3.19052e-05
-6.87082e-07
3.1943e-05
-7.00984e-07
3.19271e-05
-7.59404e-07
3.19527e-05
-7.9353e-07
3.19259e-05
-8.47969e-07
3.19459e-05
-9.21819e-07
3.19308e-05
-9.54271e-07
3.1921e-05
-1.05792e-06
3.19442e-05
-1.08232e-06
3.18933e-05
-1.18443e-06
3.1913e-05
-1.21673e-06
3.18474e-05
-1.24848e-06
3.17873e-05
-1.327e-06
3.17238e-05
-1.26764e-06
3.15745e-05
-1.34607e-06
3.14978e-05
-1.26343e-06
3.13227e-05
-1.25445e-06
3.12106e-05
-1.23078e-06
3.11078e-05
-1.08991e-06
3.09569e-05
-1.07669e-06
3.0948e-05
-9.20838e-07
3.08397e-05
-7.9776e-07
3.08354e-05
-7.10953e-07
3.08545e-05
-5.33352e-07
3.08341e-05
-4.5891e-07
3.09238e-05
-3.42631e-07
3.09508e-05
-2.66315e-07
3.10121e-05
-2.4672e-07
3.10983e-05
-2.25001e-07
3.11239e-05
-2.9526e-07
3.12158e-05
-3.81872e-07
3.12476e-05
-5.59824e-07
3.13179e-05
-7.59831e-07
3.1403e-05
-1.01798e-06
3.14476e-05
-1.33205e-06
3.15599e-05
-1.63385e-06
3.16039e-05
-2.05736e-06
3.1692e-05
-2.43656e-06
3.17415e-05
-2.87e-06
3.17711e-05
-3.40935e-06
3.18084e-05
-3.80401e-06
3.17615e-05
-4.4051e-06
3.1736e-05
-4.87462e-06
3.16057e-05
-5.33573e-06
3.14314e-05
-5.87949e-06
3.11826e-05
-6.2221e-06
3.07757e-05
-6.65934e-06
3.03075e-05
-6.92353e-06
2.96581e-05
-7.17947e-06
2.88631e-05
-7.30573e-06
2.79717e-05
-7.40775e-06
2.68559e-05
-7.37908e-06
2.55904e-05
-7.24451e-06
2.41186e-05
-7.03501e-06
2.23559e-05
-6.63621e-06
2.04929e-05
-6.37036e-06
1.84948e-05
-6.00056e-06
1.63454e-05
-5.63042e-06
1.42141e-05
-5.40342e-06
1.25035e-05
-5.51261e-06
1.19313e-05
-6.3665e-06
1.19623e-05
-6.76428e-06
1.2078e-05
-6.24144e-06
1.2039e-05
-5.04878e-06
1.10647e-05
-3.05732e-06
9.98282e-06
-1.1782e-06
8.32508e-06
1.1007e-06
5.75883e-06
3.09648e-06
3.65494e-06
3.10427e-06
1.03319e-06
3.5736e-06
-2.23739e-06
5.5808e-06
-3.57431e-06
4.23218e-06
-3.8951e-06
-5.94277e-07
-4.12002e-06
-5.2251e-06
-3.78715e-06
-1.00118e-05
-3.24093e-06
-1.33304e-05
-2.41081e-06
-1.46245e-05
-1.4927e-06
-1.39375e-05
-5.87441e-07
-1.27229e-05
3.22381e-07
-1.11883e-05
1.0706e-06
-9.32656e-06
1.79553e-06
-7.29899e-06
2.46628e-06
-5.16007e-06
3.0588e-06
-2.85257e-06
3.65961e-06
-6.36532e-07
4.2622e-06
1.56379e-06
4.74547e-06
3.55404e-06
5.33242e-06
5.70576e-06
6.22562e-06
7.63936e-06
7.10373e-06
9.08155e-06
7.8125e-06
1.05826e-05
8.60733e-06
1.22854e-05
9.22779e-06
1.38085e-05
9.56235e-06
1.38813e-05
9.87855e-06
1.35315e-05
9.91647e-06
1.35402e-05
1.01757e-05
1.31129e-05
1.01942e-05
1.28187e-05
1.0396e-05
1.15093e-05
1.05264e-05
1.06906e-05
1.10495e-05
1.0773e-05
1.20446e-05
1.2035e-05
1.32947e-05
1.41743e-05
1.53072e-05
1.58955e-05
1.74242e-05
1.66235e-05
1.92162e-05
1.65424e-05
2.11079e-05
1.54421e-05
2.27964e-05
1.40235e-05
2.44938e-05
1.22163e-05
2.58761e-05
9.94714e-06
2.70964e-05
7.67757e-06
2.8244e-05
5.18477e-06
2.9145e-05
2.84697e-06
3.00382e-05
5.17912e-07
3.08913e-05
-2.02378e-06
3.13864e-05
-4.04419e-06
3.17846e-05
-6.17462e-06
3.17772e-05
-8.19544e-06
3.11667e-05
-9.26045e-06
3.05096e-05
-1.05459e-05
2.96268e-05
-1.15191e-05
2.84971e-05
-1.18915e-05
2.7423e-05
-1.24737e-05
2.59975e-05
-1.27782e-05
2.40612e-05
-1.21078e-05
2.2229e-05
-1.15202e-05
2.06284e-05
-1.10981e-05
1.92543e-05
-9.84124e-06
1.82014e-05
-8.53319e-06
1.73387e-05
-7.73194e-06
1.66283e-05
-6.71824e-06
1.60877e-05
-5.83748e-06
1.53852e-05
-3.9594e-06
1.4382e-05
-4.04318e-07
1.32545e-05
3.27638e-06
1.21448e-05
4.66731e-06
1.06926e-05
5.59491e-06
8.99212e-06
7.16663e-06
7.78799e-06
8.95269e-06
7.28629e-06
8.11659e-06
7.0732e-06
3.95291e-06
6.68386e-06
-8.20759e-07
6.56089e-06
-4.45712e-06
6.15411e-06
-6.34928e-06
6.86143e-06
-8.40707e-06
7.16323e-06
-9.5515e-06
7.08385e-06
-9.31261e-06
7.37794e-06
-9.13209e-06
7.4931e-06
-8.68222e-06
7.40118e-06
-6.72594e-06
8.47038e-06
-5.16812e-06
8.80506e-06
-3.35267e-06
8.75381e-06
9.31622e-07
9.11625e-06
5.2224e-07
1.03781e-05
7.31397e-06
1.1189e-05
3.39015e-06
1.02946e-05
2.54451e-05
9.54232e-06
-1.41141e-05
8.98484e-06
2.87732e-05
9.18887e-06
-1.27698e-05
1.17419e-05
1.74022e-05
9.48323e-06
-1.41215e-06
1.38374e-05
2.50334e-07
1.77614e-05
4.35781e-06
2.22635e-05
8.381e-06
2.65898e-05
1.08728e-05
1.82445e-05
3.01055e-05
3.19879e-05
-5.52723e-08
3.19492e-05
7.34123e-08
3.18488e-05
1.61207e-07
3.17527e-05
2.23713e-07
3.16411e-05
2.20488e-07
3.15544e-05
1.86687e-07
3.15135e-05
9.90606e-08
3.1496e-05
1.69511e-08
3.15159e-05
-2.32819e-08
3.15701e-05
-1.10582e-07
3.16369e-05
-1.07259e-07
3.17054e-05
-1.44583e-07
3.17783e-05
-1.32142e-07
3.18162e-05
-1.2382e-07
3.18541e-05
-1.25005e-07
3.18741e-05
-1.19948e-07
3.18758e-05
-1.27062e-07
3.18837e-05
-1.47386e-07
3.18949e-05
-1.83822e-07
3.18908e-05
-1.9584e-07
3.19151e-05
-2.73431e-07
3.19213e-05
-2.83494e-07
3.19312e-05
-3.41057e-07
3.1947e-05
-3.86237e-07
3.19535e-05
-4.01966e-07
3.19634e-05
-4.58713e-07
3.19659e-05
-4.71645e-07
3.1988e-05
-5.21197e-07
3.19806e-05
-5.45564e-07
3.20043e-05
-5.73169e-07
3.20065e-05
-6.00794e-07
3.20118e-05
-6.30128e-07
3.20217e-05
-6.48227e-07
3.20214e-05
-6.86783e-07
3.20307e-05
-7.10334e-07
3.20305e-05
-7.5915e-07
3.20451e-05
-8.08158e-07
3.20333e-05
-8.36185e-07
3.20479e-05
-9.36413e-07
3.20323e-05
-9.38597e-07
3.20063e-05
-1.03202e-06
3.19955e-05
-1.07147e-06
3.19229e-05
-1.11183e-06
3.18899e-05
-1.18371e-06
3.18123e-05
-1.1709e-06
3.17326e-05
-1.24735e-06
3.16758e-05
-1.21083e-06
3.15724e-05
-1.24266e-06
3.15281e-05
-1.21909e-06
3.14218e-05
-1.14822e-06
3.13565e-05
-1.16546e-06
3.12649e-05
-9.98265e-07
3.11635e-05
-9.75342e-07
3.10958e-05
-8.53072e-07
3.09915e-05
-6.93512e-07
3.0944e-05
-6.63405e-07
3.08705e-05
-4.5985e-07
3.08499e-05
-4.38293e-07
3.08374e-05
-3.30128e-07
3.08374e-05
-2.66364e-07
3.09032e-05
-3.12533e-07
3.09159e-05
-2.37653e-07
3.1004e-05
-3.83417e-07
3.10679e-05
-4.45699e-07
3.10759e-05
-5.67886e-07
3.11661e-05
-8.50009e-07
3.11565e-05
-1.00835e-06
3.11852e-05
-1.36083e-06
3.12167e-05
-1.66528e-06
3.1175e-05
-2.01567e-06
3.12124e-05
-2.47397e-06
3.1147e-05
-2.80461e-06
3.10822e-05
-3.34456e-06
3.10008e-05
-3.7226e-06
3.07754e-05
-4.17965e-06
3.05532e-05
-4.6524e-06
3.01808e-05
-4.96339e-06
2.96995e-05
-5.39822e-06
2.91263e-05
-5.64889e-06
2.83866e-05
-5.91966e-06
2.75429e-05
-6.07981e-06
2.65218e-05
-6.15836e-06
2.53452e-05
-6.1291e-06
2.40158e-05
-6.07833e-06
2.24856e-05
-5.84886e-06
2.07523e-05
-5.51128e-06
1.89339e-05
-5.21657e-06
1.6884e-05
-4.5863e-06
1.46984e-05
-4.18483e-06
1.24112e-05
-3.71334e-06
9.88932e-06
-3.10853e-06
8.34254e-06
-3.85664e-06
8.56318e-06
-5.73325e-06
9.66934e-06
-7.47266e-06
1.0647e-05
-7.74195e-06
1.0607e-05
-6.20148e-06
9.99774e-06
-4.43947e-06
9.38032e-06
-2.43991e-06
8.24248e-06
-4.03542e-08
6.17875e-06
3.16443e-06
4.23159e-06
5.04364e-06
2.25233e-06
5.08354e-06
-9.04024e-07
6.72995e-06
-3.66376e-06
8.34053e-06
-4.47087e-06
5.03928e-06
-5.27073e-06
2.05586e-07
-5.87952e-06
-4.61631e-06
-6.33552e-06
-9.55579e-06
-6.24503e-06
-1.34209e-05
-5.61778e-06
-1.52518e-05
-4.72389e-06
-1.48314e-05
-3.94683e-06
-1.35e-05
-3.26086e-06
-1.18743e-05
-2.6269e-06
-9.96052e-06
-2.06494e-06
-7.86094e-06
-1.53849e-06
-5.68652e-06
-9.90209e-07
-3.40085e-06
-4.34524e-07
-1.19222e-06
5.96261e-08
1.06964e-06
7.22746e-07
2.89092e-06
1.55828e-06
4.87023e-06
2.63157e-06
6.56606e-06
3.65034e-06
8.06279e-06
4.47349e-06
9.75948e-06
5.37186e-06
1.13871e-05
6.38844e-06
1.27919e-05
7.11441e-06
1.31553e-05
7.83366e-06
1.28123e-05
8.37577e-06
1.29981e-05
8.72517e-06
1.27635e-05
9.22203e-06
1.23218e-05
9.63098e-06
1.11003e-05
9.94007e-06
1.03815e-05
1.05403e-05
1.01728e-05
1.16078e-05
1.09676e-05
1.2986e-05
1.27961e-05
1.49973e-05
1.38841e-05
1.7119e-05
1.45018e-05
1.92169e-05
1.44445e-05
2.11566e-05
1.35024e-05
2.30172e-05
1.21629e-05
2.48053e-05
1.04282e-05
2.63102e-05
8.44221e-06
2.77451e-05
6.24268e-06
2.88515e-05
4.07844e-06
2.98551e-05
1.84333e-06
3.07484e-05
-3.75364e-07
3.13018e-05
-2.57721e-06
3.16253e-05
-4.36769e-06
3.1708e-05
-6.25735e-06
3.1207e-05
-7.69443e-06
3.05627e-05
-8.61612e-06
2.98743e-05
-9.85748e-06
2.88205e-05
-1.04654e-05
2.75485e-05
-1.06195e-05
2.6249e-05
-1.11742e-05
2.42949e-05
-1.08241e-05
2.19045e-05
-9.71739e-06
2.00987e-05
-9.7144e-06
1.84715e-05
-9.47083e-06
1.70302e-05
-8.39995e-06
1.57713e-05
-7.27431e-06
1.45401e-05
-6.50079e-06
1.35999e-05
-5.77801e-06
1.2714e-05
-4.95161e-06
1.18401e-05
-3.08545e-06
1.12381e-05
1.97715e-07
1.08147e-05
3.6997e-06
1.02383e-05
5.2438e-06
9.01839e-06
6.81477e-06
7.87188e-06
8.31314e-06
7.31136e-06
9.51321e-06
7.18314e-06
8.2448e-06
6.69867e-06
4.43738e-06
5.92629e-06
-4.83815e-08
5.20771e-06
-3.73854e-06
5.16859e-06
-6.31016e-06
5.58303e-06
-8.82151e-06
5.1483e-06
-9.11677e-06
4.98522e-06
-9.14954e-06
5.2662e-06
-9.41307e-06
5.02578e-06
-8.4418e-06
5.39915e-06
-7.0993e-06
6.97429e-06
-6.74326e-06
6.88841e-06
-3.26679e-06
7.17587e-06
6.44158e-07
6.95749e-06
7.40621e-07
9.43285e-06
4.83861e-06
9.40457e-06
3.41843e-06
6.57015e-06
2.82796e-05
7.63202e-06
-1.51759e-05
1.02848e-05
2.61204e-05
8.26269e-06
-1.07477e-05
9.62593e-06
1.6039e-05
8.01541e-06
1.98363e-07
1.08634e-05
-2.59767e-06
1.59411e-05
-7.19866e-07
1.93436e-05
4.97851e-06
2.2826e-05
7.39036e-06
1.51422e-05
2.59283e-05
3.21696e-05
-2.74589e-08
3.205e-05
1.93024e-07
3.18903e-05
3.20988e-07
3.17619e-05
3.52085e-07
3.16689e-05
3.13511e-07
3.16376e-05
2.17962e-07
3.16433e-05
9.33355e-08
3.16747e-05
-1.44182e-08
3.17149e-05
-6.35131e-08
3.17641e-05
-1.59811e-07
3.18058e-05
-1.489e-07
3.18203e-05
-1.59085e-07
3.18447e-05
-1.56535e-07
3.18471e-05
-1.2625e-07
3.18554e-05
-1.33321e-07
3.18765e-05
-1.41057e-07
3.18878e-05
-1.38339e-07
3.19176e-05
-1.77157e-07
3.19522e-05
-2.18467e-07
3.19744e-05
-2.18051e-07
3.20062e-05
-3.05238e-07
3.20256e-05
-3.02828e-07
3.20307e-05
-3.46202e-07
3.20387e-05
-3.94186e-07
3.20367e-05
-4.00027e-07
3.20312e-05
-4.53137e-07
3.20222e-05
-4.62691e-07
3.20175e-05
-5.16545e-07
3.1997e-05
-5.25057e-07
3.19824e-05
-5.58517e-07
3.19731e-05
-5.915e-07
3.19426e-05
-5.9959e-07
3.19395e-05
-6.4513e-07
3.19181e-05
-6.65404e-07
3.19061e-05
-6.98309e-07
3.18988e-05
-7.51884e-07
3.18737e-05
-7.83055e-07
3.18683e-05
-8.30766e-07
3.18328e-05
-9.00903e-07
3.18207e-05
-9.26574e-07
3.17749e-05
-9.86219e-07
3.17363e-05
-1.03285e-06
3.16861e-05
-1.06165e-06
3.16108e-05
-1.10842e-06
3.15495e-05
-1.10951e-06
3.14415e-05
-1.13938e-06
3.13547e-05
-1.12407e-06
3.12332e-05
-1.12114e-06
3.112e-05
-1.1059e-06
3.10048e-05
-1.03296e-06
3.08638e-05
-1.02448e-06
3.0773e-05
-9.07521e-07
3.06328e-05
-8.35087e-07
3.05528e-05
-7.73048e-07
3.04767e-05
-6.1745e-07
3.03838e-05
-5.70555e-07
3.03844e-05
-4.60423e-07
3.03047e-05
-3.58555e-07
3.03083e-05
-3.33711e-07
3.02928e-05
-2.50871e-07
3.02443e-05
-2.64051e-07
3.02822e-05
-2.75607e-07
3.0222e-05
-3.23146e-07
3.02374e-05
-4.61085e-07
3.02194e-05
-5.49903e-07
3.01613e-05
-7.91908e-07
3.01787e-05
-1.02583e-06
3.0088e-05
-1.27003e-06
3.00458e-05
-1.62314e-06
2.99666e-05
-1.93642e-06
2.97992e-05
-2.30664e-06
2.9667e-05
-2.67236e-06
2.93681e-05
-3.04569e-06
2.90519e-05
-3.40636e-06
2.86239e-05
-3.75168e-06
2.80336e-05
-4.06213e-06
2.73977e-05
-4.32742e-06
2.65583e-05
-4.5589e-06
2.56264e-05
-4.71693e-06
2.45582e-05
-4.85151e-06
2.33e-05
-4.8216e-06
2.18965e-05
-4.75488e-06
2.03283e-05
-4.56082e-06
1.86308e-05
-4.38082e-06
1.68732e-05
-4.0913e-06
1.49438e-05
-3.58191e-06
1.29548e-05
-3.22754e-06
1.10203e-05
-2.65182e-06
8.76331e-06
-1.92782e-06
6.24603e-06
-1.19605e-06
4.92409e-06
-1.78659e-06
5.63587e-06
-4.56843e-06
6.96536e-06
-7.06274e-06
7.47689e-06
-7.98419e-06
7.09361e-06
-7.35867e-06
6.21896e-06
-5.32683e-06
5.12308e-06
-3.34359e-06
4.23014e-06
-1.54697e-06
3.46442e-06
7.25364e-07
3.06744e-06
3.56141e-06
2.33481e-06
5.77626e-06
-6.91758e-09
7.42526e-06
-2.90361e-06
9.62664e-06
-4.08871e-06
9.52563e-06
-4.48382e-06
5.4344e-06
-5.46427e-06
1.18603e-06
-6.3696e-06
-3.71098e-06
-7.41681e-06
-8.50858e-06
-8.13725e-06
-1.27005e-05
-8.24601e-06
-1.5143e-05
-7.77675e-06
-1.53007e-05
-7.20562e-06
-1.40711e-05
-6.72224e-06
-1.23577e-05
-6.2866e-06
-1.03962e-05
-5.83991e-06
-8.30763e-06
-5.42755e-06
-6.09888e-06
-4.96712e-06
-3.86128e-06
-4.4535e-06
-1.70584e-06
-3.77851e-06
3.94643e-07
-3.0431e-06
2.15551e-06
-2.15959e-06
3.98672e-06
-1.09838e-06
5.50485e-06
-1.13337e-07
7.07775e-06
7.67792e-07
8.87835e-06
1.92102e-06
1.02338e-05
3.24504e-06
1.14679e-05
4.40261e-06
1.19978e-05
5.4156e-06
1.17993e-05
6.48154e-06
1.19321e-05
7.15636e-06
1.20887e-05
8.00804e-06
1.14702e-05
8.72084e-06
1.03875e-05
9.39197e-06
9.71034e-06
1.01605e-05
9.40426e-06
1.12128e-05
9.91522e-06
1.27527e-05
1.12562e-05
1.47592e-05
1.18777e-05
1.70051e-05
1.22559e-05
1.91495e-05
1.23001e-05
2.11417e-05
1.15102e-05
2.31907e-05
1.01139e-05
2.49813e-05
8.63761e-06
2.66557e-05
6.76773e-06
2.81101e-05
4.78835e-06
2.92124e-05
2.97607e-06
3.02169e-05
8.38883e-07
3.08664e-05
-1.02488e-06
3.11116e-05
-2.82243e-06
3.12764e-05
-4.53243e-06
3.09648e-05
-5.94578e-06
3.03817e-05
-7.11135e-06
2.99002e-05
-8.13456e-06
2.88854e-05
-8.84272e-06
2.76642e-05
-9.2442e-06
2.63342e-05
-9.28948e-06
2.43894e-05
-9.22934e-06
2.18428e-05
-8.27755e-06
1.94717e-05
-7.3463e-06
1.76187e-05
-7.86144e-06
1.59853e-05
-7.83733e-06
1.4435e-05
-6.84973e-06
1.28604e-05
-5.69973e-06
1.15086e-05
-5.1489e-06
1.04923e-05
-4.7618e-06
9.66964e-06
-4.1289e-06
9.02354e-06
-2.43936e-06
8.7921e-06
4.29162e-07
8.9227e-06
3.56911e-06
8.53756e-06
5.62894e-06
7.78548e-06
7.56685e-06
7.18936e-06
8.90926e-06
7.3491e-06
9.35347e-06
7.56666e-06
8.02724e-06
7.08359e-06
4.92046e-06
6.05878e-06
9.7643e-07
5.14948e-06
-2.82924e-06
4.8752e-06
-6.03588e-06
4.37484e-06
-8.32115e-06
3.876e-06
-8.61792e-06
3.99622e-06
-9.26977e-06
3.79221e-06
-9.20905e-06
3.41054e-06
-8.06014e-06
3.89069e-06
-7.57946e-06
3.92e-06
-6.77257e-06
4.06991e-06
-3.4167e-06
4.59282e-06
1.2125e-07
4.93022e-06
4.03217e-07
6.54748e-06
3.22136e-06
8.13693e-06
1.82898e-06
9.16886e-06
2.72476e-05
6.8352e-06
-1.28423e-05
7.11386e-06
2.58418e-05
6.32805e-06
-9.96191e-06
8.43803e-06
1.3929e-05
7.40906e-06
1.22734e-06
8.62926e-06
-3.81787e-06
1.34761e-05
-5.5667e-06
1.56952e-05
2.75938e-06
1.82844e-05
4.80116e-06
1.26721e-05
2.07545e-05
3.17894e-05
4.3418e-08
3.16223e-05
3.60184e-07
3.14532e-05
4.90034e-07
3.13388e-05
4.66537e-07
3.12882e-05
3.64112e-07
3.12805e-05
2.25657e-07
3.12956e-05
7.8195e-08
3.1319e-05
-3.78377e-08
3.13498e-05
-9.42973e-08
3.13622e-05
-1.72217e-07
3.13735e-05
-1.60209e-07
3.1368e-05
-1.53507e-07
3.13736e-05
-1.62152e-07
3.13728e-05
-1.25438e-07
3.13749e-05
-1.35416e-07
3.13826e-05
-1.48766e-07
3.13916e-05
-1.47356e-07
3.14021e-05
-1.87707e-07
3.1408e-05
-2.24338e-07
3.14158e-05
-2.25789e-07
3.14009e-05
-2.90418e-07
3.13996e-05
-3.01482e-07
3.13723e-05
-3.18944e-07
3.13512e-05
-3.73087e-07
3.13312e-05
-3.80027e-07
3.12935e-05
-4.15386e-07
3.12719e-05
-4.41085e-07
3.12287e-05
-4.73387e-07
3.11957e-05
-4.92091e-07
3.11536e-05
-5.1638e-07
3.11126e-05
-5.50472e-07
3.10734e-05
-5.60373e-07
3.10263e-05
-5.98036e-07
3.09859e-05
-6.25072e-07
3.09369e-05
-6.49298e-07
3.08809e-05
-6.95808e-07
3.08241e-05
-7.26301e-07
3.07504e-05
-7.57045e-07
3.06699e-05
-8.20436e-07
3.05846e-05
-8.41296e-07
3.04756e-05
-8.77138e-07
3.03746e-05
-9.31881e-07
3.02506e-05
-9.37621e-07
3.01279e-05
-9.85762e-07
3.0005e-05
-9.8659e-07
2.98535e-05
-9.87912e-07
2.97234e-05
-9.93989e-07
2.95602e-05
-9.57884e-07
2.94032e-05
-9.48906e-07
2.92601e-05
-8.89886e-07
2.90817e-05
-8.46096e-07
2.89575e-05
-7.83328e-07
2.88074e-05
-6.85007e-07
2.8671e-05
-6.36587e-07
2.85769e-05
-5.23389e-07
2.84454e-05
-4.39008e-07
2.83733e-05
-3.88299e-07
2.82974e-05
-2.82727e-07
2.82161e-05
-2.52405e-07
2.81882e-05
-2.22931e-07
2.81267e-05
-2.02609e-07
2.80881e-05
-2.36934e-07
2.80658e-05
-3.00928e-07
2.79973e-05
-3.92532e-07
2.7966e-05
-5.18572e-07
2.78782e-05
-7.04192e-07
2.77606e-05
-9.08146e-07
2.76329e-05
-1.14241e-06
2.74127e-05
-1.4029e-06
2.71635e-05
-1.68719e-06
2.68316e-05
-1.97473e-06
2.64091e-05
-2.24993e-06
2.5904e-05
-2.54057e-06
2.52889e-05
-2.79122e-06
2.45632e-05
-3.02597e-06
2.3719e-05
-3.21795e-06
2.27453e-05
-3.35376e-06
2.16452e-05
-3.45882e-06
2.04348e-05
-3.50652e-06
1.90972e-05
-3.51392e-06
1.76459e-05
-3.37032e-06
1.60993e-05
-3.20824e-06
1.45078e-05
-2.96927e-06
1.28207e-05
-2.69382e-06
1.11748e-05
-2.44533e-06
9.55843e-06
-1.96555e-06
7.76941e-06
-1.43852e-06
5.70448e-06
-5.86898e-07
3.78801e-06
-1.13541e-08
2.99769e-06
-4.05728e-07
3.36525e-06
-2.15416e-06
3.54894e-06
-4.75212e-06
3.17447e-06
-6.68827e-06
2.62846e-06
-7.43818e-06
1.90929e-06
-6.6395e-06
1.22788e-06
-4.64542e-06
5.6656e-07
-2.68227e-06
8.52736e-08
-1.06568e-06
-1.21863e-07
9.32501e-07
-4.44392e-07
3.88394e-06
-1.36508e-06
6.69695e-06
-3.0148e-06
9.07498e-06
-4.02021e-06
1.06321e-05
-3.5009e-06
9.00632e-06
-3.22024e-06
5.15375e-06
-3.80863e-06
1.77442e-06
-5.10144e-06
-2.41817e-06
-7.01789e-06
-6.59214e-06
-8.81066e-06
-1.09077e-05
-9.9072e-06
-1.40465e-05
-1.01681e-05
-1.50398e-05
-1.00495e-05
-1.41897e-05
-9.84115e-06
-1.2566e-05
-9.66821e-06
-1.05691e-05
-9.50187e-06
-8.47397e-06
-9.26382e-06
-6.33693e-06
-8.88035e-06
-4.24475e-06
-8.40823e-06
-2.17796e-06
-7.836e-06
-1.77584e-07
-7.12014e-06
1.43965e-06
-6.21638e-06
3.08296e-06
-5.2553e-06
4.54378e-06
-4.26513e-06
6.08758e-06
-2.9976e-06
7.61082e-06
-1.49283e-06
8.72907e-06
6.42932e-08
9.91077e-06
1.57062e-06
1.04914e-05
2.83731e-06
1.05326e-05
4.21693e-06
1.05525e-05
5.39505e-06
1.09106e-05
6.61408e-06
1.02511e-05
7.66884e-06
9.33275e-06
8.61632e-06
8.76286e-06
9.66329e-06
8.3573e-06
1.08451e-05
8.73338e-06
1.24458e-05
9.65557e-06
1.44649e-05
9.85865e-06
1.67961e-05
9.92457e-06
1.90612e-05
1.00351e-05
2.12282e-05
9.34321e-06
2.31898e-05
8.15231e-06
2.49701e-05
6.85726e-06
2.66245e-05
5.11338e-06
2.792e-05
3.4928e-06
2.90201e-05
1.87601e-06
2.98313e-05
2.76422e-08
3.02589e-05
-1.45249e-06
3.04232e-05
-2.98667e-06
3.03868e-05
-4.49606e-06
2.99598e-05
-5.51882e-06
2.94448e-05
-6.59629e-06
2.8673e-05
-7.3628e-06
2.73814e-05
-7.55104e-06
2.59844e-05
-7.84728e-06
2.41002e-05
-7.4052e-06
2.14457e-05
-6.57492e-06
1.87755e-05
-5.60731e-06
1.66174e-05
-5.18823e-06
1.46563e-05
-5.90029e-06
1.29252e-05
-6.10622e-06
1.14612e-05
-5.3858e-06
1.0419e-05
-4.65752e-06
9.50004e-06
-4.2299e-06
8.56633e-06
-3.82809e-06
7.57935e-06
-3.14192e-06
6.75965e-06
-1.61966e-06
6.64585e-06
5.42961e-07
6.88174e-06
3.33322e-06
6.6368e-06
5.87388e-06
6.44885e-06
7.7548e-06
6.70437e-06
8.65374e-06
7.62021e-06
8.43763e-06
8.50095e-06
7.14649e-06
8.34985e-06
5.07156e-06
7.402e-06
1.92429e-06
6.10202e-06
-1.52927e-06
4.78617e-06
-4.72003e-06
3.90396e-06
-7.43894e-06
3.5637e-06
-8.27766e-06
2.89524e-06
-8.60131e-06
2.90749e-06
-9.2213e-06
3.25365e-06
-8.4063e-06
2.62488e-06
-6.95069e-06
1.92879e-06
-6.07647e-06
2.0771e-06
-3.56501e-06
6.74498e-07
1.52385e-06
3.44527e-06
-2.36756e-06
8.9851e-06
-2.31847e-06
7.73221e-06
3.08187e-06
6.94203e-06
2.80378e-05
6.3469e-06
-1.22471e-05
8.5212e-06
2.36675e-05
6.76074e-06
-8.20146e-06
6.89628e-06
1.37934e-05
6.24536e-06
1.87825e-06
6.16403e-06
-3.73654e-06
8.34287e-06
-7.74554e-06
1.00062e-05
1.096e-06
1.26967e-05
2.11073e-06
9.91188e-06
1.54569e-05
2.95963e-05
1.41751e-07
2.94634e-05
4.9304e-07
2.93573e-05
5.96134e-07
2.93145e-05
5.09427e-07
2.92949e-05
3.83638e-07
2.93006e-05
2.19949e-07
2.93088e-05
7.00605e-08
2.93118e-05
-4.08801e-08
2.93138e-05
-9.62461e-08
2.92849e-05
-1.43385e-07
2.92679e-05
-1.43163e-07
2.92509e-05
-1.36528e-07
2.92315e-05
-1.42721e-07
2.92241e-05
-1.1806e-07
2.9215e-05
-1.26278e-07
2.92037e-05
-1.37503e-07
2.91959e-05
-1.39596e-07
2.91756e-05
-1.67405e-07
2.91467e-05
-1.95405e-07
2.91221e-05
-2.01165e-07
2.90774e-05
-2.45692e-07
2.90412e-05
-2.65351e-07
2.90014e-05
-2.79119e-07
2.89526e-05
-3.24338e-07
2.8907e-05
-3.3441e-07
2.88518e-05
-3.60192e-07
2.87915e-05
-3.80795e-07
2.87218e-05
-4.03632e-07
2.86506e-05
-4.20892e-07
2.8572e-05
-4.37827e-07
2.84904e-05
-4.68846e-07
2.84067e-05
-4.76653e-07
2.83163e-05
-5.07672e-07
2.82216e-05
-5.30387e-07
2.81206e-05
-5.48296e-07
2.80102e-05
-5.85414e-07
2.78897e-05
-6.05755e-07
2.77673e-05
-6.3469e-07
2.7624e-05
-6.77072e-07
2.74797e-05
-6.96992e-07
2.73274e-05
-7.24906e-07
2.71508e-05
-7.55204e-07
2.69833e-05
-7.70155e-07
2.67895e-05
-7.91977e-07
2.65981e-05
-7.9516e-07
2.64058e-05
-7.95623e-07
2.62015e-05
-7.89714e-07
2.6012e-05
-7.68393e-07
2.58092e-05
-7.46109e-07
2.5621e-05
-7.0168e-07
2.54288e-05
-6.5386e-07
2.5243e-05
-5.97575e-07
2.50816e-05
-5.2352e-07
2.49094e-05
-4.64409e-07
2.47777e-05
-3.91664e-07
2.46529e-05
-3.14279e-07
2.45338e-05
-2.69173e-07
2.4458e-05
-2.06952e-07
2.43703e-05
-1.64668e-07
2.43078e-05
-1.60447e-07
2.42532e-05
-1.48043e-07
2.41907e-05
-1.74403e-07
2.41238e-05
-2.34037e-07
2.40382e-05
-3.06935e-07
2.39284e-05
-4.08779e-07
2.37748e-05
-5.50548e-07
2.35768e-05
-7.10151e-07
2.33164e-05
-8.8202e-07
2.29919e-05
-1.07838e-06
2.25855e-05
-1.28076e-06
2.2099e-05
-1.48829e-06
2.15289e-05
-1.6798e-06
2.08639e-05
-1.87559e-06
2.01019e-05
-2.02923e-06
1.9227e-05
-2.15106e-06
1.82443e-05
-2.23525e-06
1.71281e-05
-2.23758e-06
1.59057e-05
-2.23643e-06
1.4593e-05
-2.19381e-06
1.31936e-05
-2.11451e-06
1.17881e-05
-1.96477e-06
1.03515e-05
-1.7717e-06
8.95872e-06
-1.57647e-06
7.60028e-06
-1.33537e-06
6.16425e-06
-1.0093e-06
4.7756e-06
-5.76898e-07
3.41226e-06
-7.51841e-08
2.41813e-06
4.07233e-07
1.98578e-06
4.20988e-07
1.65571e-06
-7.56528e-08
1.1088e-06
-1.60725e-06
4.12859e-07
-4.05618e-06
-2.87344e-07
-5.98807e-06
-8.75485e-07
-6.85004e-06
-1.53366e-06
-5.98132e-06
-2.22282e-06
-3.95626e-06
-3.11488e-06
-1.79021e-06
-4.30429e-06
1.23727e-07
-5.14225e-06
1.77046e-06
-5.29938e-06
4.04107e-06
-5.26898e-06
6.66656e-06
-4.98724e-06
8.79324e-06
-3.7023e-06
9.34711e-06
-1.74648e-06
7.0505e-06
-6.59389e-07
4.06666e-06
-3.74598e-07
1.48963e-06
-1.37746e-06
-1.41531e-06
-3.87912e-06
-4.09048e-06
-7.26856e-06
-7.51826e-06
-1.01005e-05
-1.12145e-05
-1.17285e-05
-1.34118e-05
-1.23781e-05
-1.354e-05
-1.26322e-05
-1.23119e-05
-1.27358e-05
-1.04655e-05
-1.27931e-05
-8.41667e-06
-1.275e-05
-6.37999e-06
-1.25763e-05
-4.41845e-06
-1.22431e-05
-2.51121e-06
-1.1684e-05
-7.3667e-07
-1.10268e-05
7.82466e-07
-1.01509e-05
2.20707e-06
-9.15351e-06
3.54636e-06
-7.9714e-06
4.90546e-06
-6.53211e-06
6.17153e-06
-4.95158e-06
7.14854e-06
-3.222e-06
8.18119e-06
-1.35788e-06
8.62733e-06
2.46941e-07
8.92774e-06
1.84278e-06
8.95666e-06
3.49782e-06
9.25555e-06
5.05832e-06
8.69063e-06
6.4282e-06
7.96287e-06
7.70024e-06
7.49082e-06
9.01007e-06
7.04747e-06
1.04291e-05
7.3143e-06
1.21839e-05
7.90087e-06
1.42179e-05
7.82462e-06
1.6431e-05
7.71148e-06
1.86531e-05
7.81293e-06
2.0821e-05
7.17529e-06
2.27808e-05
6.1925e-06
2.45697e-05
5.06836e-06
2.60242e-05
3.65889e-06
2.72958e-05
2.22124e-06
2.83425e-05
8.29287e-07
2.89251e-05
-5.54949e-07
2.93167e-05
-1.84414e-06
2.94634e-05
-3.13337e-06
2.92275e-05
-4.26008e-06
2.87764e-05
-5.06776e-06
2.79973e-05
-5.8172e-06
2.67557e-05
-6.12124e-06
2.52639e-05
-6.05923e-06
2.33623e-05
-5.94562e-06
2.09059e-05
-4.94883e-06
1.81116e-05
-3.78061e-06
1.54666e-05
-2.96232e-06
1.31947e-05
-2.91634e-06
1.13556e-05
-4.06116e-06
1.00948e-05
-4.84547e-06
9.23111e-06
-4.52209e-06
8.41239e-06
-3.83879e-06
7.42231e-06
-3.23983e-06
6.34516e-06
-2.75094e-06
5.16384e-06
-1.9606e-06
4.65862e-06
-1.11444e-06
4.51298e-06
6.88606e-07
4.52367e-06
3.32252e-06
4.69827e-06
5.69928e-06
5.33741e-06
7.11566e-06
6.58532e-06
7.40582e-06
8.271e-06
6.75195e-06
9.90782e-06
5.50967e-06
1.04964e-05
4.48296e-06
9.79128e-06
2.62942e-06
8.155e-06
1.07003e-07
6.25387e-06
-2.8189e-06
4.53751e-06
-5.72258e-06
3.52642e-06
-7.26657e-06
2.67183e-06
-7.74672e-06
2.30998e-06
-8.85945e-06
2.12786e-06
-8.22417e-06
1.35605e-06
-6.17888e-06
7.65431e-07
-5.48586e-06
2.11045e-06
-4.91003e-06
1.67656e-06
1.95774e-06
2.89292e-06
-3.58391e-06
6.15343e-06
-5.57898e-06
5.88909e-06
3.34621e-06
9.50176e-06
2.44251e-05
6.79568e-06
-9.54106e-06
4.45303e-06
2.60101e-05
4.49592e-06
-8.24435e-06
6.35474e-06
1.19346e-05
5.61012e-06
2.62287e-06
4.84803e-06
-2.97444e-06
4.87741e-06
-7.77493e-06
6.40222e-06
-4.2881e-07
8.90824e-06
-3.95289e-07
6.43382e-06
1.23863e-05
2.51742e-05
2.58758e-07
2.51242e-05
5.43027e-07
2.51542e-05
5.66119e-07
2.51912e-05
4.72492e-07
2.52314e-05
3.43454e-07
2.52567e-05
1.94586e-07
2.52635e-05
6.32443e-08
2.52565e-05
-3.38776e-08
2.52399e-05
-7.95717e-08
2.52092e-05
-1.12723e-07
2.5186e-05
-1.20011e-07
2.51641e-05
-1.14562e-07
2.514e-05
-1.18601e-07
2.51268e-05
-1.04893e-07
2.51064e-05
-1.05885e-07
2.50841e-05
-1.15211e-07
2.50621e-05
-1.17539e-07
2.50279e-05
-1.33294e-07
2.49887e-05
-1.56129e-07
2.49508e-05
-1.63263e-07
2.48961e-05
-1.91001e-07
2.48421e-05
-2.11403e-07
2.4784e-05
-2.20999e-07
2.47103e-05
-2.50631e-07
2.46388e-05
-2.6291e-07
2.45566e-05
-2.78003e-07
2.44697e-05
-2.93853e-07
2.43756e-05
-3.09592e-07
2.4277e-05
-3.22238e-07
2.41735e-05
-3.34348e-07
2.40592e-05
-3.54515e-07
2.39443e-05
-3.6176e-07
2.38177e-05
-3.81089e-07
2.36848e-05
-3.97493e-07
2.35464e-05
-4.09924e-07
2.33954e-05
-4.34431e-07
2.32378e-05
-4.48116e-07
2.30717e-05
-4.68541e-07
2.28901e-05
-4.9554e-07
2.27036e-05
-5.10473e-07
2.25079e-05
-5.29224e-07
2.23e-05
-5.47239e-07
2.20871e-05
-5.57322e-07
2.18624e-05
-5.67219e-07
2.1634e-05
-5.66839e-07
2.14009e-05
-5.62509e-07
2.11649e-05
-5.53697e-07
2.0934e-05
-5.37476e-07
2.0705e-05
-5.17137e-07
2.04869e-05
-4.83573e-07
2.02804e-05
-4.47374e-07
2.00867e-05
-4.03868e-07
1.99123e-05
-3.49132e-07
1.9751e-05
-3.03121e-07
1.96097e-05
-2.50315e-07
1.94898e-05
-1.94399e-07
1.938e-05
-1.59324e-07
1.9291e-05
-1.17962e-07
1.92146e-05
-8.82574e-08
1.91375e-05
-8.33763e-08
1.90703e-05
-8.08577e-08
1.89939e-05
-9.80431e-08
1.88995e-05
-1.39616e-07
1.87884e-05
-1.95814e-07
1.86434e-05
-2.63741e-07
1.84512e-05
-3.58343e-07
1.82045e-05
-4.63447e-07
1.78937e-05
-5.71291e-07
1.75059e-05
-6.90527e-07
1.70387e-05
-8.13627e-07
1.64784e-05
-9.27978e-07
1.58337e-05
-1.03503e-06
1.51023e-05
-1.14419e-06
1.42785e-05
-1.20551e-06
1.33702e-05
-1.24274e-06
1.23814e-05
-1.24648e-06
1.13281e-05
-1.1842e-06
1.01913e-05
-1.09962e-06
8.98819e-06
-9.90737e-07
7.78763e-06
-9.13952e-07
6.60936e-06
-7.86505e-07
5.41606e-06
-5.78395e-07
4.2725e-06
-4.3291e-07
3.25207e-06
-3.14946e-07
2.38714e-06
-1.44373e-07
1.78497e-06
2.52762e-08
1.50878e-06
2.0101e-07
1.5321e-06
3.83904e-07
1.46173e-06
4.91364e-07
1.07879e-06
3.07284e-07
3.14469e-07
-8.42925e-07
-1.33208e-06
-2.40963e-06
-3.16686e-06
-4.15328e-06
-4.73082e-06
-5.28609e-06
-5.97753e-06
-4.73461e-06
-7.06689e-06
-2.8669e-06
-7.74652e-06
-1.11058e-06
-7.89913e-06
2.76338e-07
-7.74732e-06
1.61865e-06
-7.10841e-06
3.40216e-06
-5.89463e-06
5.45278e-06
-4.00396e-06
6.90257e-06
-1.3243e-06
6.66745e-06
1.35599e-06
4.37021e-06
3.05533e-06
2.36732e-06
4.07643e-06
4.68534e-07
4.06085e-06
-1.39974e-06
1.54947e-06
-1.57909e-06
-3.23384e-06
-2.73495e-06
-7.94812e-06
-6.50023e-06
-1.15597e-05
-9.80029e-06
-1.3656e-05
-1.14437e-05
-1.47688e-05
-1.11991e-05
-1.53671e-05
-9.86727e-06
-1.57247e-05
-8.05907e-06
-1.59216e-05
-6.18306e-06
-1.59624e-05
-4.37762e-06
-1.57576e-05
-2.71605e-06
-1.53156e-05
-1.17865e-06
-1.47484e-05
2.15245e-07
-1.39679e-05
1.42663e-06
-1.29349e-05
2.51327e-06
-1.16415e-05
3.61211e-06
-1.01056e-05
4.63563e-06
-8.41772e-06
5.46066e-06
-6.53584e-06
6.29931e-06
-4.38239e-06
6.47389e-06
-2.44506e-06
6.99041e-06
-6.23177e-07
7.13478e-06
1.44289e-06
7.18948e-06
3.29151e-06
6.84202e-06
5.05417e-06
6.2002e-06
6.71628e-06
5.82871e-06
8.22261e-06
5.54114e-06
9.83167e-06
5.70524e-06
1.17248e-05
6.00772e-06
1.37488e-05
5.80067e-06
1.5831e-05
5.62926e-06
1.80783e-05
5.56565e-06
2.02261e-05
5.02747e-06
2.20824e-05
4.33617e-06
2.37225e-05
3.42832e-06
2.51556e-05
2.22573e-06
2.63722e-05
1.00464e-06
2.72454e-05
-4.38433e-08
2.78121e-05
-1.12168e-06
2.81116e-05
-2.14362e-06
2.8071e-05
-3.09283e-06
2.76161e-05
-3.80519e-06
2.68344e-05
-4.28603e-06
2.55629e-05
-4.54573e-06
2.38904e-05
-4.44867e-06
2.20577e-05
-4.22661e-06
1.97029e-05
-3.59077e-06
1.70917e-05
-2.33762e-06
1.44851e-05
-1.17398e-06
1.2116e-05
-5.93301e-07
1.04289e-05
-1.22923e-06
8.88097e-06
-2.5132e-06
7.46595e-06
-3.43046e-06
6.12329e-06
-3.17942e-06
5.0362e-06
-2.75171e-06
4.36075e-06
-2.56437e-06
3.55883e-06
-1.94902e-06
3.04509e-06
-1.44686e-06
2.84893e-06
-9.18274e-07
2.80859e-06
7.28941e-07
3.2084e-06
2.92272e-06
3.93672e-06
4.97096e-06
5.26361e-06
5.78876e-06
7.02925e-06
5.64019e-06
9.06964e-06
4.71157e-06
1.097e-05
3.60933e-06
1.26356e-05
2.8173e-06
1.31307e-05
2.13434e-06
1.18309e-05
1.4068e-06
9.35502e-06
-3.4299e-07
6.66238e-06
-3.02994e-06
4.59556e-06
-5.19974e-06
3.51003e-06
-6.66119e-06
2.54278e-06
-7.8922e-06
1.43357e-06
-7.11496e-06
6.75436e-07
-5.42075e-06
4.61389e-07
-5.27181e-06
1.54844e-06
-5.99708e-06
2.76476e-06
7.41417e-07
1.79545e-06
-2.6146e-06
1.80035e-06
-5.58387e-06
3.78183e-06
1.36473e-06
5.60867e-06
2.25983e-05
4.31648e-06
-8.24887e-06
6.60033e-06
2.37263e-05
5.95526e-06
-7.59928e-06
7.50133e-06
1.03885e-05
6.33171e-06
3.7925e-06
5.11879e-06
-1.76152e-06
3.9441e-06
-6.60023e-06
5.1775e-06
-1.66221e-06
7.23062e-06
-2.4484e-06
2.92481e-06
1.07396e-05
1.88383e-05
1.304e-07
1.91538e-05
2.27567e-07
1.94154e-05
3.04533e-07
1.95648e-05
3.23079e-07
1.96578e-05
2.50477e-07
1.97062e-05
1.4614e-07
1.97287e-05
4.07715e-08
1.97256e-05
-3.0776e-08
1.97112e-05
-6.52042e-08
1.96907e-05
-9.225e-08
1.96701e-05
-9.93969e-08
1.96484e-05
-9.28494e-08
1.96225e-05
-9.26905e-08
1.96005e-05
-8.28665e-08
1.95752e-05
-8.05895e-08
1.95464e-05
-8.64e-08
1.95154e-05
-8.6613e-08
1.94777e-05
-9.55615e-08
1.94316e-05
-1.10017e-07
1.93822e-05
-1.13895e-07
1.93199e-05
-1.28638e-07
1.92509e-05
-1.42412e-07
1.91771e-05
-1.47193e-07
1.90891e-05
-1.6266e-07
1.89978e-05
-1.71586e-07
1.88983e-05
-1.78552e-07
1.87921e-05
-1.8764e-07
1.86792e-05
-1.96654e-07
1.85597e-05
-2.02811e-07
1.84353e-05
-2.09859e-07
1.83011e-05
-2.20307e-07
1.81634e-05
-2.24098e-07
1.80165e-05
-2.34155e-07
1.78612e-05
-2.4222e-07
1.77e-05
-2.48776e-07
1.7527e-05
-2.61378e-07
1.73476e-05
-2.6871e-07
1.71587e-05
-2.79697e-07
1.69571e-05
-2.93866e-07
1.67484e-05
-3.01766e-07
1.65303e-05
-3.1117e-07
1.63033e-05
-3.20198e-07
1.60704e-05
-3.24473e-07
1.58315e-05
-3.28277e-07
1.5592e-05
-3.27365e-07
1.53516e-05
-3.22109e-07
1.51124e-05
-3.14484e-07
1.48793e-05
-3.04431e-07
1.46518e-05
-2.89596e-07
1.44364e-05
-2.68189e-07
1.42343e-05
-2.45234e-07
1.40481e-05
-2.17746e-07
1.38841e-05
-1.85112e-07
1.3736e-05
-1.55015e-07
1.36085e-05
-1.2282e-07
1.35046e-05
-9.04281e-08
1.34126e-05
-6.73598e-08
1.33379e-05
-4.32824e-08
1.32743e-05
-2.46007e-08
1.32112e-05
-2.03399e-08
1.31495e-05
-1.91806e-08
1.30796e-05
-2.81303e-08
1.29921e-05
-5.20701e-08
1.28774e-05
-8.11517e-08
1.27307e-05
-1.17042e-07
1.25353e-05
-1.62884e-07
1.2282e-05
-2.10195e-07
1.19659e-05
-2.552e-07
1.15756e-05
-3.00258e-07
1.11047e-05
-3.42666e-07
1.05577e-05
-3.81002e-07
9.93352e-06
-4.10845e-07
9.23929e-06
-4.49962e-07
8.51308e-06
-4.79301e-07
7.75763e-06
-4.87286e-07
6.94896e-06
-4.37807e-07
6.03483e-06
-2.70072e-07
5.0213e-06
-8.6097e-08
4.07475e-06
-4.41878e-08
3.29053e-06
-1.29737e-07
2.70632e-06
-2.02291e-07
2.28475e-06
-1.56822e-07
1.95477e-06
-1.02934e-07
1.70137e-06
-6.15447e-08
1.55696e-06
3.93237e-11
1.49371e-06
8.85213e-08
1.49787e-06
1.96849e-07
1.6085e-06
2.73278e-07
1.51802e-06
5.81846e-07
1.23629e-06
5.89008e-07
5.12839e-07
-1.19471e-07
-8.1421e-07
-1.08258e-06
-2.70898e-06
-2.25851e-06
-4.8724e-06
-3.12267e-06
-6.6623e-06
-2.94471e-06
-7.7462e-06
-1.78299e-06
-8.1444e-06
-7.12385e-07
-8.00419e-06
1.36125e-07
-7.50776e-06
1.12223e-06
-6.26082e-06
2.15521e-06
-4.19998e-06
3.39194e-06
-1.52192e-06
4.22451e-06
1.41592e-06
3.7296e-06
3.82611e-06
1.96003e-06
5.46482e-06
7.28604e-07
6.34801e-06
-4.14655e-07
6.72696e-06
-1.77869e-06
6.32584e-06
-1.17796e-06
2.99988e-06
5.91012e-07
-3.07226e-06
-4.28101e-07
-8.67748e-06
-4.19507e-06
-1.28204e-05
-7.30082e-06
-1.55062e-05
-8.51331e-06
-1.70779e-05
-8.29554e-06
-1.80957e-05
-7.04125e-06
-1.87703e-05
-5.50845e-06
-1.91392e-05
-4.00878e-06
-1.91879e-05
-2.66726e-06
-1.89257e-05
-1.44084e-06
-1.84196e-05
-2.90853e-07
-1.75906e-05
5.97566e-07
-1.64871e-05
1.40981e-06
-1.51341e-05
2.25906e-06
-1.34983e-05
2.99987e-06
-1.16488e-05
3.61112e-06
-9.53456e-06
4.18507e-06
-7.34596e-06
4.28529e-06
-5.19778e-06
4.84223e-06
-2.97701e-06
4.914e-06
-6.69812e-07
4.88228e-06
1.50969e-06
4.66252e-06
3.54287e-06
4.16703e-06
5.40624e-06
3.96534e-06
7.09198e-06
3.8554e-06
8.92477e-06
3.87245e-06
1.09889e-05
3.94357e-06
1.29777e-05
3.81192e-06
1.49867e-05
3.62018e-06
1.71957e-05
3.35666e-06
1.92508e-05
2.97238e-06
2.10521e-05
2.53488e-06
2.26661e-05
1.81438e-06
2.40139e-05
8.77872e-07
2.50044e-05
1.41031e-08
2.56913e-05
-7.30729e-07
2.6022e-05
-1.45239e-06
2.60366e-05
-2.15819e-06
2.55965e-05
-2.65272e-06
2.46096e-05
-2.81831e-06
2.32331e-05
-2.90954e-06
2.14291e-05
-2.74174e-06
1.93862e-05
-2.40571e-06
1.72081e-05
-2.04858e-06
1.48601e-05
-1.24275e-06
1.27413e-05
-2.18822e-07
1.08316e-05
7.35782e-07
9.66407e-06
5.74205e-07
8.92381e-06
-4.88978e-07
7.90346e-06
-1.49284e-06
6.63751e-06
-2.16451e-06
5.43501e-06
-1.97692e-06
4.36469e-06
-1.68139e-06
3.39824e-06
-1.59792e-06
2.81838e-06
-1.36916e-06
2.37344e-06
-1.00193e-06
1.90706e-06
-4.51888e-07
1.87727e-06
7.58725e-07
2.44408e-06
2.3559e-06
3.85569e-06
3.55936e-06
5.97319e-06
3.67126e-06
8.19625e-06
3.41713e-06
1.01831e-05
2.72474e-06
1.17711e-05
2.0213e-06
1.33177e-05
1.27071e-06
1.50997e-05
3.52342e-07
1.57184e-05
7.88068e-07
1.37417e-05
1.63369e-06
1.04068e-05
3.05044e-07
6.94208e-06
-1.73507e-06
4.84248e-06
-4.56158e-06
2.33506e-06
-5.38478e-06
3.68599e-07
-5.14851e-06
4.22006e-07
-5.47415e-06
3.28774e-07
-5.17858e-06
-5.53955e-07
-5.11435e-06
-2.53236e-07
4.40698e-07
-6.48948e-07
-2.21889e-06
-1.908e-06
-4.32482e-06
-1.03768e-06
4.9441e-07
4.06916e-06
1.74915e-05
3.42239e-06
-7.6021e-06
6.06515e-06
2.10835e-05
4.90363e-06
-6.43776e-06
1.08272e-05
4.46495e-06
9.28519e-06
5.33453e-06
6.71326e-06
8.10417e-07
4.12536e-06
-4.01234e-06
4.47592e-06
-2.01277e-06
5.61331e-06
-3.58579e-06
4.9537e-07
8.04274e-06
1.23914e-05
1.44948e-07
1.25163e-05
1.02626e-07
1.27023e-05
1.1853e-07
1.28896e-05
1.35822e-07
1.3027e-05
1.12999e-07
1.31107e-05
6.25132e-08
1.31463e-05
5.09742e-09
1.31469e-05
-3.13316e-08
1.31339e-05
-5.21859e-08
1.3105e-05
-6.33354e-08
1.30688e-05
-6.32235e-08
1.30335e-05
-5.75908e-08
1.29941e-05
-5.3253e-08
1.29574e-05
-4.61468e-08
1.29192e-05
-4.24242e-08
1.28754e-05
-4.25574e-08
1.28302e-05
-4.14381e-08
1.27788e-05
-4.41813e-08
1.27179e-05
-4.9143e-08
1.26546e-05
-5.05837e-08
1.25818e-05
-5.58208e-08
1.25e-05
-6.05815e-08
1.2415e-05
-6.22301e-08
1.23199e-05
-6.75546e-08
1.22187e-05
-7.03274e-08
1.21123e-05
-7.21571e-08
1.19997e-05
-7.50796e-08
1.18809e-05
-7.78072e-08
1.17571e-05
-7.90664e-08
1.1628e-05
-8.07323e-08
1.14915e-05
-8.37717e-08
1.1352e-05
-8.46017e-08
1.12052e-05
-8.7349e-08
1.10524e-05
-8.94374e-08
1.0895e-05
-9.13834e-08
1.07291e-05
-9.54949e-08
1.05582e-05
-9.77772e-08
1.03798e-05
-1.01332e-07
1.01919e-05
-1.05971e-07
9.999e-06
-1.08867e-07
9.7998e-06
-1.11966e-07
9.59435e-06
-1.1475e-07
9.3861e-06
-1.16227e-07
9.17546e-06
-1.1763e-07
8.96529e-06
-1.17197e-07
8.75795e-06
-1.14769e-07
8.5551e-06
-1.11639e-07
8.35847e-06
-1.07797e-07
8.17137e-06
-1.02494e-07
7.99795e-06
-9.47724e-08
7.83856e-06
-8.58442e-08
7.69631e-06
-7.54955e-08
7.57373e-06
-6.25353e-08
7.46864e-06
-4.99164e-08
7.38218e-06
-3.63621e-08
7.31427e-06
-2.25182e-08
7.25991e-06
-1.29983e-08
7.21843e-06
-1.80217e-09
7.18803e-06
5.79665e-09
7.15853e-06
9.15623e-09
7.12697e-06
1.23848e-08
7.08907e-06
9.76166e-09
7.03381e-06
3.19167e-09
6.9559e-06
-3.23578e-09
6.85074e-06
-1.18811e-08
6.70473e-06
-1.68803e-08
6.50791e-06
-1.33716e-08
6.25433e-06
-1.61747e-09
5.93329e-06
2.07747e-08
5.54403e-06
4.66007e-08
5.09423e-06
6.87949e-08
4.61224e-06
7.11461e-08
4.13512e-06
2.71577e-08
3.69762e-06
-4.17996e-08
3.30789e-06
-9.75596e-08
2.96406e-06
-9.39826e-08
2.69248e-06
1.50823e-09
2.53213e-06
7.42601e-08
2.43147e-06
5.64668e-08
2.32321e-06
-2.1475e-08
2.1883e-06
-6.73777e-08
2.08894e-06
-5.7462e-08
2.01834e-06
-3.23411e-08
1.96496e-06
-8.16538e-09
1.95428e-06
1.07187e-08
2.01213e-06
3.06803e-08
2.15585e-06
5.31219e-08
2.30684e-06
1.22287e-07
2.55779e-06
3.30902e-07
2.79953e-06
3.47263e-07
2.57914e-06
1.0092e-07
1.66332e-06
-1.66758e-07
-2.60839e-08
-5.69104e-07
-2.12261e-06
-1.02614e-06
-3.98921e-06
-1.07811e-06
-5.0955e-06
-6.76705e-07
-5.55618e-06
-2.51701e-07
-5.47951e-06
5.94566e-08
-4.87974e-06
5.22455e-07
-3.68857e-06
9.64042e-07
-1.51309e-06
1.21646e-06
1.35192e-06
1.35951e-06
4.03764e-06
1.04388e-06
5.69303e-06
3.04636e-07
6.62168e-06
-2.00051e-07
6.69835e-06
-4.91319e-07
5.71594e-06
-7.96284e-07
5.36892e-06
-8.30944e-07
5.7652e-06
1.94737e-07
3.72074e-06
1.61636e-06
-1.68095e-06
1.20663e-06
-7.89144e-06
-1.09034e-06
-1.23032e-05
-4.10152e-06
-1.55558e-05
-5.04294e-06
-1.81866e-05
-4.41045e-06
-2.01506e-05
-3.54452e-06
-2.14453e-05
-2.71402e-06
-2.21378e-05
-1.97478e-06
-2.22935e-05
-1.28513e-06
-2.1905e-05
-6.79353e-07
-2.11582e-05
-1.49224e-07
-2.00821e-05
3.3372e-07
-1.86448e-05
8.21704e-07
-1.68788e-05
1.23393e-06
-1.48724e-05
1.60466e-06
-1.26236e-05
1.93631e-06
-1.03731e-05
2.03479e-06
-7.90559e-06
2.37473e-06
-5.38462e-06
2.39303e-06
-2.92469e-06
2.42235e-06
-5.75363e-07
2.31319e-06
1.60883e-06
1.98283e-06
3.63442e-06
1.93974e-06
5.60297e-06
1.88686e-06
7.64472e-06
1.8307e-06
9.76921e-06
1.81907e-06
1.18283e-05
1.75284e-06
1.38779e-05
1.57054e-06
1.58936e-05
1.34103e-06
1.77415e-05
1.12442e-06
1.94301e-05
8.46319e-07
2.08297e-05
4.14811e-07
2.17732e-05
-6.56685e-08
2.22809e-05
-4.93634e-07
2.24152e-05
-8.65017e-07
2.21498e-05
-1.18699e-06
2.14178e-05
-1.42621e-06
2.02017e-05
-1.43658e-06
1.85959e-05
-1.21252e-06
1.65633e-05
-8.76936e-07
1.44125e-05
-5.9094e-07
1.24768e-05
-4.69962e-07
1.08347e-05
-4.06477e-07
9.75978e-06
-1.67872e-07
9.25811e-06
2.82853e-07
9.35771e-06
6.36177e-07
9.68719e-06
2.44729e-07
9.53041e-06
-3.32198e-07
8.53306e-06
-4.95487e-07
6.9967e-06
-6.28151e-07
5.69693e-06
-6.77149e-07
4.6156e-06
-6.0006e-07
3.61956e-06
-6.01881e-07
2.99375e-06
-7.43353e-07
2.35045e-06
-3.58634e-07
2.05424e-06
-1.55673e-07
2.31869e-06
4.94274e-07
3.20074e-06
1.47386e-06
5.01827e-06
1.74183e-06
7.31612e-06
1.37341e-06
9.57799e-06
1.15526e-06
1.15117e-05
7.9106e-07
1.29309e-05
6.02052e-07
1.36568e-05
5.4485e-07
1.41573e-05
-1.48196e-07
1.50333e-05
-8.7949e-08
1.63476e-05
3.19465e-07
1.59656e-05
6.86969e-07
1.32281e-05
1.00245e-06
9.16964e-06
-5.03107e-07
5.12759e-06
-1.34274e-06
2.79821e-06
-2.81912e-06
1.22985e-06
-3.9058e-06
-6.02887e-07
-3.34584e-06
-2.89104e-06
-2.82619e-06
-2.2441e-06
-2.06247e-07
-3.0982e-06
-1.36479e-06
-6.50434e-06
-9.18683e-07
-2.45953e-06
-3.55039e-06
8.8349e-06
6.19704e-06
2.82357e-06
-1.59077e-06
9.6605e-06
1.42466e-05
4.20137e-06
-9.78628e-07
7.46797e-06
1.19835e-06
1.05694e-05
2.23309e-06
1.05654e-05
8.14431e-07
8.39107e-06
-1.838e-06
7.61332e-06
-1.23502e-06
6.20555e-06
-2.17803e-06
-2.70116e-07
6.97104e-06
4.71524e-06
4.81787e-06
4.9364e-06
5.07222e-06
5.18522e-06
5.24773e-06
5.25283e-06
5.2215e-06
5.16931e-06
5.10597e-06
5.04275e-06
4.98516e-06
4.93191e-06
4.88576e-06
4.84334e-06
4.80078e-06
4.75934e-06
4.71516e-06
4.66602e-06
4.61543e-06
4.55961e-06
4.49903e-06
4.4368e-06
4.36925e-06
4.29892e-06
4.22676e-06
4.15168e-06
4.07387e-06
3.99481e-06
3.91408e-06
3.8303e-06
3.7457e-06
3.65835e-06
3.56892e-06
3.47753e-06
3.38204e-06
3.28426e-06
3.18293e-06
3.07696e-06
2.96809e-06
2.85612e-06
2.74137e-06
2.62515e-06
2.50752e-06
2.39032e-06
2.27555e-06
2.16391e-06
2.05612e-06
1.95362e-06
1.85885e-06
1.77301e-06
1.69751e-06
1.63497e-06
1.58506e-06
1.5487e-06
1.52618e-06
1.51318e-06
1.51138e-06
1.51717e-06
1.52633e-06
1.53871e-06
1.54848e-06
1.55167e-06
1.54843e-06
1.53655e-06
1.51967e-06
1.5063e-06
1.50468e-06
1.52546e-06
1.57206e-06
1.64085e-06
1.712e-06
1.73916e-06
1.69736e-06
1.5998e-06
1.50581e-06
1.50732e-06
1.58158e-06
1.63805e-06
1.61657e-06
1.5492e-06
1.49173e-06
1.45939e-06
1.45123e-06
1.46195e-06
1.49263e-06
1.54575e-06
1.66803e-06
1.99894e-06
2.3462e-06
2.44712e-06
2.28036e-06
1.71126e-06
6.85115e-07
-3.93e-07
-1.0697e-06
-1.32141e-06
-1.26195e-06
-7.39495e-07
2.24548e-07
1.44101e-06
2.80051e-06
3.8444e-06
4.14903e-06
3.94898e-06
3.45766e-06
2.66138e-06
1.83044e-06
2.02517e-06
3.64153e-06
4.84816e-06
3.75782e-06
-3.43701e-07
-5.38664e-06
-9.7971e-06
-1.33416e-05
-1.60556e-05
-1.80304e-05
-1.93155e-05
-1.99949e-05
-2.01441e-05
-1.98104e-05
-1.89887e-05
-1.77548e-05
-1.61501e-05
-1.42138e-05
-1.2179e-05
-9.80427e-06
-7.41124e-06
-4.98888e-06
-2.67569e-06
-6.92858e-07
1.24689e-06
3.13374e-06
4.96445e-06
6.78352e-06
8.53635e-06
1.01069e-05
1.14479e-05
1.25723e-05
1.34187e-05
1.38335e-05
1.37678e-05
1.32742e-05
1.24092e-05
1.12222e-05
9.79595e-06
8.35937e-06
7.14685e-06
6.26991e-06
5.67897e-06
5.20901e-06
4.80253e-06
4.63466e-06
4.91751e-06
5.55369e-06
5.79842e-06
5.46622e-06
4.97074e-06
4.34258e-06
3.66543e-06
3.06537e-06
2.46349e-06
1.72014e-06
1.36151e-06
1.20583e-06
1.70011e-06
3.17397e-06
4.9158e-06
6.2892e-06
7.44447e-06
8.23553e-06
8.83758e-06
9.38243e-06
9.23423e-06
9.14628e-06
9.46575e-06
1.01527e-05
1.11552e-05
1.06521e-05
9.30932e-06
6.4902e-06
2.5844e-06
-7.61434e-07
-3.58763e-06
-3.79387e-06
-5.15866e-06
-6.07735e-06
-9.62774e-06
-3.4307e-06
-5.02147e-06
9.22511e-06
8.24648e-06
9.44483e-06
1.16779e-05
1.24924e-05
1.06544e-05
9.41933e-06
7.2413e-06
6.97118e-06
-5.90982e-07
5.90982e-07
-3.28338e-07
-2.62644e-07
3.42319e-07
-6.70657e-07
8.83886e-07
-5.41567e-07
1.03256e-06
-1.48679e-07
6.96717e-07
3.35848e-07
7.45494e-08
6.22168e-07
-1.71805e-07
2.46355e-07
1.70757e-07
-3.42562e-07
8.89084e-07
-7.18328e-07
1.2524e-06
-3.63316e-07
1.16356e-06
8.88377e-08
6.65689e-07
4.97874e-07
-3.8538e-08
7.04227e-07
-5.79804e-07
5.41266e-07
-1.18605e-06
6.06241e-07
-1.85339e-06
6.67349e-07
-2.41665e-06
5.63251e-07
-2.5887e-06
1.72059e-07
-2.37635e-06
-2.12351e-07
-1.98974e-06
-3.86609e-07
-1.5021e-06
-4.87639e-07
-9.26498e-07
-5.75606e-07
-2.82923e-07
-6.43575e-07
4.41647e-07
-7.2457e-07
1.22833e-06
-7.86684e-07
2.01614e-06
-7.87812e-07
2.78743e-06
-7.71287e-07
3.54642e-06
-7.58985e-07
4.25441e-06
-7.07991e-07
4.85681e-06
-6.02406e-07
5.43432e-06
-5.77508e-07
5.77717e-06
-3.42853e-07
5.86016e-06
-8.29826e-08
5.68306e-06
1.77098e-07
5.20368e-06
4.79376e-07
4.42401e-06
7.79672e-07
3.45495e-06
9.69061e-07
2.46231e-06
9.92638e-07
1.45361e-06
1.0087e-06
7.32514e-07
7.21098e-07
6.21189e-07
1.11325e-07
9.16618e-07
-2.95429e-07
1.524e-06
-6.07378e-07
2.38519e-06
-8.61193e-07
3.26449e-06
-8.79306e-07
4.05646e-06
-7.9196e-07
4.90576e-06
-8.49302e-07
5.45019e-06
-5.4443e-07
5.62205e-06
-1.71864e-07
5.84354e-06
-2.21491e-07
5.80538e-06
3.81662e-08
5.45924e-06
3.46139e-07
4.94439e-06
5.14849e-07
4.20789e-06
7.36494e-07
3.2992e-06
9.08697e-07
2.3103e-06
9.88895e-07
1.57427e-06
7.36031e-07
1.04083e-06
5.33437e-07
8.12433e-07
2.284e-07
1.29499e-06
-4.8256e-07
1.91216e-06
-6.17164e-07
2.81405e-06
-9.01892e-07
4.28356e-06
-1.46951e-06
5.41979e-06
-1.13624e-06
5.85573e-06
-4.35938e-07
6.01827e-06
-1.62539e-07
6.25052e-06
-2.32246e-07
6.57858e-06
-3.28061e-07
6.93548e-06
-3.56898e-07
6.98349e-06
-4.80107e-08
6.66061e-06
3.22874e-07
5.77048e-06
8.90128e-07
3.97754e-06
1.79295e-06
1.74579e-06
2.23175e-06
-3.44342e-07
2.09013e-06
-2.1369e-06
1.79256e-06
-3.68652e-06
1.54962e-06
-5.02227e-06
1.33574e-06
-6.18656e-06
1.16429e-06
-7.2277e-06
1.04114e-06
-8.10799e-06
8.80283e-07
-8.82927e-06
7.21283e-07
-9.45779e-06
6.28519e-07
-9.99676e-06
5.38971e-07
-1.03867e-05
3.89949e-07
-1.07184e-05
3.31684e-07
-1.10525e-05
3.34111e-07
-1.12514e-05
1.98877e-07
-1.14062e-05
1.54804e-07
-1.16215e-05
2.15297e-07
-1.17178e-05
9.63375e-08
-1.18048e-05
8.70242e-08
-1.19695e-05
1.64606e-07
-1.19857e-05
1.62638e-08
-1.20147e-05
2.90194e-08
-1.20649e-05
5.01501e-08
-1.1979e-05
-8.59141e-08
-1.19156e-05
-6.33229e-08
-1.17672e-05
-1.48422e-07
-1.14809e-05
-2.86292e-07
-1.12342e-05
-2.4676e-07
-1.08784e-05
-3.55774e-07
-1.02981e-05
-5.80299e-07
-9.82517e-06
-4.72931e-07
-9.23501e-06
-5.90162e-07
-8.45073e-06
-7.84275e-07
-7.75422e-06
-6.9651e-07
-6.91297e-06
-8.41251e-07
-6.02937e-06
-8.836e-07
-5.11769e-06
-9.1168e-07
-4.15442e-06
-9.63264e-07
-3.171e-06
-9.83421e-07
-2.16549e-06
-1.00551e-06
-1.16743e-06
-9.98062e-07
-2.08083e-07
-9.5935e-07
7.09889e-07
-9.17972e-07
1.56414e-06
-8.5425e-07
2.33306e-06
-7.68922e-07
3.02146e-06
-6.88403e-07
3.64899e-06
-6.27529e-07
4.15754e-06
-5.08542e-07
4.32356e-06
-1.66019e-07
4.10532e-06
2.18234e-07
3.65219e-06
4.53135e-07
3.13332e-06
5.18865e-07
2.77877e-06
3.5455e-07
2.85496e-06
-7.61843e-08
3.19056e-06
-3.35609e-07
3.27664e-06
-8.60745e-08
3.12702e-06
1.49615e-07
3.20588e-06
-7.88593e-08
4.0162e-06
-8.10321e-07
5.64505e-06
-1.62885e-06
7.428e-06
-1.78295e-06
8.71232e-06
-1.28432e-06
9.26478e-06
-5.52453e-07
9.03828e-06
2.26494e-07
7.98198e-06
1.0563e-06
6.26062e-06
1.72136e-06
4.15615e-06
2.10447e-06
1.96523e-06
2.19092e-06
-1.06061e-07
2.07129e-06
-2.04666e-06
1.9406e-06
-3.70147e-06
1.65481e-06
-5.06521e-06
1.36374e-06
-6.17223e-06
1.10702e-06
-6.99859e-06
8.26355e-07
-7.68382e-06
6.85238e-07
-8.00415e-06
3.2033e-07
-7.79498e-06
-2.09178e-07
-7.61564e-06
-1.79337e-07
-6.92724e-06
-6.88399e-07
-6.40948e-06
-5.17761e-07
-5.79362e-06
-6.15856e-07
-5.20413e-06
-5.89496e-07
-4.50539e-06
-6.98741e-07
-3.64112e-06
-8.64265e-07
-2.57129e-06
-1.06983e-06
-1.35174e-06
-1.21955e-06
-1.22225e-07
-1.22952e-06
9.5534e-07
-1.07756e-06
1.73893e-06
-7.83588e-07
2.19e-06
-4.51076e-07
2.38152e-06
-1.91512e-07
2.41988e-06
-3.83671e-08
2.40234e-06
1.75455e-08
2.38698e-06
1.53535e-08
2.36301e-06
2.39713e-08
2.28044e-06
8.2571e-08
2.0654e-06
2.1504e-07
1.65302e-06
4.12378e-07
9.76473e-07
6.76551e-07
1.44631e-08
9.6201e-07
-1.21855e-06
1.23301e-06
-2.66971e-06
1.45116e-06
-4.15793e-06
1.48822e-06
-5.60001e-06
1.44209e-06
-6.90619e-06
1.30618e-06
-7.94257e-06
1.03638e-06
-8.69722e-06
7.54648e-07
-9.21845e-06
5.21231e-07
-9.55612e-06
3.37665e-07
-9.7014e-06
1.4528e-07
-9.72209e-06
2.06908e-08
-9.61669e-06
-1.05397e-07
-9.34346e-06
-2.7323e-07
-9.03341e-06
-3.10047e-07
-8.75758e-06
-2.75831e-07
-8.50623e-06
-2.5135e-07
-8.24066e-06
-2.65571e-07
-7.75842e-06
-4.82245e-07
-7.29252e-06
-4.65897e-07
-6.94443e-06
-3.48085e-07
-6.54331e-06
-4.01125e-07
-5.79589e-06
-7.47419e-07
-4.70458e-06
-1.09131e-06
-3.40674e-06
-1.29784e-06
-1.76497e-06
-1.64177e-06
-1.76497e-06
-2.61697e-07
8.5268e-07
4.02102e-07
-9.26443e-07
1.07702e-06
-1.34558e-06
1.61185e-06
-1.07639e-06
1.82797e-06
-3.64802e-07
1.81966e-06
3.44158e-07
1.43658e-06
1.00525e-06
7.79859e-07
9.03073e-07
4.61676e-07
-2.43787e-08
4.38394e-07
-6.95045e-07
1.94837e-07
-1.1976e-07
-2.94336e-07
5.78011e-07
-6.59507e-07
8.63045e-07
-1.04151e-06
1.08623e-06
-1.84601e-06
1.34577e-06
-2.78607e-06
1.5463e-06
-3.4475e-06
1.32878e-06
-3.52068e-06
6.36428e-07
-3.13847e-06
-2.10149e-07
-2.82518e-06
-5.25643e-07
-2.58085e-06
-6.30937e-07
-2.25545e-06
-8.13038e-07
-1.79974e-06
-1.03131e-06
-1.29763e-06
-1.14568e-06
-6.77044e-07
-1.34516e-06
5.06369e-08
-1.51437e-06
8.4081e-07
-1.57798e-06
1.65586e-06
-1.58634e-06
2.47676e-06
-1.57989e-06
3.32666e-06
-1.55789e-06
4.17883e-06
-1.45457e-06
5.01277e-06
-1.41145e-06
5.73928e-06
-1.06937e-06
6.22677e-06
-5.70465e-07
6.57906e-06
-1.75193e-07
6.69632e-06
3.6211e-07
6.54621e-06
9.29782e-07
6.26506e-06
1.25022e-06
5.90323e-06
1.35447e-06
5.61484e-06
1.29709e-06
5.40714e-06
9.28794e-07
5.27161e-06
2.46856e-07
5.44479e-06
-4.6861e-07
5.83086e-06
-9.93445e-07
6.41828e-06
-1.44861e-06
6.98611e-06
-1.44714e-06
7.63702e-06
-1.44287e-06
8.43024e-06
-1.64251e-06
8.72631e-06
-8.40505e-07
8.99979e-06
-4.45345e-07
9.23996e-06
-4.61658e-07
9.08996e-06
1.88166e-07
8.96703e-06
4.69068e-07
8.62299e-06
8.58893e-07
8.15243e-06
1.20705e-06
7.57633e-06
1.4848e-06
7.02236e-06
1.54286e-06
6.55241e-06
1.20598e-06
5.58704e-06
1.49881e-06
4.88443e-06
9.31009e-07
4.84023e-06
-4.38361e-07
4.8672e-06
-6.44137e-07
5.34383e-06
-1.37852e-06
6.24667e-06
-2.37235e-06
7.09493e-06
-1.98449e-06
7.59192e-06
-9.32936e-07
7.77617e-06
-3.46786e-07
7.28118e-06
2.62744e-07
5.81734e-06
1.13578e-06
3.29232e-06
2.16812e-06
-1.69128e-07
3.41344e-06
-3.69472e-06
3.84847e-06
-6.62831e-06
3.82372e-06
-8.83707e-06
4.0017e-06
-1.05833e-05
3.97802e-06
-1.2138e-05
3.64475e-06
-1.35557e-05
3.21034e-06
-1.47301e-05
2.72399e-06
-1.56944e-05
2.30002e-06
-1.64934e-05
1.96327e-06
-1.71026e-05
1.65037e-06
-1.75696e-05
1.34724e-06
-1.78668e-05
1.01853e-06
-1.80246e-05
7.86351e-07
-1.8135e-05
6.49341e-07
-1.81247e-05
3.79675e-07
-1.80325e-05
2.39464e-07
-1.79067e-05
2.08258e-07
-1.76819e-05
-2.58945e-08
-1.74444e-05
-8.26794e-08
-1.72004e-05
-2.87484e-08
-1.68865e-05
-2.17552e-07
-1.65513e-05
-2.48177e-07
-1.61943e-05
-1.92387e-07
-1.57643e-05
-4.13694e-07
-1.53272e-05
-4.0807e-07
-1.48722e-05
-4.04905e-07
-1.43296e-05
-6.28536e-07
-1.37433e-05
-6.49581e-07
-1.31165e-05
-7.75175e-07
-1.2503e-05
-8.99794e-07
-1.17498e-05
-9.99965e-07
-1.09538e-05
-1.15184e-06
-1.0206e-05
-1.32805e-06
-9.34516e-06
-1.33379e-06
-8.39862e-06
-1.5367e-06
-7.53523e-06
-1.64767e-06
-6.55192e-06
-1.67982e-06
-5.55226e-06
-1.84091e-06
-4.55737e-06
-1.87849e-06
-3.51389e-06
-1.95516e-06
-2.47756e-06
-1.99959e-06
-1.43145e-06
-2.02953e-06
-3.79339e-07
-2.05762e-06
6.66048e-07
-2.04345e-06
1.68444e-06
-1.97774e-06
2.67613e-06
-1.90967e-06
3.64056e-06
-1.81868e-06
4.56303e-06
-1.69138e-06
5.37344e-06
-1.49882e-06
6.01473e-06
-1.26882e-06
6.59391e-06
-1.08772e-06
7.2099e-06
-7.82011e-07
7.67277e-06
-2.44633e-07
7.69662e-06
4.29283e-07
7.38862e-06
8.26873e-07
7.41525e-06
3.27912e-07
8.42872e-06
-1.08965e-06
1.03002e-05
-2.20707e-06
1.15977e-05
-1.38358e-06
1.11325e-05
6.14777e-07
9.78049e-06
1.27317e-06
9.11944e-06
-1.49266e-07
9.54198e-06
-2.05139e-06
1.03388e-05
-2.57977e-06
1.06094e-05
-1.55497e-06
9.79096e-06
2.66034e-07
7.99735e-06
2.0201e-06
5.74299e-06
3.31067e-06
3.3703e-06
4.09405e-06
1.06881e-06
4.40596e-06
-1.02657e-06
4.28631e-06
-3.00023e-06
4.04494e-06
-4.70246e-06
3.64283e-06
-6.05557e-06
3.00792e-06
-7.18413e-06
2.4923e-06
-8.08051e-06
2.0034e-06
-8.72796e-06
1.4738e-06
-9.17759e-06
1.13488e-06
-9.15589e-06
2.98627e-07
-8.77641e-06
-5.88654e-07
-8.2749e-06
-6.80855e-07
-7.23674e-06
-1.72656e-06
-6.29116e-06
-1.46334e-06
-5.14005e-06
-1.76697e-06
-4.03443e-06
-1.69511e-06
-2.93787e-06
-1.7953e-06
-1.81041e-06
-1.99172e-06
-5.62795e-07
-2.31745e-06
8.49968e-07
-2.63231e-06
2.36959e-06
-2.74914e-06
3.80931e-06
-2.51729e-06
4.90279e-06
-1.87707e-06
5.46401e-06
-1.01229e-06
5.57597e-06
-3.03472e-07
5.4655e-06
7.21031e-08
5.35141e-06
1.31636e-07
5.27696e-06
8.97974e-08
5.25816e-06
4.27728e-08
5.18798e-06
1.52756e-07
4.97992e-06
4.231e-07
4.52401e-06
8.68285e-07
3.63893e-06
1.56163e-06
2.39705e-06
2.2039e-06
9.09114e-07
2.72094e-06
-7.24568e-07
3.08484e-06
-2.3074e-06
3.07105e-06
-3.69181e-06
2.8265e-06
-4.8054e-06
2.41977e-06
-5.53845e-06
1.76943e-06
-5.88655e-06
1.10275e-06
-6.0129e-06
6.47579e-07
-6.00783e-06
3.32593e-07
-5.88189e-06
1.93344e-08
-5.73416e-06
-1.27037e-07
-5.7519e-06
-8.76524e-08
-5.84646e-06
-1.78672e-07
-6.02389e-06
-1.3262e-07
-6.14657e-06
-1.53143e-07
-5.97806e-06
-4.19869e-07
-5.72876e-06
-5.14865e-07
-5.73452e-06
-4.7649e-07
-5.82683e-06
-3.73582e-07
-5.75276e-06
-4.22163e-07
-5.31118e-06
-8.42701e-07
-4.64075e-06
-1.41785e-06
-3.86536e-06
-1.8667e-06
-2.8542e-06
-2.30901e-06
-1.58694e-06
-2.90903e-06
-3.35191e-06
1.85163e-07
6.67517e-07
1.08817e-06
-1.82945e-06
1.78407e-06
-2.04148e-06
2.22034e-06
-1.51266e-06
2.3721e-06
-5.16564e-07
2.28379e-06
4.32468e-07
1.90865e-06
1.38038e-06
1.28386e-06
1.52786e-06
6.32799e-07
6.26686e-07
-5.10971e-08
-1.11492e-08
-5.88386e-07
4.17528e-07
-9.23696e-07
9.13321e-07
-1.32858e-06
1.26793e-06
-2.07473e-06
1.83238e-06
-2.97782e-06
2.24885e-06
-3.65256e-06
2.22105e-06
-3.83831e-06
1.51453e-06
-3.59061e-06
3.88728e-07
-3.4363e-06
-3.64466e-07
-3.54919e-06
-4.12747e-07
-3.67264e-06
-5.07489e-07
-3.55973e-06
-9.25949e-07
-3.45367e-06
-1.13737e-06
-3.26055e-06
-1.33881e-06
-2.88302e-06
-1.72269e-06
-2.37778e-06
-2.01961e-06
-1.67025e-06
-2.28551e-06
-8.7244e-07
-2.38414e-06
-5.65865e-08
-2.39574e-06
7.80252e-07
-2.39473e-06
1.73056e-06
-2.40488e-06
2.69537e-06
-2.37626e-06
3.53615e-06
-1.91014e-06
4.22147e-06
-1.25579e-06
4.74006e-06
-6.93775e-07
5.10078e-06
1.38359e-09
5.35295e-06
6.77617e-07
5.49102e-06
1.11215e-06
5.58539e-06
1.26009e-06
5.63979e-06
1.24269e-06
5.7104e-06
8.58187e-07
5.89184e-06
6.54102e-08
6.23587e-06
-8.12635e-07
6.7609e-06
-1.51847e-06
7.38109e-06
-2.06881e-06
8.16935e-06
-2.23539e-06
9.01387e-06
-2.28739e-06
9.6206e-06
-2.24925e-06
1.01634e-05
-1.38335e-06
1.05557e-05
-8.37562e-07
1.06543e-05
-5.60304e-07
1.0668e-05
1.74438e-07
1.03857e-05
7.51425e-07
1.01063e-05
1.13829e-06
9.85089e-06
1.46244e-06
9.37792e-06
1.95777e-06
9.23382e-06
1.68696e-06
8.71544e-06
1.72437e-06
8.00655e-06
2.20769e-06
7.76318e-06
1.17438e-06
7.08285e-06
2.41967e-07
6.59473e-06
-1.56012e-07
6.72857e-06
-1.51236e-06
6.73513e-06
-2.37891e-06
6.38365e-06
-1.63301e-06
5.4179e-06
3.28105e-08
3.50426e-06
1.56686e-06
2.886e-07
3.47841e-06
-3.73993e-06
5.16432e-06
-7.37298e-06
5.80117e-06
-1.00032e-05
6.04363e-06
-1.20714e-05
5.91667e-06
-1.3883e-05
5.63537e-06
-1.51256e-05
5.24424e-06
-1.59317e-05
4.78412e-06
-1.65232e-05
4.23624e-06
-1.69897e-05
3.67686e-06
-1.73179e-05
3.05226e-06
-1.75713e-05
2.55342e-06
-1.77055e-05
2.09739e-06
-1.76976e-05
1.64253e-06
-1.76381e-05
1.28771e-06
-1.7506e-05
8.86419e-07
-1.72873e-05
5.67665e-07
-1.69855e-05
3.47551e-07
-1.66888e-05
8.2965e-08
-1.63704e-05
-7.89429e-08
-1.59265e-05
-2.35648e-07
-1.55295e-05
-4.22854e-07
-1.51849e-05
-4.27311e-07
-1.46901e-05
-5.23515e-07
-1.42257e-05
-6.81926e-07
-1.3825e-05
-6.48927e-07
-1.32765e-05
-7.40827e-07
-1.27841e-05
-9.06153e-07
-1.22542e-05
-9.37945e-07
-1.16399e-05
-1.01917e-06
-1.10721e-05
-1.19635e-06
-1.04707e-05
-1.25102e-06
-9.73172e-06
-1.51415e-06
-9.02665e-06
-1.60487e-06
-8.31696e-06
-1.70965e-06
-7.50384e-06
-1.96496e-06
-6.68794e-06
-2.14396e-06
-5.84021e-06
-2.18151e-06
-4.94892e-06
-2.42799e-06
-4.05566e-06
-2.54093e-06
-3.10143e-06
-2.63405e-06
-2.15415e-06
-2.78818e-06
-1.16689e-06
-2.86576e-06
-1.83137e-07
-2.93891e-06
8.01898e-07
-2.98463e-06
1.79069e-06
-3.01832e-06
2.78387e-06
-3.0508e-06
3.76273e-06
-3.02231e-06
4.716e-06
-2.93102e-06
5.62197e-06
-2.81563e-06
6.47386e-06
-2.67057e-06
7.22442e-06
-2.44194e-06
7.91386e-06
-2.18827e-06
8.54552e-06
-1.90047e-06
9.03185e-06
-1.57405e-06
9.47551e-06
-1.22567e-06
1.00741e-05
-8.43183e-07
1.0693e-05
-1.8969e-07
1.06369e-05
8.8301e-07
9.75699e-06
1.20781e-06
9.09395e-06
-4.2661e-07
1.00963e-05
-3.20942e-06
1.25085e-05
-3.79579e-06
1.43806e-05
-1.25735e-06
1.4711e-05
9.42779e-07
1.3758e-05
8.03797e-07
1.24449e-05
-7.38317e-07
1.08756e-05
-1.01052e-06
9.12392e-06
1.96758e-07
7.28747e-06
2.10249e-06
5.12213e-06
4.18544e-06
2.82864e-06
5.60415e-06
7.83473e-07
6.13922e-06
-1.02508e-06
6.21451e-06
-2.84576e-06
6.10699e-06
-4.56141e-06
5.76059e-06
-5.99089e-06
5.07231e-06
-7.17064e-06
4.18768e-06
-8.22866e-06
3.55031e-06
-9.17099e-06
2.94573e-06
-9.94914e-06
2.25195e-06
-1.03642e-05
1.54993e-06
-1.04347e-05
3.69162e-07
-1.02237e-05
-7.9973e-07
-9.73512e-06
-1.16939e-06
-8.82884e-06
-2.63283e-06
-7.92009e-06
-2.37209e-06
-6.77716e-06
-2.9099e-06
-5.55225e-06
-2.92002e-06
-4.19894e-06
-3.14862e-06
-2.79803e-06
-3.39263e-06
-1.29827e-06
-3.8172e-06
3.22736e-07
-4.25332e-06
2.11821e-06
-4.54461e-06
4.11574e-06
-4.51481e-06
6.05736e-06
-3.8187e-06
7.41585e-06
-2.37077e-06
7.97731e-06
-8.64938e-07
7.82527e-06
2.24146e-07
7.33334e-06
6.23563e-07
6.85964e-06
5.63499e-07
6.52817e-06
3.74242e-07
6.17446e-06
5.06466e-07
5.49169e-06
1.10587e-06
4.5641e-06
1.79587e-06
3.54141e-06
2.58433e-06
2.37791e-06
3.36739e-06
1.01756e-06
4.0813e-06
-4.44148e-07
4.54655e-06
-1.94876e-06
4.57566e-06
-3.25482e-06
4.13256e-06
-4.24277e-06
3.40772e-06
-4.91185e-06
2.43851e-06
-5.2414e-06
1.4323e-06
-5.18023e-06
5.86407e-07
-4.84763e-06
2.46334e-13
-4.32824e-06
-5.00061e-07
-3.61036e-06
-8.44917e-07
-2.82884e-06
-8.6917e-07
-2.13533e-06
-8.72178e-07
-1.66955e-06
-5.98401e-07
-1.55301e-06
-2.69686e-07
-1.80921e-06
-1.63666e-07
-2.25686e-06
-6.72204e-08
-2.28854e-06
-4.44813e-07
-2.1201e-06
-5.42019e-07
-1.97538e-06
-5.66879e-07
-1.98493e-06
-8.3315e-07
-1.89943e-06
-1.50335e-06
-1.57836e-06
-2.18777e-06
-1.22213e-06
-2.66523e-06
-7.93642e-07
-3.33752e-06
-4.14555e-06
8.35552e-07
-1.68035e-07
1.62924e-06
-2.62313e-06
2.25682e-06
-2.66907e-06
2.56077e-06
-1.8166e-06
2.61499e-06
-5.70788e-07
2.40137e-06
6.46092e-07
2.00176e-06
1.78e-06
1.32306e-06
2.20656e-06
5.01313e-07
1.44843e-06
-2.95775e-07
7.85939e-07
-9.25742e-07
1.04749e-06
-1.42686e-06
1.41444e-06
-2.11189e-06
1.95296e-06
-2.99859e-06
2.71908e-06
-3.71591e-06
2.96617e-06
-4.07592e-06
2.58106e-06
-4.04848e-06
1.48709e-06
-4.06024e-06
4.00486e-07
-4.36782e-06
-5.68919e-08
-4.72345e-06
-5.71162e-08
-5.02605e-06
-2.04881e-07
-5.31752e-06
-6.34482e-07
-5.67322e-06
-7.81669e-07
-5.75151e-06
-1.26052e-06
-5.53836e-06
-1.93585e-06
-4.97159e-06
-2.58637e-06
-4.16467e-06
-3.09243e-06
-3.24481e-06
-3.30401e-06
-2.29459e-06
-3.34596e-06
-1.34817e-06
-3.34115e-06
-3.26176e-07
-3.42687e-06
6.06185e-07
-3.30862e-06
1.5313e-06
-2.83526e-06
2.20299e-06
-1.92748e-06
2.63286e-06
-1.12364e-06
2.99712e-06
-3.62879e-07
3.29067e-06
3.84072e-07
3.4905e-06
9.12315e-07
3.66325e-06
1.08734e-06
3.88212e-06
1.02381e-06
4.17306e-06
5.67246e-07
4.49027e-06
-2.51796e-07
4.92027e-06
-1.24264e-06
5.50141e-06
-2.09961e-06
6.18997e-06
-2.75737e-06
7.03942e-06
-3.08484e-06
7.89034e-06
-3.13831e-06
8.60765e-06
-2.96656e-06
9.37162e-06
-2.14732e-06
9.74283e-06
-1.20877e-06
9.9416e-06
-7.59066e-07
9.98239e-06
1.33647e-07
9.84552e-06
8.88295e-07
9.82858e-06
1.15523e-06
9.60395e-06
1.68707e-06
9.56605e-06
1.99567e-06
9.30311e-06
1.94991e-06
8.8367e-06
2.19077e-06
8.93295e-06
2.11145e-06
8.30472e-06
1.8026e-06
7.11666e-06
1.43003e-06
6.81245e-06
1.48194e-07
6.36831e-06
-1.06822e-06
4.84559e-06
-8.56193e-07
2.59796e-06
6.14615e-07
-4.3574e-07
3.06651e-06
-4.36158e-06
5.4927e-06
-7.94868e-06
7.0655e-06
-1.05942e-05
7.80989e-06
-1.25852e-05
7.79214e-06
-1.38716e-05
7.33005e-06
-1.46433e-05
6.68837e-06
-1.51727e-05
6.1647e-06
-1.54616e-05
5.53314e-06
-1.55479e-05
4.87042e-06
-1.54946e-05
4.18303e-06
-1.54296e-05
3.61177e-06
-1.53384e-05
2.96108e-06
-1.52583e-05
2.4733e-06
-1.51213e-05
1.96039e-06
-1.49606e-05
1.4819e-06
-1.47436e-05
1.07066e-06
-1.44725e-05
6.15311e-07
-1.42258e-05
3.2096e-07
-1.3872e-05
-6.25433e-09
-1.34988e-05
-2.90143e-07
-1.31181e-05
-4.59653e-07
-1.27573e-05
-5.96481e-07
-1.23475e-05
-8.32614e-07
-1.18946e-05
-8.80232e-07
-1.14748e-05
-9.43368e-07
-1.10295e-05
-1.12716e-06
-1.05734e-05
-1.10503e-06
-1.00803e-05
-1.23396e-06
-9.56756e-06
-1.4189e-06
-9.01685e-06
-1.48865e-06
-8.45722e-06
-1.5788e-06
-7.87203e-06
-1.78155e-06
-7.17844e-06
-1.94461e-06
-6.52601e-06
-2.16658e-06
-5.83489e-06
-2.29598e-06
-5.03535e-06
-2.50919e-06
-4.25387e-06
-2.74643e-06
-3.47744e-06
-2.92039e-06
-2.57223e-06
-3.08672e-06
-1.70338e-06
-3.29684e-06
-8.05124e-07
-3.43918e-06
1.31399e-07
-3.57057e-06
1.06151e-06
-3.7183e-06
2.03468e-06
-3.83893e-06
3.01473e-06
-3.91896e-06
3.96231e-06
-3.93221e-06
4.87604e-06
-3.93205e-06
5.78425e-06
-3.95901e-06
6.71157e-06
-3.94963e-06
7.64778e-06
-3.86722e-06
8.49141e-06
-3.65926e-06
9.29282e-06
-3.47198e-06
1.00966e-05
-3.24571e-06
1.07689e-05
-2.86062e-06
1.14413e-05
-2.57279e-06
1.20718e-05
-2.20456e-06
1.23703e-05
-1.52421e-06
1.25597e-05
-1.03262e-06
1.35508e-05
-1.18073e-06
1.513e-05
-6.96241e-07
1.54931e-05
8.4473e-07
1.4154e-05
9.125e-07
1.26977e-05
-1.75315e-06
1.28118e-05
-3.90986e-06
1.43099e-05
-2.75546e-06
1.52327e-05
2.00332e-08
1.49174e-05
1.11904e-06
1.36224e-05
5.56712e-07
1.18979e-05
7.14016e-07
9.63215e-06
2.46247e-06
7.00734e-06
4.7273e-06
4.7573e-06
6.43548e-06
2.8077e-06
7.55375e-06
8.46801e-07
8.10011e-06
-9.96607e-07
8.05791e-06
-2.68629e-06
7.79667e-06
-4.30167e-06
7.37597e-06
-5.77302e-06
6.54367e-06
-7.02958e-06
5.44424e-06
-8.02876e-06
4.5495e-06
-8.84888e-06
3.76585e-06
-9.5245e-06
2.92757e-06
-9.94536e-06
1.97079e-06
-1.01349e-05
5.58701e-07
-9.9802e-06
-9.54429e-07
-9.52321e-06
-1.62638e-06
-8.8482e-06
-3.30784e-06
-8.0074e-06
-3.21289e-06
-7.00936e-06
-3.90794e-06
-5.95791e-06
-3.97146e-06
-4.69097e-06
-4.41556e-06
-3.3064e-06
-4.7772e-06
-1.85795e-06
-5.26565e-06
-3.96925e-07
-5.71435e-06
1.08834e-06
-6.02987e-06
2.77002e-06
-6.1965e-06
4.8637e-06
-5.91238e-06
7.04299e-06
-4.55007e-06
8.60496e-06
-2.42691e-06
9.32821e-06
-4.99102e-07
9.17094e-06
7.80838e-07
8.49044e-06
1.24399e-06
7.81462e-06
1.05006e-06
7.54482e-06
7.76267e-07
7.38497e-06
1.26572e-06
6.78031e-06
2.40053e-06
5.6265e-06
3.73814e-06
4.12603e-06
4.86785e-06
2.54386e-06
5.66347e-06
1.02653e-06
6.06388e-06
-2.48047e-07
5.85023e-06
-1.34613e-06
5.23064e-06
-2.14437e-06
4.20596e-06
-2.65094e-06
2.94508e-06
-2.94559e-06
1.72695e-06
-3.13454e-06
7.75356e-07
-3.05688e-06
-7.76613e-08
-2.81106e-06
-7.4588e-07
-2.50843e-06
-1.14754e-06
-1.9196e-06
-1.458e-06
-1.30753e-06
-1.48424e-06
-5.42333e-07
-1.3636e-06
5.85888e-07
-1.39791e-06
1.39014e-06
-9.67915e-07
1.51471e-06
-1.91794e-07
8.1651e-07
2.53387e-07
3.16235e-07
-4.17436e-08
1.80252e-07
-4.30896e-07
2.21506e-07
-8.74404e-07
1.37631e-07
-1.41947e-06
7.93559e-08
-2.1295e-06
1.39879e-08
-2.59986e-06
-2.70368e-08
-3.29649e-06
-4.17259e-06
1.22375e-06
-1.39179e-06
1.8951e-06
-3.29449e-06
2.36616e-06
-3.14013e-06
2.54279e-06
-1.99322e-06
2.49439e-06
-5.22397e-07
2.20297e-06
9.37517e-07
1.7643e-06
2.21867e-06
1.1165e-06
2.85436e-06
3.14535e-07
2.25039e-06
-5.46504e-07
1.64698e-06
-1.26686e-06
1.76785e-06
-1.93361e-06
2.08119e-06
-2.7487e-06
2.76805e-06
-3.49682e-06
3.4672e-06
-3.99244e-06
3.46178e-06
-4.2364e-06
2.82502e-06
-4.29178e-06
1.54247e-06
-4.61819e-06
7.26897e-07
-5.13604e-06
4.60958e-07
-5.70635e-06
5.13188e-07
-6.39138e-06
4.80155e-07
-7.12177e-06
9.59053e-08
-7.66203e-06
-2.41412e-07
-7.80149e-06
-1.12106e-06
-7.55419e-06
-2.18314e-06
-6.8574e-06
-3.28316e-06
-5.87147e-06
-4.07836e-06
-4.68918e-06
-4.4863e-06
-3.54337e-06
-4.49176e-06
-2.56741e-06
-4.31712e-06
-1.62705e-06
-4.36723e-06
-7.29617e-07
-4.20605e-06
-4.2158e-08
-3.52272e-06
3.94124e-07
-2.36376e-06
7.43115e-07
-1.47263e-06
9.50023e-07
-5.69787e-07
1.11429e-06
2.19809e-07
1.27425e-06
7.52352e-07
1.39233e-06
9.69266e-07
1.55991e-06
8.56231e-07
1.83696e-06
2.90199e-07
2.2303e-06
-6.45136e-07
2.70186e-06
-1.7142e-06
3.35197e-06
-2.74972e-06
4.2879e-06
-3.6933e-06
5.39093e-06
-4.18788e-06
6.53668e-06
-4.28405e-06
7.42379e-06
-3.85367e-06
8.09892e-06
-2.82245e-06
8.63772e-06
-1.74757e-06
8.83497e-06
-9.56322e-07
8.85512e-06
1.135e-07
8.88299e-06
8.60426e-07
8.67996e-06
1.35826e-06
8.70065e-06
1.66637e-06
8.60239e-06
2.09393e-06
8.34132e-06
2.21099e-06
8.36332e-06
2.16876e-06
7.95211e-06
2.52265e-06
7.04778e-06
2.70694e-06
6.71576e-06
1.76206e-06
6.19817e-06
6.65782e-07
4.27218e-06
8.57769e-07
1.14965e-06
2.26634e-06
-2.65297e-06
4.41723e-06
-6.55449e-06
6.96804e-06
-9.73371e-06
8.67192e-06
-1.1814e-05
9.14577e-06
-1.29663e-05
8.96218e-06
-1.3586e-05
8.41185e-06
-1.38208e-05
7.56489e-06
-1.38143e-05
6.68181e-06
-1.368e-05
6.03048e-06
-1.34658e-05
5.3189e-06
-1.32652e-05
4.66986e-06
-1.31321e-05
4.04993e-06
-1.30159e-05
3.49548e-06
-1.28882e-05
2.83343e-06
-1.27342e-05
2.3193e-06
-1.25994e-05
1.82559e-06
-1.24137e-05
1.29621e-06
-1.21859e-05
8.42884e-07
-1.19212e-05
3.50531e-07
-1.16453e-05
4.5085e-08
-1.12768e-05
-3.74716e-07
-1.08782e-05
-6.88736e-07
-1.04971e-05
-8.40813e-07
-1.00813e-05
-1.01228e-06
-9.69785e-06
-1.21604e-06
-9.22007e-06
-1.35801e-06
-8.72252e-06
-1.44092e-06
-8.30607e-06
-1.54361e-06
-7.80768e-06
-1.60342e-06
-7.26155e-06
-1.78008e-06
-6.71197e-06
-1.96848e-06
-6.14465e-06
-2.05598e-06
-5.52387e-06
-2.19957e-06
-4.83898e-06
-2.46644e-06
-4.13479e-06
-2.6488e-06
-3.42946e-06
-2.87191e-06
-2.63579e-06
-3.08965e-06
-1.82245e-06
-3.32253e-06
-1.00762e-06
-3.56126e-06
-1.58289e-07
-3.76972e-06
7.28941e-07
-3.97395e-06
1.6082e-06
-4.1761e-06
2.5162e-06
-4.34718e-06
3.42361e-06
-4.47799e-06
4.33308e-06
-4.62777e-06
5.28087e-06
-4.78672e-06
6.25913e-06
-4.89722e-06
7.20496e-06
-4.87804e-06
8.08312e-06
-4.81021e-06
8.91092e-06
-4.78681e-06
9.72092e-06
-4.75963e-06
1.05562e-05
-4.70246e-06
1.14113e-05
-4.51436e-06
1.1991e-05
-4.05172e-06
1.24764e-05
-3.73108e-06
1.31775e-05
-3.56175e-06
1.37841e-05
-3.17939e-06
1.42164e-05
-2.63686e-06
1.44294e-05
-1.73726e-06
1.45445e-05
-1.14765e-06
1.5016e-05
-1.65221e-06
1.60851e-05
-1.76542e-06
1.69697e-05
-3.97944e-08
1.67143e-05
1.16791e-06
1.53281e-05
-3.67014e-07
1.41383e-05
-2.72001e-06
1.44743e-05
-3.09149e-06
1.5744e-05
-1.24965e-06
1.61118e-05
7.51239e-07
1.47916e-05
1.8769e-06
1.22085e-05
3.29708e-06
9.41862e-06
5.25238e-06
6.78088e-06
7.36504e-06
4.399e-06
8.81735e-06
2.61548e-06
9.33728e-06
1.12293e-06
9.59266e-06
-6.41327e-07
9.82217e-06
-2.59503e-06
9.75038e-06
-4.49989e-06
9.28082e-06
-6.17581e-06
8.21959e-06
-7.56311e-06
6.83154e-06
-8.56467e-06
5.55106e-06
-9.22867e-06
4.42984e-06
-9.59451e-06
3.29341e-06
-9.77366e-06
2.14994e-06
-9.8056e-06
5.90643e-07
-9.73559e-06
-1.02443e-06
-9.29024e-06
-2.07174e-06
-8.73936e-06
-3.85872e-06
-7.7117e-06
-4.24055e-06
-6.47668e-06
-5.14296e-06
-5.27707e-06
-5.17108e-06
-3.9646e-06
-5.72803e-06
-2.55566e-06
-6.18614e-06
-1.12929e-06
-6.69202e-06
2.4699e-07
-7.09063e-06
1.47914e-06
-7.26202e-06
2.55816e-06
-7.27552e-06
3.84282e-06
-7.19704e-06
5.72256e-06
-6.4298e-06
7.62865e-06
-4.333e-06
8.87716e-06
-1.74762e-06
9.46365e-06
1.94349e-07
9.5709e-06
1.13675e-06
9.09703e-06
1.52393e-06
8.27849e-06
1.59481e-06
7.64704e-06
1.89717e-06
7.22393e-06
2.82364e-06
6.66762e-06
4.29445e-06
5.69842e-06
5.83705e-06
4.50945e-06
6.85245e-06
3.2788e-06
7.29453e-06
2.22354e-06
6.90549e-06
1.46148e-06
5.9927e-06
9.1061e-07
4.75683e-06
6.11297e-07
3.2444e-06
5.4514e-07
1.79311e-06
5.09117e-07
8.11378e-07
5.8945e-07
-1.57994e-07
8.50936e-07
-1.00737e-06
1.02004e-06
-1.31665e-06
1.08821e-06
-1.52617e-06
1.20458e-06
-1.60061e-06
1.24607e-06
-1.4051e-06
1.21786e-06
-1.3697e-06
1.67152e-06
-1.42157e-06
2.8391e-06
-1.35938e-06
3.5282e-06
-4.35714e-07
3.23637e-06
2.50086e-07
2.28351e-06
5.2197e-07
1.58977e-06
-1.80664e-07
1.48947e-06
-1.31918e-06
1.01554e-06
-1.65557e-06
6.63206e-07
-2.24753e-06
3.09794e-07
-2.94308e-06
-3.8628e-06
1.18747e-06
-2.57925e-06
1.85706e-06
-3.96407e-06
2.20564e-06
-3.48871e-06
2.27521e-06
-2.0628e-06
2.13742e-06
-3.84603e-07
1.7939e-06
1.28104e-06
1.30611e-06
2.70646e-06
6.61151e-07
3.49932e-06
-1.08979e-07
3.02052e-06
-9.19605e-07
2.4576e-06
-1.68359e-06
2.53184e-06
-2.40402e-06
2.80162e-06
-3.11164e-06
3.47568e-06
-3.60804e-06
3.9636e-06
-3.89129e-06
3.74503e-06
-4.11941e-06
3.05315e-06
-4.42549e-06
1.84855e-06
-5.02337e-06
1.32478e-06
-5.70488e-06
1.14247e-06
-6.443e-06
1.25131e-06
-7.26684e-06
1.30399e-06
-8.10428e-06
9.33346e-07
-8.70008e-06
3.54388e-07
-8.98578e-06
-8.35362e-07
-8.83677e-06
-2.33215e-06
-8.17893e-06
-3.941e-06
-7.16047e-06
-5.09682e-06
-5.86881e-06
-5.77797e-06
-4.56972e-06
-5.79085e-06
-3.51445e-06
-5.37239e-06
-2.78918e-06
-5.0925e-06
-2.21139e-06
-4.78384e-06
-1.69176e-06
-4.04235e-06
-1.34532e-06
-2.71019e-06
-1.16063e-06
-1.65733e-06
-1.0076e-06
-7.2282e-07
-8.98647e-07
1.10858e-07
-8.6835e-07
7.22055e-07
-8.35e-07
9.35916e-07
-7.20418e-07
7.41648e-07
-5.36656e-07
1.06438e-07
-2.50425e-07
-9.31367e-07
3.16471e-07
-2.2811e-06
1.26656e-06
-3.69981e-06
2.56598e-06
-4.99272e-06
3.95831e-06
-5.58021e-06
5.17096e-06
-5.4967e-06
5.98262e-06
-4.66534e-06
6.62355e-06
-3.46338e-06
7.05368e-06
-2.1777e-06
7.17673e-06
-1.07938e-06
7.32934e-06
-3.91087e-08
7.23796e-06
9.5181e-07
7.13279e-06
1.46343e-06
6.87669e-06
1.92247e-06
6.72009e-06
2.25053e-06
6.85292e-06
2.07816e-06
6.49385e-06
2.52783e-06
6.12496e-06
2.89155e-06
6.28623e-06
2.54567e-06
5.79053e-06
2.25775e-06
3.76043e-06
2.69588e-06
5.62764e-07
4.05544e-06
-3.1637e-06
5.99281e-06
-7.01158e-06
8.2651e-06
-1.00263e-05
9.98275e-06
-1.1824e-05
1.04696e-05
-1.25576e-05
9.87944e-06
-1.26588e-05
9.06329e-06
-1.24381e-05
8.19116e-06
-1.21193e-05
7.24608e-06
-1.18518e-05
6.4144e-06
-1.15574e-05
5.73605e-06
-1.13169e-05
5.07836e-06
-1.11083e-05
4.46126e-06
-1.09837e-05
3.92533e-06
-1.08216e-05
3.3334e-06
-1.06756e-05
2.68738e-06
-1.04721e-05
2.11588e-06
-1.01954e-05
1.54889e-06
-9.88483e-06
9.856e-07
-9.55566e-06
5.1371e-07
-9.22603e-06
2.0905e-08
-8.82163e-06
-3.59315e-07
-8.44028e-06
-7.56065e-07
-8.04466e-06
-1.08435e-06
-7.63248e-06
-1.253e-06
-7.20104e-06
-1.44371e-06
-6.75486e-06
-1.66222e-06
-6.31081e-06
-1.80207e-06
-5.8273e-06
-1.92443e-06
-5.34098e-06
-2.02993e-06
-4.8014e-06
-2.143e-06
-4.22344e-06
-2.35804e-06
-3.66746e-06
-2.52446e-06
-3.0388e-06
-2.68463e-06
-2.34345e-06
-2.89492e-06
-1.65468e-06
-3.15521e-06
-9.14872e-07
-3.38861e-06
-1.48938e-07
-3.63784e-06
6.66589e-07
-3.90518e-06
1.491e-06
-4.14695e-06
2.33445e-06
-4.40471e-06
3.19889e-06
-4.63416e-06
4.07745e-06
-4.85251e-06
4.98518e-06
-5.08384e-06
5.90809e-06
-5.27009e-06
6.82356e-06
-5.39346e-06
7.71051e-06
-5.51472e-06
8.60999e-06
-5.68619e-06
9.53288e-06
-5.82011e-06
1.04499e-05
-5.79507e-06
1.1348e-05
-5.70827e-06
1.21783e-05
-5.61718e-06
1.29093e-05
-5.49059e-06
1.35146e-05
-5.3078e-06
1.42036e-05
-5.20332e-06
1.50452e-05
-4.89335e-06
1.54678e-05
-4.15369e-06
1.56712e-05
-3.76516e-06
1.63126e-05
-3.82079e-06
1.6987e-05
-3.31118e-06
1.72358e-05
-1.98615e-06
1.7024e-05
-9.35832e-07
1.69634e-05
-1.59163e-06
1.73946e-05
-2.1966e-06
1.79702e-05
-6.15381e-07
1.78415e-05
1.29657e-06
1.68753e-05
5.99201e-07
1.59188e-05
-1.76353e-06
1.5654e-05
-2.82665e-06
1.62916e-05
-1.88729e-06
1.6272e-05
7.70914e-07
1.47402e-05
3.40869e-06
1.2291e-05
5.74621e-06
9.53581e-06
8.00761e-06
7.20308e-06
9.69777e-06
5.1842e-06
1.08362e-05
2.85825e-06
1.16632e-05
5.21187e-07
1.19297e-05
-1.46782e-06
1.18112e-05
-3.29285e-06
1.15754e-05
-4.97022e-06
1.09582e-05
-6.53332e-06
9.78268e-06
-7.84691e-06
8.14513e-06
-8.69565e-06
6.3998e-06
-9.23382e-06
4.96801e-06
-9.5555e-06
3.61509e-06
-9.56494e-06
2.15938e-06
-9.61326e-06
6.38956e-07
-9.49421e-06
-1.14348e-06
-9.21337e-06
-2.35258e-06
-8.87211e-06
-4.19998e-06
-8.00778e-06
-5.10488e-06
-6.72624e-06
-6.4245e-06
-5.29168e-06
-6.60564e-06
-3.74932e-06
-7.27039e-06
-2.14477e-06
-7.79068e-06
-6.33323e-07
-8.20347e-06
7.7088e-07
-8.49483e-06
2.10271e-06
-8.59385e-06
3.19907e-06
-8.37188e-06
3.90808e-06
-7.90606e-06
4.79966e-06
-7.32138e-06
6.5179e-06
-6.05124e-06
8.35876e-06
-3.58848e-06
9.4766e-06
-9.23487e-07
9.76742e-06
8.45929e-07
9.67521e-06
1.61614e-06
9.332e-06
1.93802e-06
8.74884e-06
2.48034e-06
8.20485e-06
3.36762e-06
7.73843e-06
4.76087e-06
7.24713e-06
6.32835e-06
6.59778e-06
7.5018e-06
6.02829e-06
7.86402e-06
5.41553e-06
7.51824e-06
4.97871e-06
6.42952e-06
4.74917e-06
4.98637e-06
4.59582e-06
3.39775e-06
4.38312e-06
2.00581e-06
4.40523e-06
7.89262e-07
4.51707e-06
-2.69827e-07
4.6895e-06
-1.1798e-06
4.78749e-06
-1.41464e-06
4.76155e-06
-1.50024e-06
4.57033e-06
-1.40939e-06
4.67525e-06
-1.51002e-06
4.34487e-06
-1.03932e-06
3.71207e-06
-7.8877e-07
3.1561e-06
-8.03403e-07
3.99163e-06
-1.27125e-06
4.80438e-06
-5.62658e-07
4.53858e-06
7.87771e-07
3.52538e-06
8.32531e-07
2.24243e-06
-3.62293e-08
1.41289e-06
-8.26022e-07
9.38588e-07
-1.77323e-06
7.33019e-07
-2.73751e-06
-3.12978e-06
1.029e-06
-3.60826e-06
1.59901e-06
-4.53408e-06
1.82812e-06
-3.71783e-06
1.80168e-06
-2.03636e-06
1.60262e-06
-1.85544e-07
1.25776e-06
1.6259e-06
8.0222e-07
3.162e-06
2.55131e-07
4.04641e-06
-4.09127e-07
3.68478e-06
-1.16016e-06
3.20863e-06
-1.91858e-06
3.29026e-06
-2.64969e-06
3.53273e-06
-3.31858e-06
4.14456e-06
-3.7368e-06
4.38182e-06
-3.89729e-06
3.90551e-06
-4.04544e-06
3.2013e-06
-4.37576e-06
2.17887e-06
-4.92564e-06
1.87467e-06
-5.62319e-06
1.84002e-06
-6.4054e-06
2.03352e-06
-7.29525e-06
2.19384e-06
-8.21119e-06
1.84929e-06
-8.88508e-06
1.02827e-06
-9.2292e-06
-4.91238e-07
-9.24567e-06
-2.31568e-06
-8.87529e-06
-4.31138e-06
-8.13796e-06
-5.83416e-06
-7.07956e-06
-6.83636e-06
-5.86431e-06
-7.0061e-06
-4.77819e-06
-6.45851e-06
-4.1853e-06
-5.68539e-06
-3.8648e-06
-5.10434e-06
-3.55741e-06
-4.34974e-06
-3.29964e-06
-2.96796e-06
-3.14563e-06
-1.81134e-06
-2.97553e-06
-8.92916e-07
-2.99589e-06
1.31221e-07
-3.09301e-06
8.19174e-07
-3.29201e-06
1.13492e-06
-3.44622e-06
8.95862e-07
-3.32934e-06
-1.04411e-08
-2.76017e-06
-1.50054e-06
-1.7315e-06
-3.30977e-06
-4.98916e-07
-4.93239e-06
8.22064e-07
-6.3137e-06
2.03216e-06
-6.7903e-06
3.01652e-06
-6.48106e-06
3.67882e-06
-5.32764e-06
4.09548e-06
-3.88004e-06
4.43214e-06
-2.51436e-06
4.6512e-06
-1.29844e-06
4.79275e-06
-1.80652e-07
4.95465e-06
7.89909e-07
4.95884e-06
1.45923e-06
4.93584e-06
1.94548e-06
5.10493e-06
2.08144e-06
4.89753e-06
2.28555e-06
4.86397e-06
2.56139e-06
5.22232e-06
2.5332e-06
4.70159e-06
3.0664e-06
2.77976e-06
4.17958e-06
-4.84065e-08
5.52405e-06
-3.31764e-06
7.32467e-06
-6.67252e-06
9.34769e-06
-9.45625e-06
1.10488e-05
-1.10932e-05
1.16197e-05
-1.16115e-05
1.09879e-05
-1.15192e-05
9.7871e-06
-1.11e-05
8.64417e-06
-1.05834e-05
7.67449e-06
-1.00897e-05
6.75241e-06
-9.77314e-06
6.09783e-06
-9.49978e-06
5.4627e-06
-9.31926e-06
4.89784e-06
-9.14642e-06
4.28842e-06
-8.94851e-06
3.72742e-06
-8.73304e-06
3.11793e-06
-8.49651e-06
2.45085e-06
-8.20413e-06
1.82349e-06
-7.83804e-06
1.1828e-06
-7.47879e-06
6.26353e-07
-7.07699e-06
1.11905e-07
-6.69162e-06
-3.64458e-07
-6.24836e-06
-8.02578e-07
-5.80524e-06
-1.19918e-06
-5.42867e-06
-1.46092e-06
-5.01723e-06
-1.66444e-06
-4.56807e-06
-1.89288e-06
-4.13855e-06
-2.09174e-06
-3.6971e-06
-2.24351e-06
-3.23391e-06
-2.38762e-06
-2.71901e-06
-2.54483e-06
-2.13705e-06
-2.72496e-06
-1.55575e-06
-2.93934e-06
-9.36262e-07
-3.14395e-06
-2.54444e-07
-3.36645e-06
4.60048e-07
-3.60941e-06
1.20072e-06
-3.89588e-06
1.97473e-06
-4.16263e-06
2.79108e-06
-4.45419e-06
3.62628e-06
-4.74038e-06
4.49345e-06
-5.01411e-06
5.37517e-06
-5.28643e-06
6.26122e-06
-5.52021e-06
7.1723e-06
-5.76359e-06
8.1027e-06
-6.01424e-06
9.05666e-06
-6.22405e-06
1.00146e-05
-6.35143e-06
1.09003e-05
-6.40035e-06
1.17762e-05
-6.56211e-06
1.27006e-05
-6.74451e-06
1.35334e-05
-6.62786e-06
1.42681e-05
-6.44296e-06
1.51051e-05
-6.45422e-06
1.58704e-05
-6.25586e-06
1.64081e-05
-5.8455e-06
1.67798e-05
-5.57508e-06
1.73218e-05
-5.43534e-06
1.79913e-05
-4.82313e-06
1.79842e-05
-3.75805e-06
1.79579e-05
-3.79451e-06
1.84898e-05
-3.84305e-06
1.89504e-05
-2.44676e-06
1.89431e-05
-9.28545e-07
1.86128e-05
-1.26131e-06
1.86432e-05
-2.22703e-06
1.88996e-05
-8.71796e-07
1.87977e-05
1.39844e-06
1.78887e-05
1.50821e-06
1.68106e-05
-6.85368e-07
1.61783e-05
-2.19441e-06
1.59208e-05
-1.62978e-06
1.55213e-05
1.17041e-06
1.40671e-05
4.86289e-06
1.19367e-05
7.8766e-06
9.60366e-06
1.03407e-05
7.25653e-06
1.20449e-05
5.08805e-06
1.30047e-05
3.01773e-06
1.37336e-05
8.14342e-07
1.41331e-05
-1.37715e-06
1.40027e-05
-3.13772e-06
1.3336e-05
-4.3864e-06
1.22069e-05
-5.36917e-06
1.07655e-05
-6.35034e-06
9.1263e-06
-7.1071e-06
7.15656e-06
-7.53566e-06
5.39657e-06
-7.93177e-06
4.0112e-06
-8.06835e-06
2.29596e-06
-8.18547e-06
7.56074e-07
-8.1024e-06
-1.22654e-06
-7.94672e-06
-2.50826e-06
-7.74378e-06
-4.40292e-06
-7.25766e-06
-5.59101e-06
-6.36787e-06
-7.31429e-06
-4.99994e-06
-7.97357e-06
-3.45614e-06
-8.81418e-06
-1.80782e-06
-9.43901e-06
-2.69804e-07
-9.74149e-06
1.12321e-06
-9.88784e-06
2.46368e-06
-9.93432e-06
3.77565e-06
-9.68385e-06
4.75786e-06
-8.88827e-06
5.12154e-06
-7.68506e-06
5.67787e-06
-6.60757e-06
7.10169e-06
-5.0123e-06
8.85188e-06
-2.67367e-06
1.00984e-05
-4.00596e-07
1.05282e-05
1.18631e-06
1.03614e-05
2.10485e-06
1.01283e-05
2.71346e-06
9.88636e-06
3.60954e-06
9.73282e-06
4.91441e-06
9.55064e-06
6.51053e-06
9.45326e-06
7.59918e-06
9.22788e-06
8.0894e-06
9.13141e-06
7.61472e-06
8.90567e-06
6.65526e-06
8.77403e-06
5.11802e-06
8.66828e-06
3.50349e-06
8.53957e-06
2.13451e-06
8.17592e-06
1.15292e-06
8.18665e-06
-2.80562e-07
8.26092e-06
-1.25407e-06
8.3247e-06
-1.47842e-06
8.33856e-06
-1.5141e-06
8.35014e-06
-1.42098e-06
7.85883e-06
-1.01871e-06
7.43155e-06
-6.12034e-07
7.10976e-06
-4.66975e-07
6.02461e-06
2.81744e-07
4.91504e-06
-1.61686e-07
5.13251e-06
-7.80125e-07
5.66293e-06
2.57353e-07
5.33715e-06
1.15831e-06
4.04289e-06
1.25803e-06
3.03623e-06
1.80642e-07
2.30378e-06
-1.04078e-06
1.2552e-06
-1.68893e-06
-1.87458e-06
8.05583e-07
-4.41384e-06
1.22693e-06
-4.95542e-06
1.35342e-06
-3.84432e-06
1.25672e-06
-1.93966e-06
1.01722e-06
5.39581e-08
6.68516e-07
1.9746e-06
2.20029e-07
3.61049e-06
-3.10793e-07
4.57723e-06
-8.96934e-07
4.27092e-06
-1.51795e-06
3.82964e-06
-2.03681e-06
3.80913e-06
-2.5345e-06
4.03042e-06
-3.03108e-06
4.64114e-06
-3.37266e-06
4.72341e-06
-3.53732e-06
4.07017e-06
-3.72325e-06
3.38723e-06
-4.02731e-06
2.48293e-06
-4.42109e-06
2.26845e-06
-4.92553e-06
2.34446e-06
-5.57809e-06
2.68608e-06
-6.33083e-06
2.94658e-06
-6.9642e-06
2.48266e-06
-7.45702e-06
1.5211e-06
-7.81247e-06
-1.35793e-07
-7.93283e-06
-2.19531e-06
-7.88067e-06
-4.36355e-06
-7.62696e-06
-6.08787e-06
-7.17882e-06
-7.2845e-06
-6.47624e-06
-7.70869e-06
-5.58188e-06
-7.35286e-06
-4.99854e-06
-6.26873e-06
-4.98689e-06
-5.116e-06
-5.02517e-06
-4.31145e-06
-4.98384e-06
-3.00929e-06
-5.11392e-06
-1.68126e-06
-5.12572e-06
-8.81119e-07
-5.30002e-06
3.05526e-07
-5.53757e-06
1.05672e-06
-5.65359e-06
1.25094e-06
-5.57391e-06
8.16182e-07
-5.08584e-06
-4.98514e-07
-4.31763e-06
-2.26876e-06
-3.56004e-06
-4.06736e-06
-2.73383e-06
-5.75861e-06
-1.77203e-06
-7.2755e-06
-8.99237e-07
-7.66309e-06
-1.32971e-07
-7.24733e-06
5.19449e-07
-5.98006e-06
9.3276e-07
-4.29335e-06
1.26922e-06
-2.85082e-06
1.54577e-06
-1.57499e-06
1.81641e-06
-4.51293e-07
2.14093e-06
4.65383e-07
2.40142e-06
1.19875e-06
2.59886e-06
1.74803e-06
2.67749e-06
2.00281e-06
2.91901e-06
2.04404e-06
3.19087e-06
2.28953e-06
2.52352e-06
3.20055e-06
8.98616e-07
4.6913e-06
-1.23897e-06
6.31716e-06
-3.79764e-06
8.08272e-06
-6.48128e-06
1.00083e-05
-8.8244e-06
1.16908e-05
-1.02996e-05
1.2524e-05
-1.07014e-05
1.20216e-05
-1.03562e-05
1.06426e-05
-9.82441e-06
9.25535e-06
-9.24641e-06
8.06616e-06
-8.7458e-06
7.17389e-06
-8.35141e-06
6.35802e-06
-8.05185e-06
5.79826e-06
-7.82406e-06
5.23491e-06
-7.5907e-06
4.66448e-06
-7.37048e-06
4.0682e-06
-7.07093e-06
3.42787e-06
-6.72715e-06
2.77415e-06
-6.33894e-06
2.06264e-06
-5.93513e-06
1.41968e-06
-5.50572e-06
7.53395e-07
-5.07185e-06
1.92485e-07
-4.62501e-06
-3.34943e-07
-4.17509e-06
-8.14374e-07
-3.74235e-06
-1.23532e-06
-3.33844e-06
-1.60309e-06
-2.91207e-06
-1.8873e-06
-2.45145e-06
-2.12506e-06
-1.98973e-06
-2.3546e-06
-1.52016e-06
-2.56131e-06
-1.04186e-06
-2.72181e-06
-5.20889e-07
-2.90859e-06
4.32551e-08
-3.10897e-06
6.53778e-07
-3.33549e-06
1.27899e-06
-3.56455e-06
1.94987e-06
-3.81483e-06
2.67249e-06
-4.08908e-06
3.43588e-06
-4.3728e-06
4.22879e-06
-4.68879e-06
5.05745e-06
-4.99129e-06
5.90395e-06
-5.30069e-06
6.77159e-06
-5.60802e-06
7.67766e-06
-5.92018e-06
8.59215e-06
-6.20092e-06
9.52199e-06
-6.45005e-06
1.0478e-05
-6.71964e-06
1.14514e-05
-6.9876e-06
1.23996e-05
-7.17221e-06
1.33849e-05
-7.33681e-06
1.43314e-05
-7.34681e-06
1.51036e-05
-7.33434e-06
1.59374e-05
-7.57824e-06
1.68821e-05
-7.57264e-06
1.75066e-05
-7.06738e-06
1.80399e-05
-6.98757e-06
1.8797e-05
-7.01299e-06
1.93534e-05
-6.40189e-06
1.95474e-05
-5.76908e-06
1.97117e-05
-5.59963e-06
2.02223e-05
-5.33375e-06
2.06019e-05
-4.13756e-06
2.02785e-05
-3.47114e-06
2.023e-05
-3.79454e-06
2.03978e-05
-2.61459e-06
2.03228e-05
-8.53513e-07
1.99004e-05
-8.38947e-07
1.95141e-05
-1.84073e-06
1.9452e-05
-8.09661e-07
1.92869e-05
1.56347e-06
1.8601e-05
2.19411e-06
1.73769e-05
5.38821e-07
1.63368e-05
-1.15439e-06
1.549e-05
-7.82918e-07
1.47532e-05
1.90721e-06
1.33721e-05
6.24398e-06
1.13066e-05
9.94213e-06
9.1942e-06
1.24531e-05
7.1462e-06
1.40929e-05
5.08356e-06
1.50674e-05
3.01449e-06
1.58026e-05
1.04747e-06
1.61001e-05
-6.65541e-07
1.57157e-05
-2.1023e-06
1.47727e-05
-3.34296e-06
1.34475e-05
-4.17085e-06
1.15933e-05
-4.70954e-06
9.66499e-06
-5.35533e-06
7.80235e-06
-5.81424e-06
5.85548e-06
-6.14337e-06
4.34033e-06
-6.34296e-06
2.49555e-06
-6.50499e-06
9.18102e-07
-6.50688e-06
-1.22466e-06
-6.35573e-06
-2.65941e-06
-6.09582e-06
-4.66282e-06
-5.71976e-06
-5.96706e-06
-5.13459e-06
-7.89946e-06
-3.86326e-06
-9.2449e-06
-2.44937e-06
-1.02281e-05
-9.09871e-07
-1.09785e-05
4.36419e-07
-1.10878e-05
1.58627e-06
-1.10377e-05
2.72363e-06
-1.10717e-05
3.93008e-06
-1.08903e-05
5.14147e-06
-1.00996e-05
5.94397e-06
-8.48756e-06
6.15534e-06
-6.81893e-06
6.5332e-06
-5.39015e-06
7.74574e-06
-3.88621e-06
9.35428e-06
-2.00914e-06
1.05555e-05
-1.48968e-08
1.13331e-05
1.32719e-06
1.1648e-05
2.39857e-06
1.17903e-05
3.46724e-06
1.19782e-05
4.72658e-06
1.23108e-05
6.17785e-06
1.26932e-05
7.2168e-06
1.28592e-05
7.92346e-06
1.28324e-05
7.64144e-06
1.29947e-05
6.49304e-06
1.30469e-05
5.06579e-06
1.28861e-05
3.6643e-06
1.26602e-05
2.36037e-06
1.22556e-05
1.55754e-06
1.17032e-05
2.71818e-07
1.10369e-05
-5.87697e-07
1.10729e-05
-1.51447e-06
1.12424e-05
-1.68361e-06
1.12727e-05
-1.45129e-06
1.1126e-05
-8.72001e-07
1.04589e-05
5.51035e-08
9.71411e-06
2.77807e-07
9.17393e-06
8.21922e-07
7.65763e-06
1.35462e-06
6.34706e-06
5.30442e-07
6.51479e-06
8.96248e-08
6.18689e-06
1.48622e-06
5.17841e-06
2.26651e-06
3.90533e-06
1.45372e-06
2.67558e-06
1.88965e-07
1.39217e-06
-4.05518e-07
-4.82409e-07
5.55457e-07
-4.9693e-06
8.00216e-07
-5.20018e-06
8.30917e-07
-3.87502e-06
6.96878e-07
-1.80562e-06
4.69205e-07
2.81631e-07
1.59851e-07
2.28396e-06
-2.32513e-07
4.00285e-06
-6.62206e-07
5.00692e-06
-1.12079e-06
4.7295e-06
-1.59375e-06
4.30261e-06
-1.97351e-06
4.18889e-06
-2.2401e-06
4.29701e-06
-2.4363e-06
4.83733e-06
-2.52655e-06
4.81366e-06
-2.56617e-06
4.10979e-06
-2.70724e-06
3.5283e-06
-2.93788e-06
2.71357e-06
-3.2925e-06
2.62306e-06
-3.65457e-06
2.70652e-06
-3.83394e-06
2.86546e-06
-4.01318e-06
3.12582e-06
-4.3016e-06
2.77108e-06
-4.51587e-06
1.73537e-06
-4.73505e-06
8.33852e-08
-4.86606e-06
-2.0643e-06
-5.00787e-06
-4.22174e-06
-5.19231e-06
-5.90344e-06
-5.4865e-06
-6.99031e-06
-5.71289e-06
-7.48229e-06
-5.61458e-06
-7.45117e-06
-5.24782e-06
-6.63549e-06
-5.32093e-06
-5.04289e-06
-5.79162e-06
-3.84076e-06
-5.97367e-06
-2.82724e-06
-6.24848e-06
-1.40645e-06
-6.48192e-06
-6.47684e-07
-6.70286e-06
5.26465e-07
-6.89186e-06
1.24572e-06
-6.8958e-06
1.25487e-06
-6.74857e-06
6.6896e-07
-6.36619e-06
-8.80899e-07
-6.01195e-06
-2.623e-06
-5.68838e-06
-4.39093e-06
-5.09355e-06
-6.35343e-06
-4.40669e-06
-7.96236e-06
-3.70004e-06
-8.36975e-06
-2.93511e-06
-8.01225e-06
-2.37449e-06
-6.54068e-06
-1.9265e-06
-4.74134e-06
-1.62112e-06
-3.1562e-06
-1.3743e-06
-1.82181e-06
-1.03644e-06
-7.89148e-07
-6.83078e-07
1.12016e-07
-3.66291e-07
8.81962e-07
-8.88935e-08
1.47064e-06
1.74028e-07
1.73989e-06
1.59669e-07
2.0584e-06
-5.17814e-07
2.96701e-06
-1.65421e-06
4.33695e-06
-2.98005e-06
6.01714e-06
-4.67725e-06
8.01437e-06
-6.6058e-06
1.00113e-05
-8.3137e-06
1.17162e-05
-9.49551e-06
1.28726e-05
-9.91141e-06
1.29399e-05
-9.48714e-06
1.15973e-05
-8.74831e-06
9.90378e-06
-8.00381e-06
8.51086e-06
-7.4388e-06
7.50115e-06
-6.97954e-06
6.71462e-06
-6.70853e-06
6.08701e-06
-6.43148e-06
5.52122e-06
-6.17026e-06
4.97368e-06
-5.83039e-06
4.32462e-06
-5.46513e-06
3.70294e-06
-5.0706e-06
3.03334e-06
-4.62775e-06
2.3313e-06
-4.1575e-06
1.5924e-06
-3.66037e-06
9.22553e-07
-3.18562e-06
2.78644e-07
-2.69879e-06
-2.94343e-07
-2.21393e-06
-8.1981e-07
-1.74382e-06
-1.28448e-06
-1.26824e-06
-1.7109e-06
-8.2966e-07
-2.04167e-06
-3.6288e-07
-2.35408e-06
1.18613e-07
-2.60655e-06
6.04237e-07
-2.84022e-06
1.1135e-06
-3.07057e-06
1.64471e-06
-3.25303e-06
2.21626e-06
-3.48013e-06
2.80173e-06
-3.69445e-06
3.43763e-06
-3.97138e-06
4.10193e-06
-4.22885e-06
4.80934e-06
-4.52224e-06
5.54518e-06
-4.82493e-06
6.33975e-06
-5.16736e-06
7.17682e-06
-5.52587e-06
8.05571e-06
-5.87017e-06
8.95264e-06
-6.19762e-06
9.86826e-06
-6.52365e-06
1.08184e-05
-6.87032e-06
1.17938e-05
-7.17631e-06
1.27192e-05
-7.37547e-06
1.36455e-05
-7.64593e-06
1.46777e-05
-8.01985e-06
1.56392e-05
-8.13363e-06
1.65147e-05
-8.21239e-06
1.75338e-05
-8.36592e-06
1.83845e-05
-8.18494e-06
1.89685e-05
-8.16231e-06
1.97051e-05
-8.30924e-06
2.04548e-05
-7.81708e-06
2.08062e-05
-7.33896e-06
2.11619e-05
-7.36864e-06
2.16311e-05
-6.87114e-06
2.18417e-05
-5.97964e-06
2.18534e-05
-5.61131e-06
2.1857e-05
-5.33744e-06
2.19231e-05
-4.20358e-06
2.16474e-05
-3.19545e-06
2.13353e-05
-3.48244e-06
2.13863e-05
-2.66567e-06
2.12218e-05
-6.8896e-07
2.08354e-05
-4.52519e-07
2.02652e-05
-1.27052e-06
1.98758e-05
-4.20298e-07
1.95796e-05
1.85971e-06
1.90479e-05
2.72573e-06
1.79029e-05
1.68386e-06
1.65245e-05
2.23966e-07
1.52195e-05
5.22177e-07
1.38507e-05
3.27592e-06
1.25065e-05
7.58818e-06
1.08166e-05
1.1632e-05
9.10687e-06
1.41628e-05
7.49387e-06
1.57059e-05
5.54889e-06
1.70123e-05
3.367e-06
1.79845e-05
1.38561e-06
1.80815e-05
-8.75737e-08
1.71889e-05
-1.17751e-06
1.58627e-05
-1.91854e-06
1.41886e-05
-2.48266e-06
1.21575e-05
-2.82687e-06
1.00092e-05
-3.1848e-06
8.16029e-06
-3.52764e-06
6.19832e-06
-3.93113e-06
4.74381e-06
-4.12626e-06
2.69069e-06
-4.48048e-06
1.27232e-06
-4.61607e-06
-1.08907e-06
-4.63567e-06
-2.63981e-06
-4.3963e-06
-4.90219e-06
-4.02464e-06
-6.33872e-06
-3.63561e-06
-8.28849e-06
-2.70963e-06
-1.01709e-05
-1.41743e-06
-1.15203e-05
6.43026e-08
-1.24602e-05
1.5284e-06
-1.25519e-05
2.67751e-06
-1.21868e-05
3.52451e-06
-1.19187e-05
4.4428e-06
-1.18086e-05
5.57083e-06
-1.12277e-05
6.62438e-06
-9.54112e-06
6.98392e-06
-7.17847e-06
7.06607e-06
-5.4723e-06
7.51034e-06
-4.33049e-06
8.53693e-06
-3.03573e-06
1.0015e-05
-1.49297e-06
1.13618e-05
-1.9602e-08
1.23069e-05
1.45346e-06
1.30851e-05
2.68909e-06
1.36939e-05
4.11774e-06
1.45426e-05
5.32915e-06
1.5015e-05
6.74438e-06
1.55506e-05
7.38789e-06
1.60292e-05
7.1628e-06
1.63907e-05
6.13159e-06
1.63952e-05
5.06125e-06
1.64613e-05
3.5982e-06
1.6249e-05
2.57266e-06
1.61165e-05
1.69007e-06
1.59752e-05
4.13135e-07
1.50554e-05
3.32048e-07
1.36017e-05
-6.0705e-08
1.30088e-05
-1.09072e-06
1.284e-05
-1.28249e-06
1.27844e-05
-8.16426e-07
1.27956e-05
4.39238e-08
1.22311e-05
8.42291e-07
1.18101e-05
1.24293e-06
1.08332e-05
2.33154e-06
8.90953e-06
2.45409e-06
7.61973e-06
1.37943e-06
7.15894e-06
1.947e-06
6.18843e-06
3.23701e-06
4.73441e-06
2.90774e-06
2.85796e-06
2.06542e-06
1.38513e-06
1.06731e-06
9.02716e-07
2.87826e-07
-5.25712e-06
3.42281e-07
-5.25464e-06
2.88564e-07
-3.82131e-06
1.26484e-07
-1.64354e-06
-8.3011e-08
4.91126e-07
-3.98924e-07
2.59987e-06
-7.5835e-07
4.36228e-06
-1.07881e-06
5.32738e-06
-1.40701e-06
5.0577e-06
-1.75523e-06
4.65083e-06
-2.04404e-06
4.47769e-06
-2.19554e-06
4.44851e-06
-2.16433e-06
4.80612e-06
-2.05225e-06
4.70158e-06
-1.94965e-06
4.00719e-06
-1.8658e-06
3.44446e-06
-1.79207e-06
2.63984e-06
-1.70788e-06
2.53887e-06
-1.65639e-06
2.65504e-06
-1.58496e-06
2.79403e-06
-1.37658e-06
2.91743e-06
-1.13929e-06
2.5338e-06
-1.05883e-06
1.65491e-06
-1.14209e-06
1.66636e-07
-1.32944e-06
-1.87695e-06
-1.60984e-06
-3.94133e-06
-2.05738e-06
-5.4559e-06
-2.72248e-06
-6.32522e-06
-3.69379e-06
-6.51098e-06
-4.73762e-06
-6.40734e-06
-5.23692e-06
-6.13619e-06
-5.35012e-06
-4.9297e-06
-5.92735e-06
-3.26353e-06
-6.3738e-06
-2.38079e-06
-6.69378e-06
-1.08647e-06
-7.08154e-06
-2.59919e-07
-7.2192e-06
6.64119e-07
-7.40654e-06
1.43306e-06
-7.39272e-06
1.24106e-06
-7.35655e-06
6.32794e-07
-7.30071e-06
-9.36745e-07
-7.2548e-06
-2.66891e-06
-7.22697e-06
-4.41876e-06
-7.0162e-06
-6.5642e-06
-6.72649e-06
-8.25206e-06
-6.1551e-06
-8.94114e-06
-5.47736e-06
-8.68999e-06
-4.87494e-06
-7.1431e-06
-4.28181e-06
-5.33447e-06
-3.88358e-06
-3.55443e-06
-3.57368e-06
-2.13171e-06
-3.27298e-06
-1.08985e-06
-3.01549e-06
-1.45472e-07
-2.91562e-06
7.8209e-07
-3.03531e-06
1.59033e-06
-3.43044e-06
2.13502e-06
-4.02873e-06
2.65668e-06
-4.52119e-06
3.45947e-06
-4.99273e-06
4.8085e-06
-5.89325e-06
6.91765e-06
-7.13265e-06
9.25377e-06
-8.24162e-06
1.11202e-05
-8.88257e-06
1.23572e-05
-9.04223e-06
1.30323e-05
-8.63646e-06
1.25341e-05
-7.76996e-06
1.07308e-05
-6.95588e-06
9.08969e-06
-6.13561e-06
7.69059e-06
-5.60354e-06
6.96908e-06
-5.20065e-06
6.31173e-06
-4.91979e-06
5.80616e-06
-4.60334e-06
5.20477e-06
-4.27482e-06
4.64516e-06
-3.89684e-06
3.94664e-06
-3.43926e-06
3.24536e-06
-2.97001e-06
2.56409e-06
-2.4717e-06
1.83299e-06
-1.97203e-06
1.09273e-06
-1.45907e-06
4.09595e-07
-9.34096e-07
-2.46332e-07
-4.21152e-07
-8.07288e-07
9.41007e-08
-1.33506e-06
6.00428e-07
-1.7908e-06
1.0965e-06
-2.20698e-06
1.59426e-06
-2.53943e-06
2.09518e-06
-2.855e-06
2.61663e-06
-3.12801e-06
3.12856e-06
-3.35215e-06
3.65643e-06
-3.59844e-06
4.22369e-06
-3.82028e-06
4.81193e-06
-4.06837e-06
5.42224e-06
-4.30476e-06
6.06802e-06
-4.61716e-06
6.76672e-06
-4.92755e-06
7.53091e-06
-5.28643e-06
8.32031e-06
-5.61433e-06
9.15576e-06
-6.00281e-06
1.00603e-05
-6.43044e-06
1.09854e-05
-6.7952e-06
1.19414e-05
-7.15364e-06
1.29588e-05
-7.54103e-06
1.39695e-05
-7.88103e-06
1.50287e-05
-8.23551e-06
1.61162e-05
-8.46297e-06
1.70208e-05
-8.55055e-06
1.7961e-05
-8.96003e-06
1.9012e-05
-9.18466e-06
1.97909e-05
-8.99125e-06
2.05521e-05
-9.12712e-06
2.14602e-05
-9.09308e-06
2.20908e-05
-8.7929e-06
2.24843e-05
-8.70279e-06
2.29508e-05
-8.2835e-06
2.33566e-05
-7.74481e-06
2.36106e-05
-7.62259e-06
2.3688e-05
-6.94858e-06
2.36091e-05
-5.90073e-06
2.34796e-05
-5.48178e-06
2.34531e-05
-5.31099e-06
2.32631e-05
-4.01358e-06
2.28601e-05
-2.79243e-06
2.22621e-05
-2.88439e-06
2.19016e-05
-2.30525e-06
2.15046e-05
-2.91938e-07
2.08944e-05
1.57722e-07
2.0293e-05
-6.69187e-07
1.97315e-05
1.41245e-07
1.92611e-05
2.33007e-06
1.87867e-05
3.20019e-06
1.79644e-05
2.50616e-06
1.6583e-05
1.60531e-06
1.50906e-05
2.0146e-06
1.35563e-05
4.81027e-06
1.21742e-05
8.97022e-06
1.0842e-05
1.29643e-05
9.31648e-06
1.56883e-05
7.70181e-06
1.73206e-05
6.0255e-06
1.86886e-05
4.34587e-06
1.96641e-05
2.74023e-06
1.96872e-05
1.33848e-06
1.85906e-05
3.74418e-07
1.68267e-05
-1.00498e-07
1.46635e-05
-4.36981e-07
1.24939e-05
-8.45277e-07
1.04175e-05
-1.26399e-06
8.57901e-06
-1.53878e-06
6.4731e-06
-1.80505e-06
5.01009e-06
-1.89792e-06
2.78355e-06
-2.0007e-06
1.3751e-06
-2.13173e-06
-9.58043e-07
-2.301e-06
-2.47054e-06
-2.36398e-06
-4.83921e-06
-2.06499e-06
-6.63772e-06
-1.62998e-06
-8.7235e-06
-1.002e-06
-1.07989e-05
-2.76162e-08
-1.24946e-05
1.03081e-06
-1.35187e-05
2.30042e-06
-1.38215e-05
3.66865e-06
-1.3555e-05
4.71039e-06
-1.29604e-05
5.41165e-06
-1.25099e-05
6.19174e-06
-1.20078e-05
7.14492e-06
-1.04943e-05
7.98036e-06
-8.01391e-06
8.36757e-06
-5.85951e-06
8.34424e-06
-4.30716e-06
8.63884e-06
-3.33033e-06
9.70295e-06
-2.55707e-06
1.09282e-05
-1.2449e-06
1.25721e-05
-1.90437e-07
1.38052e-05
1.45605e-06
1.48854e-05
3.03749e-06
1.57497e-05
4.46489e-06
1.65952e-05
5.89891e-06
1.72685e-05
6.71457e-06
1.7976e-05
6.45525e-06
1.85525e-05
5.55514e-06
1.86884e-05
4.92536e-06
1.86164e-05
3.67015e-06
1.86159e-05
2.57318e-06
1.87742e-05
1.53178e-06
1.86877e-05
4.99624e-07
1.8543e-05
4.76775e-07
1.74132e-05
1.06907e-06
1.60203e-05
3.02129e-07
1.50637e-05
-3.25879e-07
1.39601e-05
2.8717e-07
1.35908e-05
4.13223e-07
1.28713e-05
1.5618e-06
1.23753e-05
1.73899e-06
1.20562e-05
2.65059e-06
1.0728e-05
3.78234e-06
8.67274e-06
3.43465e-06
7.72774e-06
2.892e-06
6.78195e-06
4.18281e-06
5.04217e-06
4.64752e-06
3.21135e-06
3.89624e-06
9.77786e-07
3.30088e-06
1.8805e-06
-5.0481e-09
-5.25208e-06
-1.44902e-07
-5.11478e-06
-2.71657e-07
-3.69455e-06
-4.22777e-07
-1.49242e-06
-6.11882e-07
6.80231e-07
-8.48707e-07
2.8367e-06
-1.09443e-06
4.608e-06
-1.35481e-06
5.58776e-06
-1.64217e-06
5.34506e-06
-1.98926e-06
4.99792e-06
-2.25225e-06
4.74069e-06
-2.38349e-06
4.57974e-06
-2.30904e-06
4.73168e-06
-2.12976e-06
4.5223e-06
-1.95866e-06
3.83608e-06
-1.69707e-06
3.18287e-06
-1.38621e-06
2.32898e-06
-8.6255e-07
2.01521e-06
-1.82627e-07
1.97512e-06
5.22301e-07
2.0891e-06
1.09501e-06
2.34472e-06
1.54111e-06
2.0877e-06
1.88922e-06
1.3068e-06
1.92798e-06
1.2788e-07
1.63249e-06
-1.58146e-06
1.05853e-06
-3.36737e-06
2.98859e-07
-4.69622e-06
-5.58313e-07
-5.46805e-06
-1.47811e-06
-5.59118e-06
-2.80941e-06
-5.07603e-06
-4.31111e-06
-4.63449e-06
-4.998e-06
-4.24281e-06
-5.52367e-06
-2.73785e-06
-6.22112e-06
-1.68334e-06
-6.42924e-06
-8.78355e-07
-6.78966e-06
1.00503e-07
-6.83144e-06
7.05899e-07
-7.07628e-06
1.6779e-06
-7.29497e-06
1.45975e-06
-7.38546e-06
7.23283e-07
-7.51613e-06
-8.06082e-07
-7.75398e-06
-2.43106e-06
-8.10258e-06
-4.07015e-06
-8.34867e-06
-6.31811e-06
-8.47753e-06
-8.1232e-06
-8.22986e-06
-9.18881e-06
-7.77531e-06
-9.14454e-06
-7.04885e-06
-7.86955e-06
-6.33044e-06
-6.05288e-06
-5.7856e-06
-4.09927e-06
-5.40062e-06
-2.51669e-06
-5.19735e-06
-1.29312e-06
-5.24247e-06
-1.00349e-07
-5.68687e-06
1.22649e-06
-6.3917e-06
2.29516e-06
-7.06503e-06
2.80835e-06
-7.23972e-06
2.83138e-06
-7.06752e-06
3.28727e-06
-7.19345e-06
4.93442e-06
-7.7673e-06
7.4915e-06
-8.30357e-06
9.79005e-06
-8.4509e-06
1.12676e-05
-8.26526e-06
1.21715e-05
-7.77795e-06
1.2545e-05
-6.77443e-06
1.15306e-05
-5.80666e-06
9.76303e-06
-5.01648e-06
8.29952e-06
-4.28708e-06
6.96119e-06
-3.74131e-06
6.42331e-06
-3.32373e-06
5.89415e-06
-2.9824e-06
5.46483e-06
-2.61479e-06
4.83715e-06
-2.19591e-06
4.22628e-06
-1.80063e-06
3.55136e-06
-1.3572e-06
2.80193e-06
-8.69186e-07
2.07607e-06
-3.81926e-07
1.34573e-06
1.16834e-07
5.9397e-07
6.1639e-07
-8.9961e-08
1.12318e-06
-7.53124e-07
1.67632e-06
-1.36042e-06
2.20857e-06
-1.86732e-06
2.73117e-06
-2.3134e-06
3.27937e-06
-2.75518e-06
3.79999e-06
-3.06004e-06
4.31572e-06
-3.37073e-06
4.84225e-06
-3.65454e-06
5.3677e-06
-3.8776e-06
5.90501e-06
-4.13574e-06
6.4923e-06
-4.40758e-06
7.12599e-06
-4.70206e-06
7.78747e-06
-4.96624e-06
8.46128e-06
-5.29097e-06
9.21104e-06
-5.67731e-06
1.00537e-05
-6.12911e-06
1.0983e-05
-6.54358e-06
1.19208e-05
-6.94064e-06
1.29463e-05
-7.45588e-06
1.40064e-05
-7.85532e-06
1.50034e-05
-8.1507e-06
1.6061e-05
-8.59864e-06
1.71712e-05
-8.99124e-06
1.8163e-05
-9.2273e-06
1.92748e-05
-9.57473e-06
2.03717e-05
-9.64745e-06
2.11978e-05
-9.78619e-06
2.20653e-05
-1.00521e-05
2.29477e-05
-9.87365e-06
2.3572e-05
-9.75138e-06
2.41657e-05
-9.68688e-06
2.46066e-05
-9.23372e-06
2.4897e-05
-8.99321e-06
2.52404e-05
-8.62688e-06
2.5318e-05
-7.82242e-06
2.51733e-05
-7.4779e-06
2.51042e-05
-6.8795e-06
2.49747e-05
-5.77119e-06
2.46378e-05
-5.14489e-06
2.41853e-05
-4.85848e-06
2.37486e-05
-3.57689e-06
2.3214e-05
-2.25785e-06
2.26054e-05
-2.27585e-06
2.22139e-05
-1.91366e-06
2.18908e-05
3.11175e-08
2.11083e-05
9.40267e-07
2.01505e-05
2.88545e-07
1.92822e-05
1.00958e-06
1.87544e-05
2.85782e-06
1.84279e-05
3.52677e-06
1.79653e-05
2.96871e-06
1.67656e-05
2.80501e-06
1.51297e-05
3.65053e-06
1.34672e-05
6.47279e-06
1.19436e-05
1.04937e-05
1.08109e-05
1.4097e-05
9.57384e-06
1.69254e-05
7.93447e-06
1.89599e-05
6.3386e-06
2.02845e-05
5.04757e-06
2.09552e-05
3.94031e-06
2.07944e-05
2.84369e-06
1.96872e-05
2.07603e-06
1.75944e-05
1.669e-06
1.50705e-05
1.36035e-06
1.28026e-05
1.02506e-06
1.07528e-05
4.81177e-07
9.12289e-06
1.89607e-07
6.76467e-06
-6.37814e-08
5.26348e-06
-2.18842e-07
2.93861e-06
-2.8045e-07
1.43671e-06
-2.356e-07
-1.00289e-06
-1.8312e-07
-2.52302e-06
-1.07221e-07
-4.91511e-06
-5.89265e-08
-6.68601e-06
1.21948e-07
-8.90438e-06
6.01371e-07
-1.12783e-05
1.61138e-06
-1.35047e-05
2.68535e-06
-1.45926e-05
3.69402e-06
-1.48302e-05
4.50651e-06
-1.43675e-05
5.60382e-06
-1.40577e-05
6.62982e-06
-1.35359e-05
7.29253e-06
-1.26705e-05
7.94531e-06
-1.11471e-05
8.88743e-06
-8.95603e-06
9.5245e-06
-6.49657e-06
9.91021e-06
-4.69287e-06
1.02141e-05
-3.63418e-06
1.03723e-05
-2.71529e-06
1.13548e-05
-2.22746e-06
1.25496e-05
-1.3852e-06
1.4052e-05
-4.63737e-08
1.55319e-05
1.55762e-06
1.65962e-05
3.40056e-06
1.77387e-05
4.75645e-06
1.86394e-05
5.8139e-06
1.92732e-05
5.82144e-06
1.96755e-05
5.15277e-06
2.01007e-05
4.50023e-06
2.01745e-05
3.59629e-06
2.02212e-05
2.52654e-06
2.05094e-05
1.24358e-06
2.01915e-05
8.1746e-07
1.99391e-05
7.29256e-07
1.93695e-05
1.63866e-06
1.81623e-05
1.5093e-06
1.7066e-05
7.70441e-07
1.62928e-05
1.06035e-06
1.56157e-05
1.09032e-06
1.48913e-05
2.28617e-06
1.35573e-05
3.07306e-06
1.31224e-05
3.08544e-06
1.21689e-05
4.73589e-06
1.04865e-05
5.11706e-06
8.66431e-06
4.71414e-06
7.58509e-06
5.26203e-06
5.75505e-06
6.47756e-06
3.91684e-06
5.73445e-06
2.44296e-06
4.77476e-06
4.32347e-06
-2.76724e-07
-4.97535e-06
-6.09566e-07
-4.78194e-06
-8.26642e-07
-3.47747e-06
-9.752e-07
-1.34386e-06
-1.10627e-06
8.11299e-07
-1.23565e-06
2.96608e-06
-1.34474e-06
4.71709e-06
-1.47075e-06
5.71377e-06
-1.6357e-06
5.51001e-06
-1.88042e-06
5.24264e-06
-2.16273e-06
5.02301e-06
-2.32485e-06
4.74186e-06
-2.2628e-06
4.66963e-06
-2.0967e-06
4.3562e-06
-1.88232e-06
3.6217e-06
-1.5176e-06
2.81815e-06
-1.08432e-06
1.8957e-06
-4.17558e-07
1.34844e-06
3.94078e-07
1.16348e-06
1.33891e-06
1.14427e-06
2.40367e-06
1.27996e-06
3.22908e-06
1.26229e-06
3.7752e-06
7.60677e-07
3.98613e-06
-8.30516e-08
3.74678e-06
-1.34211e-06
3.01444e-06
-2.63503e-06
1.93303e-06
-3.61482e-06
6.68194e-07
-4.20321e-06
-3.71559e-07
-4.55143e-06
-1.1913e-06
-4.2563e-06
-2.61189e-06
-3.2139e-06
-4.06273e-06
-2.79196e-06
-4.63088e-06
-2.16971e-06
-5.34115e-06
-9.7306e-07
-5.62203e-06
-5.97472e-07
-5.85504e-06
3.33513e-07
-6.14189e-06
9.92742e-07
-6.34656e-06
1.88257e-06
-6.62177e-06
1.73496e-06
-6.67211e-06
7.73623e-07
-6.92748e-06
-5.50714e-07
-7.40132e-06
-1.95721e-06
-7.98899e-06
-3.48248e-06
-8.72216e-06
-5.58494e-06
-9.43099e-06
-7.41436e-06
-9.72901e-06
-8.8908e-06
-9.58829e-06
-9.28527e-06
-9.02541e-06
-8.43244e-06
-8.42139e-06
-6.65689e-06
-7.83525e-06
-4.68541e-06
-7.49942e-06
-2.85253e-06
-7.57577e-06
-1.21676e-06
-7.98135e-06
3.05233e-07
-8.57765e-06
1.82278e-06
-9.06217e-06
2.77968e-06
-9.05693e-06
2.80311e-06
-8.50966e-06
2.28411e-06
-8.05483e-06
2.83244e-06
-8.1833e-06
5.0629e-06
-8.36727e-06
7.67547e-06
-8.13372e-06
9.5565e-06
-7.46372e-06
1.05976e-05
-6.68202e-06
1.13898e-05
-5.80982e-06
1.16728e-05
-4.53673e-06
1.02575e-05
-3.57268e-06
8.79899e-06
-2.8124e-06
7.53923e-06
-2.27023e-06
6.41901e-06
-1.79068e-06
5.94376e-06
-1.33858e-06
5.44204e-06
-9.06265e-07
5.03252e-06
-5.11939e-07
4.44283e-06
-1.39459e-07
3.8538e-06
3.04849e-07
3.10705e-06
7.3157e-07
2.37521e-06
1.15655e-06
1.65109e-06
1.60031e-06
9.01967e-07
2.05658e-06
1.37706e-07
2.57128e-06
-6.04666e-07
3.09909e-06
-1.28094e-06
3.64578e-06
-1.90711e-06
4.21441e-06
-2.43595e-06
4.74248e-06
-2.84147e-06
5.27969e-06
-3.29239e-06
5.82408e-06
-3.60443e-06
6.34412e-06
-3.89077e-06
6.86666e-06
-4.17707e-06
7.40152e-06
-4.41247e-06
7.94661e-06
-4.68084e-06
8.5329e-06
-4.99387e-06
9.25351e-06
-5.42267e-06
1.00503e-05
-5.76304e-06
1.08447e-05
-6.08537e-06
1.16833e-05
-6.51587e-06
1.25951e-05
-7.04091e-06
1.36292e-05
-7.57771e-06
1.47174e-05
-8.02886e-06
1.58036e-05
-8.5421e-06
1.70413e-05
-9.09296e-06
1.82583e-05
-9.36777e-06
1.92811e-05
-9.62137e-06
2.04377e-05
-1.01479e-05
2.15116e-05
-1.03011e-05
2.23894e-05
-1.04525e-05
2.34119e-05
-1.067e-05
2.42523e-05
-1.06265e-05
2.4925e-05
-1.07249e-05
2.557e-05
-1.05186e-05
2.60601e-05
-1.02415e-05
2.64692e-05
-1.0096e-05
2.67275e-05
-9.49203e-06
2.67799e-05
-9.0456e-06
2.67984e-05
-8.64536e-06
2.67595e-05
-7.78355e-06
2.64623e-05
-7.18063e-06
2.60587e-05
-6.47598e-06
2.56201e-05
-5.33259e-06
2.52437e-05
-4.7685e-06
2.46009e-05
-4.21566e-06
2.38191e-05
-2.79505e-06
2.31421e-05
-1.58085e-06
2.26457e-05
-1.77946e-06
2.18447e-05
-1.11263e-06
2.09479e-05
9.27852e-07
2.01133e-05
1.77485e-06
1.96204e-05
7.81486e-07
1.92558e-05
1.3742e-06
1.87488e-05
3.36479e-06
1.80834e-05
4.19216e-06
1.75148e-05
3.53735e-06
1.67311e-05
3.58869e-06
1.5316e-05
5.06561e-06
1.37969e-05
7.9919e-06
1.22948e-05
1.19958e-05
1.09847e-05
1.54071e-05
9.8602e-06
1.80499e-05
8.57841e-06
2.02417e-05
7.10903e-06
2.17539e-05
5.72035e-06
2.23439e-05
4.69011e-06
2.18247e-05
4.07583e-06
2.03015e-05
3.71742e-06
1.79528e-05
3.47161e-06
1.53163e-05
3.17807e-06
1.30961e-05
2.96612e-06
1.09647e-05
2.44065e-06
9.64836e-06
2.11535e-06
7.08997e-06
1.92085e-06
5.45797e-06
1.83215e-06
3.02732e-06
1.71669e-06
1.55217e-06
1.74698e-06
-1.03318e-06
1.83627e-06
-2.61231e-06
2.18297e-06
-5.26181e-06
2.4265e-06
-6.92954e-06
2.55814e-06
-9.03602e-06
2.54703e-06
-1.12672e-05
2.9777e-06
-1.39353e-05
3.9541e-06
-1.5569e-05
5.3447e-06
-1.62208e-05
6.31583e-06
-1.53387e-05
6.92775e-06
-1.46696e-05
7.64434e-06
-1.42524e-05
8.58281e-06
-1.3609e-05
9.39368e-06
-1.1958e-05
9.8362e-06
-9.39855e-06
1.0367e-05
-7.02734e-06
1.12608e-05
-5.5867e-06
1.19387e-05
-4.31208e-06
1.25327e-05
-3.30927e-06
1.30232e-05
-2.71801e-06
1.34941e-05
-1.85603e-06
1.46831e-05
-1.23544e-06
1.59176e-05
3.23136e-07
1.71803e-05
2.13788e-06
1.84458e-05
3.49093e-06
1.95521e-05
4.70765e-06
2.01388e-05
5.23474e-06
2.03073e-05
4.98425e-06
2.08268e-05
3.98071e-06
2.09176e-05
3.50547e-06
2.0871e-05
2.57319e-06
2.10094e-05
1.10517e-06
2.07919e-05
1.03494e-06
2.0474e-05
1.04708e-06
2.02418e-05
1.87093e-06
1.92407e-05
2.51033e-06
1.78476e-05
2.16361e-06
1.70594e-05
1.8485e-06
1.62877e-05
1.86209e-06
1.59457e-05
2.62813e-06
1.50642e-05
3.95458e-06
1.4321e-05
3.8286e-06
1.3648e-05
5.40891e-06
1.20253e-05
6.73978e-06
1.01977e-05
6.54171e-06
8.56052e-06
6.89922e-06
6.97422e-06
8.06385e-06
4.43938e-06
8.26929e-06
1.83721e-06
7.37692e-06
6.16068e-06
-5.71435e-07
-4.40392e-06
-1.11026e-06
-4.24311e-06
-1.39185e-06
-3.19588e-06
-1.51896e-06
-1.21675e-06
-1.55342e-06
8.45754e-07
-1.52364e-06
2.9363e-06
-1.46033e-06
4.65378e-06
-1.42687e-06
5.68031e-06
-1.44439e-06
5.52754e-06
-1.53325e-06
5.33149e-06
-1.64455e-06
5.13431e-06
-1.73034e-06
4.82765e-06
-1.64101e-06
4.5803e-06
-1.42707e-06
4.14227e-06
-1.14723e-06
3.34185e-06
-7.13162e-07
2.38409e-06
-1.94817e-07
1.37736e-06
4.1369e-07
7.39931e-07
1.15247e-06
4.24697e-07
1.9003e-06
3.96442e-07
2.69054e-06
4.89727e-07
3.56099e-06
3.9184e-07
4.25313e-06
6.85365e-08
4.69947e-06
-5.29393e-07
4.65312e-06
-1.29576e-06
4.11143e-06
-2.09334e-06
3.23041e-06
-2.7338e-06
2.11812e-06
-3.09092e-06
6.98311e-07
-3.13162e-06
-3.97441e-07
-3.16054e-06
-1.20876e-06
-2.40259e-06
-2.64234e-06
-1.35838e-06
-3.56154e-06
-1.25051e-06
-4.15105e-06
-3.83555e-07
-4.74749e-06
-1.02729e-09
-4.86299e-06
4.49012e-07
-5.14385e-06
1.27361e-06
-5.11311e-06
1.85183e-06
-5.32184e-06
1.94369e-06
-5.44679e-06
8.98572e-07
-5.7354e-06
-2.62105e-07
-6.27768e-06
-1.41494e-06
-7.10392e-06
-2.65624e-06
-8.30593e-06
-4.38293e-06
-9.43374e-06
-6.28655e-06
-1.03283e-05
-7.99623e-06
-1.08286e-05
-8.78495e-06
-1.07488e-05
-8.51228e-06
-1.02942e-05
-7.11146e-06
-9.8451e-06
-5.13452e-06
-9.57617e-06
-3.12146e-06
-9.62865e-06
-1.16429e-06
-9.9135e-06
5.90091e-07
-1.01134e-05
2.02266e-06
-9.88351e-06
2.54981e-06
-9.17518e-06
2.09479e-06
-8.36596e-06
1.47488e-06
-7.94488e-06
2.41136e-06
-7.86262e-06
4.98064e-06
-7.56252e-06
7.37537e-06
-6.73715e-06
8.73112e-06
-5.52398e-06
9.38439e-06
-4.51851e-06
1.03843e-05
-3.43062e-06
1.05849e-05
-2.13007e-06
8.95698e-06
-1.25988e-06
7.9288e-06
-5.057e-07
6.78505e-06
-6.08305e-08
5.97414e-06
3.7406e-07
5.50887e-06
7.96451e-07
5.01965e-06
1.20748e-06
4.62149e-06
1.57476e-06
4.07554e-06
1.96418e-06
3.46438e-06
2.31077e-06
2.76047e-06
2.69045e-06
1.99552e-06
3.09087e-06
1.25067e-06
3.54653e-06
4.46305e-07
4.00779e-06
-3.23548e-07
4.52167e-06
-1.11855e-06
5.06906e-06
-1.82832e-06
5.64494e-06
-2.48299e-06
6.21958e-06
-3.0106e-06
6.75634e-06
-3.37823e-06
7.26407e-06
-3.80012e-06
7.79697e-06
-4.13733e-06
8.32557e-06
-4.41937e-06
8.85284e-06
-4.70434e-06
9.44143e-06
-5.00106e-06
1.00387e-05
-5.27813e-06
1.06454e-05
-5.60052e-06
1.14212e-05
-6.1985e-06
1.23818e-05
-6.72367e-06
1.33955e-05
-7.09907e-06
1.44182e-05
-7.5385e-06
1.55135e-05
-8.13628e-06
1.66377e-05
-8.70185e-06
1.78518e-05
-9.24299e-06
1.90422e-05
-9.73251e-06
2.01701e-05
-1.02208e-05
2.14782e-05
-1.06758e-05
2.26395e-05
-1.07827e-05
2.36034e-05
-1.11117e-05
2.46737e-05
-1.13714e-05
2.55425e-05
-1.13213e-05
2.63156e-05
-1.14431e-05
2.69385e-05
-1.12494e-05
2.74188e-05
-1.12052e-05
2.78932e-05
-1.0993e-05
2.80647e-05
-1.0413e-05
2.81202e-05
-1.01516e-05
2.81523e-05
-9.52408e-06
2.79938e-05
-8.88713e-06
2.7778e-05
-8.42958e-06
2.73473e-05
-7.35281e-06
2.67123e-05
-6.54567e-06
2.63336e-05
-6.09728e-06
2.58475e-05
-4.84644e-06
2.49699e-05
-3.89088e-06
2.41751e-05
-3.42088e-06
2.3612e-05
-2.23192e-06
2.305e-05
-1.01889e-06
2.22578e-05
-9.87246e-07
2.13382e-05
-1.93003e-07
2.04322e-05
1.83386e-06
1.98312e-05
2.37583e-06
1.94517e-05
1.16097e-06
1.90144e-05
1.81155e-06
1.78901e-05
4.48902e-06
1.66457e-05
5.43662e-06
1.58863e-05
4.29677e-06
1.55904e-05
3.8845e-06
1.48926e-05
5.76347e-06
1.37105e-05
9.17394e-06
1.26264e-05
1.308e-05
1.15499e-05
1.64836e-05
1.04661e-05
1.91337e-05
9.44921e-06
2.12586e-05
8.3128e-06
2.28903e-05
7.07925e-06
2.35774e-05
6.02677e-06
2.28771e-05
5.46497e-06
2.08633e-05
5.21936e-06
1.81984e-05
4.94989e-06
1.55858e-05
4.43499e-06
1.3611e-05
4.06505e-06
1.13347e-05
3.62008e-06
1.00933e-05
3.20828e-06
7.50177e-06
2.9755e-06
5.69075e-06
3.03539e-06
2.96743e-06
3.18256e-06
1.40499e-06
3.2417e-06
-1.09231e-06
3.36588e-06
-2.73649e-06
3.60451e-06
-5.50044e-06
3.99692e-06
-7.32195e-06
4.66241e-06
-9.70151e-06
5.04614e-06
-1.16509e-05
5.29101e-06
-1.41802e-05
5.73235e-06
-1.60104e-05
6.63523e-06
-1.71236e-05
7.72586e-06
-1.64293e-05
8.45927e-06
-1.5403e-05
9.18622e-06
-1.49794e-05
1.00972e-05
-1.45199e-05
1.08604e-05
-1.27212e-05
1.12706e-05
-9.80873e-06
1.17568e-05
-7.51354e-06
1.22197e-05
-6.04962e-06
1.30099e-05
-5.10233e-06
1.42001e-05
-4.49947e-06
1.48137e-05
-3.3316e-06
1.54416e-05
-2.48388e-06
1.59088e-05
-1.70262e-06
1.6642e-05
-4.10103e-07
1.7871e-05
9.08892e-07
1.89464e-05
2.41553e-06
1.99399e-05
3.7141e-06
2.04231e-05
4.75156e-06
2.06101e-05
4.79725e-06
2.12659e-05
3.32498e-06
2.17665e-05
3.0048e-06
2.18907e-05
2.44901e-06
2.16069e-05
1.38902e-06
2.13819e-05
1.25989e-06
2.10329e-05
1.39609e-06
2.1242e-05
1.66181e-06
2.05797e-05
3.17261e-06
1.96404e-05
3.10297e-06
1.86902e-05
2.79865e-06
1.79979e-05
2.55444e-06
1.73694e-05
3.2566e-06
1.67539e-05
4.57003e-06
1.5629e-05
4.95355e-06
1.51593e-05
5.87854e-06
1.36103e-05
8.28881e-06
1.15097e-05
8.64231e-06
9.39246e-06
9.01647e-06
7.57059e-06
9.88573e-06
5.24042e-06
1.05995e-05
2.4848e-06
1.01325e-05
8.64548e-06
-8.74695e-07
-3.52922e-06
-1.63515e-06
-3.48266e-06
-1.98578e-06
-2.84526e-06
-2.04787e-06
-1.15466e-06
-1.95626e-06
7.54143e-07
-1.71119e-06
2.69123e-06
-1.37083e-06
4.31342e-06
-1.13849e-06
5.44796e-06
-9.5648e-07
5.34553e-06
-8.61624e-07
5.23664e-06
-8.17914e-07
5.0906e-06
-7.03688e-07
4.71342e-06
-4.8004e-07
4.35665e-06
-1.63437e-07
3.82567e-06
2.45974e-07
2.93244e-06
7.10062e-07
1.92e-06
1.18816e-06
8.99255e-07
1.70723e-06
2.20867e-07
2.23438e-06
-1.02453e-07
2.81561e-06
-1.8479e-07
3.22382e-06
8.15152e-08
3.61328e-06
2.37795e-09
4.01238e-06
-3.30555e-07
4.34245e-06
-8.59472e-07
4.43548e-06
-1.38879e-06
4.1691e-06
-1.82696e-06
3.5463e-06
-2.111e-06
2.81283e-06
-2.35745e-06
1.97547e-06
-2.29426e-06
6.62279e-07
-1.84735e-06
-2.35047e-07
-1.50526e-06
-1.19476e-06
-3.9867e-07
-2.38562e-06
-5.96445e-08
-2.95098e-06
1.81797e-07
-3.69614e-06
7.4414e-07
-3.92042e-06
6.73287e-07
-3.9413e-06
1.29449e-06
-3.76973e-06
1.68026e-06
-3.62951e-06
1.80347e-06
-3.79775e-06
1.06682e-06
-4.09543e-06
3.55792e-08
-4.60064e-06
-9.09735e-07
-5.41274e-06
-1.84414e-06
-6.69407e-06
-3.1016e-06
-8.24197e-06
-4.73866e-06
-9.74384e-06
-6.49436e-06
-1.07675e-05
-7.76131e-06
-1.1188e-05
-8.09178e-06
-1.11608e-05
-7.13865e-06
-1.09421e-05
-5.35319e-06
-1.06324e-05
-3.43123e-06
-1.04126e-05
-1.38407e-06
-1.02217e-05
3.9922e-07
-9.7643e-06
1.56524e-06
-8.97282e-06
1.75833e-06
-7.97069e-06
1.09266e-06
-7.18764e-06
6.91831e-07
-6.71308e-06
1.9368e-06
-6.36895e-06
4.63651e-06
-5.76233e-06
6.76875e-06
-4.62598e-06
7.59477e-06
-3.17635e-06
7.93476e-06
-2.09941e-06
9.3074e-06
-8.02609e-07
9.28809e-06
3.34276e-07
7.82009e-06
1.09881e-06
7.16427e-06
1.72624e-06
6.15762e-06
2.17962e-06
5.52076e-06
2.61697e-06
5.07152e-06
2.9533e-06
4.68333e-06
3.32193e-06
4.25286e-06
3.67028e-06
3.72718e-06
3.97327e-06
3.16139e-06
4.25601e-06
2.47773e-06
4.64539e-06
1.60615e-06
5.11002e-06
7.86031e-07
5.53832e-06
1.80059e-08
6.02572e-06
-8.10943e-07
6.62163e-06
-1.71446e-06
7.23003e-06
-2.43672e-06
7.82872e-06
-3.08167e-06
8.36558e-06
-3.54746e-06
8.897e-06
-3.90965e-06
9.46917e-06
-4.37229e-06
9.97906e-06
-4.64723e-06
1.04447e-05
-4.88498e-06
1.09763e-05
-5.23598e-06
1.17121e-05
-5.73682e-06
1.24788e-05
-6.04485e-06
1.32118e-05
-6.33347e-06
1.40326e-05
-7.0193e-06
1.5059e-05
-7.75011e-06
1.62754e-05
-8.31543e-06
1.74439e-05
-8.70706e-06
1.87026e-05
-9.39497e-06
2.00612e-05
-1.00605e-05
2.12338e-05
-1.04156e-05
2.25149e-05
-1.10136e-05
2.36986e-05
-1.14046e-05
2.47068e-05
-1.1684e-05
2.58054e-05
-1.18814e-05
2.66484e-05
-1.19547e-05
2.74446e-05
-1.21676e-05
2.80444e-05
-1.19212e-05
2.84957e-05
-1.18944e-05
2.89854e-05
-1.17391e-05
2.91103e-05
-1.13301e-05
2.91713e-05
-1.1054e-05
2.91504e-05
-1.03921e-05
2.89196e-05
-9.92074e-06
2.87098e-05
-9.31425e-06
2.82866e-05
-8.46399e-06
2.77195e-05
-7.86244e-06
2.72619e-05
-6.89525e-06
2.66918e-05
-5.97556e-06
2.59306e-05
-5.3361e-06
2.5278e-05
-4.19382e-06
2.45026e-05
-3.11551e-06
2.37448e-05
-2.66308e-06
2.29227e-05
-1.40975e-06
2.20735e-05
-1.69739e-07
2.10699e-05
1.641e-08
2.04252e-05
4.5169e-07
1.99836e-05
2.27542e-06
1.95067e-05
2.85268e-06
1.87052e-05
1.96255e-06
1.7969e-05
2.54768e-06
1.70836e-05
5.37444e-06
1.62078e-05
6.31245e-06
1.5674e-05
4.83055e-06
1.53732e-05
4.18534e-06
1.50142e-05
6.1224e-06
1.41324e-05
1.00558e-05
1.32169e-05
1.39955e-05
1.2399e-05
1.73015e-05
1.13423e-05
2.01904e-05
1.02667e-05
2.23342e-05
9.3463e-06
2.38107e-05
8.53354e-06
2.43902e-05
7.79927e-06
2.36114e-05
7.20068e-06
2.14619e-05
6.74071e-06
1.86584e-05
6.40272e-06
1.59238e-05
5.80486e-06
1.42089e-05
5.16376e-06
1.19758e-05
4.81489e-06
1.04422e-05
4.60394e-06
7.71272e-06
4.55635e-06
5.73835e-06
4.55362e-06
2.97016e-06
4.97061e-06
9.88005e-07
5.42689e-06
-1.54859e-06
5.80971e-06
-3.11932e-06
5.94567e-06
-5.6364e-06
5.98976e-06
-7.36604e-06
6.27511e-06
-9.98685e-06
6.6924e-06
-1.20682e-05
7.12792e-06
-1.46157e-05
7.84517e-06
-1.67276e-05
8.58387e-06
-1.78623e-05
9.2823e-06
-1.71277e-05
1.00052e-05
-1.6126e-05
1.0848e-05
-1.58222e-05
1.1436e-05
-1.51079e-05
1.18118e-05
-1.3097e-05
1.25984e-05
-1.05953e-05
1.32123e-05
-8.12748e-06
1.35753e-05
-6.41254e-06
1.44886e-05
-6.01571e-06
1.5249e-05
-5.25982e-06
1.60872e-05
-4.16982e-06
1.69257e-05
-3.32241e-06
1.71235e-05
-1.90039e-06
1.76586e-05
-9.45237e-07
1.83242e-05
2.4336e-07
1.89017e-05
1.83803e-06
1.96183e-05
2.99743e-06
2.02199e-05
4.15001e-06
2.06537e-05
4.36345e-06
2.12935e-05
2.68521e-06
2.22153e-05
2.08298e-06
2.24457e-05
2.21857e-06
2.21853e-05
1.64942e-06
2.20936e-05
1.35161e-06
2.19423e-05
1.54741e-06
2.19875e-05
1.61654e-06
2.17126e-05
3.44752e-06
2.06273e-05
4.18831e-06
1.97872e-05
3.63876e-06
1.88316e-05
3.51004e-06
1.82843e-05
3.80389e-06
1.74859e-05
5.3684e-06
1.66849e-05
5.75455e-06
1.58164e-05
6.74711e-06
1.48657e-05
9.23952e-06
1.24713e-05
1.10367e-05
1.05071e-05
1.09807e-05
8.06321e-06
1.23296e-05
5.8549e-06
1.28078e-05
2.62181e-06
1.33656e-05
1.12673e-05
-1.20459e-06
-2.32463e-06
-2.21154e-06
-2.47571e-06
-2.62307e-06
-2.43373e-06
-2.55523e-06
-1.22249e-06
-2.27937e-06
4.78276e-07
-1.82508e-06
2.23694e-06
-1.24882e-06
3.73716e-06
-7.673e-07
4.96644e-06
-3.32516e-07
4.91075e-06
9.37536e-08
4.81037e-06
3.77899e-07
4.80645e-06
6.47885e-07
4.44344e-06
1.01062e-06
3.99391e-06
1.45725e-06
3.37904e-06
1.89736e-06
2.49233e-06
2.38551e-06
1.43185e-06
2.75868e-06
5.26083e-07
3.06138e-06
-8.18279e-08
3.3374e-06
-3.78478e-07
3.56156e-06
-4.08951e-07
3.85143e-06
-2.08347e-07
3.96846e-06
-1.14652e-07
3.9556e-06
-3.17703e-07
3.92583e-06
-8.29702e-07
3.89555e-06
-1.3585e-06
3.68273e-06
-1.61414e-06
3.29369e-06
-1.72195e-06
2.65076e-06
-1.71452e-06
2.05564e-06
-1.69914e-06
1.47177e-06
-1.26349e-06
7.4525e-07
-7.7874e-07
2.99814e-07
4.67659e-08
-7.26376e-07
9.66546e-07
-1.35883e-06
8.14247e-07
-1.85155e-06
1.23687e-06
-2.54533e-06
1.36707e-06
-2.55329e-06
1.30245e-06
-2.27087e-06
1.39784e-06
-1.8902e-06
1.4228e-06
-1.83678e-06
1.01339e-06
-2.07319e-06
2.71996e-07
-2.601e-06
-3.81926e-07
-3.39201e-06
-1.05313e-06
-4.48328e-06
-2.01033e-06
-5.87026e-06
-3.35168e-06
-7.54995e-06
-4.81467e-06
-9.18244e-06
-6.12882e-06
-1.02532e-05
-7.02102e-06
-1.05349e-05
-6.85695e-06
-1.03497e-05
-5.53836e-06
-1.00844e-05
-3.69651e-06
-9.65758e-06
-1.81093e-06
-9.04866e-06
-2.09701e-07
-8.21321e-06
7.29798e-07
-7.24558e-06
7.907e-07
-6.37897e-06
2.26052e-07
-5.71982e-06
3.26792e-08
-5.11548e-06
1.33246e-06
-4.39082e-06
3.91184e-06
-3.4382e-06
5.81614e-06
-2.10058e-06
6.25714e-06
-6.30475e-07
6.46466e-06
5.18381e-07
8.15854e-06
1.80238e-06
8.00409e-06
2.83375e-06
6.78872e-06
3.53039e-06
6.46763e-06
4.06223e-06
5.62578e-06
4.472e-06
5.11099e-06
4.78008e-06
4.76344e-06
5.09111e-06
4.3723e-06
5.45962e-06
3.88435e-06
5.72204e-06
3.46476e-06
5.9598e-06
2.92363e-06
6.30937e-06
2.12816e-06
6.70959e-06
1.20592e-06
7.16864e-06
3.2698e-07
7.69529e-06
-5.08641e-07
8.31418e-06
-1.42983e-06
8.98047e-06
-2.38076e-06
9.54948e-06
-3.00572e-06
1.01236e-05
-3.65578e-06
1.07226e-05
-4.14648e-06
1.1182e-05
-4.36908e-06
1.17124e-05
-4.90264e-06
1.23164e-05
-5.25123e-06
1.28296e-05
-5.39816e-06
1.33182e-05
-5.72462e-06
1.40969e-05
-6.51554e-06
1.50812e-05
-7.02908e-06
1.608e-05
-7.3323e-06
1.71477e-05
-8.08704e-06
1.82478e-05
-8.85014e-06
1.94966e-05
-9.56423e-06
2.08539e-05
-1.00644e-05
2.20701e-05
-1.06112e-05
2.34121e-05
-1.14024e-05
2.4674e-05
-1.16775e-05
2.57325e-05
-1.20721e-05
2.68362e-05
-1.25083e-05
2.76745e-05
-1.25223e-05
2.84614e-05
-1.26683e-05
2.90113e-05
-1.25046e-05
2.94597e-05
-1.26161e-05
2.987e-05
-1.23314e-05
2.99538e-05
-1.19783e-05
3.00026e-05
-1.17879e-05
2.99364e-05
-1.12639e-05
2.96818e-05
-1.07994e-05
2.93715e-05
-1.00818e-05
2.89285e-05
-9.47774e-06
2.85377e-05
-8.92336e-06
2.79827e-05
-7.90905e-06
2.73303e-05
-7.21003e-06
2.67669e-05
-6.33189e-06
2.61128e-05
-5.32138e-06
2.54684e-05
-4.69172e-06
2.48392e-05
-3.5646e-06
2.40778e-05
-2.35413e-06
2.32863e-05
-1.87163e-06
2.26416e-05
-7.64996e-07
2.1977e-05
4.94794e-07
2.11142e-05
8.792e-07
2.02217e-05
1.34419e-06
1.95233e-05
2.97387e-06
1.86953e-05
3.68073e-06
1.78244e-05
2.83345e-06
1.7166e-05
3.20608e-06
1.6879e-05
5.66144e-06
1.6286e-05
6.90537e-06
1.58676e-05
5.24903e-06
1.56704e-05
4.38249e-06
1.53244e-05
6.4684e-06
1.47988e-05
1.05814e-05
1.39883e-05
1.48059e-05
1.32652e-05
1.80246e-05
1.24935e-05
2.09621e-05
1.13721e-05
2.34556e-05
1.03149e-05
2.48679e-05
9.51045e-06
2.51946e-05
8.97584e-06
2.4146e-05
8.61719e-06
2.18206e-05
8.17312e-06
1.91024e-05
7.77435e-06
1.63226e-05
7.23994e-06
1.47433e-05
6.80713e-06
1.24086e-05
6.91666e-06
1.03327e-05
7.04227e-06
7.58711e-06
7.29287e-06
5.48774e-06
7.22481e-06
3.03822e-06
7.28818e-06
9.24637e-07
7.40159e-06
-1.66201e-06
7.78851e-06
-3.50624e-06
8.08531e-06
-5.9332e-06
8.39483e-06
-7.67557e-06
8.74085e-06
-1.03329e-05
9.01299e-06
-1.23403e-05
9.30649e-06
-1.49092e-05
9.73334e-06
-1.71545e-05
1.01759e-05
-1.83048e-05
1.09406e-05
-1.78925e-05
1.18713e-05
-1.70567e-05
1.23643e-05
-1.63152e-05
1.26568e-05
-1.54004e-05
1.32458e-05
-1.3686e-05
1.38163e-05
-1.11658e-05
1.4155e-05
-8.46617e-06
1.50583e-05
-7.31585e-06
1.58875e-05
-6.84494e-06
1.63904e-05
-5.76274e-06
1.72665e-05
-5.04592e-06
1.75844e-05
-3.64031e-06
1.75829e-05
-1.89891e-06
1.77538e-05
-1.11612e-06
1.78232e-05
1.74009e-07
1.82551e-05
1.40615e-06
1.902e-05
2.23248e-06
2.00196e-05
3.15038e-06
2.08486e-05
3.53449e-06
2.13106e-05
2.22318e-06
2.22816e-05
1.11199e-06
2.27393e-05
1.76091e-06
2.2575e-05
1.81367e-06
2.23712e-05
1.55539e-06
2.20856e-05
1.83304e-06
2.17829e-05
1.91929e-06
2.18962e-05
3.33414e-06
2.1329e-05
4.75552e-06
2.05581e-05
4.40965e-06
1.97672e-05
4.301e-06
1.89722e-05
4.5989e-06
1.83692e-05
5.97137e-06
1.72914e-05
6.83237e-06
1.67244e-05
7.31414e-06
1.5717e-05
1.02469e-05
1.38275e-05
1.29262e-05
1.12226e-05
1.35856e-05
8.90958e-06
1.46426e-05
5.91399e-06
1.58033e-05
3.73168e-06
1.5548e-05
1.4999e-05
-1.54099e-06
-7.83637e-07
-2.85872e-06
-1.15798e-06
-3.36929e-06
-1.92316e-06
-3.21014e-06
-1.38164e-06
-2.7597e-06
2.7837e-08
-2.06976e-06
1.547e-06
-1.16782e-06
2.83522e-06
-3.19268e-07
4.11789e-06
3.72834e-07
4.21865e-06
1.09687e-06
4.08633e-06
1.79785e-06
4.10547e-06
2.31048e-06
3.93081e-06
2.78341e-06
3.52098e-06
3.24975e-06
2.91271e-06
3.63009e-06
2.11199e-06
3.95511e-06
1.10683e-06
4.13355e-06
3.47648e-07
4.1216e-06
-6.98801e-08
4.08093e-06
-3.37811e-07
4.021e-06
-3.49016e-07
4.08927e-06
-2.76617e-07
4.19763e-06
-2.23021e-07
4.13861e-06
-2.58678e-07
3.88786e-06
-5.78948e-07
3.556e-06
-1.02665e-06
3.20242e-06
-1.26056e-06
2.84027e-06
-1.3598e-06
2.49493e-06
-1.36918e-06
1.92814e-06
-1.13235e-06
1.56836e-06
-9.03713e-07
1.18407e-06
-3.94453e-07
1.10499e-06
1.25848e-07
9.22751e-07
1.14879e-06
1.68098e-07
1.5689e-06
-7.73916e-08
1.48236e-06
-2.29431e-07
1.51911e-06
-4.69251e-07
1.54227e-06
-4.95094e-07
1.42368e-06
-3.80099e-07
1.3078e-06
-2.62182e-07
8.95475e-07
-3.8007e-07
3.89884e-07
-6.85026e-07
-7.69703e-08
-1.16393e-06
-5.74226e-07
-1.93027e-06
-1.24398e-06
-3.10241e-06
-2.17954e-06
-4.65121e-06
-3.26587e-06
-6.33756e-06
-4.44247e-06
-7.7608e-06
-5.59777e-06
-8.51817e-06
-6.09959e-06
-8.53716e-06
-5.51937e-06
-8.1559e-06
-4.07777e-06
-7.51601e-06
-2.45082e-06
-6.68014e-06
-1.04557e-06
-5.75275e-06
-1.9759e-07
-4.87709e-06
-8.4962e-08
-4.27657e-06
-3.74463e-07
-3.67575e-06
-5.68146e-07
-2.98104e-06
6.37752e-07
-2.13402e-06
3.06482e-06
-1.18595e-06
4.86807e-06
1.18393e-07
4.9528e-06
1.34774e-06
5.23531e-06
2.7589e-06
6.74738e-06
4.04149e-06
6.72151e-06
4.88513e-06
5.94508e-06
5.6059e-06
5.74686e-06
6.1306e-06
5.10108e-06
6.49531e-06
4.74628e-06
6.78935e-06
4.4694e-06
7.12206e-06
4.03959e-06
7.43317e-06
3.57324e-06
7.73832e-06
3.15961e-06
8.07582e-06
2.58613e-06
8.50333e-06
1.70065e-06
9.00022e-06
7.09031e-07
9.52465e-06
-1.97445e-07
1.00861e-05
-1.07006e-06
1.07852e-05
-2.12895e-06
1.14878e-05
-3.08337e-06
1.20072e-05
-3.52515e-06
1.25145e-05
-4.16303e-06
1.31185e-05
-4.75057e-06
1.35569e-05
-4.80739e-06
1.39821e-05
-5.3279e-06
1.46217e-05
-5.8908e-06
1.53255e-05
-6.102e-06
1.60524e-05
-6.45145e-06
1.69104e-05
-7.37363e-06
1.79572e-05
-8.07581e-06
1.91402e-05
-8.51528e-06
2.03722e-05
-9.31907e-06
2.17297e-05
-1.02076e-05
2.29736e-05
-1.08081e-05
2.4277e-05
-1.13678e-05
2.5672e-05
-1.20062e-05
2.66697e-05
-1.24002e-05
2.7725e-05
-1.27328e-05
2.86125e-05
-1.29596e-05
2.93366e-05
-1.32324e-05
2.98e-05
-1.29856e-05
3.01596e-05
-1.30279e-05
3.05504e-05
-1.28954e-05
3.05581e-05
-1.26238e-05
3.05162e-05
-1.22895e-05
3.0328e-05
-1.17901e-05
3.01779e-05
-1.16378e-05
2.98019e-05
-1.0888e-05
2.93093e-05
-1.03067e-05
2.89954e-05
-9.76792e-06
2.85419e-05
-9.0242e-06
2.79975e-05
-8.37904e-06
2.75002e-05
-7.41168e-06
2.69253e-05
-6.63514e-06
2.65055e-05
-5.91217e-06
2.58705e-05
-4.68636e-06
2.51686e-05
-3.98977e-06
2.46337e-05
-3.02974e-06
2.40045e-05
-1.7249e-06
2.31446e-05
-1.01174e-06
2.25173e-05
-1.37687e-07
2.17311e-05
1.28095e-06
2.09408e-05
1.66959e-06
2.0178e-05
2.10697e-06
1.97458e-05
3.40609e-06
1.89971e-05
4.42939e-06
1.81262e-05
3.70431e-06
1.73877e-05
3.94461e-06
1.70133e-05
6.03589e-06
1.66106e-05
7.30803e-06
1.61313e-05
5.72828e-06
1.60512e-05
4.46265e-06
1.57945e-05
6.7251e-06
1.54897e-05
1.08863e-05
1.48878e-05
1.54078e-05
1.4089e-05
1.88233e-05
1.34213e-05
2.16299e-05
1.2576e-05
2.43009e-05
1.1548e-05
2.58959e-05
1.07649e-05
2.59777e-05
1.02606e-05
2.46503e-05
1.00115e-05
2.20697e-05
9.61432e-06
1.94996e-05
9.10987e-06
1.6827e-05
8.8148e-06
1.50384e-05
8.6531e-06
1.25703e-05
8.75937e-06
1.02264e-05
8.95305e-06
7.39343e-06
9.37995e-06
5.06084e-06
9.52165e-06
2.89652e-06
9.48821e-06
9.5808e-07
9.41163e-06
-1.58542e-06
9.57754e-06
-3.67215e-06
9.76036e-06
-6.11603e-06
1.0013e-05
-7.92822e-06
1.03792e-05
-1.06991e-05
1.07977e-05
-1.27589e-05
1.14141e-05
-1.55256e-05
1.17942e-05
-1.75346e-05
1.21665e-05
-1.86771e-05
1.28288e-05
-1.85549e-05
1.34435e-05
-1.76713e-05
1.36991e-05
-1.65707e-05
1.41503e-05
-1.58516e-05
1.4719e-05
-1.42547e-05
1.47238e-05
-1.11707e-05
1.53372e-05
-9.07955e-06
1.63053e-05
-8.2839e-06
1.67272e-05
-7.2669e-06
1.73939e-05
-6.42936e-06
1.79083e-05
-5.56035e-06
1.76059e-05
-3.33794e-06
1.7624e-05
-1.91698e-06
1.76139e-05
-1.10606e-06
1.77485e-05
3.9465e-08
1.82965e-05
8.58151e-07
1.91362e-05
1.39275e-06
2.04144e-05
1.87223e-06
2.14173e-05
2.53156e-06
2.16133e-05
2.02715e-06
2.21049e-05
6.20456e-07
2.28142e-05
1.05158e-06
2.28068e-05
1.82111e-06
2.26462e-05
1.71594e-06
2.22148e-05
2.2644e-06
2.17487e-05
2.38543e-06
2.19061e-05
3.17674e-06
2.21479e-05
4.51377e-06
2.16233e-05
4.93424e-06
2.11116e-05
4.81266e-06
2.04321e-05
5.27836e-06
1.99563e-05
6.44723e-06
1.87413e-05
8.04737e-06
1.73785e-05
8.67695e-06
1.65397e-05
1.10857e-05
1.49054e-05
1.45605e-05
1.28614e-05
1.56296e-05
1.03156e-05
1.71884e-05
7.11075e-06
1.90082e-05
2.76573e-06
1.9893e-05
1.77647e-05
-1.69995e-06
9.16316e-07
-3.05674e-06
1.98802e-07
-3.83555e-06
-1.14434e-06
-3.78609e-06
-1.4311e-06
-3.10547e-06
-6.52787e-07
-2.14412e-06
5.8565e-07
-1.08816e-06
1.77926e-06
-1.09398e-07
3.13913e-06
6.81654e-07
3.42759e-06
1.61035e-06
3.15763e-06
2.54035e-06
3.17547e-06
3.26993e-06
3.20123e-06
3.90551e-06
2.88541e-06
4.42809e-06
2.39013e-06
4.78766e-06
1.75241e-06
4.93438e-06
9.60111e-07
4.92545e-06
3.56575e-07
4.79129e-06
6.4278e-08
4.54683e-06
-9.33462e-08
4.36365e-06
-1.65836e-07
4.27498e-06
-1.87943e-07
4.26475e-06
-2.12796e-07
4.23892e-06
-2.32849e-07
4.02357e-06
-3.63601e-07
3.58206e-06
-5.85137e-07
3.13791e-06
-8.16415e-07
2.70542e-06
-9.273e-07
2.31486e-06
-9.78621e-07
1.99902e-06
-8.16508e-07
1.61375e-06
-5.18448e-07
1.39993e-06
-1.80633e-07
1.32075e-06
2.05028e-07
1.68039e-06
7.89152e-07
1.7661e-06
1.48319e-06
1.58201e-06
1.66645e-06
1.59359e-06
1.50753e-06
1.65269e-06
1.48317e-06
1.67616e-06
1.4002e-06
1.709e-06
1.27496e-06
1.63046e-06
9.74023e-07
1.43497e-06
5.85367e-07
1.1982e-06
1.59808e-07
8.88973e-07
-2.65004e-07
4.69641e-07
-8.24652e-07
-1.36289e-07
-1.57361e-06
-9.78592e-07
-2.42357e-06
-2.18701e-06
-3.23406e-06
-3.68204e-06
-4.10274e-06
-5.05712e-06
-4.7245e-06
-5.6643e-06
-4.91219e-06
-5.47437e-06
-4.2677e-06
-4.86872e-06
-3.05647e-06
-4.02512e-06
-1.88917e-06
-3.10189e-06
-1.12082e-06
-2.36561e-06
-8.21243e-07
-2.03894e-06
-7.01138e-07
-1.75198e-06
-8.55107e-07
-1.02164e-06
-9.25832e-08
2.33274e-07
1.8099e-06
1.49306e-06
3.60828e-06
2.51484e-06
3.93102e-06
3.6141e-06
4.13605e-06
4.94798e-06
5.4135e-06
6.10909e-06
5.56041e-06
6.94001e-06
5.11415e-06
7.68405e-06
5.00282e-06
8.16417e-06
4.62096e-06
8.5537e-06
4.35675e-06
8.90228e-06
4.12082e-06
9.23353e-06
3.70835e-06
9.53612e-06
3.27065e-06
9.93649e-06
2.75924e-06
1.04445e-05
2.07809e-06
1.09005e-05
1.24463e-06
1.14503e-05
1.59323e-07
1.22118e-05
-9.58944e-07
1.28702e-05
-1.72847e-06
1.3414e-05
-2.67282e-06
1.40727e-05
-3.74204e-06
1.45526e-05
-4.00503e-06
1.49714e-05
-4.58181e-06
1.55132e-05
-5.29241e-06
1.60017e-05
-5.29583e-06
1.64596e-05
-5.7858e-06
1.71569e-05
-6.5881e-06
1.80199e-05
-6.96506e-06
1.89987e-05
-7.4302e-06
2.01573e-05
-8.53226e-06
2.12671e-05
-9.18566e-06
2.25885e-05
-9.83664e-06
2.39499e-05
-1.06805e-05
2.51728e-05
-1.14305e-05
2.64869e-05
-1.21223e-05
2.75309e-05
-1.24117e-05
2.86156e-05
-1.30909e-05
2.94013e-05
-1.31858e-05
3.00789e-05
-1.34104e-05
3.06278e-05
-1.35084e-05
3.08193e-05
-1.34239e-05
3.10379e-05
-1.32043e-05
3.09996e-05
-1.29896e-05
3.09329e-05
-1.28287e-05
3.05876e-05
-1.22785e-05
3.03516e-05
-1.20536e-05
3.00767e-05
-1.15152e-05
2.95916e-05
-1.11527e-05
2.93037e-05
-1.06e-05
2.88905e-05
-9.89348e-06
2.85777e-05
-9.45515e-06
2.8213e-05
-8.65953e-06
2.77668e-05
-7.9328e-06
2.75164e-05
-7.16132e-06
2.7008e-05
-6.12672e-06
2.65794e-05
-5.48357e-06
2.63188e-05
-4.42581e-06
2.57317e-05
-3.40265e-06
2.51196e-05
-2.41763e-06
2.45497e-05
-1.15496e-06
2.37512e-05
-2.13245e-07
2.32228e-05
3.90645e-07
2.26703e-05
1.83353e-06
2.18082e-05
2.53167e-06
2.08935e-05
3.02163e-06
2.01864e-05
4.11324e-06
1.93959e-05
5.21989e-06
1.82807e-05
4.81946e-06
1.75092e-05
4.71611e-06
1.69361e-05
6.60894e-06
1.66131e-05
7.6311e-06
1.6123e-05
6.21836e-06
1.60519e-05
4.53372e-06
1.62008e-05
6.57622e-06
1.59831e-05
1.11039e-05
1.56742e-05
1.57167e-05
1.49631e-05
1.95345e-05
1.41843e-05
2.24086e-05
1.36192e-05
2.4866e-05
1.29114e-05
2.66037e-05
1.21986e-05
2.66905e-05
1.16672e-05
2.51817e-05
1.13578e-05
2.2379e-05
1.0889e-05
1.99685e-05
1.04241e-05
1.72918e-05
1.02617e-05
1.52009e-05
1.02902e-05
1.25418e-05
1.05335e-05
9.98301e-06
1.0853e-05
7.07399e-06
1.10311e-05
4.88276e-06
1.10634e-05
2.86421e-06
1.10324e-05
9.8907e-07
1.11385e-05
-1.69152e-06
1.15071e-05
-4.04075e-06
1.18553e-05
-6.46426e-06
1.22111e-05
-8.28399e-06
1.24818e-05
-1.09697e-05
1.286e-05
-1.31371e-05
1.34121e-05
-1.60776e-05
1.35447e-05
-1.76673e-05
1.41557e-05
-1.92881e-05
1.46457e-05
-1.90449e-05
1.4889e-05
-1.79146e-05
1.53723e-05
-1.7054e-05
1.5814e-05
-1.62933e-05
1.57323e-05
-1.4173e-05
1.58515e-05
-1.12898e-05
1.677e-05
-9.99805e-06
1.72647e-05
-8.77859e-06
1.77143e-05
-7.71649e-06
1.83036e-05
-7.01865e-06
1.80696e-05
-5.32638e-06
1.78854e-05
-3.15376e-06
1.81884e-05
-2.21994e-06
1.82791e-05
-1.1968e-06
1.86643e-05
-3.45722e-07
1.94342e-05
8.82816e-08
2.02384e-05
5.88472e-07
2.10343e-05
1.07641e-06
2.18853e-05
1.68051e-06
2.19768e-05
1.93569e-06
2.18989e-05
6.98306e-07
2.2397e-05
5.53514e-07
2.27139e-05
1.50424e-06
2.26596e-05
1.77018e-06
2.25669e-05
2.35714e-06
2.23285e-05
2.62381e-06
2.28432e-05
2.66202e-06
2.31453e-05
4.21169e-06
2.29038e-05
5.17573e-06
2.19283e-05
5.78817e-06
2.11638e-05
6.04281e-06
2.04022e-05
7.20891e-06
1.93624e-05
9.08718e-06
1.80513e-05
9.98804e-06
1.70595e-05
1.20775e-05
1.59333e-05
1.56867e-05
1.36343e-05
1.79286e-05
1.13493e-05
1.94735e-05
8.21075e-06
2.21467e-05
5.02185e-06
2.30819e-05
2.27865e-05
-1.48602e-06
2.40234e-06
-2.62941e-06
1.34219e-06
-3.52463e-06
-2.4912e-07
-3.78774e-06
-1.168e-06
-3.27433e-06
-1.16619e-06
-2.1956e-06
-4.93076e-07
-1.00273e-06
5.86391e-07
3.04794e-07
1.8316e-06
1.24759e-06
2.48479e-06
2.12894e-06
2.27629e-06
3.02551e-06
2.2789e-06
3.82158e-06
2.40516e-06
4.52004e-06
2.18694e-06
5.06901e-06
1.84116e-06
5.42299e-06
1.39843e-06
5.53936e-06
8.43735e-07
5.47368e-06
4.22256e-07
5.36475e-06
1.73216e-07
5.20079e-06
7.06052e-08
5.01264e-06
2.23204e-08
4.8414e-06
-1.67071e-08
4.71403e-06
-8.54293e-08
4.61589e-06
-1.34701e-07
4.47428e-06
-2.21991e-07
4.20981e-06
-3.20673e-07
3.8301e-06
-4.36698e-07
3.41527e-06
-5.12469e-07
2.97221e-06
-5.35563e-07
2.63791e-06
-4.82213e-07
2.42308e-06
-3.03616e-07
2.30774e-06
-6.52908e-08
2.28165e-06
2.31112e-07
2.4342e-06
6.36603e-07
2.8183e-06
1.09909e-06
3.27708e-06
1.20767e-06
3.5105e-06
1.27411e-06
3.67434e-06
1.31933e-06
3.75649e-06
1.31805e-06
3.83599e-06
1.19546e-06
3.96861e-06
8.41401e-07
4.02521e-06
5.28775e-07
3.95981e-06
2.25205e-07
3.81819e-06
-1.23383e-07
3.59984e-06
-6.06297e-07
3.20334e-06
-1.17712e-06
2.64497e-06
-1.86519e-06
1.97119e-06
-2.56028e-06
1.17353e-06
-3.30508e-06
1.17799e-07
-3.66877e-06
-1.1236e-06
-3.67079e-06
-1.80976e-06
-3.58155e-06
-1.60436e-06
-3.26187e-06
-8.96322e-07
-2.59721e-06
-2.01292e-08
-1.99701e-06
6.95324e-07
-1.5367e-06
1.02669e-06
-1.0325e-06
1.00958e-06
-8.37995e-07
1.12966e-06
-2.1267e-07
2.00555e-06
9.34015e-07
3.26206e-06
2.35177e-06
4.36105e-06
2.83203e-06
5.38093e-06
3.11616e-06
6.63456e-06
4.15987e-06
7.76294e-06
4.43203e-06
8.61351e-06
4.26358e-06
9.33509e-06
4.28125e-06
9.89364e-06
4.06241e-06
1.03924e-05
3.85797e-06
1.08579e-05
3.6553e-06
1.13476e-05
3.21872e-06
1.17939e-05
2.82431e-06
1.22989e-05
2.25423e-06
1.30253e-05
1.35171e-06
1.36639e-05
6.06059e-07
1.42238e-05
-4.0066e-07
1.49814e-05
-1.71648e-06
1.56917e-05
-2.43877e-06
1.61283e-05
-3.1094e-06
1.66201e-05
-4.23386e-06
1.70769e-05
-4.46182e-06
1.74706e-05
-4.97552e-06
1.79101e-05
-5.7319e-06
1.8507e-05
-5.89273e-06
1.92766e-05
-6.55542e-06
2.01108e-05
-7.42236e-06
2.11509e-05
-8.00513e-06
2.23254e-05
-8.60465e-06
2.36137e-05
-9.82061e-06
2.48681e-05
-1.044e-05
2.60282e-05
-1.09968e-05
2.74664e-05
-1.21186e-05
2.84949e-05
-1.24591e-05
2.93812e-05
-1.30086e-05
3.02467e-05
-1.32772e-05
3.08734e-05
-1.37176e-05
3.12842e-05
-1.35966e-05
3.13983e-05
-1.35246e-05
3.15955e-05
-1.37056e-05
3.13714e-05
-1.31997e-05
3.1159e-05
-1.29919e-05
3.08398e-05
-1.26704e-05
3.04852e-05
-1.24741e-05
3.01602e-05
-1.19535e-05
2.96739e-05
-1.15672e-05
2.95098e-05
-1.13511e-05
2.91311e-05
-1.0774e-05
2.89315e-05
-1.04005e-05
2.87154e-05
-9.67733e-06
2.85671e-05
-9.30683e-06
2.84465e-05
-8.53897e-06
2.81974e-05
-7.68371e-06
2.80215e-05
-6.98536e-06
2.79176e-05
-6.02289e-06
2.75659e-05
-5.13189e-06
2.72143e-05
-4.07413e-06
2.64998e-05
-2.6882e-06
2.59881e-05
-1.90589e-06
2.55931e-05
-7.60022e-07
2.50088e-05
3.71051e-07
2.42343e-05
1.16514e-06
2.35465e-05
2.5214e-06
2.24832e-05
3.59496e-06
2.15605e-05
3.94437e-06
2.06899e-05
4.98385e-06
2.00292e-05
5.88057e-06
1.90294e-05
5.81928e-06
1.81905e-05
5.55496e-06
1.76569e-05
7.14255e-06
1.71359e-05
8.15212e-06
1.66141e-05
6.74016e-06
1.62063e-05
4.94146e-06
1.6407e-05
6.37558e-06
1.63779e-05
1.1133e-05
1.61802e-05
1.59144e-05
1.57328e-05
1.99819e-05
1.49565e-05
2.31849e-05
1.43708e-05
2.54517e-05
1.39354e-05
2.70391e-05
1.33714e-05
2.72545e-05
1.29103e-05
2.56429e-05
1.26371e-05
2.26521e-05
1.21978e-05
2.04079e-05
1.18156e-05
1.7674e-05
1.16171e-05
1.53993e-05
1.17162e-05
1.24427e-05
1.20731e-05
9.62607e-06
1.22098e-05
6.93737e-06
1.22916e-05
4.80092e-06
1.25793e-05
2.57646e-06
1.28318e-05
7.36599e-07
1.3096e-05
-1.95567e-06
1.33406e-05
-4.28537e-06
1.35598e-05
-6.68351e-06
1.39537e-05
-8.67782e-06
1.42047e-05
-1.12208e-05
1.47297e-05
-1.36621e-05
1.52855e-05
-1.66335e-05
1.56455e-05
-1.80272e-05
1.62214e-05
-1.9864e-05
1.61479e-05
-1.89714e-05
1.65055e-05
-1.82721e-05
1.71093e-05
-1.76579e-05
1.69856e-05
-1.61696e-05
1.68391e-05
-1.40265e-05
1.74066e-05
-1.18573e-05
1.80853e-05
-1.06768e-05
1.83621e-05
-9.05539e-06
1.89121e-05
-8.26645e-06
1.89058e-05
-7.01233e-06
1.85196e-05
-4.94018e-06
1.88294e-05
-3.46364e-06
1.90262e-05
-2.41669e-06
1.92432e-05
-1.41384e-06
1.98027e-05
-9.0523e-07
2.04497e-05
-5.58696e-07
2.08713e-05
1.66918e-07
2.10536e-05
8.94039e-07
2.17985e-05
9.35675e-07
2.20986e-05
1.63559e-06
2.19266e-05
8.70302e-07
2.209e-05
3.90071e-07
2.24191e-05
1.17517e-06
2.27453e-05
1.44396e-06
2.31441e-05
1.95839e-06
2.3178e-05
2.58992e-06
2.32807e-05
2.55926e-06
2.37204e-05
3.77204e-06
2.36636e-05
5.23251e-06
2.27148e-05
6.73696e-06
2.14245e-05
7.33312e-06
2.08181e-05
7.81528e-06
1.98001e-05
1.01051e-05
1.83479e-05
1.14403e-05
1.74331e-05
1.29923e-05
1.64625e-05
1.66573e-05
1.49105e-05
1.94806e-05
1.26305e-05
2.17534e-05
1.00071e-05
2.47702e-05
4.3562e-06
2.87327e-05
2.71427e-05
3.91769e-07
2.01057e-06
3.39168e-07
1.39479e-06
-2.22772e-07
3.1282e-07
-1.14473e-06
-2.46039e-07
-1.79827e-06
-5.12651e-07
-1.76968e-06
-5.21669e-07
-1.00681e-06
-1.76478e-07
3.54476e-07
4.70314e-07
1.59678e-06
1.24249e-06
2.53926e-06
1.33381e-06
3.39068e-06
1.42748e-06
4.22783e-06
1.56801e-06
4.9222e-06
1.49257e-06
5.45603e-06
1.30733e-06
5.7895e-06
1.06496e-06
5.89047e-06
7.42773e-07
5.83299e-06
4.79734e-07
5.70514e-06
3.01063e-07
5.57024e-06
2.05507e-07
5.44843e-06
1.4413e-07
5.30043e-06
1.31291e-07
5.15966e-06
5.53427e-08
5.03606e-06
-1.11058e-08
4.87484e-06
-6.07632e-08
4.72053e-06
-1.66366e-07
4.52474e-06
-2.40905e-07
4.2765e-06
-2.64236e-07
4.05666e-06
-3.15718e-07
3.82459e-06
-2.50149e-07
3.69977e-06
-1.78796e-07
3.68277e-06
-4.82871e-08
3.74353e-06
1.70351e-07
3.95324e-06
4.26891e-07
4.35217e-06
7.00161e-07
4.74493e-06
8.14908e-07
5.14585e-06
8.73194e-07
5.4978e-06
9.67375e-07
5.86178e-06
9.54079e-07
6.19519e-06
8.62048e-07
6.37515e-06
6.6144e-07
6.4663e-06
4.37626e-07
6.54787e-06
1.43633e-07
6.57642e-06
-1.51932e-07
6.52323e-06
-5.53105e-07
6.4165e-06
-1.07039e-06
6.20271e-06
-1.6514e-06
5.89267e-06
-2.25024e-06
5.41672e-06
-2.82913e-06
4.91738e-06
-3.16944e-06
4.40662e-06
-3.16003e-06
3.71481e-06
-2.88973e-06
3.07124e-06
-2.61829e-06
2.85181e-06
-2.37779e-06
3.10639e-06
-2.25159e-06
3.57147e-06
-2.00177e-06
4.09042e-06
-1.55145e-06
4.43081e-06
-1.17839e-06
4.75675e-06
-5.38607e-07
5.3196e-06
3.71162e-07
6.21127e-06
1.4601e-06
7.0219e-06
2.0214e-06
7.77061e-06
2.36746e-06
8.78286e-06
3.14761e-06
9.68429e-06
3.5306e-06
1.04453e-05
3.50254e-06
1.11809e-05
3.54571e-06
1.18405e-05
3.4028e-06
1.24426e-05
3.2558e-06
1.30666e-05
3.03132e-06
1.37572e-05
2.52812e-06
1.44321e-05
2.14943e-06
1.50735e-05
1.61285e-06
1.58584e-05
5.66816e-07
1.66776e-05
-2.1317e-07
1.72967e-05
-1.01976e-06
1.78321e-05
-2.25192e-06
1.8344e-05
-2.95068e-06
1.87981e-05
-3.56349e-06
1.91157e-05
-4.55147e-06
1.94917e-05
-4.83775e-06
2.00139e-05
-5.49776e-06
2.06355e-05
-6.35348e-06
2.13578e-05
-6.61502e-06
2.24409e-05
-7.6385e-06
2.35226e-05
-8.50408e-06
2.45843e-05
-9.06688e-06
2.59938e-05
-1.00141e-05
2.71524e-05
-1.09793e-05
2.82722e-05
-1.15598e-05
2.9401e-05
-1.21255e-05
3.03354e-05
-1.30531e-05
3.1002e-05
-1.31257e-05
3.15445e-05
-1.35511e-05
3.19776e-05
-1.37102e-05
3.19725e-05
-1.37125e-05
3.19573e-05
-1.35815e-05
3.18089e-05
-1.33762e-05
3.14541e-05
-1.33508e-05
3.0973e-05
-1.27187e-05
3.06172e-05
-1.26361e-05
3.03291e-05
-1.23822e-05
2.98115e-05
-1.19566e-05
2.95628e-05
-1.17048e-05
2.9379e-05
-1.13835e-05
2.9198e-05
-1.117e-05
2.91485e-05
-1.07245e-05
2.90392e-05
-1.02912e-05
2.91627e-05
-9.80082e-06
2.90915e-05
-9.23558e-06
2.91113e-05
-8.55877e-06
2.91432e-05
-7.71563e-06
2.9037e-05
-6.87921e-06
2.8944e-05
-5.92981e-06
2.85173e-05
-4.70518e-06
2.82763e-05
-3.83314e-06
2.7907e-05
-2.31897e-06
2.74067e-05
-1.40557e-06
2.67644e-05
-1.17711e-07
2.60493e-05
1.08612e-06
2.50837e-05
2.13082e-06
2.44106e-05
3.19441e-06
2.35577e-05
4.44788e-06
2.26957e-05
4.80643e-06
2.18445e-05
5.835e-06
2.10519e-05
6.67315e-06
2.01047e-05
6.76648e-06
1.9087e-05
6.57268e-06
1.84303e-05
7.7992e-06
1.76753e-05
8.90719e-06
1.70425e-05
7.37296e-06
1.64762e-05
5.5077e-06
1.64464e-05
6.40542e-06
1.66077e-05
1.09717e-05
1.63901e-05
1.6132e-05
1.6209e-05
2.0163e-05
1.57916e-05
2.36022e-05
1.52074e-05
2.6036e-05
1.4753e-05
2.74935e-05
1.43497e-05
2.76577e-05
1.4059e-05
2.59336e-05
1.38707e-05
2.28404e-05
1.35602e-05
2.07184e-05
1.32447e-05
1.79895e-05
1.31101e-05
1.5534e-05
1.32151e-05
1.23376e-05
1.33664e-05
9.47481e-06
1.33984e-05
6.90535e-06
1.36361e-05
4.56321e-06
1.40165e-05
2.19606e-06
1.43948e-05
3.58311e-07
1.4663e-05
-2.22387e-06
1.48877e-05
-4.50999e-06
1.51785e-05
-6.97437e-06
1.5642e-05
-9.14133e-06
1.61028e-05
-1.16816e-05
1.67539e-05
-1.43132e-05
1.70695e-05
-1.6949e-05
1.76132e-05
-1.8571e-05
1.7904e-05
-2.01548e-05
1.77959e-05
-1.88632e-05
1.82365e-05
-1.87128e-05
1.83161e-05
-1.77375e-05
1.82364e-05
-1.60899e-05
1.83175e-05
-1.41075e-05
1.88587e-05
-1.23986e-05
1.92042e-05
-1.10223e-05
1.97445e-05
-9.59576e-06
1.99147e-05
-8.43664e-06
1.94108e-05
-6.50845e-06
1.93347e-05
-4.86407e-06
1.96132e-05
-3.74211e-06
1.97088e-05
-2.51224e-06
2.00714e-05
-1.77645e-06
2.04456e-05
-1.2795e-06
2.05568e-05
-6.69818e-07
2.05184e-05
2.05283e-07
2.09029e-05
5.09562e-07
2.13109e-05
5.27703e-07
2.1735e-05
1.21146e-06
2.18967e-05
7.08614e-07
2.20093e-05
2.7747e-07
2.26058e-05
5.78645e-07
2.30138e-05
1.036e-06
2.34478e-05
1.52437e-06
2.37324e-05
2.30534e-06
2.35447e-05
2.74688e-06
2.37337e-05
3.58308e-06
2.35971e-05
5.36911e-06
2.31931e-05
7.14096e-06
2.19391e-05
8.58711e-06
2.0713e-05
9.04137e-06
2.0137e-05
1.06812e-05
1.89317e-05
1.26456e-05
1.81288e-05
1.37952e-05
1.7288e-05
1.7498e-05
1.58232e-05
2.09454e-05
1.39217e-05
2.36549e-05
1.19633e-05
2.67286e-05
8.87746e-06
3.18186e-05
3.60202e-05
1.23685e-06
1.99644e-06
2.23649e-06
2.16504e-06
1.91978e-06
1.63682e-06
1.54376e-06
1.88496e-06
2.56898e-06
3.28394e-06
3.97303e-06
4.67687e-06
5.29527e-06
5.78336e-06
6.13828e-06
6.32659e-06
6.38923e-06
6.3949e-06
6.37292e-06
6.36235e-06
6.37287e-06
6.3656e-06
6.36625e-06
6.36284e-06
6.30918e-06
6.26311e-06
6.20921e-06
6.12597e-06
6.09515e-06
6.08673e-06
6.11397e-06
6.24736e-06
6.45777e-06
6.79778e-06
7.1514e-06
7.50157e-06
7.89037e-06
8.28126e-06
8.65707e-06
8.97673e-06
9.24846e-06
9.48715e-06
9.71573e-06
9.8891e-06
9.99052e-06
9.98093e-06
9.84026e-06
9.53604e-06
9.14472e-06
8.81472e-06
8.68381e-06
8.69999e-06
8.65982e-06
8.42957e-06
8.13921e-06
7.95132e-06
7.85731e-06
7.98837e-06
8.42766e-06
9.19426e-06
9.91003e-06
1.0591e-05
1.15055e-05
1.2397e-05
1.31637e-05
1.38856e-05
1.46431e-05
1.53443e-05
1.59415e-05
1.66852e-05
1.74851e-05
1.81756e-05
1.87991e-05
1.94144e-05
2.0004e-05
2.04339e-05
2.06965e-05
2.11924e-05
2.15942e-05
2.21187e-05
2.29337e-05
2.37981e-05
2.48093e-05
2.5935e-05
2.71738e-05
2.82503e-05
2.93503e-05
3.03915e-05
3.11331e-05
3.18996e-05
3.22436e-05
3.2557e-05
3.25915e-05
3.24217e-05
3.21138e-05
3.17708e-05
3.13396e-05
3.07647e-05
3.04704e-05
3.00646e-05
2.98505e-05
2.95552e-05
2.95158e-05
2.9533e-05
2.94652e-05
2.96363e-05
2.95543e-05
2.97952e-05
2.98192e-05
2.99137e-05
2.98736e-05
2.97548e-05
2.96574e-05
2.94881e-05
2.90864e-05
2.85999e-05
2.7935e-05
2.73304e-05
2.67177e-05
2.59964e-05
2.52429e-05
2.44601e-05
2.34503e-05
2.26428e-05
2.17052e-05
2.0841e-05
1.98184e-05
1.90609e-05
1.83275e-05
1.73866e-05
1.66698e-05
1.6352e-05
1.65551e-05
1.65039e-05
1.63731e-05
1.63412e-05
1.59619e-05
1.55141e-05
1.53825e-05
1.51513e-05
1.49861e-05
1.48084e-05
1.46272e-05
1.47488e-05
1.47614e-05
1.46491e-05
1.45719e-05
1.49034e-05
1.52649e-05
1.57118e-05
1.61439e-05
1.65298e-05
1.69815e-05
1.74301e-05
1.79185e-05
1.84512e-05
1.89728e-05
1.95111e-05
1.94296e-05
1.95541e-05
1.97221e-05
1.96177e-05
1.9679e-05
1.96561e-05
1.99644e-05
2.01981e-05
2.06161e-05
2.02383e-05
2.0059e-05
2.01545e-05
2.00574e-05
2.02561e-05
2.05245e-05
2.04093e-05
2.01355e-05
2.02151e-05
2.06327e-05
2.07558e-05
2.14942e-05
2.18077e-05
2.20575e-05
2.24166e-05
2.26326e-05
2.32746e-05
2.35476e-05
2.36308e-05
2.36365e-05
2.35521e-05
2.31839e-05
2.2489e-05
2.15888e-05
2.06174e-05
1.96444e-05
1.879e-05
1.83219e-05
1.7521e-05
1.57642e-05
1.32352e-05
9.89684e-06
2.57028e-06
1.48058e-05
-2.12383e-06
4.6941e-06
-2.31275e-06
1.88915e-07
-1.15039e-05
9.19114e-06
-1.57266e-05
4.22271e-06
-9.89407e-06
-5.83252e-06
-2.67205e-06
-7.22202e-06
1.78994e-06
-4.46199e-06
4.59839e-06
-2.80844e-06
5.2262e-06
-6.27815e-07
4.59606e-06
6.30143e-07
3.65113e-06
9.44925e-07
2.99642e-06
6.54716e-07
2.68454e-06
3.11876e-07
2.75434e-06
-6.97973e-08
2.97556e-06
-2.21221e-07
3.15176e-06
-1.76201e-07
3.39552e-06
-2.43754e-07
3.60033e-06
-2.04809e-07
-1.10345e-07
7.40384e-06
3.14934e-05
-3.00011e-06
1.50981e-05
-8.67617e-06
5.86497e-06
-1.2982e-05
1.34969e-05
-1.278e-05
4.02079e-06
-8.60494e-06
-1.00076e-05
1.01676e-06
-1.68437e-05
6.39305e-06
-9.83829e-06
9.56623e-06
-5.98163e-06
1.04259e-05
-1.48752e-06
9.70137e-06
1.35471e-06
8.81481e-06
1.83149e-06
8.29592e-06
1.1736e-06
8.21187e-06
3.95924e-07
8.52983e-06
-3.87757e-07
8.88903e-06
-5.80418e-07
9.26201e-06
-5.49176e-07
9.60901e-06
-5.90761e-07
9.93126e-06
-5.27058e-07
-3.30499e-07
1.2925e-05
4.88633e-05
3.76995e-07
2.76461e-05
-6.98917e-06
1.32311e-05
-1.02433e-05
1.6751e-05
-6.25621e-06
3.37516e-08
-2.81977e-06
-1.34441e-05
4.88303e-06
-2.45465e-05
1.06554e-05
-1.56106e-05
1.34979e-05
-8.82422e-06
1.44951e-05
-2.48471e-06
1.38433e-05
2.00652e-06
1.30312e-05
2.64366e-06
1.26846e-05
1.52018e-06
1.27989e-05
2.81568e-07
1.33857e-05
-9.74494e-07
1.38759e-05
-1.07062e-06
1.44263e-05
-1.09956e-06
1.48616e-05
-1.02609e-06
1.52248e-05
-8.9028e-07
-6.16794e-07
1.86386e-05
6.44746e-05
7.80451e-06
3.84802e-05
-6.06669e-07
2.16423e-05
-4.40259e-06
2.05469e-05
5.5735e-07
-4.92619e-06
4.75315e-06
-1.76399e-05
1.05216e-05
-3.03149e-05
1.54487e-05
-2.05377e-05
1.74207e-05
-1.07963e-05
1.80905e-05
-3.1545e-06
1.7397e-05
2.70006e-06
1.63969e-05
3.64369e-06
1.61083e-05
1.80886e-06
1.63834e-05
6.40353e-09
1.72806e-05
-1.87169e-06
1.80484e-05
-1.83845e-06
1.88551e-05
-1.9062e-06
1.94673e-05
-1.63825e-06
1.98549e-05
-1.27791e-06
-9.1637e-07
2.41356e-05
7.60388e-05
1.4918e-05
4.76978e-05
7.81289e-06
2.87474e-05
3.34175e-06
2.50181e-05
7.01776e-06
-8.6022e-06
1.22674e-05
-2.28895e-05
1.65498e-05
-3.45973e-05
2.04978e-05
-2.44857e-05
2.17213e-05
-1.20197e-05
2.16174e-05
-3.05057e-06
2.07206e-05
3.59687e-06
1.95032e-05
4.86102e-06
1.90025e-05
2.30958e-06
1.91963e-05
-1.87369e-07
2.01652e-05
-2.84058e-06
2.11865e-05
-2.85974e-06
2.23332e-05
-3.05293e-06
2.33128e-05
-2.61791e-06
2.38716e-05
-1.83666e-06
-1.22867e-06
2.91611e-05
8.32936e-05
2.14851e-05
5.53738e-05
1.54905e-05
3.4742e-05
1.19952e-05
2.85133e-05
1.45188e-05
-1.11258e-05
1.93419e-05
-2.77126e-05
2.18662e-05
-3.71217e-05
2.475e-05
-2.73696e-05
2.59122e-05
-1.31818e-05
2.53698e-05
-2.50824e-06
2.42839e-05
4.68284e-06
2.32293e-05
5.91556e-06
2.26469e-05
2.89198e-06
2.25118e-05
-5.23002e-08
2.30543e-05
-3.38304e-06
2.38043e-05
-3.60977e-06
2.48972e-05
-4.14577e-06
2.61521e-05
-3.87282e-06
2.70849e-05
-2.76949e-06
-1.68264e-06
3.34949e-05
8.70074e-05
2.71379e-05
6.17309e-05
2.18668e-05
4.00131e-05
1.98883e-05
3.04918e-05
2.20308e-05
-1.32683e-05
2.60203e-05
-3.17021e-05
2.66882e-05
-3.77895e-05
2.79606e-05
-2.86421e-05
2.92423e-05
-1.44635e-05
2.87811e-05
-2.04697e-06
2.75513e-05
5.91261e-06
2.67101e-05
6.75675e-06
2.64561e-05
3.14603e-06
2.64092e-05
-5.43997e-09
2.66122e-05
-3.58606e-06
2.68331e-05
-3.8306e-06
2.73391e-05
-4.65179e-06
2.82954e-05
-4.82917e-06
2.94269e-05
-3.90091e-06
-2.34497e-06
3.71035e-05
8.77232e-05
3.20566e-05
6.67778e-05
2.70712e-05
4.49985e-05
2.65341e-05
3.1029e-05
2.87309e-05
-1.54651e-05
3.16567e-05
-3.4628e-05
3.09598e-05
-3.70926e-05
3.04051e-05
-2.80874e-05
3.14933e-05
-1.55517e-05
3.13751e-05
-1.92869e-06
3.02979e-05
6.98979e-06
2.98066e-05
7.24801e-06
2.99443e-05
3.00832e-06
3.01843e-05
-2.45394e-07
3.03938e-05
-3.79559e-06
3.03518e-05
-3.78854e-06
3.02642e-05
-4.56428e-06
3.04473e-05
-5.01223e-06
3.1232e-05
-4.68565e-06
-3.03405e-06
4.01941e-05
8.57682e-05
3.675e-05
7.02219e-05
3.17715e-05
4.9977e-05
3.23741e-05
3.04264e-05
3.46338e-05
-1.77248e-05
3.6142e-05
-3.61362e-05
3.44615e-05
-3.54121e-05
3.24057e-05
-2.60315e-05
3.29578e-05
-1.61039e-05
3.31607e-05
-2.13156e-06
3.22261e-05
7.92441e-06
3.21847e-05
7.28932e-06
3.30315e-05
2.16153e-06
3.38045e-05
-1.01832e-06
3.40662e-05
-4.05729e-06
3.37672e-05
-3.48956e-06
3.33915e-05
-4.18862e-06
3.30754e-05
-4.69611e-06
3.31586e-05
-4.76882e-06
-3.37606e-06
4.23006e-05
8.05709e-05
4.12571e-05
7.12653e-05
3.65285e-05
5.47056e-05
3.77553e-05
2.91995e-05
3.97519e-05
-1.97214e-05
3.9539e-05
-3.59233e-05
3.6927e-05
-3.28e-05
3.39394e-05
-2.30439e-05
3.3737e-05
-1.59015e-05
3.41398e-05
-2.53439e-06
3.3537e-05
8.52722e-06
3.38377e-05
6.98865e-06
3.51908e-05
8.08466e-07
3.66061e-05
-2.43362e-06
3.72567e-05
-4.70791e-06
3.68264e-05
-3.05925e-06
3.60934e-05
-3.45562e-06
3.55351e-05
-4.13786e-06
3.51426e-05
-4.37622e-06
-3.29717e-06
4.27466e-05
7.19696e-05
4.45332e-05
6.94787e-05
4.09834e-05
5.82554e-05
4.27143e-05
2.74686e-05
4.38338e-05
-2.08409e-05
4.17814e-05
-3.38709e-05
3.8358e-05
-2.93767e-05
3.50389e-05
-1.97249e-05
3.42677e-05
-1.51303e-05
3.4565e-05
-2.83171e-06
3.41652e-05
8.92703e-06
3.48712e-05
6.28261e-06
3.67565e-05
-1.07676e-06
3.87984e-05
-4.47555e-06
3.98e-05
-5.70955e-06
3.93332e-05
-2.59245e-06
3.82868e-05
-2.40916e-06
3.74493e-05
-3.30034e-06
3.67394e-05
-3.66638e-06
-2.90448e-06
4.11323e-05
6.09428e-05
4.62157e-05
6.43953e-05
4.49918e-05
5.94794e-05
4.69669e-05
2.54935e-05
4.64769e-05
-2.03509e-05
4.2795e-05
-3.0189e-05
3.90838e-05
-2.56655e-05
3.60372e-05
-1.66783e-05
3.47228e-05
-1.38158e-05
3.44274e-05
-2.53633e-06
3.40303e-05
9.3242e-06
3.54347e-05
4.87818e-06
3.81331e-05
-3.77517e-06
4.06241e-05
-6.9665e-06
4.16335e-05
-6.71897e-06
4.10939e-05
-2.05288e-06
3.98976e-05
-1.21285e-06
3.87428e-05
-2.1455e-06
3.76728e-05
-2.59644e-06
-2.26756e-06
3.80661e-05
4.88051e-05
4.6089e-05
5.63724e-05
4.75479e-05
5.80204e-05
4.96899e-05
2.33516e-05
4.73124e-05
-1.79735e-05
4.26882e-05
-2.55648e-05
3.93417e-05
-2.2319e-05
3.70139e-05
-1.43505e-05
3.49649e-05
-1.17668e-05
3.36435e-05
-1.21486e-06
3.3515e-05
9.4527e-06
3.59282e-05
2.4649e-06
3.94023e-05
-7.24923e-06
4.19207e-05
-9.48492e-06
4.23876e-05
-7.1859e-06
4.16164e-05
-1.28159e-06
4.0355e-05
4.85026e-08
3.89125e-05
-7.03025e-07
3.7635e-05
-1.31889e-06
-1.56715e-06
3.27123e-05
3.68473e-05
4.29956e-05
4.60891e-05
4.79375e-05
5.30785e-05
5.05281e-05
2.07609e-05
4.64365e-05
-1.38819e-05
4.1884e-05
-2.10122e-05
3.96479e-05
-2.00828e-05
3.78491e-05
-1.25518e-05
3.42746e-05
-8.19232e-06
3.19366e-05
1.12315e-06
3.32056e-05
8.18366e-06
3.68907e-05
-1.22012e-06
4.01886e-05
-1.05472e-05
4.16977e-05
-1.09939e-05
4.11816e-05
-6.66987e-06
4.02198e-05
-3.19769e-07
3.8975e-05
1.29328e-06
3.74466e-05
8.25419e-07
3.63465e-05
-2.18828e-07
-1.02186e-06
2.6858e-05
2.54462e-05
3.8251e-05
3.46962e-05
4.61629e-05
4.51665e-05
4.87693e-05
1.81546e-05
4.42935e-05
-9.40616e-06
4.1203e-05
-1.79217e-05
3.99416e-05
-1.88215e-05
3.74614e-05
-1.00715e-05
3.22369e-05
-2.96786e-06
3.03944e-05
2.96568e-06
3.3956e-05
4.62205e-06
3.77744e-05
-5.0385e-06
3.92005e-05
-1.19733e-05
3.87775e-05
-1.05709e-05
3.73943e-05
-5.28667e-06
3.64589e-05
6.15661e-07
3.53604e-05
2.39171e-06
3.42522e-05
1.93368e-06
3.36937e-05
3.39706e-07
-7.00354e-07
2.16162e-05
1.62163e-05
3.17325e-05
2.45799e-05
4.20337e-05
3.48653e-05
4.47731e-05
1.54151e-05
4.20495e-05
-6.68254e-06
4.07763e-05
-1.66484e-05
3.88588e-05
-1.6904e-05
3.50985e-05
-6.31125e-06
3.06317e-05
1.49902e-06
3.10761e-05
2.52128e-06
3.51482e-05
5.49885e-07
3.65827e-05
-6.47296e-06
3.51639e-05
-1.05545e-05
3.30664e-05
-8.47354e-06
3.13806e-05
-3.60084e-06
3.0694e-05
1.30223e-06
3.0116e-05
2.96975e-06
2.98439e-05
2.20581e-06
2.97772e-05
4.06372e-07
-4.81963e-07
1.6799e-05
1.01569e-05
2.54705e-05
1.59084e-05
3.60272e-05
2.43086e-05
4.0014e-05
1.14283e-05
4.04461e-05
-7.11463e-06
3.89426e-05
-1.51449e-05
3.49081e-05
-1.28696e-05
3.15446e-05
-2.94769e-06
3.02533e-05
2.79025e-06
3.16376e-05
1.13705e-06
3.31458e-05
-9.58364e-07
3.1481e-05
-4.80812e-06
2.82267e-05
-7.30025e-06
2.55317e-05
-5.77848e-06
2.40948e-05
-2.16391e-06
2.39502e-05
1.44683e-06
2.42146e-05
2.7053e-06
2.463e-05
1.79045e-06
2.47033e-05
3.3304e-07
-2.76696e-07
1.30576e-05
5.14199e-06
2.00711e-05
8.89494e-06
3.06075e-05
1.37723e-05
3.72798e-05
4.75602e-06
3.75855e-05
-7.42032e-06
3.31091e-05
-1.06686e-05
2.75938e-05
-7.35424e-06
2.55681e-05
-9.22007e-07
2.61169e-05
2.24145e-06
2.65214e-05
7.32522e-07
2.58784e-05
-3.1536e-07
2.32977e-05
-2.22738e-06
1.99823e-05
-3.98488e-06
1.75784e-05
-3.37455e-06
1.66631e-05
-1.24866e-06
1.70954e-05
1.01457e-06
1.79593e-05
1.84138e-06
1.86027e-05
1.14705e-06
1.86642e-05
2.71506e-07
-1.1676e-07
1.14893e-05
6.23724e-07
1.78364e-05
2.54783e-06
2.74303e-05
4.17835e-06
3.18148e-05
3.71551e-07
2.81903e-05
-3.79585e-06
2.17095e-05
-4.18775e-06
1.6768e-05
-2.41274e-06
1.59042e-05
-5.82384e-08
1.69812e-05
1.16447e-06
1.71274e-05
5.86358e-07
1.64951e-05
3.16932e-07
1.46722e-05
-4.04521e-07
1.20906e-05
-1.40322e-06
1.01568e-05
-1.44082e-06
9.53682e-06
-6.2864e-07
1.01875e-05
3.63882e-07
1.12179e-05
8.10986e-07
1.18462e-05
5.18796e-07
1.19439e-05
1.73743e-07
-2.66967e-08
7.59491e-06
1.01427e-05
1.43211e-05
1.46926e-05
1.08968e-05
6.70905e-06
4.2963e-06
4.23806e-06
5.40254e-06
5.98889e-06
6.30583e-06
5.90131e-06
4.49808e-06
3.05726e-06
2.42862e-06
2.79251e-06
3.60349e-06
4.12229e-06
4.29603e-06
)
;
boundaryField
{
inlet
{
type calculated;
value nonuniform List<scalar>
20
(
-2.5e-05
-2.5e-05
-2.5e-05
-2.5e-05
-2.5e-05
-2.5e-05
-2.5e-05
-2.5e-05
-2.5e-05
-2.5e-05
-2.5e-05
-2.5e-05
-2.5e-05
-2.5e-05
-2.5e-05
-2.5e-05
-2.5e-05
-2.5e-05
-2.5e-05
-2.5e-05
)
;
}
outlet
{
type calculated;
value nonuniform List<scalar>
20
(
3.71067e-06
1.01514e-05
1.55111e-05
2.01545e-05
2.41839e-05
2.75389e-05
3.00892e-05
3.19211e-05
3.35006e-05
3.50637e-05
3.63467e-05
3.70359e-05
3.69346e-05
3.58012e-05
3.33722e-05
2.95588e-05
2.4498e-05
1.85043e-05
1.18539e-05
4.26934e-06
)
;
}
walls
{
type calculated;
value uniform 0;
}
frontAndBack
{
type empty;
value nonuniform 0();
}
}
// ************************************************************************* //
| |
f20e76490d8d629c351fd6c6da56f23da1123636 | c8ae6b947319197239724da0150bef241f2bcadc | /app/ASGEGame/ASGEGame.cpp | 2431aea70818418bbe117cf5ffe9d3ae283c8bc2 | [] | no_license | olihewi/NetScape | 388c816ff3b5793913fbdd1ffdf7fbee82803dab | 7ad04dbf4c2f940143b969ae77451de859afd1fa | refs/heads/main | 2023-05-02T06:12:43.597505 | 2021-05-13T18:42:45 | 2021-05-13T18:42:45 | 367,039,357 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,958 | cpp | ASGEGame.cpp | #include "ASGEGame.hpp"
#include <ASGEGameLib/Scenes/CreditsScene.h>
#include <ASGEGameLib/Scenes/GameScene.h>
#include <ASGEGameLib/Scenes/LevelEditor.h>
#include <ASGEGameLib/Scenes/OptionsScene.h>
#include <ASGEGameLib/Scenes/TestScene.h>
#include <ASGEGameLib/Scenes/TitleScene.h>
#include <ASGEGameLib/Utilities/FontManager.h>
/// Initialises the game
ASGEGame::ASGEGame(const ASGE::GameSettings& settings) :
OGLGame(settings), input_tracker(inputs.get())
{
inputs->use_threads = true;
FontManager::loadFonts(renderer.get());
setScene(Scene::TITLE);
inputs->setCursorMode(ASGE::MOUSE::CursorMode::HIDDEN);
}
/// Fixed Update
void ASGEGame::update(const ASGE::GameTime& /*us*/)
{
// auto dt = static_cast<float>(us.deltaInSecs());
// scene->update(input_tracker, dt);
}
/// Render and Standard Update
void ASGEGame::render(const ASGE::GameTime& us)
{
auto dt = static_cast<float>(us.deltaInSecs());
scene->update(input_tracker, dt);
if (!quitting_game)
{
scene->render(renderer.get());
}
}
void ASGEGame::setScene(Scene::Scenes _scene)
{
scene = nullptr;
switch (_scene)
{
case Scene::TITLE:
{
scene = std::make_unique<TitleScene>(renderer.get(), [this](auto&& PH1) { setScene(PH1); });
break;
}
case Scene::GAME:
{
scene = std::make_unique<GameScene>(renderer.get(), [this](auto&& PH1) { setScene(PH1); });
break;
}
case Scene::LEVEL_EDITOR:
{
scene = std::make_unique<LevelEditor>(renderer.get(), [this](auto&& PH1) { setScene(PH1); });
break;
}
case Scene::OPTIONS:
{
scene = std::make_unique<OptionsScene>(renderer.get(), [this](auto&& PH1) { setScene(PH1); });
break;
}
case Scene::CREDITS:
{
scene = std::make_unique<CreditsScene>(renderer.get(), [this](auto&& PH1) { setScene(PH1); });
break;
}
case Scene::QUIT_GAME:
quitting_game = true;
signalExit();
break;
}
}
|
09612668ae7496e921511fc42607b529c2f3bb0b | 1e237a61a79b8d99d115a5bdbd74b87cfabb9ad6 | /GroundTroops.h | b6953060f904512c9dfe22d021b714fb10c2bcc8 | [] | no_license | whoisit85/Cpp_cources | 3a09fde451e81b0c01d61f49e0bab0ee1e34fac6 | 1e5a1485e3220edb926b5955441eb2d4b640fa29 | refs/heads/master | 2020-05-30T13:45:01.057822 | 2019-10-03T17:27:36 | 2019-10-03T17:27:36 | 189,769,130 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 337 | h | GroundTroops.h | #pragma once
#include"MilitaryUnit.h"
class GroundTroops : public MilitaryUnit
{
public:
GroundTroops(int, int, bool, Cell*, Player*);
~GroundTroops();
void attack(Unit&);
static Unit::Bonus bonus;
virtual std::string toString() override;
protected:
int getAttackBonus();
//Unit::Bonus getBonusMapping() = 0;
private:
};
|
b60fe024e0c0b5df8f6fa55ad20773da85654fbc | 95a39526c46905ca402cf73c9e5c53eefe5f3e2e | /PCB.cpp | 7b7d1fd375541e7e72e363f542274af177f8c48d | [] | no_license | ef1301/OS_Simulation | 70655aa919038f4251daa45e91e7a334b7e31d46 | 11e0545afc15b6199943df7ac3f2c1fd83030cfa | refs/heads/main | 2023-01-29T19:48:41.669190 | 2020-12-10T18:06:19 | 2020-12-10T18:06:19 | 319,192,006 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,528 | cpp | PCB.cpp | /*
Name: Emily Fang
Contains PCB struct for representing and impementing a Process Block (PID, priority, size, memory range)
*/
#include <utility>
#include <iostream>
//PROCESS STRUCT
struct PCB {
int PID;
int priority_level;
unsigned long int size;
std::pair<unsigned long int, unsigned long int> memory_occupied;
//Constructor
PCB(int p, int pl, std::pair<unsigned long int, unsigned long int> mo) :
PID(p),
priority_level(pl),
size(mo.second - mo.first + 1),
memory_occupied(mo){}
//Destructor
~PCB() {}
// Prints PCB Information
void print() {
std::cout << PID << " " << priority_level << " " << memory_occupied.first << " " << memory_occupied.second << std::endl;
}
//PCB loses its PID and priority but retains information on the empty space
void freePCB() {
PID = 0;
priority_level = -1;
}
/*
Merges the memory space between two PCBs by changing the range to cover the extend of both PCBs
So one can be removed
*/
void mergeEmptyPCB(unsigned long int start, unsigned long int end) {
memory_occupied.first = start;
memory_occupied.second = end;
}
/*
Changes PCB information
For creating new processes to either:
- Take up the whole space range
- Take up a portion
*/
void reusePCB(int _pid, int priority, unsigned long int start, unsigned long int end) {
PID = _pid;
priority_level = priority;
size = end - start +1;
memory_occupied.first = start;
memory_occupied.second = end;
}
};
|
ec9bb213ff2d40aeaf951f7cee38b3b20130821f | bba559b0776e4dfe24ea1bfc8f668c7e502152f8 | /main.cpp | b8a942df20d9bfa0fcf0c8206ccdf10630910e67 | [] | no_license | E3798211/OneginSort | e2e46e178029d1c8b792ba3d4f06ae7789111107 | ca477e3e61528fc682876ccb7f52d153b79e2357 | refs/heads/master | 2021-01-20T11:44:52.210713 | 2017-09-08T20:37:33 | 2017-09-08T20:37:33 | 101,684,870 | 0 | 1 | null | 2017-08-30T20:21:52 | 2017-08-28T20:28:13 | C++ | UTF-8 | C++ | false | false | 12,019 | cpp | main.cpp | #include <iostream>
#include <cstdio>
#include <fstream>
#include <cstring>
#include <assert.h>
#define ERR_WHERE "In " << __FILE__ << ": " << __func__ << "(): " << ex.what()
const char POEM[] = "poem.txt";
const int SORRY = -1;
using namespace std;
/// Reads file and returns all lines.
/**
\param file_name Name of the file to read.
\warning In case of mistake returns nullptr.
*/
char* FileRead(const char* file_name);
/// Parses line.
/**
Returns array with positions of beginnings of lines.
\param line_to_parse Line to be broken into lines.
\warning Array ends with (-1) as terminator.
*/
int* Parse(char* line_to_parse);
/// Sorts array based on the beginnings of lines.
/**
Returns sorted array with lines' beginnigs' coordinates.
\param poem Whole poem in one line.
\param lines_positions Array with beginnings of lines.
*/
void BeginSort(char* poem, int* lines_positions);
/// BinSearch.
/**
\param [in, out] arr_sorted Sorted part of array.
\param [in] lines_positions Posotions of beginnings of lines.
\param [in] start_pos Start position.
\param [in] end_pos Last position.
\param [in] curr_line_value Value of current line.
*/
int BinSearch(char* arr_sorted, int* lines_positions, int start_pos, int end_pos, char* curr_line_value);
/// Gets line from poem.
/**
\param [in] poem Poem in line.
\param [in] lines_positions Positions of beginnings of lines.
\param [in] line_pos Number of line to get.
*/
char* GetPoemLine(char* poem, int* lines_positions, int line_pos);
/// Gets line from poem.
/**
\warning Overoaded
\param [in] line_beg Pointer to the beginning of the line.
*/
char* GetPoemLine(char* line_beg);
/// Inserts element in array.
/**
Places element between start_pos and end_pos.
\param [in, out] arr_to_ins_in Array where new element inserts
\param [in] start_pos First position of insert area.
\param [in] end_pos Last position of insert area.
\param [in] new_elem_pos New element's position.
\param [in] new_elem_value Value of element to insert.
*/
void ElemInsert(int* arr_to_ins_in, int start_pos, int end_pos,
int new_elem_pos, int new_elem_value);
/// Prints poem.
/**
\param [in] poem Poem to print.
\param [in] lines_positions Array with beginnings of lines.
\param [in] label Extra information.
*/
void Print(char* poem, int* lines_positions, char* label = "Array");
/// Prints poem.
/**
\warning Overoaded
\param [in] lines_positions Pointers to the positions of lines.
\param [in] label Your comment.
*/
void Print(char** lines_positions, char* label = "Array");
/// Counts amount of lines in poem.
/**
\param [in] line_to_parse Poem written in one line.
*/
int LinesCount(char* line_to_parse);
/// Compares lines from the beginning.
int BegComp(const void* f_line, const void* s_line);
/// Parses line.
/**
Returns array with pointers to beginnings of the lines,
\param [in] line_to_parse Line to be broken into lines.
*/
char** Parse_v2(char* line_to_parse);
//================================================================
struct Line{
int lengh = 0;
char* line_beg = nullptr;
};
int main(int argc, char* argv[])
{
//Checking if User wants to choose another file
const char* file_name = nullptr;
if(argc > 1)
file_name = argv[1];
else
file_name = POEM;
//Reading from file
char* poem_in_line = FileRead(file_name);
//If nothing hive been read
if(poem_in_line == nullptr)
return SORRY;
char** lines_positions = Parse_v2(poem_in_line);
Print(lines_positions, "Before");
qsort(lines_positions, LinesCount(poem_in_line), sizeof(char*), BegComp);
Print(lines_positions, "After");
/*
//Breaking line into pieces
int* lines_position = Parse(poem_in_line);
Print(poem_in_line, lines_position, "Before");
BeginSort(poem_in_line, lines_position);
Print(poem_in_line, lines_position, "After");
*/
//Free the resourses
delete [] poem_in_line;
poem_in_line = nullptr;
delete [] lines_positions;
lines_positions = nullptr;
//delete [] lines_position;
//lines_position = nullptr;
}
//================================================================
char* FileRead(const char* file_name)
{
FILE *input = fopen(file_name, "r");
if(input == nullptr){
cout << "File not found!" << endl;
return nullptr;
}
if(fseek(input, 0, SEEK_END)){
cout << "Can not set last position in " << file_name << endl;
return nullptr;
}
int file_size = ftell(input);
if(file_size == EOF){
cout << "Can not get pointer's position in " << file_name << endl;
return nullptr;
}
char* poem_in_line = nullptr;
try{
poem_in_line = new char [file_size];
}catch(const bad_alloc& ex){
cout << ERR_WHERE << ". Cannot allocate " << file_size << " bytes." << endl;
return nullptr;
}
rewind(input);
int n_chars = fread(poem_in_line, 1, file_size, input);
fclose(input);
return poem_in_line;
}
int* Parse(char* line_to_parse)
{
//Exceptions
assert(line_to_parse != nullptr);
int n_lines = LinesCount(line_to_parse);
//Creating array with lines' coordinates
int* lines_positions = nullptr;
try{
lines_positions = new int [n_lines + 1];
}catch(const bad_alloc& ex){
cout << ERR_WHERE << ". Cannot allocate " << n_lines + 1 << " bytes." << endl;
return nullptr;
}
//First line starts immidiately
lines_positions[0] = 0;
//Runnnig through the line_to_parse
int pos_in_line = 0;
int line_beg_num = 1;
while(line_to_parse[pos_in_line] != '\0'){
if(line_to_parse[pos_in_line] == '\n'){
//Remembering position and going for the next line
lines_positions[line_beg_num] = pos_in_line + 1;
line_beg_num++;
}
pos_in_line++;
}
//Array with positions of lines ends with (-1) (used as terminator)
lines_positions[n_lines] = -1;
return lines_positions;
}
void BeginSort(char* poem, int* lines_positions)
{
//Exceptions
assert(poem != nullptr);
assert(lines_positions != nullptr);
//Sort (InsertBinSort)
//Running through array with positions untill it ends
int current_line_pos = 1;
while(lines_positions[current_line_pos] != (-1)){
//Getting line's value
char* current_line_value = GetPoemLine(poem, lines_positions, current_line_pos);
//Finding new position
int new_line_pos = BinSearch(poem, lines_positions, 0, current_line_pos, current_line_value);
//Inserting line
ElemInsert(lines_positions, 0, current_line_pos, new_line_pos, lines_positions[current_line_pos]);
//Going for next element
current_line_pos++;
}
}
int BinSearch(char* arr_sorted, int* lines_positions, int start_pos, int end_pos, char* curr_line_value)
{
//Exceptions
assert(arr_sorted != nullptr);
assert(lines_positions != nullptr);
assert(curr_line_value != nullptr);
assert(end_pos >= start_pos);
assert(start_pos >= 0);
assert(end_pos >= 0);
while(start_pos != end_pos){
assert(start_pos < end_pos);
int middle_pos = (start_pos + end_pos)/2;
char* middle_line = GetPoemLine(arr_sorted, lines_positions, middle_pos);
if(strcmp(curr_line_value, middle_line) > 0)
start_pos = middle_pos + 1;
else
end_pos = middle_pos;
}
return start_pos;
}
char* GetPoemLine(char* poem, int* lines_positions, int line_pos)
{
//Exceptions
assert(poem != nullptr);
assert(lines_positions != nullptr);
//Counting line's length
int line_len = 0;
while(poem[lines_positions[line_pos] + line_len] != '\n' &&
poem[lines_positions[line_pos] + line_len] != '\0')
line_len++;
char* line = nullptr;
try{
line = new char [line_len + 1];
}catch(const bad_alloc& ex){
cout << ERR_WHERE << ". Cannot allocate " << line_len + 1 << " bytes." << endl;
return nullptr;
}
//Creating line
line_len = 0;
while(poem[lines_positions[line_pos] + line_len] != '\n' &&
poem[lines_positions[line_pos] + line_len] != '\0'){
line[line_len] = poem[lines_positions[line_pos] + line_len];
line_len++;
}
//Last character is '\0'
line[line_len] = '\0';
return line;
}
char* GetPoemLine(char* line_beg)
{
//Exceptions
assert(line_beg != nullptr);
//Counting line's length
int line_len = 0;
while(*(line_beg + line_len) != '\n' &&
*(line_beg + line_len) != '\0')
line_len++;
char* line = nullptr;
try{
line = new char [line_len + 1];
}catch(const bad_alloc& ex){
cout << ERR_WHERE << ". Cannot allocate " << line_len + 1 << " bytes." << endl;
return nullptr;
}
//Creating line
line_len = 0;
while(*(line_beg + line_len) != '\n' &&
*(line_beg + line_len) != '\0'){
line[line_len] = *(line_beg + line_len);
line_len++;
}
//Last character is '\0'
line[line_len] = '\0';
return line;
}
void ElemInsert(int* arr_to_ins_in, int start_pos, int end_pos,
int new_elem_pos, int new_elem_value)
{
//Exceptions
assert(arr_to_ins_in != nullptr);
assert(start_pos >= 0);
assert(end_pos >= 0);
assert(end_pos >= start_pos);
assert(new_elem_pos >= start_pos);
assert(new_elem_pos <= end_pos);
for(int i = end_pos; i > new_elem_pos; i--)
arr_to_ins_in[i] = arr_to_ins_in[i - 1];
arr_to_ins_in[new_elem_pos] = new_elem_value;
}
void Print(char* poem, int* lines_positions, char* label)
{
//Exceptions
assert(poem != nullptr);
assert(lines_positions != nullptr);
assert(label != nullptr);
cout << " !" << label << endl;
int i = 0;
while(lines_positions[i] != (-1)){
cout << GetPoemLine(poem, lines_positions, i) << endl;
i++;
}
}
void Print(char** lines_positions, char* label)
{
//Exceptions
assert(lines_positions != nullptr);
assert(label != nullptr);
cout << " !" << label << endl;
int i = 0;
while(lines_positions[i] != nullptr){
cout << GetPoemLine(lines_positions[i]) << endl;
i++;
}
}
int LinesCount(char* line_to_parse)
{
int n_lines = 0;
int pos_in_line = 0;
while(line_to_parse[pos_in_line] != '\0'){
if(line_to_parse[pos_in_line] == '\n')
n_lines++;
pos_in_line++;
}
return n_lines;
}
int BegComp(const void* f_line, const void* s_line)
{
char* line_1 = GetPoemLine(*(char**)f_line);
char* line_2 = GetPoemLine(*(char**)s_line);
if(strcmp(line_1, line_2) < 0) return -1;
if(strcmp(line_1, line_2) > 0) return 1;
return 0;
}
char** Parse_v2(char* line_to_parse)
{
//Exceptions
assert(line_to_parse != nullptr);
int n_lines = LinesCount(line_to_parse);
//Creating array with lines' coordinates
char** lines_positions = nullptr;
try{
lines_positions = new char* [n_lines + 1];
}catch(const bad_alloc& ex){
cout << ERR_WHERE << ". Cannot allocate " << n_lines + 1 << " bytes." << endl;
return nullptr;
}
//First line starts immidiately
lines_positions[0] = line_to_parse;
//Runnnig through the line_to_parse
int pos_in_line = 0;
int line_beg_num = 1;
while(line_to_parse[pos_in_line] != '\0'){
if(line_to_parse[pos_in_line] == '\n'){
//Remembering position and going for the next line
lines_positions[line_beg_num] = line_to_parse + pos_in_line + 1;
line_beg_num++;
}
pos_in_line++;
}
//Array with positions of lines ends with (-1) (used as terminator)
lines_positions[n_lines] = nullptr;
return lines_positions;
}
|
406b272d98eebdf412096a5ae0dddfe61b895494 | 921abfe8a10a4c0edc3035e8abc4a33d51625c1d | /Programmers/CodeChallenge/Season1/삼각달팽이.cpp | 43521520982af14207cd2822fd5b3022ea077a80 | [] | no_license | gudwnsgur/Algorithm | 760fcff3b1e930bf1f8cf047c26253449b52cae9 | 016f6db056d821c918ea620d5517b00a387eff9a | refs/heads/master | 2023-05-01T03:28:17.003101 | 2023-04-18T14:08:05 | 2023-04-18T14:08:05 | 230,247,085 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 606 | cpp | 삼각달팽이.cpp | #include <string>
#include <vector>
#include <iostream>
using namespace std;
vector<int> solution(int n) {
vector<int> answer;
vector<vector<int>> v;
v = vector<vector<int>>(n+1, vector<int>(n+1));
int x = 1, y = 1, length = n, s= 1;
while (length >= 0) {
for (int i = 0; i < length; i++) v[x++][y] = s++;
x--;
for (int i = 0; i < length - 1; i++) v[x][++y] = s++;
for (int i = 0; i < length - 2; i++) v[--x][--y] = s++;
length -= 3;
x++;
}
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= n; j++) {
if (!v[i][j]) break;
answer.push_back(v[i][j]);
}
}
return answer;
} |
b874462da8b212290df3012800a509f6629cef49 | 5a16f176692528265a201564155dabd7ce842c68 | /app/src/main/cpp/native-lib.cpp | 5f129b52806c1e791e33f9b7c0173e3ab72ce663 | [] | no_license | compsat/bh2017-yeec | 399ed63a8a52c5ce1d3428cec8bac7e8567fb6a1 | d6c6b2b974975b3148eecd952dfb64548993a0d4 | refs/heads/master | 2021-01-19T13:53:47.540341 | 2017-02-19T04:58:39 | 2017-02-19T04:58:39 | 82,427,807 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 733 | cpp | native-lib.cpp | #include <jni.h>
#include <string>
using namespace std;
extern "C"
jstring
Java_xyz_lirongsansy_projectdemeter_Initial_stringFromJNI(
JNIEnv *env,
jobject /* this */) {
}
jdouble Java_xyz_lirongsansy_projectdemeter_Information_getBMR(JNIEnv *env, jobject obj, jdouble height, jdouble weight, jint age, jint gender) {
double bmr, modh, modw, modAge;
if(gender == 0){
modw = 13.397 * weight;
modh = 4.799 * height;
modAge = 5.677 * age;
bmr = (88.362 + modh + modw - modAge);
return bmr;
}
else{
modw = 9.247 * weight;
modh = 3.098 * height;
modAge = 4.330 * age;
bmr = (447.593 + modw + modh - modAge);
}
return bmr;
}
|
d6d892d8f8e07cd63877b60e7b165d80e0fce89c | c26ba49282108de5663ed2875521ef8bc10cdfd3 | /Falcon.Shared/Publisher.h | ac8258994ceeef9a2c5cb42960034ba03efe3329 | [] | no_license | Mr1008/Falcon | af3a4c9dbf6257eecdd6504ce505e0bdd2032585 | 389b627afca6a830bca21c738cacd9712142a0c0 | refs/heads/master | 2020-04-30T22:12:06.365310 | 2019-07-10T09:17:53 | 2019-07-10T09:17:53 | 177,112,649 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 945 | h | Publisher.h | #pragma once
#include <functional>
#include <vector>
#include <algorithm>
namespace Shared
{
template <class TListener>
class Publisher
{
public:
void registerListener(TListener* listener);
void unregisterListener(TListener* listener);
protected:
void notifyListeners(std::function<void(TListener*)> fn);
private:
std::vector<TListener*> listeners;
};
template<class TListener>
void Publisher<TListener>::registerListener(TListener* listener)
{
listeners.push_back(listener);
}
template<class TListener>
void Publisher<TListener>::unregisterListener(TListener* listener)
{
void(std::remove(listeners.begin(), listeners.end(), listener));
}
template<class TListener>
void Publisher<TListener>::notifyListeners(std::function<void(TListener*)> fn)
{
for (auto l : listeners) {
fn(l);
}
}
}
|
f5a84a575f767325b4c6b5c412e6ef797eb12b81 | 9d99ec59df73cdc131ca09e507d6f9cd1bf69fa9 | /src/bbStrBuf.cpp | b9f85ecfb1b87f4d082d4a9e17a86900d2cc905d | [] | no_license | mrhill/babel | 4682c97665a2660e352fbf1707dd1bf894523abd | 729ddc090efa4cb6a37f4176b94f6811b39f1116 | refs/heads/master | 2023-03-04T22:57:36.523182 | 2023-03-04T06:58:29 | 2023-03-04T06:58:29 | 2,427,919 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 651 | cpp | bbStrBuf.cpp | #include "strbuf.h"
#include "mem.h"
#include "str.h"
int bbStrBuf::Printf(const bbCHAR* pFmt, ...)
{
bbVALIST args;
bbVASTART(args, pFmt);
int ret = VPrintf(pFmt, args);
bbVAEND(args);
return ret;
}
int bbStrBuf::Catf(const bbCHAR* pFmt, ...)
{
bbVALIST args;
bbVASTART(args, pFmt);
int ret = VCatf(pFmt, args);
bbVAEND(args);
return ret;
}
#if bbOS == bbOS_QT
#include <QByteArray>
#include <QString>
bbCHAR* bbStrFromQt(const QString& str)
{
QByteArray utf8 = str.toUtf8();
bbCHAR* pStr = bbStrAlloc(utf8.size());
if (pStr)
bbStrCpy(pStr, utf8.constData());
return pStr;
}
#endif
|
b86c6f541d02874f6dfa737c9652849bb2f7477a | d70ad481a9fd1f2feb968afd1af272cfa001cdd7 | /MD/NVE.h | e769180a8817608fcf2ad9af67caaad4b7c3d947 | [] | no_license | hoang6/2D-materials | 1f34346a97c84e510867569376315defcb3d5fb7 | d0946a119e0e0b9a273f9196b336fbe53e23e2a7 | refs/heads/master | 2021-01-01T05:15:48.811837 | 2016-05-12T20:08:29 | 2016-05-12T20:08:29 | 58,672,222 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,264 | h | NVE.h | #ifndef _MD_NVE_H
#define _MD_NVE_H
#include "Data.h"
#include <iostream>
#include <cmath>
namespace MD {
class NVE {
public:
NVE();
virtual ~NVE();
void reset();
void init(Data& _data);
void final();
virtual void step(double _dt);
//--- the followings are only available after init ---
double ePot() const { return epot; }
double eKin() const { return ekin; }
double eKinMax() const { return ekinMax; }
int natoms() const { return na; }
int ndata() const { return nd; }
Data& data() { return *pdata; }
AMod::Molecule& molecule() { return *pmol; }
double& pos(int _i) { return x[_i]; } //len = ndata()
double& vel(int _i) { return (*pvel)[_i]; } //len = ndata()
double& acc(int _i) { return a[_i]; } //len = ndata()
double& mass(int _i) { return m[_i]; } //len = natoms()
AMod::KernelBasic& kernel() { return *pkernel; }
virtual void dumpEnergy(std::ostream& _fout) const;
protected:
virtual void computeForce();
void computeEKin();
void force2acc();
Data* pdata;
AMod::Molecule* pmol;
Data::Array* pvel;
AMod::KernelBasic* pkernel;
int na, nd;
double* x; //Unit: A
double* a; //Unit: A/fs^2
double* m; //Unit: eV*fs^2/A^2
double ekinMax, ekin, epot;
};
}/* MD */
#endif
|
45609e99cf2ab3e50ab128a21d1d03363859d859 | e6328c5076fe0f1b6819c3eacca08e1c4791199b | /020. Valid Parentheses/20. Valid Parentheses.cpp | c2de90b97df73faaad28703d8bfdbe74bee64849 | [] | no_license | 603lzy/LeetCode | 16e818d94282b34ac153271697b512c79fc95ef5 | 9752533bc76ce5ecb881f61e33a3bc4b20dcf666 | refs/heads/master | 2020-06-14T03:07:03.148542 | 2018-10-22T14:10:33 | 2018-10-22T14:10:33 | 75,514,162 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 236 | cpp | 20. Valid Parentheses.cpp | class Solution {
public:
bool isValid(string s) {
stack<char> p;
for (char& c : s)
p.empty() ? p.push(c) : (c == p.top() + 2 || c == p.top() + 1 ? p.pop() : p.push(c));
return p.empty();
}
};
|
7e88202d111acee30cd4ef5435106b19c0cd4a7d | 91dd224514b2c963c3c8ecf36b2370462c57b8db | /hphp/runtime/base/apc-handle.cpp | ecd457ba8602cf932f47e7e746530ae617ad5433 | [
"Zend-2.0",
"PHP-3.01",
"BSD-3-Clause"
] | permissive | 10000TB/hhvm | 17391548b139b9504a1c37a6f34544b69fe231e8 | 90509bc46a3ded9e6a95d4d406715ff0c059576d | refs/heads/master | 2020-12-26T05:51:50.190985 | 2015-11-27T22:46:56 | 2015-11-27T23:02:10 | 47,004,901 | 2 | 0 | null | 2015-11-28T00:55:22 | 2015-11-28T00:55:21 | null | UTF-8 | C++ | false | false | 6,894 | cpp | apc-handle.cpp | /*
+----------------------------------------------------------------------+
| HipHop for PHP |
+----------------------------------------------------------------------+
| Copyright (c) 2010-2015 Facebook, Inc. (http://www.facebook.com) |
+----------------------------------------------------------------------+
| This source file is subject to version 3.01 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| http://www.php.net/license/3_01.txt |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
*/
#include "hphp/runtime/base/apc-handle.h"
#include "hphp/runtime/base/apc-typed-value.h"
#include "hphp/runtime/base/apc-string.h"
#include "hphp/runtime/base/apc-array.h"
#include "hphp/runtime/base/apc-object.h"
#include "hphp/runtime/base/apc-collection.h"
#include "hphp/runtime/base/mixed-array.h"
#include "hphp/runtime/ext/apc/ext_apc.h"
namespace HPHP {
//////////////////////////////////////////////////////////////////////
APCHandle::Pair APCHandle::Create(const Variant& source,
bool serialized,
APCHandleLevel level,
bool unserializeObj) {
auto createStaticStr = [&](StringData* s) {
assert(s->isStatic());
if (serialized) {
// It is priming, and there might not be the right class definitions
// for unserialization.
return APCString::MakeSerializedObject(apc_reserialize(String{s}));
}
auto value = new APCTypedValue(APCTypedValue::StaticStr{}, s);
return APCHandle::Pair{value->getHandle(), sizeof(APCTypedValue)};
};
auto type = source.getType(); // this gets rid of the ref, if it was one
switch (type) {
case KindOfUninit: {
auto value = APCTypedValue::tvUninit();
return {value->getHandle(), sizeof(APCTypedValue)};
}
case KindOfNull: {
auto value = APCTypedValue::tvNull();
return {value->getHandle(), sizeof(APCTypedValue)};
}
case KindOfBoolean: {
auto value = source.getBoolean() ? APCTypedValue::tvTrue()
: APCTypedValue::tvFalse();
return {value->getHandle(), sizeof(APCTypedValue)};
}
case KindOfInt64: {
auto value = new APCTypedValue(source.getInt64());
return {value->getHandle(), sizeof(APCTypedValue)};
}
case KindOfDouble: {
auto value = new APCTypedValue(source.getDouble());
return {value->getHandle(), sizeof(APCTypedValue)};
}
case KindOfString: {
StringData* s = source.getStringData();
if (s->isStatic()) {
return createStaticStr(s);
}
if (serialized) {
// It is priming, and there might not be the right class definitions
// for unserialization.
return APCString::MakeSerializedObject(apc_reserialize(String{s}));
}
auto const st = lookupStaticString(s);
if (st) {
auto value = new APCTypedValue(APCTypedValue::StaticStr{}, st);
return {value->getHandle(), sizeof(APCTypedValue)};
}
if (level == APCHandleLevel::Outer && apcExtension::UseUncounted) {
auto st = StringData::MakeUncounted(s->slice());
auto value = new APCTypedValue(APCTypedValue::UncountedStr{}, st);
return {value->getHandle(), st->size() + sizeof(APCTypedValue)};
}
return APCString::MakeSharedString(s);
}
case KindOfStaticString:
return createStaticStr(source.getStringData());
case KindOfPersistentArray:
case KindOfArray: {
auto ad = source.getArrayData();
if (ad->isStatic()) {
auto value = new APCTypedValue(APCTypedValue::StaticArr{}, ad);
return {value->getHandle(), sizeof(APCTypedValue)};
}
return APCArray::MakeSharedArray(source.getArrayData(), level,
unserializeObj);
}
case KindOfObject:
if (source.getObjectData()->isCollection()) {
return APCCollection::Make(source.getObjectData(),
level,
unserializeObj);
}
return unserializeObj ? APCObject::Construct(source.getObjectData()) :
APCString::MakeSerializedObject(apc_serialize(source));
case KindOfResource:
// TODO Task #2661075: Here and elsewhere in the runtime, we convert
// Resources to the empty array during various serialization operations,
// which does not match Zend behavior. We should fix this.
return APCArray::MakeSharedEmptyArray();
case KindOfRef:
case KindOfClass:
return {nullptr, 0};
}
not_reached();
}
Variant APCHandle::toLocal() const {
switch (m_type) {
case KindOfUninit:
case KindOfNull:
return init_null(); // shortcut.. no point to forward
case KindOfBoolean:
return APCTypedValue::fromHandle(this)->getBoolean();
case KindOfInt64:
return APCTypedValue::fromHandle(this)->getInt64();
case KindOfDouble:
return APCTypedValue::fromHandle(this)->getDouble();
case KindOfStaticString:
return Variant{APCTypedValue::fromHandle(this)->getStringData()};
case KindOfString:
return APCString::MakeLocalString(this);
case KindOfPersistentArray:
return Variant{APCTypedValue::fromHandle(this)->getArrayData(),
Variant::PersistentArrInit{}};
case KindOfArray:
return APCArray::MakeLocalArray(this);
case KindOfObject:
return APCObject::MakeLocalObject(this);
case KindOfResource:
case KindOfRef:
case KindOfClass:
break;
}
not_reached();
}
void APCHandle::deleteShared() {
assert(!isUncounted());
switch (m_type) {
case KindOfUninit:
case KindOfNull:
case KindOfBoolean:
return;
case KindOfInt64:
case KindOfDouble:
case KindOfStaticString:
case KindOfPersistentArray:
delete APCTypedValue::fromHandle(this);
return;
case KindOfString:
APCString::Delete(APCString::fromHandle(this));
return;
case KindOfArray:
APCArray::Delete(this);
return;
case KindOfObject:
if (isAPCCollection()) {
APCCollection::Delete(this);
return;
}
APCObject::Delete(this);
return;
case KindOfResource:
case KindOfRef:
case KindOfClass:
break;
}
not_reached();
}
//////////////////////////////////////////////////////////////////////
}
|
dde75fa0c5fee9e35565e0cf197ee5605d1eee81 | 226e99aac4bdd36b1e3fd10f15bfc6bc271e69f9 | /Modules/LibRender/LibRenderSurface9.cpp | ea9c3b40e59d3bb5aae060dc64bac5c410098a5a | [
"Apache-2.0"
] | permissive | zhangq49/sharerender | 908b7ffb5e43eb4ba0f61df06345848b3f1c6c23 | 9819ff9c543cf52bfac16655d1d30417291b5d4c | refs/heads/master | 2020-04-25T09:28:19.181632 | 2017-07-28T03:45:33 | 2017-07-28T03:45:33 | 172,676,610 | 1 | 0 | null | 2019-02-26T09:09:33 | 2019-02-26T09:09:33 | null | UTF-8 | C++ | false | false | 321 | cpp | LibRenderSurface9.cpp | #include <WinSock2.h>
#include "LibRenderSurface9.h"
void ClientSurface9::ReplaceSurface(IDirect3DSurface9 * pnew){
this->m_surface->Release();
this->m_surface = pnew;
}
ClientSurface9::ClientSurface9(IDirect3DSurface9* ptr): m_surface(ptr) {
}
IDirect3DSurface9* ClientSurface9::GetSurface9() {
return m_surface;
} |
8f78a4b2ec97090a6c62a5daf6bf2ed5f906eb4a | f8a903d8c4b4865266a20125b33414003db32f5e | /Classes/Tower/TowerStar.h | 5ba5ad95d19d858eec7a69ecad5783d51477f5c7 | [] | no_license | LittleSemester/CantFallTower | beacdcb7dbf5e0e8eb17a7b9e84a5515df303228 | 6fed5f68d972b957aeefa3665d09a0313d9800d8 | refs/heads/master | 2016-09-09T22:42:04.505676 | 2015-09-29T05:08:47 | 2015-09-29T05:08:47 | 42,447,415 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 299 | h | TowerStar.h | #ifndef __TOWERSTAR_H__
#define __TOWERSTAR_H__
#include "Tower/Tower.h"
#include "cocos2d.h"
class TowerStar:public Tower
{
protected:
virtual void onFire();
bool onChangeLevel(int level);
public:
explicit TowerStar();
~TowerStar();
virtual bool init();
CREATE_FUNC(TowerStar);
};
#endif |
e1c0b3fdd5fee26cfba50556fcf1d4b359959673 | c6fa53212eb03017f9e72fad36dbf705b27cc797 | /RecoParticleFlow/PFClusterProducer/interface/PFHcalSuperClusterAlgo.h | ed7b9ba47520df0d61489ff2b4d01896053988b7 | [] | no_license | gem-sw/cmssw | a31fc4ef2233b2157e1e7cbe9a0d9e6c2795b608 | 5893ef29c12b2718b3c1385e821170f91afb5446 | refs/heads/CMSSW_6_2_X_SLHC | 2022-04-29T04:43:51.786496 | 2015-12-16T16:09:31 | 2015-12-16T16:09:31 | 12,892,177 | 2 | 4 | null | 2018-11-22T13:40:31 | 2013-09-17T10:10:26 | C++ | UTF-8 | C++ | false | false | 3,182 | h | PFHcalSuperClusterAlgo.h | #ifndef RecoParticleFlow_PFClusterProducer_PFHcalSuperClusterAlgo_h
#define RecoParticleFlow_PFClusterProducer_PFHcalSuperClusterAlgo_h
#include "DataFormats/ParticleFlowReco/interface/PFCluster.h"
#include "DataFormats/ParticleFlowReco/interface/PFClusterFwd.h"
#include "DataFormats/ParticleFlowReco/interface/PFSuperCluster.h"
#include "DataFormats/ParticleFlowReco/interface/PFSuperClusterFwd.h"
#include "DataFormats/ParticleFlowReco/interface/PFLayer.h"
#include "DataFormats/ParticleFlowReco/interface/PFRecHit.h"
#include "DataFormats/Common/interface/PtrVector.h"
#include "DataFormats/Common/interface/OrphanHandle.h"
#include <vector>
#include <memory>
/// \brief Algorithm for particle flow superclustering
/*!
This class takes as an input a map of pointers to PFCluster's, and creates
PFSuperCluster's from these clusters.
\todo describe algorithm and parameters. give a use case
\author Chris Tully
\date July 2012
*/
class PFHcalSuperClusterAlgo {
public:
/// constructor
PFHcalSuperClusterAlgo();
/// destructor
virtual ~PFHcalSuperClusterAlgo() {;}
/// enable/disable debugging
void enableDebugging(bool debug) { debug_ = debug;}
typedef edm::Handle< reco::PFClusterCollection > PFClusterHandle;
typedef edm::Ptr< reco::PFCluster> PFClusterPtr;
const edm::PtrVector<reco::PFCluster>& clusters() const
{return clusters_; }
/// perform clustering
void doClustering( const reco::PFClusterCollection& clusters, const reco::PFClusterCollection& clustersHO );
/// calculate eta-phi widths of clusters
std::pair<double, double> calculateWidths(const reco::PFCluster& cluster);
/// recalculate eta-phi position of clusters
std::pair<double, double> calculatePosition(const reco::PFCluster& cluster);
/// perform clustering in full framework
void doClustering( const PFClusterHandle& clustersHandle, const PFClusterHandle& clustersHOHandle );
// set histogram file pointer
// void setHistos(TFile* file);
// write histos
void write();
/// setters -------------------------------------------------------
/// getters -------------------------------------------------------
/// \return particle flow clusters
std::auto_ptr< std::vector< reco::PFCluster > >& clusters()
{return pfClusters_;}
/// \return particle flow superclusters
std::auto_ptr< std::vector< reco::PFSuperCluster > >& superClusters()
{return pfSuperClusters_;}
friend std::ostream& operator<<(std::ostream& out,const PFHcalSuperClusterAlgo& algo);
private:
/// perform clustering
void doClusteringWorker( const reco::PFClusterCollection& clusters, const reco::PFClusterCollection& clustersHO );
/// particle flow clusters
std::auto_ptr< std::vector<reco::PFCluster> > pfClusters_;
/// particle flow superclusters
std::auto_ptr< std::vector<reco::PFSuperCluster> > pfSuperClusters_;
reco::PFSuperCluster SuperCluster_;
PFClusterHandle clustersHandle_;
PFClusterHandle clustersHOHandle_;
edm::PtrVector< reco::PFCluster > clusters_;
/// debugging on/off
bool debug_;
/// product number
static unsigned prodNum_;
};
#endif
|
c52ca2ff8ff6e1337ca16e0e6bea2c7ada7c1651 | 8def94d70dff30617a7644b2dff534fef7dc8281 | /IntXLib/src/StringConverters/StringConvertManager.h | 0adc04c62d36a09dca63db0ec4710bb915bfd884 | [
"MIT"
] | permissive | dendisuhubdy/IntXLib4CPP | e2a295d033a3a10155fdb68ea73082c7dd9a92ec | ba9869269bee5a25f8d9ab9bc84da6380e2eb315 | refs/heads/master | 2020-05-17T04:24:30.121236 | 2017-09-08T11:26:06 | 2017-09-08T11:26:06 | 183,508,780 | 1 | 0 | null | 2019-04-25T20:58:18 | 2019-04-25T20:58:17 | null | UTF-8 | C++ | false | false | 1,791 | h | StringConvertManager.h | #pragma once
#ifndef SRINGCONVERTERMANAGER_H
#define SRINGCONVERTERMANAGER_H
#include "ClassicStringConverter.h"
#include "FastStringConverter.h"
#include "IStringConverter.h"
#include "IntX.h"
// Used to retrieve needed ToString converter.
class StringConvertManager
{
private:
// Classic converter instance.
static ClassicStringConverter _ClassicStringConverter;
// Fast converter instance.
static FastStringConverter _FastStringConverter;
// Create new pow2 converter instance
static Pow2StringConverter pow2StringConverter;
public:
/*
/// <summary>
/// Returns ToString converter instance for given ToString mode.
/// </summary>
/// <param name="mode">ToString mode.</param>
/// <returns>Converter instance.</returns>
/// <exception cref="ArgumentOutOfRangeException"><paramref name="mode" /> is out of range.</exception>
*/
static IStringConverter* GetStringConverter(ToStringMode mode)
{
switch (mode)
{
case ToStringMode::tsmFast:
return &_FastStringConverter;
case ToStringMode::tsmClassic:
return &_ClassicStringConverter;
default:
throw ArgumentOutOfRangeException("mode");
} // end switch
} // end function GetStringConverter
}; // end class StringConvertManager
// Create new pow2 converter instance
Pow2StringConverter StringConvertManager::pow2StringConverter = Pow2StringConverter();
// Classic converter instance.
ClassicStringConverter StringConvertManager::_ClassicStringConverter = ClassicStringConverter(StringConvertManager::pow2StringConverter);
// Fast converter instance.
FastStringConverter StringConvertManager::_FastStringConverter = FastStringConverter(
StringConvertManager::pow2StringConverter,
StringConvertManager::_ClassicStringConverter);
#endif // !SRINGCONVERTERMANAGER_H
|
b4178c8b1cb2bc4773654268ea5784cfb904fcf5 | 1ece530a0acbcf2e703e20d63c685869a7976c3f | /Rendezesek_mo/src/sorts.hpp | 15bae542ae73b8174e4afb2f4402df92e58149ff | [] | no_license | jozgyb/AdatszerkHelp | e56e4e5bd1b0ed7e5a63c3e3a131947b81932d3f | 34222d6e8cf1d5b394ca5764585746e2cdabaa6c | refs/heads/master | 2020-04-09T13:58:06.438496 | 2019-10-25T19:44:53 | 2019-10-25T19:44:53 | 160,384,286 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,139 | hpp | sorts.hpp | #ifndef SORTS_HPP
#define SORTS_HPP
/// Segéd függvények
void swap(int& a, int& b) { //Hagyományos cserélő függvény
int tmp = a; //Segédváltozóra van szükség a cseréhez
a = b;
b = tmp;
}
/// ========== BUBURÉKRENDEZÉS ==========
void bubbleSort(int* A, int n) {
for (int j = n - 1; j >= 1; --j) {
for (int i = 0; i <= j - 1; ++i) { //Végigjárja előről hátra a tömböt
if (A[i] <= A[i + 1]) { //Ha az aktuális elem kisebb, mint a következő
//skip // akkor nem történik semmi
} else { //Ha az aktuális elem nagyobb, mint a következő
swap(A[i], A[i + 1]); // akkor megcseréljük a két elemet
}
}
}
}
/// ========== MAXIMUM KIVÁLASZTÁSOS RENDEZÉS ==========
// A rendező Segédfüggvénye: megkeresi a maximális értékű elemet a megadott tartományban (j-ig)
int MaxSel(const int* A, int j) {
int ind = 0; //A maximális értékű elem indexe
for (int i = 0; i < j; ++i) {
if (A[i + 1] > A[ind]) {
ind = i + 1;
}
}
return ind; //Visszatér a maximális értékű elem indexével
}
void maxSort(int* A, int n) {
for (int j = n - 1; j >= 1; --j) { //Végigjárja hátulról előrefelé a tömböt
int ind = MaxSel(A, j); //Megkeresi a maximumot az elejétõl j-ig
swap(A[ind], A[j]); //A megtalált maximális elemet kicseréljük az aktuális hátsó elemmel
}
}
/// ========== BESZÚRÓ RENDEZÉS ==========
void insertionSort(int* A, int n) {
for (int j = 0; j <= n - 2; ++j) { //Az 0. indexű elem már rendezett,
int w = A[j + 1]; //az 1. indexű (j+1) elemtől indulunk, amit eltárolunk átmenetileg (beszúrandó elem)
int i = j;
while (i >= 0 && A[i] > w) //Megkeressük a 'w' helyét a rendezett szakaszban
{
A[i + 1] = A[i]; //Jobbra toljuk a 'w'-nél nagyobb elemeket
i = i - 1;
}
A[i + 1] = w; //Beszúrjuk a helyére az elmentett értéket
}
}
#endif
|
e826118bde1bed6aa7ff6c9d772652dc0887bd17 | 132525373360d6ec1326673423bca904d4a7e6b0 | /lab3.cpp | d8f5ec14c9c6142694e86585808e1e5a98f30528 | [] | no_license | Joshua-Carbajal/CPSC-1230-Programming-and-Data-Types | d19e11e598737706812c29b8607f9672d2192082 | 6908fbc499c0fdbf925de553cb03370c0fa13e65 | refs/heads/main | 2023-03-02T20:35:26.293010 | 2021-02-15T17:10:28 | 2021-02-15T17:10:28 | 339,148,657 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,808 | cpp | lab3.cpp | // Joshua Carbajal
// lab3.cpp
// Date: 1/18/2019
/* Purpose: This program takes two type double inputs from the user
and displays them, swaps the values and then outputs those
swapped values.
*/
// Input: The user inputs two values of type double
// Process: The values entered are swapped
// Output: The values are printed out both before and after the swap occurs
#include <iostream>
using namespace std;
void input(double &val1, double &val2);
//Purpose: Asks the user for two values and "return" them to function main
//In: Two values from user that are type double
//Modify: None
//Output: Return values to function to be used by function swapVal and output
void swapVal(double &val1, double &val2);
//Purpose: To swap the values passed to it from function main
//In: Two values of type double passed by reference from function main
//Modify: Both values passed to it are interchanged with one another
//Output: Values are returned back to function main
void output(double val1, double val2);
//Purpose: To print out the values passed into it
//In: Two double values passed in from function main
//Modify: None
//Output: Prints out the values to the user
int main()
{
double val1, val2;
input(val1, val2);
cout << "Before the swap, \n";
output(val1, val2);
swapVal(val1, val2);
cout << "After the swap, \n";
output(val1, val2);
}
void input(double &val1, double &val2)
{
double num1, num2;
cout << "Please input the first double value: ";
cin >> num1;
val1 = num1;
cout << "Please input the second double value: ";
cin >> num2;
val2 = num2;
}
void swapVal(double &val1, double &val2)
{
double extra = val1;
val1 = val2;
val2 = extra;
}
void output(double val1, double val2)
{
cout << "The values are " << val1 << " , " << val2 << ".\n";
}
|
047f8180fbcab16dd54ed619639b693a8527c528 | 612920956a0a566a47928eb5c35b209cfef7b93f | /Wolf3D/SRC_Tests/sky.cpp | 8248235366b9cb4b72a71299cf978c74d1e2ed46 | [] | no_license | LenyKholodov/wolf3d | d09040103be75a5008a329703fee8a8ccb683111 | 17a51b6fbc5b75ba5f8bbb63e2fbf1247e90c492 | refs/heads/master | 2022-05-11T17:32:54.395796 | 2022-04-27T05:08:13 | 2022-04-27T05:08:13 | 163,575,694 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,145 | cpp | sky.cpp | #include <types.h>
#include <vga.h>
#include <picture.h>
#include <iostream.h>
#include <tables.h>
#include <keyboard.h>
Keyboard kb;
uchar* frame;
vga13hScreen vga;
cPicture picture;
tImage* image;
int bmpWidth;
ulong wMask;
Angle angle = 0;
const Angle ROTATE_STEP = ANGLE_1;
void DrawSky(Angle ang)
{
int shift = angle>>7;
uchar* data = image->data;
uchar* video = frame;
for (int row = 0;row<100;row++,data+=bmpWidth)
for (int col = 0;col<320;col++)
*video++ = data[(col-shift) & wMask];
}
void main()
{
if (!picture.load("wall.bmp"))
{
cout<<"Error open image"<<endl;
return;
}
if (!vga.open())
{
cout<<"Error open VGA mode"<<endl;
return;
}
frame = vga.GetPtr();
image = picture.GetImage();
bmpWidth = picture.width();
wMask = bmpWidth-1;
while (!kb.IsPress(KEY_ESC))
{
DrawSky(angle);
if (kb.IsPress(KEY_CLEFT))
angle += ROTATE_STEP;
if (kb.IsPress(KEY_CRIGHT))
angle -= ROTATE_STEP;
}
vga.close();
// delete image;
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.