blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 201 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 7 100 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 260
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 11.4k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 17
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 80
values | src_encoding stringclasses 28
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 8 9.86M | extension stringclasses 52
values | content stringlengths 8 9.86M | authors listlengths 1 1 | author stringlengths 0 119 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
a9ee2bbfd368f3d28cbcb3960751c5af6bdf37cb | c75b29a8e85a55f524a9dd3c0f1c9584639a9199 | /summer/test.cpp | e356977dc9bd3b873f23420d90f8406f7bb5333c | [
"Apache-2.0"
] | permissive | mickelfeng/qt_learning | b11731314d09223462ed5502407aeabe579f79df | 1f565754c36f0c09888cf4fbffa6271298d0678b | refs/heads/master | 2021-01-01T18:06:27.344429 | 2015-02-17T06:30:53 | 2015-02-17T06:30:53 | 30,857,535 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,414 | cpp | #include <QtGui>
class MyDialog : public QWidget
{
Q_OBJECT
public:
MyDialog(QWidget *parent = 0);
public slots:
void makeDrag();
protected:
void dropEvent(QDropEvent *de);
void dragMoveEvent(QDragMoveEvent *de);
void dragEnterEvent(QDragEnterEvent *event);
};
class MyGroupBox : public QGroupBox
{
public:
MyGroupBox(QWidget *parent = 0) : QGroupBox("GroupBox", parent) {};
protected:
void dropEvent(QDropEvent *de);
void dragMoveEvent(QDragMoveEvent *de);
void dragEnterEvent(QDragEnterEvent *event);
};
MyDialog::MyDialog(QWidget *parent) : QWidget(parent)
{
QHBoxLayout *layout = new QHBoxLayout(this);
QPushButton *pushButton = new QPushButton("Click Me", this);
layout->addWidget(pushButton);
connect(pushButton, SIGNAL(pressed()), this, SLOT(makeDrag()));
MyGroupBox *box = new MyGroupBox(this);
layout->addWidget(box);
// Allow media to be dropped on the widget
setAcceptDrops(true);
box->setAcceptDrops(true);
}
void MyDialog::makeDrag()
{
QDrag *dr = new QDrag(this);
// The data to be transferred by the drag and drop operation is contained in a QMimeData object
QMimeData *data = new QMimeData;
data->setText("This is a test");
// Assign ownership of the QMimeData object to the QDrag object.
dr->setMimeData(data);
// Start the drag and drop operation
dr->start();
}
void MyDialog::dragMoveEvent(QDragMoveEvent *de)
{
// The event needs to be accepted here
de->accept();
}
void MyDialog::dragEnterEvent(QDragEnterEvent *event)
{
// Set the drop action to be the proposed action.
event->acceptProposedAction();
}
void MyDialog::dropEvent(QDropEvent *de)
{
// Unpack dropped data and handle it the way you want
qDebug("Contents: %s", de->mimeData()->text().toLatin1().data());
}
void MyGroupBox::dropEvent(QDropEvent *de)
{
// Unpack dropped data and handle it the way you want
qDebug("Contents: %s", de->mimeData()->text().toLatin1().data());
}
void MyGroupBox::dragMoveEvent(QDragMoveEvent *de)
{
// The event needs to be accepted here
de->accept();
}
void MyGroupBox::dragEnterEvent(QDragEnterEvent *event)
{
// Set the drop action to be the proposed action.
event->acceptProposedAction();
}
#include "main.moc"
int main(int argc, char **argv)
{
QApplication a(argc, argv);
MyDialog d;
d.show();
return a.exec();
}
| [
"xiang.lf@163.com"
] | xiang.lf@163.com |
aa65afb9d9e046084e96ebaf041cd9e9036fbdbf | a56623e91195d8555ae4c60ccd6875596d4d59d9 | /src/qt/bitcoinstrings.cpp | fa5b4a3006d255b65e0162a037bfc36df7058dfb | [
"MIT"
] | permissive | tuaris/xaucoin | ad4b8fe56c8e972ded9c56b30806d9452fad1358 | 0459b2101330fe2dc5eedac0a309222a0881796f | refs/heads/master | 2021-01-10T19:58:04.402655 | 2015-04-17T05:57:16 | 2015-04-17T05:57:16 | 34,099,003 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,602 | cpp | #include <QtGlobal>
// Automatically generated by extract_strings.py
#ifdef __GNUC__
#define UNUSED __attribute__((unused))
#else
#define UNUSED
#endif
static const char UNUSED *bitcoin_strings[] = {
QT_TRANSLATE_NOOP("bitcoin-core", ""
"%s, you must set a rpcpassword in the configuration file:\n"
"%s\n"
"It is recommended you use the following random password:\n"
"rpcuser=xaucoinrpc\n"
"rpcpassword=%s\n"
"(you do not need to remember this password)\n"
"The username and password MUST NOT be the same.\n"
"If the file does not exist, create it with owner-readable-only file "
"permissions.\n"
"It is also recommended to set alertnotify so you are notified of problems;\n"
"for example: alertnotify=echo %%s | mail -s \"xaucoin Alert\" admin@foo.com\n"),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:"
"@STRENGTH)"),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"An error occurred while setting up the RPC port %u for listening on IPv4: %s"),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"An error occurred while setting up the RPC port %u for listening on IPv6, "
"falling back to IPv4: %s"),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Bind to given address and always listen on it. Use [host]:port notation for "
"IPv6"),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Cannot obtain a lock on data directory %s. xaucoin is probably already "
"running."),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Error: The transaction was rejected! This might happen if some of the coins "
"in your wallet were already spent, such as if you used a copy of wallet.dat "
"and coins were spent in the copy but not marked as spent here."),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Error: This transaction requires a transaction fee of at least %s because of "
"its amount, complexity, or use of recently received funds!"),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Execute command when a relevant alert is received (%s in cmd is replaced by "
"message)"),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Execute command when a wallet transaction changes (%s in cmd is replaced by "
"TxID)"),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Execute command when the best block changes (%s in cmd is replaced by block "
"hash)"),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Listen for JSON-RPC connections on <port> (default: 21063 or testnet: 5745)"),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Number of seconds to keep misbehaving peers from reconnecting (default: "
"86400)"),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Set maximum size of high-priority/low-fee transactions in bytes (default: "
"27000)"),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Set the number of script verification threads (up to 16, 0 = auto, <0 = "
"leave that many cores free, default: 0)"),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"This is a pre-release test build - use at your own risk - do not use for "
"mining or merchant applications"),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Unable to bind to %s on this computer. xaucoin is probably already running."),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Warning: -paytxfee is set very high! This is the transaction fee you will "
"pay if you send a transaction."),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Warning: Displayed transactions may not be correct! You may need to upgrade, "
"or other nodes may need to upgrade."),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Warning: Please check that your computer's date and time are correct! If "
"your clock is wrong xaucoin will not work properly."),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Warning: error reading wallet.dat! All keys read correctly, but transaction "
"data or address book entries might be missing or incorrect."),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as "
"wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect "
"you should restore from a backup."),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"You must set rpcpassword=<password> in the configuration file:\n"
"%s\n"
"If the file does not exist, create it with owner-readable-only file "
"permissions."),
QT_TRANSLATE_NOOP("bitcoin-core", "Accept command line and JSON-RPC commands"),
QT_TRANSLATE_NOOP("bitcoin-core", "Accept connections from outside (default: 1 if no -proxy or -connect)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Add a node to connect to and attempt to keep the connection open"),
QT_TRANSLATE_NOOP("bitcoin-core", "Allow DNS lookups for -addnode, -seednode and -connect"),
QT_TRANSLATE_NOOP("bitcoin-core", "Allow JSON-RPC connections from specified IP address"),
QT_TRANSLATE_NOOP("bitcoin-core", "Attempt to recover private keys from a corrupt wallet.dat"),
QT_TRANSLATE_NOOP("bitcoin-core", "xaucoin version"),
QT_TRANSLATE_NOOP("bitcoin-core", "Block creation options:"),
QT_TRANSLATE_NOOP("bitcoin-core", "Cannot downgrade wallet"),
QT_TRANSLATE_NOOP("bitcoin-core", "Cannot resolve -bind address: '%s'"),
QT_TRANSLATE_NOOP("bitcoin-core", "Cannot resolve -externalip address: '%s'"),
QT_TRANSLATE_NOOP("bitcoin-core", "Cannot write default address"),
QT_TRANSLATE_NOOP("bitcoin-core", "Connect only to the specified node(s)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Connect through socks proxy"),
QT_TRANSLATE_NOOP("bitcoin-core", "Connect to a node to retrieve peer addresses, and disconnect"),
QT_TRANSLATE_NOOP("bitcoin-core", "Corrupted block database detected"),
QT_TRANSLATE_NOOP("bitcoin-core", "Discover own IP address (default: 1 when listening and no -externalip)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Do you want to rebuild the block database now?"),
QT_TRANSLATE_NOOP("bitcoin-core", "Done loading"),
QT_TRANSLATE_NOOP("bitcoin-core", "Error initializing block database"),
QT_TRANSLATE_NOOP("bitcoin-core", "Error initializing wallet database environment %s!"),
QT_TRANSLATE_NOOP("bitcoin-core", "Error loading block database"),
QT_TRANSLATE_NOOP("bitcoin-core", "Error loading wallet.dat"),
QT_TRANSLATE_NOOP("bitcoin-core", "Error loading wallet.dat: Wallet corrupted"),
QT_TRANSLATE_NOOP("bitcoin-core", "Error loading wallet.dat: Wallet requires newer version of xaucoin"),
QT_TRANSLATE_NOOP("bitcoin-core", "Error opening block database"),
QT_TRANSLATE_NOOP("bitcoin-core", "Error"),
QT_TRANSLATE_NOOP("bitcoin-core", "Error: Disk space is low!"),
QT_TRANSLATE_NOOP("bitcoin-core", "Error: Wallet locked, unable to create transaction!"),
QT_TRANSLATE_NOOP("bitcoin-core", "Error: system error: "),
QT_TRANSLATE_NOOP("bitcoin-core", "Failed to listen on any port. Use -listen=0 if you want this."),
QT_TRANSLATE_NOOP("bitcoin-core", "Failed to read block info"),
QT_TRANSLATE_NOOP("bitcoin-core", "Failed to read block"),
QT_TRANSLATE_NOOP("bitcoin-core", "Failed to sync block index"),
QT_TRANSLATE_NOOP("bitcoin-core", "Failed to write block index"),
QT_TRANSLATE_NOOP("bitcoin-core", "Failed to write block info"),
QT_TRANSLATE_NOOP("bitcoin-core", "Failed to write block"),
QT_TRANSLATE_NOOP("bitcoin-core", "Failed to write file info"),
QT_TRANSLATE_NOOP("bitcoin-core", "Failed to write to coin database"),
QT_TRANSLATE_NOOP("bitcoin-core", "Failed to write transaction index"),
QT_TRANSLATE_NOOP("bitcoin-core", "Failed to write undo data"),
QT_TRANSLATE_NOOP("bitcoin-core", "Fee per KB to add to transactions you send"),
QT_TRANSLATE_NOOP("bitcoin-core", "Find peers using DNS lookup (default: 1 unless -connect)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Generate coins (default: 0)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Get help for a command"),
QT_TRANSLATE_NOOP("bitcoin-core", "How many blocks to check at startup (default: 288, 0 = all)"),
QT_TRANSLATE_NOOP("bitcoin-core", "How thorough the block verification is (0-4, default: 3)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Imports blocks from external blk000??.dat file"),
QT_TRANSLATE_NOOP("bitcoin-core", "Information"),
QT_TRANSLATE_NOOP("bitcoin-core", "Insufficient funds"),
QT_TRANSLATE_NOOP("bitcoin-core", "Invalid -proxy address: '%s'"),
QT_TRANSLATE_NOOP("bitcoin-core", "Invalid -tor address: '%s'"),
QT_TRANSLATE_NOOP("bitcoin-core", "Invalid amount for -minrelaytxfee=<amount>: '%s'"),
QT_TRANSLATE_NOOP("bitcoin-core", "Invalid amount for -mintxfee=<amount>: '%s'"),
QT_TRANSLATE_NOOP("bitcoin-core", "Invalid amount for -paytxfee=<amount>: '%s'"),
QT_TRANSLATE_NOOP("bitcoin-core", "Invalid amount"),
QT_TRANSLATE_NOOP("bitcoin-core", "List commands"),
QT_TRANSLATE_NOOP("bitcoin-core", "Listen for connections on <port> (default: 11063 or testnet: 5744)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Loading addresses..."),
QT_TRANSLATE_NOOP("bitcoin-core", "Loading block index..."),
QT_TRANSLATE_NOOP("bitcoin-core", "Loading wallet..."),
QT_TRANSLATE_NOOP("bitcoin-core", "Maintain a full transaction index (default: 0)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Maintain at most <n> connections to peers (default: 125)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Maximum per-connection send buffer, <n>*1000 bytes (default: 1000)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Not enough file descriptors available."),
QT_TRANSLATE_NOOP("bitcoin-core", "Only accept block chain matching built-in checkpoints (default: 1)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Only connect to nodes in network <net> (IPv4, IPv6 or Tor)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Options:"),
QT_TRANSLATE_NOOP("bitcoin-core", "Output extra debugging information. Implies all other -debug* options"),
QT_TRANSLATE_NOOP("bitcoin-core", "Output extra network debugging information"),
QT_TRANSLATE_NOOP("bitcoin-core", "Password for JSON-RPC connections"),
QT_TRANSLATE_NOOP("bitcoin-core", "Prepend debug output with timestamp"),
QT_TRANSLATE_NOOP("bitcoin-core", "Rebuild block chain index from current blk000??.dat files"),
QT_TRANSLATE_NOOP("bitcoin-core", "Rescan the block chain for missing wallet transactions"),
QT_TRANSLATE_NOOP("bitcoin-core", "Rescanning..."),
QT_TRANSLATE_NOOP("bitcoin-core", "Run in the background as a daemon and accept commands"),
QT_TRANSLATE_NOOP("bitcoin-core", "SSL options: (see the xaucoin Wiki for SSL setup instructions)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Select the version of socks proxy to use (4-5, default: 5)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Send command to -server or xaucoind"),
QT_TRANSLATE_NOOP("bitcoin-core", "Send commands to node running on <ip> (default: 127.0.0.1)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Send trace/debug info to console instead of debug.log file"),
QT_TRANSLATE_NOOP("bitcoin-core", "Send trace/debug info to debugger"),
QT_TRANSLATE_NOOP("bitcoin-core", "Server certificate file (default: server.cert)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Server private key (default: server.pem)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Set database cache size in megabytes (default: 25)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Set key pool size to <n> (default: 100)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Set maximum block size in bytes (default: 250000)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Set minimum block size in bytes (default: 0)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Set the number of threads to service RPC calls (default: 4)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Shrink debug.log file on client startup (default: 1 when no -debug)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Signing transaction failed"),
QT_TRANSLATE_NOOP("bitcoin-core", "Specify configuration file (default: xaucoin.conf)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Specify connection timeout in milliseconds (default: 5000)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Specify data directory"),
QT_TRANSLATE_NOOP("bitcoin-core", "Specify pid file (default: xaucoind.pid)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Specify your own public address"),
QT_TRANSLATE_NOOP("bitcoin-core", "System error: "),
QT_TRANSLATE_NOOP("bitcoin-core", "This help message"),
QT_TRANSLATE_NOOP("bitcoin-core", "Threshold for disconnecting misbehaving peers (default: 100)"),
QT_TRANSLATE_NOOP("bitcoin-core", "To use the %s option"),
QT_TRANSLATE_NOOP("bitcoin-core", "Transaction amount too small"),
QT_TRANSLATE_NOOP("bitcoin-core", "Transaction amounts must be positive"),
QT_TRANSLATE_NOOP("bitcoin-core", "Transaction too large"),
QT_TRANSLATE_NOOP("bitcoin-core", "Unable to bind to %s on this computer (bind returned error %d, %s)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Unknown -socks proxy version requested: %i"),
QT_TRANSLATE_NOOP("bitcoin-core", "Unknown network specified in -onlynet: '%s'"),
QT_TRANSLATE_NOOP("bitcoin-core", "Upgrade wallet to latest format"),
QT_TRANSLATE_NOOP("bitcoin-core", "Usage:"),
QT_TRANSLATE_NOOP("bitcoin-core", "Use OpenSSL (https) for JSON-RPC connections"),
QT_TRANSLATE_NOOP("bitcoin-core", "Use UPnP to map the listening port (default: 0)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Use UPnP to map the listening port (default: 1 when listening)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Use proxy to reach tor hidden services (default: same as -proxy)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Use the test network"),
QT_TRANSLATE_NOOP("bitcoin-core", "Username for JSON-RPC connections"),
QT_TRANSLATE_NOOP("bitcoin-core", "Verifying blocks..."),
QT_TRANSLATE_NOOP("bitcoin-core", "Verifying wallet..."),
QT_TRANSLATE_NOOP("bitcoin-core", "Wallet needed to be rewritten: restart xaucoin to complete"),
QT_TRANSLATE_NOOP("bitcoin-core", "Warning"),
QT_TRANSLATE_NOOP("bitcoin-core", "Warning: This version is obsolete, upgrade required!"),
QT_TRANSLATE_NOOP("bitcoin-core", "You need to rebuild the databases using -reindex to change -txindex"),
QT_TRANSLATE_NOOP("bitcoin-core", "wallet.dat corrupt, salvage failed"),
}; | [
"daniel@morante.net"
] | daniel@morante.net |
85d83aae6554c5678c18254264eb233dea547d69 | fb7efe44f4d9f30d623f880d0eb620f3a81f0fbd | /components/wallpaper/wallpaper_color_calculator_observer.h | 45a701df6ea2bee2dfd8f6b0fdb8f037b752f677 | [
"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 | 754 | 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 COMPONENTS_WALLPAPER_WALLPAPER_COLOR_CALCULATOR_OBSERVER_H_
#define COMPONENTS_WALLPAPER_WALLPAPER_COLOR_CALCULATOR_OBSERVER_H_
#include "components/wallpaper/wallpaper_export.h"
namespace wallpaper {
// Observer for the WallpaperColorCalculator.
class WALLPAPER_EXPORT WallpaperColorCalculatorObserver {
public:
// Notified when a color calculation completes.
virtual void OnColorCalculationComplete() = 0;
protected:
virtual ~WallpaperColorCalculatorObserver() {}
};
} // namespace wallpaper
#endif // COMPONENTS_WALLPAPER_WALLPAPER_COLOR_CALCULATOR_OBSERVER_H_
| [
"jacob-chen@iotwrt.com"
] | jacob-chen@iotwrt.com |
ea81de324b3d3edff94cccbfc474d26f06ab8454 | adde0e71a48162653fec33b2a2f52abd427539d4 | /x10-2.4.3-src/x10.runtime/src-cpp/gen/x10/compiler/Synthetic.cc | 5e3431434809a64efc24999d4e74e2531bdfdcb2 | [] | no_license | indukprabhu/deepChunking | f8030f128df5b968413b7a776c56ef7695f70667 | 2784c6884d19493ea6372343145e557810b8e45b | refs/heads/master | 2022-06-07T19:22:19.105255 | 2020-04-29T18:49:33 | 2020-04-29T18:49:33 | 259,726,892 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 723 | cc | /*************************************************/
/* START of Synthetic */
#include <x10/compiler/Synthetic.h>
::x10aux::RuntimeType x10::compiler::Synthetic::rtt;
void x10::compiler::Synthetic::_initRTT() {
if (rtt.initStageOne(&rtt)) return;
const ::x10aux::RuntimeType* parents[4] = { ::x10aux::getRTT< ::x10::lang::Any>(), ::x10aux::getRTT< ::x10::lang::annotations::ClassAnnotation>(), ::x10aux::getRTT< ::x10::lang::annotations::FieldAnnotation>(), ::x10aux::getRTT< ::x10::lang::annotations::MethodAnnotation>()};
rtt.initStageTwo("x10.compiler.Synthetic",::x10aux::RuntimeType::interface_kind, 4, parents, 0, NULL, NULL);
}
/* END of Synthetic */
/*************************************************/
| [
"NVIDIA.COM+User(622487)@IK-LT.nvidia.com"
] | NVIDIA.COM+User(622487)@IK-LT.nvidia.com |
db47fc931b3b4def4099a37b781045fda491414a | 5c0bf818e2b4a9c9d19e5a8d043e0795a0f9bc88 | /src/libebui/DlgEditAccSetting.h | 1cf90ce8967624092bf74bbaedee1a3ad5b7cc90 | [] | no_license | entboost/ebc | 4e55f45053b8816f7318dd552f94d9f9f893d402 | b05c4ddbbb3221ebb1126b8a75c7eabc6be9f1f8 | refs/heads/master | 2021-01-19T20:29:18.207141 | 2020-09-22T07:36:43 | 2020-09-22T07:36:43 | 67,870,859 | 31 | 9 | null | null | null | null | UTF-8 | C++ | false | false | 887 | h | #pragma once
// CDlgEditAccSetting dialog
class CDlgEditAccSetting : public CEbDialogBase
{
DECLARE_DYNAMIC(CDlgEditAccSetting)
public:
CDlgEditAccSetting(CWnd* pParent = NULL); // standard constructor
virtual ~CDlgEditAccSetting();
void Load(void);
void Save(void);
void SetCtrlColor(void);
// Dialog Data
enum { IDD = IDD_DLG_EDIT_ACCSETTING };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
CLabelEx m_bEnableOutEntCall;
CLabelEx m_bEnableOutEntAccept;
CLabelEx m_bEnableUserCall;
CLabelEx m_bEnableUserAccept;
CLabelEx m_bEnableVisitorCall;
CLabelEx m_bEnableVisitorAccept;
CLabelEx m_bEnableOffCall;
CLabelEx m_bEnableOffFile;
CLabelEx m_bEnableContactAccept;
DECLARE_MESSAGE_MAP()
virtual BOOL OnInitDialog();
virtual void OnCancel();
virtual void OnOK();
afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
};
| [
"akee_yang@kingdee.com"
] | akee_yang@kingdee.com |
02d07eec62b2181eda344dc47a5022d51194bf78 | 4c7510f67f9479ba15046b103b84bb0191618171 | /patterns/singleton/before/symbolTable.cpp | d91faf0af510e36d0eddc44b2a9a6d60eea3ce99 | [] | no_license | khayamgondal/827 | de614838ebef3729173a0f117e089a2e30d24f8a | 1a0267114303a565c4e46e1b0a8fde6619bd95ef | refs/heads/master | 2021-08-28T16:14:46.364445 | 2017-12-12T17:54:54 | 2017-12-12T17:54:54 | 103,769,464 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 242 | cpp | #include "symbolTable.h"
int SymbolTable::getValue(const std::string& name) const {
std::map<std::string, int>::const_iterator it = table.find(name);
if ( it == table.end() ) throw name+std::string(" not found");
return it->second;
}
| [
"malloy@clemson.edu"
] | malloy@clemson.edu |
4a0203b133c7c60fc5fb4fa4fd055c0ce8491043 | 20c72b2176943cc30cdf2ea3428e8e87d2c239a8 | /Testbed/Tests/EdgeTest.h | 03e202f46f8e64e79b322fb4135b4bbe2cd590b7 | [] | no_license | Grossley/jsbox2d | cca0c82e89b36e8aa97699e2eab2aa170c487d8e | e9e2efa95311cacadd2830003c3f61f8cde73701 | refs/heads/master | 2021-12-12T10:57:58.924668 | 2014-04-12T07:22:12 | 2014-04-12T07:22:12 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,897 | h | /*
* Copyright (c) 2006-2010 Erin Catto http://www.box2d.org
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
* arising from the use of this software.
* Permission is granted to anyone to use this software for any purpose,
* including commercial applications, and to alter it and redistribute it
* freely, subject to the following restrictions:
* 1. The origin of this software must not be misrepresented; you must not
* claim that you wrote the original software. If you use this software
* in a product, an acknowledgment in the product documentation would be
* appreciated but is not required.
* 2. Altered source versions must be plainly marked as such, and must not be
* misrepresented as being the original software.
* 3. This notice may not be removed or altered from any source distribution.
*/
#ifndef EDGE_TEST_H
#define EDGE_TEST_H
class EdgeTest : public Test
{
public:
EdgeTest()
{
{
b2BodyDef bd;
b2Body* ground = this->m_world->CreateBody(&bd);
b2Vec2 v1(-10.0, 0.0), v2(-7.0, -2.0), v3(-4.0, 0.0);
b2Vec2 v4(0.0, 0.0), v5(4.0, 0.0), v6(7.0, 2.0), v7(10.0, 0.0);
b2EdgeShape shape;
shape.Set(v1, v2);
shape.m_hasVertex3 = true;
shape.m_vertex3.Assign(v3);
ground->CreateFixture(&shape, 0.0);
shape.Set(v2, v3);
shape.m_hasVertex0 = true;
shape.m_hasVertex3 = true;
shape.m_vertex0.Assign(v1);
shape.m_vertex3.Assign(v4);
ground->CreateFixture(&shape, 0.0);
shape.Set(v3, v4);
shape.m_hasVertex0 = true;
shape.m_hasVertex3 = true;
shape.m_vertex0.Assign(v2);
shape.m_vertex3.Assign(v5);
ground->CreateFixture(&shape, 0.0);
shape.Set(v4, v5);
shape.m_hasVertex0 = true;
shape.m_hasVertex3 = true;
shape.m_vertex0.Assign(v3);
shape.m_vertex3.Assign(v6);
ground->CreateFixture(&shape, 0.0);
shape.Set(v5, v6);
shape.m_hasVertex0 = true;
shape.m_hasVertex3 = true;
shape.m_vertex0.Assign(v4);
shape.m_vertex3.Assign(v7);
ground->CreateFixture(&shape, 0.0);
shape.Set(v6, v7);
shape.m_hasVertex0 = true;
shape.m_vertex0.Assign(v5);
ground->CreateFixture(&shape, 0.0);
}
{
b2BodyDef bd;
bd.type = b2Body::b2_dynamicBody;
bd.position.Set(-0.5, 0.6);
bd.allowSleep = false;
b2Body* body = this->m_world->CreateBody(&bd);
b2CircleShape shape;
shape.m_radius = 0.5;
body->CreateFixture(&shape, 1.0);
}
{
b2BodyDef bd;
bd.type = b2Body::b2_dynamicBody;
bd.position.Set(1.0, 0.6);
bd.allowSleep = false;
b2Body* body = this->m_world->CreateBody(&bd);
b2PolygonShape shape;
shape.SetAsBox(0.5, 0.5);
body->CreateFixture(&shape, 1.0);
}
}
static Test* Create()
{
return new EdgeTest;
}
};
#endif
| [
"Jonno.5000@gmail.com"
] | Jonno.5000@gmail.com |
31d26af03cd2b192dc54024694494926227649eb | 507f3970637d523d2aa99eb16fff627a628fd8b8 | /ass03/hw03_tree02/RunningMedian.h | f6319d25ece5862c90f65080d77000a65aa77d3d | [] | no_license | suryak/Advanced-Data-Structures | e6ddec480868c50a45a70234dd5188e0300e3e64 | f5b1cd8e1fbb688b15038738b5151e54719bc039 | refs/heads/master | 2021-01-02T08:56:32.530782 | 2014-03-17T17:42:20 | 2014-03-17T17:42:20 | 17,835,253 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 921 | h | #pragma once
#include "Interfaces03.h"
class RunningMedian : public IRunningMedian
{
public:
RunningMedian() { }
~RunningMedian() { }
std::vector<int> compute(std::vector<int> vec, int window_size);
void max_fix_up(int* max_heap, int& max_index, std::vector<int>& vec, std::vector<int>& heap_index, int &element);
void min_fix_up(int* min_heap, int& min_index, std::vector<int>& vec, std::vector<int>& heap_index, int &element);
void max_fix_down(int* max_heap, int index, std::vector<int>& vec, std::vector<int>& heap_index , int max_index);
void min_fix_down(int* min_heap, int index, std::vector<int>& vec, std::vector<int>& heap_index , int min_index);
void calculate_median(int& max_index, int& min_index, std::vector<int>& final, std::vector<int>& vec,int *min_heap, int* max_heap, std::vector<int>& heap_flag, std::vector<int>& heap_index);
};
| [
"surya@krizda.com"
] | surya@krizda.com |
f060aa849024c2bc7fc7dd7c3f93e70ff92aae82 | 24c3b6ee3e2b06288bed587e34751969b4a73e31 | /Codeforces/Educational Codeforces/Round 96/C.cpp | 0403d03b939db1917af9f59b264f9e81ba24dbb5 | [] | no_license | KatsuyaKikuchi/ProgrammingContest | 89afbda50d1cf59fc58d8a9e25e6660334f18a2a | d9254202eec56f96d8c5b508556464a3f87a0a4f | refs/heads/master | 2023-06-05T20:07:36.334182 | 2021-06-13T13:55:06 | 2021-06-13T13:55:06 | 318,641,671 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 701 | cpp | #include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef pair<ll, ll> pll;
#define FOR(i, n, m) for(ll (i)=(m);(i)<(n);++(i))
#define REP(i, n) FOR(i,n,0)
#define OF64 std::setprecision(10)
const ll MOD = 1000000007;
const ll INF = (ll) 1e15;
void solve() {
ll N;
cin >> N;
ll t = N;
vector<pll> p;
for (ll i = N - 1; i >= 1; --i) {
p.push_back(pll(t, i));
t = (t + i + 1) / 2;
}
cout << t << endl;
REP(i, p.size()) {
cout << p[i].first << " " << p[i].second << endl;
}
}
int main() {
cin.tie(0);
ios::sync_with_stdio(false);
ll Q;
cin >> Q;
REP(_, Q) {
solve();
}
return 0;
} | [
"k.kikuchi.ah@gmail.com"
] | k.kikuchi.ah@gmail.com |
7b44361217639f273db7f852518ea2f09f33be27 | 54c51ae37d6704e8b9ee1518891c6504e8785997 | /src/escapers/json.h | 957990735481573a164507246a6dfe7867d59a37 | [] | no_license | RakhithJK/SMART-TPL | d16391fbc1d1cf2c3701a895d3eece45ae45df5f | 86463784794355cd55be162d7141b8c4176de2ce | refs/heads/master | 2022-04-12T02:15:45.613932 | 2020-04-01T10:28:57 | 2020-04-01T10:28:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,736 | h | /**
* Json.h
*
* A JSON en/decoder
*
* @author Michael van der Werve <michael.vanderwerve@mailerq.com>
* @copyright 2020 Copernica BV
*/
/**
* Namespace
*/
namespace SmartTpl { namespace Internal {
/**
* Class definition
*/
class JsonEscaper : public Escaper
{
private:
/**
* Hex lookup table
*/
static constexpr const char *hex = "0123456789abcdefABCDEF";
/**
* Helper method to convert a hex digit to decimal
* @param digit
* @return uint8_t
*/
inline uint8_t decimal(uint8_t digit) const
{
// convert hex digit to decimal (doesnt check for hex number validity)
return (digit <= 9) ? digit - '0' : ((digit & 7) + 9);
}
/**
* Helper method to convert two hex digits to a byte
* @param digit1
*/
uint8_t byte(uint8_t left, uint8_t right) const
{
// reverse the byte sequence
return decimal(left) << 4 & decimal(right);
}
public:
/**
* Constructor, in case the openssl library failed to load we simply are
* giving our base constructor a nullptr so it doesn't register us
*/
JsonEscaper() : Escaper("json") {};
/**
* Destructor
*/
virtual ~JsonEscaper() {}
/**
* Encode the given input
* It is probably a good idea to directly modify the input instead of making
* a copy and modifying that.
* @param input
*/
virtual std::string &encode(std::string &input) const override
{
// we need to make a copy, because there's no 1-1 transformation on characters
std::string output;
// reserve at least enough bytes
output.reserve(input.size());
// iterate over the characters
for (const uint8_t &c : input)
{
// in the first 32 bits we always have to escape
if (c < 32 || c == '"' || c == '\\')
{
switch(c) {
case '\b': output.append("\\b"); break;
case '\n': output.append("\\n"); break;
case '\r': output.append("\\r"); break;
case '\t': output.append("\\t"); break;
case '\f': output.append("\\f"); break;
case '"': output.append("\\\""); break;
case '\\': output.append("\\\\"); break;
default:
// write a byte in hex
output.append("\\x");
output.push_back(hex[c >> 4]);
output.push_back(hex[c & 0xf]);
}
}
// append character normally
else output.push_back(c);
}
// swap the output and the input
std::swap(output, input);
// return the input
return input;
}
/**
* Decode the given input
* It is probably a good idea to directly modify the input instead of making
* a copy and modifying that.
* @param input
*/
virtual std::string &decode(std::string &input) const override
{
// we need to make a copy, because there's no 1-1 transformation on characters
std::string output;
// reserve at least enough bytes
output.reserve(input.size());
// store the 'current' pointer
const char *current = input.data();
// the next character that is escaped
const char *next = nullptr;
// we always remove a backslash and move one forward, unless it is followed by an x
while ((next = strchr(current, '\\')))
{
// wirte everything since last
output.append(current, next - current);
// we now have a new current, because we'll consume two extra bytes, the found \ and a character (skip those)
current = next + 2;
// parse the next character at this point, it is special
switch (next[1]) {
case 'b': output.push_back('\b'); break;
case 'n': output.push_back('\n'); break;
case 'r': output.push_back('\r'); break;
case 't': output.push_back('\t'); break;
case 'f': output.push_back('\f'); break;
case '"': output.push_back('"'); break;
case '\\': output.push_back('\\'); break;
// solidus should also be escapable, but does not need to be escaped
case '/': output.push_back('/'); break;
case 'x':
// we consume two extra bytes, so check if they are actually valid. since this is a json string, we can easily
// check with simply null character checking
if (current[0] && !current[1] && isxdigit(current[0]) && isxdigit(current[1]))
{
// add a single byte, we consume 3
output.push_back(byte(current[0], current[1]));
// we consumed two extra bytes
current += 2;
}
// if we arrived here, there were no more bytes or they're not hex, and so we're in an invalid state.
// we fall through to the error-correction.
case '\0':
default:
// this is not allowed, some unknown character was escaped. return the result so far
std::swap(output, input);
// and we leap out of the function
return input;
}
}
// append the rest of the output
output.append(current);
// swap the output with the input
std::swap(output, input);
// and return the input
return input;
}
};
/**
* End namespace
*/
}}
| [
"mvdwerve@outlook.com"
] | mvdwerve@outlook.com |
eea925aa3f540212073c9294bfd7bcd3e5a1c067 | 1260727ba17ac50741f686df98e7c82ce252778a | /src/database/kernels/transpose/transpose_64.hpp | 9f2055654d25a2f3c71bab5fe354c7ec0825364e | [
"Apache-2.0"
] | permissive | jlwatson/CLBlast | d154b96127422606625f4dd5846ae52c0f4883a6 | 4bd197d42aa4849022fcb434600b37f32eed08c6 | refs/heads/master | 2022-12-08T11:19:09.089272 | 2020-09-09T10:27:46 | 2020-09-09T10:27:46 | 291,141,680 | 0 | 1 | Apache-2.0 | 2020-08-28T20:38:38 | 2020-08-28T20:38:38 | null | UTF-8 | C++ | false | false | 10,671 | hpp |
// =================================================================================================
// This file is part of the CLBlast project. The project is licensed under Apache Version 2.0. It
// is auto-generated by the 'scripts/database/database.py' Python script.
//
// This file populates the database with best-found tuning parameters for the 'Transpose64' kernels.
//
// =================================================================================================
namespace clblast {
namespace database {
const DatabaseEntry TransposeDouble = {
"Transpose", Precision::kDouble, {"TRA_DIM", "TRA_PAD", "TRA_SHUFFLE", "TRA_WPT"}, {
{ // AMD GPUs
kDeviceTypeGPU, "AMD", {
{ "Ellesmere", {
{ Name{"AMD Radeon RX 480 "}, Params{ 4, 0, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ kDeviceNameDefault , Params{ 4, 0, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
} },
{ "Fiji", {
{ Name{"AMD Radeon R9 Fury X "}, Params{ 8, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ Name{"AMD Radeon R9 M370X Compute Engine "}, Params{ 4, 0, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ kDeviceNameDefault , Params{ 8, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
} },
{ "Hawaii", {
{ Name{"AMD Radeon R9 290X "}, Params{ 16, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ kDeviceNameDefault , Params{ 16, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
} },
{ "Oland", {
{ Name{"Oland "}, Params{ 8, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ kDeviceNameDefault , Params{ 8, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
} },
{ "Pitcairn", {
{ Name{"AMD Radeon R9 270X "}, Params{ 4, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ kDeviceNameDefault , Params{ 4, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
} },
{ "Tahiti", {
{ Name{"AMD Radeon HD 7970 "}, Params{ 4, 1, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ kDeviceNameDefault , Params{ 4, 1, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
} },
{ "Tonga", {
{ Name{"AMD Radeon R9 380 "}, Params{ 4, 0, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ kDeviceNameDefault , Params{ 4, 0, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
} },
{ "default", {
{ Name{"AMD Radeon Pro 580 Compute Engine "}, Params{ 16, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ kDeviceNameDefault , Params{ 16, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
} },
}
},
{ // ARM GPUs
kDeviceTypeGPU, "ARM", {
{ "default", {
{ Name{"Mali-T760 "}, Params{ 16, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ kDeviceNameDefault , Params{ 16, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
} },
}
},
{ // Intel CPUs
kDeviceTypeCPU, "Intel", {
{ "default", {
{ Name{"Intel(R) Core(TM) i7-2670QM CPU @ 2.20GHz "}, Params{ 4, 1, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ Name{"Intel(R) Core(TM) i5-4570 CPU @ 3.20GHz "}, Params{ 8, 0, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ Name{"Intel(R) Core(TM) i5-4590S CPU @ 3.00GHz "}, Params{ 4, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ Name{"Intel(R) Core(TM) i5-6200U CPU @ 2.30GHz "}, Params{ 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ Name{"Intel(R) Core(TM) i7 CPU 920 @ 2.67GHz "}, Params{ 4, 1, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ Name{"Intel(R) Core(TM) i7-3770 CPU @ 3.40GHz "}, Params{ 4, 1, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ Name{"Intel(R) Core(TM) i7-4790K CPU @ 4.00GHz "}, Params{ 4, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ Name{"Intel(R) Core(TM) i7-5930K CPU @ 3.50GHz "}, Params{ 4, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ Name{"Intel(R) Core(TM) i7-6770HQ CPU @ 2.60GHz "}, Params{ 4, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ Name{"Intel(R) Xeon(R) CPU E5-2630 v3 @ 2.40GHz "}, Params{ 8, 0, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ Name{"Intel(R) Xeon(R) CPU E5-2630 v4 @ 2.20GHz "}, Params{ 8, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ kDeviceNameDefault , Params{ 4, 1, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
} },
}
},
{ // Intel GPUs
kDeviceTypeGPU, "Intel", {
{ "default", {
{ Name{"Intel(R) HD Graphics 620 "}, Params{ 16, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ kDeviceNameDefault , Params{ 16, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
} },
}
},
{ // Intel accelerators
kDeviceTypeAccelerator, "Intel", {
{ "default", {
{ Name{"Intel(R) Many Integrated Core Acceleration Card "}, Params{ 32, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ kDeviceNameDefault , Params{ 32, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
} },
}
},
{ // NVIDIA GPUs
kDeviceTypeGPU, "NVIDIA", {
{ "SM2.0", {
{ Name{"GeForce GTX 480 "}, Params{ 8, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ Name{"GeForce GTX 580 "}, Params{ 8, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ kDeviceNameDefault , Params{ 8, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
} },
{ "SM3.0", {
{ Name{"GRID K520 "}, Params{ 16, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ Name{"GeForce GTX 670 "}, Params{ 16, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ Name{"GeForce GTX 680 "}, Params{ 16, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ Name{"GeForce GTX 760 Ti OEM "}, Params{ 16, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ kDeviceNameDefault , Params{ 16, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
} },
{ "SM3.5", {
{ Name{"GeForce GTX TITAN "}, Params{ 8, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ Name{"GeForce GTX TITAN Black "}, Params{ 16, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ Name{"Tesla K20m "}, Params{ 16, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ Name{"Tesla K40m "}, Params{ 16, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ kDeviceNameDefault , Params{ 16, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
} },
{ "SM5.0", {
{ Name{"GeForce 920MX "}, Params{ 32, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ Name{"GeForce GTX 750 "}, Params{ 16, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ Name{"GeForce GTX 750 Ti "}, Params{ 32, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ kDeviceNameDefault , Params{ 32, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
} },
{ "SM5.2", {
{ Name{"GeForce GTX 970 "}, Params{ 32, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ Name{"GeForce GTX 980 "}, Params{ 16, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ Name{"GeForce GTX TITAN X "}, Params{ 32, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ kDeviceNameDefault , Params{ 32, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
} },
{ "SM6.0", {
{ Name{"Tesla P100-PCIE-16GB "}, Params{ 8, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ kDeviceNameDefault , Params{ 8, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
} },
{ "SM6.1", {
{ Name{"GeForce GTX 1070 "}, Params{ 8, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ Name{"GeForce GTX 1070 Ti "}, Params{ 8, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ Name{"GeForce GTX 1080 "}, Params{ 8, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ Name{"GeForce GTX 1080 Ti "}, Params{ 8, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ Name{"TITAN X (Pascal) "}, Params{ 16, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ kDeviceNameDefault , Params{ 8, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
} },
{ "default", {
{ kDeviceNameDefault , Params{ 16, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
} },
}
},
{ // Default
kDeviceTypeAll, "default", {
{ "default", {
{ kDeviceNameDefault , Params{ 8, 0, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
} },
}
},
}
};
} // namespace database
} // namespace clblast
| [
"web@cedricnugteren.nl"
] | web@cedricnugteren.nl |
66adfbe2072a897b9b0d2072e0b1ad088b17239c | 87a8768d251266311a54a1d2ee6693f069458b1a | /content/browser/web_package/signed_exchange_reporter.h | 84ea328ae72cd47c1362294afe2233046d0a2e1d | [
"BSD-3-Clause"
] | permissive | tfrnghub/chromium | 6f611bdbe53c7257c2299951860990a4ab634cde | ad8560846a940838cf0a29fd4d5e1b15c60f5fd4 | refs/heads/master | 2022-11-12T18:31:26.542505 | 2019-02-21T09:31:55 | 2019-02-21T09:31:55 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,826 | h | // Copyright 2019 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 CONTENT_BROWSER_WEB_PACKAGE_SIGNED_EXCHANGE_REPORTER_H_
#define CONTENT_BROWSER_WEB_PACKAGE_SIGNED_EXCHANGE_REPORTER_H_
#include <memory>
#include <string>
#include "base/callback.h"
#include "base/macros.h"
#include "content/browser/web_package/signed_exchange_error.h"
#include "content/common/content_export.h"
#include "net/base/ip_address.h"
#include "url/gurl.h"
namespace network {
struct ResourceResponseHead;
} // namespace network
namespace content {
class CONTENT_EXPORT SignedExchangeReporter {
public:
static std::unique_ptr<SignedExchangeReporter> MaybeCreate(
const GURL& outer_url,
const std::string& referrer,
const network::ResourceResponseHead& response,
base::OnceCallback<int(void)> frame_tree_node_id_getter);
~SignedExchangeReporter();
void set_cert_server_ip_address(const net::IPAddress& cert_server_ip_address);
void set_inner_url(const GURL& inner_url);
void set_cert_url(const GURL& cert_url);
void ReportResult(SignedExchangeLoadResult result);
private:
SignedExchangeReporter(
const GURL& outer_url,
const std::string& referrer,
const network::ResourceResponseHead& response,
base::OnceCallback<int(void)> frame_tree_node_id_getter);
const GURL outer_url_;
const std::string referrer_;
const net::IPAddress server_ip_address_;
const int status_code_;
base::OnceCallback<int(void)> frame_tree_node_id_getter_;
net::IPAddress cert_server_ip_address_;
GURL inner_url_;
GURL cert_url_;
DISALLOW_COPY_AND_ASSIGN(SignedExchangeReporter);
};
} // namespace content
#endif // CONTENT_BROWSER_WEB_PACKAGE_SIGNED_EXCHANGE_REPORTER_H_
| [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
5428edf2cde67e707d223ae59f9305cb62546e00 | e4ea5fedd6e84c9bb738b566f438ee542d6e899c | /1008.cpp | 3ba91cafed4213d6f4abe4bc575c526bc8663cf1 | [] | no_license | otaviojacobi/uri | d9dc060db5dcdcf6c3c74f752fa4993e1d482bf7 | e5c4ec939031d157f0944fb33168f4429e5dcc4a | refs/heads/master | 2021-03-27T14:44:08.590415 | 2017-12-11T19:39:04 | 2017-12-11T19:39:04 | 113,716,489 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 327 | cpp | #include <iostream>
#include <iomanip>
using namespace std;
int main() {
long long unsigned int A, B;
double C;
cin >> A;
cin.ignore();
cin >> B;
cin.ignore();
cin >> C;
cout << "NUMBER = " << A << endl << "SALARY = U$ " << fixed << setprecision(2) << double(B)*C << endl;
return 0;
} | [
"I860600@slel00643702b.amer.global.corp.sap"
] | I860600@slel00643702b.amer.global.corp.sap |
706ada8bb51d7d1f6707151a5ec9d4aadea22ef6 | d4fea266bd4c916c4d9d1b69f79f858eb7db1114 | /course_assignments/Challenges - Backtracking/1. Sudoku Solver.cpp | d7c812fcf79424a35827750e102b0d648ce60fa5 | [] | no_license | adityanjr/cb_launchpad | 1dd08804f82dc3ea5ac6bba3ead260bb19fec9b2 | 508e10314ca77a9f47df082ff5cdf63f0a74700c | refs/heads/master | 2022-10-03T03:02:41.764629 | 2020-04-06T18:51:06 | 2020-04-06T18:51:06 | 207,736,108 | 4 | 0 | null | 2020-06-06T06:06:18 | 2019-09-11T06:09:46 | C++ | UTF-8 | C++ | false | false | 1,429 | cpp | #include <iostream>
#include<cmath>
using namespace std;
bool canPlace(int sudoku[][25],int i,int j,int n,int number){
//check for row and column
for(int x=0;x<n;x++){
if(sudoku[x][j]==number||sudoku[i][x]==number)
return false;
}
int sx = (i/3)*3;
int sy = (j/(n/3))*(n/3);
for(int x=sx;x<sx+3;x++){
for(int y=sy;y<sy+(n/3);y++){
if(sudoku[x][y]==number){
return false;
}
}
}
return true;
}
bool solveSudoku(int sudoku[][25],int i,int j,int n){
//base case
if(i==n){
for(int i=0;i<n;i++){
for(int j=0;j<n;j++){
cout<<sudoku[i][j]<<" ";
}
cout<<endl;
}
return true;
}
//recursive case
if(j==n){
return solveSudoku(sudoku,i+1,0,n);
}
if(sudoku[i][j]!=0){
return solveSudoku(sudoku,i,j+1,n);
}
else {
for(int number=1;number<=n;number++){
if(canPlace(sudoku,i,j,n,number)){
sudoku[i][j]=number;
if(solveSudoku(sudoku,i,j+1,n)){
return true;
}
}
}
sudoku[i][j]=0;
return false;
}
}
int main() {
int n;
cin>>n;
int sudoku[25][25]={0};
for(int i=0;i<n;i++){
for(int j=0;j<n;j++){
cin>>sudoku[i][j];
}
}
solveSudoku(sudoku,0,0,n);
return 0;
} | [
"samant04aditya@gmail.com"
] | samant04aditya@gmail.com |
2e3c5ee221248eeb4acd450c090670d0a1f2bab1 | 4ca019d30f376af9cb4e97c4f80792c18772db1e | /PSME/common/ipmi/include/ipmi/command/sdv/get_dimm_info.hpp | e7f9f7fd78ddc2d80b12663ee45a139ad081134c | [
"BSD-3-Clause",
"MIT",
"LicenseRef-scancode-other-permissive",
"Apache-2.0",
"LicenseRef-scancode-public-domain"
] | permissive | shingchuang/intelRSD | 0f56a6bff3b71ba1ec2edbddb781b9eaaac8d1d7 | a2939201dd4487acec88ca47657702378577c5cf | refs/heads/master | 2021-01-23T01:50:55.150654 | 2017-03-23T10:35:15 | 2017-03-23T10:35:15 | 85,937,247 | 0 | 0 | null | 2017-03-23T10:31:41 | 2017-03-23T10:31:41 | null | UTF-8 | C++ | false | false | 7,634 | hpp | /*!
* @copyright
* Copyright (c) 2015-2016 Intel Corporation
*
* @copyright
* 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
*
* @copyright
* http://www.apache.org/licenses/LICENSE-2.0
*
* @copyright
* 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.
*
*
* @file get_dimm_info.hpp
*
* @brief GetDimmInfo IPMI command
* */
#ifndef IPMI_COMMAND_SDV_GET_DIMM_INFO_HPP
#define IPMI_COMMAND_SDV_GET_DIMM_INFO_HPP
#include "ipmi/request.hpp"
#include "ipmi/response.hpp"
#include <cstdint>
#include <vector>
#include <map>
#include <string>
#include <iostream>
using std::uint8_t;
using std::uint32_t;
using std::vector;
using std::map;
using std::string;
namespace ipmi {
namespace command {
namespace sdv {
namespace request {
/*!
* @brief Request message for Get DIMM Info. Need to set DIMM slot number.
*/
class GetDimmInfo: public Request {
public:
/*!
* @brief Default constructor.
*/
GetDimmInfo();
/*! Copy constructor. */
GetDimmInfo(const GetDimmInfo&) = default;
/*! Assignment operator */
GetDimmInfo& operator=(const GetDimmInfo&) = default;
/*!
* @brief Default destructor.
*/
virtual ~GetDimmInfo();
/*!
* @brief Sets memory index (slot number).
* @param index memory slot number/index.
*/
void set_dimm_index(uint8_t index) {
m_dimm_index = index;
}
virtual void pack(vector<uint8_t>& data) const;
private:
uint8_t m_dimm_index{};
};
}
namespace response {
/*!
* @brief Response message for Get DIMM Info command. Gets memory properties like: size, speed, type.
*/
class GetDimmInfo: public Response {
public:
/*!
* @brief Represents codes for DIMM Voltage Type.
*/
enum DIMM_VOLTAGE: uint8_t {
DIMM_VOLTAGE_NORMAL = 0x00,
DIMM_VOLTAGE_ULTRA_LOW = 0x01,
DIMM_VOLTAGE_LOW = 0x02,
DIMM_VOLTAGE_DDR4_NORMAL = 0x03,
DIMM_VOLTAGE_LAST,
DIMM_VOLTAGE_UNKNOWN,
};
/*!
* @brief Represents codes for DIMM Type.
*/
enum DIMM_TYPE: uint8_t {
DIMM_TYPE_SDRAM = 0x00,
DIMM_TYPE_DDR1 = 0x01,
DIMM_TYPE_RAMBUS = 0x02,
DIMM_TYPE_DDR2 = 0x03,
DIMM_TYPE_FBDIMM = 0x04,
DIMM_TYPE_DDR3 = 0x05,
DIMM_TYPE_DDR4 = 0x06,
DIMM_TYPE_NO_DIMM = 0x3F,
DIMM_TYPE_LAST,
DIMM_TYPE_UNKNOWN,
};
/*!
* @brief Represents codes for DIMM Presence.
*/
enum DIMM_PRESENCE: uint8_t {
DIMM_PRESENCE_PRESENT = 0x02,
DIMM_PRESENCE_NOT_PRESENT = 0x03,
DIMM_PRESENCE_LAST,
DIMM_PRESENCE_UNKNOWN
};
/*!
* @brief Default constructor.
*/
GetDimmInfo();
/*! Copy constructor. */
GetDimmInfo(const GetDimmInfo&) = default;
/*! Assignment operator */
GetDimmInfo& operator=(const GetDimmInfo&) = default;
/*!
* @brief Default destructor.
*/
virtual ~GetDimmInfo();
/*!
* @brief Gets DIMM type. Like DDR-4 or Rambus.
* @return string with DIMM type name.
*/
string get_dimm_type() const {
return m_dimm_type;
}
/*!
* @brief Sets dimm type.
* @param dimm_type of dimm.
*/
void set_dimm_type(const string dimm_type){
m_dimm_type = dimm_type;
}
/*!
* @brief Gets DIMM voltage.
* @return float with voltage number and name.
*/
double get_dimm_voltage() const {
return m_dimm_voltage;
}
/*!
* @brief Sets dimm voltage.
* @param dimm_voltage of dimm.
*/
void set_dimm_voltage(const double dimm_voltage){
m_dimm_voltage = dimm_voltage;
}
/*!
* @brief Gets DIMM speed in MHz.
* @return float with memory speed in MHz.
*/
uint32_t get_dimm_speed_mhz() const {
return m_dimm_speed_mhz;
}
/*!
* @brief Sets dimm speed.
* @param dimm_speed_mhz of dimm.
*/
void set_dimm_speed_mhz(const uint32_t dimm_speed_mhz){
m_dimm_speed_mhz = dimm_speed_mhz;
}
/*!
* @brief Gets DIMM size in MB.
* @return uint32_t with memory size in MB.
*/
uint32_t get_dimm_size_mbytes() const {
return m_dimm_size_mbytes;
}
/*!
* @brief Sets dimm size.
* @param dimm_size_mbytes of dimm.
*/
void set_dimm_size_mbytes(const uint32_t dimm_size_mbytes){
m_dimm_size_mbytes = dimm_size_mbytes;
}
/*!
* @brief Checks if DIMM slot is occupied.
* @return true if memory slot is occupied, otherwise false.
*/
bool is_present() const {
return m_dimm_presence;
}
/*!
* @brief Sets dimm presence.
* @param dimm_presence of dimm.
*/
void set_dimm_presence(const bool dimm_presence) {
m_dimm_presence = dimm_presence;
}
virtual void unpack(const vector<uint8_t>& data);
private:
string m_dimm_type{};
double m_dimm_voltage{};
uint32_t m_dimm_speed_mhz{};
uint32_t m_dimm_size_mbytes{};
bool m_dimm_presence{};
static constexpr size_t XEON_RESPONSE_SIZE = 9;
static constexpr size_t ATOM_RESPONSE_SIZE = 7;
static constexpr size_t XEON_OFFSET_PRESENCE = 8;
static constexpr size_t ATOM_OFFSET_PRESENCE = 6;
static constexpr size_t OFFSET_DIMM_TYPE_AND_VOLTAGE = 1;
static constexpr size_t OFFSET_DIMM_SPEED = 2;
static constexpr size_t OFFSET_DIMM_SIZE = 4;
static constexpr size_t MASK_DIMM_VOLTAGE = 0xC0;
static constexpr size_t MASK_DIMM_TYPE = 0x3F;
map<DIMM_VOLTAGE, double> m_voltage_mapping = {
{DIMM_VOLTAGE_NORMAL, 1.5},
{DIMM_VOLTAGE_ULTRA_LOW, 1.25},
{DIMM_VOLTAGE_LOW, 1.35},
{DIMM_VOLTAGE_DDR4_NORMAL, 1.2},
{DIMM_VOLTAGE_UNKNOWN, 0.0},
};
map<DIMM_TYPE, string> m_type_mapping = {
{DIMM_TYPE_SDRAM, "SDRAM"},
{DIMM_TYPE_DDR1, "DDR1"},
{DIMM_TYPE_RAMBUS, "Rambus"},
{DIMM_TYPE_DDR2, "DDR2"},
{DIMM_TYPE_FBDIMM, "FBDIMM"},
{DIMM_TYPE_DDR3, "DDR3"},
{DIMM_TYPE_DDR4, "DDR4"},
{DIMM_TYPE_NO_DIMM, "No DIMM present"},
{DIMM_TYPE_UNKNOWN, "DIMM type unknown"},
};
string type_to_string(uint8_t value) const;
double extract_voltage(uint8_t value) const;
uint8_t extract_type(uint8_t value) const;
uint32_t extract_speed(const vector<uint8_t>& data) const;
/*!
* Checks if Response is response error. If IPMI return error the data length is equal to 1.
*
* @param data vector with data to check.
* @return true if Response is error, otherwise false.
*/
bool is_error(const vector<uint8_t>& data) const;
bool is_xeon(const vector<uint8_t>& data) const;
bool is_atom(const vector<uint8_t>& data) const;
void common_unpack(const vector<uint8_t>& data);
void xeon_unpack(const vector<uint8_t>& data);
void atom_unpack(const vector<uint8_t>& data);
uint16_t atom_extract_size(const vector<uint8_t>& data) const;
uint32_t xeon_extract_size(const vector<uint8_t>& data) const;
bool atom_extract_presence(const vector<uint8_t>& data) const;
bool xeon_extract_presence(const vector<uint8_t>& data) const;
};
}
}
}
}
#endif /* IPMI_COMMAND_SDV_GET_DIMM_INFO_HPP */
| [
"maciej.a.romanowski@intel.com"
] | maciej.a.romanowski@intel.com |
e1da1fb4c4a5fa7d20fb8bb835e719fee3bac2e6 | f12fd27cbb255e44adff9f74defb2e47aed03ff8 | /tfarg_service/tfarg_service/AsyncSerial.cpp | 498a353a5797d358c4fc543a7d12166a5df20cb9 | [
"Apache-2.0"
] | permissive | minhncedutw/tfarg-gripper-service | a491e396e9ef5d3f372115cd2fa8d7d23e0e2bea | c501f8ff538cb40839b61682ce7308c0b95d875c | refs/heads/master | 2020-05-30T11:00:21.129826 | 2019-06-06T06:29:37 | 2019-06-06T06:29:37 | 189,687,390 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,758 | cpp | /*
* File: AsyncSerial.cpp
* Author: Terraneo Federico
* Distributed under the Boost Software License, Version 1.0.
* Created on September 7, 2009, 10:46 AM
*
* v1.02: Fixed a bug in BufferedAsyncSerial: Using the default constructor
* the callback was not set up and reading didn't work.
*
* v1.01: Fixed a bug that did not allow to reopen a closed serial port.
*
* v1.00: First release.
*
* IMPORTANT:
* On Mac OS X boost asio's serial ports have bugs, and the usual implementation
* of this class does not work. So a workaround class was written temporarily,
* until asio (hopefully) will fix Mac compatibility for serial ports.
*
* Please note that unlike said in the documentation on OS X until asio will
* be fixed serial port *writes* are *not* asynchronous, but at least
* asynchronous *read* works.
* In addition the serial port open ignores the following options: parity,
* character size, flow, stop bits, and defaults to 8N1 format.
* I know it is bad but at least it's better than nothing.
*
*/
#include "AsyncSerial.h"
#include <string>
#include <algorithm>
#include <iostream>
#include <boost/bind.hpp>
//using namespace std;
using namespace boost;
//
//Class AsyncSerial
//
#ifndef __APPLE__
class AsyncSerialImpl: private boost::noncopyable
{
public:
AsyncSerialImpl(): io(), port(io), backgroundThread(), open(false),
error(false) {}
asio::io_service io; ///< Io service object
asio::serial_port port; ///< Serial port object
thread backgroundThread; ///< Thread that runs read/write operations
bool open; ///< True if port open
bool error; ///< Error flag
mutable boost::mutex errorMutex; ///< Mutex for access to error
/// Data are queued here before they go in writeBuffer
std::vector<char> writeQueue;
boost::shared_array<char> writeBuffer; ///< Data being written
size_t writeBufferSize; ///< Size of writeBuffer
boost::mutex writeQueueMutex; ///< Mutex for access to writeQueue
char readBuffer[AsyncSerial::readBufferSize]; ///< data being read
/// Read complete callback
boost::function<void (const char*, size_t)> callback;
};
AsyncSerial::AsyncSerial(): pimpl(new AsyncSerialImpl)
{
}
AsyncSerial::AsyncSerial(const std::string& devname, unsigned int baud_rate,
asio::serial_port_base::parity opt_parity,
asio::serial_port_base::character_size opt_csize,
asio::serial_port_base::flow_control opt_flow,
asio::serial_port_base::stop_bits opt_stop)
: pimpl(new AsyncSerialImpl)
{
open(devname,baud_rate,opt_parity,opt_csize,opt_flow,opt_stop);
}
void AsyncSerial::open(const std::string& devname, unsigned int baud_rate,
asio::serial_port_base::parity opt_parity,
asio::serial_port_base::character_size opt_csize,
asio::serial_port_base::flow_control opt_flow,
asio::serial_port_base::stop_bits opt_stop)
{
if(isOpen()) close();
setErrorStatus(true);//If an exception is thrown, error_ remains true
pimpl->port.open(devname);
pimpl->port.set_option(asio::serial_port_base::baud_rate(baud_rate));
pimpl->port.set_option(opt_parity);
pimpl->port.set_option(opt_csize);
pimpl->port.set_option(opt_flow);
pimpl->port.set_option(opt_stop);
//This gives some work to the io_service before it is started
pimpl->io.post(boost::bind(&AsyncSerial::doRead, this));
thread t(boost::bind(&asio::io_service::run, &pimpl->io));
pimpl->backgroundThread.swap(t);
setErrorStatus(false);//If we get here, no error
pimpl->open=true; //Port is now open
}
bool AsyncSerial::isOpen() const
{
return pimpl->open;
}
bool AsyncSerial::errorStatus() const
{
lock_guard<mutex> l(pimpl->errorMutex);
return pimpl->error;
}
void AsyncSerial::close()
{
if(!isOpen()) return;
pimpl->open=false;
pimpl->io.post(boost::bind(&AsyncSerial::doClose, this));
pimpl->backgroundThread.join();
pimpl->io.reset();
if(errorStatus())
{
throw(boost::system::system_error(boost::system::error_code(),
"Error while closing the device"));
}
}
void AsyncSerial::write(const char *data, size_t size)
{
{
lock_guard<mutex> l(pimpl->writeQueueMutex);
pimpl->writeQueue.insert(pimpl->writeQueue.end(),data,data+size);
}
pimpl->io.post(boost::bind(&AsyncSerial::doWrite, this));
}
void AsyncSerial::write(const std::vector<char>& data)
{
{
lock_guard<mutex> l(pimpl->writeQueueMutex);
pimpl->writeQueue.insert(pimpl->writeQueue.end(),data.begin(),
data.end());
}
pimpl->io.post(boost::bind(&AsyncSerial::doWrite, this));
}
void AsyncSerial::writeString(const std::string& s)
{
{
lock_guard<mutex> l(pimpl->writeQueueMutex);
pimpl->writeQueue.insert(pimpl->writeQueue.end(),s.begin(),s.end());
}
pimpl->io.post(boost::bind(&AsyncSerial::doWrite, this));
}
AsyncSerial::~AsyncSerial()
{
if(isOpen())
{
try {
close();
} catch(...)
{
//Don't throw from a destructor
}
}
}
void AsyncSerial::doRead()
{
pimpl->port.async_read_some(asio::buffer(pimpl->readBuffer,readBufferSize),
boost::bind(&AsyncSerial::readEnd,
this,
asio::placeholders::error,
asio::placeholders::bytes_transferred));
}
void AsyncSerial::readEnd(const boost::system::error_code& error,
size_t bytes_transferred)
{
if(error)
{
#ifdef __APPLE__
if(error.value()==45)
{
//Bug on OS X, it might be necessary to repeat the setup
//http://osdir.com/ml/lib.boost.asio.user/2008-08/msg00004.html
doRead();
return;
}
#endif //__APPLE__
//error can be true even because the serial port was closed.
//In this case it is not a real error, so ignore
if(isOpen())
{
doClose();
setErrorStatus(true);
}
} else {
if(pimpl->callback) pimpl->callback(pimpl->readBuffer,
bytes_transferred);
doRead();
}
}
void AsyncSerial::doWrite()
{
//If a write operation is already in progress, do nothing
if(pimpl->writeBuffer==0)
{
lock_guard<mutex> l(pimpl->writeQueueMutex);
pimpl->writeBufferSize=pimpl->writeQueue.size();
pimpl->writeBuffer.reset(new char[pimpl->writeQueue.size()]);
copy(pimpl->writeQueue.begin(),pimpl->writeQueue.end(),
pimpl->writeBuffer.get());
pimpl->writeQueue.clear();
async_write(pimpl->port,asio::buffer(pimpl->writeBuffer.get(),
pimpl->writeBufferSize),
boost::bind(&AsyncSerial::writeEnd, this, asio::placeholders::error));
}
}
void AsyncSerial::writeEnd(const boost::system::error_code& error)
{
if(!error)
{
lock_guard<mutex> l(pimpl->writeQueueMutex);
if(pimpl->writeQueue.empty())
{
pimpl->writeBuffer.reset();
pimpl->writeBufferSize=0;
return;
}
pimpl->writeBufferSize=pimpl->writeQueue.size();
pimpl->writeBuffer.reset(new char[pimpl->writeQueue.size()]);
copy(pimpl->writeQueue.begin(),pimpl->writeQueue.end(),
pimpl->writeBuffer.get());
pimpl->writeQueue.clear();
async_write(pimpl->port,asio::buffer(pimpl->writeBuffer.get(),
pimpl->writeBufferSize),
boost::bind(&AsyncSerial::writeEnd, this, asio::placeholders::error));
} else {
setErrorStatus(true);
doClose();
}
}
void AsyncSerial::doClose()
{
boost::system::error_code ec;
pimpl->port.cancel(ec);
if(ec) setErrorStatus(true);
pimpl->port.close(ec);
if(ec) setErrorStatus(true);
}
void AsyncSerial::setErrorStatus(bool e)
{
lock_guard<mutex> l(pimpl->errorMutex);
pimpl->error=e;
}
void AsyncSerial::setReadCallback(const boost::function<void (const char*, size_t)>& callback)
{
pimpl->callback=callback;
}
void AsyncSerial::clearReadCallback()
{
pimpl->callback.clear();
}
#else //__APPLE__
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <termios.h>
#include <unistd.h>
class AsyncSerialImpl: private boost::noncopyable
{
public:
AsyncSerialImpl(): backgroundThread(), open(false), error(false) {}
boost::thread backgroundThread; ///< Thread that runs read operations
bool open; ///< True if port open
bool error; ///< Error flag
mutable boost::mutex errorMutex; ///< Mutex for access to error
int fd; ///< File descriptor for serial port
char readBuffer[AsyncSerial::readBufferSize]; ///< data being read
/// Read complete callback
boost::function<void (const char*, size_t)> callback;
};
AsyncSerial::AsyncSerial(): pimpl(new AsyncSerialImpl)
{
}
AsyncSerial::AsyncSerial(const std::string& devname, unsigned int baud_rate,
asio::serial_port_base::parity opt_parity,
asio::serial_port_base::character_size opt_csize,
asio::serial_port_base::flow_control opt_flow,
asio::serial_port_base::stop_bits opt_stop)
: pimpl(new AsyncSerialImpl)
{
open(devname,baud_rate,opt_parity,opt_csize,opt_flow,opt_stop);
}
void AsyncSerial::open(const std::string& devname, unsigned int baud_rate,
asio::serial_port_base::parity opt_parity,
asio::serial_port_base::character_size opt_csize,
asio::serial_port_base::flow_control opt_flow,
asio::serial_port_base::stop_bits opt_stop)
{
if(isOpen()) close();
setErrorStatus(true);//If an exception is thrown, error remains true
struct termios new_attributes;
speed_t speed;
int status;
// Open port
pimpl->fd=::open(devname.c_str(), O_RDWR | O_NOCTTY | O_NONBLOCK);
if (pimpl->fd<0) throw(boost::system::system_error(
boost::system::error_code(),"Failed to open port"));
// Set Port parameters.
status=tcgetattr(pimpl->fd,&new_attributes);
if(status<0 || !isatty(pimpl->fd))
{
::close(pimpl->fd);
throw(boost::system::system_error(
boost::system::error_code(),"Device is not a tty"));
}
new_attributes.c_iflag = IGNBRK;
new_attributes.c_oflag = 0;
new_attributes.c_lflag = 0;
new_attributes.c_cflag = (CS8 | CREAD | CLOCAL);//8 data bit,Enable receiver,Ignore modem
/* In non canonical mode (Ctrl-C and other disabled, no echo,...) VMIN and VTIME work this way:
if the function read() has'nt read at least VMIN chars it waits until has read at least VMIN
chars (even if VTIME timeout expires); once it has read at least vmin chars, if subsequent
chars do not arrive before VTIME expires, it returns error; if a char arrives, it resets the
timeout, so the internal timer will again start from zero (for the nex char,if any)*/
new_attributes.c_cc[VMIN]=1;// Minimum number of characters to read before returning error
new_attributes.c_cc[VTIME]=1;// Set timeouts in tenths of second
// Set baud rate
switch(baud_rate)
{
case 50:speed= B50; break;
case 75:speed= B75; break;
case 110:speed= B110; break;
case 134:speed= B134; break;
case 150:speed= B150; break;
case 200:speed= B200; break;
case 300:speed= B300; break;
case 600:speed= B600; break;
case 1200:speed= B1200; break;
case 1800:speed= B1800; break;
case 2400:speed= B2400; break;
case 4800:speed= B4800; break;
case 9600:speed= B9600; break;
case 19200:speed= B19200; break;
case 38400:speed= B38400; break;
case 57600:speed= B57600; break;
case 115200:speed= B115200; break;
case 230400:speed= B230400; break;
default:
{
::close(pimpl->fd);
throw(boost::system::system_error(
boost::system::error_code(),"Unsupported baud rate"));
}
}
cfsetospeed(&new_attributes,speed);
cfsetispeed(&new_attributes,speed);
//Make changes effective
status=tcsetattr(pimpl->fd, TCSANOW, &new_attributes);
if(status<0)
{
::close(pimpl->fd);
throw(boost::system::system_error(
boost::system::error_code(),"Can't set port attributes"));
}
//These 3 lines clear the O_NONBLOCK flag
status=fcntl(pimpl->fd, F_GETFL, 0);
if(status!=-1) fcntl(pimpl->fd, F_SETFL, status & ~O_NONBLOCK);
setErrorStatus(false);//If we get here, no error
pimpl->open=true; //Port is now open
thread t(bind(&AsyncSerial::doRead, this));
pimpl->backgroundThread.swap(t);
}
bool AsyncSerial::isOpen() const
{
return pimpl->open;
}
bool AsyncSerial::errorStatus() const
{
lock_guard<mutex> l(pimpl->errorMutex);
return pimpl->error;
}
void AsyncSerial::close()
{
if(!isOpen()) return;
pimpl->open=false;
::close(pimpl->fd); //The thread waiting on I/O should return
pimpl->backgroundThread.join();
if(errorStatus())
{
throw(boost::system::system_error(boost::system::error_code(),
"Error while closing the device"));
}
}
void AsyncSerial::write(const char *data, size_t size)
{
if(::write(pimpl->fd,data,size)!=size) setErrorStatus(true);
}
void AsyncSerial::write(const std::vector<char>& data)
{
if(::write(pimpl->fd,&data[0],data.size())!=data.size())
setErrorStatus(true);
}
void AsyncSerial::writeString(const std::string& s)
{
if(::write(pimpl->fd,&s[0],s.size())!=s.size()) setErrorStatus(true);
}
AsyncSerial::~AsyncSerial()
{
if(isOpen())
{
try {
close();
} catch(...)
{
//Don't throw from a destructor
}
}
}
void AsyncSerial::doRead()
{
//Read loop in spawned thread
for(;;)
{
int received=::read(pimpl->fd,pimpl->readBuffer,readBufferSize);
if(received<0)
{
if(isOpen()==false) return; //Thread interrupted because port closed
else {
setErrorStatus(true);
continue;
}
}
if(pimpl->callback) pimpl->callback(pimpl->readBuffer, received);
}
}
void AsyncSerial::readEnd(const boost::system::error_code& error,
size_t bytes_transferred)
{
//Not used
}
void AsyncSerial::doWrite()
{
//Not used
}
void AsyncSerial::writeEnd(const boost::system::error_code& error)
{
//Not used
}
void AsyncSerial::doClose()
{
//Not used
}
void AsyncSerial::setErrorStatus(bool e)
{
lock_guard<mutex> l(pimpl->errorMutex);
pimpl->error=e;
}
void AsyncSerial::setReadCallback(const
function<void (const char*, size_t)>& callback)
{
pimpl->callback=callback;
}
void AsyncSerial::clearReadCallback()
{
pimpl->callback.clear();
}
#endif //__APPLE__
//
//Class CallbackAsyncSerial
//
CallbackAsyncSerial::CallbackAsyncSerial(): AsyncSerial()
{
}
CallbackAsyncSerial::CallbackAsyncSerial(const std::string& devname,
unsigned int baud_rate,
asio::serial_port_base::parity opt_parity,
asio::serial_port_base::character_size opt_csize,
asio::serial_port_base::flow_control opt_flow,
asio::serial_port_base::stop_bits opt_stop)
:AsyncSerial(devname,baud_rate,opt_parity,opt_csize,opt_flow,opt_stop)
{
}
void CallbackAsyncSerial::setCallback(const
boost::function<void (const char*, size_t)>& callback)
{
setReadCallback(callback);
}
void CallbackAsyncSerial::clearCallback()
{
clearReadCallback();
}
CallbackAsyncSerial::~CallbackAsyncSerial()
{
clearReadCallback();
} | [
"minhnc.edu.tw@gmail.com"
] | minhnc.edu.tw@gmail.com |
fa0a9bae44278f20ffbdcc8afd9419e099d7e2a0 | 2a2d8ec83852acd950f17b6443c133772d3caa3e | /src/filer/scrap_view.cpp | 6ce7e017615f2cb26d1f8af40d04e43be504c436 | [] | no_license | Vinery/pplay | a539571600eef21aa893c657147c6a781bde1de9 | a6a4e41ea270381e4d3b2717a475c279f7d1da15 | refs/heads/master | 2023-03-20T09:57:09.376559 | 2021-03-12T13:30:30 | 2021-03-12T13:30:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,929 | cpp | //
// Created by cpasjuste on 01/04/19.
//
#include "cross2d/c2d.h"
#include "main.h"
#include "utility.h"
#include "scrap_view.h"
using namespace c2d;
ScrapView::ScrapView(Main *m, const c2d::FloatRect &rect) : Rectangle(rect) {
main = m;
// backdrop
backdrop = new Sprite();
backdrop->setOrigin(Origin::BottomRight);
backdrop->setPosition(getSize());
backdrop->setVisibility(Visibility::Hidden);
backdrop->setAlpha(0);
backdrop->add(new TweenAlpha(0, 255, 0.3f));
add(backdrop);
// backdrop fade
fade = new C2DTexture(main->getIo()->getRomFsPath() + "skin/fade.png");
fade->setOrigin(Origin::BottomRight);
fade->setPosition(backdrop->getPosition());
fade->setFillColor(Color::Black);
add(fade);
// poster
poster = new Sprite();
poster->setPosition(64, 32);
poster->setVisibility(Visibility::Hidden);
poster->setAlpha(0);
poster->add(new TweenAlpha(0, 255, 0.3f));
add(poster);
Vector2f pos{poster->getPosition().x + 216, poster->getPosition().y + 10};
Vector2f size{getSize().x - pos.x - 16, 180};
// title
title = new C2DText("TITLE", main->getFontSize(Main::FontSize::Big), main->getFont());
title->setPosition(pos.x, pos.y);
add(title);
// text
overview = new C2DText("", main->getFontSize(Main::FontSize::Small), main->getFont());
overview->setFillColor(COLOR_FONT);
overview->setPosition(pos.x, pos.y + 70);
overview->setOverflow(Text::NewLine);
overview->setSizeMax(size.x, size.y);
add(overview);
resolution_icon = new TextIcon("1080p", main->getFontSize(Main::FontSize::Small), main->getFont());
resolution_icon->setPosition(pos.x, 80);
add(resolution_icon);
video_icon = new TextIcon("h264", main->getFontSize(Main::FontSize::Small), main->getFont());
video_icon->setPosition(pos.x + 64, 80);
add(video_icon);
audio_icon = new TextIcon("DTS", main->getFontSize(Main::FontSize::Small), main->getFont());
audio_icon->setPosition(pos.x + 64 * 2, 80);
add(audio_icon);
subs_icon = new TextIcon("SUBS", main->getFontSize(Main::FontSize::Small), main->getFont());
subs_icon->setPosition(pos.x + 64 * 3, 80);
add(subs_icon);
clock = new C2DClock();
}
void ScrapView::setMovie(const MediaFile &f) {
file = f;
video_icon->setVisibility(Visibility::Hidden);
audio_icon->setVisibility(Visibility::Hidden);
subs_icon->setVisibility(Visibility::Hidden);
resolution_icon->setVisibility(Visibility::Hidden);
// if no movie was scrapped, return
if (file.movies.empty()) {
title->setString(file.name);
overview->setString("No information available.\n\n"
"Please use the scrapper option to get "
"some information about this media.");
} else {
// load..
pscrap::Movie movie = file.movies[0];
std::string date =
movie.release_date.substr(0, movie.release_date.find_first_of('-'));
title->setString(movie.title + " (" + date + ")");
overview->setString(movie.overview);
// load mediaInfo
if (!file.mediaInfo.videos.empty()) {
MediaInfo::Track track = file.mediaInfo.videos[0];
int width = track.width;
int height = track.height;
if (width == 3840) {
resolution_icon->setString("2160p");
} else if (width == 1920) {
resolution_icon->setString("1080p");
} else if (width == 1280) {
resolution_icon->setString("720p");
} else {
resolution_icon->setString(std::to_string(height) + "p");
}
std::string vid = Utility::toUpper(track.codec);
video_icon->setString(vid);
video_icon->setPosition(
resolution_icon->getPosition().x + resolution_icon->getSize().x + 8,
video_icon->getPosition().y);
video_icon->setVisibility(Visibility::Visible);
resolution_icon->setVisibility(Visibility::Visible);
}
if (!file.mediaInfo.audios.empty()) {
std::string aud = Utility::toUpper(file.mediaInfo.audios[0].codec);
audio_icon->setString(aud);
audio_icon->setPosition(
video_icon->getPosition().x + video_icon->getSize().x + 8,
audio_icon->getPosition().y);
audio_icon->setVisibility(Visibility::Visible);
}
if (!file.mediaInfo.subtitles.empty()) {
if (!file.mediaInfo.audios.empty()) {
subs_icon->setPosition(
audio_icon->getPosition().x + audio_icon->getSize().x + 8,
subs_icon->getPosition().y);
} else {
subs_icon->setPosition(
video_icon->getPosition().x + video_icon->getSize().x + 8,
subs_icon->getPosition().y);
}
subs_icon->setVisibility(Visibility::Visible);
}
}
}
void ScrapView::onUpdate() {
if (!isVisible() || !main->getFiler()->isVisible()) {
return;
}
unsigned int keys = main->getInput()->getKeys();
if (keys > 0 && keys != Input::Delay) {
clock->restart();
} else if (keys == 0 && clock->getElapsedTime().asMilliseconds() > main->getInput()->getRepeatDelay()) {
// load images
if (!loaded && !file.movies.empty()) {
loaded = true;
// load backdrop if available
std::string tex_path = pplay::Utility::getMediaBackdropPath(file);
if (main->getIo()->exist(tex_path)) {
fade->setVisibility(Visibility::Visible);
backdrop_texture = new C2DTexture(tex_path);
backdrop->setTexture(backdrop_texture, true);
backdrop->setVisibility(Visibility::Visible, true);
if (backdrop_texture->getTextureRect().width != 780) {
// scaling
float scaling = std::min(
getSize().x / backdrop_texture->getTextureRect().width,
getSize().y / backdrop_texture->getTextureRect().height);
backdrop->setScale(scaling, scaling);
}
}
// load poster if available
tex_path = pplay::Utility::getMediaPosterPath(file);
if (main->getIo()->exist(tex_path)) {
poster_texture = new C2DTexture(tex_path);
poster->setTexture(poster_texture, true);
poster->setVisibility(Visibility::Visible, true);
if (poster_texture->getTextureRect().width != 200) {
// scaling
float scaling = std::min(
getSize().x / poster_texture->getTextureRect().width,
getSize().y / poster_texture->getTextureRect().height);
poster->setScale(scaling, scaling);
}
}
}
}
Rectangle::onUpdate();
}
void ScrapView::unload() {
poster->setVisibility(Visibility::Hidden);
if (poster_texture != nullptr) {
delete (poster_texture);
poster_texture = nullptr;
poster->setTexture(nullptr);
}
fade->setVisibility(Visibility::Hidden);
backdrop->setVisibility(Visibility::Hidden);
if (backdrop_texture != nullptr) {
delete (backdrop_texture);
backdrop_texture = nullptr;
backdrop->setTexture(nullptr);
}
loaded = false;
}
ScrapView::~ScrapView() {
if (backdrop_texture != nullptr) {
delete (backdrop_texture);
backdrop_texture = nullptr;
}
if (poster_texture != nullptr) {
delete (poster_texture);
poster_texture = nullptr;
}
delete (clock);
}
| [
"cpasjuste@gmail.com"
] | cpasjuste@gmail.com |
941394e86c3f79d91dafad093951a6f6b30a8405 | c8b39acfd4a857dc15ed3375e0d93e75fa3f1f64 | /Engine/Source/Developer/ShaderCompilerCommon/Private/HlslParser.cpp | 00a3c91a81c465f7d681ad750da3b82bc3da2101 | [
"MIT",
"LicenseRef-scancode-proprietary-license"
] | permissive | windystrife/UnrealEngine_NVIDIAGameWorks | c3c7863083653caf1bc67d3ef104fb4b9f302e2a | b50e6338a7c5b26374d66306ebc7807541ff815e | refs/heads/4.18-GameWorks | 2023-03-11T02:50:08.471040 | 2022-01-13T20:50:29 | 2022-01-13T20:50:29 | 124,100,479 | 262 | 179 | MIT | 2022-12-16T05:36:38 | 2018-03-06T15:44:09 | C++ | UTF-8 | C++ | false | false | 58,038 | cpp | // Copyright 1998-2017 Epic Games, Inc. All Rights Reserved.
/*=============================================================================
HlslParser.cpp - Implementation for parsing hlsl.
=============================================================================*/
#include "HlslParser.h"
#include "HlslExpressionParser.inl"
#include "CCIR.h"
namespace CrossCompiler
{
EParseResult ParseExpressionStatement(class FHlslParser& Parser, FLinearAllocator* Allocator, AST::FNode** OutStatement);
EParseResult ParseStructBody(FHlslScanner& Scanner, FSymbolScope* SymbolScope, FLinearAllocator* Allocator, AST::FTypeSpecifier** OutTypeSpecifier);
EParseResult TryParseAttribute(FHlslParser& Parser, FLinearAllocator* Allocator, AST::FAttribute** OutAttribute);
typedef EParseResult(*TTryRule)(class FHlslParser& Scanner, FLinearAllocator* Allocator, AST::FNode** OutStatement);
struct FRulePair
{
EHlslToken Token;
TTryRule TryRule;
bool bSupportsAttributes;
FRulePair(EHlslToken InToken, TTryRule InTryRule, bool bInSupportsAttributes = false) : Token(InToken), TryRule(InTryRule), bSupportsAttributes(bInSupportsAttributes) {}
};
typedef TArray<FRulePair> TRulesArray;
class FHlslParser
{
public:
FHlslParser(FLinearAllocator* InAllocator, FCompilerMessages& InCompilerMessages);
FHlslScanner Scanner;
FCompilerMessages& CompilerMessages;
FSymbolScope GlobalScope;
FSymbolScope Namespaces;
FSymbolScope* CurrentScope;
FLinearAllocator* Allocator;
};
TRulesArray RulesStatements;
EParseResult TryStatementRules(FHlslParser& Parser, FLinearAllocator* Allocator, AST::FNode** OutNode)
{
for (const auto& Rule : RulesStatements)
{
auto CurrentTokenIndex = Parser.Scanner.GetCurrentTokenIndex();
TLinearArray<AST::FAttribute*> Attributes(Allocator);
if (Rule.bSupportsAttributes)
{
while (Parser.Scanner.HasMoreTokens())
{
const auto* Peek = Parser.Scanner.GetCurrentToken();
if (Peek->Token == EHlslToken::LeftSquareBracket)
{
AST::FAttribute* Attribute = nullptr;
auto Result = TryParseAttribute(Parser, Allocator, &Attribute);
if (Result == EParseResult::Matched)
{
Attributes.Add(Attribute);
continue;
}
else if (Result == EParseResult::Error)
{
return ParseResultError();
}
}
break;
}
}
if (Parser.Scanner.MatchToken(Rule.Token) || Rule.Token == EHlslToken::Invalid)
{
AST::FNode* Node = nullptr;
EParseResult Result = (*Rule.TryRule)(Parser, Allocator, &Node);
if (Result == EParseResult::Error)
{
return ParseResultError();
}
else if (Result == EParseResult::Matched)
{
if (Attributes.Num() > 0)
{
Swap(Node->Attributes, Attributes);
}
*OutNode = Node;
return EParseResult::Matched;
}
}
Parser.Scanner.SetCurrentTokenIndex(CurrentTokenIndex);
}
return EParseResult::NotMatched;
}
bool MatchPragma(FHlslParser& Parser, FLinearAllocator* Allocator, AST::FNode** OutNode)
{
const auto* Peek = Parser.Scanner.GetCurrentToken();
if (Parser.Scanner.MatchToken(EHlslToken::Pragma))
{
auto* Pragma = new(Allocator)AST::FPragma(Allocator, *Peek->String, Peek->SourceInfo);
*OutNode = Pragma;
return true;
}
return false;
}
EParseResult ParseDeclarationArrayBracketsAndIndex(FHlslScanner& Scanner, FSymbolScope* SymbolScope, bool bNeedsDimension, FLinearAllocator* Allocator, AST::FExpression** OutExpression)
{
if (Scanner.MatchToken(EHlslToken::LeftSquareBracket))
{
auto ExpressionResult = ParseExpression(Scanner, SymbolScope, false, Allocator, OutExpression);
if (ExpressionResult == EParseResult::Error)
{
Scanner.SourceError(TEXT("Expected expression!"));
return ParseResultError();
}
if (!Scanner.MatchToken(EHlslToken::RightSquareBracket))
{
Scanner.SourceError(TEXT("Expected ']'!"));
return ParseResultError();
}
if (ExpressionResult == EParseResult::NotMatched)
{
if (bNeedsDimension)
{
Scanner.SourceError(TEXT("Expected array dimension!"));
return ParseResultError();
}
}
return EParseResult::Matched;
}
return EParseResult::NotMatched;
}
EParseResult ParseDeclarationMultiArrayBracketsAndIndex(FHlslScanner& Scanner, FSymbolScope* SymbolScope, bool bNeedsDimension, FLinearAllocator* Allocator, AST::FDeclaration* Declaration)
{
bool bFoundOne = false;
do
{
AST::FExpression* Dimension = nullptr;
auto Result = ParseDeclarationArrayBracketsAndIndex(Scanner, SymbolScope, bNeedsDimension, Allocator, &Dimension);
if (Result == EParseResult::Error)
{
return ParseResultError();
}
else if (Result == EParseResult::NotMatched)
{
break;
}
Declaration->ArraySize.Add(Dimension);
bFoundOne = true;
}
while (Scanner.HasMoreTokens());
if (bFoundOne)
{
Declaration->bIsArray = true;
return EParseResult::Matched;
}
return EParseResult::NotMatched;
}
EParseResult ParseTextureOrBufferSimpleDeclaration(FHlslScanner& Scanner, FSymbolScope* SymbolScope, bool bMultiple, FLinearAllocator* Allocator, AST::FDeclaratorList** OutDeclaratorList)
{
auto OriginalToken = Scanner.GetCurrentTokenIndex();
const auto* Token = Scanner.GetCurrentToken();
auto* FullType = (*OutDeclaratorList)->Type;
if (ParseGeneralType(Scanner, ETF_SAMPLER_TEXTURE_BUFFER, nullptr, Allocator, &FullType->Specifier) == EParseResult::Matched)
{
if (Scanner.MatchToken(EHlslToken::Lower))
{
AST::FTypeSpecifier* ElementTypeSpecifier = nullptr;
auto Result = ParseGeneralType(Scanner, ETF_BUILTIN_NUMERIC | ETF_USER_TYPES, SymbolScope, Allocator, &ElementTypeSpecifier);
if (Result != EParseResult::Matched)
{
Scanner.SourceError(TEXT("Expected type!"));
return ParseResultError();
}
FullType->Specifier->InnerType = ElementTypeSpecifier->TypeName;
if (Scanner.MatchToken(EHlslToken::Comma))
{
auto* Integer = Scanner.GetCurrentToken();
if (!Scanner.MatchToken(EHlslToken::UnsignedIntegerConstant))
{
Scanner.SourceError(TEXT("Expected constant!"));
return ParseResultError();
}
FullType->Specifier->TextureMSNumSamples = Integer->UnsignedInteger;
}
if (!Scanner.MatchToken(EHlslToken::Greater))
{
Scanner.SourceError(TEXT("Expected '>'!"));
return ParseResultError();
}
}
else
{
//TypeSpecifier->InnerName = "float4";
}
do
{
// Handle 'Sampler2D Sampler'
AST::FTypeSpecifier* DummyTypeSpecifier = nullptr;
const auto* IdentifierToken = Scanner.GetCurrentToken();
AST::FDeclaration* Declaration = nullptr;
if (ParseGeneralType(Scanner, ETF_SAMPLER_TEXTURE_BUFFER, nullptr, Allocator, &DummyTypeSpecifier) == EParseResult::Matched)
{
Declaration = new(Allocator) AST::FDeclaration(Allocator, DummyTypeSpecifier->SourceInfo);
Declaration->Identifier = Allocator->Strdup(DummyTypeSpecifier->TypeName);
}
else if (Scanner.MatchToken(EHlslToken::Identifier))
{
Declaration = new(Allocator) AST::FDeclaration(Allocator, IdentifierToken->SourceInfo);
Declaration->Identifier = Allocator->Strdup(IdentifierToken->String);
}
else
{
Scanner.SourceError(TEXT("Expected Identifier!"));
return ParseResultError();
}
if (ParseDeclarationMultiArrayBracketsAndIndex(Scanner, SymbolScope, true, Allocator, Declaration) == EParseResult::Error)
{
return ParseResultError();
}
(*OutDeclaratorList)->Declarations.Add(Declaration);
}
while (bMultiple && Scanner.MatchToken(EHlslToken::Comma));
return EParseResult::Matched;
}
// Unmatched
Scanner.SetCurrentTokenIndex(OriginalToken);
return EParseResult::NotMatched;
}
// Multi declaration parser flags
enum EDeclarationFlags
{
EDF_CONST_ROW_MAJOR = (1 << 0),
EDF_STATIC = (1 << 1),
EDF_UNIFORM = (1 << 2),
EDF_TEXTURE_SAMPLER_OR_BUFFER = (1 << 3),
EDF_INITIALIZER = (1 << 4),
EDF_INITIALIZER_LIST = (1 << 5) | EDF_INITIALIZER,
EDF_SEMANTIC = (1 << 6),
EDF_SEMICOLON = (1 << 7),
EDF_IN_OUT = (1 << 8),
EDF_MULTIPLE = (1 << 9),
EDF_PRIMITIVE_DATA_TYPE = (1 << 10),
EDF_SHARED = (1 << 11),
EDF_INTERPOLATION = (1 << 12),
};
EParseResult ParseInitializer(FHlslScanner& Scanner, FSymbolScope* SymbolScope, bool bAllowLists, FLinearAllocator* Allocator, AST::FExpression** OutList)
{
if (bAllowLists && Scanner.MatchToken(EHlslToken::LeftBrace))
{
*OutList = new(Allocator) AST::FInitializerListExpression(Allocator, Scanner.GetCurrentToken()->SourceInfo);
auto Result = ParseExpressionList(EHlslToken::RightBrace, Scanner, SymbolScope, EHlslToken::LeftBrace, Allocator, *OutList);
if (Result != EParseResult::Matched)
{
Scanner.SourceError(TEXT("Invalid initializer list\n"));
}
return EParseResult::Matched;
}
else
{
//@todo-rco?
auto Result = ParseExpression(Scanner, SymbolScope, true, Allocator, OutList);
if (Result == EParseResult::Error)
{
Scanner.SourceError(TEXT("Invalid initializer expression\n"));
}
return Result;
}
return EParseResult::NotMatched;
}
EParseResult ParseDeclarationStorageQualifiers(FHlslScanner& Scanner, int32 TypeFlags, int32 DeclarationFlags, bool& bOutPrimitiveFound, AST::FTypeQualifier* Qualifier)
{
bOutPrimitiveFound = false;
int32 StaticFound = 0;
int32 InterpolationLinearFound = 0;
int32 InterpolationCentroidFound = 0;
int32 InterpolationNoInterpolationFound = 0;
int32 InterpolationNoPerspectiveFound = 0;
int32 InterpolationSampleFound = 0;
int32 SharedFound = 0;
int32 ConstFound = 0;
int32 RowMajorFound = 0;
int32 InFound = 0;
int32 OutFound = 0;
int32 InOutFound = 0;
int32 PrimitiveFound = 0;
int32 UniformFound = 0;
if (DeclarationFlags & EDF_PRIMITIVE_DATA_TYPE)
{
const auto* Token = Scanner.GetCurrentToken();
if (Token && Token->Token == EHlslToken::Identifier)
{
if (Token->String == TEXT("point") ||
Token->String == TEXT("line") ||
Token->String == TEXT("triangle") ||
Token->String == TEXT("Triangle") || // PSSL
Token->String == TEXT("AdjacentLine") || // PSSL
Token->String == TEXT("lineadj") ||
Token->String == TEXT("AdjacentTriangle") || // PSSL
Token->String == TEXT("triangleadj"))
{
Scanner.Advance();
++PrimitiveFound;
}
}
}
while (Scanner.HasMoreTokens())
{
bool bFound = false;
auto* Token = Scanner.GetCurrentToken();
if ((DeclarationFlags & EDF_STATIC) && Scanner.MatchToken(EHlslToken::Static))
{
++StaticFound;
Qualifier->bIsStatic = true;
if (StaticFound > 1)
{
Scanner.SourceError(TEXT("'static' found more than once!\n"));
return ParseResultError();
}
}
else if ((DeclarationFlags & EDF_SHARED) && Scanner.MatchToken(EHlslToken::GroupShared))
{
++SharedFound;
Qualifier->bShared = true;
if (SharedFound > 1)
{
Scanner.SourceError(TEXT("'groupshared' found more than once!\n"));
return ParseResultError();
}
}
else if ((DeclarationFlags & EDF_CONST_ROW_MAJOR) && Scanner.MatchToken(EHlslToken::Const))
{
++ConstFound;
Qualifier->bConstant = true;
if (ConstFound > 1)
{
Scanner.SourceError(TEXT("'const' found more than once!\n"));
return ParseResultError();
}
}
else if ((DeclarationFlags & EDF_CONST_ROW_MAJOR) && Scanner.MatchToken(EHlslToken::RowMajor))
{
++RowMajorFound;
Qualifier->bRowMajor = true;
if (RowMajorFound > 1)
{
Scanner.SourceError(TEXT("'row_major' found more than once!\n"));
return ParseResultError();
}
}
else if ((DeclarationFlags & EDF_IN_OUT) && Scanner.MatchToken(EHlslToken::In))
{
++InFound;
Qualifier->bIn = true;
if (InFound > 1)
{
Scanner.SourceError(TEXT("'in' found more than once!\n"));
return ParseResultError();
}
else if (InOutFound > 0)
{
Scanner.SourceError(TEXT("'in' can't be used with 'inout'!\n"));
return ParseResultError();
}
}
else if ((DeclarationFlags & EDF_IN_OUT) && Scanner.MatchToken(EHlslToken::Out))
{
++OutFound;
Qualifier->bOut = true;
if (OutFound > 1)
{
Scanner.SourceError(TEXT("'out' found more than once!\n"));
return ParseResultError();
}
else if (InOutFound > 0)
{
Scanner.SourceError(TEXT("'out' can't be used with 'inout'!\n"));
return ParseResultError();
}
}
else if ((DeclarationFlags & EDF_IN_OUT) && Scanner.MatchToken(EHlslToken::InOut))
{
++InOutFound;
Qualifier->bIn = true;
Qualifier->bOut = true;
if (InOutFound > 1)
{
Scanner.SourceError(TEXT("'inout' found more than once!\n"));
return ParseResultError();
}
else if (InFound > 0 || OutFound > 0)
{
Scanner.SourceError(TEXT("'inout' can't be used with 'in' or 'out'!\n"));
return ParseResultError();
}
}
else if ((DeclarationFlags & EDF_UNIFORM) && Scanner.MatchToken(EHlslToken::Uniform))
{
++UniformFound;
Qualifier->bUniform = true;
if (UniformFound > 1)
{
Scanner.SourceError(TEXT("'uniform' found more than once!\n"));
return ParseResultError();
}
}
else if ((DeclarationFlags & EDF_INTERPOLATION) && Token->Token == EHlslToken::Identifier)
{
if (Token->String == TEXT("linear"))
{
Scanner.Advance();
++InterpolationLinearFound;
Qualifier->bLinear = true;
if (InterpolationLinearFound > 1)
{
Scanner.SourceError(TEXT("'linear' found more than once!\n"));
return ParseResultError();
}
}
else if (Token->String == TEXT("centroid"))
{
Scanner.Advance();
++InterpolationCentroidFound;
Qualifier->bCentroid = true;
if (InterpolationCentroidFound > 1)
{
Scanner.SourceError(TEXT("'centroid' found more than once!\n"));
return ParseResultError();
}
}
else if (Token->String == TEXT("nointerpolation"))
{
Scanner.Advance();
++InterpolationNoInterpolationFound;
Qualifier->bNoInterpolation = true;
if (InterpolationNoInterpolationFound > 1)
{
Scanner.SourceError(TEXT("'nointerpolation' found more than once!\n"));
return ParseResultError();
}
}
else if (Token->String == TEXT("noperspective") || Token->String == TEXT("nopersp")) // PSSL nopersp
{
Scanner.Advance();
++InterpolationNoPerspectiveFound;
Qualifier->bNoPerspective = true;
if (InterpolationNoPerspectiveFound > 1)
{
Scanner.SourceError(TEXT("'noperspective' found more than once!\n"));
return ParseResultError();
}
}
else if (Token->String == TEXT("sample"))
{
Scanner.Advance();
++InterpolationSampleFound;
Qualifier->bSample = true;
if (InterpolationSampleFound > 1)
{
Scanner.SourceError(TEXT("'sample' found more than once!\n"));
return ParseResultError();
}
}
else
{
break;
}
}
else
{
break;
}
}
int32 InterpolationFound = InterpolationLinearFound + InterpolationCentroidFound + InterpolationNoInterpolationFound + InterpolationNoPerspectiveFound + InterpolationSampleFound;
if (InterpolationFound)
{
if (InterpolationLinearFound && InterpolationNoInterpolationFound)
{
Scanner.SourceError(TEXT("Can't have both 'linear' and 'nointerpolation'!\n"));
return ParseResultError();
}
if (InterpolationCentroidFound && !(InterpolationLinearFound || InterpolationNoPerspectiveFound))
{
Scanner.SourceError(TEXT("'centroid' must be used with either 'linear' or 'noperspective'!\n"));
return ParseResultError();
}
}
if (UniformFound && (OutFound || InOutFound || PrimitiveFound || SharedFound || InterpolationFound))
{
Scanner.SourceError(TEXT("'uniform' can not be used with other storage qualifiers (inout, out, nointerpolation, etc)!\n"));
return ParseResultError();
}
bOutPrimitiveFound = (PrimitiveFound > 0);
return (ConstFound + RowMajorFound + InFound + OutFound + InOutFound + StaticFound + SharedFound + PrimitiveFound + InterpolationFound + UniformFound)
? EParseResult::Matched
: EParseResult::NotMatched;
}
EParseResult ParseGeneralDeclarationNoSemicolon(FHlslScanner& Scanner, FSymbolScope* SymbolScope, int32 TypeFlags, int32 DeclarationFlags, FLinearAllocator* Allocator, AST::FDeclaratorList** OutDeclaratorList)
{
auto OriginalToken = Scanner.GetCurrentTokenIndex();
bool bPrimitiveFound = false;
auto* FullType = new(Allocator) AST::FFullySpecifiedType(Allocator, Scanner.GetCurrentToken()->SourceInfo);
auto ParseResult = ParseDeclarationStorageQualifiers(Scanner, TypeFlags, DeclarationFlags, bPrimitiveFound, &FullType->Qualifier);
if (ParseResult == EParseResult::Error)
{
return ParseResultError();
}
bool bCanBeUnmatched = (ParseResult == EParseResult::NotMatched);
auto* DeclaratorList = new(Allocator) AST::FDeclaratorList(Allocator, FullType->SourceInfo);
DeclaratorList->Type = FullType;
if (!bPrimitiveFound && (DeclarationFlags & EDF_PRIMITIVE_DATA_TYPE))
{
const auto* StreamToken = Scanner.GetCurrentToken();
if (StreamToken)
{
if (StreamToken->Token == EHlslToken::Identifier)
{
if (StreamToken->String == TEXT("PointStream") ||
StreamToken->String == TEXT("PointBuffer") || // PSSL
StreamToken->String == TEXT("LineStream") ||
StreamToken->String == TEXT("LineBuffer") || // PSSL
StreamToken->String == TEXT("TriangleStream") ||
StreamToken->String == TEXT("TriangleBuffer") || // PSSL
StreamToken->String == TEXT("InputPatch") ||
StreamToken->String == TEXT("OutputPatch"))
{
Scanner.Advance();
bCanBeUnmatched = false;
if (!Scanner.MatchToken(EHlslToken::Lower))
{
Scanner.SourceError(TEXT("Expected '<'!"));
return ParseResultError();
}
AST::FTypeSpecifier* TypeSpecifier = nullptr;
if (ParseGeneralType(Scanner, ETF_BUILTIN_NUMERIC | ETF_USER_TYPES, SymbolScope, Allocator, &TypeSpecifier) != EParseResult::Matched)
{
Scanner.SourceError(TEXT("Expected type!"));
return ParseResultError();
}
if (StreamToken->String == TEXT("InputPatch") || StreamToken->String == TEXT("OutputPatch"))
{
if (!Scanner.MatchToken(EHlslToken::Comma))
{
Scanner.SourceError(TEXT("Expected ','!"));
return ParseResultError();
}
//@todo-rco: Save this value!
auto* Elements = Scanner.GetCurrentToken();
if (!Scanner.MatchToken(EHlslToken::UnsignedIntegerConstant))
{
Scanner.SourceError(TEXT("Expected number!"));
return ParseResultError();
}
TypeSpecifier->TextureMSNumSamples = Elements->UnsignedInteger;
}
if (!Scanner.MatchToken(EHlslToken::Greater))
{
Scanner.SourceError(TEXT("Expected '>'!"));
return ParseResultError();
}
auto* IdentifierToken = Scanner.GetCurrentToken();
if (!Scanner.MatchToken(EHlslToken::Identifier))
{
Scanner.SourceError(TEXT("Expected identifier!"));
return ParseResultError();
}
TypeSpecifier->InnerType = TypeSpecifier->TypeName;
TypeSpecifier->TypeName = Allocator->Strdup(StreamToken->String);
FullType->Specifier = TypeSpecifier;
auto* Declaration = new(Allocator)AST::FDeclaration(Allocator, IdentifierToken->SourceInfo);
Declaration->Identifier = Allocator->Strdup(IdentifierToken->String);
DeclaratorList->Declarations.Add(Declaration);
*OutDeclaratorList = DeclaratorList;
return EParseResult::Matched;
}
}
}
}
if (DeclarationFlags & EDF_TEXTURE_SAMPLER_OR_BUFFER)
{
auto Result = ParseTextureOrBufferSimpleDeclaration(Scanner, SymbolScope, (DeclarationFlags & EDF_MULTIPLE) == EDF_MULTIPLE, Allocator, &DeclaratorList);
if (Result == EParseResult::Matched)
{
*OutDeclaratorList = DeclaratorList;
return EParseResult::Matched;
}
else if (Result == EParseResult::Error)
{
return ParseResultError();
}
}
const bool bAllowInitializerList = (DeclarationFlags & EDF_INITIALIZER_LIST) == EDF_INITIALIZER_LIST;
if (Scanner.MatchToken(EHlslToken::Struct))
{
auto Result = ParseStructBody(Scanner, SymbolScope, Allocator, &FullType->Specifier);
if (Result != EParseResult::Matched)
{
return ParseResultError();
}
do
{
auto* IdentifierToken = Scanner.GetCurrentToken();
if (Scanner.MatchToken(EHlslToken::Identifier))
{
//... Instance
auto* Declaration = new(Allocator) AST::FDeclaration(Allocator, IdentifierToken->SourceInfo);
Declaration->Identifier = Allocator->Strdup(IdentifierToken->String);
if (ParseDeclarationMultiArrayBracketsAndIndex(Scanner, SymbolScope, false, Allocator, Declaration) == EParseResult::Error)
{
return ParseResultError();
}
if (DeclarationFlags & EDF_INITIALIZER)
{
if (Scanner.MatchToken(EHlslToken::Equal))
{
if (ParseInitializer(Scanner, SymbolScope, bAllowInitializerList, Allocator, &Declaration->Initializer) != EParseResult::Matched)
{
Scanner.SourceError(TEXT("Invalid initializer\n"));
return ParseResultError();
}
}
}
DeclaratorList->Declarations.Add(Declaration);
}
}
while ((DeclarationFlags & EDF_MULTIPLE) == EDF_MULTIPLE && Scanner.MatchToken(EHlslToken::Comma));
*OutDeclaratorList = DeclaratorList;
}
else
{
auto Result = ParseGeneralType(Scanner, ETF_BUILTIN_NUMERIC | ETF_USER_TYPES, SymbolScope, Allocator, &FullType->Specifier);
if (Result == EParseResult::Matched)
{
bool bMatched = false;
do
{
auto* IdentifierToken = Scanner.GetCurrentToken();
if (Scanner.MatchToken(EHlslToken::Texture) || Scanner.MatchToken(EHlslToken::Sampler) || Scanner.MatchToken(EHlslToken::Buffer))
{
// Continue, handles the case of 'float3 Texture'...
}
else if (!Scanner.MatchToken(EHlslToken::Identifier))
{
Scanner.SetCurrentTokenIndex(OriginalToken);
return EParseResult::NotMatched;
}
auto* Declaration = new(Allocator) AST::FDeclaration(Allocator, IdentifierToken->SourceInfo);
Declaration->Identifier = Allocator->Strdup(IdentifierToken->String);
//AddVar
if (ParseDeclarationMultiArrayBracketsAndIndex(Scanner, SymbolScope, false, Allocator, Declaration) == EParseResult::Error)
{
return ParseResultError();
}
bool bSemanticFound = false;
if (DeclarationFlags & EDF_SEMANTIC)
{
if (Scanner.MatchToken(EHlslToken::Colon))
{
auto* Semantic = Scanner.GetCurrentToken();
if (!Scanner.MatchToken(EHlslToken::Identifier))
{
Scanner.SourceError(TEXT("Expected identifier for semantic!"));
return ParseResultError();
}
Declaration->Semantic = Allocator->Strdup(Semantic->String);
bSemanticFound = true;
}
}
if ((DeclarationFlags & EDF_INITIALIZER) && !bSemanticFound)
{
if (Scanner.MatchToken(EHlslToken::Equal))
{
if (ParseInitializer(Scanner, SymbolScope, bAllowInitializerList, Allocator, &Declaration->Initializer) != EParseResult::Matched)
{
Scanner.SourceError(TEXT("Invalid initializer\n"));
return ParseResultError();
}
}
}
DeclaratorList->Declarations.Add(Declaration);
}
while ((DeclarationFlags & EDF_MULTIPLE) == EDF_MULTIPLE && Scanner.MatchToken(EHlslToken::Comma));
*OutDeclaratorList = DeclaratorList;
}
else if (bCanBeUnmatched && Result == EParseResult::NotMatched)
{
Scanner.SetCurrentTokenIndex(OriginalToken);
return EParseResult::NotMatched;
}
}
return EParseResult::Matched;
}
EParseResult ParseGeneralDeclaration(FHlslScanner& Scanner, FSymbolScope* SymbolScope, FLinearAllocator* Allocator, AST::FDeclaratorList** OutDeclaration, int32 TypeFlags, int32 DeclarationFlags)
{
auto Result = ParseGeneralDeclarationNoSemicolon(Scanner, SymbolScope, TypeFlags, DeclarationFlags, Allocator, OutDeclaration);
if (Result == EParseResult::NotMatched || Result == EParseResult::Error)
{
return Result;
}
if (DeclarationFlags & EDF_SEMICOLON)
{
if (!Scanner.MatchToken(EHlslToken::Semicolon))
{
Scanner.SourceError(TEXT("';' expected!\n"));
return ParseResultError();
}
}
return EParseResult::Matched;
}
EParseResult ParseCBuffer(FHlslParser& Parser, FLinearAllocator* Allocator, AST::FNode** OutDeclaration)
{
const auto* Token = Parser.Scanner.GetCurrentToken();
if (!Token)
{
Parser.Scanner.SourceError(TEXT("Expected '{'!"));
return ParseResultError();
}
auto* CBuffer = new(Allocator) AST::FCBufferDeclaration(Allocator, Token->SourceInfo);
if (Parser.Scanner.MatchToken(EHlslToken::Identifier))
{
CBuffer->Name = Allocator->Strdup(Token->String);
}
bool bFoundRightBrace = false;
if (Parser.Scanner.MatchToken(EHlslToken::LeftBrace))
{
while (Parser.Scanner.HasMoreTokens())
{
if (Parser.Scanner.MatchToken(EHlslToken::RightBrace))
{
if (Parser.Scanner.MatchToken(EHlslToken::Semicolon))
{
// Optional???
}
*OutDeclaration = CBuffer;
return EParseResult::Matched;
}
AST::FDeclaratorList* Declaration = nullptr;
auto Result = ParseGeneralDeclaration(Parser.Scanner, Parser.CurrentScope, Allocator, &Declaration, 0, EDF_CONST_ROW_MAJOR | EDF_SEMICOLON | EDF_TEXTURE_SAMPLER_OR_BUFFER);
if (Result == EParseResult::Error)
{
return ParseResultError();
}
else if (Result == EParseResult::NotMatched)
{
break;
}
CBuffer->Declarations.Add(Declaration);
}
}
Parser.Scanner.SourceError(TEXT("Expected '}'!"));
return ParseResultError();
}
EParseResult ParseStructBody(FHlslScanner& Scanner, FSymbolScope* SymbolScope, FLinearAllocator* Allocator, AST::FTypeSpecifier** OutTypeSpecifier)
{
const auto* Name = Scanner.GetCurrentToken();
if (!Name)
{
return ParseResultError();
}
bool bAnonymous = true;
if (Scanner.MatchToken(EHlslToken::Identifier))
{
bAnonymous = false;
SymbolScope->Add(Name->String);
}
const TCHAR* Parent = nullptr;
if (Scanner.MatchToken(EHlslToken::Colon))
{
const auto* ParentToken = Scanner.GetCurrentToken();
if (!Scanner.MatchToken(EHlslToken::Identifier))
{
Scanner.SourceError(TEXT("Identifier expected!\n"));
return ParseResultError();
}
Parent = Allocator->Strdup(ParentToken->String);
}
if (!Scanner.MatchToken(EHlslToken::LeftBrace))
{
Scanner.SourceError(TEXT("Expected '{'!"));
return ParseResultError();
}
auto* Struct = new(Allocator) AST::FStructSpecifier(Allocator, Name->SourceInfo);
Struct->ParentName = Allocator->Strdup(Parent);
//@todo-rco: Differentiate anonymous!
Struct->Name = bAnonymous ? nullptr : Allocator->Strdup(Name->String);
bool bFoundRightBrace = false;
while (Scanner.HasMoreTokens())
{
if (Scanner.MatchToken(EHlslToken::RightBrace))
{
bFoundRightBrace = true;
break;
}
AST::FDeclaratorList* Declaration = nullptr;
auto Result = ParseGeneralDeclaration(Scanner, SymbolScope, Allocator, &Declaration, 0, EDF_CONST_ROW_MAJOR | EDF_SEMICOLON | EDF_SEMANTIC | EDF_TEXTURE_SAMPLER_OR_BUFFER | EDF_INTERPOLATION);
if (Result == EParseResult::Error)
{
return ParseResultError();
}
else if (Result == EParseResult::NotMatched)
{
break;
}
Struct->Declarations.Add(Declaration);
}
if (!bFoundRightBrace)
{
Scanner.SourceError(TEXT("Expected '}'!"));
return ParseResultError();
}
auto* TypeSpecifier = new(Allocator) AST::FTypeSpecifier(Allocator, Struct->SourceInfo);
TypeSpecifier->Structure = Struct;
*OutTypeSpecifier = TypeSpecifier;
return EParseResult::Matched;
}
EParseResult ParseFunctionParameterDeclaration(FHlslParser& Parser, FLinearAllocator* Allocator, AST::FFunction* Function)
{
bool bStrictCheck = false;
while (Parser.Scanner.HasMoreTokens())
{
AST::FDeclaratorList* Declaration = nullptr;
auto Result = ParseGeneralDeclaration(Parser.Scanner, Parser.CurrentScope, Allocator, &Declaration, 0, EDF_CONST_ROW_MAJOR | EDF_IN_OUT | EDF_TEXTURE_SAMPLER_OR_BUFFER | EDF_INITIALIZER | EDF_SEMANTIC | EDF_PRIMITIVE_DATA_TYPE | EDF_INTERPOLATION | EDF_UNIFORM);
if (Result == EParseResult::NotMatched)
{
auto* Token = Parser.Scanner.PeekToken();
if (Token->Token == EHlslToken::RightParenthesis)
{
break;
}
Parser.Scanner.SourceError(TEXT("Unknown type '") + Token->String + TEXT("'!\n"));
return ParseResultError();
}
if (Result == EParseResult::Error)
{
return ParseResultError();
}
auto* Parameter = AST::FParameterDeclarator::CreateFromDeclaratorList(Declaration, Allocator);
Function->Parameters.Add(Parameter);
if (!Parser.Scanner.MatchToken(EHlslToken::Comma))
{
break;
}
else if (Result == EParseResult::NotMatched)
{
Parser.Scanner.SourceError(TEXT("Internal error on function parameter!\n"));
return ParseResultError();
}
}
return EParseResult::Matched;
}
EParseResult ParseFunctionDeclarator(FHlslParser& Parser, FLinearAllocator* Allocator, AST::FFunction** OutFunction)
{
auto OriginalToken = Parser.Scanner.GetCurrentTokenIndex();
AST::FTypeSpecifier* TypeSpecifier = nullptr;
auto Result = ParseGeneralType(Parser.Scanner, ETF_BUILTIN_NUMERIC | ETF_SAMPLER_TEXTURE_BUFFER | ETF_USER_TYPES | ETF_ERROR_IF_NOT_USER_TYPE | ETF_VOID, Parser.CurrentScope, Allocator, &TypeSpecifier);
if (Result == EParseResult::NotMatched)
{
Parser.Scanner.SetCurrentTokenIndex(OriginalToken);
return EParseResult::NotMatched;
}
else if (Result == EParseResult::Error)
{
return Result;
}
check(Result == EParseResult::Matched);
auto* Identifier = Parser.Scanner.GetCurrentToken();
if (!Parser.Scanner.MatchToken(EHlslToken::Identifier))
{
// This could be an error... But we should allow testing for a global variable before any rash decisions
Parser.Scanner.SetCurrentTokenIndex(OriginalToken);
return EParseResult::NotMatched;
}
if (!Parser.Scanner.MatchToken(EHlslToken::LeftParenthesis))
{
// This could be an error... But we should allow testing for a global variable before any rash decisions
Parser.Scanner.SetCurrentTokenIndex(OriginalToken);
return EParseResult::NotMatched;
}
auto* Function = new(Allocator) AST::FFunction(Allocator, Identifier->SourceInfo);
Function->Identifier = Allocator->Strdup(Identifier->String);
Function->ReturnType = new(Allocator) AST::FFullySpecifiedType(Allocator, TypeSpecifier->SourceInfo);
Function->ReturnType->Specifier = TypeSpecifier;
if (Parser.Scanner.MatchToken(EHlslToken::Void))
{
// Nothing to do here...
}
else if (Parser.Scanner.MatchToken(EHlslToken::RightParenthesis))
{
goto Done;
}
else
{
Result = ParseFunctionParameterDeclaration(Parser, Allocator, Function);
if (Result == EParseResult::Error)
{
return ParseResultError();
}
}
if (!Parser.Scanner.MatchToken(EHlslToken::RightParenthesis))
{
Parser.Scanner.SourceError(TEXT("')' expected"));
return ParseResultError();
}
Done:
*OutFunction = Function;
return EParseResult::Matched;
}
EParseResult ParseStatement(FHlslParser& Parser, FLinearAllocator* Allocator, AST::FNode** OutStatement)
{
if (MatchPragma(Parser, Allocator, OutStatement))
{
return EParseResult::Matched;
}
const auto* Token = Parser.Scanner.PeekToken();
if (Token && Token->Token == EHlslToken::RightBrace)
{
return EParseResult::NotMatched;
}
return TryStatementRules(Parser, Allocator, OutStatement);
}
EParseResult ParseStatementBlock(FHlslParser& Parser, FLinearAllocator* Allocator, AST::FNode** OutStatement)
{
FCreateSymbolScope SymbolScope(Allocator, &Parser.CurrentScope);
auto* Block = new(Allocator) AST::FCompoundStatement(Allocator, Parser.Scanner.GetCurrentToken()->SourceInfo);
while (Parser.Scanner.HasMoreTokens())
{
AST::FNode* Statement = nullptr;
auto Result = ParseStatement(Parser, Allocator, &Statement);
if (Result == EParseResult::NotMatched)
{
if (Parser.Scanner.MatchToken(EHlslToken::RightBrace))
{
*OutStatement = Block;
return EParseResult::Matched;
}
else
{
Parser.Scanner.SourceError(TEXT("Statement expected!"));
break;
}
}
else if (Result == EParseResult::Error)
{
break;
}
if (Statement)
{
Block->Statements.Add(Statement);
}
}
Parser.Scanner.SourceError(TEXT("'}' expected!"));
return ParseResultError();
}
EParseResult ParseFunctionDeclaration(FHlslParser& Parser, FLinearAllocator* Allocator, TLinearArray<AST::FAttribute*>& Attributes, AST::FNode** OutFunction)
{
const auto* CurrentToken = Parser.Scanner.GetCurrentToken();
AST::FFunction* Function = nullptr;
EParseResult Result = ParseFunctionDeclarator(Parser, Allocator, &Function);
if (Result == EParseResult::NotMatched || Result == EParseResult::Error)
{
return Result;
}
if (Parser.Scanner.MatchToken(EHlslToken::Semicolon))
{
check(0);
// Forward declare
return EParseResult::Matched;
}
else
{
// Optional semantic
if (Parser.Scanner.MatchToken(EHlslToken::Colon))
{
const auto* Semantic = Parser.Scanner.GetCurrentToken();
if (!Parser.Scanner.MatchToken(EHlslToken::Identifier))
{
Parser.Scanner.SourceError(TEXT("Identifier for semantic expected"));
return ParseResultError();
}
Function->ReturnSemantic = Allocator->Strdup(Semantic->String);
}
if (!Parser.Scanner.MatchToken(EHlslToken::LeftBrace))
{
Parser.Scanner.SourceError(TEXT("'{' expected"));
return ParseResultError();
}
if (Attributes.Num() > 0)
{
Function->Attributes = Attributes;
}
auto* FunctionDefinition = new(Allocator) AST::FFunctionDefinition(Allocator, CurrentToken->SourceInfo);
AST::FNode* Body = nullptr;
Result = ParseStatementBlock(Parser, Allocator, &Body);
if (Result == EParseResult::Matched)
{
FunctionDefinition->Body = (AST::FCompoundStatement*)Body;
FunctionDefinition->Prototype = Function;
*OutFunction = FunctionDefinition;
}
}
return Result;
}
EParseResult ParseLocalDeclaration(FHlslParser& Parser, FLinearAllocator* Allocator, AST::FNode** OutDeclaration)
{
AST::FDeclaratorList* List = nullptr;
auto Result = ParseGeneralDeclaration(Parser.Scanner, Parser.CurrentScope, Allocator, &List, 0, EDF_CONST_ROW_MAJOR | EDF_INITIALIZER | EDF_INITIALIZER_LIST | EDF_SEMICOLON | EDF_MULTIPLE | EDF_STATIC);
*OutDeclaration = List;
return Result;
}
EParseResult ParseGlobalVariableDeclaration(FHlslParser& Parser, FLinearAllocator* Allocator, AST::FNode** OutDeclaration)
{
AST::FDeclaratorList* List = nullptr;
auto Result = ParseGeneralDeclaration(Parser.Scanner, Parser.CurrentScope, Allocator, &List, ETF_USER_TYPES | ETF_ERROR_IF_NOT_USER_TYPE, EDF_CONST_ROW_MAJOR | EDF_STATIC | EDF_SHARED | EDF_TEXTURE_SAMPLER_OR_BUFFER | EDF_INITIALIZER | EDF_INITIALIZER_LIST | EDF_SEMICOLON | EDF_MULTIPLE | EDF_UNIFORM | EDF_INTERPOLATION);
*OutDeclaration = List;
return Result;
}
EParseResult ParseReturnStatement(FHlslParser& Parser, FLinearAllocator* Allocator, AST::FNode** OutStatement)
{
auto* Statement = new(Allocator) AST::FJumpStatement(Allocator, AST::EJumpType::Return, Parser.Scanner.GetCurrentToken()->SourceInfo);
if (Parser.Scanner.MatchToken(EHlslToken::Semicolon))
{
*OutStatement = Statement;
return EParseResult::Matched;
}
if (ParseExpression(Parser.Scanner, Parser.CurrentScope, true, Allocator, &Statement->OptionalExpression) != EParseResult::Matched)
{
Parser.Scanner.SourceError(TEXT("Expression expected"));
return ParseResultError();
}
if (!Parser.Scanner.MatchToken(EHlslToken::Semicolon))
{
Parser.Scanner.SourceError(TEXT("';' expected"));
return ParseResultError();
}
*OutStatement = Statement;
return EParseResult::Matched;
}
EParseResult ParseDoStatement(FHlslParser& Parser, FLinearAllocator* Allocator, AST::FNode** OutStatement)
{
FCreateSymbolScope SymbolScope(Allocator, &Parser.CurrentScope);
const auto* Token = Parser.Scanner.GetCurrentToken();
AST::FNode* Body = nullptr;
auto Result = ParseStatement(Parser, Allocator, &Body);
if (Result != EParseResult::Matched)
{
return ParseResultError();
}
if (!Parser.Scanner.MatchToken(EHlslToken::While))
{
Parser.Scanner.SourceError(TEXT("'while' expected"));
return ParseResultError();
}
if (!Parser.Scanner.MatchToken(EHlslToken::LeftParenthesis))
{
Parser.Scanner.SourceError(TEXT("'(' expected"));
return ParseResultError();
}
AST::FExpression* ConditionExpression = nullptr;
if (ParseExpression(Parser.Scanner, Parser.CurrentScope, true, Allocator, &ConditionExpression) != EParseResult::Matched)
{
Parser.Scanner.SourceError(TEXT("Expression expected"));
return ParseResultError();
}
if (!Parser.Scanner.MatchToken(EHlslToken::RightParenthesis))
{
Parser.Scanner.SourceError(TEXT("')' expected"));
return ParseResultError();
}
if (!Parser.Scanner.MatchToken(EHlslToken::Semicolon))
{
Parser.Scanner.SourceError(TEXT("';' expected"));
return ParseResultError();
}
auto* DoWhile = new(Allocator) AST::FIterationStatement(Allocator, Token->SourceInfo, AST::EIterationType::DoWhile);
DoWhile->Condition = ConditionExpression;
DoWhile->Body = Body;
*OutStatement = DoWhile;
return EParseResult::Matched;
}
EParseResult ParseWhileStatement(FHlslParser& Parser, FLinearAllocator* Allocator, AST::FNode** OutStatement)
{
FCreateSymbolScope SymbolScope(Allocator, &Parser.CurrentScope);
const auto* Token = Parser.Scanner.GetCurrentToken();
if (!Parser.Scanner.MatchToken(EHlslToken::LeftParenthesis))
{
Parser.Scanner.SourceError(TEXT("'(' expected"));
return ParseResultError();
}
AST::FExpression* ConditionExpression = nullptr;
if (ParseExpression(Parser.Scanner, Parser.CurrentScope, true, Allocator, &ConditionExpression) != EParseResult::Matched)
{
Parser.Scanner.SourceError(TEXT("Expression expected"));
return ParseResultError();
}
if (!Parser.Scanner.MatchToken(EHlslToken::RightParenthesis))
{
Parser.Scanner.SourceError(TEXT("')' expected"));
return ParseResultError();
}
AST::FNode* Body = nullptr;
auto Result = ParseStatement(Parser, Allocator, &Body);
if (Result != EParseResult::Matched)
{
return ParseResultError();
}
auto* While = new(Allocator) AST::FIterationStatement(Allocator, Token->SourceInfo, AST::EIterationType::While);
While->Condition = ConditionExpression;
While->Body = Body;
*OutStatement = While;
return EParseResult::Matched;
}
EParseResult ParseForStatement(FHlslParser& Parser, FLinearAllocator* Allocator, AST::FNode** OutStatement)
{
FCreateSymbolScope SymbolScope(Allocator, &Parser.CurrentScope);
const auto* Token = Parser.Scanner.GetCurrentToken();
if (!Parser.Scanner.MatchToken(EHlslToken::LeftParenthesis))
{
Parser.Scanner.SourceError(TEXT("Expected '('!\n"));
return ParseResultError();
}
AST::FNode* InitExpression = nullptr;
if (Parser.Scanner.MatchToken(EHlslToken::Semicolon))
{
// Do nothing...
}
else
{
auto Result = ParseLocalDeclaration(Parser, Allocator, &InitExpression);
if (Result == EParseResult::Error)
{
Parser.Scanner.SourceError(TEXT("Expected expression or declaration!\n"));
return ParseResultError();
}
else if (Result == EParseResult::NotMatched)
{
Result = ParseExpressionStatement(Parser, Allocator, &InitExpression);
if (Result == EParseResult::Error)
{
Parser.Scanner.SourceError(TEXT("Expected expression or declaration!\n"));
return ParseResultError();
}
}
}
AST::FExpression* ConditionExpression = nullptr;
auto Result = ParseExpression(Parser.Scanner, Parser.CurrentScope, true, Allocator, &ConditionExpression);
if (Result == EParseResult::Error)
{
Parser.Scanner.SourceError(TEXT("Expected expression or declaration!\n"));
return ParseResultError();
}
if (!Parser.Scanner.MatchToken(EHlslToken::Semicolon))
{
Parser.Scanner.SourceError(TEXT("Expected ';'!\n"));
return ParseResultError();
}
AST::FExpression* RestExpression = nullptr;
Result = ParseExpression(Parser.Scanner, Parser.CurrentScope, true, Allocator, &RestExpression);
if (Result == EParseResult::Error)
{
Parser.Scanner.SourceError(TEXT("Expected expression or declaration!\n"));
return ParseResultError();
}
if (!Parser.Scanner.MatchToken(EHlslToken::RightParenthesis))
{
Parser.Scanner.SourceError(TEXT("Expected ')'!\n"));
return ParseResultError();
}
AST::FNode* Body = nullptr;
Result = ParseStatement(Parser, Allocator, &Body);
if (Result != EParseResult::Matched)
{
return ParseResultError();
}
auto* For = new(Allocator) AST::FIterationStatement(Allocator, Token->SourceInfo, AST::EIterationType::For);
For->InitStatement = InitExpression;
For->Condition = ConditionExpression;
For->RestExpression = RestExpression;
For->Body = Body;
*OutStatement = For;
return EParseResult::Matched;
}
EParseResult ParseIfStatement(FHlslParser& Parser, FLinearAllocator* Allocator, AST::FNode** OutStatement)
{
FCreateSymbolScope SymbolScope(Allocator, &Parser.CurrentScope);
auto* Statement = new(Allocator) AST::FSelectionStatement(Allocator, Parser.Scanner.GetCurrentToken()->SourceInfo);
if (!Parser.Scanner.MatchToken(EHlslToken::LeftParenthesis))
{
Parser.Scanner.SourceError(TEXT("'(' expected"));
return ParseResultError();
}
if (ParseExpression(Parser.Scanner, Parser.CurrentScope, true, Allocator, &Statement->Condition) != EParseResult::Matched)
{
Parser.Scanner.SourceError(TEXT("Expression expected"));
return ParseResultError();
}
if (!Parser.Scanner.MatchToken(EHlslToken::RightParenthesis))
{
Parser.Scanner.SourceError(TEXT("')' expected"));
return ParseResultError();
}
if (ParseStatement(Parser, Allocator, &Statement->ThenStatement) != EParseResult::Matched)
{
Parser.Scanner.SourceError(TEXT("Statement expected"));
return ParseResultError();
}
if (Parser.Scanner.MatchToken(EHlslToken::Else))
{
if (ParseStatement(Parser, Allocator, &Statement->ElseStatement) != EParseResult::Matched)
{
Parser.Scanner.SourceError(TEXT("Statement expected"));
return ParseResultError();
}
}
*OutStatement = Statement;
return EParseResult::Matched;
}
EParseResult ParseAttributeArgList(FHlslScanner& Scanner, FSymbolScope* SymbolScope, FLinearAllocator* Allocator, AST::FAttribute* OutAttribute)
{
while (Scanner.HasMoreTokens())
{
const auto* Token = Scanner.PeekToken();
if (Scanner.MatchToken(EHlslToken::RightParenthesis))
{
return EParseResult::Matched;
}
bool bMultiple = false;
do
{
bMultiple = false;
Token = Scanner.PeekToken();
if (Scanner.MatchToken(EHlslToken::StringConstant))
{
auto* Arg = new(Allocator) AST::FAttributeArgument(Allocator, Token->SourceInfo);
Arg->StringArgument = Allocator->Strdup(Token->String);
OutAttribute->Arguments.Add(Arg);
}
else
{
AST::FExpression* Expression = nullptr;
EParseResult Result = ParseExpression(Scanner, SymbolScope, false, Allocator, &Expression);
if (Result != EParseResult::Matched)
{
Scanner.SourceError(TEXT("Incorrect attribute expression!\n"));
return ParseResultError();
}
auto* Arg = new(Allocator) AST::FAttributeArgument(Allocator, Token->SourceInfo);
Arg->ExpressionArgument = Expression;
OutAttribute->Arguments.Add(Arg);
}
if (Scanner.MatchToken(EHlslToken::Comma))
{
bMultiple = true;
}
}
while (bMultiple);
}
return ParseResultError();
}
EParseResult TryParseAttribute(FHlslParser& Parser, FLinearAllocator* Allocator, AST::FAttribute** OutAttribute)
{
const auto* Token = Parser.Scanner.GetCurrentToken();
if (Parser.Scanner.MatchToken(EHlslToken::LeftSquareBracket))
{
auto* Identifier = Parser.Scanner.GetCurrentToken();
if (!Parser.Scanner.MatchToken(EHlslToken::Identifier))
{
Parser.Scanner.SourceError(TEXT("Incorrect attribute\n"));
return ParseResultError();
}
auto* Attribute = new(Allocator) AST::FAttribute(Allocator, Token->SourceInfo, Allocator->Strdup(Identifier->String));
if (Parser.Scanner.MatchToken(EHlslToken::LeftParenthesis))
{
auto Result = ParseAttributeArgList(Parser.Scanner, Parser.CurrentScope, Allocator, Attribute);
if (Result != EParseResult::Matched)
{
Parser.Scanner.SourceError(TEXT("Incorrect attribute! Expected ')'.\n"));
return ParseResultError();
}
}
if (!Parser.Scanner.MatchToken(EHlslToken::RightSquareBracket))
{
Parser.Scanner.SourceError(TEXT("Incorrect attribute\n"));
return ParseResultError();
}
*OutAttribute = Attribute;
return EParseResult::Matched;
}
return EParseResult::NotMatched;
}
EParseResult ParseSwitchBody(FHlslParser& Parser, FLinearAllocator* Allocator, AST::FSwitchBody** OutBody)
{
const auto* Token = Parser.Scanner.GetCurrentToken();
if (!Parser.Scanner.MatchToken(EHlslToken::LeftBrace))
{
Parser.Scanner.SourceError(TEXT("'{' expected"));
return ParseResultError();
}
auto* Body = new(Allocator) AST::FSwitchBody(Allocator, Token->SourceInfo);
// Empty switch
if (Parser.Scanner.MatchToken(EHlslToken::RightBrace))
{
*OutBody = Body;
return EParseResult::Matched;
}
Body->CaseList = new(Allocator) AST::FCaseStatementList(Allocator, Token->SourceInfo);
bool bDefaultFound = false;
while (Parser.Scanner.HasMoreTokens())
{
Token = Parser.Scanner.GetCurrentToken();
if (Parser.Scanner.MatchToken(EHlslToken::RightBrace))
{
break;
}
auto* Labels = new(Allocator) AST::FCaseLabelList(Allocator, Token->SourceInfo);
auto* CaseStatement = new(Allocator) AST::FCaseStatement(Allocator, Token->SourceInfo, Labels);
// Case labels
bool bLabelFound = false;
do
{
bLabelFound = false;
AST::FCaseLabel* Label = nullptr;
Token = Parser.Scanner.GetCurrentToken();
if (Parser.Scanner.MatchToken(EHlslToken::Default))
{
if (bDefaultFound)
{
Parser.Scanner.SourceError(TEXT("'default' found twice on switch() statement!"));
return ParseResultError();
}
if (!Parser.Scanner.MatchToken(EHlslToken::Colon))
{
Parser.Scanner.SourceError(TEXT("':' expected"));
return ParseResultError();
}
Label = new(Allocator) AST::FCaseLabel(Allocator, Token->SourceInfo, nullptr);
bDefaultFound = true;
bLabelFound = true;
}
else if (Parser.Scanner.MatchToken(EHlslToken::Case))
{
AST::FExpression* CaseExpression = nullptr;
if (ParseExpression(Parser.Scanner, Parser.CurrentScope, true, Allocator, &CaseExpression) != EParseResult::Matched)
{
Parser.Scanner.SourceError(TEXT("Expression expected on case label!"));
return ParseResultError();
}
if (!Parser.Scanner.MatchToken(EHlslToken::Colon))
{
Parser.Scanner.SourceError(TEXT("':' expected"));
return ParseResultError();
}
Label = new(Allocator) AST::FCaseLabel(Allocator, Token->SourceInfo, CaseExpression);
bLabelFound = true;
}
if (Label)
{
CaseStatement->Labels->Labels.Add(Label);
}
}
while (bLabelFound);
// Statements
Token = Parser.Scanner.GetCurrentToken();
bool bMatchedOnce = false;
while (Parser.Scanner.HasMoreTokens())
{
auto* Peek = Parser.Scanner.PeekToken();
if (!Peek)
{
break;
}
else if (Peek->Token == EHlslToken::RightBrace)
{
// End of switch
break;
}
else if (Peek->Token == EHlslToken::Case || Peek->Token == EHlslToken::Default)
{
// Next CaseStatement
break;
}
else
{
AST::FNode* Statement = nullptr;
auto Result = ParseStatement(Parser, Allocator, &Statement);
if (Result == EParseResult::Error)
{
return ParseResultError();
}
else if (Result == EParseResult::NotMatched)
{
Parser.Scanner.SourceError(TEXT("Internal Error parsing statment inside case list"));
return ParseResultError();
}
else
{
CaseStatement->Statements.Add(Statement);
}
}
}
Body->CaseList->Cases.Add(CaseStatement);
}
*OutBody = Body;
return EParseResult::Matched;
}
EParseResult ParseSwitchStatement(FHlslParser& Parser, FLinearAllocator* Allocator, AST::FNode** OutStatement)
{
const auto* Token = Parser.Scanner.GetCurrentToken();
if (!Parser.Scanner.MatchToken(EHlslToken::LeftParenthesis))
{
Parser.Scanner.SourceError(TEXT("'(' expected"));
return ParseResultError();
}
AST::FExpression* Condition = nullptr;
if (ParseExpression(Parser.Scanner, Parser.CurrentScope, false, Allocator, &Condition) != EParseResult::Matched)
{
Parser.Scanner.SourceError(TEXT("Expression expected"));
return ParseResultError();
}
if (!Parser.Scanner.MatchToken(EHlslToken::RightParenthesis))
{
Parser.Scanner.SourceError(TEXT("')' expected"));
return ParseResultError();
}
AST::FSwitchBody* Body = nullptr;
if (ParseSwitchBody(Parser, Allocator, &Body) != EParseResult::Matched)
{
return ParseResultError();
}
auto* Switch = new(Allocator) AST::FSwitchStatement(Allocator, Token->SourceInfo, Condition, Body);
*OutStatement = Switch;
return EParseResult::Matched;
}
EParseResult ParseExpressionStatement(FHlslParser& Parser, FLinearAllocator* Allocator, AST::FNode** OutStatement)
{
auto OriginalToken = Parser.Scanner.GetCurrentTokenIndex();
auto* Statement = new(Allocator) AST::FExpressionStatement(Allocator, nullptr, Parser.Scanner.GetCurrentToken()->SourceInfo);
if (ParseExpression(Parser.Scanner, Parser.CurrentScope, true, Allocator, &Statement->Expression) == EParseResult::Matched)
{
if (Parser.Scanner.MatchToken(EHlslToken::Semicolon))
{
*OutStatement = Statement;
return EParseResult::Matched;
}
}
Parser.Scanner.SetCurrentTokenIndex(OriginalToken);
return EParseResult::NotMatched;
}
EParseResult ParseEmptyStatement(FHlslParser& Parser, FLinearAllocator* Allocator, AST::FNode** OutStatement)
{
check(*OutStatement == nullptr);
// Nothing to do here...
return EParseResult::Matched;
}
EParseResult ParseBreakStatement(FHlslParser& Parser, FLinearAllocator* Allocator, AST::FNode** OutStatement)
{
check(*OutStatement == nullptr);
auto* Statement = new(Allocator) AST::FJumpStatement(Allocator, AST::EJumpType::Break, Parser.Scanner.PeekToken(-1)->SourceInfo);
if (Parser.Scanner.MatchToken(EHlslToken::Semicolon))
{
*OutStatement = Statement;
return EParseResult::Matched;
}
return ParseResultError();
}
EParseResult ParseContinueStatement(FHlslParser& Parser, FLinearAllocator* Allocator, AST::FNode** OutStatement)
{
check(*OutStatement == nullptr);
auto* Statement = new(Allocator) AST::FJumpStatement(Allocator, AST::EJumpType::Continue, Parser.Scanner.PeekToken(-1)->SourceInfo);
if (Parser.Scanner.MatchToken(EHlslToken::Semicolon))
{
*OutStatement = Statement;
return EParseResult::Matched;
}
return ParseResultError();
}
EParseResult TryTranslationUnit(FHlslParser& Parser, FLinearAllocator* Allocator, AST::FNode** OutNode)
{
if (MatchPragma(Parser, Allocator, OutNode))
{
return EParseResult::Matched;
}
if (Parser.Scanner.MatchToken(EHlslToken::CBuffer))
{
auto Result = ParseCBuffer(Parser, Allocator, OutNode);
if (Result == EParseResult::Error || Result == EParseResult::Matched)
{
return Result;
}
}
// Match Attributes
TLinearArray<AST::FAttribute*> Attributes(Allocator);
while (Parser.Scanner.HasMoreTokens())
{
const auto* Peek = Parser.Scanner.GetCurrentToken();
if (Peek->Token == EHlslToken::LeftSquareBracket)
{
AST::FAttribute* Attribute = nullptr;
auto Result = TryParseAttribute(Parser, Allocator, &Attribute);
if (Result == EParseResult::Matched)
{
Attributes.Add(Attribute);
continue;
}
else if (Result == EParseResult::Error)
{
return ParseResultError();
}
}
break;
}
const auto* Peek = Parser.Scanner.GetCurrentToken();
if (!Peek)
{
return ParseResultError();
}
auto Result = ParseFunctionDeclaration(Parser, Allocator, Attributes, OutNode);
if (Result == EParseResult::Error || Result == EParseResult::Matched)
{
return Result;
}
Result = ParseGlobalVariableDeclaration(Parser, Allocator, OutNode);
if (Result == EParseResult::Error || Result == EParseResult::Matched)
{
return Result;
}
Parser.Scanner.SourceError(TEXT("Unable to match rule!"));
return ParseResultError();
}
namespace ParserRules
{
static struct FStaticInitializer
{
FStaticInitializer()
{
RulesStatements.Add(FRulePair(EHlslToken::LeftBrace, ParseStatementBlock));
RulesStatements.Add(FRulePair(EHlslToken::Return, ParseReturnStatement));
RulesStatements.Add(FRulePair(EHlslToken::Do, ParseDoStatement));
RulesStatements.Add(FRulePair(EHlslToken::While, ParseWhileStatement, true));
RulesStatements.Add(FRulePair(EHlslToken::For, ParseForStatement, true));
RulesStatements.Add(FRulePair(EHlslToken::If, ParseIfStatement, true));
RulesStatements.Add(FRulePair(EHlslToken::Switch, ParseSwitchStatement, true));
RulesStatements.Add(FRulePair(EHlslToken::Semicolon, ParseEmptyStatement));
RulesStatements.Add(FRulePair(EHlslToken::Break, ParseBreakStatement));
RulesStatements.Add(FRulePair(EHlslToken::Continue, ParseContinueStatement));
RulesStatements.Add(FRulePair(EHlslToken::Invalid, ParseLocalDeclaration));
// Always try expressions last
RulesStatements.Add(FRulePair(EHlslToken::Invalid, ParseExpressionStatement));
}
} GStaticInitializer;
}
FHlslParser::FHlslParser(FLinearAllocator* InAllocator, FCompilerMessages& InCompilerMessages) :
Scanner(InCompilerMessages),
CompilerMessages(InCompilerMessages),
GlobalScope(InAllocator, nullptr),
Namespaces(InAllocator, nullptr),
Allocator(InAllocator)
{
CurrentScope = &GlobalScope;
{
FCreateSymbolScope SceScope(Allocator, &CurrentScope);
CurrentScope->Name = TEXT("sce");
{
FCreateSymbolScope GnmScope(Allocator, &CurrentScope);
CurrentScope->Name = TEXT("Gnm");
CurrentScope->Add(TEXT("Sampler")); // sce::Gnm::Sampler
CurrentScope->Add(TEXT("kAnisotropyRatio1")); // sce::Gnm::kAnisotropyRatio1
CurrentScope->Add(TEXT("kBorderColorTransBlack")); // sce::Gnm::kBorderColorTransBlack
CurrentScope->Add(TEXT("kDepthCompareNever")); // sce::Gnm::kDepthCompareNever
}
//auto* Found = CurrentScope->FindGlobalNamespace(TEXT("sce"), CurrentScope);
//Found = Found->FindNamespace(TEXT("Gnm"));
//Found->FindType(Found, TEXT("Sampler"), false);
}
}
namespace Parser
{
bool Parse(const FString& Input, const FString& Filename, FCompilerMessages& OutCompilerMessages, TCallback* Callback, void* CallbackData)
{
FLinearAllocator Allocator;
FHlslParser Parser(&Allocator, OutCompilerMessages);
if (!Parser.Scanner.Lex(Input, Filename))
{
return false;
}
IR::FIRCreator IRCreator(&Allocator);
bool bSuccess = true;
TLinearArray<AST::FNode*> Nodes(&Allocator);
while (Parser.Scanner.HasMoreTokens())
{
auto LastIndex = Parser.Scanner.GetCurrentTokenIndex();
static FString GlobalDeclOrDefinition(TEXT("Global declaration or definition"));
AST::FNode* Node = nullptr;
auto Result = TryTranslationUnit(Parser, &Allocator, &Node);
if (Result == EParseResult::Error)
{
bSuccess = false;
break;
}
else
{
check(Result == EParseResult::Matched);
Nodes.Add(Node);
}
check(LastIndex != Parser.Scanner.GetCurrentTokenIndex());
}
if (bSuccess && Callback)
{
Callback(CallbackData, &Allocator, Nodes);
}
return bSuccess;
}
bool Parse(const FString& Input, const FString& Filename, FCompilerMessages& OutCompilerMessages, TFunction< void(CrossCompiler::FLinearAllocator* Allocator, CrossCompiler::TLinearArray<CrossCompiler::AST::FNode*>& ASTNodes)> Function)
{
FLinearAllocator Allocator;
FHlslParser Parser(&Allocator, OutCompilerMessages);
if (!Parser.Scanner.Lex(Input, Filename))
{
return false;
}
IR::FIRCreator IRCreator(&Allocator);
bool bSuccess = true;
TLinearArray<AST::FNode*> Nodes(&Allocator);
while (Parser.Scanner.HasMoreTokens())
{
auto LastIndex = Parser.Scanner.GetCurrentTokenIndex();
static FString GlobalDeclOrDefinition(TEXT("Global declaration or definition"));
AST::FNode* Node = nullptr;
auto Result = TryTranslationUnit(Parser, &Allocator, &Node);
if (Result == EParseResult::Error)
{
bSuccess = false;
break;
}
else
{
check(Result == EParseResult::Matched);
/*
if (bDump && Node)
{
Node->Dump(0);
}
*/
Nodes.Add(Node);
}
check(LastIndex != Parser.Scanner.GetCurrentTokenIndex());
}
if (bSuccess)
{
Function(&Allocator, Nodes);
}
return bSuccess;
}
void WriteNodesToString(void* OutFStringPointer, CrossCompiler::FLinearAllocator* Allocator, CrossCompiler::TLinearArray<CrossCompiler::AST::FNode*>& ASTNodes)
{
check(OutFStringPointer);
FString& OutGeneratedCode = *(FString*)OutFStringPointer;
CrossCompiler::AST::FASTWriter Writer(OutGeneratedCode);
for (auto* Node : ASTNodes)
{
Node->Write(Writer);
}
}
}
}
| [
"tungnt.rec@gmail.com"
] | tungnt.rec@gmail.com |
1db9539d2b42ef15f948549dc0e65765ba600950 | 3570cc56bb2337bbe81000f9a8d99fd4b6a694ff | /src/file_io.h | bb350a73a7273a8e4f18649d1cb2b18871ee99bd | [] | no_license | Marcus-Zhu/bwi_pcl_detection | e795294674b9add1895dfbbab6bfadbd78ad69b6 | 354606f1ef9c76b79182d3cfc219728d396b006c | refs/heads/master | 2021-04-30T23:06:46.812661 | 2016-12-08T21:53:09 | 2016-12-08T21:53:09 | 73,862,655 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,499 | h | #include <signal.h>
#include <vector>
#include <string.h>
#include <ros/ros.h>
#include <sensor_msgs/PointCloud2.h>
// PCL specific includes
#include <pcl/conversions.h>
#include <pcl_conversions/pcl_conversions.h>
#include <pcl/point_cloud.h>
#include <pcl/console/parse.h>
#include <pcl/point_types.h>
#include <pcl/visualization/pcl_visualizer.h>
#include <pcl/io/openni_grabber.h>
#include <pcl/sample_consensus/sac_model_plane.h>
#include <pcl/people/ground_based_people_detection_app.h>
#include <pcl/common/time.h>
Eigen::VectorXf load_vector_from_file(const char *filename, int n){
Eigen::VectorXf c;
c.resize(n);
FILE *fp = fopen(filename,"r");
if (fp == NULL){
ROS_WARN("File %s does not exist!",filename);
return c;
}
for (int j = 0; j < n; j++){
float f;
int r = fscanf(fp,"%f\t",&f);
if (r > 0)
c(j)=f;
}
return c;
}
void write_vector_to_file(const char *filename, Eigen::VectorXf V, int n){
FILE *fp = fopen(filename,"w");
for (int j = 0; j < n; j++)
fprintf(fp,"%f\t",V(j));
fprintf(fp,"\n");
fclose(fp);
}
void write_pos_to_file(const char *filename, geometry_msgs::PoseStamped stampOut){
std::ofstream file;
file.open(filename, std::ofstream::out | std::ofstream::app);
if (file.is_open()){
file << stampOut.header.stamp << "\t"
<< stampOut.pose.position.x << "\t"
<< stampOut.pose.position.y << "\t"
<< stampOut.pose.position.z << endl;
file.close();
}
}
| [
"txyzzyl@gmail.com"
] | txyzzyl@gmail.com |
d52b261f368149810b63126601fe68d88fae74ff | c0af2944fb821b4babe3a7033fa253f6bf3397b3 | /src/util.h | 7b4f52298bd6f0f1c7a61a2aa45c3869f2274a9e | [
"MIT"
] | permissive | Snooker-tech/SNK-Coin | a99cde84e3b928e91c4873fa5aeda425f5730a96 | feff26ea83ed3526c30dfed0cd1d46424efd5ef4 | refs/heads/master | 2021-07-25T07:36:58.112262 | 2017-11-07T14:52:35 | 2017-11-07T14:52:35 | 109,846,237 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 16,283 | h | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2012 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_UTIL_H
#define BITCOIN_UTIL_H
#include "uint256.h"
#include <stdarg.h>
#ifndef WIN32
#include <sys/types.h>
#include <sys/time.h>
#include <sys/resource.h>
#else
typedef int pid_t; /* define for Windows compatibility */
#endif
#include <map>
#include <list>
#include <utility>
#include <vector>
#include <string>
#include <boost/thread.hpp>
#include <boost/filesystem.hpp>
#include <boost/filesystem/path.hpp>
#include <boost/date_time/gregorian/gregorian_types.hpp>
#include <boost/date_time/posix_time/posix_time_types.hpp>
#include "netbase.h" // for AddTimeData
typedef long long int64;
typedef unsigned long long uint64;
static const int64 COIN = 100000;
static const int64 CENT = COIN / 100;
#define loop for (;;)
#define BEGIN(a) ((char*)&(a))
#define END(a) ((char*)&((&(a))[1]))
#define UBEGIN(a) ((unsigned char*)&(a))
#define UEND(a) ((unsigned char*)&((&(a))[1]))
#define ARRAYLEN(array) (sizeof(array)/sizeof((array)[0]))
#ifndef PRI64d
#if defined(_MSC_VER) || defined(__MSVCRT__)
#define PRI64d "I64d"
#define PRI64u "I64u"
#define PRI64x "I64x"
#else
#define PRI64d "lld"
#define PRI64u "llu"
#define PRI64x "llx"
#endif
#endif
/* Format characters for (s)size_t and ptrdiff_t */
#if defined(_MSC_VER) || defined(__MSVCRT__)
/* (s)size_t and ptrdiff_t have the same size specifier in MSVC:
http://msdn.microsoft.com/en-us/library/tcxf1dw6%28v=vs.100%29.aspx
*/
#define PRIszx "Ix"
#define PRIszu "Iu"
#define PRIszd "Id"
#define PRIpdx "Ix"
#define PRIpdu "Iu"
#define PRIpdd "Id"
#else /* C99 standard */
#define PRIszx "zx"
#define PRIszu "zu"
#define PRIszd "zd"
#define PRIpdx "tx"
#define PRIpdu "tu"
#define PRIpdd "td"
#endif
// This is needed because the foreach macro can't get over the comma in pair<t1, t2>
#define PAIRTYPE(t1, t2) std::pair<t1, t2>
// Align by increasing pointer, must have extra space at end of buffer
template <size_t nBytes, typename T>
T* alignup(T* p)
{
union
{
T* ptr;
size_t n;
} u;
u.ptr = p;
u.n = (u.n + (nBytes-1)) & ~(nBytes-1);
return u.ptr;
}
#ifdef WIN32
#define MSG_NOSIGNAL 0
#define MSG_DONTWAIT 0
#ifndef S_IRUSR
#define S_IRUSR 0400
#define S_IWUSR 0200
#endif
#else
#define MAX_PATH 1024
#endif
inline void MilliSleep(int64 n)
{
#if BOOST_VERSION >= 105000
boost::this_thread::sleep_for(boost::chrono::milliseconds(n));
#else
boost::this_thread::sleep(boost::posix_time::milliseconds(n));
#endif
}
/* This GNU C extension enables the compiler to check the format string against the parameters provided.
* X is the number of the "format string" parameter, and Y is the number of the first variadic parameter.
* Parameters count from 1.
*/
#ifdef __GNUC__
#define ATTR_WARN_PRINTF(X,Y) __attribute__((format(printf,X,Y)))
#else
#define ATTR_WARN_PRINTF(X,Y)
#endif
extern std::map<std::string, std::string> mapArgs;
extern std::map<std::string, std::vector<std::string> > mapMultiArgs;
extern bool fDebug;
extern bool fDebugNet;
extern bool fPrintToConsole;
extern bool fPrintToDebugger;
extern bool fDaemon;
extern bool fServer;
extern bool fCommandLine;
extern std::string strMiscWarning;
extern bool fTestNet;
extern bool fNoListen;
extern bool fLogTimestamps;
extern volatile bool fReopenDebugLog;
void RandAddSeed();
void RandAddSeedPerfmon();
int ATTR_WARN_PRINTF(1,2) OutputDebugStringF(const char* pszFormat, ...);
/*
Rationale for the real_strprintf / strprintf construction:
It is not allowed to use va_start with a pass-by-reference argument.
(C++ standard, 18.7, paragraph 3). Use a dummy argument to work around this, and use a
macro to keep similar semantics.
*/
/** Overload strprintf for char*, so that GCC format type warnings can be given */
std::string ATTR_WARN_PRINTF(1,3) real_strprintf(const char *format, int dummy, ...);
/** Overload strprintf for std::string, to be able to use it with _ (translation).
* This will not support GCC format type warnings (-Wformat) so be careful.
*/
std::string real_strprintf(const std::string &format, int dummy, ...);
#define strprintf(format, ...) real_strprintf(format, 0, __VA_ARGS__)
std::string vstrprintf(const char *format, va_list ap);
bool ATTR_WARN_PRINTF(1,2) error(const char *format, ...);
/* Redefine printf so that it directs output to debug.log
*
* Do this *after* defining the other printf-like functions, because otherwise the
* __attribute__((format(printf,X,Y))) gets expanded to __attribute__((format(OutputDebugStringF,X,Y)))
* which confuses gcc.
*/
#define printf OutputDebugStringF
void LogException(std::exception* pex, const char* pszThread);
void PrintException(std::exception* pex, const char* pszThread);
void PrintExceptionContinue(std::exception* pex, const char* pszThread);
void ParseString(const std::string& str, char c, std::vector<std::string>& v);
std::string FormatMoney(int64 n, bool fPlus=false);
bool ParseMoney(const std::string& str, int64& nRet);
bool ParseMoney(const char* pszIn, int64& nRet);
std::vector<unsigned char> ParseHex(const char* psz);
std::vector<unsigned char> ParseHex(const std::string& str);
bool IsHex(const std::string& str);
std::vector<unsigned char> DecodeBase64(const char* p, bool* pfInvalid = NULL);
std::string DecodeBase64(const std::string& str);
std::string EncodeBase64(const unsigned char* pch, size_t len);
std::string EncodeBase64(const std::string& str);
std::vector<unsigned char> DecodeBase32(const char* p, bool* pfInvalid = NULL);
std::string DecodeBase32(const std::string& str);
std::string EncodeBase32(const unsigned char* pch, size_t len);
std::string EncodeBase32(const std::string& str);
void ParseParameters(int argc, const char*const argv[]);
bool WildcardMatch(const char* psz, const char* mask);
bool WildcardMatch(const std::string& str, const std::string& mask);
void FileCommit(FILE *fileout);
int GetFilesize(FILE* file);
bool TruncateFile(FILE *file, unsigned int length);
int RaiseFileDescriptorLimit(int nMinFD);
void AllocateFileRange(FILE *file, unsigned int offset, unsigned int length);
bool RenameOver(boost::filesystem::path src, boost::filesystem::path dest);
boost::filesystem::path GetDefaultDataDir();
const boost::filesystem::path &GetDataDir(bool fNetSpecific = true);
boost::filesystem::path GetConfigFile();
boost::filesystem::path GetPidFile();
void CreatePidFile(const boost::filesystem::path &path, pid_t pid);
void ReadConfigFile(std::map<std::string, std::string>& mapSettingsRet, std::map<std::string, std::vector<std::string> >& mapMultiSettingsRet);
#ifdef WIN32
boost::filesystem::path GetSpecialFolderPath(int nFolder, bool fCreate = true);
#endif
boost::filesystem::path GetTempPath();
void ShrinkDebugFile();
int GetRandInt(int nMax);
uint64 GetRand(uint64 nMax);
uint256 GetRandHash();
int64 GetTime();
void SetMockTime(int64 nMockTimeIn);
int64 GetAdjustedTime();
int64 GetTimeOffset();
std::string FormatFullVersion();
std::string FormatSubVersion(const std::string& name, int nClientVersion, const std::vector<std::string>& comments);
void AddTimeData(const CNetAddr& ip, int64 nTime);
void runCommand(std::string strCommand);
inline std::string i64tostr(int64 n)
{
return strprintf("%"PRI64d, n);
}
inline std::string itostr(int n)
{
return strprintf("%d", n);
}
inline int64 atoi64(const char* psz)
{
#ifdef _MSC_VER
return _atoi64(psz);
#else
return strtoll(psz, NULL, 10);
#endif
}
inline int64 atoi64(const std::string& str)
{
#ifdef _MSC_VER
return _atoi64(str.c_str());
#else
return strtoll(str.c_str(), NULL, 10);
#endif
}
inline int atoi(const std::string& str)
{
return atoi(str.c_str());
}
inline int roundint(double d)
{
return (int)(d > 0 ? d + 0.5 : d - 0.5);
}
inline int64 roundint64(double d)
{
return (int64)(d > 0 ? d + 0.5 : d - 0.5);
}
inline int64 abs64(int64 n)
{
return (n >= 0 ? n : -n);
}
template<typename T>
std::string HexStr(const T itbegin, const T itend, bool fSpaces=false)
{
std::string rv;
static const char hexmap[16] = { '0', '1', '2', '3', '4', '5', '6', '7',
'8', '9', 'a', 'b', 'c', 'd', 'e', 'f' };
rv.reserve((itend-itbegin)*3);
for(T it = itbegin; it < itend; ++it)
{
unsigned char val = (unsigned char)(*it);
if(fSpaces && it != itbegin)
rv.push_back(' ');
rv.push_back(hexmap[val>>4]);
rv.push_back(hexmap[val&15]);
}
return rv;
}
inline std::string HexStr(const std::vector<unsigned char>& vch, bool fSpaces=false)
{
return HexStr(vch.begin(), vch.end(), fSpaces);
}
template<typename T>
void PrintHex(const T pbegin, const T pend, const char* pszFormat="%s", bool fSpaces=true)
{
printf(pszFormat, HexStr(pbegin, pend, fSpaces).c_str());
}
inline void PrintHex(const std::vector<unsigned char>& vch, const char* pszFormat="%s", bool fSpaces=true)
{
printf(pszFormat, HexStr(vch, fSpaces).c_str());
}
inline int64 GetPerformanceCounter()
{
int64 nCounter = 0;
#ifdef WIN32
QueryPerformanceCounter((LARGE_INTEGER*)&nCounter);
#else
timeval t;
gettimeofday(&t, NULL);
nCounter = (int64) t.tv_sec * 1000000 + t.tv_usec;
#endif
return nCounter;
}
inline int64 GetTimeMillis()
{
return (boost::posix_time::ptime(boost::posix_time::microsec_clock::universal_time()) -
boost::posix_time::ptime(boost::gregorian::date(1970,1,1))).total_milliseconds();
}
inline int64 GetTimeMicros()
{
return (boost::posix_time::ptime(boost::posix_time::microsec_clock::universal_time()) -
boost::posix_time::ptime(boost::gregorian::date(1970,1,1))).total_microseconds();
}
inline std::string DateTimeStrFormat(const char* pszFormat, int64 nTime)
{
time_t n = nTime;
struct tm* ptmTime = gmtime(&n);
char pszTime[200];
strftime(pszTime, sizeof(pszTime), pszFormat, ptmTime);
return pszTime;
}
template<typename T>
void skipspaces(T& it)
{
while (isspace(*it))
++it;
}
inline bool IsSwitchChar(char c)
{
#ifdef WIN32
return c == '-' || c == '/';
#else
return c == '-';
#endif
}
/**
* Return string argument or default value
*
* @param strArg Argument to get (e.g. "-foo")
* @param default (e.g. "1")
* @return command-line argument or default value
*/
std::string GetArg(const std::string& strArg, const std::string& strDefault);
/**
* Return integer argument or default value
*
* @param strArg Argument to get (e.g. "-foo")
* @param default (e.g. 1)
* @return command-line argument (0 if invalid number) or default value
*/
int64 GetArg(const std::string& strArg, int64 nDefault);
/**
* Return boolean argument or default value
*
* @param strArg Argument to get (e.g. "-foo")
* @param default (true or false)
* @return command-line argument or default value
*/
bool GetBoolArg(const std::string& strArg, bool fDefault=false);
/**
* Set an argument if it doesn't already have a value
*
* @param strArg Argument to set (e.g. "-foo")
* @param strValue Value (e.g. "1")
* @return true if argument gets set, false if it already had a value
*/
bool SoftSetArg(const std::string& strArg, const std::string& strValue);
/**
* Set a boolean argument if it doesn't already have a value
*
* @param strArg Argument to set (e.g. "-foo")
* @param fValue Value (e.g. false)
* @return true if argument gets set, false if it already had a value
*/
bool SoftSetBoolArg(const std::string& strArg, bool fValue);
/**
* MWC RNG of George Marsaglia
* This is intended to be fast. It has a period of 2^59.3, though the
* least significant 16 bits only have a period of about 2^30.1.
*
* @return random value
*/
extern uint32_t insecure_rand_Rz;
extern uint32_t insecure_rand_Rw;
static inline uint32_t insecure_rand(void)
{
insecure_rand_Rz = 36969 * (insecure_rand_Rz & 65535) + (insecure_rand_Rz >> 16);
insecure_rand_Rw = 18000 * (insecure_rand_Rw & 65535) + (insecure_rand_Rw >> 16);
return (insecure_rand_Rw << 16) + insecure_rand_Rz;
}
/**
* Seed insecure_rand using the random pool.
* @param Deterministic Use a determinstic seed
*/
void seed_insecure_rand(bool fDeterministic=false);
/** Median filter over a stream of values.
* Returns the median of the last N numbers
*/
template <typename T> class CMedianFilter
{
private:
std::vector<T> vValues;
std::vector<T> vSorted;
unsigned int nSize;
public:
CMedianFilter(unsigned int size, T initial_value):
nSize(size)
{
vValues.reserve(size);
vValues.push_back(initial_value);
vSorted = vValues;
}
void input(T value)
{
if(vValues.size() == nSize)
{
vValues.erase(vValues.begin());
}
vValues.push_back(value);
vSorted.resize(vValues.size());
std::copy(vValues.begin(), vValues.end(), vSorted.begin());
std::sort(vSorted.begin(), vSorted.end());
}
T median() const
{
int size = vSorted.size();
assert(size>0);
if(size & 1) // Odd number of elements
{
return vSorted[size/2];
}
else // Even number of elements
{
return (vSorted[size/2-1] + vSorted[size/2]) / 2;
}
}
int size() const
{
return vValues.size();
}
std::vector<T> sorted () const
{
return vSorted;
}
};
bool NewThread(void(*pfn)(void*), void* parg);
#ifdef WIN32
inline void SetThreadPriority(int nPriority)
{
SetThreadPriority(GetCurrentThread(), nPriority);
}
#else
#define THREAD_PRIORITY_LOWEST PRIO_MAX
#define THREAD_PRIORITY_BELOW_NORMAL 2
#define THREAD_PRIORITY_NORMAL 0
#define THREAD_PRIORITY_ABOVE_NORMAL 0
inline void SetThreadPriority(int nPriority)
{
// It's unclear if it's even possible to change thread priorities on Linux,
// but we really and truly need it for the generation threads.
#ifdef PRIO_THREAD
setpriority(PRIO_THREAD, 0, nPriority);
#else
setpriority(PRIO_PROCESS, 0, nPriority);
#endif
}
inline void ExitThread(size_t nExitCode)
{
pthread_exit((void*)nExitCode);
}
#endif
void RenameThread(const char* name);
inline uint32_t ByteReverse(uint32_t value)
{
value = ((value & 0xFF00FF00) >> 8) | ((value & 0x00FF00FF) << 8);
return (value<<16) | (value>>16);
}
// Standard wrapper for do-something-forever thread functions.
// "Forever" really means until the thread is interrupted.
// Use it like:
// new boost::thread(boost::bind(&LoopForever<void (*)()>, "dumpaddr", &DumpAddresses, 10000));
// or maybe:
// boost::function<void()> f = boost::bind(&FunctionWithArg, argument);
// threadGroup.create_thread(boost::bind(&LoopForever<boost::function<void()> >, "nothing", f, milliseconds));
template <typename Callable> void LoopForever(const char* name, Callable func, int64 msecs)
{
std::string s = strprintf("SNKCoin-%s", name);
RenameThread(s.c_str());
printf("%s thread start\n", name);
try
{
while (1)
{
MilliSleep(msecs);
func();
}
}
catch (boost::thread_interrupted)
{
printf("%s thread stop\n", name);
throw;
}
catch (std::exception& e) {
PrintException(&e, name);
}
catch (...) {
PrintException(NULL, name);
}
}
// .. and a wrapper that just calls func once
template <typename Callable> void TraceThread(const char* name, Callable func)
{
std::string s = strprintf("SNKCoin-%s", name);
RenameThread(s.c_str());
try
{
printf("%s thread start\n", name);
func();
printf("%s thread exit\n", name);
}
catch (boost::thread_interrupted)
{
printf("%s thread interrupt\n", name);
throw;
}
catch (std::exception& e) {
PrintException(&e, name);
}
catch (...) {
PrintException(NULL, name);
}
}
#endif
| [
"1217271876@qq.com"
] | 1217271876@qq.com |
88c21b0c9ea4427dea7303435eed13f9c783fc04 | 51857629e6678f0c8e66b5ad1328759007adceef | /Basic/形参交换两个数字的错误范例/draft.cpp | 5b10535a566cf3ac354def7fd5f34804b70d11d0 | [] | no_license | frankdevhub/c-primer-plus-bootcamp | 5dfc56bae55572152e63ac68ec5a24a403c62a8d | 660bd6f54295cdd38e09f36582277a7b8af18d8b | refs/heads/master | 2020-07-06T06:11:03.205654 | 2019-12-02T15:19:25 | 2019-12-02T15:19:25 | 202,917,287 | 8 | 0 | null | null | null | null | GB18030 | C++ | false | false | 443 | cpp | #include<iostream>
//使用指针交换两个数不能使用交换指针值的方式,而是要直接修改指针指向的值的方式
int main()
{
void swap(int * num1 , int* num2);
int a, b, *point1, *point2;
std::cin >> a >> b;
point1 = &a;
point2 = &b;
swap(point1,point2);
printf("a:%d,b:%d", a,b);
system("pause");
}
void swap(int * point1,int * point2)
{
int * temp;
temp = point1;
point1 = point2;
point2 = temp;
} | [
"frankdevhub@gmail.com"
] | frankdevhub@gmail.com |
b54e8e098385d59a246e57bbaa49aafc41d98047 | bcaa71ce4f6a6b57c9f13007c8241c098374d7b4 | /include/IrcUtil/irclagtimer_p.h | 06f1d6e57144b110a849ace8a480e30c792e17b8 | [
"BSD-3-Clause"
] | permissive | amyreese/libcommuni | d2cf25f25f8632a7f4e1bff503ac511ff5bc7cc4 | 867b1026513753e4ed18382f244e422c6e7c2264 | refs/heads/master | 2022-09-20T03:12:55.985819 | 2015-09-22T22:09:00 | 2015-09-22T22:09:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,350 | h | /*
Copyright (C) 2008-2015 The Communi Project
You may use this file under the terms of BSD license as follows:
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef IRCLAGTIMER_P_H
#define IRCLAGTIMER_P_H
#include "irclagtimer.h"
#include "ircfilter.h"
#include <QTimer>
IRC_BEGIN_NAMESPACE
class IrcPongMessage;
class IrcLagTimerPrivate : public QObject, public IrcMessageFilter
{
Q_OBJECT
Q_INTERFACES(IrcMessageFilter)
Q_DECLARE_PUBLIC(IrcLagTimer)
public:
IrcLagTimerPrivate();
bool messageFilter(IrcMessage* msg);
bool processPongReply(IrcPongMessage* msg);
void _irc_connected();
void _irc_pingServer();
void _irc_disconnected();
void updateTimer();
void updateLag(qint64 value);
IrcLagTimer* q_ptr;
IrcConnection* connection;
QTimer timer;
int interval;
qint64 lag;
};
IRC_END_NAMESPACE
#endif // IRCLAGTIMER_P_H
| [
"jpnurmi@gmail.com"
] | jpnurmi@gmail.com |
1ae63903a31b51c62544a19f1a16991b8de36f4f | 557c5b618312ba166c9b5407d1f0834243b63775 | /DP/House Robber.cpp | 8b657f6dbd0b5dcb11f5eb484488dd6aba4d0561 | [] | no_license | victorliking/Dream | 6ea575bf7425c7685a316bc3703d7bf4ffc45be6 | ce8812ad60fe900ef7cb0a3bea3dee93df495623 | refs/heads/master | 2021-01-09T21:57:52.046356 | 2015-11-08T21:56:22 | 2015-11-08T21:56:22 | 45,312,630 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 819 | cpp | /*
You are a professional robber planning to rob houses along a street. Each house has a certain amount of money stashed,
the only constraint stopping you from robbing each of them is that adjacent houses have security system connected and
\it will automatically contact the police if two adjacent houses were broken into on the same night.
Given a list of non-negative integers representing the amount of money of each house, determine
the maximum amount of money you can rob tonight without alerting the police.
*/
class Solution {
public:
int rob(vector<int>& nums) {
int cur =0,pre =0;
int size = nums.size()-1;
for(int i =0;i<=size;i++){
int temp = max(pre+nums[i],cur);
pre = cur;
cur = temp;
}
return cur;
}
}; | [
"Victor@wirelessprvnat-172-17-134-64.near.illinois.edu"
] | Victor@wirelessprvnat-172-17-134-64.near.illinois.edu |
916de628b6147a92be3143cc0fc72319694324f7 | 557c913787895ca516d58eafab2b031aafa3fa8d | /Source/LRFPFCT.H | d13b6e35ec2a264e28f8f404d2f2513242f650eb | [] | no_license | ashwathsv/LRFPFCT | 7aecbe0954e3bcb0cc8cff6d3c26936f670a34cb | 592edc5bd0f575e7c73418343957be2457ae5ef2 | refs/heads/main | 2023-03-25T02:35:55.191305 | 2021-03-20T04:18:11 | 2021-03-20T04:18:11 | 334,787,300 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,716 | h | #ifndef LRFPFCT_H_
#define LRFPFCT_H_
#include <string>
#include <limits>
#include <memory>
#ifdef _OPENMP
#include <omp.h>
#endif
#include <AMReX_AmrCore.H>
#include <AMReX_FluxRegister.H>
#include <AMReX_BCRec.H>
class LRFPFCT
: public amrex::AmrCore
{
public:
////////////////
// public member functions
// constructor - reads in parameters from inputs file
// - sizes multilevel arrays and data structures
LRFPFCT ();
virtual ~LRFPFCT();
// advance solution to final time
void Evolve ();
// initializes multilevel data
void InitData ();
// Make a new level using provided BoxArray and DistributionMapping and
// fill with interpolated coarse level data.
// overrides the pure virtual function in AmrCore
virtual void MakeNewLevelFromCoarse (int lev, amrex::Real time, const amrex::BoxArray& ba,
const amrex::DistributionMapping& dm) override;
// Remake an existing level using provided BoxArray and DistributionMapping and
// fill with existing fine and coarse data.
// overrides the pure virtual function in AmrCore
virtual void RemakeLevel (int lev, amrex::Real time, const amrex::BoxArray& ba,
const amrex::DistributionMapping& dm) override;
// Delete level data
// overrides the pure virtual function in AmrCore
virtual void ClearLevel (int lev) override;
// Make a new level from scratch using provided BoxArray and DistributionMapping.
// Only used during initialization.
// overrides the pure virtual function in AmrCore
virtual void MakeNewLevelFromScratch (int lev, amrex::Real time, const amrex::BoxArray& ba,
const amrex::DistributionMapping& dm) override;
// tag all cells for refinement
// overrides the pure virtual function in AmrCore
virtual void ErrorEst (int lev, amrex::TagBoxArray& tags, amrex::Real time, int ngrow) override;
// Advance phi at a single level for a single time step, update flux registers
void AdvancePhiAtLevel (int lev, amrex::Real time, amrex::Real dt_lev, int iteration, int ncycle);
// Advance phi at all levels for a single time step
void AdvancePhiAllLevels (amrex::Real time, amrex::Real dt_lev, int iteration);
// Define the advection velocity as the curl of a scalar field
void DefineVelocityAtLevelDt (int lev, amrex::Real time);
void DefineVelocityAtLevel (int lev, amrex::Real time);
void DefineVelocityAllLevels (amrex::Real time);
void CalcAuxillaryWrapper(int lev);
// compute dt from CFL considerations
amrex::Real EstTimeStep (int lev, amrex::Real time);
private:
////////////////
// private member functions
// read in some parameters from inputs file
void ReadParameters();
// set covered coarse cells to be the average of overlying fine cells
void AverageDown ();
// more flexible version of AverageDown() that lets you average down across multiple levels
void AverageDownTo (int crse_lev);
// compute a new multifab by coping in phi from valid region and filling ghost cells
// works for single level and 2-level cases (fill fine grid ghost by interpolating from coarse)
void FillPatch (int lev, amrex::Real time, amrex::MultiFab& mf, int icomp, int ncomp);
// fill an entire multifab by interpolating from the coarser level
// this comes into play when a new level of refinement appears
void FillCoarsePatch (int lev, amrex::Real time, amrex::MultiFab& mf, int icomp, int ncomp);
// utility to copy in data from phi_old and/or phi_new into another multifab
void GetData (int lev, amrex::Real time, amrex::Vector<amrex::MultiFab*>& data,
amrex::Vector<amrex::Real>& datatime);
// Advance a level by dt - includes a recursive call for finer levels
void timeStepWithSubcycling (int lev, amrex::Real time, int iteration);
// Advance all levels by the same dt
void timeStepNoSubcycling (amrex::Real time, int iteration);
// a wrapper for EstTimeStep
void ComputeDt ();
// get plotfile name
std::string PlotFileName (int lev) const;
// put together an array of multifabs for writing
amrex::Vector<const amrex::MultiFab*> PlotFileMF () const;
// set plotfile variables names
amrex::Vector<std::string> PlotFileVarNames () const;
// write plotfile to disk
void WritePlotFile () const;
// write checkpoint file to disk
void WriteCheckpointFile () const;
// read checkpoint file from disk
void ReadCheckpointFile ();
// write details of probe to text file
// void WriteProbeFile (int lev, Real cur_time, int stepnum);
// void FillDomBoundary (amrex::MultiFab& phi, const amrex::Geometry& geom, const amrex::Vector<amrex::BCRec>& bc, amrex::Real cur_time);
////////////////
// private data members
amrex::Vector<int> istep; // which step?
amrex::Vector<int> nsubsteps; // how many substeps on each level?
// keep track of old time, new time, and time step at each level
amrex::Vector<amrex::Real> t_new;
amrex::Vector<amrex::Real> t_old;
amrex::Vector<amrex::Real> dt;
// array of multifabs to store the solution at each level of refinement
// after advancing a level we use "swap".
amrex::Vector<amrex::MultiFab> phi_new;
amrex::Vector<amrex::MultiFab> phi_old;
// this is essentially a 2*DIM integer array storing the physical boundary
// condition types at the lo/hi walls in each direction
amrex::Vector<amrex::BCRec> bcs; // 1-component
// stores fluxes at coarse-fine interface for synchronization
// this will be sized "nlevs_max+1"
// NOTE: the flux register associated with flux_reg[lev] is associated
// with the lev/lev-1 interface (and has grid spacing associated with lev-1)
// therefore flux_reg[0] and flux_reg[nlevs_max] are never actually
// used in the reflux operation
amrex::Vector<std::unique_ptr<amrex::FluxRegister> > flux_reg;
// Velocity on all faces at all levels
amrex::Vector< amrex::Array<amrex::MultiFab, AMREX_SPACEDIM> > facevel;
////////////////
// runtime parameters
// maximum number of steps and stop time
int max_step = std::numeric_limits<int>::max();
amrex::Real stop_time = std::numeric_limits<amrex::Real>::max();
// if >= 0 we restart from a checkpoint
std::string restart_chkfile = "";
// advective cfl number - dt = cfl*dx/umax
amrex::Real cfl = 0.7;
// how often each level regrids the higher levels of refinement
// (after a level advances that many time steps)
int regrid_int = 2;
// hyperbolic refluxing as part of multilevel synchronization
int do_reflux = 1;
// do we subcycle in time?
int do_subcycle = 1;
// do we have a fixed timestep dt with subcycle in time?
int do_fixeddt = 1;
// plotfile prefix and frequency
std::string plot_file {"plt"};
int plot_int = -1;
// checkpoint prefix and frequency
std::string chk_file {"chk"};
int chk_int = -1;
#if AMREX_SPACEDIM==2
int ncomp = 6;
const int ro = 0, rou = 1, rov = 2, roE = 3, pre = 4, mach = 5;
#endif
#if AMREX_SPACEDIM==3
int ncomp = 7;
const int ro = 0, rou = 1, rov = 2, row = 3, roE = 4, pre = 5, mach = 6;
#endif
int nghost = 4;
int max_rk = 2;
int probtag = -1;
// Probes for measuring quantities varying with time
amrex::Vector<int> iprobe, jprobe, kprobe, proberank;
int nprobes = 0, lev_allow = 0;
// some parameters
const amrex::Real pi = 3.141592653589793238;
const amrex::Real gamma = 1.4, c1 = 1/(gamma-1);
amrex::Real diff1 = 1.0, pmin, romin;
};
#endif
| [
"ashwathsv@tamu.edu"
] | ashwathsv@tamu.edu |
b9e4d3413baf16230757bc1b586f53e8bf02063c | 71d2cf69d2624525c3aae341f1f5a274da4b063d | /gin.h | 3b1e5b26f57c5fa26eade29da7f68404a382416e | [] | no_license | dudupo/justCoolAlgorithms | de805075318e68f294adf95dd96f80bd15f8c6f6 | d541967d07d2ff2ccee7973db3ecce13e873619e | refs/heads/master | 2021-01-10T12:25:04.421758 | 2015-05-25T16:48:21 | 2015-05-25T16:48:21 | 36,242,831 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,356 | h |
namespace graph{
namespace Link {
struct Link
{
Link * next;
int data;
};
struct Link * create (int data);
void connect (struct Link * l ,struct Link * j);
void insert(struct Link * l , int new_data);
void print (Link * l);
};
namespace Queue {
namespace doubleLink {
struct doubleLink
{
doubleLink * right;
doubleLink * left;
int data;
};
struct doubleLink * create(int data);
void connect(struct doubleLink * doubleLink1 , struct doubleLink * doubleLink2);
};
struct Queue {
doubleLink::doubleLink * first;
doubleLink::doubleLink * last;
};
struct Queue * create(int data);
bool emptiy(struct Queue *Q);
void push(struct Queue * Q , int data);
int pop(struct Queue * Q) ;
};
namespace Node {
struct Node
{
Link::Link *weight ;
Link::Link *next ;
int id;
};
struct Node * create(int id);
void connect(struct Node * G , int j , int weight);
void connect(struct Node * G , struct Node * G2 , int weight);
void connect(struct Node * G , struct Node * G2 , int weight , bool flag);
};
struct Graph
{
struct Node::Node ** nodes;
int V , E;
};
struct Graph* gin(int V , int E);
void DFS(struct Graph * G , int v , bool * colors);
void DFS(struct Graph * G);
void BFS(struct Graph *G , bool * colors);
void BFS(struct Graph * G);
}; | [
"dudupo51@gmail.com"
] | dudupo51@gmail.com |
6571dbb77de6572f3b2bb10486f19e705ecdc07d | 4c23d2332c03221f2493848ef0abd8a662dcba97 | /lite/kernels/cuda/matmul_compute_test.cc | a8de8ff5f1a52766afd63857dc3c14e655446a7c | [
"Apache-2.0"
] | permissive | livingbody/Paddle-Lite | 31331b02ef706aca236d0eac660cc5ebc78036e2 | 6475e469e3f4c32fbe349c46a655c61b280c8d26 | refs/heads/develop | 2023-08-10T18:38:20.912150 | 2021-09-24T08:19:17 | 2021-09-24T08:19:17 | 409,922,556 | 1 | 0 | Apache-2.0 | 2021-09-24T10:24:28 | 2021-09-24T10:24:27 | null | UTF-8 | C++ | false | false | 5,884 | cc | // Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "lite/kernels/cuda/matmul_compute.h"
#include <gtest/gtest.h>
#include <memory>
#include <string>
#include <utility>
#include <vector>
#include "lite/api/test/test_helper.h"
#include "lite/utils/float16.h"
namespace paddle {
namespace lite {
namespace kernels {
namespace cuda {
class MatMulTest : public ::testing::Test {
protected:
MatMulTest()
: x_trans_(false),
y_trans_(true),
alpha_(1.0f),
x_shape_({4, 1, 2}),
y_shape_({4, 1, 2}),
out_shape_({4, 1, 1}) {
x_ref_.Resize(lite::DDim(x_shape_));
x_gpu_.Resize(x_ref_.dims());
y_ref_.Resize(lite::DDim(y_shape_));
y_gpu_.Resize(y_ref_.dims());
auto x_ref_data = x_ref_.mutable_data<float>();
auto y_ref_data = y_ref_.mutable_data<float>();
// prepare input
for (int64_t i = 0; i < x_ref_.numel(); i++) {
x_ref_data[i] = static_cast<float>(1);
}
for (int64_t i = 0; i < y_ref_.numel(); i++) {
y_ref_data[i] = static_cast<float>(1);
}
out_ref_.Resize(lite::DDim(out_shape_));
out_cpu_.Resize(out_ref_.dims());
out_gpu_.Resize(out_ref_.dims());
RunBaseLine();
InitParamAndContext();
}
void InitParamAndContext() {
ctx_.reset(new KernelContext);
cudaStreamCreate(&stream_);
auto& context = ctx_->As<CUDAContext>();
context.SetExecStream(stream_);
param_.X = &x_gpu_;
param_.Y = &y_gpu_;
param_.transpose_X = x_trans_;
param_.transpose_Y = y_trans_;
param_.alpha = alpha_;
param_.Out = &out_gpu_;
}
void InitFloatInput() {
x_gpu_.Assign<float, lite::DDim, TARGET(kCUDA)>(x_ref_.data<float>(),
x_gpu_.dims());
y_gpu_.Assign<float, lite::DDim, TARGET(kCUDA)>(y_ref_.data<float>(),
y_gpu_.dims());
}
void InitHalfInput() {
x_half_.Resize(x_ref_.dims());
auto x_half_data = x_half_.mutable_data<half>();
for (int64_t i = 0; i < x_half_.numel(); ++i) {
x_half_data[i] = half(lite::float16(x_ref_.data<float>()[i]));
}
x_gpu_.Assign<half, lite::DDim, TARGET(kCUDA)>(x_half_data, x_gpu_.dims());
y_half_.Resize(y_ref_.dims());
auto y_half_data = y_half_.mutable_data<half>();
for (int64_t i = 0; i < y_half_.numel(); i++) {
y_half_data[i] = half(lite::float16(y_ref_.data<float>()[i]));
}
y_gpu_.Assign<half, lite::DDim, TARGET(kCUDA)>(y_half_data, y_gpu_.dims());
}
void RunBaseLine() {
auto* out_data = out_ref_.mutable_data<float>();
for (int64_t i = 0; i < out_ref_.numel(); ++i) {
out_data[i] = 2;
}
}
bool x_trans_, y_trans_;
float alpha_;
std::vector<int64_t> x_shape_, y_shape_, out_shape_;
lite::Tensor x_ref_, y_ref_, out_ref_;
lite::Tensor x_gpu_, y_gpu_;
lite::Tensor x_half_, y_half_;
lite::Tensor out_cpu_, out_gpu_;
operators::MatMulParam param_;
std::unique_ptr<KernelContext> ctx_;
cudaStream_t stream_;
};
TEST_F(MatMulTest, TestFP32) {
InitFloatInput();
MatMulCompute<float, PRECISION(kFloat)> kernel;
kernel.SetParam(param_);
kernel.SetContext(std::move(ctx_));
for (int i = 0; i < FLAGS_warmup; ++i) {
kernel.Launch();
cudaDeviceSynchronize();
}
auto start = GetCurrentUS();
kernel.PrepareForRun();
for (int i = 0; i < FLAGS_repeats; ++i) {
kernel.Run();
}
cudaDeviceSynchronize();
auto duration = (GetCurrentUS() - start) / 1000.0;
LOG(INFO) << "fp32, warmup: " << FLAGS_warmup
<< ", repeats: " << FLAGS_repeats << ", spend "
<< duration / FLAGS_repeats << " ms in average.";
CopySync<TARGET(kCUDA)>(out_cpu_.mutable_data<float>(),
out_gpu_.data<float>(),
sizeof(float) * out_gpu_.numel(),
IoDirection::DtoH);
for (int i = 0; i < out_gpu_.numel(); ++i) {
float res = out_cpu_.data<float>()[i];
float ref = out_ref_.data<float>()[i];
EXPECT_NEAR(fabs(res - ref) / ref, 0.f, 1e-5);
}
}
TEST_F(MatMulTest, TestFP16) {
InitHalfInput();
MatMulCompute<half, PRECISION(kFP16)> kernel;
kernel.SetParam(param_);
kernel.SetContext(std::move(ctx_));
for (int i = 0; i < FLAGS_warmup; ++i) {
kernel.Launch();
cudaDeviceSynchronize();
}
auto start = GetCurrentUS();
kernel.PrepareForRun();
for (int i = 0; i < FLAGS_repeats; ++i) {
kernel.Run();
}
cudaDeviceSynchronize();
auto duration = (GetCurrentUS() - start) / 1000.0;
LOG(INFO) << "fp16, warmup: " << FLAGS_warmup
<< ", repeats: " << FLAGS_repeats << ", spend "
<< duration / FLAGS_repeats << " ms in average.";
const half* out_gpu_data = out_gpu_.data<half>();
half* out_cpu_data = out_cpu_.mutable_data<half>();
CopySync<TARGET(kCUDA)>(out_cpu_data,
out_gpu_data,
sizeof(half) * out_gpu_.numel(),
IoDirection::DtoH);
for (int i = 0; i < out_gpu_.numel(); ++i) {
float res = static_cast<float>(lite::float16(out_cpu_data[i]));
float ref = out_ref_.data<float>()[i];
EXPECT_NEAR(fabs(res - ref) / (ref + 1e-5), 0., 1e-2);
}
}
} // namespace cuda
} // namespace kernels
} // namespace lite
} // namespace paddle
| [
"noreply@github.com"
] | noreply@github.com |
ef0f69c78cfd6d5d0171111ff1fd86e8cdfeba74 | f771f96e62911612b81e4c998df8e89303e4bfbb | /tests/hot/rowex-test/src/hot/rowex/HOTRowexTest.cpp | 40f891b173e046d1dfc3501a730ec29ae7daeb27 | [
"ISC"
] | permissive | zhangquan0126/hot | f00510672155b02871d2beefd921cb36139e0fbe | 9ddd48e5395997d060a82e9bb9756be550fd801c | refs/heads/master | 2020-04-18T04:38:40.239839 | 2019-03-08T23:42:28 | 2019-03-24T06:32:04 | 167,246,878 | 1 | 1 | ISC | 2019-01-23T20:10:48 | 2019-01-23T20:10:48 | null | UTF-8 | C++ | false | false | 24,036 | cpp | //
// Created by Robert Binna on 23.12.14.
//
//
#include <unistd.h>
#include <sys/types.h>
#include <pwd.h>
#include <array>
#include <thread>
#include <mutex>
#include <bitset>
#include <set>
#include <vector>
#include <boost/test/unit_test.hpp>
#include <hot/rowex/HOTRowex.hpp>
#include <hot/testhelpers/PartialKeyMappingTestHelper.hpp>
#include <hot/testhelpers/SampleTriples.hpp>
#include <idx/contenthelpers/IdentityKeyExtractor.hpp>
#include <idx/contenthelpers/PairPointerKeyExtractor.hpp>
#include <idx/contenthelpers/KeyComparator.hpp>
#include <idx/contenthelpers/OptionalValue.hpp>
#include <idx/utils/8ByteDatFileIO.hpp>
#include <idx/utils/RandomRangeGenerator.hpp>
#include "hot/rowex/ConcurrentTestHelper.hpp"
#include "hot/rowex/TreeTestHelper.hpp"
#include "hot/rowex/StringTestData.hpp"
namespace hot { namespace rowex {
using HOTRowexUint64 = hot::rowex::HOTRowex<uint64_t, idx::contenthelpers::IdentityKeyExtractor>;
using CStringTrieType = hot::rowex::HOTRowex<const char*, idx::contenthelpers::IdentityKeyExtractor>;
template<typename ValueType>
std::shared_ptr<hot::rowex::HOTRowex<ValueType, idx::contenthelpers::IdentityKeyExtractor>> insertWithoutCheck(std::vector<ValueType> const &valuesToInsert) {
std::shared_ptr<hot::rowex::HOTRowex<ValueType, idx::contenthelpers::IdentityKeyExtractor>> cobTrie = std::make_shared<hot::rowex::HOTRowex<ValueType, idx::contenthelpers::IdentityKeyExtractor>>();
for (size_t i = 0u; i < valuesToInsert.size(); ++i) {
cobTrie->insert(valuesToInsert[i]);
}
return cobTrie;
//std::cout << "Checked Integrity" << std::endl;
}
template<typename ValueType> std::thread createInsertThread(std::shared_ptr<hot::rowex::HOTRowex<ValueType, idx::contenthelpers::IdentityKeyExtractor>> cobTrie, size_t threadId, size_t numberThreads, std::vector<ValueType> const * valuesToInsert);
std::thread createCounterBasedInsertThread(std::shared_ptr<hot::rowex::HOTRowex<uint64_t, idx::contenthelpers::IdentityKeyExtractor>> cobTrie, size_t threadId, size_t numberValues);
template<typename ValueType>
std::shared_ptr<hot::rowex::HOTRowex<ValueType, idx::contenthelpers::IdentityKeyExtractor>> testParallel(
std::vector<ValueType> const &valuesToInsert) {
std::shared_ptr<hot::rowex::HOTRowex<ValueType, idx::contenthelpers::IdentityKeyExtractor>> cobTrie = std::make_shared<hot::rowex::HOTRowex<ValueType, idx::contenthelpers::IdentityKeyExtractor>>();
std::shared_ptr<hot::singlethreaded::HOTSingleThreaded<ValueType, idx::contenthelpers::IdentityKeyExtractor>> unsynchronizedHOT = std::make_shared<hot::singlethreaded::HOTSingleThreaded<ValueType, idx::contenthelpers::IdentityKeyExtractor>>();
for (size_t i = 0u; i < valuesToInsert.size(); ++i) {
unsynchronizedHOT->insert(valuesToInsert[i]);
}
const unsigned numberThreads = 8; //std::thread::hardware_concurrency();
std::vector<std::thread> threads;
for(size_t threadId = 0; threadId < numberThreads; ++threadId) {
threads.push_back(createInsertThread(cobTrie, threadId, numberThreads, &valuesToInsert));
}
for(std::thread & thread : threads) {
thread.join();
}
checkConsistency(cobTrie, unsynchronizedHOT, valuesToInsert);
return cobTrie;
}
template<typename ValueType> std::thread createInsertThread(std::shared_ptr<hot::rowex::HOTRowex<ValueType, idx::contenthelpers::IdentityKeyExtractor>> cobTrie, size_t threadId, unsigned numberThreads, std::vector<ValueType> const * valuesToInsert) {
return std::thread([=]{
size_t totalNumberValuesToInsert = valuesToInsert->size();
for(size_t i = threadId; i < totalNumberValuesToInsert; i += numberThreads)
{
//std::cout << "i" << i << std::endl;
cobTrie->insert((*valuesToInsert)[i]);
}
//std::cout << "thread with id " << threadId << " finished" << std::endl;
});
}
std::thread createCounterBasedInsertThread(std::shared_ptr<hot::rowex::HOTRowex<uint64_t, idx::contenthelpers::IdentityKeyExtractor>> cobTrie, size_t threadId, size_t numberValues, std::vector<uint64_t>* insertedValues) {
return std::thread([=]{
for(size_t i = 0; i < numberValues; ++i)
{
uint64_t timerBasedValue = (rdtsc() << 6) + threadId;
insertedValues->push_back(timerBasedValue);
//std::cout << "i" << i << std::endl;
cobTrie->insert(timerBasedValue);
}
//std::cout << "thread with id " << threadId << " finished" << std::endl;
});
}
template<typename ValueType>
std::shared_ptr<hot::rowex::HOTRowex<ValueType, idx::contenthelpers::IdentityKeyExtractor>> testSerial(
std::vector<ValueType> const &valuesToInsert) {
using HotType = hot::rowex::HOTRowex<ValueType, idx::contenthelpers::IdentityKeyExtractor>;
std::shared_ptr<hot::rowex::HOTRowex<ValueType, idx::contenthelpers::IdentityKeyExtractor>> cobTrie = std::make_shared<hot::rowex::HOTRowex<ValueType, idx::contenthelpers::IdentityKeyExtractor>>();
std::shared_ptr<hot::singlethreaded::HOTSingleThreaded<ValueType, idx::contenthelpers::IdentityKeyExtractor>> unsynchronizedHOT = std::make_shared<hot::singlethreaded::HOTSingleThreaded<ValueType, idx::contenthelpers::IdentityKeyExtractor>>();
using KeyType = typename hot::rowex::HOTRowex<ValueType, idx::contenthelpers::IdentityKeyExtractor>::KeyType;
//std::cout << "Starting insert" << std::endl;
for (size_t i = 0u; i < valuesToInsert.size(); ++i) {
KeyType key = valuesToInsert[i];
//int failingValue = -1;
//int failingValue = 24614;
//int failingValue = 30;
/*if(i == failingValue) {
typename KeyHelper::KeyType failingRawValue = KeyHelper::extract(valuesToInsert[failingValue]);
std::cout << "vorher" << std::endl;
hot::rowex::ChildPointer previousNodePointer = cobTrie.getNodeAtPath({ });
hot::rowex::SuccessiveSIMDCobTrieNode<uint8_t> const *previousNode
= (const hot::rowex::SuccessiveSIMDCobTrieNode<uint8_t> *) previousNodePointer.getNode();
uint8_t usedSearchMask = previousNode->extractBytes(failingRawValue.data());
std::cout << "Search Mask for failing vlaue :: ";
std::bitset<sizeof(usedSearchMask) * 8> usedSearchMaskBits(usedSearchMask);
std::cout << usedSearchMaskBits << " with mapping ";
hot::rowex::printMaskWithMapping(usedSearchMask, previousNode->getExtractionMaskToEntriesMasksMapping());
std::cout << std::endl;
printUint64NodeChildPointer(previousNodePointer);
//Print node for path 1/0/16/20 cobTrie befor and after insert
std::cout << "inserting failingValue " << valuesToInsert[failingValue] << std::endl;
}*/
if (i == (valuesToInsert.size() - 1)) {
BOOST_REQUIRE_MESSAGE(cobTrie->find(key) == cobTrie->end(),
"element has not been inserted yet, hence it must no be contained in the trie");
}
//size_t previousNumberReturnToPool = HOTRowexNodeBase::getNumberReturnToPool();
//if(i >= 1048575) {
// std::cout << "i :: " << i << std::endl;
//}
cobTrie->insert(valuesToInsert[i]);
unsynchronizedHOT->insert(valuesToInsert[i]);
/*size_t intermediateNumberReturnToPool = HOTRowexNodeBase::getNumberReturnToPool();
unsynchronizedHOT->insert(valuesToInsert[i]);
size_t finalNumberReturnToPool = HOTRowexNodeBase::getNumberReturnToPool();
BOOST_REQUIRE_EQUAL(intermediateNumberReturnToPool - previousNumberReturnToPool,
finalNumberReturnToPool - intermediateNumberReturnToPool);*/
//std::cout << "i :: " << i << " height :: " << cobTrie->mRoot.getHeight() << std::endl;
//BOOST_REQUIRE_EQUAL(cobTrie->mRoot.getHeight(), unsynchronizedHOT->mRoot.getHeight());
if (false) {
std::cout << "i :: " << i << valuesToInsert[i] << std::endl;
bool isValid = isSubTreeValid<ValueType, idx::contenthelpers::IdentityKeyExtractor>(&cobTrie->mRoot);
BOOST_REQUIRE(isValid);
//BOOST_REQUIRE_EQUAL(cobTrie->mRoot.getHeight(), unsynchronizedHOT->mRoot.getHeight());
//std::cout << "i :: " << i << std::endl;
std::set<ValueType, typename idx::contenthelpers::KeyComparator<ValueType>::type> temporarySet(
valuesToInsert.begin(), valuesToInsert.begin() + i + 1);
std::vector<ValueType> sortedValues(temporarySet.begin(), temporarySet.end());
size_t numberValues = sortedValues.size();
for (size_t j = 0u; j < numberValues; ++j) {
idx::contenthelpers::OptionalValue<ValueType> result = cobTrie->lookup(sortedValues[j]);
bool found = result.mIsValid && (result.mValue == sortedValues[j]);
if (found == false) {
std::cout << "j :: " << j << " => " << found << std::endl;
}
BOOST_REQUIRE(found);
}
BOOST_REQUIRE_EQUAL_COLLECTIONS(cobTrie->begin(), cobTrie->end(), sortedValues.begin(), sortedValues.end());
size_t k = 0u;
for (typename HotType::const_iterator it = cobTrie->begin(); it != cobTrie->end(); ++it) {
BOOST_REQUIRE_EQUAL(*it, sortedValues[k]);
const typename HOTRowex<ValueType, idx::contenthelpers::IdentityKeyExtractor>::const_iterator &searchResult = cobTrie->find(
sortedValues[k]);
BOOST_REQUIRE_EQUAL(*searchResult, sortedValues[k]);
++k;
}
for (size_t j = 1u; j < numberValues; ++j) {
KeyType rawSearchValue = sortedValues[j];
BOOST_REQUIRE_EQUAL_COLLECTIONS(cobTrie->find(rawSearchValue), cobTrie->end(), sortedValues.begin() + j,
sortedValues.end());
BOOST_REQUIRE_EQUAL_COLLECTIONS(cobTrie->lower_bound(rawSearchValue), cobTrie->end(),
sortedValues.begin() + j, sortedValues.end());
BOOST_REQUIRE_EQUAL_COLLECTIONS(cobTrie->upper_bound(rawSearchValue), cobTrie->end(),
sortedValues.begin() + j + 1, sortedValues.end());
BOOST_REQUIRE(
cobTrie->scan(rawSearchValue, numberValues - j - 1).compliesWith({true, *sortedValues.rbegin()}));
}
}
/*if(i == failingValue) {
typename Uint64KeyHelper::KeyType failingRawValue = Uint64KeyHelper::extract(valuesToInsert[failingValue]);
std::cout << "nachher" << std::endl;
hot::rowex::ChildPointer newNodePointer = cobTrie.getNodeAtPath({ });
hot::rowex::SuccessiveSIMDCobTrieNode<uint8_t> const *newNode
= (const hot::rowex::SuccessiveSIMDCobTrieNode<uint8_t> *) newNodePointer.getNode();
uint8_t usedSearchMask = newNode->extractBytes(failingRawValue.data());
std::cout << "Search Mask for failing vlaue :: ";
std::bitset<sizeof(usedSearchMask) * 8> usedSearchMaskBits(usedSearchMask);
std::cout << usedSearchMaskBits << " with mapping ";
hot::rowex::printMaskWithMapping(usedSearchMask, newNode->getExtractionMaskToEntriesMasksMapping());
std::cout << std::endl;
printUint64NodeChildPointer(newNodePointer);
std::cout << "printed node" << std::endl;
sleep(5);
//Print node for path 1/0/16/20 cobTrie befor and after insert
}*/
/*if(i == failingValue) {
std::cout << "i :: " << i << "searching values" << std::endl;
for (int j = 0; j <= i; ++j) {
typename Uint64KeyHelper::KeyType rawSearchValue = Uint64KeyHelper::extract(valuesToInsert[j]);
uint64_t foundValue = Uint64KeyHelper::extractValue(cobTrie.lookup(rawSearchValue.data()));
//BOOST_REQUIRE_EQUAL(foundValue, valuesToInsert[j]);
found = found && foundValue == valuesToInsert[j];
if (!found) {
std::cout << "j :: " << j << " => " << found << std::endl;
}
BOOST_REQUIRE(found);
}
std::cout << "Starting to check integrity" << std::endl;
BOOST_REQUIRE(cobTrie.mRoot.isSubTreeValid<Uint64KeyHelper>());
std::cout << "Checked Integrity" << std::endl;
BOOST_REQUIRE(found);
}*/
}
checkConsistency(cobTrie, unsynchronizedHOT, valuesToInsert);
return cobTrie;
}
BOOST_AUTO_TEST_SUITE(HOTRowexTest)
BOOST_AUTO_TEST_CASE(testSequentialValuesWithSplitTwoLevel) {
std::vector<uint64_t> valuesToInsert;
int numberEntries = 32 * 32;
for (int i = 0; i < numberEntries; ++i) {
valuesToInsert.push_back(i);
}
std::shared_ptr<HOTRowexUint64> trie = testSerial(valuesToInsert);
BOOST_REQUIRE_EQUAL(trie->mRoot.getHeight(), 2);
for(int i = 0; i < 100; ++i) {
//std::cout << "======================= RUN :: " << i << std::endl << std::flush;
BOOST_CHECK_EQUAL(testParallel(valuesToInsert)->mRoot.getHeight(), 2);
}
}
constexpr size_t mixedWorkloadTestSize = 100000u;
BOOST_AUTO_TEST_CASE(testMixedWorkloadLookupAndInsertOfTriples) {
std::vector<uint64_t> triples = hot::testhelpers::getSampleTriples();
size_t numberTriples = triples.size();
executeMixedWorkloadLookupScanAndInsertTest<uint64_t, VectorBasedValueGenerator<uint64_t>>(numberTriples, triples);
}
BOOST_AUTO_TEST_CASE(testMixedWorkloadLookupAndInsertOfStrings) {
std::vector<const char*> const & longStrings = getLongCStrings();
size_t numberValues = longStrings.size();
executeMixedWorkloadLookupScanAndInsertTest<const char*, VectorBasedValueGenerator<const char*>>(numberValues, longStrings);
}
BOOST_AUTO_TEST_CASE(testMixedWorkloadLookupAndInsertOfRandomValues) {
executeMixedWorkloadLookupScanAndInsertTest<uint64_t, VectorBasedValueGenerator<uint64_t>>(mixedWorkloadTestSize,
getRandomNumbers(
mixedWorkloadTestSize).second);
}
BOOST_AUTO_TEST_CASE(testMixedWorkloadLookupAndInsertOfTimerBasedIncreasingValues) {
executeMixedWorkloadLookupScanAndInsertTest<uint64_t, TimerBasedIncreasingIdGenerator>(mixedWorkloadTestSize);
}
BOOST_AUTO_TEST_CASE(testMixedWorkloadLookupAndInsertOfTimerBasedDecreasingValues) {
executeMixedWorkloadLookupScanAndInsertTest<uint64_t, TimerBasedDecreasingIdGenerator>(mixedWorkloadTestSize);
}
BOOST_AUTO_TEST_CASE(testParallelAggressiveCounterBasedSequential) {
for(size_t i=0; i < 5; ++i) {
size_t numberEntriesToInsertPerThread = 10000;
std::shared_ptr<hot::rowex::HOTRowex<uint64_t, idx::contenthelpers::IdentityKeyExtractor>> cobTrie = std::make_shared<hot::rowex::HOTRowex<uint64_t, idx::contenthelpers::IdentityKeyExtractor>>();
std::shared_ptr<hot::singlethreaded::HOTSingleThreaded<uint64_t, idx::contenthelpers::IdentityKeyExtractor>> unsynchronizedHOT = std::make_shared<hot::singlethreaded::HOTSingleThreaded<uint64_t, idx::contenthelpers::IdentityKeyExtractor>>();
constexpr size_t numberThreads = 8; //std::thread::hardware_concurrency();
std::array<std::vector<uint64_t>, numberThreads> allInsertedValues;
std::vector<std::thread> threads;
for (size_t threadId = 0; threadId < numberThreads; ++threadId) {
threads.push_back(createCounterBasedInsertThread(cobTrie, threadId, numberEntriesToInsertPerThread, allInsertedValues.data() + threadId));
}
for (size_t threadId = 0; threadId < numberThreads; ++threadId) {
threads[threadId].join();
}
std::vector<uint64_t> insertedValues;
for(std::vector<uint64_t> insertedValuesForASingleThread: allInsertedValues) {
for (uint64_t const & insertedValue : insertedValuesForASingleThread) {
insertedValues.push_back(insertedValue);
BOOST_REQUIRE(unsynchronizedHOT->insert(insertedValue));
}
}
checkConsistency(cobTrie, unsynchronizedHOT, insertedValues);
}
}
BOOST_AUTO_TEST_CASE(testSequentialValuesWithSplitThreeLevel) {
std::vector<uint64_t> valuesToInsert;
int numberEntries = 32 * 32 * 32;
for (int i = 0; i < numberEntries; ++i) {
valuesToInsert.push_back(i);
}
testSerial(valuesToInsert);
for(int i = 0; i < 10; ++i) {
BOOST_REQUIRE_EQUAL(testParallel(valuesToInsert)->mRoot.getHeight(), 3);
}
}
BOOST_AUTO_TEST_CASE(testSequentialValuesWithSplitThreeLevelsReverse) {
std::vector<uint64_t> valuesToInsert;
int numberEntries = 32 * 32 * 32;
for (int i = numberEntries - 1; i >= 0; --i) {
valuesToInsert.push_back(i);
}
testSerial(valuesToInsert);
for(int i = 0; i < 2; ++i) {
BOOST_REQUIRE_EQUAL(testParallel(valuesToInsert)->mRoot.getHeight(), 3);
}
}
BOOST_AUTO_TEST_CASE(testRandomValues) {
std::vector<uint64_t> valuesToInsert = getRandomNumbers(100000).second;
testSerial(valuesToInsert);
for(int i = 0; i < 2; ++i) {
testParallel(valuesToInsert);
}
}
BOOST_AUTO_TEST_CASE(testBoundsInteger) {
std::set<uint64_t> sortedValues;
idx::utils::RandomRangeGenerator<uint64_t> rnd{12344567, 0, INT64_MAX};
unsigned int numberValues = 100000;
for (size_t i = 0u; i < numberValues; ++i) {
sortedValues.insert(rnd());
}
std::vector<uint64_t> valuesToInsert;
std::vector<uint64_t> valuesToLeaveOut;
uint64_t valueBeforeAll;
uint64_t valueAfterAll;
size_t index = 0;
for(auto value : sortedValues) {
if(index == 0) {
valueBeforeAll = value;
} else if(index == (sortedValues.size() - 1)) {
valueAfterAll = value;
} else if((index%2) == 1) {
valuesToInsert.push_back(value);
} else {
valuesToLeaveOut.push_back(value);
}
++index;
}
std::shared_ptr<HOTRowexUint64> trie = testSerial(valuesToInsert);
std::set<uint64_t> redBlackTree(valuesToInsert.begin(), valuesToInsert.end());
const typename HOTRowexUint64::const_iterator &lowerBound = trie->lower_bound(valueAfterAll);
BOOST_REQUIRE_MESSAGE(lowerBound == trie->end(), "Lower bound for value which is after all values is the end");
BOOST_REQUIRE_MESSAGE(trie->upper_bound(valueAfterAll) == trie->end(), "Upper bound for a value which is after all values is the end");
BOOST_REQUIRE_MESSAGE(*trie->lower_bound(valueBeforeAll) == valuesToInsert[0], "Lower bound for value which is before all values is the first value");
BOOST_REQUIRE_MESSAGE(*trie->upper_bound(valueBeforeAll) == valuesToInsert[0], "Upper bound for a value which is before all values is the first value");
BOOST_REQUIRE_EQUAL(*trie->lower_bound(valueBeforeAll), *redBlackTree.lower_bound(valueBeforeAll));
BOOST_REQUIRE_MESSAGE(redBlackTree.lower_bound(valueAfterAll) == redBlackTree.end(), "Defined behavior for lower bound if value after all is searched");
BOOST_REQUIRE_EQUAL(*trie->upper_bound(valueBeforeAll), *redBlackTree.upper_bound(valueBeforeAll));
BOOST_REQUIRE_MESSAGE(redBlackTree.upper_bound(valueAfterAll) == redBlackTree.end(), "Defined behavior for upper bound if value after all is searched");
for(size_t i=2; i < (valuesToLeaveOut.size() - 2); ++i) {
BOOST_REQUIRE_EQUAL(*trie->lower_bound(valuesToLeaveOut[i]), *redBlackTree.lower_bound(valuesToLeaveOut[i]));
BOOST_REQUIRE_EQUAL(*trie->upper_bound(valuesToLeaveOut[i]), *redBlackTree.upper_bound(valuesToLeaveOut[i]));
}
BOOST_REQUIRE_EQUAL_COLLECTIONS(
trie->lower_bound(valuesToLeaveOut[4]), trie->upper_bound(valuesToLeaveOut[valuesToLeaveOut.size() - 2]),
redBlackTree.lower_bound(valuesToLeaveOut[4]), redBlackTree.upper_bound(valuesToLeaveOut[valuesToLeaveOut.size() - 2])
);
}
BOOST_AUTO_TEST_CASE(testTriples) {
std::vector<uint64_t> valuesToInsert = hot::testhelpers::getSampleTriples();
testSerial(valuesToInsert);
for(int i = 0; i < 2; ++i) {
testParallel(valuesToInsert);
}
}
BOOST_AUTO_TEST_CASE(testWithLongStringsAndNodeSplit) {
std::vector<std::string> const &strings = getLongStrings();
testSerial(hot::testhelpers::stdStringsToCStrings(strings));
for(int i = 0; i < 10; ++i) {
testParallel(hot::testhelpers::stdStringsToCStrings(strings));
}
}
BOOST_AUTO_TEST_CASE(testBoundsWithLongStringsAndIterate) {
std::vector<std::string> const &strings = getLongStrings();
std::set<std::string> sortedStrings { strings.begin(), strings.end() };
std::vector<std::string> valuesToInsert;
std::vector<std::string> valuesToLeaveOut;
std::string valueBeforeAll;
std::string valueAfterAll;
size_t index = 0;
for(auto value : sortedStrings) {
if(index == 0) {
valueBeforeAll = value;
} else if(index == (sortedStrings.size() - 1)) {
valueAfterAll = value;
} else if((index%2) == 1) {
valuesToInsert.push_back(value);
} else {
valuesToLeaveOut.push_back(value);
}
++index;
}
std::vector<char const *> cStrings = hot::testhelpers::stdStringsToCStrings(valuesToInsert);
std::vector<char const *> cStringsToLeaveOut = hot::testhelpers::stdStringsToCStrings(valuesToLeaveOut);
std::shared_ptr<CStringTrieType> trie = testSerial(cStrings);
std::set<char const *, typename idx::contenthelpers::KeyComparator<char const *>::type> redBlackTree(cStrings.begin(), cStrings.end());
const CStringTrieType::const_iterator &lowerBound = trie->lower_bound(valueAfterAll.c_str());
BOOST_REQUIRE_MESSAGE(lowerBound == trie->end(), "Lower bound for value which is after all values is the end");
BOOST_REQUIRE_MESSAGE(trie->upper_bound(valueAfterAll.c_str()) == trie->end(), "Upper bound for a value which is after all values is the end");
BOOST_REQUIRE_MESSAGE(*trie->lower_bound(valueBeforeAll.c_str()) == cStrings[0], "Lower bound for value which is before all values is the first value");
BOOST_REQUIRE_MESSAGE(*trie->upper_bound(valueBeforeAll.c_str()) == cStrings[0], "Upper bound for a value which is before all values is the first value");
BOOST_REQUIRE_EQUAL(*trie->lower_bound(valueBeforeAll.c_str()), *redBlackTree.lower_bound(valueBeforeAll.c_str()));
BOOST_REQUIRE_MESSAGE(redBlackTree.lower_bound(valueAfterAll.c_str()) == redBlackTree.end(), "Defined behavior for lower bound if value after all is searched");
BOOST_REQUIRE_EQUAL(*trie->upper_bound(valueBeforeAll.c_str()), *redBlackTree.upper_bound(valueBeforeAll.c_str()));
BOOST_REQUIRE_MESSAGE(redBlackTree.upper_bound(valueAfterAll.c_str()) == redBlackTree.end(), "Defined behavior for upper bound if value after all is searched");
for(size_t i=2; i < (valuesToLeaveOut.size() - 2); ++i) {
BOOST_REQUIRE_EQUAL(*trie->lower_bound(cStringsToLeaveOut[i]), *redBlackTree.lower_bound(cStringsToLeaveOut[i]));
BOOST_REQUIRE_EQUAL(*trie->upper_bound(cStringsToLeaveOut[i]), *redBlackTree.upper_bound(cStringsToLeaveOut[i]));
}
BOOST_REQUIRE_EQUAL_COLLECTIONS(
trie->lower_bound(cStringsToLeaveOut[4]), trie->upper_bound(cStringsToLeaveOut[cStringsToLeaveOut.size() - 2]),
redBlackTree.lower_bound(cStringsToLeaveOut[4]), redBlackTree.upper_bound(cStringsToLeaveOut[cStringsToLeaveOut.size() - 2])
);
}
BOOST_AUTO_TEST_CASE(testStringPrefixes) {
std::vector<std::string> strings = { "fernando@terras.com.bt", "fernando@terras.com" };
testSerial(hot::testhelpers::stdStringsToCStrings(strings));
testParallel(hot::testhelpers::stdStringsToCStrings(strings));
}
BOOST_AUTO_TEST_CASE(testEmptyIterator) {
HOTRowexUint64 cobTrie;
BOOST_REQUIRE(cobTrie.begin() == cobTrie.end());
}
BOOST_AUTO_TEST_CASE(testSingleElementIterator) {
HOTRowexUint64 cobTrie;
cobTrie.insert(42u);
std::array<uint64_t, 1> expectedValues = { 42u };
BOOST_REQUIRE_EQUAL_COLLECTIONS(cobTrie.begin(), cobTrie.end(), expectedValues.begin(), expectedValues.end());
}
BOOST_AUTO_TEST_CASE(testFindOnEmptyTrie) {
HOTRowexUint64 cobTrie;
BOOST_REQUIRE_MESSAGE(cobTrie.find(42u) == cobTrie.end(), "Find on empty trie must return the end iterator");
}
BOOST_AUTO_TEST_CASE(testFindElementNotInTrie) {
HOTRowexUint64 cobTrie;
cobTrie.insert(41u);
cobTrie.insert(43u);
BOOST_REQUIRE_MESSAGE(cobTrie.find(40u) == cobTrie.end(), "Cannot lookup element which is not contained.");
BOOST_REQUIRE_MESSAGE(cobTrie.find(42u) == cobTrie.end(), "Cannot lookup element which is not contained.");
BOOST_REQUIRE_MESSAGE(cobTrie.find(44u) == cobTrie.end(), "Cannot lookup element which is not contained.");
}
BOOST_AUTO_TEST_CASE(testUpsert) {
hot::rowex::HOTRowex<std::pair<uint64_t, uint64_t>*, idx::contenthelpers::PairPointerKeyExtractor> cobTrie;
std::vector<std::pair<uint64_t, uint64_t>> initialValues {
{ 41u, 3u },
{ 43u, 5u },
{ 55u, 9u },
{ 59u, 13u },
{ 62u, 2u },
{ 69u, 7u },
{ 105u, 44u },
{ 120u, 1200u },
{ 257u, 33u },
};
std::vector<std::pair<uint64_t , uint64_t>*> pointerValues;
for(std::pair<uint64_t, uint64_t> & value : initialValues) {
pointerValues.push_back(&value);
cobTrie.insert(&value);
}
std::pair<uint64_t, uint64_t> newValue { 120u, 42u };
BOOST_REQUIRE_EQUAL_COLLECTIONS(cobTrie.begin(), cobTrie.end(), pointerValues.begin(), pointerValues.end());
const idx::contenthelpers::OptionalValue<std::pair<uint64_t, uint64_t> *> &previousValue = cobTrie.upsert(&newValue);
pointerValues[7] = &newValue;
BOOST_REQUIRE_EQUAL_COLLECTIONS(cobTrie.begin(), cobTrie.end(), pointerValues.begin(), pointerValues.end());
BOOST_REQUIRE(previousValue.compliesWith({ true, &initialValues[7] }));
}
BOOST_AUTO_TEST_SUITE_END()
}} | [
"robert.binna@uibk.ac.at"
] | robert.binna@uibk.ac.at |
1fccfc48a5691048c356782ac662546aa2193ca5 | 6e59f6f7cf7496413b32240b9c26d37aa4694b57 | /corto4/encriptado.cpp | aed603ccf211af7969c6448194b6a709af82da8d | [] | no_license | andrearodriguezj02/LabosFunda | 8c6fa6838e18b2f1f5256ef95ef5cbe0fa88476b | c20c5467325b85589b271f5493028ba0ee8a18df | refs/heads/master | 2022-11-26T15:18:16.630601 | 2020-07-13T21:08:56 | 2020-07-13T21:08:56 | 250,125,710 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 915 | cpp | #include <iostream>
using namespace std;
void frase();
void frase ()
{
int n;
string frase;
char arr[n];
cout<<"Ingrese los caracteres de su frase (tomar en cuenta espacios):"<<endl;
cin>>n;
cin.ignore(150, '\n');
cout<<"Ingrese la frase: "<<endl;
cin.getline(arr, n+1);
cout<<"La frase encriptada es: "<<endl;
for (int i=0; i<=n; i++)
{
switch (arr[i])
{
case 'm':
arr[i]='0';
break;
case 'u':
arr[i]='1';
break;
case 'r':
arr[i]='2';
break;
case 'c':
arr[i]='3';
break;
case 'i':
arr[i]='4';
break;
case 'e':
arr[i]='5';
break;
case 'l':
arr[i]='6';
break;
case 'a':
arr[i]='7';
break;
case 'g':
arr[i]='8';
break;
case 'o':
arr[i]='9';
break;
}
}
for (int i=0; i<n; i++)
{
cout<<arr[i];
}
cout<<endl;
}
int main ()
{
frase ();
} | [
"00011020@uca.edu.sv"
] | 00011020@uca.edu.sv |
2f5efc3f5768405e5f4ea5df86e16cb0fa17fd69 | 4728c8d66b28dbc2644b0e89713d1815804da237 | /src/connectivity/bluetooth/core/bt-host/l2cap/types.h | 83defa552c17b875b2f020ea178d45cb53c0d502 | [
"BSD-3-Clause"
] | permissive | osphea/zircon-rpi | 094aca2d06c9a5f58ceb66c3e7d3d57e8bde9e0c | 82c90329892e1cb3d09c99fee0f967210d11dcb2 | refs/heads/master | 2022-11-08T00:22:37.817127 | 2020-06-29T23:16:20 | 2020-06-29T23:16:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,432 | h | // Copyright 2020 The Fuchsia 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 SRC_CONNECTIVITY_BLUETOOTH_CORE_BT_HOST_L2CAP_TYPES_H_
#define SRC_CONNECTIVITY_BLUETOOTH_CORE_BT_HOST_L2CAP_TYPES_H_
#include <lib/fit/function.h>
#include <optional>
#include <fbl/macros.h>
#include <fbl/ref_ptr.h>
#include "src/connectivity/bluetooth/core/bt-host/hci/connection_parameters.h"
#include "src/connectivity/bluetooth/core/bt-host/hci/hci.h"
#include "src/connectivity/bluetooth/core/bt-host/l2cap/l2cap.h"
#include "src/connectivity/bluetooth/core/bt-host/sm/status.h"
#include "src/connectivity/bluetooth/core/bt-host/sm/types.h"
namespace bt::l2cap {
class Channel;
// Callback invoked when a channel has been created or when an error occurs during channel creation
// (in which case the channel will be nullptr).
using ChannelCallback = fit::function<void(fbl::RefPtr<Channel>)>;
// Callback invoked when a logical link should be closed due to an error.
using LinkErrorCallback = fit::closure;
// Callback called to notify LE preferred connection parameters during the "LE
// Connection Parameter Update" procedure.
using LEConnectionParameterUpdateCallback =
fit::function<void(const hci::LEPreferredConnectionParameters&)>;
// Callback called when response received to LE signaling channel Connection Parameters Update
// Request. |accepted| indicates whether the parameters were accepted by the peer.
using ConnectionParameterUpdateRequestCallback = fit::function<void(bool accepted)>;
// Callback used to deliver LE fixed channels that are created when a LE link is
// registered with L2CAP.
using LEFixedChannelsCallback =
fit::function<void(fbl::RefPtr<Channel> att, fbl::RefPtr<Channel> smp)>;
// Callback used to request a security upgrade for an active logical link.
// Invokes its |callback| argument with the result of the operation.
using SecurityUpgradeCallback = fit::function<void(
hci::ConnectionHandle ll_handle, sm::SecurityLevel level, sm::StatusCallback callback)>;
// Channel configuration parameters specified by higher layers.
struct ChannelParameters {
std::optional<ChannelMode> mode;
// MTU
std::optional<uint16_t> max_rx_sdu_size;
bool operator==(const ChannelParameters& rhs) const {
return mode == rhs.mode && max_rx_sdu_size == rhs.max_rx_sdu_size;
}
std::string ToString() const {
auto mode_string = mode.has_value() ? fxl::StringPrintf("%#.2x", static_cast<uint8_t>(*mode))
: std::string("nullopt");
auto sdu_string = max_rx_sdu_size.has_value() ? fxl::StringPrintf("%hu", *max_rx_sdu_size)
: std::string("nullopt");
return fxl::StringPrintf("ChannelParameters{mode: %s, max_rx_sdu_size: %s}",
mode_string.c_str(), sdu_string.c_str());
};
};
// Convenience struct for passsing around information about an opened channel.
// For example, this is useful when describing the L2CAP channel underlying a zx::socket.
struct ChannelInfo {
static ChannelInfo MakeBasicMode(uint16_t max_rx_sdu_size, uint16_t max_tx_sdu_size) {
return ChannelInfo(ChannelMode::kBasic, max_rx_sdu_size, max_tx_sdu_size, 0, 0, 0);
}
static ChannelInfo MakeEnhancedRetransmissionMode(uint16_t max_rx_sdu_size,
uint16_t max_tx_sdu_size,
uint8_t n_frames_in_tx_window,
uint8_t max_transmissions,
uint16_t max_tx_pdu_payload_size) {
return ChannelInfo(ChannelMode::kEnhancedRetransmission, max_rx_sdu_size, max_tx_sdu_size,
n_frames_in_tx_window, max_transmissions, max_tx_pdu_payload_size);
}
ChannelInfo(ChannelMode mode, uint16_t max_rx_sdu_size, uint16_t max_tx_sdu_size,
uint8_t n_frames_in_tx_window, uint8_t max_transmissions,
uint16_t max_tx_pdu_payload_size)
: mode(mode),
max_rx_sdu_size(max_rx_sdu_size),
max_tx_sdu_size(max_tx_sdu_size),
n_frames_in_tx_window(n_frames_in_tx_window),
max_transmissions(max_transmissions),
max_tx_pdu_payload_size(max_tx_pdu_payload_size) {}
ChannelMode mode;
uint16_t max_rx_sdu_size;
uint16_t max_tx_sdu_size;
// For Enhanced Retransmission Mode only. See Core Spec v5.0 Vol 3, Part A, Sec 5.4 for details on
// each field. Values are not meaningful if mode = ChannelMode::kBasic.
uint8_t n_frames_in_tx_window;
uint8_t max_transmissions;
uint16_t max_tx_pdu_payload_size;
};
// Data stored for services registered by higher layers.
template <typename ChannelCallbackT>
struct ServiceInfo {
ServiceInfo(ChannelParameters params, ChannelCallbackT cb)
: channel_params(params), channel_cb(std::move(cb)) {}
ServiceInfo(ServiceInfo&&) = default;
ServiceInfo& operator=(ServiceInfo&&) = default;
DISALLOW_COPY_AND_ASSIGN_ALLOW_MOVE(ServiceInfo);
// Preferred channel configuration parameters for new channels for this service.
ChannelParameters channel_params;
// Callback for forwarding new channels to locally-hosted service.
ChannelCallbackT channel_cb;
};
} // namespace bt::l2cap
#endif // SRC_CONNECTIVITY_BLUETOOTH_CORE_BT_HOST_L2CAP_TYPES_H_
| [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
d6de42d4606faef5f47ab5c622d941908f0aaad7 | bdbb7c6e7a77b6080b539a51f9f7ee2c138e50d8 | /Sources/Sources/litteralefactory.h | be1a6071d6e8cdf06776f9a4ec77ef697c8e7818 | [] | no_license | gabriel-hurtado/UTComputer | 50fa70564976be121df14837e04d23b11698a8f3 | f29dce2c9160e1068bdaa43f90ba041d1f0c2602 | refs/heads/master | 2021-01-17T14:28:40.479411 | 2016-06-12T20:27:37 | 2016-06-12T20:27:37 | 57,287,784 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,986 | h |
#ifndef LITTERALEFACTORY_H
#define LITTERALEFACTORY_H
#include "litterales.h"
#include "wordidentifier.h"//Obligé pour le parametre par défaut
#include <QMap>
class LitteraleFactory
{
/**
* Instance de la LitteraleFactory
* On en a besoin que d'une seule après tout.
*/
static LitteraleFactory* instanceLitteraleFactory;
/**
* Map qui contient seulement les priorités et symboles des litterales à considérer dans la ligne de commande
*/
static QMap<unsigned int, QString> priority_map_basic;
/**
* Map qui contient absolument toutes les litterales dont le symbole est enregistré
* Cette map sera utile pour parser des expression car l'écriture de la litterale est infixe.
*/
static QMap<unsigned int, QString> priority_map_infix;
/**
* Map qui contient le symbole d'une litterale et un exemple de litterale qui lui est associé
* La litterale associée est fourni lors de l'enregistrement et sert a pouvoir appeler la bonne version d'une méthode,
* car le polymorphysme n'est pas utilisable puisque la donnée provient d'un string
*/
static QMap<QString, Litterale*> litterale_map;
//----------Méthodes privés pour le singleton-------------//
LitteraleFactory();
virtual ~LitteraleFactory();
void operator=(LitteraleFactory& l);
LitteraleFactory(LitteraleFactory& l);
public:
//----------Méthodes publiques et statiques pour le singleton-------------//
static LitteraleFactory& donnerInstance();
static void libererInstance();
//----------Méthodes pour enregistrer de nouveaux objets-------------//
/**
* @brief Permet d'enregistrer un nouveau symbole de littérale dans la prority_basic_map.
* @details En stockant un nouveau symbole dans la priority_basic_map, on peut créer une nouvelle littérale grâce à la méthode créerRPNLitterale ou creerInfixLitterale.
* La méthode enregistre le symbole identifiant la littérale et l'exemple de littérale (l) dans la litterale_map, afin de permettre la construction ultérieur d'une nouvelle littérale.
* On profite de cette méthode pour stocker l'objet qui permettra l'identification (W) dans l'interpretaion_map du controleur, ou elle est utilisée pour trouver la littérale en question dans une String contenant plusieurs opérations.
* Attention : Cette méthode sert pour enregistrer des symboles interprétables :
* -> Directement par la commande
* -> Dans des programmes ou expressions ou tout autre objet appelant la méthode creerInfixLitterale ou la méthode creerRPNLitterale
*
* @param prio priorité unique (0 est le plus prioritaire).
* @param ltok symbole permettant d'identifier la littérale (ou le début de celle-ci).
* @param l exemple de litterale qui nous permettra d'acceder à la méthode getFromString(..).
* @param W méthode d'identification de la littérale qui sera stockée dans l'interpretation_map du controleur (par défaut la méthode s'arretant au prochain espace est choisie).
*
*/
static void enregistrer(unsigned int prio,QString ltok,Litterale* l, WordIdentifier* W = new WordIdentifier);
/**
* @brief Identique à la méthode enregistrer sauf que l'on ne peut construire une littérale avec ce symbole unqiuement avec la méthode creerInfixLitterale
*
* @details Cette méthode sert à déclarer des symboles de littérale que l'on veut ne pouvoir construire qu'en évaluant des expressions
*/
static void enregistrerInfix(unsigned int,QString,Litterale*, WordIdentifier* W = new WordIdentifier);
/**
* @brief Cette méthode crée des Litterales en fonction des symboles enregistrés dans la priority_basic_map.
* @details La méthode détecte le symbole le plus prioritaire dans la string en paramêtre, et construit une nouvelle littérale en utilisant la méthode getFromString de la littérale associée au symbole détecté (association faite grâce à la litterale_map).
* Attention : la méthode ne s'attend qu'a recevoir 1 SEUL mot, c'est à dire sans espaces !
* La méthode getFromString doit être redéfinie dans la classe de la littérale linkée pour pouvoir créer l'objet correctement.
* @param s littérale sous forme de chaine de caractère à traduire
* @return Renvoie une littérale allouée dynamiquement correspondant à celle de la string s.
*/
Litterale* creerRPNLitterale(QString s) const;
/**
* @brief Identique à la méthode créerRPNLitterale, mais fonctionne aussi avec les littérales déclarées grâce à la méthode enregistrerInfix
* @details Cette méthode est donc plus puissante que creerRPNLitterale est peu être utilisée dans le controleur quand l'appelle avec "INFIX" en second paramêtre
* @return Renvoie une littérale allouée dynamiquement correspondant à celle de la string s.
*/
Litterale* creerInfixLitterale(QString) const;
/**
* @brief Détecte le type de litterale du paramêtre s et renvoie l'exemple de littérale stocké dans la litterale_map correspondant.
* @param s littérale sous forme de string qui servira à trouver l'exemple correspondant.
* @return Renvoie l'exemple de littérale stcoké ou nullptr s'il n'a trouvé aucune correspondance
*/
Litterale* getRPNExampleOf(QString s) const;
/**
* @brief Idem à getRPNExampleOf avec les littérales paramétrées comme Infix
* @param s littérale sous forme de string qui servira à trouver l'exemple correspondant.
* @return Renvoie l'exemple de littérale stocké ou nullptr s'il n'a trouvé aucune correspondance.
*/
Litterale* getInfixExampleOf(QString s) const;
static const QMap<unsigned int,QString>& getPriorityMap(){return priority_map_basic;}
static const QMap<QString,Litterale*>& getLitteraleMap(){return litterale_map;}
};
#endif // LITTERALEFACTORY_H
| [
"djeje.coste@laposte.net"
] | djeje.coste@laposte.net |
7ed54780ac54d5779fe9521f9b21873607a9dc37 | da44ee53d5bce85cbabd4cbc3a0a870706bde696 | /C++/Vec3.cpp | 1e1a69686907bd66b51dbd64a9c08e6325a45216 | [] | no_license | kyoichi001/Liblary | 081f490ff447c2e000049fe1ab34bdaa69b1ff24 | 3a9cf6f1b849b6a28be8f6d8cf2a6dc5b0a3f7b8 | refs/heads/master | 2023-06-10T23:10:57.440396 | 2021-06-25T09:44:15 | 2021-06-25T09:44:15 | 268,456,665 | 0 | 1 | null | 2020-07-14T06:24:37 | 2020-06-01T07:42:42 | C++ | UTF-8 | C++ | false | false | 1,639 | cpp | #include<iostream>
class Vec3 {
public:
double x, y, z;
Vec3()noexcept :x(0.0f), y(0.0f), z(0.0f) {}
Vec3(double X, double Y, double Z)noexcept : x(X), y(Y), z(Z) {}
~Vec3()noexcept {}
double dot(const Vec3& Obj)const noexcept { return x * Obj.x + y * Obj.y + z * Obj.z; }
double lengthSqu()const noexcept { return dot(*this); }
double length()const noexcept { return sqrt(lengthSqu()); }
Vec3 closs(const Vec3& Obj)const noexcept {
return {
y * Obj.z - z * Obj.y,
z * Obj.x - x * Obj.z,
x * Obj.y - y * Obj.x
};
}
Vec3 Normalized()const noexcept { return *this / length(); }
Vec3 operator+() const noexcept { return *this; }
Vec3 operator-() const noexcept { return { -x, -y, -z }; }
bool operator ==(const Vec3& Obj)const noexcept { return x == Obj.x && y == Obj.y && z == Obj.z; }
bool operator !=(const Vec3& Obj)const noexcept { return x != Obj.x || y != Obj.y || z != Obj.z; }
Vec3 operator +(const Vec3& Obj)const noexcept { return { x + Obj.x, y + Obj.y, z + Obj.z }; }
Vec3 operator -(const Vec3& Obj)const noexcept { return { x - Obj.x, y - Obj.y, z - Obj.z }; }
Vec3 operator *(double a)const noexcept { return { x * a, y * a, z * a }; }
Vec3 operator /(double a)const noexcept { return { x / a, y / a, z / a }; }
void operator +=(const Vec3& Obj) noexcept { x += Obj.x; y += Obj.y; z += Obj.z; }
void operator -=(const Vec3& Obj) noexcept { x -= Obj.x; y -= Obj.y; z -= Obj.z; }
};
std::ostream& operator<<(std::ostream& os, const Vec3& dt)
{
os << "(" << dt.x << ", " << dt.y << ", " << dt.z << ")";
return os;
}
Vec3 operator*(double a, const Vec3& obj) { return obj * a; }
| [
"40378788+kyoichi001@users.noreply.github.com"
] | 40378788+kyoichi001@users.noreply.github.com |
b96a2d8dc29f5f59b59013277ce00f0c30a8af5d | 40a305e135f72e9df6220b1652b23e3d726f54c5 | /Práctica Final/practicafinal/src/constructivo.cpp | faf923c5ea5ccfc8924c038194be9f7adaf9fcee | [] | no_license | antoniovj1/metodologia_programacion_ugr | 2cff01e3030e42e99584df09a087a2ac540b3e77 | ccb935e63cfe6435bc9fc81f3ddc55bdc6c46ee5 | refs/heads/master | 2021-01-18T21:12:08.552444 | 2016-05-21T17:20:23 | 2016-05-21T17:20:23 | 51,921,260 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,638 | cpp | #include <iostream>
#include <stdlib.h>
#include <fstream>
#include <iomanip>
#include "SetConjuntos.h"
#include "Conjunto.h"
using namespace std;
//Devuelve un SetConjuntos con la solución.
SetConjuntos alg_k_mic( int k , SetConjuntos conjuntos){
SetConjuntos sol;
int pos_mc = conjuntos.mayor_cardinalidad();
//Añado a la solucion el conjunto con mayor cardinalidad
sol.push_back(conjuntos[pos_mc]);
//Elimino ese conjunto de los disponibles
conjuntos.erase(pos_mc);
int mic;
//Mientras no este la solucion y queden conjuntos
while (sol.size() != k && conjuntos.size()>0) {
//Creo un conjunto con la interseccion de los componentes de sol,
//para luego hacer la interseccion con los demas conjuntos con mas facilidad y mirar la
//interseccion con cardinalidad maxima.
Conjunto aux=sol[0];
for(int i = 0 ; i < sol.size(); i++)
aux = aux*sol[i];
//Busco la interseccion con cardinalidad maxima.
Conjunto aux2;
int pos=0;
mic = 0; //Sirve para buscar el maximo
for(int i = 0 ; i <conjuntos.size(); i++){
aux2 = aux*conjuntos[i];
if(aux2.size() > mic){
mic = aux2.size();
pos = i;
}
}
//Añadimos el conjunto a la solucion y lo eliminamos
sol.push_back(conjuntos[pos]);
conjuntos.erase(pos);
}
return sol;
}
int main(int argc, char const *argv[]) {
if(argc != 4){
cerr << " Se necesitan 3 argumentos: k , fichero entrada , fichero salida" << endl;
return -1;
}
SetConjuntos conjuntos,k_mic;
int k = atoi(argv[1]);
//Abrimos fichero de entrada y salida
ifstream entrada(argv[2]);
ofstream salida(argv[3]);
//Cargamos los datos del fichero de entrada en un SetConjuntos
entrada>>conjuntos;
//Ejecutamos el algoritmo k_mic y guardamos su resultado en un SetConjuntos
if(conjuntos.size() > 0)
k_mic = alg_k_mic(k,conjuntos);
//Sacamos por pantalla infomacion de la solución
cout << setw(38);
cout << left;
cout << setfill('.');
cout << "Número total de conjuntos" ;
cout << conjuntos.size() << endl;
cout << setw(39);
cout << "Número conjuntos en la solución" ;
cout << k_mic.size() << endl;
cout << setw(38);
cout << "Cardinal de la solución" ;
cout << k_mic.cardinal_set() << endl;
//Guardamos el resultado en el fichero salida, manteniendo el formato original.
salida << k_mic;
//Cerramos los ficheros.
entrada.close();
salida.close();
}
| [
"antoniodelavegajimenez@gmail.com"
] | antoniodelavegajimenez@gmail.com |
7a593f7203a0763975b6df31060e9edb4eb35027 | 1360e9f9a41e603cc7101563f655b11432000c7c | /Solitaire/CompositionCard.h | 39d0dac4566fd456ca55d351d136b57980986569 | [
"MIT"
] | permissive | EvaRichie/SolitaireRT | c63672d0558525ac8a5988c518c57242174ae7f2 | 81bfdf1509aa9b28a9d85e195274dfca343d96f5 | refs/heads/master | 2020-08-08T20:10:22.400324 | 2019-10-09T08:21:41 | 2019-10-09T08:21:41 | 213,906,122 | 1 | 0 | MIT | 2019-10-09T11:58:15 | 2019-10-09T11:58:15 | null | UTF-8 | C++ | false | false | 1,052 | h | #pragma once
class ShapeCache;
class CompositionCard
{
public:
static const winrt::Windows::Foundation::Numerics::float2 CardSize;
CompositionCard(
Card card,
std::shared_ptr<ShapeCache> const& shapeCache);
~CompositionCard() {}
Card Value() { return m_card; }
winrt::Windows::UI::Composition::Visual Root() { return m_root; }
bool IsFaceUp() { return m_isFaceUp; }
bool HitTest(winrt::Windows::Foundation::Numerics::float2 point);
void IsFaceUp(bool isFaceUp);
void Flip() { IsFaceUp(!m_isFaceUp); }
void AnimateIsFaceUp(bool isFaceUp, winrt::Windows::Foundation::TimeSpan const& duration, winrt::Windows::Foundation::TimeSpan const& delayTime);
private:
winrt::Windows::UI::Composition::ContainerVisual m_root{ nullptr };
winrt::Windows::UI::Composition::ContainerVisual m_sidesRoot{ nullptr };
winrt::Windows::UI::Composition::ShapeVisual m_front{ nullptr };
winrt::Windows::UI::Composition::ShapeVisual m_back{ nullptr };
Card m_card;
bool m_isFaceUp = true;
}; | [
"rob.mikh@outlook.com"
] | rob.mikh@outlook.com |
57a2d433f48c9d518dce00324e72b2300159e49f | 216ec3399a95f9e8529cf2b3b1340222ddeaf78e | /mesh.h | 0ead27aff35cd324597e6c7f33d85c6c1ba79362 | [] | no_license | darthNexan/Bowling-Game | 9b00177ec430731b89e408fc621f2c7fda7f6e97 | e1ba4373f34625ae13b53536213694fa914ed819 | refs/heads/master | 2021-04-12T11:50:37.075504 | 2018-03-21T17:04:26 | 2018-03-21T17:04:26 | 126,211,593 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,793 | h | #pragma once
// Std. Includes
#include <string>
#include <fstream>
#include <sstream>
#include <iostream>
#include <vector>
using namespace std;
// GL Includes
#include <GL/glew.h> // Contains all the necessery OpenGL includes
#include <glm/glm.hpp>
#include <glm/gtc/matrix_transform.hpp>
struct Vertex
{
glm::vec3 Position; // Position
glm::vec3 Normal; // Normal
glm::vec2 TexCoords; // TexCoords
};
struct Texture
{
GLuint id;
string type;
aiString path;
};
class Mesh
{
private:
GLuint VBO, EBO; // Render data
void setupMesh(); // Initializes all the buffer objects/arrays
public:
vector<Vertex> vertices; // Mesh Data
vector<GLuint> indices;
vector<Texture> textures;
GLuint VAO;
Mesh(vector<Vertex>, vector<GLuint>, vector<Texture>); // Constructor
void Draw(Shader); // Render the mesh
};
Mesh::Mesh(vector<Vertex> vertices, vector<GLuint> indices, vector<Texture> textures)
{
this->vertices = vertices;
this->indices = indices;
this->textures = textures;
// Now that we have all the required data, set the vertex buffers and its attribute pointers.
this->setupMesh();
}
void Mesh::Draw(Shader shader)
{
// Bind appropriate textures
GLuint diffuseNr = 1;
GLuint specularNr = 1;
for(GLuint i = 0; i < this->textures.size(); i++)
{
glActiveTexture(GL_TEXTURE0 + i); // Activate proper texture unit before binding
// Retrieve texture number (the N in diffuse_textureN)
stringstream ss;
string number;
string name = this->textures[i].type;
if(name == "texture_diffuse")
ss << diffuseNr++; // Transfer GLuint to stream
else if(name == "texture_specular")
ss << specularNr++; // Transfer GLuint to stream
number = ss.str();
// Now set the sampler to the correct texture unit
glUniform1f(glGetUniformLocation(shader.Program, (name + number).c_str()), i);
// And finally bind the texture
glBindTexture(GL_TEXTURE_2D, this->textures[i].id);
}
// Draw mesh
glBindVertexArray(this->VAO);
glDrawElements(GL_TRIANGLES, (GLsizei)this->indices.size(), GL_UNSIGNED_INT, 0);
glBindVertexArray(0);
// Set everything back to defaults once configured.
for (GLuint i = 0; i < this->textures.size(); i++)
{
glActiveTexture(GL_TEXTURE0 + i);
glBindTexture(GL_TEXTURE_2D, 0);
}
}
// Initializes all the buffer objects/arrays
void Mesh::setupMesh()
{
// Create buffers/arrays
glGenVertexArrays(1, &this->VAO);
glGenBuffers(1, &this->VBO);
glGenBuffers(1, &this->EBO);
glBindVertexArray(this->VAO);
// Load data into vertex buffers
glBindBuffer(GL_ARRAY_BUFFER, this->VBO);
// A great thing about structs is that their memory layout is sequential
// for all its items. The effect is that we can simply pass a pointer to
// the struct and it translates perfectly to a glm::vec3/2 array which
// again translates to 3/2 floats which translates to a byte array.
glBufferData(GL_ARRAY_BUFFER, this->vertices.size() * sizeof(Vertex),
&this->vertices[0], GL_STATIC_DRAW);
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, this->EBO);
glBufferData(GL_ELEMENT_ARRAY_BUFFER, this->indices.size() * sizeof(GLuint),
&this->indices[0], GL_STATIC_DRAW);
// Set the vertex attribute pointers
// Vertex Positions
glEnableVertexAttribArray(0);
glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, sizeof(Vertex), (GLvoid*)0);
// Vertex Normals
glEnableVertexAttribArray(1);
glVertexAttribPointer(1, 3, GL_FLOAT, GL_FALSE, sizeof(Vertex),
(GLvoid*)offsetof(Vertex, Normal));
// Vertex Texture Coords
glEnableVertexAttribArray(2);
glVertexAttribPointer(2, 2, GL_FLOAT, GL_FALSE, sizeof(Vertex),
(GLvoid*)offsetof(Vertex, TexCoords));
glBindVertexArray(0);
}
| [
"d_guye15@hotmail.com"
] | d_guye15@hotmail.com |
d44e17ac9d3d690d7ac33fd1f985c862308eb2c3 | 7e3990d5c501d5d8bb69be312ca1472b8adc90fc | /inheritance/inheritance_protected.cpp | 90dc85f03ebde86d9c3295cb18f8c723b110d16c | [
"MIT"
] | permissive | gunnarpope/cpp_tutorials | deb5632f55bacf6d74ab373c540360758c4c16f9 | e8e152668b0d12c5ce7b5152580d6ddcc731ecb7 | refs/heads/master | 2020-03-22T02:33:14.627430 | 2018-08-19T14:33:57 | 2018-08-19T14:33:57 | 139,377,784 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,070 | cpp | // gunnar pope
// 8/18/18
// An example of inheritance using the protected scope
// all base class public members become accessable
// to the derived class.
// The protected scope allows a class to inherit the private
// members of the base class and access them from the derived class
// see C++ Complete Reference.pdf for these examples
#include <iostream>
using namespace std;
class base{
protected:
int i, j; // private to base, but accessible by derived
public:
void set(int a, int b) {i=a; j=b;}
void show() { cout << i << " " << j << "\n"; }
};
// delcaring this private woud make the set() and show() members inaccessable
// and would not compile
class derived : public base{
int k;
public:
derived(int num) {k=num;}
// derived may access base's i and j variables
void setk() { k=i*j;}
void showk() { cout << k << "\n"; }
};
int main()
{
derived ob(3);
ob.set(5,6); // access member of the base class
ob.show(); // access member of the base class
ob.setk();
ob.showk(); // uses member of derived class
return 0;
}
| [
"gunnar@gmail.com"
] | gunnar@gmail.com |
2c459f520bfbf25a2530d93d8e126bdb53862e24 | 67fc9e51437e351579fe9d2d349040c25936472a | /wrappers/8.1.1/vtkWarpVectorWrap.cc | 3a96e2dc451cf72f491d2350e56bb5866608436d | [] | permissive | axkibe/node-vtk | 51b3207c7a7d3b59a4dd46a51e754984c3302dec | 900ad7b5500f672519da5aa24c99aa5a96466ef3 | refs/heads/master | 2023-03-05T07:45:45.577220 | 2020-03-30T09:31:07 | 2020-03-30T09:31:07 | 48,490,707 | 6 | 0 | BSD-3-Clause | 2022-12-07T20:41:45 | 2015-12-23T12:58:43 | C++ | UTF-8 | C++ | false | false | 6,387 | cc | /* this file has been autogenerated by vtkNodeJsWrap */
/* editing this might proof futile */
#define VTK_WRAPPING_CXX
#define VTK_STREAMS_FWD_ONLY
#include <nan.h>
#include "vtkPointSetAlgorithmWrap.h"
#include "vtkWarpVectorWrap.h"
#include "vtkObjectBaseWrap.h"
#include "vtkInformationWrap.h"
#include "../../plus/plus.h"
using namespace v8;
extern Nan::Persistent<v8::Object> vtkNodeJsNoWrap;
Nan::Persistent<v8::FunctionTemplate> VtkWarpVectorWrap::ptpl;
VtkWarpVectorWrap::VtkWarpVectorWrap()
{ }
VtkWarpVectorWrap::VtkWarpVectorWrap(vtkSmartPointer<vtkWarpVector> _native)
{ native = _native; }
VtkWarpVectorWrap::~VtkWarpVectorWrap()
{ }
void VtkWarpVectorWrap::Init(v8::Local<v8::Object> exports)
{
Nan::SetAccessor(exports, Nan::New("vtkWarpVector").ToLocalChecked(), ConstructorGetter);
Nan::SetAccessor(exports, Nan::New("WarpVector").ToLocalChecked(), ConstructorGetter);
}
void VtkWarpVectorWrap::ConstructorGetter(
v8::Local<v8::String> property,
const Nan::PropertyCallbackInfo<v8::Value>& info)
{
InitPtpl();
info.GetReturnValue().Set(Nan::New(ptpl)->GetFunction());
}
void VtkWarpVectorWrap::InitPtpl()
{
if (!ptpl.IsEmpty()) return;
v8::Local<v8::FunctionTemplate> tpl = Nan::New<v8::FunctionTemplate>(New);
VtkPointSetAlgorithmWrap::InitPtpl( );
tpl->Inherit(Nan::New<FunctionTemplate>(VtkPointSetAlgorithmWrap::ptpl));
tpl->SetClassName(Nan::New("VtkWarpVectorWrap").ToLocalChecked());
tpl->InstanceTemplate()->SetInternalFieldCount(1);
Nan::SetPrototypeMethod(tpl, "FillInputPortInformation", FillInputPortInformation);
Nan::SetPrototypeMethod(tpl, "fillInputPortInformation", FillInputPortInformation);
Nan::SetPrototypeMethod(tpl, "GetScaleFactor", GetScaleFactor);
Nan::SetPrototypeMethod(tpl, "getScaleFactor", GetScaleFactor);
Nan::SetPrototypeMethod(tpl, "NewInstance", NewInstance);
Nan::SetPrototypeMethod(tpl, "newInstance", NewInstance);
Nan::SetPrototypeMethod(tpl, "SafeDownCast", SafeDownCast);
Nan::SetPrototypeMethod(tpl, "safeDownCast", SafeDownCast);
Nan::SetPrototypeMethod(tpl, "SetScaleFactor", SetScaleFactor);
Nan::SetPrototypeMethod(tpl, "setScaleFactor", SetScaleFactor);
#ifdef VTK_NODE_PLUS_VTKWARPVECTORWRAP_INITPTPL
VTK_NODE_PLUS_VTKWARPVECTORWRAP_INITPTPL
#endif
ptpl.Reset( tpl );
}
void VtkWarpVectorWrap::New(const Nan::FunctionCallbackInfo<v8::Value>& info)
{
if(!info.IsConstructCall())
{
Nan::ThrowError("Constructor not called in a construct call.");
return;
}
if(info.Length() == 0)
{
vtkSmartPointer<vtkWarpVector> native = vtkSmartPointer<vtkWarpVector>::New();
VtkWarpVectorWrap* obj = new VtkWarpVectorWrap(native);
obj->Wrap(info.This());
}
else
{
if(info[0]->ToObject() != vtkNodeJsNoWrap )
{
Nan::ThrowError("Parameter Error");
return;
}
}
info.GetReturnValue().Set(info.This());
}
void VtkWarpVectorWrap::FillInputPortInformation(const Nan::FunctionCallbackInfo<v8::Value>& info)
{
VtkWarpVectorWrap *wrapper = ObjectWrap::Unwrap<VtkWarpVectorWrap>(info.Holder());
vtkWarpVector *native = (vtkWarpVector *)wrapper->native.GetPointer();
if(info.Length() > 0 && info[0]->IsInt32())
{
if(info.Length() > 1 && info[1]->IsObject() && (Nan::New(VtkInformationWrap::ptpl))->HasInstance(info[1]))
{
VtkInformationWrap *a1 = ObjectWrap::Unwrap<VtkInformationWrap>(info[1]->ToObject());
int r;
if(info.Length() != 2)
{
Nan::ThrowError("Too many parameters.");
return;
}
r = native->FillInputPortInformation(
info[0]->Int32Value(),
(vtkInformation *) a1->native.GetPointer()
);
info.GetReturnValue().Set(Nan::New(r));
return;
}
}
Nan::ThrowError("Parameter mismatch");
}
void VtkWarpVectorWrap::GetScaleFactor(const Nan::FunctionCallbackInfo<v8::Value>& info)
{
VtkWarpVectorWrap *wrapper = ObjectWrap::Unwrap<VtkWarpVectorWrap>(info.Holder());
vtkWarpVector *native = (vtkWarpVector *)wrapper->native.GetPointer();
double r;
if(info.Length() != 0)
{
Nan::ThrowError("Too many parameters.");
return;
}
r = native->GetScaleFactor();
info.GetReturnValue().Set(Nan::New(r));
}
void VtkWarpVectorWrap::NewInstance(const Nan::FunctionCallbackInfo<v8::Value>& info)
{
VtkWarpVectorWrap *wrapper = ObjectWrap::Unwrap<VtkWarpVectorWrap>(info.Holder());
vtkWarpVector *native = (vtkWarpVector *)wrapper->native.GetPointer();
vtkWarpVector * r;
if(info.Length() != 0)
{
Nan::ThrowError("Too many parameters.");
return;
}
r = native->NewInstance();
VtkWarpVectorWrap::InitPtpl();
v8::Local<v8::Value> argv[1] =
{ Nan::New(vtkNodeJsNoWrap) };
v8::Local<v8::Function> cons =
Nan::New<v8::FunctionTemplate>(VtkWarpVectorWrap::ptpl)->GetFunction();
v8::Local<v8::Object> wo = cons->NewInstance(1, argv);
VtkWarpVectorWrap *w = new VtkWarpVectorWrap();
w->native = r;
w->Wrap(wo);
info.GetReturnValue().Set(wo);
}
void VtkWarpVectorWrap::SafeDownCast(const Nan::FunctionCallbackInfo<v8::Value>& info)
{
VtkWarpVectorWrap *wrapper = ObjectWrap::Unwrap<VtkWarpVectorWrap>(info.Holder());
vtkWarpVector *native = (vtkWarpVector *)wrapper->native.GetPointer();
if(info.Length() > 0 && info[0]->IsObject() && (Nan::New(VtkObjectBaseWrap::ptpl))->HasInstance(info[0]))
{
VtkObjectBaseWrap *a0 = ObjectWrap::Unwrap<VtkObjectBaseWrap>(info[0]->ToObject());
vtkWarpVector * r;
if(info.Length() != 1)
{
Nan::ThrowError("Too many parameters.");
return;
}
r = native->SafeDownCast(
(vtkObjectBase *) a0->native.GetPointer()
);
VtkWarpVectorWrap::InitPtpl();
v8::Local<v8::Value> argv[1] =
{ Nan::New(vtkNodeJsNoWrap) };
v8::Local<v8::Function> cons =
Nan::New<v8::FunctionTemplate>(VtkWarpVectorWrap::ptpl)->GetFunction();
v8::Local<v8::Object> wo = cons->NewInstance(1, argv);
VtkWarpVectorWrap *w = new VtkWarpVectorWrap();
w->native = r;
w->Wrap(wo);
info.GetReturnValue().Set(wo);
return;
}
Nan::ThrowError("Parameter mismatch");
}
void VtkWarpVectorWrap::SetScaleFactor(const Nan::FunctionCallbackInfo<v8::Value>& info)
{
VtkWarpVectorWrap *wrapper = ObjectWrap::Unwrap<VtkWarpVectorWrap>(info.Holder());
vtkWarpVector *native = (vtkWarpVector *)wrapper->native.GetPointer();
if(info.Length() > 0 && info[0]->IsNumber())
{
if(info.Length() != 1)
{
Nan::ThrowError("Too many parameters.");
return;
}
native->SetScaleFactor(
info[0]->NumberValue()
);
return;
}
Nan::ThrowError("Parameter mismatch");
}
| [
"axkibe@gmail.com"
] | axkibe@gmail.com |
2cfdc556e4cc98fe0a05b88ca7fd1e50bfa8a6e9 | 4cfd44a3d8133c18070f12c0718d646beb3b5971 | /lib/ui/painting/display_list_deferred_image_gpu_skia.cc | 8d7e6a8c32a4c62fd362698e442b9ff07e4079f0 | [
"BSD-3-Clause"
] | permissive | jiangkang/engine | ecb1ccc2fab0b25743e767d8f483183bbc5cba8a | bb51cda2fa47268d8c5bcb72550467a3bd6291a6 | refs/heads/master | 2023-08-31T10:09:23.857381 | 2023-03-22T13:55:39 | 2023-03-22T13:55:39 | 172,898,069 | 0 | 0 | BSD-3-Clause | 2019-09-10T11:30:16 | 2019-02-27T10:53:48 | C++ | UTF-8 | C++ | false | false | 8,144 | cc | // Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "flutter/lib/ui/painting/display_list_deferred_image_gpu_skia.h"
#include "third_party/skia/include/core/SkColorSpace.h"
namespace flutter {
sk_sp<DlDeferredImageGPUSkia> DlDeferredImageGPUSkia::Make(
const SkImageInfo& image_info,
sk_sp<DisplayList> display_list,
fml::TaskRunnerAffineWeakPtr<SnapshotDelegate> snapshot_delegate,
const fml::RefPtr<fml::TaskRunner>& raster_task_runner,
fml::RefPtr<SkiaUnrefQueue> unref_queue) {
return sk_sp<DlDeferredImageGPUSkia>(new DlDeferredImageGPUSkia(
ImageWrapper::Make(image_info, std::move(display_list),
std::move(snapshot_delegate), raster_task_runner,
std::move(unref_queue)),
raster_task_runner));
}
sk_sp<DlDeferredImageGPUSkia> DlDeferredImageGPUSkia::MakeFromLayerTree(
const SkImageInfo& image_info,
std::shared_ptr<LayerTree> layer_tree,
fml::TaskRunnerAffineWeakPtr<SnapshotDelegate> snapshot_delegate,
const fml::RefPtr<fml::TaskRunner>& raster_task_runner,
fml::RefPtr<SkiaUnrefQueue> unref_queue) {
return sk_sp<DlDeferredImageGPUSkia>(new DlDeferredImageGPUSkia(
ImageWrapper::MakeFromLayerTree(
image_info, std::move(layer_tree), std::move(snapshot_delegate),
raster_task_runner, std::move(unref_queue)),
raster_task_runner));
}
DlDeferredImageGPUSkia::DlDeferredImageGPUSkia(
std::shared_ptr<ImageWrapper> image_wrapper,
fml::RefPtr<fml::TaskRunner> raster_task_runner)
: image_wrapper_(std::move(image_wrapper)),
raster_task_runner_(std::move(raster_task_runner)) {}
// |DlImage|
DlDeferredImageGPUSkia::~DlDeferredImageGPUSkia() {
fml::TaskRunner::RunNowOrPostTask(raster_task_runner_,
[image_wrapper = image_wrapper_]() {
if (!image_wrapper) {
return;
}
image_wrapper->Unregister();
image_wrapper->DeleteTexture();
});
}
// |DlImage|
sk_sp<SkImage> DlDeferredImageGPUSkia::skia_image() const {
return image_wrapper_ ? image_wrapper_->CreateSkiaImage() : nullptr;
};
// |DlImage|
std::shared_ptr<impeller::Texture> DlDeferredImageGPUSkia::impeller_texture()
const {
return nullptr;
}
// |DlImage|
bool DlDeferredImageGPUSkia::isOpaque() const {
return image_wrapper_ ? image_wrapper_->image_info().isOpaque() : false;
}
// |DlImage|
bool DlDeferredImageGPUSkia::isTextureBacked() const {
return image_wrapper_ ? image_wrapper_->isTextureBacked() : false;
}
// |DlImage|
SkISize DlDeferredImageGPUSkia::dimensions() const {
return image_wrapper_ ? image_wrapper_->image_info().dimensions()
: SkISize::MakeEmpty();
}
// |DlImage|
size_t DlDeferredImageGPUSkia::GetApproximateByteSize() const {
return sizeof(*this) +
(image_wrapper_ ? image_wrapper_->image_info().computeMinByteSize()
: 0);
}
std::optional<std::string> DlDeferredImageGPUSkia::get_error() const {
return image_wrapper_ ? image_wrapper_->get_error() : std::nullopt;
}
std::shared_ptr<DlDeferredImageGPUSkia::ImageWrapper>
DlDeferredImageGPUSkia::ImageWrapper::Make(
const SkImageInfo& image_info,
sk_sp<DisplayList> display_list,
fml::TaskRunnerAffineWeakPtr<SnapshotDelegate> snapshot_delegate,
fml::RefPtr<fml::TaskRunner> raster_task_runner,
fml::RefPtr<SkiaUnrefQueue> unref_queue) {
auto wrapper = std::shared_ptr<ImageWrapper>(new ImageWrapper(
image_info, std::move(display_list), std::move(snapshot_delegate),
std::move(raster_task_runner), std::move(unref_queue)));
wrapper->SnapshotDisplayList();
return wrapper;
}
std::shared_ptr<DlDeferredImageGPUSkia::ImageWrapper>
DlDeferredImageGPUSkia::ImageWrapper::MakeFromLayerTree(
const SkImageInfo& image_info,
std::shared_ptr<LayerTree> layer_tree,
fml::TaskRunnerAffineWeakPtr<SnapshotDelegate> snapshot_delegate,
fml::RefPtr<fml::TaskRunner> raster_task_runner,
fml::RefPtr<SkiaUnrefQueue> unref_queue) {
auto wrapper = std::shared_ptr<ImageWrapper>(
new ImageWrapper(image_info, nullptr, std::move(snapshot_delegate),
std::move(raster_task_runner), std::move(unref_queue)));
wrapper->SnapshotDisplayList(std::move(layer_tree));
return wrapper;
}
DlDeferredImageGPUSkia::ImageWrapper::ImageWrapper(
const SkImageInfo& image_info,
sk_sp<DisplayList> display_list,
fml::TaskRunnerAffineWeakPtr<SnapshotDelegate> snapshot_delegate,
fml::RefPtr<fml::TaskRunner> raster_task_runner,
fml::RefPtr<SkiaUnrefQueue> unref_queue)
: image_info_(image_info),
display_list_(std::move(display_list)),
snapshot_delegate_(std::move(snapshot_delegate)),
raster_task_runner_(std::move(raster_task_runner)),
unref_queue_(std::move(unref_queue)) {}
void DlDeferredImageGPUSkia::ImageWrapper::OnGrContextCreated() {
FML_DCHECK(raster_task_runner_->RunsTasksOnCurrentThread());
SnapshotDisplayList();
}
void DlDeferredImageGPUSkia::ImageWrapper::OnGrContextDestroyed() {
FML_DCHECK(raster_task_runner_->RunsTasksOnCurrentThread());
DeleteTexture();
}
sk_sp<SkImage> DlDeferredImageGPUSkia::ImageWrapper::CreateSkiaImage() const {
FML_DCHECK(raster_task_runner_->RunsTasksOnCurrentThread());
if (texture_.isValid() && context_) {
return SkImage::MakeFromTexture(
context_.get(), texture_, kTopLeft_GrSurfaceOrigin,
image_info_.colorType(), image_info_.alphaType(),
image_info_.refColorSpace());
}
return image_;
}
bool DlDeferredImageGPUSkia::ImageWrapper::isTextureBacked() const {
return texture_.isValid();
}
void DlDeferredImageGPUSkia::ImageWrapper::SnapshotDisplayList(
std::shared_ptr<LayerTree> layer_tree) {
fml::TaskRunner::RunNowOrPostTask(
raster_task_runner_,
[weak_this = weak_from_this(), layer_tree = std::move(layer_tree)]() {
auto wrapper = weak_this.lock();
if (!wrapper) {
return;
}
auto snapshot_delegate = wrapper->snapshot_delegate_;
if (!snapshot_delegate) {
return;
}
if (layer_tree) {
auto display_list =
layer_tree->Flatten(SkRect::MakeWH(wrapper->image_info_.width(),
wrapper->image_info_.height()),
snapshot_delegate->GetTextureRegistry(),
snapshot_delegate->GetGrContext());
wrapper->display_list_ = std::move(display_list);
}
auto result = snapshot_delegate->MakeSkiaGpuImage(
wrapper->display_list_, wrapper->image_info_);
if (result->texture.isValid()) {
wrapper->texture_ = result->texture;
wrapper->context_ = std::move(result->context);
wrapper->texture_registry_ =
wrapper->snapshot_delegate_->GetTextureRegistry();
wrapper->texture_registry_->RegisterContextListener(
reinterpret_cast<uintptr_t>(wrapper.get()), weak_this);
} else if (result->image) {
wrapper->image_ = std::move(result->image);
} else {
std::scoped_lock lock(wrapper->error_mutex_);
wrapper->error_ = result->error;
}
});
}
std::optional<std::string> DlDeferredImageGPUSkia::ImageWrapper::get_error() {
std::scoped_lock lock(error_mutex_);
return error_;
}
void DlDeferredImageGPUSkia::ImageWrapper::Unregister() {
if (texture_registry_) {
texture_registry_->UnregisterContextListener(
reinterpret_cast<uintptr_t>(this));
}
}
void DlDeferredImageGPUSkia::ImageWrapper::DeleteTexture() {
if (texture_.isValid()) {
unref_queue_->DeleteTexture(texture_);
texture_ = GrBackendTexture();
}
image_.reset();
context_.reset();
}
} // namespace flutter
| [
"noreply@github.com"
] | noreply@github.com |
a20f9d4796dfd787de5290f78a8f9f7e4948ddcb | 379ad63841f0603380204645843d6954ce9f7af1 | /LeetCode/LC784.cpp | 0108ecaf4ea580b15fb221813c1ab88415bb7a1b | [] | no_license | DevinChang/LC_AC | 3ec3f311ac16c84ed2add1d871be56fc068cb20b | a10897854e33e7dec8f4c63b002dc8098ed27e9e | refs/heads/master | 2023-07-03T22:04:31.034848 | 2021-08-14T02:41:16 | 2021-08-14T02:41:16 | 100,836,559 | 11 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 428 | cpp | class Solution {
public:
vector<string> res;
vector<string> letterCasePermutation(string S) {
int u = 0;
dfs(S, u);
return res;
}
void dfs(string &s, int u) {
if(u == s.size()) {
res.push_back(s);
return;
}
dfs(s, u+1);
if(!isdigit(s[u])) {
s[u] ^= 32;
dfs(s, u+1);
s[u] ^= 32;
}
}
}; | [
"devinchang@126.com"
] | devinchang@126.com |
f2840d16142a920e9bb9e62ebc43d6adadd95627 | bb9b83b2526d3ff8a932a1992885a3fac7ee064d | /src/modules/osgSim/generated_code/AzimElevationSector.pypp.cpp | ece75298954e6c7df5b950c8eec0bc856ca35c92 | [] | no_license | JaneliaSciComp/osgpyplusplus | 4ceb65237772fe6686ddc0805b8c77d7b4b61b40 | a5ae3f69c7e9101a32d8cc95fe680dab292f75ac | refs/heads/master | 2021-01-10T19:12:31.756663 | 2015-09-09T19:10:16 | 2015-09-09T19:10:16 | 23,578,052 | 20 | 7 | null | null | null | null | UTF-8 | C++ | false | false | 8,782 | cpp | // This file has been generated by Py++.
#include "boost/python.hpp"
#include "wrap_osgsim.h"
#include "wrap_referenced.h"
#include "azimelevationsector.pypp.hpp"
namespace bp = boost::python;
struct AzimElevationSector_wrapper : osgSim::AzimElevationSector, bp::wrapper< osgSim::AzimElevationSector > {
AzimElevationSector_wrapper( )
: osgSim::AzimElevationSector( )
, bp::wrapper< osgSim::AzimElevationSector >(){
// null constructor
}
AzimElevationSector_wrapper(float minAzimuth, float maxAzimuth, float minElevation, float maxElevation, float fadeAngle=0.0f )
: osgSim::AzimElevationSector( minAzimuth, maxAzimuth, minElevation, maxElevation, fadeAngle )
, bp::wrapper< osgSim::AzimElevationSector >(){
// constructor
}
virtual char const * className( ) const {
if( bp::override func_className = this->get_override( "className" ) )
return func_className( );
else{
return this->osgSim::AzimElevationSector::className( );
}
}
char const * default_className( ) const {
return osgSim::AzimElevationSector::className( );
}
virtual ::osg::Object * clone( ::osg::CopyOp const & copyop ) const {
if( bp::override func_clone = this->get_override( "clone" ) )
return func_clone( boost::ref(copyop) );
else{
return this->osgSim::AzimElevationSector::clone( boost::ref(copyop) );
}
}
::osg::Object * default_clone( ::osg::CopyOp const & copyop ) const {
return osgSim::AzimElevationSector::clone( boost::ref(copyop) );
}
virtual ::osg::Object * cloneType( ) const {
if( bp::override func_cloneType = this->get_override( "cloneType" ) )
return func_cloneType( );
else{
return this->osgSim::AzimElevationSector::cloneType( );
}
}
::osg::Object * default_cloneType( ) const {
return osgSim::AzimElevationSector::cloneType( );
}
virtual bool isSameKindAs( ::osg::Object const * obj ) const {
if( bp::override func_isSameKindAs = this->get_override( "isSameKindAs" ) )
return func_isSameKindAs( boost::python::ptr(obj) );
else{
return this->osgSim::AzimElevationSector::isSameKindAs( boost::python::ptr(obj) );
}
}
bool default_isSameKindAs( ::osg::Object const * obj ) const {
return osgSim::AzimElevationSector::isSameKindAs( boost::python::ptr(obj) );
}
virtual char const * libraryName( ) const {
if( bp::override func_libraryName = this->get_override( "libraryName" ) )
return func_libraryName( );
else{
return this->osgSim::AzimElevationSector::libraryName( );
}
}
char const * default_libraryName( ) const {
return osgSim::AzimElevationSector::libraryName( );
}
virtual float operator()( ::osg::Vec3 const & eyeLocal ) const {
if( bp::override func___call__ = this->get_override( "__call__" ) )
return func___call__( boost::ref(eyeLocal) );
else{
return this->osgSim::AzimElevationSector::operator()( boost::ref(eyeLocal) );
}
}
float default___call__( ::osg::Vec3 const & eyeLocal ) const {
return osgSim::AzimElevationSector::operator()( boost::ref(eyeLocal) );
}
virtual void computeDataVariance( ) {
if( bp::override func_computeDataVariance = this->get_override( "computeDataVariance" ) )
func_computeDataVariance( );
else{
this->osg::Object::computeDataVariance( );
}
}
void default_computeDataVariance( ) {
osg::Object::computeDataVariance( );
}
virtual ::osg::Referenced * getUserData( ) {
if( bp::override func_getUserData = this->get_override( "getUserData" ) )
return func_getUserData( );
else{
return this->osg::Object::getUserData( );
}
}
::osg::Referenced * default_getUserData( ) {
return osg::Object::getUserData( );
}
virtual ::osg::Referenced const * getUserData( ) const {
if( bp::override func_getUserData = this->get_override( "getUserData" ) )
return func_getUserData( );
else{
return this->osg::Object::getUserData( );
}
}
::osg::Referenced const * default_getUserData( ) const {
return osg::Object::getUserData( );
}
virtual void resizeGLObjectBuffers( unsigned int arg0 ) {
if( bp::override func_resizeGLObjectBuffers = this->get_override( "resizeGLObjectBuffers" ) )
func_resizeGLObjectBuffers( arg0 );
else{
this->osg::Object::resizeGLObjectBuffers( arg0 );
}
}
void default_resizeGLObjectBuffers( unsigned int arg0 ) {
osg::Object::resizeGLObjectBuffers( arg0 );
}
virtual void setName( ::std::string const & name ) {
if( bp::override func_setName = this->get_override( "setName" ) )
func_setName( name );
else{
this->osg::Object::setName( name );
}
}
void default_setName( ::std::string const & name ) {
osg::Object::setName( name );
}
virtual void setThreadSafeRefUnref( bool threadSafe ) {
if( bp::override func_setThreadSafeRefUnref = this->get_override( "setThreadSafeRefUnref" ) )
func_setThreadSafeRefUnref( threadSafe );
else{
this->osg::Object::setThreadSafeRefUnref( threadSafe );
}
}
void default_setThreadSafeRefUnref( bool threadSafe ) {
osg::Object::setThreadSafeRefUnref( threadSafe );
}
virtual void setUserData( ::osg::Referenced * obj ) {
if( bp::override func_setUserData = this->get_override( "setUserData" ) )
func_setUserData( boost::python::ptr(obj) );
else{
this->osg::Object::setUserData( boost::python::ptr(obj) );
}
}
void default_setUserData( ::osg::Referenced * obj ) {
osg::Object::setUserData( boost::python::ptr(obj) );
}
};
void register_AzimElevationSector_class(){
bp::class_< AzimElevationSector_wrapper, bp::bases< osgSim::Sector, osgSim::AzimRange, osgSim::ElevationRange >, osg::ref_ptr< AzimElevationSector_wrapper >, boost::noncopyable >( "AzimElevationSector", bp::no_init )
.def( bp::init< >() )
.def( bp::init< float, float, float, float, bp::optional< float > >(( bp::arg("minAzimuth"), bp::arg("maxAzimuth"), bp::arg("minElevation"), bp::arg("maxElevation"), bp::arg("fadeAngle")=0.0f )) )
.def(
"className"
, (char const * ( ::osgSim::AzimElevationSector::* )( )const)(&::osgSim::AzimElevationSector::className)
, (char const * ( AzimElevationSector_wrapper::* )( )const)(&AzimElevationSector_wrapper::default_className) )
.def(
"clone"
, (::osg::Object * ( ::osgSim::AzimElevationSector::* )( ::osg::CopyOp const & )const)(&::osgSim::AzimElevationSector::clone)
, (::osg::Object * ( AzimElevationSector_wrapper::* )( ::osg::CopyOp const & )const)(&AzimElevationSector_wrapper::default_clone)
, ( bp::arg("copyop") )
, bp::return_value_policy< bp::reference_existing_object >() )
.def(
"cloneType"
, (::osg::Object * ( ::osgSim::AzimElevationSector::* )( )const)(&::osgSim::AzimElevationSector::cloneType)
, (::osg::Object * ( AzimElevationSector_wrapper::* )( )const)(&AzimElevationSector_wrapper::default_cloneType)
, bp::return_value_policy< bp::reference_existing_object >() )
.def(
"isSameKindAs"
, (bool ( ::osgSim::AzimElevationSector::* )( ::osg::Object const * )const)(&::osgSim::AzimElevationSector::isSameKindAs)
, (bool ( AzimElevationSector_wrapper::* )( ::osg::Object const * )const)(&AzimElevationSector_wrapper::default_isSameKindAs)
, ( bp::arg("obj") ) )
.def(
"libraryName"
, (char const * ( ::osgSim::AzimElevationSector::* )( )const)(&::osgSim::AzimElevationSector::libraryName)
, (char const * ( AzimElevationSector_wrapper::* )( )const)(&AzimElevationSector_wrapper::default_libraryName) )
.def(
"__call__"
, (float ( ::osgSim::AzimElevationSector::* )( ::osg::Vec3 const & )const)(&::osgSim::AzimElevationSector::operator())
, (float ( AzimElevationSector_wrapper::* )( ::osg::Vec3 const & )const)(&AzimElevationSector_wrapper::default___call__)
, ( bp::arg("eyeLocal") ) );
}
| [
"brunsc@janelia.hhmi.org"
] | brunsc@janelia.hhmi.org |
75c701cffda1f5f20d964df31e8782cbf9d0bd32 | c45ed46065d8b78dac0dd7df1c95b944f34d1033 | /TC-SRM-582-div1-250/ywq.cpp | d187a04d1d8054cac22bde51ece6c540fc726dfd | [] | no_license | yzq986/cntt2016-hw1 | ed65a6b7ad3dfe86a4ff01df05b8fc4b7329685e | 12e799467888a0b3c99ae117cce84e8842d92337 | refs/heads/master | 2021-01-17T11:27:32.270012 | 2017-01-26T03:23:22 | 2017-01-26T03:23:22 | 84,036,200 | 0 | 0 | null | 2017-03-06T06:04:12 | 2017-03-06T06:04:12 | null | UTF-8 | C++ | false | false | 1,253 | cpp | #include <map>
#include <cmath>
#include <cstdio>
#include <string>
#include <vector>
#include <cstring>
#include <algorithm>
using namespace std;
#define pb push_back
#define mp make_pair
#define x first
#define y second
typedef long long ll;
typedef pair<int,int> pii;
typedef vector<int> vi;
typedef vector<pii> vpii;
const ll inf=1000000000000000000ll;
int a[55];
pair<int,ll> b[55];
ll c[55];
struct SpaceWarDiv1
{
long long minimalFatigue(vector <int> magicalGirlStrength, vector <int> enemyStrength, vector<long long> enemyCount)
{
int n=magicalGirlStrength.size(),m=enemyCount.size();
for (int i=0;i<n;i++) a[i]=magicalGirlStrength[i];
for (int i=0;i<m;i++) b[i]=mp(enemyStrength[i],enemyCount[i]);
sort(a,a+n);sort(b,b+m);
if (a[n-1]<b[m-1].x) return -1;
ll l=1,r=inf;
while (l<=r)
{
ll mid=(l+r)>>1;
for (int i=0;i<m;i++) c[i]=b[i].y;
int k=m-1;bool ok=0;
for (int i=n-1;i>=0;i--)
{
if (b[k].x>a[i]) break;
ll res=mid;
while (res&&k>=0)
{
ll t=min(res,c[k]);
res-=t;c[k]-=t;
if (!c[k]) k--;
}
if (k<0) {ok=1;break;}
}
if (ok) r=mid-1; else l=mid+1;
}
return l;
}
};
| [
"noreply@github.com"
] | noreply@github.com |
721bf4605325fac47efdfe7e1a78c29c489c8116 | 1e1636c4b0f7be2365a76b4524839d2ff4ad453c | /Linear interpolation.cpp | eb65d54ea71ac1da1abd39283b7a8016a0d735de | [] | no_license | BanarryHuang/ITSA | f55cde0cc8edf7de1fdd85ea0737153775fe4855 | 06da23a179f045e88cabd9658c1a79978f5a3048 | refs/heads/master | 2020-06-08T13:23:36.938514 | 2019-10-22T05:59:20 | 2019-10-22T05:59:20 | 193,234,885 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 913 | cpp | #include <bits/stdc++.h>
using namespace std;
int main(){
int n,x,y,i,gc,bc,t;
float f;
cin >> x;
if(x<0)
f=0;
else if(x<800)
f=(float)x/800*7.3;
else if(x<1000)
f=7.3-(float)(x-800)/200*0.8;
else if(x<2000)
f=6.5+(float)(x-1000)/1000*0.4;
else if(x<3000)
f=6.9+(float)(x-2000)/200*0.3;
else if(x<3500)
f=7.2+(float)(x-3000)/500*0.3;
else if(x<4000)
f=7.5+(float)(x-3500)/500*0.5;
else if(x<4500)
f=8.0+(float)(x-4000)/500*12.0;
else if(x<5000)
f=20.0-(float)(x-4500)/500*11.6;
else if(x<6000)
f=8.4+(float)(x-5000)/1000*0.8;
else if(x<6600)
f=9.2+(float)(x-6000)/600*0.9;
else if(x<8600)
f=10.1+(float)(x-6600)/2000*5.4;
else
f=15.5;
cout << fixed << setprecision(4) << f << endl;
return 0;
}
| [
"noreply@github.com"
] | noreply@github.com |
356c7f03211d91785e71faceb0a33013a3312c6e | c036a364d6be1a790712ba806026efb53a0678ac | /2019/12/20/Reverse/WcyVM/exp.cpp | f08bc019e82f57bedc386d3d6a2ef3b643e358eb | [] | no_license | iTassel/iTassel.github.io | b197ee8d5c725967b24bd07e7b538951cd60e4d6 | f67693ad68c614112b9c622879de1696856e6ab6 | refs/heads/master | 2021-06-26T20:24:03.312447 | 2021-04-04T04:01:03 | 2021-04-04T04:01:03 | 226,534,478 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 734 | cpp | #include<stdio.h>
int main()
{
int P[]={
0x36D3, 0x2AFF, 0x2ACB, 0x2B95, 0x2B95, 0x2B95, 0x169F, 0x186D,
0x18D7, 0x1611, 0x18D7, 0x2B95, 0x2C23, 0x2CA9, 0x1611, 0x1611,
0x18D7, 0x2AFF, 0x1849, 0x18FB, 0x2ACB, 0x2A71, 0x1735, 0x18D7,
0x1611, 0x2ACB, 0x15DD, 0x18D7, 0x2C23, 0x169F, 0x15DD, 0x2B95,
0x169F, 0x156B, 0x186D, 0x2AFF, 0x1611, 0x1611, 0x15DD, 0x2AFF,
0x2C23, 0x2ACB, 0x15DD, 0x15DD, 0x186D, 0x1849, 0x2B95, 0x156B,
0x1735, 0x18FB, 0x18FB, 0x2A71, 0x2AFF, 0x1735, 0x2C23, 0x15DD,
0x18D7, 0x2A71, 0x18D7, 0x18D7, 0x2C23, 0x2AFF, 0x156B, 0x2C23,
0x169F, 0x35AF, 0x2CA9, 0x32B5, 0x2AFF, 0x3039};
for(int i=69;i>=0;i--)
printf("%c",(((P[i]-102)^116)-99)/110);
}
| [
"iTassel@outlook.com"
] | iTassel@outlook.com |
bbb032207ea182da1713337b984df0cedfdec70f | ad273708d98b1f73b3855cc4317bca2e56456d15 | /aws-cpp-sdk-glue/source/model/TransformSortCriteria.cpp | 2aa03ee80771d3b0ef52c84dde9266d8f3e6cc65 | [
"MIT",
"Apache-2.0",
"JSON"
] | permissive | novaquark/aws-sdk-cpp | b390f2e29f86f629f9efcf41c4990169b91f4f47 | a0969508545bec9ae2864c9e1e2bb9aff109f90c | refs/heads/master | 2022-08-28T18:28:12.742810 | 2020-05-27T15:46:18 | 2020-05-27T15:46:18 | 267,351,721 | 1 | 0 | Apache-2.0 | 2020-05-27T15:08:16 | 2020-05-27T15:08:15 | null | UTF-8 | C++ | false | false | 2,234 | cpp | /*
* Copyright 2010-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
#include <aws/glue/model/TransformSortCriteria.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
namespace Aws
{
namespace Glue
{
namespace Model
{
TransformSortCriteria::TransformSortCriteria() :
m_column(TransformSortColumnType::NOT_SET),
m_columnHasBeenSet(false),
m_sortDirection(SortDirectionType::NOT_SET),
m_sortDirectionHasBeenSet(false)
{
}
TransformSortCriteria::TransformSortCriteria(JsonView jsonValue) :
m_column(TransformSortColumnType::NOT_SET),
m_columnHasBeenSet(false),
m_sortDirection(SortDirectionType::NOT_SET),
m_sortDirectionHasBeenSet(false)
{
*this = jsonValue;
}
TransformSortCriteria& TransformSortCriteria::operator =(JsonView jsonValue)
{
if(jsonValue.ValueExists("Column"))
{
m_column = TransformSortColumnTypeMapper::GetTransformSortColumnTypeForName(jsonValue.GetString("Column"));
m_columnHasBeenSet = true;
}
if(jsonValue.ValueExists("SortDirection"))
{
m_sortDirection = SortDirectionTypeMapper::GetSortDirectionTypeForName(jsonValue.GetString("SortDirection"));
m_sortDirectionHasBeenSet = true;
}
return *this;
}
JsonValue TransformSortCriteria::Jsonize() const
{
JsonValue payload;
if(m_columnHasBeenSet)
{
payload.WithString("Column", TransformSortColumnTypeMapper::GetNameForTransformSortColumnType(m_column));
}
if(m_sortDirectionHasBeenSet)
{
payload.WithString("SortDirection", SortDirectionTypeMapper::GetNameForSortDirectionType(m_sortDirection));
}
return payload;
}
} // namespace Model
} // namespace Glue
} // namespace Aws
| [
"aws-sdk-cpp-automation@github.com"
] | aws-sdk-cpp-automation@github.com |
41c644c005d25d229df93e25aa1fa61587d023a9 | 2b70f59668c7c43e96c42b655f7105454210abdc | /trunk/public/slib/path.cpp | 46f9ede4f9f291c3891107760f39d45b429b05f9 | [] | no_license | 00nanhai/Lcc | 40c375f224224807b02a420b95eb78089b53ac94 | 83f4720d38f1e40211ca5d56de42b7e2fa125136 | refs/heads/master | 2021-01-23T08:38:34.110990 | 2014-12-19T08:06:45 | 2014-12-19T08:06:45 | 28,177,669 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,239 | cpp | /**
* author: Soli
* date : 2013-07-09
* */
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <string>
#include <limits.h>
#include <iostream>
#include <sys/stat.h>
#include <dirent.h>
#include "path.h"
namespace slib
{
using namespace std;
//得到当前应用程序的路径
std::string get_app_path()
{
char proc_exe[] = "/proc/self/exe";
char app_path[PATH_MAX];
memset(app_path, 0, sizeof(app_path));
if(readlink(proc_exe, app_path, sizeof(app_path)-1) > 0)
{
char *ptr=strrchr(app_path,'/');
if(ptr){
ptr[1]='\0';
}
return std::string(app_path);
}
return "./";
}
std::string realpath(const char *path)
{
char real_path[PATH_MAX];
if(0 != access(path, F_OK | R_OK))
{
return "";
}
return ::realpath(path, real_path);
}
std::string realpath(const std::string &path)
{
return realpath(path.c_str());
}
std::string pathname(const std::string& path_name)
{
std::string path(path_name.c_str());
size_t t = path.size();
for(; t > 0; --t)
{
if(path[t-1] == '/' || path[t-1] == '\\')
{
break;
}
}
for(; t > 0; --t)
{
if(path[t-1] != '/' && path[t-1] != '\\')
{
break;
}
}
return path.substr(0, t);
}
std::string basename(const std::string& path_name)
{
std::string path(path_name.c_str());
size_t head = 0, tail = 0;
for(size_t t = path.size(); t > 0; --t)
{
if(path[t-1] != '/' && path[t-1] != '\\')
{
tail = t;
break;
}
}
for(size_t h = tail; h > 0; --h)
{
if(path[h-1] == '/' || path[h-1] == '\\')
{
head = h;
break;
}
}
return path.substr(head, tail - head);
}
int mkdir(const std::string& path)
{
std::string dir(path.c_str());
if(dir.empty())
{
return -1;
}
// 替换反斜杠
for(size_t i = 0; i < dir.size(); ++i)
{
if(dir[i] == '\\')
{
dir[i] = '/';
}
}
//
size_t pos = (dir[0] == '/' ? 1 : 0);
size_t slash_pos = dir.find('/', pos);
for( ; pos != std::string::npos; slash_pos = dir.find('/', pos))
{
std::string cur_path(dir.substr(0, slash_pos));
if(slash_pos != std::string::npos)
{
pos = slash_pos + 1;
}
else
{
pos = std::string::npos;
}
struct stat filestat;
if(0 == stat(cur_path.c_str(), &filestat))
{
if(!S_ISDIR(filestat.st_mode))
{
return -2;
}
continue;
}
if(0 != ::mkdir(cur_path.c_str(), 0755))
{
return -3;
}
}
return 0;
}
int rmdir(const std::string& path)
{
DIR *dir = opendir(path.c_str());
if(NULL == dir)
{
return -1;
}
int err = 0;
struct dirent * entry;
for(entry = readdir(dir); NULL != entry; entry = readdir(dir))
{
std::string name(entry->d_name);
if(name == "." || name == "..")
continue;
string sub(path + "/" + name);
if(entry->d_type == DT_DIR)
{
err = rmdir(sub);
if(0 != err)
{
break;
}
}
else
{
if(0 != ::unlink(sub.c_str()))
{
err = -2;
break;
}
}
}
closedir(dir);
if(0 != ::rmdir(path.c_str()))
{
return -3;
}
return 0;
}
int rm(const std::string& path)
{
struct stat filestat;
if(stat(path.c_str(), &filestat)<0)
{ //文件不存在
return -1;
}
if(S_ISDIR(filestat.st_mode))
{
return rmdir(path);
}
if(0 != ::unlink(path.c_str()))
{
return -2;
}
return 0;
}
} // namespace slib
| [
"root@ubuntu.ubuntu-domain"
] | root@ubuntu.ubuntu-domain |
e6e7ed639de3576317e43e1afa1e00e00a1f203d | dad6a8033f8412790cbf9c2cb1a27064689875a7 | /DM2GDED/DM2EdPicFrame.cpp | d85978e669457958eb0b505dd8e8454b606350e4 | [] | no_license | gbsphenx/skproject | d95b28221187ada06b12dfa7550c5540bdf262dc | 48fb31883df76ecff0b6ebe533c89f779b66b12c | refs/heads/master | 2023-09-04T10:57:47.634857 | 2023-09-01T17:15:56 | 2023-09-01T17:15:56 | 32,668,925 | 13 | 3 | null | 2022-12-07T17:22:37 | 2015-03-22T09:08:24 | C++ | SHIFT_JIS | C++ | false | false | 3,444 | cpp | // DM2EdPicFrame.cpp : インプリメンテーション ファイル
//
#include "stdafx.h"
#include "dm2gded.h"
#include "DM2EdPicFrame.h"
#include "DM2EdPicView.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
CDM2EdPicFrame::DocMap CDM2EdPicFrame::m_map;
/////////////////////////////////////////////////////////////////////////////
// CDM2EdPicFrame
IMPLEMENT_DYNAMIC(CDM2EdPicFrame, CFrameWnd)
CDM2EdPicFrame::CDM2EdPicFrame(CGDEdCtx *pEdCtx): m_pEdCtx(pEdCtx)
{
}
CDM2EdPicFrame::~CDM2EdPicFrame()
{
}
BEGIN_MESSAGE_MAP(CDM2EdPicFrame, CFrameWnd)
//{{AFX_MSG_MAP(CDM2EdPicFrame)
ON_WM_CREATE()
ON_WM_CLOSE()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CDM2EdPicFrame メッセージ ハンドラ
BOOL CDM2EdPicFrame::OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext)
{
CDM2EdPicView *pView = new CDM2EdPicView(m_pEdCtx);
if (pView->Create(
NULL,
NULL,
AFX_WS_DEFAULT_VIEW,
CRect(0, 0, 0, 0),
this,
AFX_IDW_PANE_FIRST
)
) {
return TRUE;
}
return FALSE;
}
int CDM2EdPicFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (false
|| !m_wndVwPal.Create(WS_EX_CLIENTEDGE, 0 |WS_CHILD |WS_VISIBLE, CBRS_ALIGN_BOTTOM, this, 0x0100)
) {
return -1;
}
if (false
|| !m_wndToolBar.Create(this, 0 |WS_CHILD |WS_VISIBLE |CBRS_TOP |CBRS_TOOLTIPS |CBRS_FLYBY |CBRS_SIZE_DYNAMIC)
|| !m_wndToolBar.LoadToolBar(IDR_EDPIC)
) {
return -1;
}
m_wndToolBar.SetFlatLook();
m_wndToolBar.SetHeight(GetSystemMetrics(SM_CYSMICON) + 12);
m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
return -1;
ModifyStyleEx(WS_EX_CLIENTEDGE, 0, SWP_FRAMECHANGED);
EnableDocking(CBRS_ALIGN_ANY);
DockControlBar(&m_wndToolBar);
return 0;
}
CDM2EdPicFrame *CDM2EdPicFrame::CreateNew(CDocument *pDoc, CGDEdCtx *pEdCtx, CGDEntry pos)
{
bool fMakeVis = false;
CDM2EdPicFrame *pFrame;
DocMap::iterator
iterPos = m_map.find(pDoc),
iterEnd = m_map.end();
if (iterPos == iterEnd) {
pFrame = new CDM2EdPicFrame(pEdCtx);
pFrame->LoadFrame(IDR_EDPIC);
fMakeVis = true;
} else {
pFrame = iterPos->second;
}
if (pFrame) {
if (fMakeVis) {
pFrame->InitialUpdateFrame(NULL, 0);
}
CDM2EdPicView *pVw = static_cast<CDM2EdPicView *>(pFrame->GetActiveView());
if (pVw) {
pVw->Select(pos);
}
if (fMakeVis) {
pFrame->InitialUpdateFrame(NULL, 1);
m_map[pDoc] = pFrame;
} else {
pFrame->SetActiveWindow();
}
return pFrame;
}
return NULL;
}
void CDM2EdPicFrame::OnCloseDocument(CDocument *pDoc)
{
DocMap::iterator
iterPos = m_map.find(pDoc),
iterEnd = m_map.end();
if (iterPos != iterEnd) {
CDM2EdPicFrame *p = iterPos->second;
m_map.erase(iterPos);
p->DestroyWindow();
}
}
void CDM2EdPicFrame::PostNcDestroy()
{
DocMap::iterator
iterPos = m_map.begin(),
iterEnd = m_map.end();
while (iterPos != iterEnd) {
if (this == iterPos->second) {
iterPos = m_map.erase(iterPos);
} else {
iterPos++;
}
}
CFrameWnd::PostNcDestroy();
}
void CDM2EdPicFrame::OnClose()
{
CDM2EdPicView *pVw = static_cast<CDM2EdPicView *>(GetActiveView());
if (pVw) {
if (!pVw->DoSave(true)) return;
}
CFrameWnd::OnClose();
}
| [
"h8mastre@gmail.com"
] | h8mastre@gmail.com |
64f792dd75f8ab386aa60648faa908c19e21ef01 | 7c2dbc60472c7be2e08bf549eb4704fc3169338a | /src/Core/Mouse.h | 203993293e0de461c93e16a6e56918c08275a5fd | [] | no_license | sangwe11/Physics-Simulation-Assignment | 8f874802b54409930ab94b7aa7b25706c4b5ef1d | b731caa2ad55e7a25bbdb52a283ae90f43b4eba5 | refs/heads/master | 2020-03-28T04:44:55.952637 | 2018-09-06T21:55:04 | 2018-09-06T21:55:04 | 147,733,130 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 592 | h | #ifndef _MOUSE_H
#define _MOUSE_H
#include "InputDevice.h"
class Mouse : public InputDevice
{
public:
Mouse();
void update();
void handle_event(const SDL_Event &e);
void bind_button(const uint8_t &mouse_button, const Button &button);
void unbind_button(const uint8_t &mouse_button, const Button &button);
void sensitivity(const float &sensitivity) { m_sensitivity = sensitivity; }
const float &sensitivity() { return m_sensitivity; }
void toggle_capture();
private:
std::map<uint8_t, Button> m_button_bindings;
float m_sensitivity = 1.0f;
bool m_captured = true;
};
#endif | [
"hello+github@garysangwell.co.uk"
] | hello+github@garysangwell.co.uk |
76a4ab1553450194e8264d06afe1b976c9fcc9eb | 58e631e84062a18a8202fb68f5cce2c754c0fe49 | /Runtime/Render/RenderMisc.h | da1c134aa2d013c63a3880f9bb49bdd0fdadf529 | [] | no_license | zhaosiwen1949/Fire_Game_Engine | e816215833cc5a3a006da0c257f0f447c2a7cbbc | f2c13c3f32765fd6df368649fccd1b67564cb3ec | refs/heads/main | 2023-07-06T18:55:12.437310 | 2021-08-06T01:38:12 | 2021-08-06T01:38:12 | 393,214,296 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,528 | h | #pragma once
#include "AliceGL.h"
namespace Alice{
enum PremitiveType{
kPremitiveTypeTriangle,
kPremitiveTypeTriangleStrip,
kPremitiveTypeTriangleFan,
kPremitiveTypePoints,
kPremitiveTypeLines,
kPremitiveTypeLineStrip,
kPremitiveTypeLineLoop,
kPremitiveTypeCount
};
enum RenderingQueue {
kRenderingQueueSkyBox = 1,
kRenderingQueueOpaque = 500,
kRenderingQueueTransparent = 1000,
kRenderingQueueRenderQueueCount
};
enum LightingPass {
kLightingPassNone = 1,
kLightingPassOnePass = 2,
kLightingPassForwardBase = 3,
kLightingPassForwardAdditive = 4,
kLightingPassDeffered = 5
};
enum RenderArchitecture{
kRenderArchitectureForward = 1,
kRenderArchitectureDefered,
kRenderArchitectureCount
};
enum RenderPassCatagory {
kRenderPassCatagoryNoLit = 1,
kRenderPassCatagoryOnePass,
kRenderPassCatagoryForwardBase,
kRenderPassCatagoryForwardAdd,
kRenderPassCatagoryShadowCaster,
kRenderPassCatagoryProjector,
kRenderPassCatagoryDepthMap,
kRenderPassCatagoryUI,
kRenderPassCatagoryCount
};
#define ALICE_ONE GL_ONE
#define ALICE_ZERO GL_ZERO
#define ALICE_SRC_ALPHA GL_SRC_ALPHA
#define ALICE_SRC_COLOR GL_SRC_COLOR
#define ALICE_DST_ALPHA GL_DST_ALPHA
#define ALICE_DST_COLOR GL_DST_COLOR
#define ALICE_ONE_MINUS_SRC_COLOR GL_ONE_MINUS_SRC_COLOR
#define ALICE_ONE_MINUS_SRC_ALPHA GL_ONE_MINUS_SRC_ALPHA
#define ALICE_ONE_MINUS_DST_COLOR GL_ONE_MINUS_DST_COLOR
#define ALICE_ONE_MINUS_DST_ALPHA GL_ONE_MINUS_DST_ALPHA
} | [
"caoyasong1949@163.com"
] | caoyasong1949@163.com |
90458cdde21dcd35dfbdbacf3df1c6fc60876539 | 30773b649ebd89ffadd16d30fd62740b77ca7865 | /SDK/BP_FishingFish_Battlegill_03_Colour_05_Bittersweet_parameters.h | deadb8ef77c42a7f298406bfb3765636910807d7 | [] | no_license | The-Jani/Sot-SDK | 7f2772fb5df421e02b8fec237248af407cb2540b | 2a158a461c697cca8db67aa28ffe3e43677dcf11 | refs/heads/main | 2023-07-09T07:17:56.972569 | 2021-08-18T23:45:06 | 2021-08-18T23:45:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 639 | h | #pragma once
// Name: S, Version: 2.2.1
#include "../SDK.h"
/*!!DEFINE!!*/
/*!!HELPER_DEF!!*/
/*!!HELPER_INC!!*/
#ifdef _MSC_VER
#pragma pack(push, 0x01)
#endif
namespace CG
{
//---------------------------------------------------------------------------
// Parameters
//---------------------------------------------------------------------------
// Function BP_FishingFish_Battlegill_03_Colour_05_Bittersweet.BP_FishingFish_Battlegill_03_Colour_05_Bittersweet_C.UserConstructionScript
struct ABP_FishingFish_Battlegill_03_Colour_05_Bittersweet_C_UserConstructionScript_Params
{
};
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
| [
"ploszjanos9844@gmail.com"
] | ploszjanos9844@gmail.com |
46baf23db271cbab65f1391ad27c1eae0e305fcc | 0b052189d9e5ccdadd0392431ed176c2e9a4763b | /ChatServer.cc | 3f0dd61af1e5c6241c21fa86a1376475c6499a23 | [] | no_license | Timecur/ChatRoom | 5434106d34303a48dafa0c3b10ee622fd8892bc8 | 0a180da4d2d51cb7514f80b9223c813d496f2957 | refs/heads/master | 2020-04-30T05:50:20.062209 | 2019-07-18T10:50:31 | 2019-07-18T10:50:31 | 176,635,775 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,009 | cc | #include <iostream>
#include "ChatServer.hpp"
#include <string>
#include <stdlib.h>
using namespace std;
static void Usage(string proc){
cout << "Usage:" << proc << "tcp_port udp_port" << endl;
}
void *RunProduct(void* arg){
pthread_detach(pthread_self());
ChatServer *sp = (ChatServer*)arg;
while(1){
sp->Product();
}
}
void *RunConsume(void* arg){
pthread_detach(pthread_self());
ChatServer *sp = (ChatServer*)arg;
while(1){
sp->Consume();
}
}
// ChatServer tcp_port udp_port
int main(int argc, char* argv[])
{
if(argc != 3){
Usage(argv[0]);
exit(1);
}
int tcp_port = atoi(argv[1]);
int udp_port = atoi(argv[2]);
ChatServer *sp = new ChatServer(tcp_port, udp_port);
sp->InitServer();
// 创建两个线程分别:放数据 取数据
pthread_t c, p;
pthread_create(&p, NULL, RunProduct, (void*) sp);
pthread_create(&c, NULL, RunConsume, (void*) sp);
sp->Start();
return 0;
}
| [
"noreply@github.com"
] | noreply@github.com |
ae0916baadf6d5a4d61512d544011f6a3e6a2e39 | 2e5d81f39409ab74781306ffe0c307ddb070eca2 | /2019/Spectre V1/CppCon/cache.cpp | a49bd248a1852a3583190e78a7cf869df1d2ff25 | [] | no_license | Ques4k/ctf_solutions | 80228e31bdbe132b4b9cb6a5a5830ee6f937c297 | 343ea876be9e4a907340e908d070e9d6318a725c | refs/heads/master | 2023-07-15T10:50:12.958002 | 2021-08-29T09:49:19 | 2021-08-29T09:49:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,021 | cpp | /*
* cache.cpp
* Demo of standard cache side channel attack.
*
* code taken from cppcon 2018 chandler carruty spectre talk
*/
#include <algorithm>
#include <numeric>
#include <array>
#include <iostream>
#include <cstring>
#include <string_view>
#include <tuple>
#include <x86intrin.h>
static constexpr std::string_view sekret = "This is my secret!";
static void force_read(uint8_t *p) {
asm volatile("" : : "r"(*p) : "memory");
}
static int64_t read_tsc() {
unsigned int junk;
return __rdtscp(&junk);
}
template <typename RangeT>
static std::pair<int, int> top_two_indices(const RangeT &range) {
int j{0}, k{0};
for(unsigned int i{0}; i < range.size(); i++) {
if(range[i] > range[j]) {
k = j;
j = i;
} else if(range[i] > range[k]) {
k = i;
}
}
return {j, k};
}
/*
* perform cache attack against text[idx]
* In a real attack the attacker would be flushing cache and measuring while
* the victim is doing the data-dependent read. In this demo they are done
* together in the ideal order for the attacker.
*/
char leak_byte(std::string_view text, int idx) {
constexpr auto stride = 512;
static uint8_t timing_array[256 * stride];
memset(timing_array, 1, sizeof timing_array);
const char *data = text.begin();
std::array<int64_t, 256> latencies{};
std::array<int, 256> scores{};
int best_val{0}, runner_up_val{0};
for(int run{0}; run < 1000; run++) {
// flush all of timing array
for(int i{0}; i < 256; i++) {
_mm_clflush(&timing_array[i * stride]);
}
// perform reads that are data-dependent on the secret
// as a program being attacked might
for(int i{0}; i < 100; i++) {
force_read(&timing_array[data[idx] * stride]);
}
// now measure read latencies to see if we can detect what data[idx] was
for(int i{0}; i < 256; i++) {
int mixed_i{((i * 167) + 13) & 0xff}; // ???, I guess so we test in pseudo-random order?
uint8_t *timing_entry{&timing_array[mixed_i * stride]};
int64_t start{read_tsc()};
force_read(timing_entry);
latencies[mixed_i] = read_tsc() - start;
}
// score anything that stands out
int64_t avg_latency{std::accumulate(latencies.begin(), latencies.end(), 0) / 256};
for(int i{0}; i < 256; i++) {
if(latencies[i] < (avg_latency * 3 / 4)) {
scores[i]++;
}
}
// see if any score is significantly better than the rest
std::tie(best_val, runner_up_val) = top_two_indices(scores);
if(scores[best_val] > (2 * scores[runner_up_val] + 400)) {
break;
}
}
return char(best_val);
}
int main(int argc, char **argv) {
for(unsigned long i{0}; i < sekret.size(); i++) {
char ch{leak_byte(sekret, i)};
std::cout << "got: " << ch << std::endl;
}
return 0;
}
| [
"stefan92ff@yandex.com"
] | stefan92ff@yandex.com |
ee610e151fdffc2313fbf585cc09bf5fc5450e2e | 1e71016aec75f465572283d496d01df24ef4fbd5 | /krafton_server/krafton_server/textReader.cpp | 0e381de8eb4552aa3f9e4ae70c9a00a516b6c155 | [] | no_license | cjsjyh/krafton-internship-server | 884b419779be0f670bf40a3e9cedbb93acb1bc79 | 476ff4f77324ca8b9035f3f24cdc86b0134baf27 | refs/heads/master | 2021-08-10T18:06:50.205939 | 2020-07-02T10:39:13 | 2020-07-02T10:39:13 | 198,593,748 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,029 | cpp | #include "textReader.h"
textReader::textReader()
{
}
textReader::~textReader()
{
}
bool textReader::ReadFile(string fname)
{
fstream in(fname);
string line;
int pos;
if (!in.is_open())
{
std::cout << "Failed to open file" << endl;
return false;
}
while (getline(in, line))
{
vector<string> fields;
if (line == "")
break;
while ((pos = line.find(',')) >= 0)
{
fields.push_back(line.substr(0, pos));
line = line.substr(pos + 1);
}
if (line.length() > 0)
fields.push_back(line);
if (fields.size() < 3)
{
cout << "[WARNING] INCORRECT DATASHEET FORMAT!" << endl;
return false;
}
if (fields[2] == "int")
paramInt.insert(make_pair(fields[0], stoi(fields[1])));
else if (fields[2] == "float")
paramFloat.insert(make_pair(fields[0], stof(fields[1])));
else if (fields[2] == "bool")
{
if (fields[2] == "true")
paramBool.insert(make_pair(fields[0], true));
else
paramBool.insert(make_pair(fields[0], false));
}
else
return false;
}
return true;
} | [
"jyhckb@naver.com"
] | jyhckb@naver.com |
cac82ab0f5e9c7235609ceb2296335f2985997d7 | 118cac7bfb14359d848cffedf2c3fadbb634932d | /src/treepoly_smooth.cc | 3a322b83130d92f847189c89bf847d9f21838177 | [
"Apache-2.0"
] | permissive | freemeson/multinomial | 7aa950ce1fbcf834db7bf125db866f49c82b944f | 9bf1913a0e6d24ac40f219d44f757393decd1ad6 | refs/heads/master | 2021-12-14T17:02:43.922752 | 2021-12-08T13:57:10 | 2021-12-08T13:57:10 | 87,716,447 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,834 | cc | #include "../include/treepoly_smooth.hh"
#include <iostream>
//#include "TMath.h"
#include <cmath>
#include <new>
template<class T>
treepoly_smooth<T>::~treepoly_smooth()
{
//std::cout << "treepoly_smooth::~treepoly_smooth();" << std::endl;
//if(m_dimensions!= 1) {delete l3_treepoly_smooth;}
clear_data();
if(deep_layers.size()!=0)
{
//std::cout << "deleting deep layers" << std::endl;
delete deep_layers[0];
delete deep_layers[1];
}
std::vector<treepoly_smooth<T> * >().swap(deep_layers);
}
template<class T>
treepoly_smooth<T>::treepoly_smooth(int dimensions, int max_level, int order):
m_order(order),
m_shaping_level(5),
l2(dimensions, order),
m_x(dimensions, order),
neural_cut(1e-5),
do_l4(true),
sigmoid_width(0.3)
{
m_dimensions = dimensions;
m_max_level = max_level;
avg_t = 0;
avg_tt = 0;
sum_w = 0;
deep_layers.clear();
skip_me = false;
per_pi_half = ((T)2.0/(T)3.14159265358979312);
per_pi = ((T)1.0/(T)3.14159265358979312);
l3_treepoly_smooth = 0;
l4 = 0;
core = 0;
m_reserved_capacity = 0;
input = new std::vector<std::vector<T> >;
n_events = 0;
}
template<class T>
void treepoly_smooth<T>::reserve(int capacity, bool need_input_array)
{
m_reserved_capacity = capacity;
try{
// (*input).reserve(capacity);
// t.reserve(capacity);
// w.reserve(capacity);
if(need_input_array) // in deep_train the input array is provided by the pointer p_input
{
if(m_dimensions!=1){
(*input).resize(capacity); // i hate to use resize... but these are not complex objects;
}else{
(*input).resize(capacity, std::vector<T>(1));
}
}
t.resize(capacity);
w.resize(capacity);
}
catch(std::bad_alloc &ba){
std::cout << "bad alloc at void treepoly_smooth<T>::reserve , ba = " << ba.what() << std::endl;
}
}
template<class T>
void treepoly_smooth<T>::fill(std::vector<T> const & x, T const & target, T const & weight )
{
// (*input).push_back(x);
// t.push_back(target);
//w.push_back(weight);
if(n_events >= m_reserved_capacity) {std::cout << "n_events = " << n_events << " m_reserved_capacity = " << m_reserved_capacity << " input_size = " << input_size << " input.size() = " << (*input).size() << std::endl; }
(*input)[n_events] = x;
t[n_events] = target;
w[n_events] = weight;
n_events++;
}
template<class T>
void treepoly_smooth<T>::fill_diad_serie(tensor_serie<T> const & x_tensor, T const & target, T const & weight )
{
// not needed: // (*input).push_back(x);
//t.push_back(target);
//w.push_back(weight);
if(n_events >= m_reserved_capacity) {std::cout << "n_events = " << n_events << " m_reserved_capacity = " << m_reserved_capacity << " input_size = " << input_size << " input.size() = " << (*input).size() << std::endl; }
t[n_events] = target;
w[n_events] = weight;
n_events++;
core->fill(x_tensor, 1 ,weight);
l2.fill(x_tensor, target, weight);
}
template<class T>
void treepoly_smooth<T>::fill_1dim(T const & x, T const & target, T const & weight )
{
// (*input).push_back(std::vector<T> (1,x));
// t.push_back(target);
// w.push_back(weight);
(*input)[n_events][0] = x;
t[n_events] = target;
w[n_events] = weight;
n_events++;
}
template<class T>
void treepoly_smooth<T>::fill(tensor_serie<T> const & x, T const & target, T const & weight )
{
core->fill(x, 1 ,weight);
l2.fill(x, target, weight);
//avg_t+=target*weight;
//sum_w+=weight;
}
template<class T>
void treepoly_smooth<T>::set_input_array(std::vector<T> * in_p_input, T * in_p_target, T * in_p_weight, int size)
{
p_input = in_p_input;
p_w = in_p_weight;
p_t = in_p_target;
input_size = size;
}
template<class T>
void treepoly_smooth<T>::set_input_array(std::vector<T> * in_p_input, int size)
{
p_input = in_p_input;
input_size = size;
}
template<class T>
void treepoly_smooth<T>::set_wt_array(T * in_p_target, T * in_p_weight, int size)
{
p_w = in_p_weight;
p_t = in_p_target;
input_size = size;
}
template<class T>
void treepoly_smooth<T>::init_core()
{
core = new tensor_serie<T>(m_dimensions, 2*m_order);
//std::cout << "core = " << core << std::endl;
}
template<class T>
void treepoly_smooth<T>::clear_data()
{
//(*input).clear();w.clear();t.clear(); //this does not touch the pointers
//std::vector<std::vector<T> >().swap((*input));
if(input!=0) {delete input;}
std::vector<T>().swap(w);
std::vector<T>().swap(t);
}
template<class T>
void treepoly_smooth<T>::train(bool in_posterior_correction)
{
posterior_correction = in_posterior_correction;
if(!posterior_correction) {m_shaping_level = 0;do_l4 = false;}
//the order of the input is not preserved, so better to keep all
// std::vector<std::vector<T> > input_copy;
// std::vector<T> t_copy;
// std::vector<T> w_copy;
// if(m_dimensions != 1)
// {
// input_copy = input;
// t_copy = t;
// w_copy = w;
// }
tensor_serie<T> x(m_dimensions, 2*m_order);
init_core();
for(int i=0; i!= (*input).size(); i++)
{
x.create_diad((*input)[i]);
fill(x, t[i],w[i]);
}
set_input_array(&(*input)[0], (*input).size());
bool keep_data = m_dimensions != 1 && do_l4 && m_max_level>1;
solve(x, keep_data,posterior_correction);
//if(m_dimensions != 1 && do_l4) {l4 = new treepoly_smooth<T>(1,m_shaping_level);}
if(posterior_correction && m_dimensions != 1 && do_l4 && m_max_level>1) {
l4 = new treepoly_smooth<T>(1,4, 5);
l4->reserve(m_reserved_capacity);
for(int i=0; i!=(*input).size(); i++)
{
m_x.create_diad((*input)[i]);
l4->fill_1dim(eval(m_x), t[i], w[i]);
}
l4->train();
}
// std::cout<< "end of train(), deleting x? m_dim = "<< m_dimensions << " m_order = " << 2*m_order << std::endl;
clear_data();
}
template<class T>
void treepoly_smooth<T>::solve(tensor_serie<T> & x, bool keep_data , bool in_posterior_correction)
{
posterior_correction = in_posterior_correction;
//set_input_array(&(*input)[0],&t[0],&w[0],(*input).size());
set_wt_array(&t[0],&w[0],w.size());
std::cout << "dimensions = " << m_dimensions << " level = " << m_max_level << " size = " << input_size << " order = " << m_order << std::endl;
if(input_size < 1000) {skip_me = true; std::cout << "low statistics, ending the training" << std::endl; return;}
core->decompose(m_order);
l2.solve(core->m_decomposed_matrix);
delete core;
// std::cout << "deleted core successfully" << std::endl;
response.clear();
response.resize(input_size);
if(posterior_correction && m_dimensions!=1 && m_shaping_level>0) {l3_treepoly_smooth = new treepoly_smooth(1, m_shaping_level, 3); l3_treepoly_smooth->reserve(m_reserved_capacity);}
for(int i=0; i!= input_size; i++)
{
m_x.create_diad(p_input[i]);
response[i] = l2.eval(m_x);
if(posterior_correction && m_dimensions!=1 && m_shaping_level>0 ) {l3_treepoly_smooth->fill_1dim(response[i], p_t[i], p_w[i]);}
}
if(posterior_correction && m_dimensions!=1 && m_shaping_level>0) {l3_treepoly_smooth->train();}
for(int i=0; i!= input_size; i++)
{
if(posterior_correction && m_dimensions!=1 && m_shaping_level>0){response[i] = l3_treepoly_smooth->eval_1dim(response[i]);}
//std::cout << "response[i]" << response[i] << std::endl;
avg_t +=response[i]*p_w[i];
avg_tt +=response[i]*response[i]*p_w[i];
sum_w +=p_w[i];
}
avg_t*=1.0/sum_w; //(T)input_size;//(*input).size();
avg_tt = avg_tt/sum_w - avg_t*avg_t;
if(avg_tt == 0.0) {skip_me = true; std::cout << "zero target variance^2, ending training" << std::endl; return;}
if(avg_tt <= 0.0) {skip_me = true; std::cout << "negative target variance^2, ending training" << std::endl; return;}
avg_tt = sqrt(avg_tt)/sigmoid_width;//*per_pi_half;
if(m_max_level!=1)
{
deep_train(x, posterior_correction);
}
if(!keep_data)
{
if(input!=0) {std::vector<std::vector<T> >().swap((*input));}
std::vector<T>().swap(w);
std::vector<T>().swap(t);
}
}
template<class T>
void treepoly_smooth<T>::deep_train(tensor_serie<T> & x, bool in_posterior_correction)
{
posterior_correction = in_posterior_correction;
//std::cout << "deep train, avg_t = " << avg_t << " avg_tt = " << avg_tt << std::endl;
//check max_level here
//std::cout << "deep train m_order = " << m_order << " m_max_level = " << m_max_level << " m_dimensions = " << m_dimensions << std::endl;
//deep_layers.resize(2, treepoly_smooth<T>(m_dimensions,m_max_level-1, m_order) );
deep_layers.push_back(new treepoly_smooth<T>(m_dimensions,m_max_level-1, m_order));
deep_layers.push_back(new treepoly_smooth<T>(m_dimensions,m_max_level-1, m_order));
//std::cout << "deep layers resized" << std::endl;
//std::cout << "input size = " << input_size << std::endl;
deep_layers[0]->init_core();
deep_layers[0]->reserve(m_reserved_capacity, false);
deep_layers[1]->init_core();
deep_layers[1]->reserve(m_reserved_capacity, false);
int low_index = 0, high_index = input_size-1;
for(int i=0; i!= input_size; i++)
{
x.create_diad(p_input[i]);
T resp = neural_response(response[i]);
T neural_resp = neural_weight(response[i]);
// if(resp<avg_t)
// std::cout << neural_resp << std::endl;
if(neural_resp>neural_cut)
{
deep_layers[0]->fill_diad_serie(x,p_t[i]-resp,p_w[i]*neural_resp);
}
// else
if(1.0 - neural_resp>=neural_cut)
{
deep_layers[1]->fill_diad_serie(x,p_t[i]-resp,p_w[i]*(1.0-neural_resp));
}
}
//response.clear();
std::vector<T>().swap(response);
deep_layers[0]->set_input_array(p_input, input_size);
deep_layers[1]->set_input_array(p_input, input_size);
if(m_dimensions == 1 )
{//w.clear(), t.clear();
std::vector<T>().swap(w);std::vector<T>().swap(t);
}
deep_layers[0]->solve(x, false, posterior_correction);
if(posterior_correction && m_dimensions != 1 && m_shaping_level>0) {deep_layers[0]->clear_data();}
deep_layers[1]->solve(x, false, posterior_correction);
if(posterior_correction && m_dimensions != 1 && m_shaping_level>0) {deep_layers[1]->clear_data();}
}
template<class T>
T treepoly_smooth<T>::eval(std::vector<T> const & x)
{
m_x.create_diad(x);
T response = eval(m_x);
if(posterior_correction && m_dimensions != 1 && do_l4 && m_max_level>1) {
return l4->eval_1dim(response);
}
else
{return response;}
}
template<class T>
T treepoly_smooth<T>::eval_1dim(T const & x)
{
m_x.create_diad_1dim(x);
T response = eval(m_x);
return response;
}
template<class T>
T treepoly_smooth<T>::eval(tensor_serie<T> const & x)
{
if(skip_me) {return avg_t;}
T value = l2.eval(x);
if(posterior_correction && m_dimensions!=1 && m_shaping_level>0) {value = l3_treepoly_smooth->eval_1dim(value);}
//T neural_resp = TMath::ATan( (value-avg_t)/avg_tt);
T neural_resp = neural_weight(value);//TMath::ATan( (value-avg_t)/avg_tt/per_pi_half/sigmoid_width*5.0)*per_pi + 0.5;
value = neural_response(value);//neural_resp*avg_tt + avg_t;
// std::cout << neural_resp << std::endl;
//std::cout << m_max_level << " , " << value << std::endl;
if(m_max_level>1)
{
//if(value<avg_t)
if(neural_resp > neural_cut)
{
value += deep_layers[0]->eval(x)*neural_resp; //deep_layers[1]->l2.eval(m_x);
}
//else
if(1.0 - neural_resp >= neural_cut)
{
value += deep_layers[1]->eval(x)*(1.0-neural_resp);
//value = -0.99;
}
}
// else{std::cout << "value 1 = " << value << std::endl;}
return value;
}
template<class T>
T treepoly_smooth<T>::neural_response(T value)
{
return atan( (value-avg_t)/avg_tt)*avg_tt+avg_t;
}
template<class T>
T treepoly_smooth<T>::neural_weight(T value)
{
return atan( (value-avg_t)/avg_tt/per_pi_half/sigmoid_width*1.0)*per_pi + 0.5;
}
template<class T>
void treepoly_smooth<T>::pretrain_add(treepoly_smooth<T> const untrained_single_sample)
{
//Needed for treepoly_smooth_fractions
//one must take care of normalisations prior to calling this
//l2.pretrain_add(untrained_single_sample.l2);
//here should be the addition of the samples, as it is needed for l3 training
(*input).insert((*input).end(), (*untrained_single_sample.input).begin(), (*untrained_single_sample.input).end());
w.insert(w.end(), untrained_single_sample.w.begin(), untrained_single_sample.w.end());
t.insert(t.end(), untrained_single_sample.t.begin(), untrained_single_sample.t.end());
}
template<class T>
T treepoly_smooth<T>::normalize(T norm)
{
//Needed for treepoly_smooth_fractions
T wsum = 0;
for(int i=0; i!= w.size(); i++)
{
wsum += w[i];
}
for(int i=0; i!= w.size(); i++)
{
w[i]*=norm/wsum;
}
return wsum;
}
template class treepoly_smooth<double>;
template class treepoly_smooth<long double>;
| [
"noreply@github.com"
] | noreply@github.com |
209912cd4d2c2629fd76a18684e11451cb46cb49 | bc7dfe8e57c0246b70975caa4a9714f842b567d1 | /ch11/prg11_4.cpp | 063041c4747ca597417bbc9c710fe0c2c502b74d | [] | no_license | TheSlamAnderson/cst203-data-structures | 60b6943d3f1098f2823ec1a88b4f3faa067179a0 | c36b64cd9cea1b194fe4a4ce5163699cf60a2149 | refs/heads/master | 2021-11-08T04:27:16.481424 | 2017-03-01T15:57:57 | 2017-03-01T15:57:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,918 | cpp | #ifdef _MSC_VER
// disable warning messages that identifier was truncated
// to 'number' characters in the debug information
#pragma warning(disable:4786)
#endif // _MSC_VER
// File: prg11_4.cpp
// the program inputs the file "studwk.dat" that contains student names and
// time worked in a part-time job during the week. the time is given in
// time24 format. using the index operator, the information is stored and
// updated in a map<string, time24> object called studentWorker. the program
// concludes by displaying the contents of the map, showing in alphabetical
// order the name and total time worked during the week
#include <iostream>
#include <fstream>
#include <iomanip>
#include <string>
#include <map>
#include "d_time24.h" // time24 class
#include "d_util.h" // for writeMap()
using namespace std;
int main()
{
// a map<string, time24> object whose entries are student names
// and total hours worked during a week
map<string, time24> studentWorker;
// map iterator
map<string, time24>::iterator iter;
// object used to input the data from file "studwk.dat"
ifstream fin;
string studName;
time24 workTime;
// open the file "studwk.dat"
fin.open("studwk.dat");
// input successive lines in the file consisting of the
// student name and the scheduled work time
while (true)
{
fin >> studName;
if (!fin)
break;
fin >> workTime;
// add a new student with workTime as time worked or update the
// accumulated work time if the student is already in the map
studentWorker[studName] += workTime;
}
// output the map, one key-value pair per line
writeMap(studentWorker,"\n");
return 0;
}
/*
File: "studwk.dat"
Tolan 4:15
Dong 3:00
Tolan 3:15
Weber 5:30
Tolan 2:45
Brock 4:20
Dong 4:00
Dong 3:30
Tolan 3:15
Weber 2:30
Run:
Brock 4:20
Dong 10:30
Tolan 13:30
Weber 8:00
*/
| [
"theslamanderson@gmail.com"
] | theslamanderson@gmail.com |
a0a331e9d68670c381ade430e6821fc96eb03254 | e4e4bdf367fb83225c5420b0c72617fa315aadd7 | /manipulation/robot-interface/iam_robolib/src/run_loop_shared_memory_handler.cpp | 9de624169ff740d21820aa01d58c42cf71fcd620 | [] | no_license | aaronhd/gastronomy | 938414bd73f95fabdfed2f20f812ff9ae81c9f40 | b1354a8d246785843666082c22207df484896b5c | refs/heads/master | 2020-04-29T23:27:33.273851 | 2019-03-06T01:18:26 | 2019-03-06T01:18:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 16,928 | cpp | //
// Created by mohit on 12/18/18.
//
#include "iam_robolib/run_loop_shared_memory_handler.h"
#include <iostream>
RunLoopProcessInfo* RunLoopSharedMemoryHandler::getRunLoopProcessInfo() {
return run_loop_info_;
}
boost::interprocess::interprocess_mutex* RunLoopSharedMemoryHandler::getRunLoopProcessInfoMutex() {
return run_loop_info_mutex_;
}
boost::interprocess::interprocess_mutex* RunLoopSharedMemoryHandler::getCurrentRobotStateBufferMutex() {
return shared_current_robot_state_mutex_;
}
SharedBuffer RunLoopSharedMemoryHandler::getTrajectoryGeneratorBuffer(int memory_region) {
if (memory_region == 0) {
return traj_gen_buffer_0_;
} else if (memory_region == 1) {
return traj_gen_buffer_1_;
} else {
std::cout << "Incorrect memory region for trajectory generator\n";
return nullptr;
}
}
SharedBuffer RunLoopSharedMemoryHandler::getFeedbackControllerBuffer(int memory_region) {
if (memory_region == 0) {
return feedback_controller_buffer_0_;
} else if (memory_region == 1) {
return feedback_controller_buffer_1_;
} else {
std::cout << "Incorrect memory region for feedback controller\n";
return nullptr;
}
}
SharedBuffer RunLoopSharedMemoryHandler::getTerminationParametersBuffer(int memory_region) {
if (memory_region == 0) {
return termination_buffer_0_;
} else if (memory_region == 1) {
return termination_buffer_1_;
} else {
std::cout << "Incorrect memory region for termination parameters\n";
return nullptr;
}
}
SharedBuffer RunLoopSharedMemoryHandler::getExecutionResultBuffer(int memory_region) {
if (memory_region == 0) {
return execution_result_buffer_0_;
} else if (memory_region == 1) {
return execution_result_buffer_1_;
} else {
std::cout << "Incorrect memory region for execution result buffer\n";
return nullptr;
}
}
SharedBuffer RunLoopSharedMemoryHandler::getFeedbackResultBuffer(int memory_region) {
if (memory_region == 0) {
return execution_feedback_buffer_0_;
} else if (memory_region == 1) {
return execution_feedback_buffer_1_;
} else {
std::cout << "Incorrect memory region for execution feedback result buffer\n";
return nullptr;
}
}
SharedBuffer RunLoopSharedMemoryHandler::getCurrentRobotStateBuffer() {
return current_robot_state_buffer_;
}
void RunLoopSharedMemoryHandler::start() {
// Start processing, might want to do some pre-processing
std::cout << "start run loop.\n";
// Create managed shared memory (segments) here.
boost::interprocess::shared_memory_object::remove(shared_memory_info_.getSharedMemoryNameForObjects().c_str());
managed_shared_memory_ = boost::interprocess::managed_shared_memory(
boost::interprocess::create_only,
shared_memory_info_.getSharedMemoryNameForObjects().c_str(),
shared_memory_info_.getObjectMemorySize());
// Add run loop process info to the main loop.
run_loop_info_ = managed_shared_memory_.construct<RunLoopProcessInfo>
(shared_memory_info_.getRunLoopInfoObjectName().c_str())
(1);
// Add the inter-process mutex into memory. We will grab this each
// time we want to update anything in the memory.
run_loop_info_mutex_ = managed_shared_memory_.construct<
boost::interprocess::interprocess_mutex>
(shared_memory_info_.getRunLoopInfoMutexName().c_str())
();
/**
* Create shared memory region for buffer 0.
*/
const char *shm_name_0 = shared_memory_info_.getSharedMemoryNameForParameters(0).c_str();
boost::interprocess::shared_memory_object::remove(shm_name_0);
shared_memory_object_0_ = boost::interprocess::shared_memory_object(
boost::interprocess::open_or_create,
shared_memory_info_.getSharedMemoryNameForParameters(0).c_str(),
boost::interprocess::read_write
);
shared_memory_object_0_.truncate(shared_memory_info_.getParameterMemorySize(0));
region_traj_params_0_= boost::interprocess::mapped_region(
shared_memory_object_0_,
boost::interprocess::read_write,
shared_memory_info_.getOffsetForTrajectoryParameters(),
shared_memory_info_.getSizeForTrajectoryParameters()
);
traj_gen_buffer_0_ = reinterpret_cast<SharedBuffer>(region_traj_params_0_.get_address());
region_feedback_controller_params_0_ = boost::interprocess::mapped_region(
shared_memory_object_0_,
boost::interprocess::read_write,
shared_memory_info_.getOffsetForFeedbackControllerParameters(),
shared_memory_info_.getSizeForFeedbackControllerParameters()
);
feedback_controller_buffer_0_ = reinterpret_cast<SharedBuffer>
(region_feedback_controller_params_0_.get_address());
region_termination_params_0_ = boost::interprocess::mapped_region(
shared_memory_object_0_,
boost::interprocess::read_write,
shared_memory_info_.getOffsetForTerminationParameters(),
shared_memory_info_.getSizeForTerminationParameters()
);
termination_buffer_0_ = reinterpret_cast<SharedBuffer>(
region_termination_params_0_.get_address());
region_timer_params_0_ = boost::interprocess::mapped_region(
shared_memory_object_0_,
boost::interprocess::read_write,
shared_memory_info_.getOffsetForTimerParameters(),
shared_memory_info_.getSizeForTimerParameters()
);
timer_buffer_0_ = reinterpret_cast<SharedBuffer>(region_timer_params_0_.get_address());
/**
* Create shared memory region for buffer 1.
*/
// Create shared memory objects. for different parameters
const char *shm_name_1 = shared_memory_info_.getSharedMemoryNameForParameters(1).c_str();
boost::interprocess::shared_memory_object::remove(shm_name_1);
shared_memory_object_1_ = boost::interprocess::shared_memory_object(
boost::interprocess::open_or_create,
shared_memory_info_.getSharedMemoryNameForParameters(1).c_str(),
boost::interprocess::read_write
);
// Allocate memory
shared_memory_object_1_.truncate(shared_memory_info_.getParameterMemorySize(1));
// Allocate regions for each parameter array
region_traj_params_1_ = boost::interprocess::mapped_region(
shared_memory_object_1_,
boost::interprocess::read_write,
shared_memory_info_.getOffsetForTrajectoryParameters(),
shared_memory_info_.getSizeForTrajectoryParameters()
);
traj_gen_buffer_1_ = reinterpret_cast<SharedBuffer>(region_traj_params_1_.get_address());
region_feedback_controller_params_1_ = boost::interprocess::mapped_region(
shared_memory_object_1_,
boost::interprocess::read_write,
shared_memory_info_.getOffsetForFeedbackControllerParameters(),
shared_memory_info_.getSizeForFeedbackControllerParameters()
);
feedback_controller_buffer_1_ = reinterpret_cast<SharedBuffer>
(region_feedback_controller_params_1_.get_address());
region_termination_params_1_ = boost::interprocess::mapped_region(
shared_memory_object_1_,
boost::interprocess::read_write,
shared_memory_info_.getOffsetForTerminationParameters(),
shared_memory_info_.getSizeForTerminationParameters()
);
termination_buffer_1_ = reinterpret_cast<SharedBuffer>(
region_termination_params_1_.get_address());
region_timer_params_1_ = boost::interprocess::mapped_region(
shared_memory_object_1_,
boost::interprocess::read_write,
shared_memory_info_.getOffsetForTimerParameters(),
shared_memory_info_.getSizeForTimerParameters()
);
timer_buffer_1_ = reinterpret_cast<SharedBuffer>(region_timer_params_1_.get_address());
/**
* Create mutexes for parameter buffers.
*/
shared_memory_mutex_0_ = managed_shared_memory_.construct<
boost::interprocess::interprocess_mutex>
(shared_memory_info_.getParameterMemoryMutexName(0).c_str())
();
shared_memory_mutex_1_ = managed_shared_memory_.construct<
boost::interprocess::interprocess_mutex>
(shared_memory_info_.getParameterMemoryMutexName(1).c_str())
();
/**
* Create shared memory region for sensor data buffer 0.
*/
// Create shared memory objects. for different parameters
const char *sensor_name_0 = shared_memory_info_.getSharedMemoryNameForSensorData(0).c_str();
boost::interprocess::shared_memory_object::remove(sensor_name_0);
shared_sensor_data_0_ = boost::interprocess::shared_memory_object(
boost::interprocess::open_or_create,
shared_memory_info_.getSharedMemoryNameForSensorData(0).c_str(),
boost::interprocess::read_write
);
shared_sensor_data_0_.truncate(shared_memory_info_.getSensorDataMemorySize());
region_traj_sensor_data_0_ = boost::interprocess::mapped_region(
shared_sensor_data_0_,
boost::interprocess::read_write,
shared_memory_info_.getOffsetForTrajectorySensorData(),
shared_memory_info_.getSizeForTrajectorySensorData()
);
traj_gen_sensor_buffer_0_ = reinterpret_cast<SharedBuffer>(
region_traj_sensor_data_0_.get_address());
region_feedback_controller_sensor_data_0_= boost::interprocess::mapped_region(
shared_sensor_data_0_,
boost::interprocess::read_write,
shared_memory_info_.getOffsetForFeedbackControllerSensorData(),
shared_memory_info_.getSizeForFeedbackControllerSensorData()
);
feedback_controller_sensor_buffer_0_ = reinterpret_cast<SharedBuffer>
(region_feedback_controller_sensor_data_0_.get_address());
region_termination_sensor_data_0_ = boost::interprocess::mapped_region(
shared_sensor_data_0_,
boost::interprocess::read_write,
shared_memory_info_.getOffsetForTerminationSensorData(),
shared_memory_info_.getSizeForTerminationSensorData()
);
termination_sensor_buffer_0_ = reinterpret_cast<SharedBuffer>(
region_termination_sensor_data_0_.get_address());
region_timer_sensor_data_0_= boost::interprocess::mapped_region(
shared_sensor_data_0_,
boost::interprocess::read_write,
shared_memory_info_.getOffsetForTimerParameters(),
shared_memory_info_.getSizeForTimerParameters()
);
timer_sensor_buffer_0_ = reinterpret_cast<SharedBuffer>(
region_timer_sensor_data_0_.get_address());
/**
* Create shared memory region for sensor data buffer 1.
*/
// Create shared memory objects. for different parameters
const char *sensor_name_1 = shared_memory_info_.getSharedMemoryNameForSensorData(1).c_str();
boost::interprocess::shared_memory_object::remove(sensor_name_1);
shared_sensor_data_1_ = boost::interprocess::shared_memory_object(
boost::interprocess::open_or_create,
shared_memory_info_.getSharedMemoryNameForSensorData(1).c_str(),
boost::interprocess::read_write
);
shared_sensor_data_1_.truncate(shared_memory_info_.getSensorDataMemorySize());
region_traj_sensor_data_1_ = boost::interprocess::mapped_region(
shared_sensor_data_1_,
boost::interprocess::read_write,
shared_memory_info_.getOffsetForTrajectorySensorData(),
shared_memory_info_.getSizeForTrajectorySensorData()
);
traj_gen_sensor_buffer_1_ = reinterpret_cast<SharedBuffer>(
region_traj_sensor_data_1_.get_address());
region_feedback_controller_sensor_data_1_= boost::interprocess::mapped_region(
shared_sensor_data_1_,
boost::interprocess::read_write,
shared_memory_info_.getOffsetForFeedbackControllerSensorData(),
shared_memory_info_.getSizeForFeedbackControllerSensorData()
);
feedback_controller_sensor_buffer_1_ = reinterpret_cast<SharedBuffer>
(region_feedback_controller_sensor_data_1_.get_address());
region_termination_sensor_data_1_ = boost::interprocess::mapped_region(
shared_sensor_data_1_,
boost::interprocess::read_write,
shared_memory_info_.getOffsetForTerminationSensorData(),
shared_memory_info_.getSizeForTerminationSensorData()
);
termination_sensor_buffer_1_ = reinterpret_cast<SharedBuffer>(
region_termination_sensor_data_1_.get_address());
region_timer_sensor_data_1_= boost::interprocess::mapped_region(
shared_sensor_data_1_,
boost::interprocess::read_write,
shared_memory_info_.getOffsetForTimerParameters(),
shared_memory_info_.getSizeForTimerParameters()
);
timer_sensor_buffer_1_ = reinterpret_cast<SharedBuffer>(
region_timer_sensor_data_1_.get_address());
/**
* Create mutexes for sensor data.
*/
shared_sensor_data_mutex_0_ = managed_shared_memory_.construct<
boost::interprocess::interprocess_mutex>
(shared_memory_info_.getSensorDataMutexName(0).c_str())
();
shared_sensor_data_mutex_1_ = managed_shared_memory_.construct<
boost::interprocess::interprocess_mutex>
(shared_memory_info_.getSensorDataMutexName(1).c_str())
();
/**
* Create memory 0 for execution response.
*/
const char *results_0 = shared_memory_info_.getSharedMemoryNameForResults(0).c_str();
boost::interprocess::shared_memory_object::remove(results_0);
shared_execution_result_0_ = boost::interprocess::shared_memory_object(
boost::interprocess::open_or_create,
shared_memory_info_.getSharedMemoryNameForResults(0).c_str(),
boost::interprocess::read_write
);
shared_execution_result_0_.truncate(shared_memory_info_.getExecutionResponseMemorySize());
region_execution_feedback_buffer_0 = boost::interprocess::mapped_region(
shared_execution_result_0_,
boost::interprocess::read_write,
shared_memory_info_.getOffsetForExecutionFeedbackData(),
shared_memory_info_.getSizeForExecutionFeedbackData()
);
execution_feedback_buffer_0_ = reinterpret_cast<SharedBuffer>(region_execution_feedback_buffer_0.get_address());
region_execution_result_buffer_0_ = boost::interprocess::mapped_region(
shared_execution_result_0_,
boost::interprocess::read_write,
shared_memory_info_.getOffsetForExecutionReturnData(),
shared_memory_info_.getSizeForExecutionReturnData()
);
execution_result_buffer_0_ = reinterpret_cast<SharedBuffer>(region_execution_result_buffer_0_.get_address());
/**
* Create memory 1 for execution response.
*/
const char *results_1 = shared_memory_info_.getSharedMemoryNameForResults(1).c_str();
boost::interprocess::shared_memory_object::remove(results_1);
shared_execution_result_1_ = boost::interprocess::shared_memory_object(
boost::interprocess::open_or_create,
shared_memory_info_.getSharedMemoryNameForResults(1).c_str(),
boost::interprocess::read_write
);
shared_execution_result_1_.truncate(shared_memory_info_.getExecutionResponseMemorySize());
region_execution_feedback_buffer_1_ = boost::interprocess::mapped_region(
shared_execution_result_1_,
boost::interprocess::read_write,
shared_memory_info_.getOffsetForExecutionFeedbackData(),
shared_memory_info_.getSizeForExecutionFeedbackData()
);
execution_feedback_buffer_1_ = reinterpret_cast<SharedBuffer>(region_execution_feedback_buffer_1_.get_address());
region_execution_result_buffer_1_ = boost::interprocess::mapped_region(
shared_execution_result_1_,
boost::interprocess::read_write,
shared_memory_info_.getOffsetForExecutionReturnData(),
shared_memory_info_.getSizeForExecutionReturnData()
);
execution_result_buffer_1_ = reinterpret_cast<SharedBuffer>(region_execution_result_buffer_1_.get_address());
/**
* Create mutexes for execution response.
*/
shared_execution_result_mutex_0_ = managed_shared_memory_.construct<
boost::interprocess::interprocess_mutex>
(shared_memory_info_.getExecutionResponseMutexName(0).c_str())
();
shared_execution_result_mutex_1_ = managed_shared_memory_.construct<
boost::interprocess::interprocess_mutex>
(shared_memory_info_.getExecutionResponseMutexName(1).c_str())
();
/**
* Create memory for current robot state.
*/
const char *current_robot_state = shared_memory_info_.getSharedMemoryNameForCurrentRobotState().c_str();
boost::interprocess::shared_memory_object::remove(current_robot_state);
shared_current_robot_state_ = boost::interprocess::shared_memory_object(
boost::interprocess::open_or_create,
shared_memory_info_.getSharedMemoryNameForCurrentRobotState().c_str(),
boost::interprocess::read_write
);
shared_current_robot_state_.truncate(shared_memory_info_.getCurrentRobotStateMemorySize());
region_current_robot_state_buffer_ = boost::interprocess::mapped_region(
shared_current_robot_state_,
boost::interprocess::read_write,
shared_memory_info_.getOffsetForCurrentRobotState(),
shared_memory_info_.getSizeForCurrentRobotState()
);
current_robot_state_buffer_ = reinterpret_cast<SharedBuffer>(region_current_robot_state_buffer_.get_address());
shared_current_robot_state_mutex_ = managed_shared_memory_.construct<
boost::interprocess::interprocess_mutex>
(shared_memory_info_.getCurrentRobotStateMutexName().c_str())
();
std::cout << "Did create all shared memory buffers." << std::endl;
}
| [
"kevinleezhang@gmail.com"
] | kevinleezhang@gmail.com |
b6072588db76b2673bfd284a5363752857d162af | 92bac70806163fac6244b4e310adb9dd62941621 | /utility/EbEventKey.hh | 822510f65ab5086b2b88697447976009e10fe6f6 | [] | no_license | lcls-l2daq/pds | d61d0a83dfe42781c546a39c64379bfa45900897 | c580cabde30cd40a6b218eb59d5070c012c9b3cf | refs/heads/master | 2021-01-18T23:32:33.119868 | 2017-10-23T19:50:03 | 2017-10-23T19:50:03 | 87,112,455 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,001 | hh | #ifndef Pds_EbEventKey_hh
#define Pds_EbEventKey_hh
namespace Pds {
class Sequence;
class BldSequenceSrv;
class EbSequenceSrv;
class EbCountSrv;
class EvrServer;
#define EbServerDeclare \
virtual bool succeeds (EbEventKey& key) const { return key.precedes (*this); } \
virtual bool coincides(EbEventKey& key) const { return key.coincides(*this); } \
virtual void assign (EbEventKey& key) const { key.assign (*this); } \
#define EbEventKeyDeclare(server) \
virtual bool precedes (const server &) { return false; } \
virtual bool coincides(const server &) { return false; } \
virtual void assign (const server &) {} \
class EbEventKey {
public:
virtual ~EbEventKey() {}
public:
EbEventKeyDeclare(EbSequenceSrv);
EbEventKeyDeclare(BldSequenceSrv);
EbEventKeyDeclare(EbCountSrv);
EbEventKeyDeclare(EvrServer);
public:
virtual const Sequence& sequence() const = 0;
virtual unsigned value() const = 0;
};
}
#endif
| [
"none@example.com"
] | none@example.com |
44fca2c590e601608accfaf7c49475bdb6bce002 | 26ef8463175f06d5e583ea540769e8f0d59ac077 | /test/testdnsrmap.cpp | 36f01e9ebf5467843dc4a5565a9366b5f0965e67 | [] | no_license | packetzero/dnsrmap | fc2bb5d12d525377bb2ca09c17d4af6ff9b06a1b | 507da808856036b160cccde2d726685d79049ccd | refs/heads/master | 2021-01-01T16:37:35.279405 | 2017-07-20T20:42:37 | 2017-07-20T20:42:37 | 97,875,137 | 4 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 4,166 | cpp | #include <gtest/gtest.h>
#include <string>
#include <vector>
using namespace std;
#include "../include/dnsrmap.h"
#ifdef WIN32
#include <Ws2tcpip.h>
#else // WIN32
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#endif // WIN32
int parse_addr6(std::string addr6, in6_addr &val) {
return inet_pton(AF_INET6, addr6.c_str(), (void *) &val);
}
int parse_addr4(std::string addr4, in_addr &val) {
return inet_pton(AF_INET, addr4.c_str(), (void *) &val);
}
static string _MockV4Name="p.typekit.net";
static string _MockV4AddrStr="23.76.195.26";
static in_addr _MockV4Addr;
static string _MockV4NameB="tomsitpro.com";
static string _MockV4AddrStrB="35.165.241.239";
static in_addr _MockV4AddrB;
static string _MockV4NameC="lb.geo.office365.com";
static string _MockV4AddrStrC="40.97.30.130";
static in_addr _MockV4AddrC;
// DNS that maps to multiple IPV6 addresses
static string _MockV6NameA="lb.geo.office365.com";
static string _MockV6PathA = "lb.geo.office365.com||outlook-namsouth.office365.com";
static string _MockV6AddrStrA1="2600:1404:27:2a2::20c1";
static string _MockV6AddrStrA2="2600:1404:27:299::20c1";
static in6_addr _MockV6AddrA1;
static in6_addr _MockV6AddrA2;
class DnsRMapTest : public ::testing::Test {
protected:
virtual void SetUp() {
parse_addr4(_MockV4AddrStr, _MockV4Addr);
parse_addr4(_MockV4AddrStrB, _MockV4AddrB);
parse_addr4(_MockV4AddrStrC, _MockV4AddrC);
parse_addr6(_MockV6AddrStrA1, _MockV6AddrA1);
parse_addr6(_MockV6AddrStrA2, _MockV6AddrA2);
}
// virtual void TearDown() {}
};
TEST_F(DnsRMapTest, single)
{
DnsRMap *rmap = DnsRMapNew();
rmap->add(_MockV4Addr, _MockV4Name, "", _MockV4AddrStr);
const DnsAddrEntry* entry = rmap->lookup(_MockV4Addr);
ASSERT_TRUE(entry != 0L);
ASSERT_EQ(_MockV4Name, entry->getName());
}
TEST_F(DnsRMapTest, removeOldEntries)
{
DnsRMap *rmap = DnsRMapNew();
rmap->add(_MockV4Addr, _MockV4Name, "", _MockV4AddrStr);
ASSERT_EQ(rmap->getNumEntriesV4(), 1);
rmap->CheckCleanup(time(NULL) + 60*60); // 1 hours ahead
ASSERT_EQ(rmap->getNumEntriesV4(), 0);
}
// This packet lead to a parse error that had to be fixed.
TEST_F(DnsRMapTest, singleB)
{
DnsRMap *rmap = DnsRMapNew();
rmap->add(_MockV4AddrB, _MockV4NameB, "", _MockV4AddrStrB);
const DnsAddrEntry* entry = rmap->lookup(_MockV4AddrB);
ASSERT_TRUE(entry != 0L);
ASSERT_EQ(_MockV4NameB, entry->getName());
}
TEST_F(DnsRMapTest, singlev6)
{
DnsRMap *rmap = DnsRMapNew();
rmap->add(_MockV6AddrA1, _MockV6NameA, "", _MockV6AddrStrA1);
const DnsAddrEntry* entry = rmap->lookup(_MockV6AddrA1);
ASSERT_TRUE(entry != 0L);
ASSERT_EQ(_MockV6NameA, entry->getName());
entry = rmap->lookup(_MockV6AddrA2);
ASSERT_TRUE(entry == 0L);
in6_addr addr6;
parse_addr6("0000:1404:00:2a2::00", addr6);
entry = rmap->lookup(addr6);
ASSERT_TRUE(entry == 0L);
}
// make sure cleanup happens (with no side-effects) when adding entry to existing mapping
TEST_F(DnsRMapTest, duplicate)
{
DnsRMap *rmap = DnsRMapNew();
rmap->add(_MockV4Addr, _MockV4Name, "", _MockV4AddrStr);
rmap->add(_MockV4Addr, _MockV4Name, "", _MockV4AddrStr);
rmap->add(_MockV4Addr, _MockV4Name, "", _MockV4AddrStr);
rmap->add(_MockV4Addr, _MockV4Name, "", _MockV4AddrStr);
ASSERT_TRUE(rmap->lookup(_MockV4Addr) != 0L);
rmap->add(_MockV6AddrA1, _MockV6NameA, _MockV6PathA, _MockV6AddrStrA1);
rmap->add(_MockV6AddrA1, _MockV6NameA, _MockV6PathA, _MockV6AddrStrA1);
rmap->add(_MockV6AddrA1, _MockV6NameA, _MockV6PathA, _MockV6AddrStrA1);
rmap->add(_MockV6AddrA1, _MockV6NameA, _MockV6PathA, _MockV6AddrStrA1);
ASSERT_TRUE(rmap->lookup(_MockV6AddrA1) != 0L);
}
TEST_F(DnsRMapTest, testCleanup)
{
DnsRMap *rmap = DnsRMapNew();
rmap->add(_MockV4Addr, _MockV4Name, "", _MockV4AddrStr);
const DnsAddrEntry* entry = rmap->lookup(_MockV4Addr);
ASSERT_TRUE(entry != 0L);
ASSERT_EQ(_MockV4Name, entry->getName());
rmap->clear();
// should not
entry = rmap->lookup(_MockV4Addr);
ASSERT_TRUE(entry == 0L);
}
int main(int argc, char **argv) {
::testing::InitGoogleTest(&argc, argv);
int status= RUN_ALL_TESTS();
return status;
}
| [
"alex.malone@ziften.com"
] | alex.malone@ziften.com |
d8be355a2bb67d5e3d19c3579fe7f02b3dfd266d | b6772f15a2d45cf77c1a678d74cdbd31bc7be1cb | /Project/dungeonLoop.cpp | 5dfa79224ff57869d888f61a1ec2bf74fb0e8680 | [] | no_license | ekoenitz/Dungeon | 49be977ecf33a8634f7547c15fd004680cb74c07 | 6ba8868359798bb5267c537c536a05c691acbb4e | refs/heads/master | 2020-04-18T11:06:49.405953 | 2019-01-25T05:17:22 | 2019-01-25T05:17:22 | 167,488,828 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,040 | cpp | #include <iostream>
#include <cstdlib>
#include <vector>
#include "Windows.h"
#include <thread>
#include <chrono>
#include "Dungeon.hpp"
#include "Actor.hpp"
using namespace std;
const int SPEED = 50;
const int MONSTERMOVEINTERVAL = 4;
void dungeonLoop(Actor& p1, vector<Actor>& monsters, Dungeon& d)
{
int monsterMove = 0;
bool enemyEncountered = false;
do
{
cout << d << endl << p1.getName() << "'s HP: " << p1.getHp() << '/' << p1.getMaxHp();
if (GetAsyncKeyState(VK_UP))
{
enemyEncountered = p1.move(0, -1, d);
}
if (GetAsyncKeyState(VK_DOWN))
{
enemyEncountered = p1.move(0, 1, d);
}
if (GetAsyncKeyState(VK_LEFT))
{
enemyEncountered = p1.move(-1, 0, d);
}
if (GetAsyncKeyState(VK_RIGHT))
{
enemyEncountered = p1.move(1, 0, d);
}
monsterMove == 0 ? enemyEncountered = monsters[0].moveToTarget(p1, d), monsterMove = MONSTERMOVEINTERVAL : monsterMove--;
this_thread::sleep_for(chrono::milliseconds(SPEED));
} while (!enemyEncountered);
} | [
"ekoenitz@ucsc.edu"
] | ekoenitz@ucsc.edu |
6c8b8fbfdbd89b47b983f00462a183774df7d619 | 1dbbd823d470a10b1e122f99edff5a5e1b94a7a8 | /QTProject/WalletServer/WalletServerDB.h | 5cd3c0f3bbfdde3a9dcb16e3eba49aef0cad693e | [] | no_license | iwifigame/zhajinhua-project | ee99b31199af45985adb409f9bca9bccbeb99c7c | 85c1398f56e16c645fad4760a5c5f9abe3495781 | refs/heads/master | 2021-01-19T13:11:14.723484 | 2013-03-22T13:42:07 | 2013-03-22T13:42:07 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 2,049 | h | /********************************************************************
created: 2012/03/26
created: 26:3:2012 16:18
filename: d:\My Projects\ZJHClient&Server\QTProject\WalletServer\WalletServerDB.h
file path: d:\My Projects\ZJHClient&Server\QTProject\WalletServer
file base: WalletServerDB
file ext: h
author: PangShuo
*********************************************************************/
#ifndef WalletServerDB_h__
#define WalletServerDB_h__
#include "DBLayer.h"
#include "SharedData.h"
using namespace SharedData;
enum TransactionType
{
UserToTable=0,
TableToTable,
TableToUser,
TableToRake,
SilverToTable,
TableToSilver,
TT_Total,
};
class WalletServerDB : public DBLayer, public Singleton<WalletServerDB>
{
public:
WalletServerDB();
~WalletServerDB();
int QueryUserWallet(quint32 _accountID, quint32& _coinAmount);
int QueryUserWalletID(quint32 _accountID, quint32& _id);
int QueryTableWallet(quint32 _roomID, quint32 _tableID, quint32 _seatID, quint32& _coinAmount);
int QueryTableWalletID(quint32 _roomID, quint32 _tableID, quint32 _seatID, quint32& _id);
int UpdateUserWallet(quint32 _accountID, quint32 _coinAmount);
// 先查询有没有此TableWallet,如果有就不插入,如果没有就插入,但是不刷新CoinAmount
int InsertTableWallet(quint32 _roomID, quint32 _tableID, quint32 _seatID);
int UpdateTableWallet(quint32 _roomID, quint32 _tableID, quint32 _seatID, quint32 _coinAmount);
// Check if has room-relatived rake record in wallet db, if not, insert a new recored, if has, insert the increment of rake amount
int InsertRake( quint32 _roomID, quint32 _rake );
int InsertTransactionRecord( TransactionType _type, quint32 _amount, quint32 _fromID, quint32 _toID, quint32 _result );
int QuerySilverWallet(quint32 _accountID, quint32& _coinAmount);
int UpdateSilverWallet(quint32 _accountID, quint32 _coinAmount);
protected:
private:
};
#define WalletDB WalletServerDB::GetSingleton()
#endif // WalletServerDB_h__ | [
"pangshuo1981@gmail.com@d8f4ed1e-bbb0-a400-853e-1b27d4c80825"
] | pangshuo1981@gmail.com@d8f4ed1e-bbb0-a400-853e-1b27d4c80825 |
429a41f391b8d5e5b9b7f414c5bab58974958f6b | b6e31d0e4002182d6c997606d97ed883f58bf675 | /src/Common.h | 17965280590614b936c8644ad1bcd86e921eef34 | [] | no_license | yu-kote/mekopi-10month | 34105d32905d7f549bf032a05b4a02fc0fce077d | 0eee627cfdbbbd4de19fd4c91fb15ad0dce395cb | refs/heads/master | 2021-05-30T00:57:17.086223 | 2015-11-01T05:43:53 | 2015-11-01T05:43:53 | null | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 1,062 | h | #pragma once
#include "lib\framework.hpp"
#include <iostream>
#include <fstream>
#include <vector>
#include <string>
enum WindowSize{
WIDTH = 1024,
HEIGHT = 768,
};
//宣言するとき App::get().isPressKey~
class App{
private:
public:
static AppEnv& get(){
static AppEnv env(WIDTH, HEIGHT,false,true);
return env;
}
};
enum SceneName{
TITLE,
SELECT,
GAME,
};
struct Object{
Vec2f pos;
Vec2f size;
};
struct TextureObject : Object{
Vec2f cut_pos;
Vec2f cut_size;
Texture picture;
float angle;
Vec2f zoom;
Vec2f center;
};
/*書き方の例クラス
struct Map : Object{
};
class Player(){
public:
void update();
void draw();
void setup();
private:
Map map[10][20];
TextureObject monta;
void move();
}
void Player::update()
{
move();
}
void Player::draw()
{
drawTextureBox(monta.pos.x(), monta.pos.y(),
monta.size.x(), monta.size.y(),
monta.cut_pos.x(), monta.cut_pos.y(),
monta.cut_size.x(), monta.cut_size.x(),
monta.picture, Color::white);
}
void Player::move()
{
~~~
~~~
~~~
}
*/ | [
"yu1229kotetu@i.softbank.jp"
] | yu1229kotetu@i.softbank.jp |
ddd72cc0b4e8298f0967f59476fd16f6025356ee | f0749232d54f17e3c321b0b90daaeb23b9faec82 | /Online Judge Code/hacker rank/Erupting Volcanoes.cpp | 9d6b267cef11fe58564a545bd6606abcffbaa628 | [] | no_license | tmuttaqueen/MyCodes | c9024a5b901e68e7c7466885eddbfcd31a5c9780 | 80ec40b26649029ad546ce8ce5bfec0b314b1f61 | refs/heads/master | 2020-04-18T22:20:51.845309 | 2019-05-16T18:11:02 | 2019-05-16T18:11:02 | 167,791,029 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,992 | cpp | #include <bits/stdc++.h>
//#include <ext/pb_ds/assoc_container.hpp>
//#include <ext/pb_ds/tree_policy.hpp>
using namespace std;
//using namespace __gnu_pbds;
const double pi = 3.141592653589793;
#define xx first
#define yy second
#define mp make_pair
#define intl long long
#define filein freopen("input.txt", "r", stdin)
#define fileout freopen("output.txt", "w", stdout)
#define debug cout << "YES" << endl
#define val_of(x) cout << #x << " is " << x << " "
#define what_is(x) cout << #x << " is " << x << endl
#define pb push_back
#define eb emplace_back
#define pii pair<int, int>
#define piii pair<pii, int>
#define double long double
typedef struct touple
{
int xx,yy,zz;
touple( int x = 0, int y = 0, int z = 0 ){xx=x; yy=y; zz=z;}
bool operator<(const touple &a )
{
if( xx == a.xx )
{
if( yy == a.yy )
return zz < a.zz;
return yy < a.yy;
}
return xx<a.xx;
}
} tii;
//find_by_order(int) and order_of_key(int)
//typedef tree < intl , null_type ,less<intl>,rb_tree_tag,tree_order_statistics_node_update > ordered_set;
const int M = 345678;
struct Piii
{
int x, y, w;
};
Piii ara[345];
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
//filein;
int n , m , a, b, w;
cin >> n >> m;
int ans = 0;
for( int i = 0; i < m; i++ )
{
cin >> ara[i].x >> ara[i].y >> ara[i].w;
}
for( int i = 0; i < n; i++ )
{
for( int j = 0; j < n; j++ )
{
int temp = 0;
for( int k = 0; k < m; k++ )
{
int d = max( abs(i- ara[k].x ), abs( j-ara[k].y ) );
if( d <= ara[k].w )
temp += ara[k].w-d;
}
//cout << i << " " << j << " " << temp << endl;
ans = max( temp, ans );
}
}
cout << ans << endl;
return 0;
}
| [
"1505002.tm@ugrad.cse.buet.ac.bd"
] | 1505002.tm@ugrad.cse.buet.ac.bd |
623651d0eb42eb9d7e7559b2d8cbbbf4e7a8b9c7 | 2b7442378f21e557b65ba32085ffe17d2777a2d8 | /Sketch_Pengendali_Pengaturan_Motor_DC_dengan_XBee/Sketch_Pengendali_Pengaturan_Motor_DC_dengan_XBee.ino | 5bce7965bfc2d529480637165e5443eb3ef2300e | [] | no_license | KevinRizkyDaniel/Project-Simulasi-Pengaturan-Motor-DC-dengan-XBee | f14235f5235f037190f5026cea094a4e6f3606e8 | 9e4e0bd02031a9337fab78921edea01c45b888f2 | refs/heads/main | 2023-02-10T16:31:23.326159 | 2021-01-11T07:31:33 | 2021-01-11T07:31:33 | 328,582,577 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 871 | ino | #include <Keypad.h>
const byte ROWS = 4;
const byte COLS = 4;
char keys[ROWS][COLS] = {
{'7','8','9', '/'},
{'4','5','6','x'},
{'1','2','3','-'},
{'*','0','#','+'}
};
byte rowPins[ROWS] = {13, 12, 11, 10};
byte colPins[COLS] = {9, 8, 7, 6};
Keypad keypad = Keypad( makeKeymap(keys), rowPins, colPins, ROWS, COLS );
int KeyCheck = 0;
void setup()
{
Serial.begin(9600);
}
void loop()
{
char key = keypad.getKey();
if (key)
{
if(key == '1'){KeyCheck = 1; Serial.print("1");}
if(key == '2'){KeyCheck = 1; Serial.print("2");}
if(key == '3'){KeyCheck = 1; Serial.print("3");}
if(key == '4'){KeyCheck = 1; Serial.print("4");}
if(key == '5'){KeyCheck = 1; Serial.print("5");}
if(key == '6'){KeyCheck = 1; Serial.print("6");}
if(KeyCheck == 0){Serial.print(key);}
KeyCheck = 0;
}
}
| [
"noreply@github.com"
] | noreply@github.com |
86e9149b48b59c4e43af84d055b5c73adf42b5aa | 3d2e522b1ccffc47f27a87f21a3bca2db837f9d0 | /Visual Studio/transputer/iusb008.h | 2040178d50d42a9c43f0455e13b0523b6fb7d00d | [] | no_license | DigiFennek/TransputerBox | 7812cbd2ee8bd0dac2413ae64cf8f7412f372523 | 0eba8ea6a52cf44fe4ac700b9a2a6616014c1c65 | refs/heads/master | 2023-07-06T23:03:07.336791 | 2023-06-21T08:19:57 | 2023-06-21T08:19:57 | 255,078,186 | 5 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 622 | h | #pragma once
#include "dosbox.h"
#include "dos_inc.h"
#include "fifo.h"
typedef bool (*driverCallback_t)(UCHAR Opcode);
class virtual_IUSB008 : public DOS_Device {
private:
fifo_t* rx_fifo;
fifo_t* tx_fifo;
driverCallback_t driverCallback;
bool Read(Bit8u* data, Bit16u* size);
bool Write(Bit8u* data, Bit16u* size);
bool Close(void);
Bit16u GetInformation(void);
bool ReadFromControlChannel(PhysPt bufptr, Bit16u size, Bit16u* retcode);
bool WriteToControlChannel(PhysPt bufptr, Bit16u size, Bit16u* retcode);
public:
virtual_IUSB008(fifo_t* rx_fifo, fifo_t* tx_fifo, driverCallback_t driverCallback);
};
| [
"stefan.naef@fennek-gmbh.ch"
] | stefan.naef@fennek-gmbh.ch |
4923fcfbc30a5b2becfdeb1a44b2e2fb17ac285f | 1800a5f87598a59aac3a8d06f9b548ac46690c3b | /Attribute.cpp | 9475c44eb1473999ab2d696aa3708a7ae1267c77 | [] | no_license | VerizonCao/MyDatabase | 3fe7c25204983d12670dcbe96e74f7cfe6a01e25 | ecd4f855354b20a523b214f0f5feefc63f4c3dc3 | refs/heads/master | 2022-10-20T17:21:33.132984 | 2020-06-26T06:07:17 | 2020-06-26T06:07:17 | 272,161,366 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,329 | cpp | // Created by rick gessner on 4/18/20.
// Copyright © 2020 rick gessner. All rights reserved.
//
// Modified by Zongheng Cao after the skeleton All rights reserved.
#include "Attribute.hpp"
namespace ECE141 {
Attribute::Attribute(DataType aType):type(aType){
length = 0;
nullable = false;
primary = false;
key = false;
auto_increment = false;
Adefault = "";
}
Attribute::Attribute(std::string aName, DataType aType):name(aName),type(aType){
length = 0;
nullable = false;
primary = false;
key = false;
auto_increment = false;
Adefault = "";
}
Attribute::Attribute(const Attribute &aCopy):name(aCopy.name),type(aCopy.type){
length = aCopy.length;
auto_increment = aCopy.auto_increment;
primary = aCopy.primary;
key = aCopy.key;
nullable = aCopy.nullable;
Adefault = aCopy.Adefault;
}
Attribute::~Attribute(){}
Attribute& Attribute::setName(std::string &aName){
name = aName;
return *this;
}
Attribute& Attribute::setType(DataType aType){
type = aType;
return *this;
}
int Attribute::getLength(){
return length;
}
bool Attribute::getAutoIncrement(){
return auto_increment;
}
bool Attribute::getPrimary(){
return primary;
}
bool Attribute::getKey(){
return key;
}
bool Attribute::getNullable(){
return nullable;
}
DataType Attribute::getType(){
return type;
}
std::string Attribute::getDefault(){
return Adefault;
}
//setter
Attribute& Attribute::setLength(int aLength){
length = aLength;
return *this;
}
Attribute& Attribute::setAutoIncrement(bool type){
auto_increment = type;
return *this;
}
Attribute& Attribute::setPrimary(bool type){
primary = type;
return *this;
}
Attribute& Attribute::setKey(bool type){
key = type;
return *this;
}
Attribute& Attribute::setNullable(bool type){
nullable = type;
return *this;
}
Attribute& Attribute::setdefault(std::string aType){
Adefault = aType;
return *this;
}
}
| [
"caozongheng123@gmail.com"
] | caozongheng123@gmail.com |
39ad4f48aced65e7336afd529d9736f8abac5810 | 673ee32b0b50179401bd25fb682a259b26df9f13 | /3rdparty/spirv-tools/test/fuzz/fuzzer_replayer_test.cpp | 5fb71b0c5244160180d7b724b79f59fd6007e563 | [
"BSD-2-Clause",
"LicenseRef-scancode-free-unknown",
"MIT",
"Apache-2.0"
] | permissive | Chris-Zou/bgfx | 9de41af8d46f5aad437afb14bfe3538e6a86c63a | 50758816df9604450740b96cc67f80ea2de922fd | refs/heads/master | 2021-06-27T07:55:55.496224 | 2021-02-15T09:21:50 | 2021-02-15T09:21:50 | 211,993,111 | 0 | 0 | BSD-2-Clause | 2019-10-01T01:48:00 | 2019-10-01T01:47:59 | null | UTF-8 | C++ | false | false | 32,852 | cpp | // Copyright (c) 2019 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "source/fuzz/fuzzer.h"
#include "source/fuzz/replayer.h"
#include "source/fuzz/uniform_buffer_element_descriptor.h"
#include "test/fuzz/fuzz_test_util.h"
namespace spvtools {
namespace fuzz {
namespace {
// Assembles the given |shader| text, and then runs the fuzzer |num_runs|
// times, using successive seeds starting from |initial_seed|. Checks that
// the binary produced after each fuzzer run is valid, and that replaying
// the transformations that were applied during fuzzing leads to an
// identical binary.
void RunFuzzerAndReplayer(const std::string& shader,
const protobufs::FactSequence& initial_facts,
uint32_t initial_seed, uint32_t num_runs) {
const auto env = SPV_ENV_UNIVERSAL_1_3;
std::vector<uint32_t> binary_in;
SpirvTools t(env);
t.SetMessageConsumer(kConsoleMessageConsumer);
ASSERT_TRUE(t.Assemble(shader, &binary_in, kFuzzAssembleOption));
ASSERT_TRUE(t.Validate(binary_in));
for (uint32_t seed = initial_seed; seed < initial_seed + num_runs; seed++) {
std::vector<uint32_t> fuzzer_binary_out;
protobufs::TransformationSequence fuzzer_transformation_sequence_out;
spvtools::FuzzerOptions fuzzer_options;
spvFuzzerOptionsSetRandomSeed(fuzzer_options, seed);
Fuzzer fuzzer(env);
fuzzer.SetMessageConsumer(kSilentConsumer);
auto fuzzer_result_status =
fuzzer.Run(binary_in, initial_facts, fuzzer_options, &fuzzer_binary_out,
&fuzzer_transformation_sequence_out);
ASSERT_EQ(Fuzzer::FuzzerResultStatus::kComplete, fuzzer_result_status);
ASSERT_TRUE(t.Validate(fuzzer_binary_out));
std::vector<uint32_t> replayer_binary_out;
protobufs::TransformationSequence replayer_transformation_sequence_out;
Replayer replayer(env, false);
replayer.SetMessageConsumer(kSilentConsumer);
auto replayer_result_status = replayer.Run(
binary_in, initial_facts, fuzzer_transformation_sequence_out,
&replayer_binary_out, &replayer_transformation_sequence_out);
ASSERT_EQ(Replayer::ReplayerResultStatus::kComplete,
replayer_result_status);
// After replaying the transformations applied by the fuzzer, exactly those
// transformations should have been applied, and the binary resulting from
// replay should be identical to that which resulted from fuzzing.
std::string fuzzer_transformations_string;
std::string replayer_transformations_string;
fuzzer_transformation_sequence_out.SerializeToString(
&fuzzer_transformations_string);
replayer_transformation_sequence_out.SerializeToString(
&replayer_transformations_string);
ASSERT_EQ(fuzzer_transformations_string, replayer_transformations_string);
ASSERT_EQ(fuzzer_binary_out, replayer_binary_out);
}
}
TEST(FuzzerReplayerTest, Miscellaneous1) {
// The SPIR-V came from this GLSL:
//
// #version 310 es
//
// void foo() {
// int x;
// x = 2;
// for (int i = 0; i < 100; i++) {
// x += i;
// x = x * 2;
// }
// return;
// }
//
// void main() {
// foo();
// for (int i = 0; i < 10; i++) {
// int j = 20;
// while(j > 0) {
// foo();
// j--;
// }
// do {
// i++;
// } while(i < 4);
// }
// }
std::string shader = R"(
OpCapability Shader
%1 = OpExtInstImport "GLSL.std.450"
OpMemoryModel Logical GLSL450
OpEntryPoint Fragment %4 "main"
OpExecutionMode %4 OriginUpperLeft
OpSource ESSL 310
OpName %4 "main"
OpName %6 "foo("
OpName %10 "x"
OpName %12 "i"
OpName %33 "i"
OpName %42 "j"
OpDecorate %10 RelaxedPrecision
OpDecorate %12 RelaxedPrecision
OpDecorate %19 RelaxedPrecision
OpDecorate %23 RelaxedPrecision
OpDecorate %24 RelaxedPrecision
OpDecorate %25 RelaxedPrecision
OpDecorate %26 RelaxedPrecision
OpDecorate %27 RelaxedPrecision
OpDecorate %28 RelaxedPrecision
OpDecorate %30 RelaxedPrecision
OpDecorate %33 RelaxedPrecision
OpDecorate %39 RelaxedPrecision
OpDecorate %42 RelaxedPrecision
OpDecorate %49 RelaxedPrecision
OpDecorate %52 RelaxedPrecision
OpDecorate %53 RelaxedPrecision
OpDecorate %58 RelaxedPrecision
OpDecorate %59 RelaxedPrecision
OpDecorate %60 RelaxedPrecision
OpDecorate %63 RelaxedPrecision
OpDecorate %64 RelaxedPrecision
%2 = OpTypeVoid
%3 = OpTypeFunction %2
%8 = OpTypeInt 32 1
%9 = OpTypePointer Function %8
%11 = OpConstant %8 2
%13 = OpConstant %8 0
%20 = OpConstant %8 100
%21 = OpTypeBool
%29 = OpConstant %8 1
%40 = OpConstant %8 10
%43 = OpConstant %8 20
%61 = OpConstant %8 4
%4 = OpFunction %2 None %3
%5 = OpLabel
%33 = OpVariable %9 Function
%42 = OpVariable %9 Function
%32 = OpFunctionCall %2 %6
OpStore %33 %13
OpBranch %34
%34 = OpLabel
OpLoopMerge %36 %37 None
OpBranch %38
%38 = OpLabel
%39 = OpLoad %8 %33
%41 = OpSLessThan %21 %39 %40
OpBranchConditional %41 %35 %36
%35 = OpLabel
OpStore %42 %43
OpBranch %44
%44 = OpLabel
OpLoopMerge %46 %47 None
OpBranch %48
%48 = OpLabel
%49 = OpLoad %8 %42
%50 = OpSGreaterThan %21 %49 %13
OpBranchConditional %50 %45 %46
%45 = OpLabel
%51 = OpFunctionCall %2 %6
%52 = OpLoad %8 %42
%53 = OpISub %8 %52 %29
OpStore %42 %53
OpBranch %47
%47 = OpLabel
OpBranch %44
%46 = OpLabel
OpBranch %54
%54 = OpLabel
OpLoopMerge %56 %57 None
OpBranch %55
%55 = OpLabel
%58 = OpLoad %8 %33
%59 = OpIAdd %8 %58 %29
OpStore %33 %59
OpBranch %57
%57 = OpLabel
%60 = OpLoad %8 %33
%62 = OpSLessThan %21 %60 %61
OpBranchConditional %62 %54 %56
%56 = OpLabel
OpBranch %37
%37 = OpLabel
%63 = OpLoad %8 %33
%64 = OpIAdd %8 %63 %29
OpStore %33 %64
OpBranch %34
%36 = OpLabel
OpReturn
OpFunctionEnd
%6 = OpFunction %2 None %3
%7 = OpLabel
%10 = OpVariable %9 Function
%12 = OpVariable %9 Function
OpStore %10 %11
OpStore %12 %13
OpBranch %14
%14 = OpLabel
OpLoopMerge %16 %17 None
OpBranch %18
%18 = OpLabel
%19 = OpLoad %8 %12
%22 = OpSLessThan %21 %19 %20
OpBranchConditional %22 %15 %16
%15 = OpLabel
%23 = OpLoad %8 %12
%24 = OpLoad %8 %10
%25 = OpIAdd %8 %24 %23
OpStore %10 %25
%26 = OpLoad %8 %10
%27 = OpIMul %8 %26 %11
OpStore %10 %27
OpBranch %17
%17 = OpLabel
%28 = OpLoad %8 %12
%30 = OpIAdd %8 %28 %29
OpStore %12 %30
OpBranch %14
%16 = OpLabel
OpReturn
OpFunctionEnd
)";
// Do 5 fuzzer runs, starting from an initial seed of 0 (seed value chosen
// arbitrarily).
RunFuzzerAndReplayer(shader, protobufs::FactSequence(), 0, 5);
}
TEST(FuzzerReplayerTest, Miscellaneous2) {
// The SPIR-V came from this GLSL, which was then optimized using spirv-opt
// with the -O argument:
//
// #version 310 es
//
// precision highp float;
//
// layout(location = 0) out vec4 _GLF_color;
//
// layout(set = 0, binding = 0) uniform buf0 {
// vec2 injectionSwitch;
// };
// layout(set = 0, binding = 1) uniform buf1 {
// vec2 resolution;
// };
// bool checkSwap(float a, float b)
// {
// return gl_FragCoord.y < resolution.y / 2.0 ? a > b : a < b;
// }
// void main()
// {
// float data[10];
// for(int i = 0; i < 10; i++)
// {
// data[i] = float(10 - i) * injectionSwitch.y;
// }
// for(int i = 0; i < 9; i++)
// {
// for(int j = 0; j < 10; j++)
// {
// if(j < i + 1)
// {
// continue;
// }
// bool doSwap = checkSwap(data[i], data[j]);
// if(doSwap)
// {
// float temp = data[i];
// data[i] = data[j];
// data[j] = temp;
// }
// }
// }
// if(gl_FragCoord.x < resolution.x / 2.0)
// {
// _GLF_color = vec4(data[0] / 10.0, data[5] / 10.0, data[9] / 10.0, 1.0);
// }
// else
// {
// _GLF_color = vec4(data[5] / 10.0, data[9] / 10.0, data[0] / 10.0, 1.0);
// }
// }
std::string shader = R"(
OpCapability Shader
%1 = OpExtInstImport "GLSL.std.450"
OpMemoryModel Logical GLSL450
OpEntryPoint Fragment %4 "main" %16 %139
OpExecutionMode %4 OriginUpperLeft
OpSource ESSL 310
OpName %4 "main"
OpName %16 "gl_FragCoord"
OpName %23 "buf1"
OpMemberName %23 0 "resolution"
OpName %25 ""
OpName %61 "data"
OpName %66 "buf0"
OpMemberName %66 0 "injectionSwitch"
OpName %68 ""
OpName %139 "_GLF_color"
OpDecorate %16 BuiltIn FragCoord
OpMemberDecorate %23 0 Offset 0
OpDecorate %23 Block
OpDecorate %25 DescriptorSet 0
OpDecorate %25 Binding 1
OpDecorate %64 RelaxedPrecision
OpMemberDecorate %66 0 Offset 0
OpDecorate %66 Block
OpDecorate %68 DescriptorSet 0
OpDecorate %68 Binding 0
OpDecorate %75 RelaxedPrecision
OpDecorate %95 RelaxedPrecision
OpDecorate %126 RelaxedPrecision
OpDecorate %128 RelaxedPrecision
OpDecorate %139 Location 0
OpDecorate %182 RelaxedPrecision
OpDecorate %183 RelaxedPrecision
OpDecorate %184 RelaxedPrecision
%2 = OpTypeVoid
%3 = OpTypeFunction %2
%6 = OpTypeFloat 32
%7 = OpTypePointer Function %6
%8 = OpTypeBool
%14 = OpTypeVector %6 4
%15 = OpTypePointer Input %14
%16 = OpVariable %15 Input
%17 = OpTypeInt 32 0
%18 = OpConstant %17 1
%19 = OpTypePointer Input %6
%22 = OpTypeVector %6 2
%23 = OpTypeStruct %22
%24 = OpTypePointer Uniform %23
%25 = OpVariable %24 Uniform
%26 = OpTypeInt 32 1
%27 = OpConstant %26 0
%28 = OpTypePointer Uniform %6
%56 = OpConstant %26 10
%58 = OpConstant %17 10
%59 = OpTypeArray %6 %58
%60 = OpTypePointer Function %59
%66 = OpTypeStruct %22
%67 = OpTypePointer Uniform %66
%68 = OpVariable %67 Uniform
%74 = OpConstant %26 1
%83 = OpConstant %26 9
%129 = OpConstant %17 0
%138 = OpTypePointer Output %14
%139 = OpVariable %138 Output
%144 = OpConstant %26 5
%151 = OpConstant %6 1
%194 = OpConstant %6 0.5
%195 = OpConstant %6 0.100000001
%4 = OpFunction %2 None %3
%5 = OpLabel
%61 = OpVariable %60 Function
OpBranch %50
%50 = OpLabel
%182 = OpPhi %26 %27 %5 %75 %51
%57 = OpSLessThan %8 %182 %56
OpLoopMerge %52 %51 None
OpBranchConditional %57 %51 %52
%51 = OpLabel
%64 = OpISub %26 %56 %182
%65 = OpConvertSToF %6 %64
%69 = OpAccessChain %28 %68 %27 %18
%70 = OpLoad %6 %69
%71 = OpFMul %6 %65 %70
%72 = OpAccessChain %7 %61 %182
OpStore %72 %71
%75 = OpIAdd %26 %182 %74
OpBranch %50
%52 = OpLabel
OpBranch %77
%77 = OpLabel
%183 = OpPhi %26 %27 %52 %128 %88
%84 = OpSLessThan %8 %183 %83
OpLoopMerge %79 %88 None
OpBranchConditional %84 %78 %79
%78 = OpLabel
OpBranch %86
%86 = OpLabel
%184 = OpPhi %26 %27 %78 %126 %89
%92 = OpSLessThan %8 %184 %56
OpLoopMerge %88 %89 None
OpBranchConditional %92 %87 %88
%87 = OpLabel
%95 = OpIAdd %26 %183 %74
%96 = OpSLessThan %8 %184 %95
OpSelectionMerge %98 None
OpBranchConditional %96 %97 %98
%97 = OpLabel
OpBranch %89
%98 = OpLabel
%104 = OpAccessChain %7 %61 %183
%105 = OpLoad %6 %104
%107 = OpAccessChain %7 %61 %184
%108 = OpLoad %6 %107
%166 = OpAccessChain %19 %16 %18
%167 = OpLoad %6 %166
%168 = OpAccessChain %28 %25 %27 %18
%169 = OpLoad %6 %168
%170 = OpFMul %6 %169 %194
%171 = OpFOrdLessThan %8 %167 %170
OpSelectionMerge %172 None
OpBranchConditional %171 %173 %174
%173 = OpLabel
%177 = OpFOrdGreaterThan %8 %105 %108
OpBranch %172
%174 = OpLabel
%180 = OpFOrdLessThan %8 %105 %108
OpBranch %172
%172 = OpLabel
%186 = OpPhi %8 %177 %173 %180 %174
OpSelectionMerge %112 None
OpBranchConditional %186 %111 %112
%111 = OpLabel
%116 = OpLoad %6 %104
%120 = OpLoad %6 %107
OpStore %104 %120
OpStore %107 %116
OpBranch %112
%112 = OpLabel
OpBranch %89
%89 = OpLabel
%126 = OpIAdd %26 %184 %74
OpBranch %86
%88 = OpLabel
%128 = OpIAdd %26 %183 %74
OpBranch %77
%79 = OpLabel
%130 = OpAccessChain %19 %16 %129
%131 = OpLoad %6 %130
%132 = OpAccessChain %28 %25 %27 %129
%133 = OpLoad %6 %132
%134 = OpFMul %6 %133 %194
%135 = OpFOrdLessThan %8 %131 %134
OpSelectionMerge %137 None
OpBranchConditional %135 %136 %153
%136 = OpLabel
%140 = OpAccessChain %7 %61 %27
%141 = OpLoad %6 %140
%143 = OpFMul %6 %141 %195
%145 = OpAccessChain %7 %61 %144
%146 = OpLoad %6 %145
%147 = OpFMul %6 %146 %195
%148 = OpAccessChain %7 %61 %83
%149 = OpLoad %6 %148
%150 = OpFMul %6 %149 %195
%152 = OpCompositeConstruct %14 %143 %147 %150 %151
OpStore %139 %152
OpBranch %137
%153 = OpLabel
%154 = OpAccessChain %7 %61 %144
%155 = OpLoad %6 %154
%156 = OpFMul %6 %155 %195
%157 = OpAccessChain %7 %61 %83
%158 = OpLoad %6 %157
%159 = OpFMul %6 %158 %195
%160 = OpAccessChain %7 %61 %27
%161 = OpLoad %6 %160
%162 = OpFMul %6 %161 %195
%163 = OpCompositeConstruct %14 %156 %159 %162 %151
OpStore %139 %163
OpBranch %137
%137 = OpLabel
OpReturn
OpFunctionEnd
)";
// Do 5 fuzzer runs, starting from an initial seed of 10 (seed value chosen
// arbitrarily).
RunFuzzerAndReplayer(shader, protobufs::FactSequence(), 10, 5);
}
TEST(FuzzerReplayerTest, Miscellaneous3) {
// The SPIR-V came from this GLSL, which was then optimized using spirv-opt
// with the -O argument:
//
// #version 310 es
//
// precision highp float;
//
// layout(location = 0) out vec4 _GLF_color;
//
// layout(set = 0, binding = 0) uniform buf0 {
// vec2 resolution;
// };
// void main(void)
// {
// float A[50];
// for(
// int i = 0;
// i < 200;
// i ++
// )
// {
// if(i >= int(resolution.x))
// {
// break;
// }
// if((4 * (i / 4)) == i)
// {
// A[i / 4] = float(i);
// }
// }
// for(
// int i = 0;
// i < 50;
// i ++
// )
// {
// if(i < int(gl_FragCoord.x))
// {
// break;
// }
// if(i > 0)
// {
// A[i] += A[i - 1];
// }
// }
// if(int(gl_FragCoord.x) < 20)
// {
// _GLF_color = vec4(A[0] / resolution.x, A[4] / resolution.y, 1.0, 1.0);
// }
// else
// if(int(gl_FragCoord.x) < 40)
// {
// _GLF_color = vec4(A[5] / resolution.x, A[9] / resolution.y, 1.0, 1.0);
// }
// else
// if(int(gl_FragCoord.x) < 60)
// {
// _GLF_color = vec4(A[10] / resolution.x, A[14] / resolution.y,
// 1.0, 1.0);
// }
// else
// if(int(gl_FragCoord.x) < 80)
// {
// _GLF_color = vec4(A[15] / resolution.x, A[19] / resolution.y,
// 1.0, 1.0);
// }
// else
// if(int(gl_FragCoord.x) < 100)
// {
// _GLF_color = vec4(A[20] / resolution.x, A[24] / resolution.y,
// 1.0, 1.0);
// }
// else
// if(int(gl_FragCoord.x) < 120)
// {
// _GLF_color = vec4(A[25] / resolution.x, A[29] / resolution.y,
// 1.0, 1.0);
// }
// else
// if(int(gl_FragCoord.x) < 140)
// {
// _GLF_color = vec4(A[30] / resolution.x, A[34] / resolution.y,
// 1.0, 1.0);
// }
// else
// if(int(gl_FragCoord.x) < 160)
// {
// _GLF_color = vec4(A[35] / resolution.x, A[39] /
// resolution.y, 1.0, 1.0);
// }
// else
// if(int(gl_FragCoord.x) < 180)
// {
// _GLF_color = vec4(A[40] / resolution.x, A[44] /
// resolution.y, 1.0, 1.0);
// }
// else
// if(int(gl_FragCoord.x) < 180)
// {
// _GLF_color = vec4(A[45] / resolution.x, A[49] /
// resolution.y, 1.0, 1.0);
// }
// else
// {
// discard;
// }
// }
std::string shader = R"(
OpCapability Shader
%1 = OpExtInstImport "GLSL.std.450"
OpMemoryModel Logical GLSL450
OpEntryPoint Fragment %4 "main" %68 %100
OpExecutionMode %4 OriginUpperLeft
OpSource ESSL 310
OpName %4 "main"
OpName %22 "buf0"
OpMemberName %22 0 "resolution"
OpName %24 ""
OpName %46 "A"
OpName %68 "gl_FragCoord"
OpName %100 "_GLF_color"
OpMemberDecorate %22 0 Offset 0
OpDecorate %22 Block
OpDecorate %24 DescriptorSet 0
OpDecorate %24 Binding 0
OpDecorate %37 RelaxedPrecision
OpDecorate %38 RelaxedPrecision
OpDecorate %55 RelaxedPrecision
OpDecorate %68 BuiltIn FragCoord
OpDecorate %83 RelaxedPrecision
OpDecorate %91 RelaxedPrecision
OpDecorate %100 Location 0
OpDecorate %302 RelaxedPrecision
OpDecorate %304 RelaxedPrecision
%2 = OpTypeVoid
%3 = OpTypeFunction %2
%6 = OpTypeInt 32 1
%9 = OpConstant %6 0
%16 = OpConstant %6 200
%17 = OpTypeBool
%20 = OpTypeFloat 32
%21 = OpTypeVector %20 2
%22 = OpTypeStruct %21
%23 = OpTypePointer Uniform %22
%24 = OpVariable %23 Uniform
%25 = OpTypeInt 32 0
%26 = OpConstant %25 0
%27 = OpTypePointer Uniform %20
%35 = OpConstant %6 4
%43 = OpConstant %25 50
%44 = OpTypeArray %20 %43
%45 = OpTypePointer Function %44
%51 = OpTypePointer Function %20
%54 = OpConstant %6 1
%63 = OpConstant %6 50
%66 = OpTypeVector %20 4
%67 = OpTypePointer Input %66
%68 = OpVariable %67 Input
%69 = OpTypePointer Input %20
%95 = OpConstant %6 20
%99 = OpTypePointer Output %66
%100 = OpVariable %99 Output
%108 = OpConstant %25 1
%112 = OpConstant %20 1
%118 = OpConstant %6 40
%122 = OpConstant %6 5
%128 = OpConstant %6 9
%139 = OpConstant %6 60
%143 = OpConstant %6 10
%149 = OpConstant %6 14
%160 = OpConstant %6 80
%164 = OpConstant %6 15
%170 = OpConstant %6 19
%181 = OpConstant %6 100
%190 = OpConstant %6 24
%201 = OpConstant %6 120
%205 = OpConstant %6 25
%211 = OpConstant %6 29
%222 = OpConstant %6 140
%226 = OpConstant %6 30
%232 = OpConstant %6 34
%243 = OpConstant %6 160
%247 = OpConstant %6 35
%253 = OpConstant %6 39
%264 = OpConstant %6 180
%273 = OpConstant %6 44
%287 = OpConstant %6 45
%293 = OpConstant %6 49
%4 = OpFunction %2 None %3
%5 = OpLabel
%46 = OpVariable %45 Function
OpBranch %10
%10 = OpLabel
%302 = OpPhi %6 %9 %5 %55 %42
%18 = OpSLessThan %17 %302 %16
OpLoopMerge %12 %42 None
OpBranchConditional %18 %11 %12
%11 = OpLabel
%28 = OpAccessChain %27 %24 %9 %26
%29 = OpLoad %20 %28
%30 = OpConvertFToS %6 %29
%31 = OpSGreaterThanEqual %17 %302 %30
OpSelectionMerge %33 None
OpBranchConditional %31 %32 %33
%32 = OpLabel
OpBranch %12
%33 = OpLabel
%37 = OpSDiv %6 %302 %35
%38 = OpIMul %6 %35 %37
%40 = OpIEqual %17 %38 %302
OpSelectionMerge %42 None
OpBranchConditional %40 %41 %42
%41 = OpLabel
%50 = OpConvertSToF %20 %302
%52 = OpAccessChain %51 %46 %37
OpStore %52 %50
OpBranch %42
%42 = OpLabel
%55 = OpIAdd %6 %302 %54
OpBranch %10
%12 = OpLabel
OpBranch %57
%57 = OpLabel
%304 = OpPhi %6 %9 %12 %91 %80
%64 = OpSLessThan %17 %304 %63
OpLoopMerge %59 %80 None
OpBranchConditional %64 %58 %59
%58 = OpLabel
%70 = OpAccessChain %69 %68 %26
%71 = OpLoad %20 %70
%72 = OpConvertFToS %6 %71
%73 = OpSLessThan %17 %304 %72
OpSelectionMerge %75 None
OpBranchConditional %73 %74 %75
%74 = OpLabel
OpBranch %59
%75 = OpLabel
%78 = OpSGreaterThan %17 %304 %9
OpSelectionMerge %80 None
OpBranchConditional %78 %79 %80
%79 = OpLabel
%83 = OpISub %6 %304 %54
%84 = OpAccessChain %51 %46 %83
%85 = OpLoad %20 %84
%86 = OpAccessChain %51 %46 %304
%87 = OpLoad %20 %86
%88 = OpFAdd %20 %87 %85
OpStore %86 %88
OpBranch %80
%80 = OpLabel
%91 = OpIAdd %6 %304 %54
OpBranch %57
%59 = OpLabel
%92 = OpAccessChain %69 %68 %26
%93 = OpLoad %20 %92
%94 = OpConvertFToS %6 %93
%96 = OpSLessThan %17 %94 %95
OpSelectionMerge %98 None
OpBranchConditional %96 %97 %114
%97 = OpLabel
%101 = OpAccessChain %51 %46 %9
%102 = OpLoad %20 %101
%103 = OpAccessChain %27 %24 %9 %26
%104 = OpLoad %20 %103
%105 = OpFDiv %20 %102 %104
%106 = OpAccessChain %51 %46 %35
%107 = OpLoad %20 %106
%109 = OpAccessChain %27 %24 %9 %108
%110 = OpLoad %20 %109
%111 = OpFDiv %20 %107 %110
%113 = OpCompositeConstruct %66 %105 %111 %112 %112
OpStore %100 %113
OpBranch %98
%114 = OpLabel
%119 = OpSLessThan %17 %94 %118
OpSelectionMerge %121 None
OpBranchConditional %119 %120 %135
%120 = OpLabel
%123 = OpAccessChain %51 %46 %122
%124 = OpLoad %20 %123
%125 = OpAccessChain %27 %24 %9 %26
%126 = OpLoad %20 %125
%127 = OpFDiv %20 %124 %126
%129 = OpAccessChain %51 %46 %128
%130 = OpLoad %20 %129
%131 = OpAccessChain %27 %24 %9 %108
%132 = OpLoad %20 %131
%133 = OpFDiv %20 %130 %132
%134 = OpCompositeConstruct %66 %127 %133 %112 %112
OpStore %100 %134
OpBranch %121
%135 = OpLabel
%140 = OpSLessThan %17 %94 %139
OpSelectionMerge %142 None
OpBranchConditional %140 %141 %156
%141 = OpLabel
%144 = OpAccessChain %51 %46 %143
%145 = OpLoad %20 %144
%146 = OpAccessChain %27 %24 %9 %26
%147 = OpLoad %20 %146
%148 = OpFDiv %20 %145 %147
%150 = OpAccessChain %51 %46 %149
%151 = OpLoad %20 %150
%152 = OpAccessChain %27 %24 %9 %108
%153 = OpLoad %20 %152
%154 = OpFDiv %20 %151 %153
%155 = OpCompositeConstruct %66 %148 %154 %112 %112
OpStore %100 %155
OpBranch %142
%156 = OpLabel
%161 = OpSLessThan %17 %94 %160
OpSelectionMerge %163 None
OpBranchConditional %161 %162 %177
%162 = OpLabel
%165 = OpAccessChain %51 %46 %164
%166 = OpLoad %20 %165
%167 = OpAccessChain %27 %24 %9 %26
%168 = OpLoad %20 %167
%169 = OpFDiv %20 %166 %168
%171 = OpAccessChain %51 %46 %170
%172 = OpLoad %20 %171
%173 = OpAccessChain %27 %24 %9 %108
%174 = OpLoad %20 %173
%175 = OpFDiv %20 %172 %174
%176 = OpCompositeConstruct %66 %169 %175 %112 %112
OpStore %100 %176
OpBranch %163
%177 = OpLabel
%182 = OpSLessThan %17 %94 %181
OpSelectionMerge %184 None
OpBranchConditional %182 %183 %197
%183 = OpLabel
%185 = OpAccessChain %51 %46 %95
%186 = OpLoad %20 %185
%187 = OpAccessChain %27 %24 %9 %26
%188 = OpLoad %20 %187
%189 = OpFDiv %20 %186 %188
%191 = OpAccessChain %51 %46 %190
%192 = OpLoad %20 %191
%193 = OpAccessChain %27 %24 %9 %108
%194 = OpLoad %20 %193
%195 = OpFDiv %20 %192 %194
%196 = OpCompositeConstruct %66 %189 %195 %112 %112
OpStore %100 %196
OpBranch %184
%197 = OpLabel
%202 = OpSLessThan %17 %94 %201
OpSelectionMerge %204 None
OpBranchConditional %202 %203 %218
%203 = OpLabel
%206 = OpAccessChain %51 %46 %205
%207 = OpLoad %20 %206
%208 = OpAccessChain %27 %24 %9 %26
%209 = OpLoad %20 %208
%210 = OpFDiv %20 %207 %209
%212 = OpAccessChain %51 %46 %211
%213 = OpLoad %20 %212
%214 = OpAccessChain %27 %24 %9 %108
%215 = OpLoad %20 %214
%216 = OpFDiv %20 %213 %215
%217 = OpCompositeConstruct %66 %210 %216 %112 %112
OpStore %100 %217
OpBranch %204
%218 = OpLabel
%223 = OpSLessThan %17 %94 %222
OpSelectionMerge %225 None
OpBranchConditional %223 %224 %239
%224 = OpLabel
%227 = OpAccessChain %51 %46 %226
%228 = OpLoad %20 %227
%229 = OpAccessChain %27 %24 %9 %26
%230 = OpLoad %20 %229
%231 = OpFDiv %20 %228 %230
%233 = OpAccessChain %51 %46 %232
%234 = OpLoad %20 %233
%235 = OpAccessChain %27 %24 %9 %108
%236 = OpLoad %20 %235
%237 = OpFDiv %20 %234 %236
%238 = OpCompositeConstruct %66 %231 %237 %112 %112
OpStore %100 %238
OpBranch %225
%239 = OpLabel
%244 = OpSLessThan %17 %94 %243
OpSelectionMerge %246 None
OpBranchConditional %244 %245 %260
%245 = OpLabel
%248 = OpAccessChain %51 %46 %247
%249 = OpLoad %20 %248
%250 = OpAccessChain %27 %24 %9 %26
%251 = OpLoad %20 %250
%252 = OpFDiv %20 %249 %251
%254 = OpAccessChain %51 %46 %253
%255 = OpLoad %20 %254
%256 = OpAccessChain %27 %24 %9 %108
%257 = OpLoad %20 %256
%258 = OpFDiv %20 %255 %257
%259 = OpCompositeConstruct %66 %252 %258 %112 %112
OpStore %100 %259
OpBranch %246
%260 = OpLabel
%265 = OpSLessThan %17 %94 %264
OpSelectionMerge %267 None
OpBranchConditional %265 %266 %280
%266 = OpLabel
%268 = OpAccessChain %51 %46 %118
%269 = OpLoad %20 %268
%270 = OpAccessChain %27 %24 %9 %26
%271 = OpLoad %20 %270
%272 = OpFDiv %20 %269 %271
%274 = OpAccessChain %51 %46 %273
%275 = OpLoad %20 %274
%276 = OpAccessChain %27 %24 %9 %108
%277 = OpLoad %20 %276
%278 = OpFDiv %20 %275 %277
%279 = OpCompositeConstruct %66 %272 %278 %112 %112
OpStore %100 %279
OpBranch %267
%280 = OpLabel
OpSelectionMerge %285 None
OpBranchConditional %265 %285 %300
%285 = OpLabel
%288 = OpAccessChain %51 %46 %287
%289 = OpLoad %20 %288
%290 = OpAccessChain %27 %24 %9 %26
%291 = OpLoad %20 %290
%292 = OpFDiv %20 %289 %291
%294 = OpAccessChain %51 %46 %293
%295 = OpLoad %20 %294
%296 = OpAccessChain %27 %24 %9 %108
%297 = OpLoad %20 %296
%298 = OpFDiv %20 %295 %297
%299 = OpCompositeConstruct %66 %292 %298 %112 %112
OpStore %100 %299
OpBranch %267
%300 = OpLabel
OpKill
%267 = OpLabel
OpBranch %246
%246 = OpLabel
OpBranch %225
%225 = OpLabel
OpBranch %204
%204 = OpLabel
OpBranch %184
%184 = OpLabel
OpBranch %163
%163 = OpLabel
OpBranch %142
%142 = OpLabel
OpBranch %121
%121 = OpLabel
OpBranch %98
%98 = OpLabel
OpReturn
OpFunctionEnd
)";
// Add the facts "resolution.x == 250" and "resolution.y == 100".
protobufs::FactSequence facts;
{
protobufs::FactConstantUniform resolution_x_eq_250;
*resolution_x_eq_250.mutable_uniform_buffer_element_descriptor() =
MakeUniformBufferElementDescriptor(0, 0, {0, 0});
*resolution_x_eq_250.mutable_constant_word()->Add() = 250;
protobufs::Fact temp;
*temp.mutable_constant_uniform_fact() = resolution_x_eq_250;
*facts.mutable_fact()->Add() = temp;
}
{
protobufs::FactConstantUniform resolution_y_eq_100;
*resolution_y_eq_100.mutable_uniform_buffer_element_descriptor() =
MakeUniformBufferElementDescriptor(0, 0, {0, 1});
*resolution_y_eq_100.mutable_constant_word()->Add() = 100;
protobufs::Fact temp;
*temp.mutable_constant_uniform_fact() = resolution_y_eq_100;
*facts.mutable_fact()->Add() = temp;
}
// Do 5 fuzzer runs, starting from an initial seed of 94 (seed value chosen
// arbitrarily).
RunFuzzerAndReplayer(shader, facts, 94, 5);
}
} // namespace
} // namespace fuzz
} // namespace spvtools
| [
"branimirkaradzic@gmail.com"
] | branimirkaradzic@gmail.com |
f0340d910d454f9b858d4a48972c56545ad4ac52 | ac92ac123af0be63dbc63aa03cb9bca05b91002c | /main.cc | fb29b919996cf4e40cf21066bcd1f9306c1cb6a3 | [] | no_license | zhenwu-cn/vector | 530018c837f8b327b50ce30c745790c52fe6150c | 6d6f4fb76a76b6ae0e7968cbf8cff344638845e2 | refs/heads/master | 2022-02-20T08:12:51.623263 | 2014-03-19T13:56:57 | 2014-03-19T13:56:57 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,011 | cc | #include <iostream>
#include <cstring>
#include <stdlib.h>
#include "qh_vector.h"
using namespace std;
using namespace qh;
int main(int argc, char* argv[])
{
//TODO 在这里添加单元测试,越多越好,代码路径覆盖率越全越好
qh::vector<int> num_vect;
num_vect.push_back(1);
std::cout<<num_vect.size()<<std::endl;
qh::vector<int> v1(8, 2);
std::cout<<v1.size()<<std::endl;
std::cout<<v1.begin()<<v1.end()<<" ";
v1.push_back(2);
std::cout<<v1.size()<<std::endl;
std::cout<<v1.begin()<<v1.end()<<" ";
std::cout<<v1[8];
v1.pop_back();
std::cout<<v1.size()<<std::endl;
std::cout<<v1[8];
v1.clear();
std::cout<<v1.empty()<<std::endl;
qh::vector<std::string> s1;
/*for(int i = 1; i <= 3; ++i)
{
string str(i, '0');
s1.push_back(str);
}*/
s1.push_back("123");
s1.push_back("abc");
std::cout<<s1.size()<<" "<<s1.end()<<std::endl;
#ifdef WIN32
system("pause");
#endif
return 0;
}
| [
"zhenxiang0708@163.com"
] | zhenxiang0708@163.com |
0fb5ddfa6a0b580d6227f64b24363569ace0cc4e | a3d6556180e74af7b555f8d47d3fea55b94bcbda | /chrome/test/data/webui/side_panel/commerce/commerce_browsertest.cc | 1e643efca1b1685edab2b30c28a5605b45d6f085 | [
"GPL-3.0-only",
"BSD-3-Clause"
] | permissive | chromium/chromium | aaa9eda10115b50b0616d2f1aed5ef35d1d779d6 | a401d6cf4f7bf0e2d2e964c512ebb923c3d8832c | refs/heads/main | 2023-08-24T00:35:12.585945 | 2023-08-23T22:01:11 | 2023-08-23T22:01:11 | 120,360,765 | 17,408 | 7,102 | BSD-3-Clause | 2023-09-10T23:44:27 | 2018-02-05T20:55:32 | null | UTF-8 | C++ | false | false | 1,158 | cc | // Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/test/scoped_feature_list.h"
#include "chrome/test/base/web_ui_mocha_browser_test.h"
#include "components/commerce/core/commerce_constants.h"
#include "components/commerce/core/commerce_feature_list.h"
#include "content/public/test/browser_test.h"
class SidePanelShoppingInsightsTest : public WebUIMochaBrowserTest {
protected:
SidePanelShoppingInsightsTest() {
scoped_feature_list_.InitAndEnableFeatureWithParameters(
commerce::kPriceInsights,
{
{commerce::kPriceInsightsShowFeedbackParam, "true"},
});
set_test_loader_host(commerce::kChromeUIShoppingInsightsSidePanelHost);
}
private:
base::test::ScopedFeatureList scoped_feature_list_;
};
IN_PROC_BROWSER_TEST_F(SidePanelShoppingInsightsTest, App) {
RunTest("side_panel/commerce/shopping_insights_app_test.js", "mocha.run()");
}
IN_PROC_BROWSER_TEST_F(SidePanelShoppingInsightsTest, PriceTrackingSection) {
RunTest("side_panel/commerce/price_tracking_section_test.js", "mocha.run()");
}
| [
"chromium-scoped@luci-project-accounts.iam.gserviceaccount.com"
] | chromium-scoped@luci-project-accounts.iam.gserviceaccount.com |
74af933c8fee66f0723ff2a06b5a6a308b619695 | 5a606c5d88e01854f9e647207ecf46baa8291a4c | /shared.h | 076a4d3a16609c9827c479a25922e04146d22dae | [] | no_license | IFeelBloated/RGSF | 9b79c12aae5ca63a44c58a13fce86dcaacfe34d1 | 657d1e7fb2c4a1a3419d3c40b5b53af3f4253032 | refs/heads/master | 2021-01-21T15:26:44.027860 | 2016-01-25T09:20:07 | 2016-01-25T09:20:07 | 37,806,462 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,935 | h | /*****************************************************************************
AvsFilterRemoveGrain/Repair16
Author: Laurent de Soras, 2012
Modified for VapourSynth by Fredrik Mellbin 2013
--- Legal stuff ---
This program is free software. It comes without any warranty, to
the extent permitted by applicable law. You can redistribute it
and/or modify it under the terms of the Do What The Fuck You Want
To Public License, Version 2, as published by Sam Hocevar. See
http://sam.zoy.org/wtfpl/COPYING for more details.
*Tab=3***********************************************************************/
#ifndef SHARED_H
#define SHARED_H
#include "VapourSynth.h"
#include "VSHelper.h"
#include <cstdint>
#include <algorithm>
#include <cstdlib>
#if defined(_MSC_VER)
#define _ALLOW_KEYWORD_MACROS
#define alignas(x) __declspec(align(x))
#define ALIGNED_ARRAY(decl, alignment) alignas(alignment) decl
#else
#ifndef __forceinline
#define __forceinline inline
#endif
#define ALIGNED_ARRAY(decl, alignment) __attribute__((aligned(16))) decl
#endif
template <class T>
static __forceinline T limit(T x, T mi, T ma)
{
return ((x < mi) ? mi : ((x > ma) ? ma : x));
}
class LineProcAll {
public:
static inline bool skip_line(int) { return (false); }
};
class LineProcEven {
public:
static inline bool skip_line(int y) { return ((y & 1) != 0); }
};
class LineProcOdd {
public:
static inline bool skip_line(int y) { return ((y & 1) == 0); }
};
enum cleanseMode {
cmNormal,
cmForward,
cmBackward
};
void VS_CC removeGrainCreate(const VSMap *in, VSMap *out, void *userData, VSCore *core, const VSAPI *vsapi);
void VS_CC repairCreate(const VSMap *in, VSMap *out, void *userData, VSCore *core, const VSAPI *vsapi);
void VS_CC verticalCleanerCreate(const VSMap *in, VSMap *out, void *userData, VSCore *core, const VSAPI *vsapi);
void VS_CC clenseCreate(const VSMap *in, VSMap *out, void *userData, VSCore *core, const VSAPI *vsapi);
#endif
| [
"nickgray0@gmail.com"
] | nickgray0@gmail.com |
ed4f981d8e93ab64b9e925bc7f9ab17c3d3e038a | 4abf174037181d2e6b82102d53902f9837dc100b | /src/wordtree/gentext.cpp | 36dc717a0503f3be36a576d3fd772d2550d173f8 | [] | no_license | fegies/ncurses-typetrainer | 9db9dd6e47f2f483d7daae8a633a4f556ac29b9c | 8c6dd40b102e930187e1ad51156ebe5215bd87d4 | refs/heads/master | 2021-01-17T08:25:42.665819 | 2016-09-28T17:25:52 | 2016-09-28T17:25:52 | 65,050,603 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,716 | cpp | #include "wordtree/gentext.h"
#include "wordtree/Wordtree.hpp"
#include <iostream>
#include <vector>
#include <fstream>
#include <algorithm>
#include <math.h>
namespace wordtree
{
void gentext(std::string& filename)
{
int wordsperline = 10;
int lengthGoal = 100;
std::string tfname("wordstat.stat");
std::string ofname1("cuttree1.ttree");
std::string ofname2("cuttree2.ttree");
Wordtree wt;
wt.restorefromFile(tfname);
wt.trimToErrors();
// wt.storeinFile(ofname1);
std::cout<<std::endl<<"Finished Trimming Errors"<<std::endl<<std::endl;
wt.trimPunctuation();
wt.storeinFile(ofname2);
std::cout<<std::endl<<"Finished Trimming Punctuation"<<std::endl<<std::endl;
int errorcount = wt.countErrors();
std::cout<<errorcount<<" Total Errors in the Tree. "<<std::endl;
std::vector<Wordtree::Word*> words = wt.toList();
std::vector<std::string*> text;
Wordtree::Word* w;
unsigned int s = words.size();
double share = 0;
int num = 0;
for(unsigned int b,a = 0; a < s; ++a)
{
w = words[a];
share = (double)(w -> variationTree -> countWords()) / (double)errorcount;
num = round( share * lengthGoal );
if( num > 0 )
std::cout<<*(w -> content)<<" "<<num<<std::endl;
for( b = 0; b < num; ++b )
text.push_back( (w -> content) );
}
std::random_shuffle(text.begin(), text.end());
std::cout<<"Text length: "<<text.size()<<" Words"<<std::endl;
std::ofstream fout(filename);
s = text.size();
int linePos = -1;
for(int a = 0; a < s; ++a)
{
if(++linePos == wordsperline)
{
linePos = 0;
fout << std::endl;
}
fout << " " << *text[a];
}
fout.close();
std::string pfilename(filename);
pfilename += ".prog";
fout.open(pfilename);
fout << 0;
fout.close();
}
} | [
"s4fegies@uni-trier.de"
] | s4fegies@uni-trier.de |
0117d9223da6b8513e65d8bb8b2e63f764e867c1 | 035d6a9d6fabe41d92d144a77142e44955042daa | /模拟实现atoi.cpp | 8333ae76558a015e122ad594ed98479429646228 | [] | no_license | blue24xin/offer_ | 59dc7f63366b215d436854ceade1e9bd6133499b | f8c90ec6cb31e8fe5a2d8a5bad2da03714afd277 | refs/heads/master | 2021-06-30T17:23:36.418843 | 2017-09-21T06:39:57 | 2017-09-21T06:39:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 862 | cpp | int StrToInt (string str) {
int len = str.length();
//1.判断空串
if (len == 0) return 0;
int flag = false;
int i = 0;
int num = 0;
//过滤前面的空格
while (str[i] == ' ')
i++;
//判断有无符号
if (str[i] == '-') {
flag = true;
i++;
} else if (str[i] == '+') {
i++;
}
//进行数值的转换
while(str[i] != '\0') {
if (str[i] >= '0' && str[i] <= '9') {
int sy = flag ? -1 : 1;
num = num * 10 + sy * (str[i] - '0');
// //处理溢出
// if ((flag < 0)&&(num > 0x7FFFFFFF) ||
// (flag > 0)&&(num < 0x80000000)) {
// cout << "溢出" <<endl;
// return 0;
// }
i++;
} else {
break;
}
}
return num;
} | [
"953659912@qq.com"
] | 953659912@qq.com |
40ea3aafd27826590922d3954805112d089393f7 | 6676a626996d08a0234eeb2796dddb142c3a5325 | /source/EmuScreen.cpp | b48a7a7735c590852a68bab3176d3e92812d4f4b | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | jameskirkwood/ds-hack-emu | 024059820faf73824d61941e1a789b4fe1ca032f | 43b0774869d7d6c32cb5c0cbaea81fe29c3f8aac | refs/heads/master | 2021-09-05T14:08:59.515527 | 2018-01-28T16:04:26 | 2018-01-28T16:04:26 | 119,084,227 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,470 | cpp | #include "EmuScreen.h"
#include <nds.h>
volatile u16 EmuScreen::vram[8 << 10];
volatile bool EmuScreen::dirty_line[128];
int EmuScreen::bg_id;
#define GET_BIT(x, i) (((x) >> i) & 1)
void EmuScreen::set_main() {
videoSetMode(MODE_3_2D); // Main engine layers: {0: T, 1: T, 2: T, 3: E}
bg_id = bgInit(3, BgType_Bmp8, BgSize_B8_256x256, 0, 0);
// Generate a palette approximating four black/white dots per pixel
// The NDS LCD dots are in BGR order from left to right
for (int i = 0; i < 16; i++) {
int l = GET_BIT(i, 0) + GET_BIT(i, 2);
int r = GET_BIT(i, 1) + GET_BIT(i, 3);
BG_PALETTE[i] = RGB15(31 * r / 2, 31 * (l + r) / 4, 31 * l / 2);
}
bgSetScroll(bg_id, 0, -32);
bgUpdate(); // Apply scroll vector
bgShow(bg_id);
for (int i = 0; i < (8 << 10); i++) vram[i] = 0;
for (int i = 0; i < 128; i++) dirty_line[i] = true;
}
void EmuScreen::draw() {
for (int i = 0; i < 128; i++) {
if (dirty_line[i]) {
dirty_line[i] = false;
for (int j = 0; j < 32; j++) {
vu16 *source = vram + (i << 6) + j;
u16 top_dots = ~source[0];
u16 btm_dots = ~source[32];
u16 evn_pixels = (top_dots & 0x3333) | ((btm_dots & 0x3333) << 2);
u16 odd_pixels = (btm_dots & 0xcccc) | ((top_dots & 0xcccc) >> 2);
u16 *target = bgGetGfxPtr(bg_id) + (i << 7) + (j << 2);
for (int i = 0; i < 4; i++) {
target[i] = (evn_pixels & 0xf) | ((odd_pixels & 0xf) << 8);
evn_pixels >>= 4;
odd_pixels >>= 4;
}
}
}
}
}
| [
"a1688600@student.adelaide.edu.au"
] | a1688600@student.adelaide.edu.au |
d5ab57b0dc1b366e8bfcfccb6b554c1c2f66863d | 5d06e16d3e21b5a341fda4beea143bd6a3371aef | /.svn/pristine/d5/d5ab57b0dc1b366e8bfcfccb6b554c1c2f66863d.svn-base | 79e08e29d7b459241278d6594e5a2343d41b4aa7 | [] | no_license | ErisBlastar/osfree | b5a080084d2d92f2ec43084291220ba84ffde977 | 9472591e4e8f9c8e3b78e6b8d6f0634c63387fd3 | refs/heads/master | 2020-12-25T17:34:18.394988 | 2016-07-29T03:46:31 | 2016-07-29T03:46:31 | 14,848,971 | 44 | 6 | null | 2018-02-07T16:46:26 | 2013-12-02T00:21:14 | C | UTF-8 | C++ | false | false | 5,390 | /*
@(#)WLVColumn.cpp 1.3
Copyright 1997 Willows Software, Inc.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; see the file COPYING.LIB. If
not, write to the Free Software Foundation, Inc., 675 Mass Ave,
Cambridge, MA 02139, USA.
For more information about the Willows Twin Libraries.
http://www.willows.com
To send email to the maintainer of the Willows Twin Libraries.
mailto:twin@willows.com
*/
#include "WCommCtrl.h"
#include "WLVColumn.h"
#include "WALVItems.h"
#include "WLVItem.h"
CWLVColumn::CWLVColumn (
DWORD NumItems,
LV_COLUMN *pColumn )
{
CWLVItem *pItem;
DWORD ItemIndex;
pString = NULL;
pItems = NULL;
memset ( &LVColumn, 0, sizeof ( LV_COLUMN ) );
LVColumn.mask = 0xFFFFFFFF;
if ( pColumn )
Assign ( pColumn );
pItems = new CWALVItems ();
for ( ItemIndex = 0; ItemIndex < NumItems; ItemIndex++ )
{
pItem = new CWLVItem ();
pItems->Insert ( ItemIndex, pItem );
}
}
CWLVColumn::~CWLVColumn ( )
{
DWORD ItemCount;
CWLVItem *pItem;
if ( pString )
delete [] ( pString );
if ( ( pItems ) && ( ItemCount = pItems->Count() ) )
{
for ( /*-- No Initialization --*/; ItemCount--; /*-- No Itteration --*/ )
{
pItem = (*pItems) [ ItemCount ];
delete ( pItem );
}
}
}
CWLVColumn& CWLVColumn::Assign (
LV_COLUMN *pLVColumn )
{
if ( pLVColumn->mask & LVCF_TEXT )
{
if ( pString )
{
delete [] ( pString );
LVColumn.pszText = NULL;
}
if ( ! ( pString = new char [ pLVColumn->cchTextMax ] ) )
Throw ( CatchBuffer, WERR_ALLOCATION );
else
{
strncpy ( pString, pLVColumn->pszText, min ( ( long )pLVColumn->cchTextMax, ( long )strlen ( pLVColumn->pszText ) ) );
LVColumn.pszText = pString;
}
}
if ( pLVColumn->mask & LVCF_FMT )
LVColumn.fmt = pLVColumn->fmt;
if ( pLVColumn->mask & LVCF_WIDTH )
LVColumn.cx = pLVColumn->cx;
if ( pLVColumn->mask & LVCF_SUBITEM )
LVColumn.iSubItem = pLVColumn->iSubItem;
return ( *this );
}
CWLVColumn& CWLVColumn::Assign (
CWLVColumn &that )
{
return ( Assign ( &( that.LVColumn ) ) );
}
void CWLVColumn::Get (
LV_COLUMN *pLVColumn )
{
if ( ( pLVColumn->mask & LVCF_TEXT ) && ( pString ) )
strncpy ( pLVColumn->pszText, pString, min ( ( long )pLVColumn->cchTextMax, ( long )strlen ( pString ) ) );
if ( pLVColumn->mask & LVCF_FMT )
pLVColumn->fmt = LVColumn.fmt;
if ( pLVColumn->mask & LVCF_WIDTH )
pLVColumn->cx = LVColumn.cx;
if ( pLVColumn->mask & LVCF_SUBITEM )
pLVColumn->iSubItem = LVColumn.iSubItem;
}
void CWLVColumn::GetItem (
DWORD ItemIndex,
LV_ITEM *pLVItem )
{
( (*pItems)[ ItemIndex ] )->Get ( pLVItem );
}
int CWLVColumn::GetItemTextLength (
DWORD ItemIndex )
{
return ( (*pItems)[ ItemIndex ]->GetTextLength() );
}
void CWLVColumn::SetItem (
DWORD ItemIndex,
LV_ITEM *pLVItem )
{
( (*pItems)[ ItemIndex ] )->Set ( pLVItem );
}
DWORD CWLVColumn::ItemCount ()
{
return ( pItems->Count() );
}
void CWLVColumn::InsertItem (
DWORD ItemIndex )
{
pItems->Insert ( ItemIndex, new CWLVItem() );
}
void CWLVColumn::DeleteItem (
DWORD ItemIndex )
{
CWLVItem *pItem;
pItem = (*pItems)[ ItemIndex ];
pItems->Delete ( ItemIndex );
delete ( pItem );
}
char* CWLVColumn::GetItemString (
DWORD ItemIndex )
{
return ( pItems->ItemString ( ItemIndex ) );
}
DWORD CWLVColumn::GetItemImageIndex (
DWORD ItemIndex )
{
return ( pItems->GetItemImageIndex ( ItemIndex ) );
}
void CWLVColumn::GetItemPosition (
DWORD ItemIndex,
LPPOINT pPoint )
{
CWLVItem *pItem;
pItem = (*pItems)[ ItemIndex ];
pItem->GetPosition ( pPoint );
}
void CWLVColumn::SetItemPosition (
DWORD ItemIndex,
LPPOINT pPoint )
{
CWLVItem *pItem;
pItem = (*pItems)[ ItemIndex ];
pItem->SetPosition ( pPoint );
}
| [
"orionblastar@gmail.com"
] | orionblastar@gmail.com | |
0656035ea4162e10920d95d909466e00b0abe766 | 0953f9aa0606c2dfb17cb61b84a4de99b8af6d2c | /src/ray/common/id_test.cc | 84820f4c0da5fcbb79399af4f9daa40368713b5a | [
"Apache-2.0",
"BSD-3-Clause",
"MIT"
] | permissive | oscarknagg/ray | da3dc03e24945ff4d5718fd35fc1b3408d8907eb | 20d47873c9e8f5bbb80fe36e5d16256c337c4db3 | refs/heads/master | 2023-09-01T01:45:26.364731 | 2021-10-21T07:46:52 | 2021-10-21T07:46:52 | 382,402,491 | 2 | 1 | Apache-2.0 | 2021-09-15T12:34:41 | 2021-07-02T16:25:05 | Python | UTF-8 | C++ | false | false | 3,573 | cc | // Copyright 2017 The Ray Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "gtest/gtest.h"
#include "ray/common/common_protocol.h"
#include "ray/common/task/task_spec.h"
namespace ray {
void TestFromIndexObjectId(const TaskID &task_id, int64_t index) {
// Round trip test for computing the object ID for an object created by a task, either
// via an object put or by being a return object for the task.
ObjectID obj_id = ObjectID::FromIndex(task_id, index);
ASSERT_EQ(obj_id.TaskId(), task_id);
ASSERT_EQ(obj_id.ObjectIndex(), index);
}
void TestRandomObjectId() {
// Round trip test for computing the object ID from random.
const ObjectID random_object_id = ObjectID::FromRandom();
ASSERT_FALSE(random_object_id.TaskId().IsNil());
ASSERT_EQ(random_object_id.ObjectIndex(), 0);
}
const static JobID kDefaultJobId = JobID::FromInt(199);
const static TaskID kDefaultDriverTaskId = TaskID::ForDriverTask(kDefaultJobId);
TEST(JobIDTest, TestJobID) {
uint32_t id = 100;
JobID job_id = JobID::FromInt(id);
ASSERT_EQ(job_id.ToInt(), id);
}
TEST(ActorIDTest, TestActorID) {
{
// test from binary
const ActorID actor_id_1 = ActorID::Of(kDefaultJobId, kDefaultDriverTaskId, 1);
const auto actor_id_1_binary = actor_id_1.Binary();
const auto actor_id_2 = ActorID::FromBinary(actor_id_1_binary);
ASSERT_EQ(actor_id_1, actor_id_2);
}
{
// test get job id
const ActorID actor_id = ActorID::Of(kDefaultJobId, kDefaultDriverTaskId, 1);
ASSERT_EQ(kDefaultJobId, actor_id.JobId());
}
}
TEST(TaskIDTest, TestTaskID) {
// Round trip test for task ID.
{
const ActorID actor_id = ActorID::Of(kDefaultJobId, kDefaultDriverTaskId, 1);
const TaskID task_id_1 =
TaskID::ForActorTask(kDefaultJobId, kDefaultDriverTaskId, 1, actor_id);
ASSERT_EQ(actor_id, task_id_1.ActorId());
}
}
TEST(ObjectIDTest, TestObjectID) {
const static ActorID default_actor_id =
ActorID::Of(kDefaultJobId, kDefaultDriverTaskId, 1);
const static TaskID default_task_id =
TaskID::ForActorTask(kDefaultJobId, kDefaultDriverTaskId, 1, default_actor_id);
{
// test from index
TestFromIndexObjectId(default_task_id, 1);
TestFromIndexObjectId(default_task_id, 2);
TestFromIndexObjectId(default_task_id, ObjectID::kMaxObjectIndex);
}
{
// test random object id
TestRandomObjectId();
}
}
TEST(NilTest, TestIsNil) {
ASSERT_TRUE(TaskID().IsNil());
ASSERT_TRUE(TaskID::Nil().IsNil());
ASSERT_TRUE(ObjectID().IsNil());
ASSERT_TRUE(ObjectID::Nil().IsNil());
}
TEST(HashTest, TestNilHash) {
// Manually trigger the hash calculation of the static global nil ID.
auto nil_hash = ObjectID::Nil().Hash();
ObjectID id1 = ObjectID::FromRandom();
ASSERT_NE(nil_hash, id1.Hash());
ObjectID id2 = ObjectID::FromBinary(ObjectID::FromRandom().Binary());
ASSERT_NE(nil_hash, id2.Hash());
ASSERT_NE(id1.Hash(), id2.Hash());
}
} // namespace ray
int main(int argc, char **argv) {
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}
| [
"noreply@github.com"
] | noreply@github.com |
2816f1750d32d97ba47ab0ec82596ea609fe6577 | 03cab7618b36a096ef2e20440eab7ed7a111d7bc | /SDK/iserverplugin.h | 968f8bd508bde6a6b4be425aff7b4939ac4dbffb | [] | no_license | senny970/L4DStools | 4916510afc8298ceb22ca956e7324f85bbe46942 | 20e1362132c467f55279c3401cdce3d4c4717274 | refs/heads/master | 2022-08-19T11:38:12.648010 | 2020-05-26T19:57:10 | 2020-05-26T19:57:10 | 262,985,392 | 2 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 6,328 | h | //========= Copyright © 1996-2005, Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//
//=============================================================================//
#ifndef ISERVERPLUGIN_H
#define ISERVERPLUGIN_H
#ifdef _WIN32
#pragma once
#endif
#include "interface.h"
class CCommand;
struct edict_t;
//
// you will also want to listen for game events via IGameEventManager::AddListener()
//
typedef enum
{
PLUGIN_CONTINUE = 0, // keep going
PLUGIN_OVERRIDE, // run the game dll function but use our return value instead
PLUGIN_STOP, // don't run the game dll function at all
} PLUGIN_RESULT;
typedef enum
{
eQueryCvarValueStatus_ValueIntact=0, // It got the value fine.
eQueryCvarValueStatus_CvarNotFound=1,
eQueryCvarValueStatus_NotACvar=2, // There's a ConCommand, but it's not a ConVar.
eQueryCvarValueStatus_CvarProtected=3 // The cvar was marked with FCVAR_SERVER_CAN_NOT_QUERY, so the server is not allowed to have its value.
} EQueryCvarValueStatus;
typedef int QueryCvarCookie_t;
#define InvalidQueryCvarCookie -1
#define INTERFACEVERSION_ISERVERPLUGINCALLBACKS_VERSION_1 "ISERVERPLUGINCALLBACKS001"
#define INTERFACEVERSION_ISERVERPLUGINCALLBACKS "ISERVERPLUGINCALLBACKS002"
//-----------------------------------------------------------------------------
// Purpose: callbacks the engine exposes to the 3rd party plugins (ala MetaMod)
//-----------------------------------------------------------------------------
abstract_class IServerPluginCallbacks
{
public:
// Initialize the plugin to run
// Return false if there is an error during startup.
virtual bool Load( CreateInterfaceFn interfaceFactory, CreateInterfaceFn gameServerFactory ) = 0;
// Called when the plugin should be shutdown
virtual void Unload( void ) = 0;
// called when a plugins execution is stopped but the plugin is not unloaded
virtual void Pause( void ) = 0;
// called when a plugin should start executing again (sometime after a Pause() call)
virtual void UnPause( void ) = 0;
// Returns string describing current plugin. e.g., Admin-Mod.
virtual const char *GetPluginDescription( void ) = 0;
// Called any time a new level is started (after GameInit() also on level transitions within a game)
virtual void LevelInit( char const *pMapName ) = 0;
// The server is about to activate
virtual void ServerActivate( edict_t *pEdictList, int edictCount, int clientMax ) = 0;
// The server should run physics/think on all edicts
virtual void GameFrame( bool simulating ) = 0;
// Called when a level is shutdown (including changing levels)
virtual void LevelShutdown( void ) = 0;
// Client is going active
virtual void ClientActive( edict_t *pEntity ) = 0;
// Client is disconnecting from server
virtual void ClientDisconnect( edict_t *pEntity ) = 0;
// Client is connected and should be put in the game
virtual void ClientPutInServer( edict_t *pEntity, char const *playername) = 0;
// Sets the client index for the client who typed the command into their console
virtual void SetCommandClient( int index ) = 0;
// A player changed one/several replicated cvars (name etc)
virtual void ClientSettingsChanged( edict_t *pEdict ) = 0;
// Client is connecting to server ( set retVal to false to reject the connection )
// You can specify a rejection message by writing it into reject
virtual PLUGIN_RESULT ClientConnect( bool *bAllowConnect, edict_t *pEntity, const char *pszName, const char *pszAddress, char *reject, int maxrejectlen ) = 0;
// The client has typed a command at the console
virtual PLUGIN_RESULT ClientCommand( edict_t *pEntity, const CCommand &args ) = 0;
// A user has had their network id setup and validated
virtual PLUGIN_RESULT NetworkIDValidated( const char *pszUserName, const char *pszNetworkID ) = 0;
// This is called when a query from IServerPluginHelpers::StartQueryCvarValue is finished.
// iCookie is the value returned by IServerPluginHelpers::StartQueryCvarValue.
// Added with version 2 of the interface.
virtual void OnQueryCvarValueFinished( QueryCvarCookie_t iCookie, edict_t *pPlayerEntity, EQueryCvarValueStatus eStatus, const char *pCvarName, const char *pCvarValue ) = 0;
};
#define INTERFACEVERSION_ISERVERPLUGINHELPERS "ISERVERPLUGINHELPERS001"
typedef enum
{
DIALOG_MSG = 0, // just an on screen message
DIALOG_MENU, // an options menu
DIALOG_TEXT, // a richtext dialog
DIALOG_ENTRY, // an entry box
DIALOG_ASKCONNECT // Ask the client to connect to a specified IP address. Only the "time" and "title" keys are used.
} DIALOG_TYPE;
//-----------------------------------------------------------------------------
// Purpose: functions that only 3rd party plugins need
//-----------------------------------------------------------------------------
abstract_class IServerPluginHelpers
{
public:
// creates an onscreen menu with various option buttons
// The keyvalues param can contain these fields:
// "title" - (string) the title to show in the hud and in the title bar
// "msg" - (string) a longer message shown in the GameUI
// "color" - (color) the color to display the message in the hud (white by default)
// "level" - (int) the priority of this message (closer to 0 is higher), only 1 message can be outstanding at a time
// "time" - (int) the time in seconds this message should stay active in the GameUI (min 10 sec, max 200 sec)
//
// For DIALOG_MENU add sub keys for each option with these fields:
// "command" - (string) client command to run if selected
// "msg" - (string) button text for this option
//
virtual void CreateMessage( edict_t *pEntity, DIALOG_TYPE type, void *data, IServerPluginCallbacks *plugin ) = 0;
virtual void ClientCommand( edict_t *pEntity, const char *cmd ) = 0;
// Call this to find out the value of a cvar on the client.
//
// It is an asynchronous query, and it will call IServerPluginCallbacks::OnQueryCvarValueFinished when
// the value comes in from the client.
//
// Store the return value if you want to match this specific query to the OnQueryCvarValueFinished call.
// Returns InvalidQueryCvarCookie if the entity is invalid.
virtual QueryCvarCookie_t StartQueryCvarValue( edict_t *pEntity, const char *pName ) = 0;
};
#endif //ISERVERPLUGIN_H
| [
"senny970@gmail.com"
] | senny970@gmail.com |
d33ecd658e21b1a8a74ef26a966b363e98e28332 | b2d4e19e51ab6cd9846532c05d8ef8465394d620 | /C-Plus-Plus/other/Lazy_Propagation_in_Segment_Tree.cpp | cf8f2d743a44e62025542d08bc47224ae690e3db | [
"MIT"
] | permissive | khushbooag4/NeoAlgo | 10ba73ff75ce567f8b823d5971d44145e4740cd3 | 218f812553633babc9e548e3e1f16cd38f54e5c4 | refs/heads/master | 2023-08-24T20:41:16.695309 | 2021-10-14T13:49:31 | 2021-10-14T13:49:31 | 417,134,326 | 1 | 0 | MIT | 2021-10-14T13:49:31 | 2021-10-14T13:07:54 | null | UTF-8 | C++ | false | false | 4,800 | cpp | //Demonstrating the working of LAZY PROPOGATION in Segment Tree using the problem statment : To update a range in the array and return the maximum element in the array after updating.
//TIME COMPLEXITY OF LAZY PROPOGATION: O(log(N)) [N here is the range]
#include <bits/stdc++.h>
using namespace std;
#define MAX 1000
//storing the segment tree
int tree[MAX] = { 0 };
// For storing the pending updates
int lazy[MAX] = { 0 };
void updateHelp(int current, int startI, int endI, int us,
int ue, int diff)
{
if (lazy[current] != 0) {
tree[current] += lazy[current];
if (startI != endI) {
lazy[current * 2 + 1] += lazy[current];
lazy[current * 2 + 2] += lazy[current];
}
lazy[current] = 0;
}
if (startI > endI || startI > ue || endI < us)
return;
if (startI >= us && endI <= ue) {
// Adding the difference to current node
tree[current] += diff;
if (startI != endI) {
lazy[current * 2 + 1] += diff;
lazy[current * 2 + 2] += diff;
}
return;
}
int mid = (startI + endI) / 2;
updateHelp(current * 2 + 1, startI, mid, us, ue, diff);
updateHelp(current * 2 + 2, mid + 1, endI, us, ue, diff);
tree[current] = max(tree[current * 2 + 1], tree[current * 2 + 2]);
}
// Updating the range of values in segment tree
void updateArray(int n, int us, int ue, int diff)
{
updateHelp(0, 0, n - 1, us, ue, diff);
}
int FindMaxHelp(int startI, int startE, int qs, int qe, int current)
{
if (lazy[current] != 0) {
// Make pending updates to this node. Note that this
// node represents sum of elements in arr[ss..se] and
// all these elements must be increased by lazy[si]
tree[current] += lazy[current];
// Checking if it is not leaf node because if
// it is leaf node then we cannot go further
if (startI != startE) {
// Since we are not yet updating children os si,
// we need to set lazy values for the children
lazy[current * 2 + 1] += lazy[current];
lazy[current * 2 + 2] += lazy[current];
}
// Unset the lazy value for current node as it has
// been updated
lazy[current] = 0;
}
// Out of range
if (startI > startE || startI > qe || startE < qs)
return 0;
if (startI >= qs && startE <= qe)
return tree[current];
// If part of this segment overlaps with the given range
int mid = (startI + startE) / 2;
return max(FindMaxHelp(startI, mid, qs, qe, 2 * current + 1),
FindMaxHelp(mid + 1, startE, qs, qe, 2 * current + 2));
}
int FindMax(int n, int qs, int qe)
{
// Check for erroneous input values
if (qs < 0 || qe > n - 1 || qs > qe) {
printf("Invalid Input");
return -1;
}
return FindMaxHelp(0, n - 1, qs, qe, 0);
}
void constructHelp(int arr[], int startI, int startE, int current)
{
if (startI > startE)
return;
if (startI == startE) {
tree[current] = arr[startI];
return;
}
int mid = (startI + startE) / 2;
constructHelp(arr, startI, mid, current * 2 + 1);
constructHelp(arr, mid + 1, startE, current * 2 + 2);
tree[current] = max(tree[current * 2 + 1], tree[current * 2 + 2]);
}
void constructSegmentTree(int arr[], int n)
{
constructHelp(arr, 0, n - 1, 0);
}
// Variable Declaration:
// current -> index of current node in segment tree
// startI and endI -> Starting and ending indexes of
// elements for which current nodes stores sum
// us and ue -> starting and ending indexes of update query
// diff -> which we need to add in the range us to ue
// Driver code
int main()
{
int n;
cout<<"Enter the size of the array:";
cin>>n;
int arr[n];
cout<<"Enter the array elements:";
for(int i=0;i<n;i++){
cin>>arr[i];
}
int a,b,sum;
cout<<"Starting Index in array for update: ";
cin>>a;
cout<<"End Index in array for update:";
cin>>b;
cout<<"Amount by which array elements are to be updated:";
cin>>sum;
// Build segment tree from given array
constructSegmentTree(arr, n);
// Add 4 to all nodes in index range [0, 3]
updateArray(n, a, b, sum);
// Print maximum element in index range [1, 4]
cout<<"Max element after update is:";
cout << FindMax(n, a+1, b+1);
return 0;
}
/*
OUTPUT:
Enter the size of the array:10
Enter the array elements:1 2 3 4 5 6 7 8 9 10
Starting Index in array for update: 1
End Index in array for update:8
Amount by which array elements are to be updated:10
19
*/
| [
"noreply@github.com"
] | noreply@github.com |
6192e758c4d0f55bdb548276c2a0422bd8bfa66b | 9802284a0f2f13a6a7ac93278f8efa09cc0ec26b | /SDK/PheasantMeat_classes.h | dfe9453051460e081603edd9e58b9f1fa2b69bc0 | [] | no_license | Berxz/Scum-SDK | 05eb0a27eec71ce89988636f04224a81a12131d8 | 74887c5497b435f535bbf8608fcf1010ff5e948c | refs/heads/master | 2021-05-17T15:38:25.915711 | 2020-03-31T06:32:10 | 2020-03-31T06:32:10 | 250,842,227 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 614 | h | #pragma once
// Name: SCUM, Version: 3.75.21350
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
namespace SDK
{
//---------------------------------------------------------------------------
// Classes
//---------------------------------------------------------------------------
// BlueprintGeneratedClass PheasantMeat.PheasantMeat_C
// 0x0000 (0x09A8 - 0x09A8)
class APheasantMeat_C : public AFoodItem
{
public:
static UClass* StaticClass()
{
static auto ptr = UObject::FindClass("BlueprintGeneratedClass PheasantMeat.PheasantMeat_C");
return ptr;
}
};
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
| [
"37065724+Berxz@users.noreply.github.com"
] | 37065724+Berxz@users.noreply.github.com |
5b58ffd1fb17d8a865c023b9c6e3ea2305f029be | d1190f0e2135ffcf746c3cfcceea8575bacc118a | /nutils/buffer.cc | ddc7133e146f5323baad7795695d278e0ff03f06 | [
"BSD-3-Clause"
] | permissive | eightfingerd/ngui | 37bfa1ac5b0a685782c6b69bc673035a2afd070b | 9e4a966de5a2fd2a1c8fe8f4cde4a59f54b3a98a | refs/heads/master | 2020-08-20T05:37:56.187515 | 2019-10-17T06:45:39 | 2019-10-17T06:45:39 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,449 | cc | /* ***** BEGIN LICENSE BLOCK *****
* Distributed under the BSD license:
*
* Copyright (c) 2015, xuewen.chu
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of xuewen.chu 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 xuewen.chu 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.
*
* ***** END LICENSE BLOCK ***** */
#include "nutils/buffer.h"
#include "nutils/array.cc.inl"
XX_NS(ngui)
XX_DEF_ARRAY_SPECIAL_IMPLEMENTATION(char, BufferContainer, 1);
XX_DEF_ARRAY_SPECIAL_IMPLEMENTATION(byte, BufferContainer, 1);
XX_DEF_ARRAY_SPECIAL_IMPLEMENTATION(int16, BufferContainer, 1);
XX_DEF_ARRAY_SPECIAL_IMPLEMENTATION(uint16, BufferContainer, 1);
XX_DEF_ARRAY_SPECIAL_IMPLEMENTATION(int, BufferContainer, 1);
XX_DEF_ARRAY_SPECIAL_IMPLEMENTATION(uint, BufferContainer, 1);
XX_DEF_ARRAY_SPECIAL_IMPLEMENTATION(int64, BufferContainer, 1);
XX_DEF_ARRAY_SPECIAL_IMPLEMENTATION(uint64, BufferContainer, 1);
XX_DEF_ARRAY_SPECIAL_IMPLEMENTATION(float, BufferContainer, 1);
XX_DEF_ARRAY_SPECIAL_IMPLEMENTATION(double, BufferContainer, 1);
XX_DEF_ARRAY_SPECIAL_IMPLEMENTATION(bool, BufferContainer, 1);
XX_END
| [
"louistru@hotmail.com"
] | louistru@hotmail.com |
e21869f6aa0f8223ebf4c7074ef1d73692b28782 | 08b8cf38e1936e8cec27f84af0d3727321cec9c4 | /data/crawl/squid/new_hunk_2930.cpp | 12366f2f0657ef37c9ed35d15f3b9a66e5bcc918 | [] | no_license | ccdxc/logSurvey | eaf28e9c2d6307140b17986d5c05106d1fd8e943 | 6b80226e1667c1e0760ab39160893ee19b0e9fb1 | refs/heads/master | 2022-01-07T21:31:55.446839 | 2018-04-21T14:12:43 | 2018-04-21T14:12:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,588 | cpp | #include "config.h"
#include "squid.h"
#include "ConfigParser.h"
#include "ClientDelayConfig.h"
#include "Parsing.h"
#include "Store.h"
#include "acl/Acl.h"
#include "acl/Gadgets.h"
void ClientDelayPool::dump(StoreEntry * entry, unsigned int poolNumberMinusOne) const
{
LOCAL_ARRAY(char, nom, 32);
snprintf(nom, 32, "client_delay_access %d", poolNumberMinusOne + 1);
dump_acl_access(entry, nom, access);
storeAppendPrintf(entry, "client_delay_parameters %d %d %"PRId64"\n", poolNumberMinusOne + 1, rate,highwatermark);
storeAppendPrintf(entry, "\n");
}
void
ClientDelayConfig::finalize()
{
for (unsigned int i = 0; i < pools.size(); ++i) {
/* pools require explicit 'allow' to assign a client into them */
if (!pools[i].access) {
debugs(77, DBG_IMPORTANT, "client_delay_pool #" << (i+1) <<
" has no client_delay_access configured. " <<
"No client will ever use it.");
}
}
}
void ClientDelayConfig::freePoolCount()
{
pools.clean();
}
void ClientDelayConfig::dumpPoolCount(StoreEntry * entry, const char *name) const
{
if (pools.size()) {
storeAppendPrintf(entry, "%s %d\n", name, (int)pools.size());
for (unsigned int i = 0; i < pools.size(); i++)
pools[i].dump(entry, i);
}
}
void ClientDelayConfig::parsePoolCount()
{
if (pools.size()) {
debugs(3, 0, "parse_client_delay_pool_count: multiple client_delay_pools lines, aborting all previous client_delay_pools config");
clean();
}
u_short pools_;
ConfigParser::ParseUShort(&pools_);
for (int i = 0; i < pools_; i++)
{
pools.push_back(ClientDelayPool());
}
}
void ClientDelayConfig::parsePoolRates()
{
ushort pool;
ConfigParser::ParseUShort(&pool);
if (pool < 1 || pool > pools.size()) {
debugs(3, 0, "parse_client_delay_pool_rates: Ignoring pool " << pool << " not in 1 .. " << pools.size());
return;
}
pool--;
pools[pool].rate = GetInteger();
pools[pool].highwatermark = GetInteger64();
}
void ClientDelayConfig::parsePoolAccess(ConfigParser &parser)
{
ushort pool;
ConfigParser::ParseUShort(&pool);
if (pool < 1 || pool > pools.size()) {
debugs(3, 0, "parse_client_delay_pool_rates: Ignoring pool " << pool << " not in 1 .. " << pools.size());
return;
}
--pool;
aclParseAccessLine(parser, &pools[pool].access);
}
void ClientDelayConfig::clean()
{
for (unsigned int i = 0; i < pools.size(); i++)
{
aclDestroyAccessList(&pools[i].access);
}
}
| [
"993273596@qq.com"
] | 993273596@qq.com |
deb15de764299deaed40ca06f1271709246f9672 | 3101ab4bb39e3778877573d2089d6ac12323a92e | /IMGSTCHHW2/getF.cpp | afdeab154fb698b386da70f347d458fec405b629 | [] | no_license | jefftsai8049/IMGSTCHHW2 | 689f76ed95e81f5520fcfedcde34fef61d47a033 | 774e33985b45c6699952a43bcf7713cc7a2f5924 | refs/heads/master | 2021-01-14T13:44:09.269113 | 2015-06-30T05:41:16 | 2015-06-30T05:41:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,491 | cpp | #include "getF.h"
#include <fstream>
#include <iomanip>
#include <QDebug>
void GetF::warping(std::vector<cv::Mat> &inputArrays,std::vector<double> FL2,std::vector<cv::Mat> &Output,std::vector<cv::Point> &upedge,std::vector<cv::Point> &downedge)
{
for(int j = 0; j < inputArrays.size(); j++)
{
cv::Mat image = inputArrays[j].clone();
int mid_x = image.cols/2;
int mid_y = image.rows/2;
double FL = FL2[j];
cv::Mat temp=cv::Mat(image.rows,image.cols,CV_8UC3);
temp = cv::Scalar::all(0);
for(int b = 0; b < image.rows; b++)
{
for(int a = 0; a < image.cols; a++)
{
double theta = atan((a-mid_x)/FL);
double h = (b-mid_y)/pow(pow((a-mid_x),2)+pow(FL,2),0.5);
int x = FL*theta+mid_x;
int y = FL*h+mid_y;
temp.at<cv::Vec3b>(y, x)[0] = image.at<cv::Vec3b>(b,a)[0];
temp.at<cv::Vec3b>(y, x)[1] = image.at<cv::Vec3b>(b,a)[1];
temp.at<cv::Vec3b>(y, x)[2] = image.at<cv::Vec3b>(b,a)[2];
if(b == 0)
{
cv::Point temp = cv::Point(x,y);
upedge.push_back(temp);
}
else if(b==image.rows -1 )
{
cv::Point temp = cv::Point(x,y);
downedge.push_back(temp);
}
}
}
Output.push_back(temp);
}
}
| [
"yangwen5301@gmail.com"
] | yangwen5301@gmail.com |
978d0ecb0c9d3de9b147ebbd79659662d98fbe9d | 34aac694ccb9f953456a5cd2328ab1ea15abb799 | /UVa_ACM/111 - Volume CXI/UVa 11137(2.5, DP, Coin-change).cpp | 60557e7387b775e99a8eee8167ab92b7b71fbb96 | [] | no_license | ottersome/Judge-1 | 98eca71c2f847032dc976cb1ffe63887bbc15339 | 1996a49293bde9bc15162501a23d7b51a3830185 | refs/heads/master | 2020-04-30T07:08:26.341120 | 2017-08-28T12:32:47 | 2017-08-28T12:32:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 431 | cpp | #include <cstdio>
#include <cstring>
#include <iostream>
using namespace std;
#define MAXC 22
#define MAXN 10010
int c[MAXC];
long long dp[MAXN];
int main()
{
int i, j, n;
for (i = 1; i < MAXC; i++)
c[i] = i * i * i;
memset(dp, 0, sizeof(dp));
dp[0] = 1;
for (i = 1; i < MAXC; i++)
for (j = c[i]; j < MAXN; j++)
dp[j] += dp[j - c[i]];
while (scanf("%d", &n) != EOF)
printf("%lld\n", dp[n]);
} | [
"m80126colin@gmail.com"
] | m80126colin@gmail.com |
6d942625d867507f1ef1d3db98a625aa7483cacb | ad273708d98b1f73b3855cc4317bca2e56456d15 | /aws-cpp-sdk-chime/include/aws/chime/model/MemberType.h | a7bd1a7dada4af65743d3d09c47653c538c3f164 | [
"MIT",
"Apache-2.0",
"JSON"
] | permissive | novaquark/aws-sdk-cpp | b390f2e29f86f629f9efcf41c4990169b91f4f47 | a0969508545bec9ae2864c9e1e2bb9aff109f90c | refs/heads/master | 2022-08-28T18:28:12.742810 | 2020-05-27T15:46:18 | 2020-05-27T15:46:18 | 267,351,721 | 1 | 0 | Apache-2.0 | 2020-05-27T15:08:16 | 2020-05-27T15:08:15 | null | UTF-8 | C++ | false | false | 1,067 | h | /*
* Copyright 2010-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
#pragma once
#include <aws/chime/Chime_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
namespace Aws
{
namespace Chime
{
namespace Model
{
enum class MemberType
{
NOT_SET,
User,
Bot,
Webhook
};
namespace MemberTypeMapper
{
AWS_CHIME_API MemberType GetMemberTypeForName(const Aws::String& name);
AWS_CHIME_API Aws::String GetNameForMemberType(MemberType value);
} // namespace MemberTypeMapper
} // namespace Model
} // namespace Chime
} // namespace Aws
| [
"aws-sdk-cpp-automation@github.com"
] | aws-sdk-cpp-automation@github.com |
66ed6db4d768d0982d76461f505067059348c93d | 8511770ac177ab3c9bd810962fab9f089ee71755 | /ReactCommon/react/renderer/components/slider/platform/ios/SliderMeasurementsManager.h | f78ff2bb2704cafd2a52b954538b4db1ee4deaf1 | [
"CC-BY-4.0",
"MIT",
"CC-BY-NC-SA-4.0",
"CC-BY-SA-4.0"
] | permissive | hramos/react-native | 7760bd9e9796151e723d31de2781fff17d426904 | 084a8b5f03d100a9d775a676ede08e26ed25d0c4 | refs/heads/main | 2023-02-23T06:58:05.336234 | 2021-09-24T20:37:40 | 2021-09-24T20:37:40 | 114,177,219 | 3 | 1 | MIT | 2023-06-09T01:45:54 | 2017-12-13T22:53:44 | JavaScript | UTF-8 | C++ | false | false | 863 | h | /*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#pragma once
#include <react/renderer/core/ConcreteComponentDescriptor.h>
#include <react/renderer/core/LayoutConstraints.h>
#include <react/utils/ContextContainer.h>
namespace facebook {
namespace react {
/**
* Class that manages slider measurements across platforms.
* On iOS it is a noop, since the height is passed in from JS on iOS only.
*/
class SliderMeasurementsManager {
public:
SliderMeasurementsManager(ContextContainer::Shared const &contextContainer) {}
static inline bool shouldMeasureSlider() {
return false;
}
Size measure(SurfaceId surfaceId, LayoutConstraints layoutConstraints) const;
};
} // namespace react
} // namespace facebook
| [
"facebook-github-bot@users.noreply.github.com"
] | facebook-github-bot@users.noreply.github.com |
033b125a63c922a6829bb93ce4dd01cf936a866e | 8c2a7548e21ac33e7edddc870f8314e9e4e4a06b | /Source/Editor/Private/Customizations/SEComponentClassFilterCustomization.h | a3324faee89ebfb9c0d157f44d29cdd4272b14cd | [
"Apache-2.0"
] | permissive | PipeRift/SaveExtension | 356b903815cc0e5687781de986c5e2d7b04cdd76 | 401826a447b2bc312a6f4ef9b5f11f5649dc23e9 | refs/heads/main | 2023-06-22T02:26:59.941295 | 2023-06-12T19:59:42 | 2023-06-12T19:59:42 | 147,575,304 | 143 | 63 | Apache-2.0 | 2023-02-07T22:27:08 | 2018-09-05T20:24:16 | C++ | UTF-8 | C++ | false | false | 575 | h | // Copyright 2015-2020 Piperift. All Rights Reserved.
#pragma once
#include "SEClassFilterCustomization.h"
class IPropertyHandle;
class FSEComponentClassFilterCustomization : public FSEClassFilterCustomization
{
public:
/**
* Creates a new instance.
*
* @return A new struct customization for Factions.
*/
static TSharedRef<IPropertyTypeCustomization> MakeInstance()
{
return MakeShared<FSEComponentClassFilterCustomization>();
}
protected:
virtual TSharedPtr<IPropertyHandle> GetFilterHandle(TSharedRef<IPropertyHandle> StructPropertyHandle) override;
};
| [
"muit@piperift.com"
] | muit@piperift.com |
2a5db16305c8111e5c5beaead18e557a1d266e7b | fe6efe3887729bf98c4cd5972aaaf32696ea2486 | /SET-1/Hashing/RabinCarp.cpp | 4d7f1dcfcf2108bebde329d6ba9e25529ddec8da | [] | no_license | Suvoo/DS_Algo_Path | 2920e47ce8904e47c75c805fcfd285fab30b438e | 5518da86dd3de275b6816ddd7c62e38b8b6c73bd | refs/heads/master | 2022-12-01T00:31:18.276927 | 2020-08-11T17:04:56 | 2020-08-11T17:04:56 | 283,719,686 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,803 | cpp |
/* https://www.geeksforgeeks.org/rabin-karp-algorithm-for-pattern-searching/ */
/* Following program is a C++ implementation of Rabin Karp
Algorithm given in the CLRS book */
#include <bits/stdc++.h>
using namespace std;
// d is the number of characters in the input alphabet
#define d 256
/* pat -> pattern
txt -> text
q -> A prime number
*/
void search(char pat[], char txt[], int q)
{
int M = strlen(pat);
int N = strlen(txt);
int i, j;
int p = 0; // hash value for pattern
int t = 0; // hash value for txt
int h = 1;
// The value of h would be "pow(d, M-1)%q"
for (i = 0; i < M - 1; i++)
h = (h * d) % q;
// Calculate the hash value of pattern and first
// window of text
for (i = 0; i < M; i++)
{
p = (d * p + pat[i]) % q;
t = (d * t + txt[i]) % q;
}
// Slide the pattern over text one by one
for (i = 0; i <= N - M; i++)
{
// Check the hash values of current window of text
// and pattern. If the hash values match then only
// check for characters on by one
if ( p == t )
{
/* Check for characters one by one */
for (j = 0; j < M; j++)
{
if (txt[i+j] != pat[j])
break;
}
// if p == t and pat[0...M-1] = txt[i, i+1, ...i+M-1]
if (j == M)
cout<<"Pattern found at index "<< i<<endl;
}
// Calculate hash value for next window of text: Remove
// leading digit, add trailing digit
if ( i < N-M )
{
t = (d*(t - txt[i]*h) + txt[i+M])%q;
// We might get negative value of t, converting it
// to positive
if (t < 0)
t = (t + q);
}
}
}
/* Driver code */
int main()
{
char txt[] = "GEEKS FOR GEEKS";
char pat[] = "GEEK";
int q = 101; // A prime number
search(pat, txt, q);
return 0;
}
// This is code is contributed by rathbhupendra
| [
"noreply@github.com"
] | noreply@github.com |
fa9e4f5492fbe6f1fdca535b195d8c78ccf81a0c | bcbf0adf55a11d6f48a81289466bf05919ea4ffd | /src/librhino3dm_native/on_render_channels.cpp | 21e2263d23c37b9afada9bc9e37e94063bda9075 | [
"MIT"
] | permissive | CheckTech/rhino3dm | 825b3384ef9e4960f21848b34ff9a2769ddff16d | b2fe3b8544c43b7afe9b1dfefd9276459cde5b3b | refs/heads/master | 2022-12-22T13:56:44.630092 | 2022-12-16T14:21:48 | 2022-12-16T14:21:48 | 242,422,304 | 1 | 0 | MIT | 2020-02-22T22:44:20 | 2020-02-22T22:44:20 | null | UTF-8 | C++ | false | false | 1,000 | cpp |
#include "stdafx.h"
static ON_RenderChannels::Modes Mode(int m)
{
return ON_RenderChannels::Modes(m);
}
RH_C_FUNCTION int ON_RenderChannels_GetMode(const ONX_Model* ptrModel)
{
if (nullptr == ptrModel)
return -1;
return int(ptrModel->m_settings.m_RenderSettings.RenderChannels().Mode());
}
RH_C_FUNCTION void ON_RenderChannels_SetMode(ONX_Model* ptrModel, int m)
{
if (nullptr != ptrModel)
{
ptrModel->m_settings.m_RenderSettings.RenderChannels().SetMode(Mode(m));
}
}
RH_C_FUNCTION void ON_RenderChannels_GetCustomList(const ONX_Model* ptrModel, ON_SimpleArray<ON_UUID>* list)
{
if ((nullptr != ptrModel) && (nullptr != list))
{
ptrModel->m_settings.m_RenderSettings.RenderChannels().GetCustomList(*list);
}
}
RH_C_FUNCTION void ON_RenderChannels_SetCustomList(ONX_Model* ptrModel, const ON_SimpleArray<ON_UUID>* list)
{
if ((nullptr != ptrModel) && (nullptr != list))
{
ptrModel->m_settings.m_RenderSettings.RenderChannels().SetCustomList(*list);
}
}
| [
"steve@mcneel.com"
] | steve@mcneel.com |
6a3f00bbb027460fa0fe57a87963c7fcc36b106c | 412004775bc7b039b49c271da524768961dc2bd5 | /Div2_A/Cakeminator.cpp | ec9d17534a6ac529cf50a75ff5eebd754dc8c3f5 | [] | no_license | LUTLJS/CodeForces | 6ee1f080dbbe9c733d2453f30a5eeaaa605b7cb2 | ef74dc71a37f37356baa81bceb25899a83440b22 | refs/heads/main | 2023-04-22T17:56:48.782431 | 2021-05-10T07:49:42 | 2021-05-10T07:49:42 | 328,949,731 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 704 | cpp | #include<bits/stdc++.h>
using namespace std;
int main(){
ios::sync_with_stdio(0);cin.tie(0);
int r,c,count=0;cin>>r>>c;
string a[r];
for(int i=0;i<r;i++)cin>>a[i];
for(int i=0;i<r;i++){
for(int j=0;j<c;j++){
bool cannotBeEaten=false;
if(a[i][j]=='.'){
for(int k=0;k<c;k++){
if(a[i][k]=='S'){cannotBeEaten=true;break;}
}
if(!cannotBeEaten){count++;continue;}
for(int k=0;k<r;k++){
if(a[k][j]=='S'){cannotBeEaten=false;break;}
}
if(cannotBeEaten)count++;
}
}
}
cout<<count;
return 0;
}
| [
"noreply@github.com"
] | noreply@github.com |
f8d5a057001303d4bf49951b2b50706a19534540 | a56252fda5c9e42eff04792c6e16e413ad51ba1a | /resources/home/dnanexus/root/include/TNetXNGSystem.h | fdeeb98c738b4a43548f1ce7a0856334f020f28a | [
"LGPL-2.1-or-later",
"LGPL-2.1-only",
"Apache-2.0"
] | permissive | edawson/parliament2 | 4231e692565dbecf99d09148e75c00750e6797c4 | 2632aa3484ef64c9539c4885026b705b737f6d1e | refs/heads/master | 2021-06-21T23:13:29.482239 | 2020-12-07T21:10:08 | 2020-12-07T21:10:08 | 150,246,745 | 0 | 0 | Apache-2.0 | 2019-09-11T03:22:55 | 2018-09-25T10:21:03 | Python | UTF-8 | C++ | false | false | 2,831 | h | // @(#)root/netxng:$Id$
/*************************************************************************
* Copyright (C) 1995-2013, Rene Brun and Fons Rademakers. *
* All rights reserved. *
* *
* For the licensing terms see $ROOTSYS/LICENSE. *
* For the list of contributors see $ROOTSYS/README/CREDITS. *
*************************************************************************/
#ifndef ROOT_TNetXNGSystem
#define ROOT_TNetXNGSystem
////////////////////////////////////////////////////////////////////////////////
// //
// TNetXNGSystem //
// //
// Authors: Justin Salmon, Lukasz Janyst //
// CERN, 2013 //
// //
// Enables access to XRootD filesystem interface using the new client. //
// //
////////////////////////////////////////////////////////////////////////////////
#include "TSystem.h"
#include "TCollection.h"
#include "TMutex.h"
#include "THashList.h"
#include <set>
namespace XrdCl {
class FileSystem;
class URL;
class DirectoryList;
}
class TNetXNGSystem: public TSystem {
private:
std::set<void *> fDirPtrs;
static THashList fgAddrFQDN; // Cache of addresses to FQDNs
static TMutex fgAddrMutex; // Serialise access to the FQDN list
#ifndef __CINT__
private:
XrdCl::URL *fUrl; // URL of this TSystem
XrdCl::FileSystem *fFileSystem; // Cached for convenience
#endif
public:
TNetXNGSystem(Bool_t owner = kTRUE);
TNetXNGSystem(const char *url, Bool_t owner = kTRUE);
virtual ~TNetXNGSystem();
virtual void *OpenDirectory(const char *dir);
virtual Int_t MakeDirectory(const char *dir);
virtual void FreeDirectory(void *dirp);
virtual const char *GetDirEntry(void *dirp);
virtual Int_t GetPathInfo(const char *path, FileStat_t &buf);
virtual Bool_t ConsistentWith(const char *path, void *dirptr);
virtual int Unlink(const char *path);
virtual Bool_t IsPathLocal(const char *path);
virtual Int_t Locate(const char *path, TString &endurl);
virtual Int_t Stage(const char *path, UChar_t priority);
virtual Int_t Stage(TCollection *files, UChar_t priority);
ClassDef(TNetXNGSystem, 0) // ROOT class definition
};
#endif
| [
"slzarate96@gmail.com"
] | slzarate96@gmail.com |
fb03b6149eedd403d0883a78f132015babfc260f | 52ca17dca8c628bbabb0f04504332c8fdac8e7ea | /boost/gil/image_view_factory.hpp | 93a5af427fc8f02ea81a69f11175167623a17640 | [] | no_license | qinzuoyan/thirdparty | f610d43fe57133c832579e65ca46e71f1454f5c4 | bba9e68347ad0dbffb6fa350948672babc0fcb50 | refs/heads/master | 2021-01-16T17:47:57.121882 | 2015-04-21T06:59:19 | 2015-04-21T06:59:19 | 33,612,579 | 0 | 0 | null | 2015-04-08T14:39:51 | 2015-04-08T14:39:51 | null | UTF-8 | C++ | false | false | 68 | hpp | #include "thirdparty/boost_1_58_0/boost/gil/image_view_factory.hpp"
| [
"qinzuoyan@xiaomi.com"
] | qinzuoyan@xiaomi.com |
58e20955a5c1cd769ede8a943690dda383a843b5 | 127b54cd864a4323978aaa4e9e7d24759b1f9345 | /Misc/Coding/cl2.cpp | ba49b8ab7205f9fe73759b6ae22dd6bb3a22ee62 | [] | no_license | mohilkhare1708/Competitive-Programming | d349dd33119d6b22c5b745b2634ab2fea622af12 | 980986d1a668e335b0722bfdad0cef7f729fcbeb | refs/heads/main | 2023-06-29T01:12:28.624195 | 2021-08-03T18:29:33 | 2021-08-03T18:29:33 | 303,459,240 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,158 | cpp | //Codechef: mohilllll Codeforces: mohilllll Google: mohilkhare17
//headers
#include <bits/stdc++.h>
#include <assert.h>
//shorts
#define ll long long int
#define vll vector<long long int>
#define vvll vector<vector<long long int>>
#define vpll vector<pair<long long int, long long int>>
#define sll set<long long int>
#define mp make_pair
#define pb push_back
#define endl "\n"
#define here std::cout << "here\n";
#define fastIO ios_base::sync_with_stdio(false); cin.tie(NULL);
#define MOD 1000000007
//program specific shorts (if any)
using namespace std;
int main() {
fastIO;
ll t; cin >> t;
for(ll qqq = 0; qqq < t; qqq++) {
ll n; cin >> n;
ll a[n]; for(ll i = 0; i < n; i++) cin >> a[i];
sort(a, a+n);
ll q; cin >> q;
for(auto x : a) cout << x << " "; cout << endl;
for(ll qq = 0; qq < q; qq++) {
ll x, y; cin >> x >> y;
if(a[lower_bound(a, a+n, x+y) - a] == x+y) {
cout << "-1" << endl;
}
else {
//here;
cout << lower_bound(a, a+n, x+y) - a << endl;
}
}
}
return 0;
} | [
"mohilkhare17@gmail.com"
] | mohilkhare17@gmail.com |
03fccc1ebecd504e37edbefef34f9a462a4a3923 | 5ec06dab1409d790496ce082dacb321392b32fe9 | /clients/cpp-qt5-qhttpengine-server/generated/server/src/models/OAIComDayCqDamCoreImplMissingMetadataNotificationJobProperties.cpp | 513657454b5fb5fb3aa9d49edbe6c472d88c9b2e | [
"MIT",
"Apache-2.0"
] | permissive | shinesolutions/swagger-aem-osgi | e9d2385f44bee70e5bbdc0d577e99a9f2525266f | c2f6e076971d2592c1cbd3f70695c679e807396b | refs/heads/master | 2022-10-29T13:07:40.422092 | 2021-04-09T07:46:03 | 2021-04-09T07:46:03 | 190,217,155 | 3 | 3 | Apache-2.0 | 2022-10-05T03:26:20 | 2019-06-04T14:23:28 | null | UTF-8 | C++ | false | false | 7,124 | cpp | /**
* Adobe Experience Manager OSGI config (AEM) API
* Swagger AEM OSGI is an OpenAPI specification for Adobe Experience Manager (AEM) OSGI Configurations API
*
* OpenAPI spec version: 1.0.0-pre.0
* Contact: opensource@shinesolutions.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
#include "OAIComDayCqDamCoreImplMissingMetadataNotificationJobProperties.h"
#include "OAIHelpers.h"
#include <QJsonDocument>
#include <QJsonArray>
#include <QObject>
#include <QDebug>
namespace OpenAPI {
OAIComDayCqDamCoreImplMissingMetadataNotificationJobProperties::OAIComDayCqDamCoreImplMissingMetadataNotificationJobProperties(QString json) {
this->fromJson(json);
}
OAIComDayCqDamCoreImplMissingMetadataNotificationJobProperties::OAIComDayCqDamCoreImplMissingMetadataNotificationJobProperties() {
this->init();
}
OAIComDayCqDamCoreImplMissingMetadataNotificationJobProperties::~OAIComDayCqDamCoreImplMissingMetadataNotificationJobProperties() {
}
void
OAIComDayCqDamCoreImplMissingMetadataNotificationJobProperties::init() {
m_cq_dam_missingmetadata_notification_scheduler_istimebased_isSet = false;
m_cq_dam_missingmetadata_notification_scheduler_timebased_rule_isSet = false;
m_cq_dam_missingmetadata_notification_scheduler_period_rule_isSet = false;
m_cq_dam_missingmetadata_notification_recipient_isSet = false;
}
void
OAIComDayCqDamCoreImplMissingMetadataNotificationJobProperties::fromJson(QString jsonString) {
QByteArray array (jsonString.toStdString().c_str());
QJsonDocument doc = QJsonDocument::fromJson(array);
QJsonObject jsonObject = doc.object();
this->fromJsonObject(jsonObject);
}
void
OAIComDayCqDamCoreImplMissingMetadataNotificationJobProperties::fromJsonObject(QJsonObject json) {
::OpenAPI::fromJsonValue(cq_dam_missingmetadata_notification_scheduler_istimebased, json[QString("cq.dam.missingmetadata.notification.scheduler.istimebased")]);
::OpenAPI::fromJsonValue(cq_dam_missingmetadata_notification_scheduler_timebased_rule, json[QString("cq.dam.missingmetadata.notification.scheduler.timebased.rule")]);
::OpenAPI::fromJsonValue(cq_dam_missingmetadata_notification_scheduler_period_rule, json[QString("cq.dam.missingmetadata.notification.scheduler.period.rule")]);
::OpenAPI::fromJsonValue(cq_dam_missingmetadata_notification_recipient, json[QString("cq.dam.missingmetadata.notification.recipient")]);
}
QString
OAIComDayCqDamCoreImplMissingMetadataNotificationJobProperties::asJson () const {
QJsonObject obj = this->asJsonObject();
QJsonDocument doc(obj);
QByteArray bytes = doc.toJson();
return QString(bytes);
}
QJsonObject
OAIComDayCqDamCoreImplMissingMetadataNotificationJobProperties::asJsonObject() const {
QJsonObject obj;
if(cq_dam_missingmetadata_notification_scheduler_istimebased.isSet()){
obj.insert(QString("cq.dam.missingmetadata.notification.scheduler.istimebased"), ::OpenAPI::toJsonValue(cq_dam_missingmetadata_notification_scheduler_istimebased));
}
if(cq_dam_missingmetadata_notification_scheduler_timebased_rule.isSet()){
obj.insert(QString("cq.dam.missingmetadata.notification.scheduler.timebased.rule"), ::OpenAPI::toJsonValue(cq_dam_missingmetadata_notification_scheduler_timebased_rule));
}
if(cq_dam_missingmetadata_notification_scheduler_period_rule.isSet()){
obj.insert(QString("cq.dam.missingmetadata.notification.scheduler.period.rule"), ::OpenAPI::toJsonValue(cq_dam_missingmetadata_notification_scheduler_period_rule));
}
if(cq_dam_missingmetadata_notification_recipient.isSet()){
obj.insert(QString("cq.dam.missingmetadata.notification.recipient"), ::OpenAPI::toJsonValue(cq_dam_missingmetadata_notification_recipient));
}
return obj;
}
OAIConfigNodePropertyBoolean
OAIComDayCqDamCoreImplMissingMetadataNotificationJobProperties::getCqDamMissingmetadataNotificationSchedulerIstimebased() const {
return cq_dam_missingmetadata_notification_scheduler_istimebased;
}
void
OAIComDayCqDamCoreImplMissingMetadataNotificationJobProperties::setCqDamMissingmetadataNotificationSchedulerIstimebased(const OAIConfigNodePropertyBoolean &cq_dam_missingmetadata_notification_scheduler_istimebased) {
this->cq_dam_missingmetadata_notification_scheduler_istimebased = cq_dam_missingmetadata_notification_scheduler_istimebased;
this->m_cq_dam_missingmetadata_notification_scheduler_istimebased_isSet = true;
}
OAIConfigNodePropertyString
OAIComDayCqDamCoreImplMissingMetadataNotificationJobProperties::getCqDamMissingmetadataNotificationSchedulerTimebasedRule() const {
return cq_dam_missingmetadata_notification_scheduler_timebased_rule;
}
void
OAIComDayCqDamCoreImplMissingMetadataNotificationJobProperties::setCqDamMissingmetadataNotificationSchedulerTimebasedRule(const OAIConfigNodePropertyString &cq_dam_missingmetadata_notification_scheduler_timebased_rule) {
this->cq_dam_missingmetadata_notification_scheduler_timebased_rule = cq_dam_missingmetadata_notification_scheduler_timebased_rule;
this->m_cq_dam_missingmetadata_notification_scheduler_timebased_rule_isSet = true;
}
OAIConfigNodePropertyInteger
OAIComDayCqDamCoreImplMissingMetadataNotificationJobProperties::getCqDamMissingmetadataNotificationSchedulerPeriodRule() const {
return cq_dam_missingmetadata_notification_scheduler_period_rule;
}
void
OAIComDayCqDamCoreImplMissingMetadataNotificationJobProperties::setCqDamMissingmetadataNotificationSchedulerPeriodRule(const OAIConfigNodePropertyInteger &cq_dam_missingmetadata_notification_scheduler_period_rule) {
this->cq_dam_missingmetadata_notification_scheduler_period_rule = cq_dam_missingmetadata_notification_scheduler_period_rule;
this->m_cq_dam_missingmetadata_notification_scheduler_period_rule_isSet = true;
}
OAIConfigNodePropertyString
OAIComDayCqDamCoreImplMissingMetadataNotificationJobProperties::getCqDamMissingmetadataNotificationRecipient() const {
return cq_dam_missingmetadata_notification_recipient;
}
void
OAIComDayCqDamCoreImplMissingMetadataNotificationJobProperties::setCqDamMissingmetadataNotificationRecipient(const OAIConfigNodePropertyString &cq_dam_missingmetadata_notification_recipient) {
this->cq_dam_missingmetadata_notification_recipient = cq_dam_missingmetadata_notification_recipient;
this->m_cq_dam_missingmetadata_notification_recipient_isSet = true;
}
bool
OAIComDayCqDamCoreImplMissingMetadataNotificationJobProperties::isSet() const {
bool isObjectUpdated = false;
do{
if(cq_dam_missingmetadata_notification_scheduler_istimebased.isSet()){ isObjectUpdated = true; break;}
if(cq_dam_missingmetadata_notification_scheduler_timebased_rule.isSet()){ isObjectUpdated = true; break;}
if(cq_dam_missingmetadata_notification_scheduler_period_rule.isSet()){ isObjectUpdated = true; break;}
if(cq_dam_missingmetadata_notification_recipient.isSet()){ isObjectUpdated = true; break;}
}while(false);
return isObjectUpdated;
}
}
| [
"cliffano@gmail.com"
] | cliffano@gmail.com |
f040bdc2c069ca4cc0d84232222290bc134f6903 | 1d9f2414d01411f266e95278d2359ca14926278f | /RTLinuxServer/LynxTrig/Matlab/SoundTrigClient/SoundTrigClient.cpp | c15593b123712467089b67ba62630746cfa4ccbe | [] | no_license | Brody-Lab/ExperPort_public | 5ad43574e03d0a69b6ed0e51262233dc1c06e8a2 | 1946652cb8a11c145b20209a8009771d0d2e6fca | refs/heads/master | 2023-05-13T02:43:26.719484 | 2021-06-03T03:29:51 | 2021-06-03T03:29:51 | 373,368,405 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,884 | cpp |
#include <math.h>
#include <string>
#include <string.h>
#include <mex.h>
#include <matrix.h>
#include <limits>
#include <map>
#include "NetClient.h"
typedef std::map<int, NetClient *> NetClientMap;
typedef signed int int32;
typedef unsigned int uint32;
typedef signed short int16;
typedef unsigned short uint16;
typedef signed char int8;
typedef unsigned char uint8;
#ifndef WIN32
#define strcmpi strcasecmp
#endif
static NetClientMap clientMap;
static int handleId = 0; // keeps getting incremented..
static NetClient * MapFind(int handle)
{
NetClientMap::iterator it = clientMap.find(handle);
if (it == clientMap.end()) return NULL;
return it->second;
}
static void MapPut(int handle, NetClient *client)
{
NetClient *old = MapFind(handle);
if (old) delete old; // ergh.. this shouldn't happen but.. oh well.
clientMap[handle] = client;
}
static void MapDestroy(int handle)
{
NetClientMap::iterator it = clientMap.find(handle);
if (it != clientMap.end()) {
delete it->second;
clientMap.erase(it);
} else {
mexWarnMsgTxt("Invalid or unknown handle passed to SoundTrigClient MapDestroy!");
}
}
static int GetHandle(int nrhs, const mxArray *prhs[])
{
if (nrhs < 1)
mexErrMsgTxt("Need numeric handle argument!");
const mxArray *handle = prhs[0];
if ( !mxIsDouble(handle) || mxGetM(handle) != 1 || mxGetN(handle) != 1)
mexErrMsgTxt("Handle must be a single double value.");
return static_cast<int>(*mxGetPr(handle));
}
static NetClient * GetNetClient(int nrhs, const mxArray *prhs[])
{
int handle = GetHandle(nrhs, prhs);
NetClient *nc = MapFind(handle);
if (!nc) mexErrMsgTxt("INTERNAL ERROR -- Cannot find the NetClient for the specified handle in SoundTrigClient!");
return nc;
}
#define RETURN(x) do { (plhs[0] = mxCreateDoubleScalar(static_cast<double>(x))); return; } while (0)
#define RETURN_NULL() do { (plhs[0] = mxCreateDoubleMatrix(0, 0, mxREAL)); return; } while(0)
void createNewClient(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
{
if (nlhs != 1) mexErrMsgTxt("Cannot create a client since no output (lhs) arguments were specified!");
if (nrhs != 2) mexErrMsgTxt("Need two input arguments: Host, port!");
const mxArray *host = prhs[0], *port = prhs[1];
if ( !mxIsChar(host) || mxGetM(host) != 1 ) mexErrMsgTxt("Hostname must be a string row vector!");
if ( !mxIsDouble(port) || mxGetM(port) != 1 || mxGetN(port) != 1) mexErrMsgTxt("Port must be a single numeric value.");
char *hostStr = mxArrayToString(host);
unsigned short portNum = static_cast<unsigned short>(*mxGetPr(port));
NetClient *nc = new NetClient(hostStr, portNum);
mxFree(hostStr);
nc->setSocketOption(Socket::TCPNoDelay, true);
int h = handleId++;
MapPut(h, nc);
RETURN(h);
}
void destroyClient(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
{
MapDestroy(GetHandle(nrhs, prhs));
RETURN(1);
}
void tryConnection(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
{
NetClient *nc = GetNetClient(nrhs, prhs);
//if(nlhs < 1) mexErrMsgTxt("One output argument required.");
bool ok = false;
try {
ok = nc->connect();
} catch (const SocketException & e) {
mexWarnMsgTxt(e.why().c_str());
RETURN_NULL();
}
if (!ok) {
mexWarnMsgTxt(nc->errorReason().c_str());
RETURN_NULL();
}
RETURN(1);
}
void closeSocket(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
{
NetClient *nc = GetNetClient(nrhs, prhs);
nc->disconnect();
RETURN(1);
}
void sendString(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
{
NetClient *nc = GetNetClient(nrhs, prhs);
if(nrhs != 2) mexErrMsgTxt("Two arguments required: handle, string.");
//if(nlhs < 1) mexErrMsgTxt("One output argument required.");
if(mxGetClassID(prhs[1]) != mxCHAR_CLASS)
mexErrMsgTxt("Argument 2 must be a string.");
char *tmp = mxArrayToString(prhs[1]);
std::string theString (tmp);
mxFree(tmp);
try {
nc->sendString(theString);
} catch (const SocketException & e) {
mexWarnMsgTxt(e.why().c_str());
RETURN_NULL();
}
RETURN(1);
}
void sendMatrix(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
{
NetClient *nc = GetNetClient(nrhs, prhs);
if(nrhs != 2) mexErrMsgTxt("Two arguments required: handle, matrix.");
//if(nlhs < 1) mexErrMsgTxt("One output argument required.");
if(mxGetClassID(prhs[0]) != mxDOUBLE_CLASS)
mexErrMsgTxt("Argument 2 must be a matrix of doubles.");
double *theMatrix = mxGetPr(prhs[1]);
int msglen = mxGetN(prhs[1]) * mxGetM(prhs[1]) * sizeof(double);
try {
nc->sendData(theMatrix, msglen);
} catch (const SocketException & e) {
mexWarnMsgTxt(e.why().c_str());
RETURN_NULL();
}
RETURN(1);
}
void sendInt32Matrix(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
{
NetClient *nc = GetNetClient(nrhs, prhs);
if(nrhs != 2) mexErrMsgTxt("Two arguments required: handle, vector.");
if(mxGetClassID(prhs[0]) != mxDOUBLE_CLASS)
mexErrMsgTxt("Argument 2 must be a 1x1 scalar of doubles.");
if(mxGetClassID(prhs[1]) != mxINT32_CLASS)
mexErrMsgTxt("Argument 3 must be a matrix of int32s.");
int32 *theInts = reinterpret_cast<int32 *>(mxGetData(prhs[1]));
int msglen = mxGetN(prhs[1]) * mxGetM(prhs[1]) * sizeof(int32);
try {
nc->sendData(theInts, msglen);
} catch (const SocketException & e) {
mexWarnMsgTxt(e.why().c_str());
RETURN_NULL();
}
RETURN(1);
}
void readString(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
{
//if(nlhs < 1) mexErrMsgTxt("One output argument required.");
NetClient *nc = GetNetClient(nrhs, prhs);
try {
std::string theString ( nc->receiveString() );
plhs[0] = mxCreateString(theString.c_str());
} catch (const SocketException & e) {
mexWarnMsgTxt(e.why().c_str());
RETURN_NULL(); // note empty return..
}
}
void readLines(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
{
//if(nlhs < 1) mexErrMsgTxt("One output argument required.");
NetClient *nc = GetNetClient(nrhs, prhs);
try {
char **lines = nc->receiveLines();
int m;
for (m = 0; lines[m]; m++) {} // count number of lines
plhs[0] = mxCreateCharMatrixFromStrings(m, const_cast<const char **>(lines));
NetClient::deleteReceivedLines(lines);
} catch (const SocketException &e) {
mexWarnMsgTxt(e.why().c_str());
RETURN_NULL(); // empty return set
}
}
void readMatrix(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
{
NetClient *nc = GetNetClient(nrhs, prhs);
if(nrhs != 3 || !mxIsDouble(prhs[1]) || !mxIsDouble(prhs[2]) ) mexErrMsgTxt("Output matrix size M,N as 2 real arguments are required.");
//if(nlhs < 1) mexErrMsgTxt("One output argument required.");
int m = static_cast<int>(*mxGetPr(prhs[1])),
n = static_cast<int>(*mxGetPr(prhs[2]));
int dataLen = m*n*sizeof(double);
plhs[0] = mxCreateDoubleMatrix(m, n, mxREAL);
try {
nc->receiveData(mxGetPr(plhs[0]), dataLen, true);
} catch (const SocketException & e) {
mexWarnMsgTxt(e.why().c_str());
mxDestroyArray(plhs[0]);
plhs[0] = 0; // nullify (empty) return..
RETURN_NULL();
}
}
void readInt32Matrix(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
{
NetClient *nc = GetNetClient(nrhs, prhs);
if(nrhs != 3 || !mxIsDouble(prhs[1]) || !mxIsDouble(prhs[2]) ) mexErrMsgTxt("Output matrix size M, N as 2 real argument are required.");
//if(nlhs < 1) mexErrMsgTxt("One output argument required.");
const int m = static_cast<int>(*mxGetPr(prhs[1])),
n = static_cast<int>(*mxGetPr(prhs[2]));
const int dataLen = m*n*sizeof(int32);
const int dims[] = { m, n };
plhs[0] = mxCreateNumericArray(2, dims, mxINT32_CLASS, mxREAL);
try {
nc->receiveData(mxGetData(plhs[0]), dataLen, true);
} catch (const SocketException & e) {
mexWarnMsgTxt(e.why().c_str());
mxDestroyArray(plhs[0]);
plhs[0] = 0; // nullify (empty) return..
RETURN_NULL();
}
}
class GenericMatrix
{
public:
GenericMatrix(void *ptr, unsigned elem_size, unsigned m, unsigned n)
: p(reinterpret_cast<char *>(ptr)), p_ret(p), elem_size(elem_size), m(m), n(n),
first_index(-1) {}
GenericMatrix & operator[](int i);
operator void *() { return p_ret; }
GenericMatrix & operator=(void *in);
private:
char *p, *p_ret;
unsigned elem_size, m, n;
int first_index;
GenericMatrix(const GenericMatrix &) {}
GenericMatrix & operator=(const GenericMatrix &) { return *this; }
};
GenericMatrix & GenericMatrix::operator=(void *in)
{ memcpy(p_ret, in, elem_size); return *this; }
GenericMatrix & GenericMatrix::operator[](int i)
{
if ( first_index >= 0 ) {
p_ret += i*elem_size;
first_index = -1;
} else {
first_index = i;
p_ret = p + n*elem_size*first_index;
}
return *this;
}
// returns a 1x(m*n) vector that is an interleaving of the rows of the input matrix.. useful for sending 2-channel sound files as 1 interleaved channel to the sound server...
void interleaveMatrix(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
{
const mxArray *inArray;
if(nrhs != 1 || !prhs || !(inArray = *prhs) || !mxIsNumeric(inArray) || mxIsSparse(inArray))
mexErrMsgTxt("Input matrix must be a non-sparse numeric array!");
//if(nlhs < 1) mexErrMsgTxt("One output argument required.");
mxArray * & outArray = plhs[0];
const int m = mxGetM(inArray),
n = mxGetN(inArray);
const int dims[] = { 1, m*n };
outArray = mxCreateNumericArray(2, dims, mxGetClassID(inArray), mxREAL);
const unsigned elem_size = mxGetElementSize(inArray);
/* GenericMatrix
in(mxGetData(inArray), elem_size, m, n),
out(mxGetData(outArray), elem_size, 1, m*n);
for (int i = 0; i < m; ++i)
for (int j = 0; j < n; j++)
out[0][i*n + j] = static_cast<void *>( in[i][j] );*/
// NB: you can just do a memcpy since all matrices are stored in column-major order anyway..
::memcpy(mxGetData(outArray), mxGetData(inArray), elem_size*m*n);
}
// returns a matrix that is the int32 conversion of the input matrix. This should be faster than the matlab internal int32, right?
// Note: this scales input doubles from -1 -> 1 over MIN_INT to MAX_INT
void toInt32(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
{
const mxArray *inArray;
if(nrhs != 1 || !prhs || !(inArray = *prhs) || !mxIsNumeric(inArray) || mxIsSparse(inArray))
mexErrMsgTxt("Input matrix must be a non-sparse numeric array!");
//if(nlhs < 1) mexErrMsgTxt("One output argument required.");
mxArray * & outArray = plhs[0];
const int m = mxGetM(inArray),
n = mxGetN(inArray);
const int dims[] = { m, n };
outArray = mxCreateNumericArray(2, dims, mxINT32_CLASS, mxREAL);
const unsigned elem_size = mxGetElementSize(inArray);
GenericMatrix
in(mxGetData(inArray), elem_size, m, n),
out(mxGetData(outArray), mxGetElementSize(outArray), m, n);
int class_id = mxGetClassID(inArray);
for (int i = 0; i < m; ++i) {
for (int j = 0; j < n; j++) {
void *inptr = static_cast<void *>( in[i][j] );
int32 & outval = *reinterpret_cast<int32 *>(static_cast<void *>(out[i][j]));
switch(class_id) {
case mxINT8_CLASS:
outval = *reinterpret_cast<int8 *>(inptr);
break;
case mxUINT8_CLASS:
outval = *reinterpret_cast<uint8 *>(inptr);
break;
case mxINT16_CLASS:
outval = *reinterpret_cast<int16 *>(inptr);
break;
case mxUINT16_CLASS:
outval = *reinterpret_cast<uint16 *>(inptr);
break;
case mxINT32_CLASS:
outval = *reinterpret_cast<int32 *>(inptr);
break;
case mxUINT32_CLASS:
outval = *reinterpret_cast<uint32 *>(inptr);
break;
default: /* assume double.. */
outval = static_cast<int32>(*reinterpret_cast<double *>(inptr) * std::numeric_limits<int32>::max());
break;
}
}
}
}
struct CommandFunctions
{
const char *name;
void (*func)(int, mxArray **, int, const mxArray **);
};
static struct CommandFunctions functions[] =
{
{ "create", createNewClient },
{ "destroy", destroyClient },
{ "connect", tryConnection },
{ "disconnect", closeSocket },
{ "sendString", sendString },
{ "sendMatrix", sendMatrix },
{ "sendInt32Matrix", sendInt32Matrix },
{ "readString", readString },
{ "readLines", readLines},
{ "readMatrix", readMatrix },
{ "readInt32Matrix", readInt32Matrix },
{ "interleaveMatrix", interleaveMatrix },
{ "interlaceMatrix", interleaveMatrix },
{ "flattenMatrix", interleaveMatrix },
{ "toInt32", toInt32 }
};
static const int n_functions = sizeof(functions)/sizeof(struct CommandFunctions);
void mexFunction( int nlhs, mxArray *plhs[],
int nrhs, const mxArray *prhs[])
{
const mxArray *cmd;
int i;
std::string cmdname;
/* Check for proper number of arguments. */
if(nrhs < 2)
mexErrMsgTxt("At least two input arguments are required.");
else
cmd = prhs[0];
if(!mxIsChar(cmd)) mexErrMsgTxt("COMMAND argument must be a string.");
if(mxGetM(cmd) != 1) mexErrMsgTxt("COMMAND argument must be a row vector.");
char *tmp = mxArrayToString(cmd);
cmdname = tmp;
mxFree(tmp);
for (i = 0; i < n_functions; ++i) {
// try and match cmdname to a command we know about
if (::strcmpi(functions[i].name, cmdname.c_str()) == 0 ) {
// a match.., call function for the command, popping off first prhs
functions[i].func(nlhs, plhs, nrhs-1, prhs+1); // call function by function pointer...
break;
}
}
if (i == n_functions) { // cmdname didn't match anything we know about
std::string errString = "Unrecognized SoundTrigClient command. Must be one of: ";
for (int i = 0; i < n_functions; ++i)
errString += std::string(i ? ", " : "") + functions[i].name;
mexErrMsgTxt(errString.c_str());
}
}
| [
"ckopec@princeton.edu"
] | ckopec@princeton.edu |
549283428939f0a6a4bea14766a602e71e13b375 | 2a5388a1b0219f0e962bd95791e09ec2e2e24735 | /src/tool param bar widget.hpp | 62df5fe09abf47dde85c6ed2ffd939c4ea0a94fa | [] | no_license | nguyenvuducthuy/Animera | 2c3b175c2e63543fbc0e94e94a277e445f5dcb42 | 8c860b347f2f38f5658ebcf5ad9a25639ec6402f | refs/heads/master | 2020-09-30T18:21:11.327950 | 2019-12-11T08:30:30 | 2019-12-11T08:30:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 361 | hpp | //
// tool param bar widget.hpp
// Animera
//
// Created by Indi Kernick on 8/12/19.
// Copyright © 2019 Indi Kernick. All rights reserved.
//
#ifndef tool_param_bar_widget_hpp
#define tool_param_bar_widget_hpp
#include <QtWidgets/qwidget.h>
class ToolParamBarWidget final : public QWidget {
public:
explicit ToolParamBarWidget(QWidget *);
};
#endif
| [
"kerndog73@gmail.com"
] | kerndog73@gmail.com |
0de2404fc0e3205111821be07cf86cb535ab43e8 | 9d496bdd7a9f0eb0f520b9ca584ff19b1a12d6c4 | /Plugins/src_VCPP/IgnoreFieldsTab/IgnoreFieldsTab.cpp | 15b309001d1761b5e9da460dd0f17cd17b6e329e | [] | no_license | lulichn/wimmerge | 6923ddc7e420a3a77b311e4ead6d1d084ca28bd7 | bd1d9c416e2ed5779bf5ebf86112c4f74b2597f5 | refs/heads/master | 2021-01-10T07:38:44.247445 | 2015-10-14T01:32:55 | 2015-10-14T01:32:55 | 44,162,868 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,018 | cpp | // IgnoreFieldsTab.cpp : Implementation of DLL Exports.
// Note: Proxy/Stub Information
// To build a separate proxy/stub DLL,
// run nmake -f IgnoreFieldsTabps.mk in the project directory.
#include "stdafx.h"
#include "resource.h"
#include <initguid.h>
#include "IgnoreFieldsTab.h"
#include "IgnoreFieldsTab_i.c"
#include "WinMergeScript.h"
CComModule _Module;
BEGIN_OBJECT_MAP(ObjectMap)
OBJECT_ENTRY(CLSID_WinMergeScript, CWinMergeScript)
END_OBJECT_MAP()
/////////////////////////////////////////////////////////////////////////////
// DLL Entry Point
extern "C"
BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID /*lpReserved*/)
{
if (dwReason == DLL_PROCESS_ATTACH)
{
_Module.Init(ObjectMap, hInstance, &LIBID_IgnoreFieldsTabLib);
DisableThreadLibraryCalls(hInstance);
}
else if (dwReason == DLL_PROCESS_DETACH)
_Module.Term();
return TRUE; // ok
}
/////////////////////////////////////////////////////////////////////////////
// Used to determine whether the DLL can be unloaded by OLE
STDAPI DllCanUnloadNow(void)
{
return (_Module.GetLockCount()==0) ? S_OK : S_FALSE;
}
/////////////////////////////////////////////////////////////////////////////
// Returns a class factory to create an object of the requested type
STDAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID* ppv)
{
return _Module.GetClassObject(rclsid, riid, ppv);
}
/////////////////////////////////////////////////////////////////////////////
// DllRegisterServer - Adds entries to the system registry
STDAPI DllRegisterServer(void)
{
// registers object, typelib and all interfaces in typelib
return _Module.RegisterServer(TRUE);
}
/////////////////////////////////////////////////////////////////////////////
// DllUnregisterServer - Removes entries from the system registry
STDAPI DllUnregisterServer(void)
{
return _Module.UnregisterServer(TRUE);
}
| [
"d.higashi@atomitech.jp"
] | d.higashi@atomitech.jp |
c4176da77ebab08ed21a82a6f06da7ee484d2d65 | 679c7f96c27bc17ba3ce7176e3019ca99038acbb | /CvGameCoreDLL/CyGlobalContext.cpp | 44a6ba0066d9552faac45239b6078c5880088e22 | [] | no_license | f1rpo/RoM-AND | 61e3541940f09b2b9c3c6d4302f1338d9a86b1bc | 5077b32403fad41240ce3f9f9dc3bb475eb454b0 | refs/heads/master | 2021-07-18T05:36:58.298487 | 2021-02-06T14:56:22 | 2021-02-06T15:04:03 | 237,295,618 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 21,965 | cpp | //
// Python wrapper class for global vars and fxns
// Author - Mustafa Thamer
//
#include "CvGameCoreDLL.h"
#include "CyGlobalContext.h"
#include "CyGame.h"
#include "CyPlayer.h"
#include "CyMap.h"
#include "CvGlobals.h"
#include "CvPlayerAI.h"
#include "CvGameAI.h"
//#include "CvStructs.h"
#include "CvInfos.h"
#include "CyTeam.h"
#include "CvTeamAI.h"
#include "CyArtFileMgr.h"
CyGlobalContext::CyGlobalContext()
{
}
CyGlobalContext::~CyGlobalContext()
{
}
CyGlobalContext& CyGlobalContext::getInstance()
{
static CyGlobalContext globalContext;
return globalContext;
}
bool CyGlobalContext::isDebugBuild() const
{
#ifdef _DEBUG
return true;
#else
return false;
#endif
}
CyGame* CyGlobalContext::getCyGame() const
{
static CyGame cyGame(&GC.getGameINLINE());
return &cyGame;
}
CyMap* CyGlobalContext::getCyMap() const
{
static CyMap cyMap(&GC.getMapINLINE());
return &cyMap;
}
/*********************************/
/***** Parallel Maps - Begin *****/
/*********************************/
void CyGlobalContext::switchMap(int iMap)
{
GC.switchMap((MapTypes)iMap);
}
int CyGlobalContext::getNumMapInfos() const
{
return GC.getNumMapInfos();
}
CvMapInfo* CyGlobalContext::getMapInfo(int iMap) const
{
return &(GC.getMapInfo((MapTypes)iMap));
}
int CyGlobalContext::getNumMapSwitchInfos() const
{
return GC.getNumMapSwitchInfos();
}
CvMapSwitchInfo* CyGlobalContext::getMapSwitchInfo(int iMapSwitch) const
{
return &(GC.getMapSwitchInfo((MapSwitchTypes)iMapSwitch));
}
CyMap* CyGlobalContext::getMapByIndex(int iIndex)
{
static CyMap cyMap;
cyMap = GC.getMapByIndex((MapTypes)iIndex);
return &cyMap;
}
void CyGlobalContext::initializeMap(int iMap)
{
return GC.initializeMap((MapTypes)iMap);
}
/*******************************/
/***** Parallel Maps - End *****/
/*******************************/
void CyGlobalContext::setIsInPedia(bool isInPedia)
{
GC.setIsInPedia(isInPedia);
}
CyPlayer* CyGlobalContext::getCyPlayer(int idx)
{
static CyPlayer cyPlayers[MAX_PLAYERS];
static bool bInit=false;
if (!bInit)
{
int i;
for(i=0;i<MAX_PLAYERS;i++)
cyPlayers[i]=CyPlayer(&GET_PLAYER((PlayerTypes)i));
bInit=true;
}
FAssert(idx>=0);
FAssert(idx<MAX_PLAYERS);
return idx < MAX_PLAYERS && idx != NO_PLAYER ? &cyPlayers[idx] : NULL;
}
CyPlayer* CyGlobalContext::getCyActivePlayer()
{
PlayerTypes pt = GC.getGameINLINE().getActivePlayer();
return pt != NO_PLAYER ? getCyPlayer(pt) : NULL;
}
CvRandom& CyGlobalContext::getCyASyncRand() const
{
return GC.getASyncRand();
}
CyTeam* CyGlobalContext::getCyTeam(int i)
{
static CyTeam cyTeams[MAX_TEAMS];
static bool bInit=false;
if (!bInit)
{
int j;
for(j=0;j<MAX_TEAMS;j++)
{
cyTeams[j]=CyTeam(&GET_TEAM((TeamTypes)j));
}
bInit = true;
}
return i<MAX_TEAMS ? &cyTeams[i] : NULL;
}
CvEffectInfo* CyGlobalContext::getEffectInfo(int /*EffectTypes*/ i) const
{
return (i>=0 && i<GC.getNumEffectInfos()) ? &GC.getEffectInfo((EffectTypes) i) : NULL;
}
CvTerrainInfo* CyGlobalContext::getTerrainInfo(int /*TerrainTypes*/ i) const
{
return (i>=0 && i<GC.getNumTerrainInfos()) ? &GC.getTerrainInfo((TerrainTypes) i) : NULL;
}
CvBonusClassInfo* CyGlobalContext::getBonusClassInfo(int /*BonusClassTypes*/ i) const
{
return (i > 0 && i < GC.getNumBonusClassInfos() ? &GC.getBonusClassInfo((BonusClassTypes) i) : NULL);
}
CvBonusInfo* CyGlobalContext::getBonusInfo(int /*(BonusTypes)*/ i) const
{
return (i>=0 && i<GC.getNumBonusInfos()) ? &GC.getBonusInfo((BonusTypes) i) : NULL;
}
CvFeatureInfo* CyGlobalContext::getFeatureInfo(int i) const
{
return (i>=0 && i<GC.getNumFeatureInfos()) ? &GC.getFeatureInfo((FeatureTypes) i) : NULL;
}
CvCivilizationInfo* CyGlobalContext::getCivilizationInfo(int i) const
{
return (i>=0 && i<GC.getNumCivilizationInfos()) ? &GC.getCivilizationInfo((CivilizationTypes) i) : NULL;
}
CvLeaderHeadInfo* CyGlobalContext::getLeaderHeadInfo(int i) const
{
return (i>=0 && i<GC.getNumLeaderHeadInfos()) ? &GC.getLeaderHeadInfo((LeaderHeadTypes) i) : NULL;
}
CvTraitInfo* CyGlobalContext::getTraitInfo(int i) const
{
return (i>=0 && i<GC.getNumTraitInfos()) ? &GC.getTraitInfo((TraitTypes) i) : NULL;
}
CvUnitInfo* CyGlobalContext::getUnitInfo(int i) const
{
return (i>=0 && i<GC.getNumUnitInfos()) ? &GC.getUnitInfo((UnitTypes) i) : NULL;
}
CvSpecialUnitInfo* CyGlobalContext::getSpecialUnitInfo(int i) const
{
return (i>=0 && i<GC.getNumSpecialUnitInfos()) ? &GC.getSpecialUnitInfo((SpecialUnitTypes) i) : NULL;
}
CvYieldInfo* CyGlobalContext::getYieldInfo(int i) const
{
return (i>=0 && i<NUM_YIELD_TYPES) ? &GC.getYieldInfo((YieldTypes) i) : NULL;
}
CvCommerceInfo* CyGlobalContext::getCommerceInfo(int i) const
{
if (GC.getCommerceInfo().size() == 0) return NULL;
return (i>=0 && i<NUM_COMMERCE_TYPES) ? &GC.getCommerceInfo((CommerceTypes) i) : NULL;
}
CvRouteInfo* CyGlobalContext::getRouteInfo(int i) const
{
return (i>=0 && i<GC.getNumRouteInfos()) ? &GC.getRouteInfo((RouteTypes) i) : NULL;
}
CvImprovementInfo* CyGlobalContext::getImprovementInfo(int i) const
{
return (i>=0 && i<GC.getNumImprovementInfos()) ? &GC.getImprovementInfo((ImprovementTypes) i) : NULL;
}
CvGoodyInfo* CyGlobalContext::getGoodyInfo(int i) const
{
return (i>=0 && i<GC.getNumGoodyInfos()) ? &GC.getGoodyInfo((GoodyTypes) i) : NULL;
}
CvBuildInfo* CyGlobalContext::getBuildInfo(int i) const
{
return (i>=0 && i<GC.getNumBuildInfos()) ? &GC.getBuildInfo((BuildTypes) i) : NULL;
}
CvHandicapInfo* CyGlobalContext::getHandicapInfo(int i) const
{
return (i>=0 && i<GC.getNumHandicapInfos()) ? &GC.getHandicapInfo((HandicapTypes) i) : NULL;
}
CvBuildingClassInfo* CyGlobalContext::getBuildingClassInfo(int i) const
{
return (i>=0 && i<GC.getNumBuildingClassInfos()) ? &GC.getBuildingClassInfo((BuildingClassTypes) i) : NULL;
}
CvBuildingInfo* CyGlobalContext::getBuildingInfo(int i) const
{
return (i>=0 && i<GC.getNumBuildingInfos()) ? &GC.getBuildingInfo((BuildingTypes) i) : NULL;
}
CvUnitClassInfo* CyGlobalContext::getUnitClassInfo(int i) const
{
return (i>=0 && i<GC.getNumUnitClassInfos()) ? &GC.getUnitClassInfo((UnitClassTypes) i) : NULL;
}
CvInfoBase* CyGlobalContext::getUnitCombatInfo(int i) const
{
return (i>=0 && i<GC.getNumUnitCombatInfos()) ? &GC.getUnitCombatInfo((UnitCombatTypes)i) : NULL;
}
CvInfoBase* CyGlobalContext::getDomainInfo(int i) const
{
return (i>=0 && i<NUM_DOMAIN_TYPES) ? &GC.getDomainInfo((DomainTypes)i) : NULL;
}
CvActionInfo* CyGlobalContext::getActionInfo(int i) const
{
return (i>=0 && i<GC.getNumActionInfos()) ? &GC.getActionInfo(i) : NULL;
}
CvAutomateInfo* CyGlobalContext::getAutomateInfo(int i) const
{
return (i>=0 && i<GC.getNumAutomateInfos()) ? &GC.getAutomateInfo(i) : NULL;
}
CvCommandInfo* CyGlobalContext::getCommandInfo(int i) const
{
return (i>=0 && i<NUM_COMMAND_TYPES) ? &GC.getCommandInfo((CommandTypes)i) : NULL;
}
CvControlInfo* CyGlobalContext::getControlInfo(int i) const
{
return (i>=0 && i<NUM_CONTROL_TYPES) ? &GC.getControlInfo((ControlTypes)i) : NULL;
}
CvMissionInfo* CyGlobalContext::getMissionInfo(int i) const
{
return (i>=0 && i<NUM_MISSION_TYPES) ? &GC.getMissionInfo((MissionTypes) i) : NULL;
}
CvPromotionInfo* CyGlobalContext::getPromotionInfo(int i) const
{
return (i>=0 && i<GC.getNumPromotionInfos()) ? &GC.getPromotionInfo((PromotionTypes) i) : NULL;
}
CvTechInfo* CyGlobalContext::getTechInfo(int i) const
{
return (i>=0 && i<GC.getNumTechInfos()) ? &GC.getTechInfo((TechTypes) i) : NULL;
}
CvSpecialBuildingInfo* CyGlobalContext::getSpecialBuildingInfo(int i) const
{
return (i>=0 && i<GC.getNumSpecialBuildingInfos()) ? &GC.getSpecialBuildingInfo((SpecialBuildingTypes) i) : NULL;
}
CvReligionInfo* CyGlobalContext::getReligionInfo(int i) const
{
return (i>=0 && i<GC.getNumReligionInfos()) ? &GC.getReligionInfo((ReligionTypes) i) : NULL;
}
CvCorporationInfo* CyGlobalContext::getCorporationInfo(int i) const
{
return (i>=0 && i<GC.getNumCorporationInfos()) ? &GC.getCorporationInfo((CorporationTypes) i) : NULL;
}
CvSpecialistInfo* CyGlobalContext::getSpecialistInfo(int i) const
{
return (i>=0 && i<GC.getNumSpecialistInfos()) ? &GC.getSpecialistInfo((SpecialistTypes) i) : NULL;
}
CvCivicOptionInfo* CyGlobalContext::getCivicOptionInfo(int i) const
{
return (i>=0 && i<GC.getNumCivicOptionInfos()) ? &GC.getCivicOptionInfo((CivicOptionTypes) i) : NULL;
}
CvCivicInfo* CyGlobalContext::getCivicInfo(int i) const
{
return (i>=0 && i<GC.getNumCivicInfos()) ? &GC.getCivicInfo((CivicTypes) i) : NULL;
}
CvDiplomacyInfo* CyGlobalContext::getDiplomacyInfo(int i) const
{
return (i>=0 && i<GC.getNumDiplomacyInfos()) ? &GC.getDiplomacyInfo(i) : NULL;
}
CvHurryInfo* CyGlobalContext::getHurryInfo(int i) const
{
return (i>=0 && i<GC.getNumHurryInfos()) ? &GC.getHurryInfo((HurryTypes) i) : NULL;
}
CvProjectInfo* CyGlobalContext::getProjectInfo(int i) const
{
return (i>=0 && i<GC.getNumProjectInfos()) ? &GC.getProjectInfo((ProjectTypes) i) : NULL;
}
CvVoteInfo* CyGlobalContext::getVoteInfo(int i) const
{
return (i>=0 && i<GC.getNumVoteInfos()) ? &GC.getVoteInfo((VoteTypes) i) : NULL;
}
CvProcessInfo* CyGlobalContext::getProcessInfo(int i) const
{
return (i>=0 && i<GC.getNumProcessInfos()) ? &GC.getProcessInfo((ProcessTypes) i) : NULL;
}
CvAnimationPathInfo* CyGlobalContext::getAnimationPathInfo(int i) const
{
return (i>=0 && i<GC.getNumAnimationPathInfos()) ? &GC.getAnimationPathInfo((AnimationPathTypes)i) : NULL;
}
CvEmphasizeInfo* CyGlobalContext::getEmphasizeInfo(int i) const
{
return (i>=0 && i<GC.getNumEmphasizeInfos()) ? &GC.getEmphasizeInfo((EmphasizeTypes) i) : NULL;
}
CvCultureLevelInfo* CyGlobalContext::getCultureLevelInfo(int i) const
{
return (i>=0 && i<GC.getNumCultureLevelInfos()) ? &GC.getCultureLevelInfo((CultureLevelTypes) i) : NULL;
}
CvUpkeepInfo* CyGlobalContext::getUpkeepInfo(int i) const
{
return (i>=0 && i<GC.getNumUpkeepInfos()) ? &GC.getUpkeepInfo((UpkeepTypes) i) : NULL;
}
CvVictoryInfo* CyGlobalContext::getVictoryInfo(int i) const
{
return (i>=0 && i<GC.getNumVictoryInfos()) ? &GC.getVictoryInfo((VictoryTypes) i) : NULL;
}
CvEraInfo* CyGlobalContext::getEraInfo(int i) const
{
return (i>=0 && i<GC.getNumEraInfos()) ? &GC.getEraInfo((EraTypes) i) : NULL;
}
CvWorldInfo* CyGlobalContext::getWorldInfo(int i) const
{
return (i>=0 && i<GC.getNumWorldInfos()) ? &GC.getWorldInfo((WorldSizeTypes) i) : NULL;
}
CvClimateInfo* CyGlobalContext::getClimateInfo(int i) const
{
return (i>=0 && i<GC.getNumClimateInfos()) ? &GC.getClimateInfo((ClimateTypes) i) : NULL;
}
CvSeaLevelInfo* CyGlobalContext::getSeaLevelInfo(int i) const
{
return (i>=0 && i<GC.getNumSeaLevelInfos()) ? &GC.getSeaLevelInfo((SeaLevelTypes) i) : NULL;
}
CvInfoBase* CyGlobalContext::getUnitAIInfo(int i) const
{
return (i>=0 && i<NUM_UNITAI_TYPES) ? &GC.getUnitAIInfo((UnitAITypes)i) : NULL;
}
CvColorInfo* CyGlobalContext::getColorInfo(int i) const
{
return (i>=0 && i<GC.getNumColorInfos()) ? &GC.getColorInfo((ColorTypes)i) : NULL;
}
CvPropertyInfo* CyGlobalContext::getPropertyInfo(int i) const
{
return (i>=0 && i<GC.getNumPropertyInfos()) ? &GC.getPropertyInfo((PropertyTypes)i) : NULL;
}
int CyGlobalContext::getInfoTypeForString(const char* szInfoType) const
{
return GC.getInfoTypeForString(szInfoType, true);
}
/************************************************************************************************/
/* Afforess Start 03/18/10 */
/* */
/* */
/************************************************************************************************/
int CyGlobalContext::getInfoTypeForStringWithHiddenAssert(const char* szInfoType) const
{
return GC.getInfoTypeForString(szInfoType, true);
}
/************************************************************************************************/
/* Afforess END */
/************************************************************************************************/
int CyGlobalContext::getTypesEnum(const char* szType) const
{
return GC.getTypesEnum(szType);
}
CvPlayerColorInfo* CyGlobalContext::getPlayerColorInfo(int i) const
{
return (i>=0 && i<GC.getNumPlayerColorInfos()) ? &GC.getPlayerColorInfo((PlayerColorTypes)i) : NULL;
}
CvInfoBase* CyGlobalContext::getHints(int i) const
{
return ((i >= 0 && i < GC.getNumHints()) ? &GC.getHints(i) : NULL);
}
CvMainMenuInfo* CyGlobalContext::getMainMenus(int i) const
{
return ((i >= 0 && i < GC.getNumMainMenus()) ? &GC.getMainMenus(i) : NULL);
}
/************************************************************************************************/
/* MODULAR_LOADING_CONTROL 02/19/08 MRGENIE */
/* */
/* */
/************************************************************************************************/
// Python Modular Loading
CvPythonModulesInfo* CyGlobalContext::getPythonModulesInfo(int i) const
{
return ((i >= 0 && i < GC.getNumPythonModulesInfos()) ? &GC.getPythonModulesInfo(i) : NULL);
}
/************************************************************************************************/
/* MODULAR_LOADING_CONTROL END */
/************************************************************************************************/
CvVoteSourceInfo* CyGlobalContext::getVoteSourceInfo(int i) const
{
return ((i >= 0 && i < GC.getNumVoteSourceInfos()) ? &GC.getVoteSourceInfo((VoteSourceTypes)i) : NULL);
}
CvInfoBase* CyGlobalContext::getInvisibleInfo(int i) const
{
return ((i >= 0 && i < GC.getNumInvisibleInfos()) ? &GC.getInvisibleInfo((InvisibleTypes)i) : NULL);
}
CvInfoBase* CyGlobalContext::getAttitudeInfo(int i) const
{
return (i>=0 && i<NUM_ATTITUDE_TYPES) ? &GC.getAttitudeInfo((AttitudeTypes)i) : NULL;
}
CvInfoBase* CyGlobalContext::getMemoryInfo(int i) const
{
return (i>=0 && i<NUM_MEMORY_TYPES) ? &GC.getMemoryInfo((MemoryTypes)i) : NULL;
}
CvPlayerOptionInfo* CyGlobalContext::getPlayerOptionsInfoByIndex(int i) const
{
return &GC.getPlayerOptionInfo((PlayerOptionTypes) i);
}
CvGraphicOptionInfo* CyGlobalContext::getGraphicOptionsInfoByIndex(int i) const
{
return &GC.getGraphicOptionInfo((GraphicOptionTypes) i);
}
CvInfoBase* CyGlobalContext::getConceptInfo(int i) const
{
return (i>=0 && i<GC.getNumConceptInfos()) ? &GC.getConceptInfo((ConceptTypes)i) : NULL;
}
CvInfoBase* CyGlobalContext::getNewConceptInfo(int i) const
{
return (i>=0 && i<GC.getNumNewConceptInfos()) ? &GC.getNewConceptInfo((NewConceptTypes)i) : NULL;
}
CvInfoBase* CyGlobalContext::getCityTabInfo(int i) const
{
return (i>=0 && i<GC.getNumCityTabInfos()) ? &GC.getCityTabInfo((CityTabTypes)i) : NULL;
}
CvInfoBase* CyGlobalContext::getCalendarInfo(int i) const
{
return (i>=0 && i<GC.getNumCalendarInfos()) ? &GC.getCalendarInfo((CalendarTypes)i) : NULL;
}
CvInfoBase* CyGlobalContext::getGameOptionInfo(int i) const
{
return (i>=0 && i<GC.getNumGameOptionInfos()) ? &GC.getGameOptionInfo((GameOptionTypes)i) : NULL;
}
CvInfoBase* CyGlobalContext::getMPOptionInfo(int i) const
{
return (i>=0 && i<GC.getNumMPOptionInfos()) ? &GC.getMPOptionInfo((MultiplayerOptionTypes)i) : NULL;
}
CvInfoBase* CyGlobalContext::getForceControlInfo(int i) const
{
return (i>=0 && i<GC.getNumForceControlInfos()) ? &GC.getForceControlInfo((ForceControlTypes)i) : NULL;
}
CvInfoBase* CyGlobalContext::getSeasonInfo(int i) const
{
return (i>=0 && i<GC.getNumSeasonInfos()) ? &GC.getSeasonInfo((SeasonTypes)i) : NULL;
}
CvInfoBase* CyGlobalContext::getMonthInfo(int i) const
{
return (i>=0 && i<GC.getNumMonthInfos()) ? &GC.getMonthInfo((MonthTypes)i) : NULL;
}
CvInfoBase* CyGlobalContext::getDenialInfo(int i) const
{
return (i>=0 && i<GC.getNumDenialInfos()) ? &GC.getDenialInfo((DenialTypes)i) : NULL;
}
CvQuestInfo* CyGlobalContext::getQuestInfo(int i) const
{
return (i>=0 && i<GC.getNumQuestInfos()) ? &GC.getQuestInfo(i) : NULL;
}
CvTutorialInfo* CyGlobalContext::getTutorialInfo(int i) const
{
return (i>=0 && i<GC.getNumTutorialInfos()) ? &GC.getTutorialInfo(i) : NULL;
}
CvEventTriggerInfo* CyGlobalContext::getEventTriggerInfo(int i) const
{
return (i>=0 && i<GC.getNumEventTriggerInfos()) ? &GC.getEventTriggerInfo((EventTriggerTypes)i) : NULL;
}
CvEventInfo* CyGlobalContext::getEventInfo(int i) const
{
return (i>=0 && i<GC.getNumEventInfos()) ? &GC.getEventInfo((EventTypes)i) : NULL;
}
CvEspionageMissionInfo* CyGlobalContext::getEspionageMissionInfo(int i) const
{
return (i>=0 && i<GC.getNumEspionageMissionInfos()) ? &GC.getEspionageMissionInfo((EspionageMissionTypes)i) : NULL;
}
CvUnitArtStyleTypeInfo* CyGlobalContext::getUnitArtStyleTypeInfo(int i) const
{
return (i>=0 && i<GC.getNumUnitArtStyleTypeInfos()) ? &GC.getUnitArtStyleTypeInfo((UnitArtStyleTypes)i) : NULL;
}
CvArtInfoInterface* CyGlobalContext::getInterfaceArtInfo(int i) const
{
return (i>=0 && i<ARTFILEMGR.getNumInterfaceArtInfos()) ? &ARTFILEMGR.getInterfaceArtInfo(i) : NULL;
}
CvArtInfoMovie* CyGlobalContext::getMovieArtInfo(int i) const
{
return (i>=0 && i<ARTFILEMGR.getNumMovieArtInfos()) ? &ARTFILEMGR.getMovieArtInfo(i) : NULL;
}
CvArtInfoMisc* CyGlobalContext::getMiscArtInfo(int i) const
{
return (i>=0 && i<ARTFILEMGR.getNumMiscArtInfos()) ? &ARTFILEMGR.getMiscArtInfo(i) : NULL;
}
CvArtInfoUnit* CyGlobalContext::getUnitArtInfo(int i) const
{
return (i>=0 && i<ARTFILEMGR.getNumUnitArtInfos()) ? &ARTFILEMGR.getUnitArtInfo(i) : NULL;
}
CvArtInfoBuilding* CyGlobalContext::getBuildingArtInfo(int i) const
{
return (i>=0 && i<ARTFILEMGR.getNumBuildingArtInfos()) ? &ARTFILEMGR.getBuildingArtInfo(i) : NULL;
}
CvArtInfoCivilization* CyGlobalContext::getCivilizationArtInfo(int i) const
{
return (i>=0 && i<ARTFILEMGR.getNumCivilizationArtInfos()) ? &ARTFILEMGR.getCivilizationArtInfo(i) : NULL;
}
CvArtInfoLeaderhead* CyGlobalContext::getLeaderheadArtInfo(int i) const
{
return (i>=0 && i<ARTFILEMGR.getNumLeaderheadArtInfos()) ? &ARTFILEMGR.getLeaderheadArtInfo(i) : NULL;
}
CvArtInfoBonus* CyGlobalContext::getBonusArtInfo(int i) const
{
return (i>=0 && i<ARTFILEMGR.getNumBonusArtInfos()) ? &ARTFILEMGR.getBonusArtInfo(i) : NULL;
}
CvArtInfoImprovement* CyGlobalContext::getImprovementArtInfo(int i) const
{
return (i>=0 && i<ARTFILEMGR.getNumImprovementArtInfos()) ? &ARTFILEMGR.getImprovementArtInfo(i) : NULL;
}
CvArtInfoTerrain* CyGlobalContext::getTerrainArtInfo(int i) const
{
return (i>=0 && i<ARTFILEMGR.getNumTerrainArtInfos()) ? &ARTFILEMGR.getTerrainArtInfo(i) : NULL;
}
CvArtInfoFeature* CyGlobalContext::getFeatureArtInfo(int i) const
{
return (i>=0 && i<ARTFILEMGR.getNumFeatureArtInfos()) ? &ARTFILEMGR.getFeatureArtInfo(i) : NULL;
}
CvGameSpeedInfo* CyGlobalContext::getGameSpeedInfo(int i) const
{
return &(GC.getGameSpeedInfo((GameSpeedTypes) i));
}
CvTurnTimerInfo* CyGlobalContext::getTurnTimerInfo(int i) const
{
return &(GC.getTurnTimerInfo((TurnTimerTypes) i));
}
/************************************************************************************************/
/* DCM 04/19/09 Johny Smith */
/************************************************************************************************/
// Dale - DCM: Pedia Concepts START
/*CvInfoBase* CyGlobalContext::getDCMConceptInfo(int i) const
{
return (i>=0 && i<GC.getNumDCMConceptInfos()) ? &GC.getDCMConceptInfo((DCMConceptTypes)i) : NULL;
}*/
// Dale - DCM: Pedia Concepts END
/************************************************************************************************/
/* DCM END */
/************************************************************************************************/
/************************************************************************************************/
/*Afforess 11/13/09 */
/************************************************************************************************/
CvInfoBase* CyGlobalContext::getANDConceptInfo(int i) const
{
return (i>=0 && i<GC.getNumANDConceptInfos()) ? &GC.getANDConceptInfo((ANDConceptTypes)i) : NULL;
}
/************************************************************************************************/
/* Afforess END */
/************************************************************************************************/
//45deg: Pitboss Mod START
void CyGlobalContext::sendChat(std::wstring szString, int targetType){
gDLL->sendChat(szString, (ChatTargetTypes) targetType);
}
void CyGlobalContext::sendPause(int iPauseID = -1){
gDLL->sendPause(iPauseID);
}
//45deg: Pitboss Mod END | [
"no.m@il.specified"
] | no.m@il.specified |
5827f3f434adf5fd609f632ea2620eb9cc8f8c2b | 3035ce291dbc5624f49ac3b87168022ec644d966 | /replaceGrades.cpp | c9b0fdbe6a1b6635f88dd737f8f3d13220094d03 | [] | no_license | whackamadoodle3000/CIS22B-Exercises | 08f2fda8801fb0fa83d75e19a2ba36ba31784bad | 237756420d5ef3673e1b3ccd2415a2498ea01561 | refs/heads/main | 2023-06-17T05:42:43.548014 | 2021-07-09T00:53:42 | 2021-07-09T00:53:42 | 381,245,596 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,032 | cpp |
/******************************************************************************
CIS22B checks validity of grades and replaces invalid ones
File name: replaceGrades.cpp
@author Pranav Tadepalli
@version 1.0
@since thisquarter
*******************************************************************************/
#include <iostream>
#include <string>
#include <cstring>
using namespace std;
/**
checks validity of grades and replaces invalid ones
@param grades the cstring to process
@return how many invalid grades there are
*/
int replaceGrades(char grades[]);
/**
tests the above function with a string and prints result
@param string to process
*/
void testFunction(char gradeslist[]);
int main(){
// test replaceGrades with different conditions
char grades0[] = {'A', 'B', 'X', 'C', '\0'};
testFunction(grades0);
char grades1[] = {'A','\0'};
testFunction(grades1);
char grades2[] = {'A', 'B', 'C', 'A', '\0'};
testFunction(grades2);
char grades3[] = {'X', 'Y', 'Z', '\0'};
testFunction(grades3);
return 0;
}
void testFunction(char gradeslist[]){
for (int i=0; i<strlen(gradeslist); i++){
cout << gradeslist[i] << ",";
}
cout << endl;
cout << "Replacing " << (replaceGrades(gradeslist)) << " invalid grades" << endl;
for (int i=0; i<strlen(gradeslist); i++){
cout << gradeslist[i] << ",";
}
cout << endl << endl;
}
// checks validity of grades and replaces invalid ones
int replaceGrades(char grades[]){
char validGrades[] = {'A', 'a', 'B', 'b', 'C', 'c', 'D', 'd', 'F', 'f'};
int invalidGrades = 0;
int gradesLength = strlen(grades);
bool valid = false;
for (int i=0; i<gradesLength; i++){
valid=false;
for (char grade:validGrades){
if (grades[i]==grade){
valid=true;
}
}
if (!valid){
grades[i] = 'I';
}
invalidGrades += !valid;
}
return invalidGrades;
}
| [
"noreply@github.com"
] | noreply@github.com |
ddf263869c4007b55750991a5aae751453df679d | 0e4c9cf77219cde772f1d21cf30bf5c8e7b9a3b4 | /547.FriendCircles/MarkCSIE/FriendCircles/main.cpp | 82a7052676279625b1fe4f0fcf688d53574e6d80 | [] | no_license | LeetCodeBreaker/LeetCode | be25aa3ac2176083440dd27ce15c532e99e85e61 | 00a5ee2fc9ad38f34bb37ed64820a286057ff728 | refs/heads/master | 2021-01-17T03:48:36.961178 | 2020-06-07T15:24:49 | 2020-06-07T15:24:49 | 37,640,193 | 5 | 2 | null | 2015-07-15T15:29:21 | 2015-06-18T05:52:36 | C | UTF-8 | C++ | false | false | 824 | cpp | #include <iostream>
#include <vector>
class Solution
{
public:
unsigned int findCircleNum(const std::vector<std::vector<int>> &M)
{
std::vector<bool> traversed(M.size(), false);
unsigned int answer = 0;
for (size_t i = 0; i < M.size(); i++)
{
if (!traversed[i])
{
dfs(i, M, traversed);
++answer;
}
}
return answer;
}
protected:
void dfs(const size_t &index, const std::vector<std::vector<int>> &M, std::vector<bool> &traversed)
{
traversed[index] = true;
for (size_t i = 0; i < M[index].size(); i++)
{
if (M[index][i] == 1 && !traversed[i])
{
dfs(i, M, traversed);
}
}
}
};
int main()
{
Solution solution;
std::cout << solution.findCircleNum({{1, 1, 0}, {1, 1, 0}, {0, 0, 1}}) << std::endl;
return 0;
}
| [
"markcsie@gmail.com"
] | markcsie@gmail.com |
27abfe7fb1d854bcdcd16d91825955be5d533036 | 45d19fe4f3cea15d7c2c667feb334d49bca5872c | /Src/Builder/Builder/cbuildmi.h | 9bdc4a6ac67b46e89de0518249413139c63082f8 | [
"MIT"
] | permissive | whuer-xiaojie/Design_Patterns_C_Plus_Plus | a9c198b3719331658fe83fb37883beb9fe2ecef2 | 467459e4f62ee5b0e4ce682c55a8f7f8ae986167 | refs/heads/master | 2022-04-11T12:40:19.497613 | 2020-04-05T06:47:29 | 2020-04-05T06:47:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,430 | h | /*
* MIT License
*
* Copyright (c) 2018 Whuer_XiaoJie <1939346428@qq.com>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
*/
#ifndef CBUILDMI_H_
#define CBUILDMI_H_
#include "cbuilder.h"
class CBuildMI :public CBuilder
{
public:
CBuildMI();
virtual ~CBuildMI();
void buildName(void);
void buildPrice(void);
void showProduct(void);
private:
CMoblePhone *m_phone;
};
#endif // CBUILDMI_H_ | [
"xiojie@sansi.com"
] | xiojie@sansi.com |
2ae15603571af71328ceda000720e1dfd5b15405 | f0a26ec6b779e86a62deaf3f405b7a83868bc743 | /Engine/Source/Editor/EnvironmentQueryEditor/Private/EnvironmentQueryColors.h | 6cf4f8f917b38acac3f513c711219793a9934257 | [] | no_license | Tigrouzen/UnrealEngine-4 | 0f15a56176439aef787b29d7c80e13bfe5c89237 | f81fe535e53ac69602bb62c5857bcdd6e9a245ed | refs/heads/master | 2021-01-15T13:29:57.883294 | 2014-03-20T15:12:46 | 2014-03-20T15:12:46 | 18,375,899 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 765 | h | // Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
#pragma once
namespace EnvironmentQueryColors
{
namespace NodeBody
{
const FLinearColor Default(0.15f, 0.15f, 0.15f);
const FLinearColor Generator(0.1f, 0.1f, 0.1f);
const FLinearColor Test(0.0f, 0.07f, 0.4f);
const FLinearColor TestInactive(0.1f, 0.1f, 0.1f);
}
namespace NodeBorder
{
const FLinearColor Default(0.08f, 0.08f, 0.08f);
const FLinearColor Selected(1.00f, 0.08f, 0.08f);
}
namespace Pin
{
const FLinearColor Default(0.02f, 0.02f, 0.02f);
const FLinearColor Hover(1.0f, 0.7f, 0.0f);
}
namespace Action
{
const FLinearColor DragMarker(1.0f, 1.0f, 0.2f);
const FLinearColor Weight(0.0f, 1.0f, 1.0f);
const FLinearColor WeightNamed(0.2f, 0.2f, 0.2f);
}
}
| [
"michaellam430@gmail.com"
] | michaellam430@gmail.com |
0be1757ecd1adad45196d689165a9d82289e4133 | ad523ccbe6c5a76d6599375c52055303474610cd | /src/net/third_party/quiche/src/quic/core/quic_linux_socket_utils.cc | ecb691e129c4b91159e920550fd67694728d8aaf | [
"BSD-3-Clause"
] | permissive | carter1029/naiveproxy | cf49b3356d681320fbbea6d8ed64eb8fa07fd109 | c2e8c4676edbd7cc4bd9b1f7da1bd6f34c771480 | refs/heads/master | 2023-03-17T10:02:08.057873 | 2021-03-03T17:09:51 | 2021-03-03T17:10:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,967 | cc | // Copyright (c) 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "quic/core/quic_linux_socket_utils.h"
#include <linux/net_tstamp.h>
#include <netinet/in.h>
#include <cstdint>
#include "quic/core/quic_syscall_wrapper.h"
#include "quic/platform/api/quic_ip_address.h"
#include "quic/platform/api/quic_logging.h"
#include "quic/platform/api/quic_socket_address.h"
namespace quic {
QuicMsgHdr::QuicMsgHdr(const char* buffer,
size_t buf_len,
const QuicSocketAddress& peer_address,
char* cbuf,
size_t cbuf_size)
: iov_{const_cast<char*>(buffer), buf_len},
cbuf_(cbuf),
cbuf_size_(cbuf_size),
cmsg_(nullptr) {
// Only support unconnected sockets.
DCHECK(peer_address.IsInitialized());
raw_peer_address_ = peer_address.generic_address();
hdr_.msg_name = &raw_peer_address_;
hdr_.msg_namelen = raw_peer_address_.ss_family == AF_INET
? sizeof(sockaddr_in)
: sizeof(sockaddr_in6);
hdr_.msg_iov = &iov_;
hdr_.msg_iovlen = 1;
hdr_.msg_flags = 0;
hdr_.msg_control = nullptr;
hdr_.msg_controllen = 0;
}
void QuicMsgHdr::SetIpInNextCmsg(const QuicIpAddress& self_address) {
if (!self_address.IsInitialized()) {
return;
}
if (self_address.IsIPv4()) {
QuicLinuxSocketUtils::SetIpInfoInCmsgData(
self_address, GetNextCmsgData<in_pktinfo>(IPPROTO_IP, IP_PKTINFO));
} else {
QuicLinuxSocketUtils::SetIpInfoInCmsgData(
self_address, GetNextCmsgData<in6_pktinfo>(IPPROTO_IPV6, IPV6_PKTINFO));
}
}
void* QuicMsgHdr::GetNextCmsgDataInternal(int cmsg_level,
int cmsg_type,
size_t data_size) {
// msg_controllen needs to be increased first, otherwise CMSG_NXTHDR will
// return nullptr.
hdr_.msg_controllen += CMSG_SPACE(data_size);
DCHECK_LE(hdr_.msg_controllen, cbuf_size_);
if (cmsg_ == nullptr) {
DCHECK_EQ(nullptr, hdr_.msg_control);
memset(cbuf_, 0, cbuf_size_);
hdr_.msg_control = cbuf_;
cmsg_ = CMSG_FIRSTHDR(&hdr_);
} else {
DCHECK_NE(nullptr, hdr_.msg_control);
cmsg_ = CMSG_NXTHDR(&hdr_, cmsg_);
}
DCHECK_NE(nullptr, cmsg_) << "Insufficient control buffer space";
cmsg_->cmsg_len = CMSG_LEN(data_size);
cmsg_->cmsg_level = cmsg_level;
cmsg_->cmsg_type = cmsg_type;
return CMSG_DATA(cmsg_);
}
void QuicMMsgHdr::InitOneHeader(int i, const BufferedWrite& buffered_write) {
mmsghdr* mhdr = GetMMsgHdr(i);
msghdr* hdr = &mhdr->msg_hdr;
iovec* iov = GetIov(i);
iov->iov_base = const_cast<char*>(buffered_write.buffer);
iov->iov_len = buffered_write.buf_len;
hdr->msg_iov = iov;
hdr->msg_iovlen = 1;
hdr->msg_control = nullptr;
hdr->msg_controllen = 0;
// Only support unconnected sockets.
DCHECK(buffered_write.peer_address.IsInitialized());
sockaddr_storage* peer_address_storage = GetPeerAddressStorage(i);
*peer_address_storage = buffered_write.peer_address.generic_address();
hdr->msg_name = peer_address_storage;
hdr->msg_namelen = peer_address_storage->ss_family == AF_INET
? sizeof(sockaddr_in)
: sizeof(sockaddr_in6);
}
void QuicMMsgHdr::SetIpInNextCmsg(int i, const QuicIpAddress& self_address) {
if (!self_address.IsInitialized()) {
return;
}
if (self_address.IsIPv4()) {
QuicLinuxSocketUtils::SetIpInfoInCmsgData(
self_address, GetNextCmsgData<in_pktinfo>(i, IPPROTO_IP, IP_PKTINFO));
} else {
QuicLinuxSocketUtils::SetIpInfoInCmsgData(
self_address,
GetNextCmsgData<in6_pktinfo>(i, IPPROTO_IPV6, IPV6_PKTINFO));
}
}
void* QuicMMsgHdr::GetNextCmsgDataInternal(int i,
int cmsg_level,
int cmsg_type,
size_t data_size) {
mmsghdr* mhdr = GetMMsgHdr(i);
msghdr* hdr = &mhdr->msg_hdr;
cmsghdr*& cmsg = *GetCmsgHdr(i);
// msg_controllen needs to be increased first, otherwise CMSG_NXTHDR will
// return nullptr.
hdr->msg_controllen += CMSG_SPACE(data_size);
DCHECK_LE(hdr->msg_controllen, cbuf_size_);
if (cmsg == nullptr) {
DCHECK_EQ(nullptr, hdr->msg_control);
hdr->msg_control = GetCbuf(i);
cmsg = CMSG_FIRSTHDR(hdr);
} else {
DCHECK_NE(nullptr, hdr->msg_control);
cmsg = CMSG_NXTHDR(hdr, cmsg);
}
DCHECK_NE(nullptr, cmsg) << "Insufficient control buffer space";
cmsg->cmsg_len = CMSG_LEN(data_size);
cmsg->cmsg_level = cmsg_level;
cmsg->cmsg_type = cmsg_type;
return CMSG_DATA(cmsg);
}
int QuicMMsgHdr::num_bytes_sent(int num_packets_sent) {
DCHECK_LE(0, num_packets_sent);
DCHECK_LE(num_packets_sent, num_msgs_);
int bytes_sent = 0;
iovec* iov = GetIov(0);
for (int i = 0; i < num_packets_sent; ++i) {
bytes_sent += iov[i].iov_len;
}
return bytes_sent;
}
// static
int QuicLinuxSocketUtils::GetUDPSegmentSize(int fd) {
int optval;
socklen_t optlen = sizeof(optval);
int rc = getsockopt(fd, SOL_UDP, UDP_SEGMENT, &optval, &optlen);
if (rc < 0) {
QUIC_LOG_EVERY_N_SEC(INFO, 10)
<< "getsockopt(UDP_SEGMENT) failed: " << strerror(errno);
return -1;
}
QUIC_LOG_EVERY_N_SEC(INFO, 10)
<< "getsockopt(UDP_SEGMENT) returned segment size: " << optval;
return optval;
}
// static
bool QuicLinuxSocketUtils::EnableReleaseTime(int fd, clockid_t clockid) {
// TODO(wub): Change to sock_txtime once it is available in linux/net_tstamp.h
struct LinuxSockTxTime {
clockid_t clockid; /* reference clockid */
uint32_t flags; /* flags defined by enum txtime_flags */
};
LinuxSockTxTime so_txtime_val{clockid, 0};
if (setsockopt(fd, SOL_SOCKET, SO_TXTIME, &so_txtime_val,
sizeof(so_txtime_val)) != 0) {
QUIC_LOG_EVERY_N_SEC(INFO, 10)
<< "setsockopt(SOL_SOCKET,SO_TXTIME) failed: " << strerror(errno);
return false;
}
return true;
}
// static
bool QuicLinuxSocketUtils::GetTtlFromMsghdr(struct msghdr* hdr, int* ttl) {
if (hdr->msg_controllen > 0) {
struct cmsghdr* cmsg;
for (cmsg = CMSG_FIRSTHDR(hdr); cmsg != nullptr;
cmsg = CMSG_NXTHDR(hdr, cmsg)) {
if ((cmsg->cmsg_level == IPPROTO_IP && cmsg->cmsg_type == IP_TTL) ||
(cmsg->cmsg_level == IPPROTO_IPV6 &&
cmsg->cmsg_type == IPV6_HOPLIMIT)) {
*ttl = *(reinterpret_cast<int*>(CMSG_DATA(cmsg)));
return true;
}
}
}
return false;
}
// static
void QuicLinuxSocketUtils::SetIpInfoInCmsgData(
const QuicIpAddress& self_address,
void* cmsg_data) {
DCHECK(self_address.IsInitialized());
const std::string& address_str = self_address.ToPackedString();
if (self_address.IsIPv4()) {
in_pktinfo* pktinfo = static_cast<in_pktinfo*>(cmsg_data);
pktinfo->ipi_ifindex = 0;
memcpy(&pktinfo->ipi_spec_dst, address_str.c_str(), address_str.length());
} else if (self_address.IsIPv6()) {
in6_pktinfo* pktinfo = static_cast<in6_pktinfo*>(cmsg_data);
memcpy(&pktinfo->ipi6_addr, address_str.c_str(), address_str.length());
} else {
QUIC_BUG << "Unrecognized IPAddress";
}
}
// static
size_t QuicLinuxSocketUtils::SetIpInfoInCmsg(const QuicIpAddress& self_address,
cmsghdr* cmsg) {
std::string address_string;
if (self_address.IsIPv4()) {
cmsg->cmsg_len = CMSG_LEN(sizeof(in_pktinfo));
cmsg->cmsg_level = IPPROTO_IP;
cmsg->cmsg_type = IP_PKTINFO;
in_pktinfo* pktinfo = reinterpret_cast<in_pktinfo*>(CMSG_DATA(cmsg));
memset(pktinfo, 0, sizeof(in_pktinfo));
pktinfo->ipi_ifindex = 0;
address_string = self_address.ToPackedString();
memcpy(&pktinfo->ipi_spec_dst, address_string.c_str(),
address_string.length());
return sizeof(in_pktinfo);
} else if (self_address.IsIPv6()) {
cmsg->cmsg_len = CMSG_LEN(sizeof(in6_pktinfo));
cmsg->cmsg_level = IPPROTO_IPV6;
cmsg->cmsg_type = IPV6_PKTINFO;
in6_pktinfo* pktinfo = reinterpret_cast<in6_pktinfo*>(CMSG_DATA(cmsg));
memset(pktinfo, 0, sizeof(in6_pktinfo));
address_string = self_address.ToPackedString();
memcpy(&pktinfo->ipi6_addr, address_string.c_str(),
address_string.length());
return sizeof(in6_pktinfo);
} else {
QUIC_BUG << "Unrecognized IPAddress";
return 0;
}
}
// static
WriteResult QuicLinuxSocketUtils::WritePacket(int fd, const QuicMsgHdr& hdr) {
int rc;
do {
rc = GetGlobalSyscallWrapper()->Sendmsg(fd, hdr.hdr(), 0);
} while (rc < 0 && errno == EINTR);
if (rc >= 0) {
return WriteResult(WRITE_STATUS_OK, rc);
}
return WriteResult((errno == EAGAIN || errno == EWOULDBLOCK)
? WRITE_STATUS_BLOCKED
: WRITE_STATUS_ERROR,
errno);
}
// static
WriteResult QuicLinuxSocketUtils::WriteMultiplePackets(int fd,
QuicMMsgHdr* mhdr,
int* num_packets_sent) {
*num_packets_sent = 0;
if (mhdr->num_msgs() <= 0) {
return WriteResult(WRITE_STATUS_ERROR, EINVAL);
}
int rc;
do {
rc = GetGlobalSyscallWrapper()->Sendmmsg(fd, mhdr->mhdr(), mhdr->num_msgs(),
0);
} while (rc < 0 && errno == EINTR);
if (rc > 0) {
*num_packets_sent = rc;
return WriteResult(WRITE_STATUS_OK, mhdr->num_bytes_sent(rc));
} else if (rc == 0) {
QUIC_BUG << "sendmmsg returned 0, returning WRITE_STATUS_ERROR. errno: "
<< errno;
errno = EIO;
}
return WriteResult((errno == EAGAIN || errno == EWOULDBLOCK)
? WRITE_STATUS_BLOCKED
: WRITE_STATUS_ERROR,
errno);
}
} // namespace quic
| [
"kizdiv@gmail.com"
] | kizdiv@gmail.com |
19c10ee9326101a8c11b04c12a4c3edab5eca085 | 8a45f1803d67e98aa59421981c95a5865d4dbf60 | /YCCSample-source/15/Sample4.cpp | 1ec1f24785531f2814dc1f8b63fc8f93083238c3 | [] | no_license | walter-cc/cpp | 1a2e2f01692be15ad1224d6abe76c6b766d08fa4 | 36b5d184d7b4e69753750d5132e87754957f7d2a | refs/heads/master | 2021-12-30T21:40:22.305507 | 2021-08-06T16:11:28 | 2021-08-06T16:13:21 | 162,880,321 | 0 | 0 | null | null | null | null | BIG5 | C++ | false | false | 1,170 | cpp | #include <iostream>
using namespace std;
//Array類別範本
template <class T>
class Array{
private:
T data[5];
public:
void setData(int num, T d);
T getData(int num);
};
template <class T> void Array<T>::
setData(int num, T d)
{
if(num < 0 || num > 4 )
cout << "超過陣列的範圍。\n";
else
data[num] = d;
}
template <class T> T Array<T>::
getData(int num)
{
if(num < 0 || num > 4 ){
cout << "超過陣列的範圍。\n";
return data[0];
}
else
return data[num];
}
int main()
{
cout << "建立int型態的陣列。\n";
Array<int> i_array;
i_array.setData(0, 80);
i_array.setData(1, 60);
i_array.setData(2, 58);
i_array.setData(3, 77);
i_array.setData(4, 57);
for(int i=0; i<5; i++)
cout << i_array.getData(i) << '\n';
cout << "建立double型態的陣列。\n";
Array<double> d_array;
d_array.setData(0, 35.5);
d_array.setData(1, 45.6);
d_array.setData(2, 26.8);
d_array.setData(3, 76.2);
d_array.setData(4, 85.5);
for(int j=0; j<5; j++)
cout << d_array.getData(j) << '\n';
return 0;
}
| [
"imwalter8@gmail.com"
] | imwalter8@gmail.com |
4048cda35309d98f6ea9a6b25e8500389f464e57 | a97b9ad50e283b4e930ab59547806eb303b52c6f | /team/case8/V_dbldblUM/700/omega | 6438ba663db7b7e8aa9205448c1e4f179462aa38 | [] | no_license | harrisbk/OpenFOAM_run | fdcd4f81bd3205764988ea95c25fd2a5c130841b | 9591c98336561bcfb3b7259617b5363aacf48067 | refs/heads/master | 2016-09-05T08:45:27.965608 | 2015-11-16T19:08:34 | 2015-11-16T19:08:34 | 42,883,543 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 394,062 | /*--------------------------------*- 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 volScalarField;
location "700";
object omega;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 0 -1 0 0 0 0];
internalField nonuniform List<scalar>
48900
(
141364
145609
147521
147898
147395
146438
145275
144055
142864
141749
140729
139811
138998
138283
137656
137108
136633
136221
135868
135564
135306
135087
134902
134745
134613
134501
134408
134328
134261
134203
134154
134111
134077
134044
134026
133999
16811.5
28138.4
35483.9
40051.9
42812.1
44442
45401.5
45982.9
46397.2
46853.7
47473.9
48152.5
48812.2
49425.5
49973.5
50445.2
50834
51141
51368.1
51522.7
51610.1
51640.4
51621.2
51559.9
51463.1
51338
51189
51021.3
50839.2
50649
50451
50249.6
50041.5
49820.1
49582.4
49300.5
2463.07
4868.76
7244.8
9448.39
11407.2
13083.2
14491.6
15670.6
16662.8
17514.9
18283.7
19007.3
19691.8
20332.9
20926.5
21472.7
21971.9
22426.9
22839.3
23210.4
23536.6
23823.1
24076.6
24305.2
24511.8
24700.2
24869.5
25020.9
25153.9
25272
25373.6
25461.7
25533.2
25586.5
25612.9
25583.3
804.087
1396.59
2050.51
2739.04
3441.83
4134.75
4800.82
5430.44
6018.99
6566.24
7075.07
7549.28
7992.07
8405.17
8789.86
9147.56
9479.83
9788.36
10075.2
10346.2
10610.8
10871.9
11127.7
11375.9
11615.1
11844.6
12064.3
12275
12475.9
12667.2
12848.5
13019.6
13177.9
13320.2
13442.7
13540.3
474.991
679.319
911.457
1162.33
1427
1699.65
1975.01
2248.96
2517.99
2779.35
3031.2
3272.39
3502.34
3720.69
3927.24
4121.98
4305.11
4476.99
4638.34
4791.52
4940.51
5086.89
5230.3
5370.09
5505.88
5637.59
5765.31
5889.26
6009.64
6126.62
6240.32
6350.86
6459.67
6568.31
6677.03
6783.2
376.007
462.297
564.162
675.908
794.818
918.655
1045.52
1173.85
1302.28
1429.52
1554.56
1676.55
1794.85
1908.97
2018.53
2123.28
2223.05
2317.78
2407.56
2492.65
2573.59
2650.92
2725.06
2796.34
2865.03
2931.34
2995.5
3057.68
3118.09
3176.86
3234.11
3289.99
3345.22
3400.64
3456.69
3512.78
339.249
378.843
428.778
485.299
546.349
610.515
676.737
744.21
812.25
880.247
947.678
1014.1
1079.15
1142.53
1203.98
1263.32
1320.42
1375.17
1427.53
1477.54
1525.27
1570.85
1614.43
1656.15
1696.18
1734.63
1771.65
1807.36
1841.86
1875.26
1907.64
1939.06
1969.62
1999.42
2028.63
2057.15
324.361
342.719
368.059
398.274
431.907
467.913
505.532
544.203
583.481
622.995
662.434
701.534
740.076
777.878
814.789
850.686
885.474
919.083
951.471
982.619
1012.54
1041.25
1068.8
1095.24
1120.65
1145.07
1168.58
1191.23
1213.09
1234.21
1254.64
1274.42
1293.59
1312.21
1330.33
1347.86
318.171
326.393
339.052
355.255
374.144
395.003
417.268
440.508
464.389
488.636
513.028
537.38
561.542
585.387
608.811
631.73
654.075
675.797
696.857
717.234
736.918
755.911
774.224
791.876
808.891
825.297
841.124
856.402
871.162
885.432
899.241
912.616
925.583
938.172
950.419
962.206
315.6
319.002
324.998
333.385
343.787
355.792
369.025
383.171
397.973
413.219
428.736
444.38
460.033
475.599
490.996
506.159
521.035
535.581
549.768
563.571
576.978
589.98
602.578
614.775
626.579
638.002
649.057
659.758
670.121
680.16
689.893
699.333
708.499
717.408
726.081
734.404
314.544
315.718
318.287
322.33
327.763
334.41
342.064
350.526
359.615
369.173
379.067
389.183
399.426
409.716
419.988
430.186
440.265
450.189
459.93
469.466
478.78
487.862
496.705
505.308
513.67
521.794
529.685
537.349
544.793
552.024
559.051
565.882
572.528
579.001
585.307
591.348
314.115
314.297
315.176
316.886
319.47
322.893
327.073
331.907
337.287
343.11
349.28
355.713
362.335
369.081
375.898
382.74
389.567
396.347
403.055
409.669
416.172
422.554
428.803
434.914
440.884
446.711
452.394
457.934
463.335
468.599
473.729
478.73
483.608
488.37
493.015
497.46
313.94
313.696
313.781
314.299
315.32
316.869
318.935
321.482
324.46
327.811
331.478
335.405
339.538
343.83
348.24
352.729
357.267
361.825
366.38
370.912
375.407
379.851
384.234
388.548
392.786
396.946
401.024
405.019
408.929
412.755
416.498
420.16
423.742
427.248
430.675
433.955
313.866
313.445
313.173
313.114
313.323
313.836
314.672
315.828
317.293
319.042
321.047
323.277
325.699
328.282
330.996
333.814
336.712
339.666
342.66
345.675
348.697
351.715
354.718
357.698
360.648
363.564
366.44
369.274
372.064
374.807
377.502
380.15
382.752
385.306
387.811
390.211
313.837
313.35
312.942
312.648
312.506
312.546
312.788
313.244
313.914
314.792
315.868
317.124
318.542
320.104
321.789
323.579
325.456
327.402
329.404
331.448
333.521
335.614
337.716
339.822
341.923
344.015
346.093
348.153
350.192
352.208
354.2
356.165
358.104
360.015
361.894
363.696
313.822
313.305
312.835
312.431
312.115
311.911
311.834
311.897
312.108
312.468
312.975
313.622
314.4
315.298
316.305
317.407
318.594
319.851
321.17
322.538
323.946
325.386
326.851
328.332
329.826
331.325
332.826
334.325
335.819
337.306
338.782
340.246
341.698
343.135
344.554
345.917
313.812
313.279
312.776
312.313
311.903
311.558
311.292
311.114
311.032
311.051
311.172
311.395
311.717
312.133
312.638
313.223
313.881
314.605
315.387
316.22
317.097
318.011
318.956
319.927
320.918
321.926
322.947
323.976
325.011
326.05
327.09
328.128
329.165
330.197
331.221
332.209
313.804
313.262
312.742
312.249
311.789
311.369
310.996
310.678
310.421
310.228
310.103
310.049
310.064
310.148
310.299
310.512
310.786
311.114
311.493
311.918
312.385
312.888
313.425
313.989
314.579
315.19
315.82
316.465
317.123
317.791
318.467
319.151
319.839
320.53
321.222
321.893
313.799
313.25
312.721
312.212
311.726
311.267
310.838
310.443
310.087
309.771
309.5
309.274
309.096
308.965
308.881
308.844
308.852
308.902
308.994
309.123
309.288
309.485
309.713
309.968
310.249
310.551
310.874
311.215
311.572
311.943
312.327
312.722
313.126
313.538
313.956
314.366
313.794
313.242
312.706
312.188
311.689
311.209
310.752
310.317
309.908
309.525
309.171
308.847
308.555
308.294
308.065
307.869
307.705
307.572
307.47
307.398
307.353
307.335
307.343
307.374
307.428
307.502
307.596
307.707
307.835
307.978
308.135
308.304
308.485
308.677
308.878
309.079
313.791
313.235
312.695
312.171
311.664
311.174
310.701
310.246
309.81
309.392
308.995
308.618
308.262
307.927
307.615
307.325
307.057
306.812
306.589
306.387
306.207
306.048
305.908
305.787
305.685
305.6
305.532
305.479
305.442
305.419
305.409
305.412
305.426
305.452
305.488
305.53
313.787
313.229
312.685
312.158
311.646
311.15
310.669
310.203
309.752
309.317
308.897
308.492
308.103
307.729
307.372
307.03
306.704
306.395
306.101
305.823
305.561
305.315
305.083
304.866
304.664
304.476
304.301
304.14
303.991
303.854
303.73
303.616
303.514
303.422
303.34
303.268
313.785
313.224
312.678
312.147
311.632
311.131
310.645
310.173
309.715
309.27
308.838
308.419
308.013
307.619
307.238
306.87
306.513
306.169
305.837
305.517
305.209
304.913
304.629
304.356
304.094
303.844
303.604
303.376
303.157
302.949
302.751
302.563
302.384
302.215
302.055
301.905
313.782
313.219
312.671
312.138
311.62
311.116
310.626
310.15
309.687
309.236
308.798
308.371
307.956
307.552
307.159
306.777
306.405
306.043
305.691
305.349
305.018
304.695
304.382
304.079
303.785
303.5
303.224
302.957
302.699
302.449
302.208
301.975
301.75
301.534
301.326
301.129
313.781
313.216
312.666
312.131
311.61
311.104
310.611
310.132
309.665
309.211
308.768
308.337
307.916
307.506
307.107
306.717
306.337
305.966
305.604
305.252
304.908
304.572
304.245
303.926
303.615
303.313
303.018
302.73
302.451
302.179
301.914
301.657
301.407
301.164
300.929
300.705
313.779
313.213
312.662
312.125
311.602
311.093
310.598
310.116
309.647
309.189
308.744
308.309
307.885
307.472
307.068
306.674
306.289
305.914
305.547
305.188
304.838
304.496
304.161
303.835
303.516
303.204
302.9
302.603
302.313
302.029
301.753
301.484
301.221
300.964
300.715
300.477
313.778
313.21
312.658
312.119
311.595
311.085
310.587
310.103
309.632
309.172
308.724
308.287
307.86
307.444
307.037
306.641
306.253
305.874
305.504
305.142
304.788
304.443
304.105
303.774
303.451
303.135
302.826
302.524
302.229
301.94
301.658
301.383
301.113
300.851
300.595
300.349
313.776
313.208
312.655
312.115
311.589
311.077
310.578
310.092
309.619
309.157
308.707
308.268
307.839
307.421
307.012
306.613
306.223
305.842
305.47
305.106
304.75
304.402
304.062
303.729
303.403
303.085
302.774
302.469
302.171
301.88
301.595
301.317
301.045
300.779
300.519
300.271
313.775
313.207
312.652
312.111
311.584
311.071
310.571
310.083
309.608
309.145
308.693
308.252
307.822
307.402
306.991
306.591
306.199
305.816
305.442
305.077
304.719
304.37
304.028
303.693
303.366
303.046
302.733
302.427
302.128
301.835
301.549
301.269
300.995
300.728
300.467
300.216
313.775
313.205
312.65
312.108
311.58
311.066
310.565
310.076
309.599
309.135
308.681
308.239
307.807
307.386
306.974
306.572
306.179
305.795
305.42
305.053
304.694
304.343
304
303.665
303.336
303.015
302.701
302.394
302.094
301.8
301.513
301.232
300.957
300.688
300.426
300.174
313.774
313.204
312.648
312.106
311.577
311.062
310.56
310.07
309.592
309.126
308.672
308.228
307.796
307.373
306.96
306.557
306.163
305.778
305.401
305.033
304.673
304.322
303.978
303.641
303.312
302.99
302.676
302.368
302.066
301.772
301.484
301.202
300.926
300.657
300.393
300.141
313.774
313.203
312.647
312.104
311.575
311.059
310.556
310.065
309.587
309.12
308.665
308.22
307.786
307.363
306.949
306.545
306.15
305.764
305.386
305.018
304.657
304.304
303.96
303.622
303.293
302.97
302.655
302.346
302.044
301.749
301.46
301.178
300.901
300.631
300.367
300.114
313.773
313.203
312.646
312.103
311.573
311.056
310.553
310.062
309.582
309.115
308.659
308.214
307.779
307.355
306.94
306.535
306.14
305.753
305.375
305.006
304.644
304.291
303.946
303.608
303.278
302.955
302.639
302.33
302.027
301.731
301.442
301.159
300.882
300.611
300.347
300.093
313.773
313.202
312.645
312.102
311.572
311.055
310.551
310.059
309.58
309.112
308.655
308.209
307.774
307.349
306.934
306.529
306.133
305.745
305.367
304.997
304.635
304.282
303.936
303.598
303.267
302.944
302.627
302.318
302.015
301.719
301.429
301.145
300.868
300.596
300.331
300.077
313.773
313.202
312.645
312.101
311.571
311.054
310.55
310.058
309.578
309.11
308.653
308.207
307.771
307.346
306.931
306.525
306.129
305.741
305.362
304.992
304.63
304.276
303.93
303.592
303.261
302.937
302.62
302.311
302.007
301.711
301.421
301.137
300.859
300.587
300.322
300.067
313.773
313.202
312.645
312.101
311.571
311.054
310.55
310.058
309.578
309.11
308.653
308.207
307.771
307.346
306.93
306.524
306.128
305.74
305.361
304.991
304.629
304.275
303.929
303.59
303.259
302.935
302.618
302.309
302.005
301.709
301.418
301.134
300.856
300.584
300.319
300.064
313.773
313.202
312.645
312.102
311.572
311.055
310.551
310.059
309.579
309.111
308.654
308.208
307.772
307.347
306.932
306.526
306.129
305.742
305.363
304.993
304.631
304.277
303.931
303.592
303.261
302.938
302.621
302.311
302.008
301.711
301.421
301.137
300.859
300.587
300.321
300.066
313.773
313.203
312.646
312.103
311.573
311.056
310.552
310.061
309.581
309.113
308.657
308.211
307.776
307.351
306.936
306.53
306.134
305.746
305.368
304.998
304.636
304.282
303.937
303.598
303.267
302.944
302.627
302.317
302.014
301.718
301.428
301.144
300.866
300.594
300.329
300.074
313.774
313.203
312.647
312.104
311.574
311.058
310.555
310.063
309.584
309.117
308.661
308.215
307.781
307.356
306.941
306.536
306.14
305.753
305.375
305.006
304.644
304.291
303.945
303.607
303.277
302.954
302.637
302.328
302.025
301.729
301.44
301.156
300.879
300.607
300.342
300.087
313.774
313.204
312.648
312.105
311.577
311.061
310.558
310.067
309.589
309.122
308.666
308.221
307.787
307.363
306.949
306.545
306.149
305.763
305.385
305.016
304.656
304.303
303.958
303.621
303.291
302.968
302.653
302.344
302.042
301.747
301.458
301.175
300.898
300.628
300.364
300.11
313.775
313.205
312.649
312.108
311.579
311.064
310.562
310.072
309.594
309.128
308.673
308.229
307.796
307.373
306.959
306.556
306.161
305.776
305.399
305.031
304.672
304.32
303.976
303.64
303.312
302.99
302.676
302.369
302.069
301.775
301.488
301.208
300.933
300.665
300.403
300.152
313.775
313.206
312.651
312.11
311.583
311.069
310.567
310.078
309.602
309.136
308.683
308.24
307.807
307.385
306.973
306.571
306.178
305.794
305.42
305.054
304.696
304.347
304.006
303.673
303.347
303.029
302.719
302.416
302.12
301.832
301.55
301.274
301.006
300.743
300.488
300.244
313.776
313.208
312.654
312.114
311.587
311.074
310.574
310.086
309.611
309.147
308.695
308.254
307.824
307.404
306.994
306.595
306.206
305.826
305.455
305.094
304.743
304.4
304.066
303.74
303.424
303.115
302.815
302.523
302.239
301.963
301.694
301.433
301.18
300.933
300.694
300.467
313.777
313.21
312.657
312.118
311.593
311.081
310.583
310.097
309.624
309.163
308.714
308.276
307.851
307.437
307.034
306.643
306.262
305.893
305.535
305.188
304.852
304.526
304.211
303.907
303.613
303.329
303.056
302.792
302.538
302.293
302.057
301.831
301.613
301.404
301.203
301.014
313.779
313.213
312.661
312.124
311.601
311.091
310.596
310.114
309.646
309.191
308.751
308.324
307.911
307.513
307.129
306.76
306.406
306.066
305.741
305.431
305.136
304.855
304.589
304.337
304.099
303.874
303.663
303.464
303.278
303.104
302.941
302.79
302.649
302.519
302.399
302.291
313.781
313.216
312.667
312.132
311.613
311.109
310.621
310.149
309.695
309.26
308.844
308.447
308.072
307.718
307.386
307.077
306.79
306.526
306.285
306.065
305.868
305.692
305.537
305.402
305.286
305.188
305.109
305.046
304.999
304.966
304.948
304.944
304.951
304.971
305.001
305.042
313.783
313.221
312.676
312.147
311.637
311.149
310.683
310.244
309.833
309.453
309.106
308.794
308.519
308.28
308.08
307.917
307.791
307.701
307.647
307.626
307.638
307.681
307.752
307.851
307.975
308.122
308.291
308.479
308.686
308.91
309.148
309.4
309.665
309.939
310.223
310.512
313.787
313.231
312.695
312.185
311.705
311.264
310.868
310.522
310.233
310.005
309.841
309.742
309.71
309.742
309.838
309.995
310.21
310.48
310.801
311.169
311.58
312.03
312.516
313.034
313.58
314.151
314.744
315.356
315.984
316.625
317.277
317.939
318.607
319.281
319.957
320.628
313.795
313.253
312.749
312.298
311.916
311.619
311.421
311.333
311.361
311.508
311.774
312.156
312.65
313.247
313.942
314.724
315.587
316.521
317.519
318.572
319.672
320.813
321.989
323.193
324.419
325.663
326.921
328.188
329.461
330.736
332.01
333.282
334.548
335.807
337.054
338.278
313.815
313.323
312.925
312.661
312.568
312.675
312.997
313.542
314.307
315.283
316.456
317.81
319.325
320.984
322.767
324.657
326.638
328.693
330.809
332.972
335.173
337.4
339.645
341.9
344.157
346.411
348.657
350.89
353.106
355.301
357.473
359.62
361.739
363.828
365.883
367.885
313.88
313.556
313.499
313.791
314.487
315.61
317.154
319.094
321.396
324.018
326.916
330.049
333.376
336.863
340.476
344.188
347.971
351.805
355.67
359.55
363.431
367.301
371.149
374.967
378.747
382.484
386.173
389.809
393.389
396.91
400.37
403.768
407.103
410.372
413.575
416.681
314.107
314.341
315.302
317.095
319.733
323.161
327.291
332.018
337.241
342.863
348.801
354.981
361.341
367.826
374.392
381.001
387.622
394.227
400.795
407.308
413.75
420.111
426.379
432.547
438.609
444.561
450.398
456.119
461.722
467.205
472.569
477.813
482.938
487.946
492.833
497.565
314.897
316.873
320.63
326.104
333.082
341.293
350.477
360.402
370.878
381.75
392.891
404.2
415.595
427.01
438.392
449.696
460.887
471.937
482.823
493.528
504.037
514.342
524.435
534.312
543.968
553.404
562.619
571.613
580.387
588.945
597.289
605.423
613.349
621.072
628.593
635.871
317.591
324.647
335.483
349.317
365.386
383.06
401.846
421.374
441.37
461.626
481.982
502.314
522.523
542.533
562.281
581.718
600.805
619.513
637.821
655.715
673.188
690.235
706.857
723.056
738.835
754.201
769.16
783.719
797.885
811.667
825.074
838.114
850.797
863.133
875.128
886.739
326.571
347.7
375.654
408.015
443.214
480.199
518.236
556.818
595.586
634.269
672.658
710.59
747.935
784.59
820.476
855.531
889.714
923.003
955.388
986.876
1017.48
1047.22
1076.11
1104.18
1131.45
1157.95
1183.69
1208.69
1232.97
1256.57
1279.48
1301.75
1323.38
1344.4
1364.83
1384.62
356.742
417.122
488.237
565.165
645.476
727.599
810.368
893.004
974.925
1055.67
1134.89
1212.29
1287.65
1360.83
1431.7
1500.24
1566.45
1630.4
1692.22
1752.02
1809.92
1866.05
1920.47
1973.28
2024.52
2074.27
2122.56
2169.45
2214.99
2259.21
2302.16
2343.88
2384.43
2423.84
2462.16
2499.38
468.78
656.169
859.505
1070.21
1284.41
1498.58
1709.67
1915.84
2115.66
2308.12
2492.51
2668.44
2835.75
2994.45
3144.86
3287.61
3423.65
3554.1
3679.95
3801.98
3920.69
4036.22
4148.58
4257.82
4363.97
4467.08
4567.21
4664.43
4758.78
4850.36
4939.22
5025.44
5109.11
5190.3
5269.1
5345.53
1044.59
1817.22
2590.77
3347.35
4074.18
4756.79
5386.54
5961.86
6483.23
6953.19
7375.48
7754.42
8094.41
8399.75
8674.86
8924.81
9155.38
9372.72
9582.59
9789.94
9998.19
10206.8
10414
10618.3
10818.3
11013.1
11202.2
11384.8
11561
11730.2
11892.6
12048
12196.7
12338.5
12473.8
12602.3
6296.58
10901.1
14553.1
17432.2
19656.1
21339.8
22598.6
23533.6
24225.1
24736.1
25114.3
25394.9
25604.2
25760.9
25879.4
25970.9
26045.7
26115.5
26193.9
26292.7
26417.5
26564.3
26727.7
26900.6
27079
27257.8
27435
27607.2
27773.7
27932.2
28082.8
28224
28356.7
28479.5
28594
28698.8
71643.3
74450.8
76458.4
77778.2
78564.2
78959.6
79076.6
79000.6
78794.9
78504.9
78162.6
77790.9
77405.4
77017.2
76633.7
76260.4
75900.7
75556.8
75229.9
74920.5
74628.3
74353.6
74095
73852
73623
73407.9
73205.2
73014.8
72835.4
72667
72508.2
72359.4
72219
72087.5
71963.3
71847.3
45828.8
10090.4
10177.6
10264.3
10351.6
10440
10531.4
10629.3
10739.5
10864.5
10991.7
11117.7
11238.8
11349.3
11441.4
11524.6
11633.8
11741.3
11843.1
11937.5
12024
12103
12175.2
12241.5
12302.4
12357.9
12406.6
12449.7
12488.2
12522.4
12553
12580.1
12604.2
12625.7
12644.7
12661.7
12676.7
12690
12701.6
12711.7
12720.3
12727.5
12733.3
12737.7
12740.6
12742.1
12742.1
12740.5
12737.3
12733.1
12728
12721.6
12713.5
12703.3
12690.7
12675.3
12656.8
12634.7
12608.6
12577.9
12542.3
12501
12453.3
12398.5
12335.6
12263.6
12181.2
12087.2
11979.8
11857
11716.9
11556.8
11374.7
11168.9
10940.8
10710.7
10521.5
10426.9
10417.4
10418.4
10418.9
10420
10429.2
10452.1
10487.4
10532.9
10584.9
10640.4
10698.2
10758.9
10826.1
10908.3
10999.5
11097.4
11194.7
11283.1
11351.8
11399.5
11408.9
11384
11332.4
11261.9
11179.8
11095.4
11026.6
10971.8
10927.6
10894.5
10874.9
10878.4
10915.8
10985
11062.9
11107
11119.1
11206.4
11915.5
12630
13227
13717.8
14131.8
14489.7
14805.2
15088.1
15345.5
15582.8
15803.9
16012
16210
16400
16584
16761.5
16930
17090.3
17243.1
17389.1
17528.7
17662.4
17790.7
17913.8
18032.1
18145.9
18255.3
18360.6
18462.1
18559.8
18653.9
18744.5
18831.8
18915.9
18996.8
19074.7
19149.7
19221.8
19291
19357.5
19421.4
19482.6
19541.2
19597.3
19650.9
19702
19750.8
19797.2
19841.4
19883.2
19922.9
19960.4
19995.7
20029
20060.2
20089.4
20116.6
20141.9
20165.4
20187
20206.8
20224.9
20241.3
20256
20269.1
20280.7
20290.6
20298.8
20305.3
20310.1
20313.2
20314.8
20314.9
20313.3
20310.3
20305.8
20299.7
20292.2
20283.3
20273
20261.2
20248.1
20233.5
20217.6
20200.4
20181.8
20161.8
20140.6
20118
20094.1
20068.9
20042.3
20014.5
19985.3
19954.8
19922.9
19889.7
19855.2
19819.2
19781.9
19743.1
19702.9
19661.2
19618
19573.3
19527
19479.2
19429.8
19378.7
19325.9
19271.3
19215
19156.8
19096.7
19034.8
18971.1
18905.6
18838.2
18769.2
18698.5
18626.2
18552.6
18477.9
18402.7
18327.3
18246.8
18161.5
18071.9
17978.2
17880.8
17779.9
17675.5
17567.7
17456.7
17342.7
17226.3
17108.8
16992.7
16882.4
16812
16842
16884.8
16923.6
16959.4
16993.4
17024.5
17052.7
17078.6
17102.9
17126.1
17148.4
17169.9
17191.1
17211
17230.3
17249.2
17268
17286.8
17305.7
17324.7
17343.8
17362.8
17381.9
17400.9
17419.9
17438.8
17457.6
17476.1
17494.4
17512.4
17529.9
17546.9
17563.2
17578.9
17593.7
17607.7
17620.6
17632.4
17642.9
17652.1
17660
17666.3
17671.5
17675.6
17678.2
17678.9
17677.6
17674.1
17668.3
17660
17649.1
17635.6
17619.5
17600.7
17579.3
17555.2
17528.5
17499.2
17467.3
17432.9
17396.1
17357
17315.6
17272.1
17226.5
17179.1
17129.9
17079.1
17026.9
16973.5
16919
16863.6
16807.7
16751.3
16694.7
16638.2
16581.9
16526.3
16471.4
16417.5
16364.9
16313.8
16264.5
16216.9
16171
16126.9
16084.8
16044.6
16006.5
15970.5
15936.6
15904.7
15874.9
15846.7
15820.2
15794.7
15770.2
15745.6
15720.9
15692.5
15665
15623.2
15593
15508
45848.1
8090.35
5446.3
4953.05
4514.21
4013.68
3500.09
3058.92
2815.34
2849.86
2939.57
3039.18
3137.67
3217.69
3267.89
3299.68
3318.24
3324.77
3321.89
3312.5
3298.84
3282.75
3265.77
3249.15
3233.69
3218.4
3201.35
3183.38
3165.13
3147.99
3132.04
3117.04
3103.16
3090.55
3079.31
3069.47
3061.06
3054.11
3048.61
3044.57
3042
3040.93
3041.37
3043.35
3046.92
3052.13
3059.06
3067.81
3078.96
3101.97
3137.26
3184.45
3243.11
3312.93
3393.69
3485.3
3587.72
3701
3825.21
3960.45
4106.82
4264.4
4433.19
4613.08
4803.8
5004.76
5215.01
5432.69
5654.47
5876.26
6092.99
6297.64
6479.88
6623.29
6702.19
6686.27
6551.42
6265.53
5785.81
5060.9
4120.2
3321.09
3445.11
3886.57
4179.99
4289.59
4188.06
3882.25
3417.49
2875.17
2406.19
2266.79
2268.64
2321.76
2395.83
2473.98
2523.18
2554.25
2570.58
2577.33
2580.73
2587.09
2601.25
2630.25
2725.9
2893.75
3073.79
3248.39
3426.34
3649.6
4039.35
4806.65
6571.96
8184.36
8921.92
9265.98
9450.74
9480.49
9378.9
9192.13
8963.27
8720.76
8481.71
8255.32
8045.94
7854.86
7681.68
7525.16
7383.78
7255.93
7140.04
7034.58
6938.19
6849.77
6768.37
6693.17
6623.45
6558.56
6497.96
6441.18
6387.81
6337.47
6289.84
6244.63
6201.59
6160.48
6121.11
6083.31
6046.91
6011.79
5977.83
5944.91
5912.96
5881.89
5851.64
5822.15
5793.38
5765.3
5737.87
5711.08
5684.91
5659.36
5634.43
5610.11
5586.43
5563.38
5541.01
5519.32
5498.34
5478.12
5458.69
5440.09
5422.37
5405.62
5389.88
5375.24
5361.79
5349.63
5338.89
5329.6
5322.94
5319.2
5316.01
5312.79
5309.53
5306.23
5302.89
5299.49
5296.04
5292.53
5288.96
5285.31
5281.59
5277.78
5273.89
5269.91
5265.84
5261.67
5257.4
5253.03
5248.55
5243.96
5239.26
5234.45
5229.51
5224.45
5219.27
5213.95
5208.5
5202.92
5197.19
5191.33
5185.32
5179.19
5172.91
5166.51
5159.97
5153.31
5146.52
5139.62
5132.6
5125.46
5118.2
5110.83
5103.35
5095.77
5088.1
5080.36
5072.58
5064.78
5056.97
5049.19
5041.44
5033.71
5026
5018.32
5010.65
5002.95
4995.06
4986.7
4977.06
4964.48
4949.45
4933.84
4917.86
4901.41
4884.43
4866.92
4848.88
4830.28
4811.05
4790.94
4769.6
4746.92
4723.05
4707.29
4703.28
4702.85
4703.25
4703.56
4703.37
4702.95
4702.45
4701.9
4701.39
4701
4700.84
4701
4701.3
4699.58
4696.71
4693.67
4690.94
4688.73
4687.18
4686.38
4686.34
4687.09
4688.62
4690.95
4694.08
4698.01
4702.74
4708.29
4714.67
4721.92
4730.05
4739.09
4749.05
4759.95
4771.81
4784.65
4798.48
4813.31
4829.16
4846.07
4864.01
4883.12
4907.78
4940.43
4977.75
5018.37
5061.48
5107.01
5154.54
5203.86
5254.66
5306.67
5359.65
5413.4
5467.75
5522.52
5577.58
5632.78
5688
5743.11
5797.99
5852.53
5906.61
5960.14
6012.99
6065.07
6116.26
6166.47
6215.58
6263.48
6310.07
6355.23
6398.84
6440.8
6480.95
6519.2
6555.42
6589.47
6621.25
6650.63
6677.51
6701.86
6723.56
6742.68
6759.26
6773.41
6785.21
6794.81
6802.31
6807.94
6811.88
6814.49
6816.08
6817.25
6818.47
6820.73
6824.96
6833.16
6846.11
6869.28
6897.22
6956.95
7009.07
7220.77
45853.9
8851.95
4263.21
3458.48
2973.88
2519.26
2170.6
2008.76
2107.26
2261.06
2403.63
2515.78
2594.79
2640.91
2655.96
2646.27
2618.46
2578.19
2530.07
2477.51
2423.04
2368.51
2315.29
2264.34
2216.27
2171.14
2128.71
2089.07
2052.53
2018.6
1987.09
1957.87
1930.84
1905.89
1882.9
1861.78
1842.41
1824.7
1808.58
1793.98
1780.84
1769.12
1758.78
1749.8
1742.17
1735.89
1730.98
1727.47
1725.49
1725.87
1730.93
1740.76
1755.74
1776.35
1803.1
1836.62
1877.59
1926.81
1985.16
2053.63
2133.3
2225.37
2331.1
2451.77
2588.64
2742.82
2915.1
3105.4
3312.03
3531.37
3758.61
3988.37
4214.07
4426.25
4611.03
4750.8
4827.92
4827.16
4732.29
4526.2
4202.93
3795.1
3389.03
3067.63
2907.34
2862.4
2750.81
2472.82
2070.9
1659.94
1395.13
1370.61
1440.48
1544.5
1642.83
1724.68
1783.65
1818.9
1832.26
1828.32
1814.09
1799.7
1797.6
1832.41
1958.14
2171.94
2487.15
2998.01
3783.4
5121.67
6346.39
6962.28
7321.89
7497.54
7484.03
7374.68
7206.24
6976.05
6700.14
6401.74
6101.72
5815.6
5552.78
5317.07
5108.4
4924.72
4763.29
4621.25
4495.99
4385.14
4286.66
4198.8
4120.07
4049.21
3985.15
3926.98
3873.94
3825.37
3780.71
3739.5
3701.33
3665.86
3632.78
3601.84
3572.81
3545.5
3519.75
3495.39
3472.31
3450.39
3429.53
3409.66
3390.69
3372.58
3355.25
3338.68
3322.82
3307.64
3293.12
3279.22
3265.93
3253.24
3241.14
3229.62
3218.66
3208.27
3198.45
3189.2
3180.51
3172.39
3164.85
3157.89
3151.53
3145.76
3140.6
3136.08
3132.17
3128.92
3126.42
3124.99
3123.8
3122.74
3121.73
3120.74
3119.77
3118.82
3117.88
3116.95
3116.03
3115.12
3114.2
3113.29
3112.37
3111.44
3110.51
3109.57
3108.62
3107.66
3106.68
3105.69
3104.69
3103.68
3102.65
3101.62
3100.57
3099.51
3098.43
3097.34
3096.24
3095.12
3094
3092.87
3091.73
3090.59
3089.45
3088.32
3087.19
3086.08
3084.98
3083.9
3082.83
3081.77
3080.72
3079.68
3078.65
3077.62
3076.59
3075.57
3074.55
3073.53
3072.52
3071.49
3070.44
3069.3
3068.03
3066.6
3064.95
3063.02
3060.72
3057.94
3054.56
3050.48
3045.85
3040.9
3035.84
3030.37
3024.29
3017.58
3010.22
3002.14
2993.23
2983.15
2971.29
2956.89
2941.73
2927.47
2915.36
2904.46
2893.86
2882.94
2871.51
2860.4
2849.35
2838.25
2827.1
2815.91
2804.73
2793.6
2782.45
2771.21
2759.99
2748.9
2738.04
2727.48
2717.26
2707.44
2698.03
2689.08
2680.6
2672.61
2665.1
2658.11
2651.62
2645.67
2640.25
2635.39
2631.1
2627.39
2624.27
2621.75
2619.85
2618.57
2617.93
2617.92
2618.57
2619.87
2621.85
2624.52
2628.1
2632.95
2641.13
2651.92
2664.76
2679.45
2695.96
2714.22
2734.08
2755.44
2778.19
2802.22
2827.46
2853.81
2881.2
2909.53
2938.74
2968.76
2999.49
3030.89
3062.86
3095.34
3128.26
3161.54
3195.11
3228.9
3262.83
3296.82
3330.8
3364.69
3398.4
3431.86
3464.96
3497.64
3529.8
3561.33
3592.15
3622.16
3651.28
3679.44
3706.56
3732.59
3757.39
3780.95
3803.28
3824.4
3844.36
3863.25
3881.21
3898.42
3915.14
3931.7
3948.52
3966.26
3985.71
4007.95
4034.3
4067.32
4107.42
4165.29
4232.73
4373.45
45843.1
10714.8
4809.69
3246.54
2599.22
2215.81
2078.53
2187.47
2354.05
2500.28
2599
2645.52
2645.76
2610.78
2552.48
2480.33
2401.09
2319.4
2238.47
2160.4
2086.45
2017.3
1953.25
1894.32
1840.38
1791.18
1746.37
1705.67
1668.63
1634.59
1603.22
1574.33
1547.68
1523.09
1500.38
1479.39
1460
1442.08
1425.54
1410.31
1396.3
1383.47
1371.76
1361.16
1351.62
1343.15
1335.73
1329.37
1324.11
1320.1
1318.15
1318.42
1321.14
1326.57
1335.06
1347.02
1362.96
1383.45
1409.21
1441.05
1479.95
1527.02
1583.54
1650.98
1730.94
1825.16
1935.42
2063.43
2210.46
2376.49
2559.21
2754.22
2956.33
3159.74
3356.82
3537.37
3689.55
3801.63
3862.71
3863.49
3799.23
3671.28
3480.03
3225.11
2935.23
2658.72
2402.66
2131.06
1836.45
1563.5
1385.87
1345.15
1395.24
1484.64
1583.62
1678.15
1758.05
1816.18
1850.65
1865.06
1869.35
1889.12
1963.71
2152.38
2543.13
3085.59
3865.99
4966.93
5785.83
6242.33
6398.82
6378.52
6293.57
6155.18
5963.29
5738.07
5488.26
5219.77
4943.85
4674.09
4422.3
4195.69
3996.44
3823.33
3673.68
3544.45
3432.71
3335.82
3251.5
3177.79
3113.06
3055.92
3005.24
2960.05
2919.57
2883.13
2850.18
2820.26
2792.99
2768.03
2745.11
2723.98
2704.44
2686.33
2669.48
2653.77
2639.1
2625.35
2612.46
2600.35
2588.95
2578.21
2568.09
2558.55
2549.54
2541.05
2533.04
2525.5
2518.39
2511.71
2505.44
2499.57
2494.08
2488.98
2484.24
2479.86
2475.84
2472.16
2468.83
2465.84
2463.18
2460.85
2458.85
2457.18
2455.82
2454.78
2454.05
2453.62
2453.63
2453.75
2453.92
2454.13
2454.36
2454.62
2454.89
2455.19
2455.5
2455.83
2456.18
2456.54
2456.91
2457.3
2457.7
2458.11
2458.53
2458.96
2459.41
2459.86
2460.34
2460.82
2461.33
2461.85
2462.4
2462.97
2463.57
2464.19
2464.85
2465.54
2466.27
2467.04
2467.85
2468.71
2469.63
2470.59
2471.61
2472.69
2473.84
2475.04
2476.32
2477.67
2479.09
2480.57
2482.11
2483.7
2485.34
2487.01
2488.71
2490.43
2492.17
2493.92
2495.69
2497.51
2499.44
2501.25
2502.88
2504.28
2505.42
2506.24
2506.67
2506.67
2506.14
2505.04
2503.34
2501.02
2497.97
2494.19
2489.67
2484.38
2478.2
2471.02
2462.61
2452.56
2440.33
2426.83
2412.33
2397.54
2383
2368.71
2354.45
2339.98
2325.2
2309.89
2294.23
2278.26
2262.03
2245.6
2229.03
2212.33
2195.52
2179.03
2162.94
2147.19
2131.73
2116.56
2101.72
2087.28
2073.25
2059.64
2046.48
2033.77
2021.52
2009.73
1998.41
1987.57
1977.22
1967.36
1957.99
1949.13
1940.77
1932.92
1925.58
1918.75
1912.44
1906.64
1901.35
1896.59
1892.34
1888.62
1885.45
1882.86
1881.1
1880.99
1882.13
1884.44
1887.9
1892.51
1898.23
1905.02
1912.83
1921.63
1931.38
1942.04
1953.57
1965.93
1979.07
1992.96
2007.56
2022.83
2038.72
2055.18
2072.19
2089.68
2107.62
2125.97
2144.67
2163.68
2182.96
2202.45
2222.12
2241.9
2261.75
2281.63
2301.48
2321.26
2340.91
2360.4
2379.67
2398.69
2417.43
2435.86
2453.94
2471.67
2489.03
2506.02
2522.68
2539.06
2555.22
2571.3
2587.45
2603.88
2620.89
2638.9
2658.41
2680.15
2705.07
2734.65
2770.19
2816.49
2873.07
2964.36
45821.7
11238.6
5345.53
3484.6
2745.76
2478.87
2579.83
2743.27
2859.92
2899.92
2870.89
2791.83
2685.15
2566.31
2444.93
2326.34
2213.47
2108.1
2011.18
1922.98
1843.3
1771.65
1707.39
1649.82
1598.24
1552.01
1510.52
1473.22
1439.48
1408.81
1380.84
1355.26
1331.79
1310.21
1290.32
1271.97
1255.01
1239.32
1224.8
1211.38
1198.99
1187.57
1177.07
1167.47
1158.75
1150.87
1143.84
1137.65
1132.31
1127.9
1124.71
1122.85
1122.42
1123.57
1126.48
1131.37
1138.53
1148.32
1161.15
1177.56
1198.19
1223.8
1255.33
1293.89
1340.79
1397.53
1465.83
1547.53
1644.51
1758.47
1890.24
2038.71
2200.48
2371.14
2545.94
2719.02
2882.88
3028.77
3147.53
3230.79
3272.66
3270.92
3224.35
3126.58
2968.93
2754.74
2504.02
2239.46
1982.66
1760.75
1602.61
1528.82
1536.88
1602.06
1702.03
1814.19
1919.86
2009.38
2081.3
2145.89
2224.43
2394.97
2699.03
3124.9
3815
4654.96
5303.14
5649.75
5730.35
5671.26
5538.85
5370.63
5183.09
4975.13
4749.65
4514.4
4274.93
4037.59
3810.96
3603.23
3419.09
3259.25
3122.02
3004.75
2904.65
2819.11
2745.82
2682.77
2628.3
2581.01
2539.74
2503.54
2471.62
2443.34
2418.16
2395.65
2375.43
2357.2
2340.71
2325.73
2312.1
2299.64
2288.23
2277.76
2268.13
2259.26
2251.07
2243.51
2236.51
2230.03
2224.03
2218.48
2213.34
2208.59
2204.21
2200.17
2196.46
2193.06
2189.95
2187.13
2184.58
2182.3
2180.26
2178.48
2176.93
2175.61
2174.51
2173.63
2172.96
2172.5
2172.23
2172.15
2172.26
2172.56
2173.03
2173.68
2174.49
2175.52
2176.64
2177.8
2178.97
2180.16
2181.37
2182.58
2183.81
2185.05
2186.31
2187.57
2188.84
2190.13
2191.42
2192.73
2194.05
2195.38
2196.73
2198.09
2199.47
2200.87
2202.29
2203.74
2205.21
2206.7
2208.24
2209.8
2211.41
2213.06
2214.75
2216.49
2218.29
2220.14
2222.06
2224.04
2226.09
2228.22
2230.42
2232.7
2235.06
2237.51
2240.05
2242.69
2245.45
2248.34
2251.32
2254.35
2257.43
2260.55
2263.7
2266.86
2270.01
2273.11
2276.14
2279.07
2281.83
2284.41
2286.79
2288.93
2290.8
2292.35
2293.51
2294.23
2294.44
2294.06
2293.02
2291.22
2288.5
2284.88
2280.35
2274.8
2268.03
2259.87
2249.96
2237.92
2224.47
2209.76
2194.15
2178
2161.58
2145.02
2128.31
2111.39
2094.22
2076.45
2058.21
2039.64
2020.8
2001.79
1982.71
1963.61
1944.54
1925.54
1906.67
1887.98
1869.45
1851.19
1833.45
1816.19
1799.36
1782.99
1767.08
1751.65
1736.7
1722.23
1708.25
1694.75
1681.76
1669.25
1657.24
1645.72
1634.69
1624.14
1614.08
1604.51
1595.41
1586.79
1578.65
1570.98
1563.78
1557.04
1550.77
1544.96
1539.67
1535.17
1531.5
1528.61
1526.51
1525.19
1524.64
1524.85
1525.8
1527.47
1529.85
1532.91
1536.64
1541.01
1546
1551.59
1557.74
1564.44
1571.65
1579.34
1587.5
1596.07
1605.05
1614.39
1624.06
1634.03
1644.26
1654.74
1665.41
1676.25
1687.23
1698.32
1709.48
1720.68
1731.89
1743.1
1754.27
1765.38
1776.42
1787.38
1798.25
1809.03
1819.73
1830.36
1840.94
1851.53
1862.18
1872.99
1884.06
1895.56
1907.7
1920.74
1935.06
1951.14
1969.64
1991.49
2017.82
2051.15
2092.42
2151.36
45813.1
9610.85
4729.6
3305.63
2921.86
3054.71
3239
3325.7
3287.98
3156.06
2978.15
2789.37
2606.88
2436.54
2281.55
2141.75
2016.35
1904.54
1805.48
1718.16
1641.38
1573.9
1514.54
1462.18
1415.86
1374.72
1338.05
1305.23
1275.71
1249.03
1224.81
1202.72
1182.52
1163.97
1146.91
1131.18
1116.65
1103.22
1090.8
1079.31
1068.71
1058.95
1049.98
1041.77
1034.32
1027.58
1021.56
1016.25
1011.66
1007.81
1004.87
1002.89
1001.91
1002.02
1003.3
1005.9
1009.98
1015.73
1023.42
1033.37
1045.97
1061.71
1081.2
1105.18
1134.57
1170.48
1214.22
1267.33
1331.52
1408.65
1500.47
1608.01
1730.65
1865.85
2010.13
2159.71
2309.97
2455.03
2587.83
2700.91
2787.47
2842.6
2863.21
2846.18
2787.12
2681.23
2529.21
2343.07
2145.76
1963.39
1813.95
1720.99
1711.74
1785.91
1914.76
2059.58
2202.22
2338.83
2474.73
2639.47
2877.96
3217.73
3756.88
4389.55
4901.3
5175.84
5234.22
5164.5
5026.34
4856.17
4667.57
4468.98
4264.68
4056.06
3845.96
3638.32
3437.73
3249.99
3080.51
2931.97
2804.21
2695.46
2603.35
2525.45
2459.53
2403.6
2356
2315.31
2280.37
2250.22
2224.06
2201.28
2181.33
2163.8
2148.34
2134.65
2122.49
2111.67
2102.01
2093.37
2085.63
2078.68
2072.45
2066.85
2061.82
2057.31
2053.26
2049.63
2046.39
2043.5
2040.94
2038.68
2036.71
2035.01
2033.55
2032.32
2031.32
2030.54
2029.95
2029.55
2029.34
2029.3
2029.43
2029.72
2030.17
2030.77
2031.51
2032.38
2033.39
2034.52
2035.77
2037.13
2038.61
2040.19
2041.87
2043.66
2045.54
2047.51
2049.51
2051.52
2053.53
2055.55
2057.57
2059.59
2061.61
2063.62
2065.63
2067.64
2069.65
2071.65
2073.65
2075.65
2077.64
2079.65
2081.65
2083.67
2085.7
2087.73
2089.79
2091.86
2093.95
2096.07
2098.22
2100.41
2102.64
2104.92
2107.26
2109.64
2112.07
2114.55
2117.08
2119.67
2122.32
2125.04
2127.83
2130.69
2133.63
2136.64
2139.72
2142.87
2146.08
2149.35
2152.67
2156.03
2159.42
2162.85
2166.28
2169.71
2173.12
2176.45
2179.68
2182.72
2185.52
2188.1
2190.47
2192.6
2194.42
2195.9
2196.96
2197.53
2197.54
2196.9
2195.53
2193.32
2190.17
2185.98
2180.66
2174
2165.69
2155.51
2143.38
2129.67
2114.59
2098.44
2081.47
2063.89
2045.85
2027.46
2008.77
1989.78
1970.47
1950.74
1930.66
1910.31
1889.79
1869.19
1848.62
1828.16
1807.87
1787.59
1767.35
1747.27
1727.38
1707.76
1688.46
1669.48
1650.86
1632.78
1615.24
1598.19
1581.65
1565.61
1550.08
1535.07
1520.57
1506.57
1493.08
1480.08
1467.58
1455.55
1444.01
1432.94
1422.34
1412.21
1402.53
1393.3
1384.51
1376.17
1368.26
1360.77
1353.72
1347.17
1341.22
1335.85
1331.06
1326.85
1323.21
1320.14
1317.63
1315.67
1314.25
1313.36
1312.99
1313.13
1313.75
1314.84
1316.39
1318.38
1320.78
1323.58
1326.75
1330.28
1334.13
1338.3
1342.74
1347.44
1352.37
1357.51
1362.83
1368.31
1373.93
1379.65
1385.45
1391.32
1397.24
1403.17
1409.12
1415.05
1420.97
1426.86
1432.73
1438.57
1444.4
1450.22
1456.07
1461.98
1468
1474.19
1480.64
1487.47
1494.82
1502.9
1511.94
1522.29
1534.41
1548.89
1566.57
1588.84
1616.71
1654.44
45815.1
8238.6
3810.94
3171.99
3486.54
3757.37
3807.95
3667.11
3422.67
3151.4
2889.05
2647.37
2431.3
2242.51
2079.66
1938.29
1815.86
1709.85
1618.27
1539.23
1470.91
1411.64
1359.99
1314.73
1274.85
1239.51
1207.99
1179.74
1154.28
1131.2
1110.21
1091.02
1073.42
1057.23
1042.3
1028.51
1015.75
1003.95
993.026
982.939
973.64
965.096
957.276
950.157
943.717
937.939
932.809
928.318
924.467
921.275
918.854
917.21
916.375
916.39
917.316
919.229
922.229
926.441
932.023
939.174
948.143
959.241
972.86
989.488
1009.74
1034.38
1064.34
1100.76
1145
1198.61
1263.3
1340.69
1431.73
1535.89
1651.17
1774.92
1904.14
2034.99
2162.56
2280.91
2383.74
2465.19
2520.45
2545.71
2537.82
2494.38
2415.3
2305.4
2176.77
2047.06
1934.37
1864.29
1885.1
2004.72
2183.96
2384.55
2587.24
2791.14
3013.95
3310.35
3741.16
4221.54
4607.1
4814.4
4855.09
4787.15
4657.15
4494.2
4313.22
4124.21
3932.76
3742.16
3554.06
3369.65
3191.02
3021.53
2865.39
2726.14
2605.2
2501.99
2414.79
2341.53
2280.12
2228.64
2185.43
2149.06
2118.35
2092.31
2070.16
2051.25
2035.04
2021.12
2009.12
1998.77
1989.83
1982.09
1975.4
1969.62
1964.63
1960.34
1956.66
1953.53
1950.88
1948.67
1946.84
1945.36
1944.2
1943.33
1942.71
1942.34
1942.19
1942.24
1942.49
1942.91
1943.51
1944.26
1945.17
1946.22
1947.4
1948.71
1950.15
1951.7
1953.36
1955.12
1956.99
1958.95
1961
1963.13
1965.35
1967.63
1969.99
1972.42
1974.9
1977.45
1980.04
1982.69
1985.39
1988.11
1990.82
1993.53
1996.22
1998.91
2001.58
2004.24
2006.89
2009.52
2012.13
2014.73
2017.3
2019.87
2022.42
2024.94
2027.45
2029.93
2032.4
2034.85
2037.28
2039.7
2042.11
2044.52
2046.93
2049.34
2051.75
2054.17
2056.61
2059.06
2061.53
2064.01
2066.52
2069.06
2071.62
2074.22
2076.86
2079.54
2082.27
2085.04
2087.85
2090.71
2093.6
2096.51
2099.44
2102.35
2105.27
2108.2
2111.15
2114.09
2117.02
2119.92
2122.76
2125.52
2128.16
2130.65
2132.95
2135.07
2136.96
2138.59
2139.89
2140.8
2141.26
2141.16
2140.44
2138.97
2136.68
2133.44
2129.15
2123.62
2116.67
2108.07
2097.29
2084.95
2070.97
2055.66
2039.26
2021.95
2003.86
1985.14
1965.88
1946.18
1926.1
1905.68
1884.91
1863.82
1842.48
1820.97
1799.37
1777.77
1756.25
1734.89
1713.71
1692.7
1671.87
1651.3
1631.05
1611.09
1591.35
1571.88
1552.76
1534.02
1515.69
1497.85
1480.56
1463.79
1447.55
1431.84
1416.65
1401.98
1387.81
1374.15
1360.97
1348.27
1336.05
1324.3
1313
1302.15
1291.74
1281.76
1272.21
1263.07
1254.35
1246.02
1238.08
1230.54
1223.47
1216.86
1210.7
1205
1199.76
1194.96
1190.61
1186.69
1183.2
1180.14
1177.48
1175.23
1173.38
1171.9
1170.8
1170.05
1169.64
1169.55
1169.78
1170.29
1171.08
1172.13
1173.41
1174.91
1176.61
1178.49
1180.52
1182.7
1184.99
1187.39
1189.86
1192.41
1195
1197.62
1200.26
1202.91
1205.56
1208.2
1210.84
1213.47
1216.09
1218.73
1221.4
1224.13
1226.94
1229.9
1233.06
1236.51
1240.35
1244.72
1249.8
1255.82
1263.09
1272.02
1283.17
1297.36
1315.34
1338.98
45823.4
7920.36
3810.43
4030.71
4347.31
4315.12
4038.8
3672.07
3306.5
2972.08
2677.29
2422.96
2206.25
2023.01
1868.47
1738.81
1629.8
1537.22
1458.58
1391.47
1333.86
1284.03
1240.58
1202.39
1168.56
1138.37
1111.24
1086.71
1064.41
1044.03
1025.34
1008.13
992.238
977.541
963.924
951.296
939.585
928.732
918.693
909.435
900.929
893.149
886.072
879.672
873.928
868.818
864.325
860.436
857.148
854.471
852.49
851.2
850.617
850.769
851.694
853.443
856.082
859.694
864.383
870.278
877.542
886.38
897.047
909.87
925.261
943.741
965.968
992.763
1025.13
1064.28
1111.63
1168.73
1236.94
1316.88
1407.94
1508.54
1616.68
1729.87
1844.84
1957.28
2062.09
2153.87
2227.47
2278.46
2303.36
2299.94
2268
2210.58
2135.21
2054.21
1989.08
1979.36
2075.5
2266.36
2508.24
2767.56
3035.93
3328.07
3712.37
4128.21
4426.07
4569.35
4579.66
4505.6
4382.75
4230.53
4060.16
3881.07
3700.39
3522.18
3348.62
3180.81
3019.42
2865.55
2721.47
2590.27
2474.36
2374.45
2289.77
2218.75
2159.56
2110.4
2069.63
2035.83
2007.78
1984.46
1965.06
1948.9
1935.43
1924.2
1914.84
1907.07
1900.64
1895.34
1891.02
1887.53
1884.76
1882.61
1881
1879.86
1879.15
1878.8
1878.77
1879.04
1879.57
1880.32
1881.29
1882.44
1883.76
1885.24
1886.86
1888.61
1890.49
1892.49
1894.6
1896.81
1899.12
1901.53
1904.02
1906.6
1909.26
1911.99
1914.8
1917.66
1920.59
1923.57
1926.61
1929.69
1932.81
1935.97
1939.16
1942.39
1945.65
1948.94
1952.25
1955.57
1958.91
1962.23
1965.53
1968.8
1972.04
1975.25
1978.42
1981.55
1984.64
1987.69
1990.7
1993.65
1996.57
1999.43
2002.25
2005.02
2007.72
2010.38
2012.97
2015.52
2018.01
2020.45
2022.84
2025.19
2027.49
2029.76
2031.98
2034.16
2036.31
2038.42
2040.49
2042.55
2044.59
2046.62
2048.65
2050.69
2052.72
2054.77
2056.82
2058.88
2060.95
2063.03
2065.11
2067.19
2069.26
2071.33
2073.4
2075.47
2077.54
2079.6
2081.64
2083.65
2085.6
2087.47
2089.25
2090.93
2092.47
2093.83
2094.97
2095.81
2096.29
2096.34
2095.87
2094.79
2092.99
2090.34
2086.73
2081.98
2075.98
2068.43
2059.15
2048.03
2035.29
2021.08
2005.6
1989.05
1971.58
1953.27
1934.22
1914.54
1894.31
1873.64
1852.59
1831.23
1809.58
1787.69
1765.65
1743.53
1721.4
1699.34
1677.41
1655.68
1634.16
1612.89
1591.91
1571.28
1551.03
1531.16
1511.64
1492.51
1473.78
1455.34
1437.22
1419.5
1402.18
1385.37
1369.11
1353.38
1338.18
1323.49
1309.3
1295.61
1282.4
1269.66
1257.38
1245.55
1234.17
1223.21
1212.67
1202.54
1192.81
1183.47
1174.51
1165.92
1157.69
1149.8
1142.28
1135.14
1128.38
1121.99
1115.97
1110.31
1105.02
1100.07
1095.48
1091.22
1087.3
1083.71
1080.44
1077.47
1074.81
1072.44
1070.34
1068.51
1066.93
1065.6
1064.49
1063.59
1062.89
1062.37
1062.03
1061.83
1061.77
1061.83
1061.99
1062.25
1062.58
1062.97
1063.4
1063.88
1064.38
1064.89
1065.41
1065.94
1066.46
1066.99
1067.52
1068.06
1068.63
1069.24
1069.93
1070.72
1071.67
1072.83
1074.27
1076.11
1078.45
1081.47
1085.38
1090.45
1097.06
1105.71
1116.92
1131.47
45828.4
8135.59
5051.64
5281.83
5011.84
4520.22
3985.94
3495.63
3070.51
2712.08
2414.55
2169.97
1970.02
1806.79
1673.24
1563.4
1472.24
1396.07
1331.79
1276.86
1229.49
1188.19
1151.8
1119.43
1090.37
1064.08
1040.11
1018.15
997.915
979.213
961.873
945.763
930.776
916.822
903.83
891.738
880.501
870.092
860.487
851.672
843.631
836.335
829.752
823.847
818.585
813.934
809.874
806.393
803.49
801.167
799.491
798.456
798.07
798.356
799.342
801.068
803.58
806.941
811.223
816.519
822.941
830.63
839.762
850.558
863.302
878.356
896.184
917.376
942.675
973.004
1009.48
1053.41
1106.13
1168.65
1241.18
1323.05
1413.03
1509.52
1610.37
1712.65
1812.56
1905.69
1987.45
2053.52
2100.34
2125.49
2128.35
2110.79
2078.45
2044.7
2043.57
2127.22
2322.61
2595.98
2902.89
3223.98
3585.87
4018.75
4313.81
4435.88
4413.86
4317.19
4187.53
4039
3876.97
3707.05
3535.36
3366.26
3202.63
3045.88
2896.54
2754.89
2621.55
2498.03
2386.47
2288.57
2204.69
2134.04
2075.2
2026.58
1986.6
1953.85
1927.09
1905.29
1887.57
1873.22
1861.64
1852.36
1844.99
1839.2
1834.75
1831.41
1829.01
1827.41
1826.48
1826.12
1826.25
1826.8
1827.71
1828.94
1830.44
1832.17
1834.12
1836.25
1838.53
1840.97
1843.52
1846.19
1848.95
1851.81
1854.74
1857.76
1860.85
1864.01
1867.24
1870.53
1873.88
1877.29
1880.75
1884.27
1887.83
1891.44
1895.09
1898.78
1902.5
1906.26
1910.03
1913.83
1917.63
1921.45
1925.26
1929.08
1932.89
1936.69
1940.47
1944.23
1947.96
1951.65
1955.29
1958.87
1962.38
1965.83
1969.2
1972.5
1975.71
1978.84
1981.88
1984.83
1987.69
1990.44
1993.09
1995.64
1998.09
2000.44
2002.7
2004.87
2006.94
2008.92
2010.8
2012.6
2014.32
2015.95
2017.5
2018.98
2020.39
2021.73
2023.02
2024.26
2025.47
2026.65
2027.81
2028.96
2030.1
2031.24
2032.37
2033.51
2034.65
2035.79
2036.95
2038.13
2039.33
2040.55
2041.8
2043.07
2044.34
2045.6
2046.86
2048.09
2049.27
2050.38
2051.41
2052.32
2053.07
2053.62
2053.89
2053.82
2053.33
2052.33
2050.73
2048.4
2045.23
2041.06
2035.75
2029.03
2020.88
2010.81
1999.33
1986.3
1971.9
1956.31
1939.66
1922.06
1903.58
1884.31
1864.35
1843.79
1822.73
1801.26
1779.46
1757.42
1735.17
1712.8
1690.36
1667.94
1645.59
1623.39
1601.4
1579.66
1558.2
1537.08
1516.32
1495.96
1476.04
1456.55
1437.52
1418.95
1400.85
1383.18
1365.95
1349.06
1332.49
1316.28
1300.54
1285.34
1270.65
1256.47
1242.78
1229.57
1216.83
1204.54
1192.69
1181.27
1170.26
1159.66
1149.46
1139.63
1130.17
1121.08
1112.32
1103.91
1095.81
1088.01
1080.52
1073.34
1066.48
1059.92
1053.67
1047.72
1042.05
1036.68
1031.59
1026.77
1022.22
1017.94
1013.92
1010.14
1006.6
1003.3
1000.22
997.351
994.689
992.222
989.938
987.827
985.877
984.076
982.413
980.874
979.449
978.125
976.89
975.731
974.638
973.6
972.605
971.644
970.708
969.791
968.886
967.988
967.096
966.209
965.33
964.465
963.624
962.82
962.073
961.408
960.86
960.472
960.299
960.412
960.903
961.884
963.508
965.959
969.489
974.418
981.084
989.788
45831.2
8863.86
6930.33
6185.56
5268.66
4453.49
3769.86
3213.61
2768.59
2416.95
2141.28
1925.4
1755.52
1620.6
1512.2
1423.93
1351.03
1289.94
1237.96
1193.13
1153.92
1119.14
1087.96
1059.7
1033.86
1010.06
988.008
967.485
948.326
930.402
913.616
897.891
883.163
869.381
856.504
844.501
833.366
823.11
813.727
805.204
797.509
790.598
784.423
778.933
774.081
769.826
766.138
762.998
760.393
758.321
756.826
755.923
755.612
755.928
756.912
758.591
761.005
764.205
768.249
773.207
779.166
786.226
794.516
804.191
815.452
828.557
843.84
861.733
882.792
907.723
937.409
972.913
1015.4
1065.92
1125.05
1192.71
1268.29
1350.82
1438.92
1530.64
1623.32
1713.57
1797.65
1871.77
1932.65
1977.96
2006.9
2021.17
2028.44
2054.04
2151.06
2360.09
2652.86
2991.54
3358.52
3754.07
4137.51
4344.88
4349.88
4234.65
4079.94
3917.94
3753.49
3586.69
3420.32
3257.31
3100.12
2950.33
2808.71
2675.42
2550.43
2433.98
2327.02
2231
2147.1
2075.53
2015.57
1965.96
1925.32
1892.26
1865.56
1844.14
1827.09
1813.63
1803.14
1795.1
1789.08
1784.72
1781.75
1779.93
1779.05
1778.98
1779.56
1780.69
1782.29
1784.27
1786.58
1789.16
1791.97
1794.96
1798.13
1801.42
1804.84
1808.36
1811.96
1815.63
1819.36
1823.13
1826.95
1830.81
1834.7
1838.62
1842.58
1846.57
1850.6
1854.66
1858.75
1862.88
1867.04
1871.21
1875.41
1879.62
1883.85
1888.09
1892.33
1896.56
1900.79
1905.01
1909.2
1913.36
1917.47
1921.54
1925.55
1929.5
1933.37
1937.16
1940.86
1944.47
1947.98
1951.39
1954.69
1957.88
1960.95
1963.91
1966.74
1969.44
1972.01
1974.45
1976.75
1978.92
1980.96
1982.87
1984.65
1986.31
1987.86
1989.3
1990.63
1991.85
1992.97
1993.99
1994.92
1995.77
1996.54
1997.24
1997.88
1998.47
1999.02
1999.53
2000.02
2000.48
2000.94
2001.38
2001.83
2002.29
2002.76
2003.25
2003.76
2004.3
2004.87
2005.48
2006.12
2006.8
2007.5
2008.21
2008.93
2009.64
2010.32
2010.96
2011.54
2012.02
2012.37
2012.57
2012.55
2012.26
2011.62
2010.56
2008.99
2006.8
2003.89
2000.1
1995.32
1989.3
1982
1972.95
1962.56
1950.68
1937.42
1922.91
1907.24
1890.5
1872.77
1854.11
1834.63
1814.4
1793.54
1772.13
1750.29
1728.11
1705.67
1683.06
1660.35
1637.6
1614.89
1592.29
1569.86
1547.66
1525.75
1504.17
1482.97
1462.18
1441.83
1421.95
1402.57
1383.68
1365.3
1347.44
1330.1
1313.26
1296.93
1281.08
1265.66
1250.54
1235.75
1221.46
1207.67
1194.37
1181.54
1169.17
1157.24
1145.74
1134.66
1123.98
1113.69
1103.77
1094.22
1085.02
1076.16
1067.63
1059.4
1051.48
1043.84
1036.44
1029.31
1022.44
1015.83
1009.48
1003.37
997.51
991.883
986.488
981.318
976.369
971.633
967.105
962.779
958.648
954.705
950.944
947.357
943.936
940.673
937.562
934.592
931.756
929.045
926.449
923.961
921.57
919.268
917.045
914.892
912.799
910.76
908.764
906.804
904.873
902.964
901.073
899.193
897.323
895.46
893.604
891.758
889.926
888.115
886.336
884.604
882.939
881.366
879.916
878.633
877.567
876.785
876.369
876.428
877.089
878.525
880.942
884.562
889.468
45835.3
10714.9
8318.02
6546.32
5193.72
4189.57
3431.62
2863.72
2442.75
2130.97
1898.02
1721.47
1585.35
1478.42
1392.79
1322.87
1264.64
1215.23
1172.51
1134.95
1101.39
1071
1043.16
1017.39
993.371
970.853
949.663
929.675
910.798
892.967
876.136
860.269
845.339
831.326
818.215
806.019
794.793
784.553
775.285
766.959
759.523
752.923
747.097
741.983
737.525
733.67
730.374
727.598
725.315
723.517
722.218
721.482
721.267
721.611
722.557
724.143
726.412
729.429
733.255
737.949
743.584
750.24
758.015
767.027
777.42
789.384
803.165
819.088
837.579
859.193
884.634
914.767
950.575
993.011
1042.76
1100.08
1164.79
1236.38
1314.02
1396.48
1481.95
1568
1651.7
1729.96
1799.99
1859.76
1908.99
1951.84
2006.07
2116.52
2332.13
2645.82
3007.94
3387.18
3780.58
4121.31
4278.79
4232.12
4071.48
3883.2
3698.32
3520.94
3350.72
3187.87
3032.85
2886.28
2748.65
2620.06
2500.35
2389.22
2286.63
2193.05
2109.39
2036.46
1974.41
1922.64
1880.08
1845.49
1817.69
1795.58
1778.2
1764.76
1754.56
1747.03
1741.7
1738.2
1736.19
1735.41
1735.66
1736.74
1738.5
1740.83
1743.62
1746.79
1750.26
1753.99
1757.91
1761.98
1766.19
1770.49
1774.87
1779.31
1783.79
1788.31
1792.85
1797.4
1801.96
1806.51
1811.05
1815.59
1820.11
1824.64
1829.18
1833.71
1838.25
1842.78
1847.32
1851.86
1856.39
1860.91
1865.41
1869.89
1874.33
1878.73
1883.09
1887.39
1891.62
1895.78
1899.86
1903.85
1907.74
1911.53
1915.19
1918.73
1922.14
1925.42
1928.59
1931.61
1934.51
1937.28
1939.91
1942.42
1944.79
1947.04
1949.15
1951.13
1952.99
1954.71
1956.31
1957.8
1959.16
1960.41
1961.54
1962.57
1963.5
1964.32
1965.06
1965.7
1966.26
1966.74
1967.15
1967.49
1967.78
1968.02
1968.21
1968.38
1968.51
1968.63
1968.73
1968.82
1968.91
1969
1969.11
1969.23
1969.38
1969.55
1969.76
1969.99
1970.26
1970.56
1970.89
1971.24
1971.6
1971.95
1972.28
1972.58
1972.82
1972.98
1973.03
1972.94
1972.66
1972.15
1971.35
1970.19
1968.6
1966.48
1963.72
1960.2
1955.82
1950.36
1943.77
1935.67
1926.26
1915.46
1903.33
1889.93
1875.32
1859.56
1842.7
1824.81
1805.95
1786.23
1765.72
1744.54
1722.79
1700.58
1678.01
1655.17
1632.16
1609.07
1585.96
1562.93
1540.02
1517.32
1494.89
1472.77
1451.04
1429.72
1408.86
1388.5
1368.64
1349.32
1330.55
1312.35
1294.7
1277.62
1261.1
1245.14
1229.71
1214.81
1200.43
1186.48
1172.89
1159.71
1147.01
1134.78
1123
1111.66
1100.73
1090.21
1080.09
1070.34
1060.95
1051.91
1043.21
1034.83
1026.75
1018.97
1011.48
1004.25
997.271
990.492
983.941
977.612
971.499
965.595
959.895
954.391
949.078
943.948
938.996
934.214
929.598
925.141
920.837
916.679
912.661
908.778
905.023
901.39
897.872
894.462
891.154
887.942
884.819
881.778
878.813
875.916
873.081
870.301
867.569
864.88
862.227
859.604
857.005
854.426
851.863
849.311
846.767
844.23
841.699
839.174
836.658
834.155
831.67
829.213
826.795
824.432
822.143
819.954
817.896
816.008
814.34
812.953
811.924
811.345
811.335
812.032
813.583
815.971
45837.6
13365.2
9119.34
6503.93
4879.4
3780.35
3025.82
2508.57
2149.1
1893.78
1707.83
1568.82
1462.14
1378.14
1310.32
1254.19
1206.63
1165.43
1129.01
1096.21
1066.21
1038.41
1012.37
987.82
964.548
942.396
921.298
901.189
882.037
863.822
846.533
830.169
814.729
800.219
786.663
774.146
762.726
752.394
743.137
734.912
727.656
721.297
715.758
710.969
706.859
703.368
700.443
698.039
696.12
694.661
693.66
693.178
693.161
693.629
694.615
696.168
698.343
701.207
704.83
709.281
714.637
720.981
728.396
736.973
746.824
758.091
770.961
785.688
802.611
822.176
844.961
871.679
903.151
940.207
983.528
1033.52
1090.27
1153.62
1223.13
1298.07
1377.31
1459.16
1541.47
1621.88
1698.23
1769.41
1837.64
1915.62
2038.72
2254.48
2568.3
2935.17
3314.65
3700.27
4015.16
4158.67
4104.93
3932.87
3726.7
3524.61
3335.53
3161.12
3000.21
2851.31
2713.4
2585.84
2468.12
2359.68
2259.98
2168.7
2085.93
2012.15
1947.9
1893.29
1847.84
1810.67
1780.7
1756.88
1738.25
1723.93
1713.22
1705.47
1700.19
1696.93
1695.34
1695.12
1696.03
1697.86
1700.45
1703.65
1707.34
1711.42
1715.82
1720.46
1725.29
1730.26
1735.34
1740.48
1745.67
1750.89
1756.11
1761.33
1766.53
1771.71
1776.86
1781.98
1787.06
1792.07
1797.04
1801.95
1806.82
1811.65
1816.44
1821.2
1825.91
1830.57
1835.18
1839.72
1844.2
1848.61
1852.94
1857.19
1861.35
1865.4
1869.36
1873.2
1876.92
1880.52
1883.99
1887.32
1890.52
1893.59
1896.51
1899.28
1901.91
1904.44
1906.85
1909.14
1911.31
1913.38
1915.33
1917.17
1918.9
1920.53
1922.06
1923.49
1924.82
1926.06
1927.2
1928.26
1929.22
1930.09
1930.88
1931.58
1932.2
1932.74
1933.21
1933.61
1933.94
1934.21
1934.43
1934.59
1934.71
1934.79
1934.83
1934.85
1934.85
1934.83
1934.8
1934.76
1934.73
1934.7
1934.68
1934.68
1934.7
1934.74
1934.8
1934.89
1934.99
1935.12
1935.25
1935.37
1935.49
1935.57
1935.6
1935.55
1935.41
1935.13
1934.68
1934.02
1933.11
1931.89
1930.28
1928.21
1925.59
1922.3
1918.25
1913.25
1907.26
1899.95
1891.44
1881.66
1870.61
1858.3
1844.78
1830.06
1814.18
1797.18
1779.1
1760.03
1740.04
1719.24
1697.73
1675.63
1653.05
1630.09
1606.86
1583.45
1559.96
1536.48
1513.08
1489.85
1466.85
1444.14
1421.8
1399.87
1378.39
1357.42
1336.99
1317.11
1297.81
1279.11
1261.01
1243.52
1226.63
1210.35
1194.66
1179.56
1165.02
1151.04
1137.6
1124.67
1112.19
1100.14
1088.56
1077.42
1066.72
1056.44
1046.56
1037.06
1027.94
1019.17
1010.74
1002.64
994.846
987.353
980.145
973.208
966.527
960.089
953.873
947.822
941.97
936.312
930.837
925.538
920.406
915.435
910.615
905.939
901.401
896.993
892.708
888.54
884.482
880.528
876.672
872.908
869.23
865.632
862.109
858.655
855.265
851.933
848.655
845.426
842.24
839.092
835.979
832.895
829.836
826.798
823.777
820.768
817.77
814.779
811.792
808.808
805.824
802.842
799.86
796.881
793.907
790.942
787.991
785.063
782.167
779.316
776.526
773.817
771.215
768.748
766.455
764.382
762.587
761.136
760.114
759.613
759.733
760.417
45841.6
15361.7
9261.17
6126.28
4373.63
3302.95
2636.2
2206.29
1918.06
1717.17
1571.92
1463.2
1379.14
1312.09
1257.02
1210.49
1170.13
1134.3
1101.82
1071.86
1043.82
1017.29
991.987
967.719
944.39
922.001
900.498
879.841
860.062
841.16
823.158
806.075
789.939
774.786
760.701
747.805
736.138
725.69
716.424
708.269
701.139
694.945
689.604
685.04
681.183
677.97
675.343
673.254
671.655
670.51
669.796
669.56
669.738
670.36
671.468
673.109
675.332
678.185
681.725
686.024
691.172
697.27
704.413
712.689
722.184
733.009
745.312
759.301
775.257
793.553
814.677
839.225
867.89
901.383
940.338
985.219
1036.29
1093.6
1157.01
1226.16
1300.41
1378.66
1459.48
1541.27
1622.99
1706.07
1800.06
1933
2147.79
2457.03
2821.48
3193.66
3559.69
3852.9
4001.36
3969.71
3812.52
3604.09
3390.66
3191.03
3011.04
2849.83
2704.69
2573.16
2453.52
2344.55
2245.26
2154.86
2072.74
1998.71
1932.88
1875.56
1826.81
1786.27
1753.23
1726.78
1705.98
1689.95
1677.93
1669.25
1663.34
1659.72
1657.99
1657.82
1658.94
1661.1
1664.12
1667.83
1672.1
1676.81
1681.87
1687.19
1692.7
1698.36
1704.12
1709.93
1715.77
1721.6
1727.42
1733.2
1738.93
1744.61
1750.22
1755.76
1761.22
1766.61
1771.89
1777.07
1782.14
1787.12
1792
1796.77
1801.44
1806.01
1810.47
1814.82
1819.07
1823.19
1827.19
1831.06
1834.8
1838.41
1841.88
1845.23
1848.44
1851.52
1854.47
1857.28
1859.97
1862.52
1864.95
1867.26
1869.44
1871.5
1873.5
1875.42
1877.25
1879.01
1880.69
1882.29
1883.82
1885.27
1886.66
1887.98
1889.23
1890.41
1891.53
1892.58
1893.56
1894.48
1895.32
1896.1
1896.81
1897.44
1898.02
1898.52
1898.97
1899.35
1899.67
1899.94
1900.16
1900.33
1900.45
1900.54
1900.59
1900.61
1900.61
1900.59
1900.55
1900.5
1900.45
1900.4
1900.36
1900.32
1900.29
1900.27
1900.26
1900.25
1900.25
1900.25
1900.23
1900.18
1900.09
1899.93
1899.68
1899.31
1898.79
1898.08
1897.13
1895.9
1894.32
1892.34
1889.86
1886.8
1883.06
1878.47
1873.03
1866.39
1858.71
1849.86
1839.82
1828.57
1816.13
1802.48
1787.64
1771.61
1754.44
1736.15
1716.84
1696.58
1675.48
1653.64
1631.19
1608.24
1584.9
1561.29
1537.49
1513.62
1489.77
1466.02
1442.45
1419.14
1396.16
1373.57
1351.43
1329.79
1308.69
1288.16
1268.24
1248.93
1230.26
1212.23
1194.84
1178.1
1162
1146.52
1131.66
1117.4
1103.73
1090.63
1078.09
1066.06
1054.53
1043.5
1032.94
1022.81
1013.11
1003.81
994.905
986.37
978.19
970.352
962.838
955.634
948.727
942.101
935.742
929.637
923.772
918.13
912.684
907.386
902.273
897.333
892.555
887.928
883.444
879.092
874.863
870.749
866.741
862.83
859.01
855.271
851.608
848.013
844.479
841
837.57
834.184
830.836
827.521
824.234
820.971
817.728
814.501
811.286
808.081
804.881
801.683
798.487
795.288
792.084
788.875
785.659
782.434
779.199
775.955
772.702
769.441
766.172
762.899
759.625
756.353
753.091
749.844
746.622
743.436
740.3
737.229
734.245
731.371
728.637
726.079
723.74
721.669
719.929
718.582
717.699
717.207
45927.8
16077.5
8761.18
5469.51
3787.46
2862.39
2318.99
1978.82
1753.36
1596.3
1481.97
1395.4
1327.38
1272.07
1225.6
1185.36
1149.56
1116.98
1086.73
1058.23
1031.05
1004.9
979.617
955.087
931.276
908.196
885.893
864.46
843.874
824.118
805.263
787.345
770.424
754.576
739.947
726.677
714.782
704.22
694.91
686.748
679.632
673.47
668.183
663.701
659.959
656.897
654.456
652.58
651.217
650.317
649.847
649.833
650.206
650.992
652.236
653.984
656.291
659.209
662.792
667.097
672.192
678.165
685.13
693.199
702.466
713.014
724.964
738.495
753.853
771.365
791.453
814.628
841.479
872.621
908.632
949.996
997.065
1050.05
1109.02
1173.9
1244.38
1319.93
1399.8
1483.51
1572.49
1674.53
1812.41
2023.9
2325.56
2684.49
3049.73
3387.53
3659.92
3818.63
3822.51
3699.04
3504.99
3288.77
3080.99
2894.48
2730.73
2586.86
2459.38
2345.52
2243.31
2151.29
2068.31
1993.56
1926.54
1867.13
1815.38
1771.29
1734.6
1704.74
1680.95
1662.4
1648.32
1637.99
1630.8
1626.21
1623.79
1623.16
1624.01
1626.08
1629.13
1632.99
1637.51
1642.53
1647.97
1653.71
1659.68
1665.81
1672.05
1678.35
1684.67
1690.97
1697.24
1703.45
1709.58
1715.62
1721.56
1727.39
1733.11
1738.72
1744.2
1749.55
1754.75
1759.79
1764.64
1769.32
1773.83
1778.2
1782.41
1786.47
1790.37
1794.11
1797.71
1801.14
1804.43
1807.56
1810.55
1813.4
1816.11
1818.69
1821.16
1823.51
1825.75
1827.88
1829.91
1831.86
1833.72
1835.5
1837.2
1838.84
1840.47
1842.05
1843.59
1845.09
1846.55
1847.97
1849.35
1850.68
1851.98
1853.23
1854.44
1855.6
1856.71
1857.78
1858.79
1859.75
1860.65
1861.49
1862.28
1863
1863.66
1864.25
1864.79
1865.26
1865.68
1866.04
1866.34
1866.59
1866.8
1866.96
1867.08
1867.16
1867.21
1867.23
1867.23
1867.22
1867.18
1867.14
1867.1
1867.04
1866.99
1866.93
1866.87
1866.79
1866.7
1866.58
1866.42
1866.21
1865.92
1865.52
1864.98
1864.28
1863.37
1862.19
1860.71
1858.85
1856.54
1853.73
1850.29
1846.13
1841.19
1835.17
1828.26
1820.28
1811.18
1800.96
1789.57
1777.01
1763.24
1748.26
1732.07
1714.71
1696.21
1676.64
1656.1
1634.69
1612.53
1589.73
1566.41
1542.7
1518.71
1494.54
1470.31
1446.1
1422
1398.12
1374.51
1351.27
1328.44
1306.1
1284.3
1263.06
1242.45
1222.47
1203.14
1184.49
1166.52
1149.22
1132.6
1116.64
1101.34
1086.68
1072.65
1059.23
1046.39
1034.13
1022.44
1011.26
1000.6
990.451
980.762
971.512
962.68
954.247
946.195
938.506
931.164
924.151
917.453
911.055
904.942
899.101
893.516
888.174
883.061
878.16
873.42
868.849
864.451
860.212
856.122
852.169
848.342
844.63
841.022
837.509
834.08
830.725
827.436
824.202
821.017
817.871
814.758
811.669
808.599
805.541
802.49
799.441
796.388
793.328
790.257
787.172
784.07
780.948
777.805
774.639
771.448
768.231
764.989
761.72
758.425
755.104
751.758
748.388
744.996
741.585
738.156
734.713
731.26
727.803
724.346
720.897
717.465
714.06
710.693
707.378
704.134
700.979
697.938
695.038
692.315
689.803
687.551
685.603
684.009
682.693
46122.8
15562
7791.04
4695.98
3262.54
2517.78
2090.02
1823.16
1645.21
1519.86
1427.29
1355.96
1298.79
1251.24
1210.31
1173.98
1140.89
1110.09
1080.93
1052.97
1025.93
999.615
973.92
948.807
924.284
900.392
877.187
854.733
833.116
812.435
792.686
773.89
756.163
739.622
724.473
710.85
698.717
687.973
678.495
670.163
662.879
656.567
651.165
646.614
642.854
639.823
637.457
635.694
634.469
633.724
633.413
633.548
634.069
635.005
636.399
638.291
640.724
643.743
647.403
651.765
656.897
662.879
669.805
677.777
686.912
697.299
709.038
722.292
737.288
754.324
773.774
796.088
821.774
851.373
885.414
924.38
968.679
1018.63
1074.46
1136.29
1204.19
1278.15
1358.44
1446.84
1550.3
1687.92
1892.84
2183.66
2533
2891.92
3208.33
3459.38
3621.98
3663.25
3583.08
3416.77
3209.26
2998.52
2805.95
2637.99
2493.1
2367.41
2257.29
2159.98
2073.5
1996.33
1927.4
1866
1811.74
1764.49
1724.15
1690.5
1663.09
1641.3
1624.43
1611.75
1602.63
1596.48
1592.82
1591.23
1591.35
1592.89
1595.59
1599.24
1603.66
1608.7
1614.23
1620.13
1626.32
1632.72
1639.24
1645.85
1652.49
1659.11
1665.69
1672.2
1678.61
1684.92
1691.09
1697.12
1703.01
1708.75
1714.32
1719.73
1724.97
1730.04
1734.89
1739.48
1743.84
1747.99
1751.94
1755.71
1759.29
1762.69
1765.92
1768.97
1771.86
1774.6
1777.18
1779.62
1781.94
1784.13
1786.22
1788.21
1790.1
1791.92
1793.67
1795.36
1796.99
1798.57
1800.11
1801.62
1803.09
1804.57
1806.06
1807.54
1809
1810.45
1811.89
1813.3
1814.7
1816.08
1817.43
1818.76
1820.06
1821.32
1822.55
1823.73
1824.87
1825.96
1827
1827.99
1828.91
1829.77
1830.57
1831.31
1831.98
1832.59
1833.13
1833.61
1834.03
1834.39
1834.69
1834.94
1835.14
1835.29
1835.4
1835.48
1835.52
1835.53
1835.52
1835.48
1835.43
1835.36
1835.27
1835.16
1835.04
1834.88
1834.68
1834.43
1834.12
1833.71
1833.2
1832.53
1831.67
1830.6
1829.24
1827.55
1825.46
1822.91
1819.78
1816.05
1811.56
1806.2
1800.02
1792.85
1784.69
1775.45
1765.12
1753.64
1740.98
1727.1
1711.98
1695.63
1678.08
1659.36
1639.54
1618.72
1597
1574.51
1551.36
1527.68
1503.6
1479.24
1454.71
1430.12
1405.56
1381.14
1356.95
1333.06
1309.56
1286.51
1263.97
1242.01
1220.66
1199.95
1179.92
1160.59
1141.96
1124.03
1106.82
1090.31
1074.49
1059.34
1044.86
1031.03
1017.82
1005.22
993.198
981.75
970.859
960.487
950.622
941.253
932.331
923.839
915.758
908.067
900.748
893.784
887.158
880.853
874.855
869.149
863.72
858.556
853.641
848.963
844.508
840.259
836.155
832.23
828.473
824.872
821.415
818.088
814.88
811.778
808.771
805.847
802.993
800.2
797.456
794.75
792.074
789.416
786.77
784.126
781.477
778.815
776.135
773.43
770.696
767.928
765.123
762.276
759.386
756.451
753.469
750.438
747.36
744.234
741.059
737.838
734.572
731.261
727.909
724.518
721.09
717.63
714.14
710.625
707.089
703.54
699.981
696.422
692.87
689.335
685.827
682.36
678.948
675.608
672.361
669.227
666.237
663.416
660.802
658.426
656.326
654.429
46370.4
14262.4
6704.69
4029.97
2870.39
2279.84
1939.77
1725.24
1580.17
1476.39
1398.46
1337.27
1287.19
1244.6
1207.1
1173.08
1141.46
1111.49
1082.68
1054.72
1027.4
1000.61
974.293
948.453
923.13
898.383
874.272
850.859
828.215
806.428
785.629
765.945
747.434
730.217
714.556
700.551
688.083
676.987
667.124
658.39
650.717
644.059
638.37
633.598
629.683
626.555
624.143
622.372
621.171
620.47
620.217
620.406
621.034
622.102
623.649
625.703
628.292
631.451
635.227
639.683
644.893
650.939
657.906
665.883
674.977
685.288
696.914
710.011
724.797
741.555
760.623
782.404
807.349
835.943
868.677
906.027
948.438
996.311
1050.01
1109.91
1176.47
1250.58
1334.52
1434.89
1568.23
1763.72
2040.97
2376.95
2724.01
3025.6
3266.56
3429.79
3496.8
3458.25
3328.22
3141.14
2935.6
2739.97
2567.38
2419.69
2293.72
2185.4
2091.29
2008.78
1936
1871.59
1814.61
1764.47
1720.84
1683.53
1652.3
1626.79
1606.51
1590.83
1579.14
1570.84
1565.39
1562.34
1561.28
1561.87
1563.83
1566.91
1570.92
1575.67
1581.02
1586.84
1593.01
1599.45
1606.08
1612.83
1619.63
1626.44
1633.22
1639.92
1646.53
1653.02
1659.36
1665.54
1671.54
1677.37
1683
1688.44
1693.67
1698.7
1703.52
1708.13
1712.44
1716.46
1720.23
1723.78
1727.12
1730.27
1733.23
1736
1738.61
1741.05
1743.35
1745.51
1747.55
1749.47
1751.29
1753.03
1754.69
1756.29
1757.83
1759.34
1760.81
1762.26
1763.7
1765.12
1766.55
1767.97
1769.39
1770.87
1772.36
1773.87
1775.39
1776.91
1778.43
1779.95
1781.46
1782.97
1784.46
1785.93
1787.38
1788.8
1790.19
1791.54
1792.85
1794.12
1795.32
1796.48
1797.57
1798.59
1799.55
1800.44
1801.26
1802
1802.68
1803.28
1803.81
1804.27
1804.66
1804.98
1805.25
1805.46
1805.61
1805.71
1805.77
1805.79
1805.77
1805.71
1805.62
1805.5
1805.35
1805.16
1804.93
1804.66
1804.32
1803.9
1803.38
1802.74
1801.95
1800.96
1799.73
1798.21
1796.35
1794.06
1791.3
1787.98
1783.93
1779.23
1773.74
1767.38
1760.12
1751.88
1742.6
1732.23
1720.71
1707.98
1694.02
1678.79
1662.3
1644.58
1625.66
1605.61
1584.52
1562.5
1539.68
1516.18
1492.14
1467.69
1442.96
1418.06
1393.12
1368.22
1343.47
1318.97
1294.8
1271.04
1247.77
1225.05
1202.93
1181.45
1160.66
1140.58
1121.23
1102.62
1084.74
1067.6
1051.19
1035.5
1020.5
1006.18
992.53
979.514
967.119
955.32
944.093
933.425
923.299
913.68
904.553
895.887
887.652
879.832
872.408
865.362
858.676
852.334
846.319
840.615
835.21
830.088
825.237
820.643
816.294
812.176
808.276
804.577
801.022
797.648
794.443
791.395
788.491
785.717
783.06
780.507
778.046
775.663
773.345
771.08
768.856
766.662
764.485
762.315
760.142
757.956
755.748
753.51
751.235
748.915
746.545
744.12
741.636
739.089
736.475
733.794
731.044
728.224
725.334
722.375
719.347
716.254
713.096
709.877
706.599
703.266
699.881
696.45
692.976
689.466
685.923
682.356
678.769
675.172
671.572
667.978
664.401
660.852
657.345
653.895
650.518
647.234
644.065
641.033
638.168
635.492
633.035
630.728
46602.6
12804.4
5797.85
3554.51
2612.08
2130.6
1849.65
1669.79
1546.38
1456.8
1388.46
1333.86
1288.31
1248.8
1213.33
1180.57
1149.63
1119.92
1091.05
1062.79
1035
1007.61
980.603
954.02
927.913
902.343
877.37
853.053
829.463
806.689
784.854
764.117
744.689
726.77
710.545
696.031
683.023
671.317
660.798
651.408
643.123
635.921
629.769
624.61
620.374
616.984
614.36
612.421
611.09
610.296
609.99
610.162
610.858
612.051
613.76
615.993
618.76
622.087
626.017
630.613
635.947
642.1
649.149
657.18
666.295
676.595
688.173
701.192
715.872
732.481
751.335
772.801
797.29
825.247
857.139
893.442
934.638
981.223
1033.75
1092.96
1160.15
1238.07
1333.24
1460.18
1644.46
1906.68
2228.28
2552.2
2843.56
3078.55
3245.51
3330.71
3325.12
3232.75
3074.72
2883.66
2690.54
2514.86
2363.53
2235.62
2127.35
2034.81
1954.88
1885.22
1824.19
1770.6
1723.69
1682.96
1648.08
1618.79
1594.77
1575.6
1560.76
1549.73
1541.94
1536.92
1534.21
1533.44
1534.28
1536.45
1539.72
1543.89
1548.79
1554.27
1560.21
1566.5
1573.05
1579.77
1586.59
1593.46
1600.33
1607.15
1613.87
1620.48
1626.94
1633.24
1639.35
1645.26
1650.97
1656.45
1661.71
1666.73
1671.53
1676.1
1680.44
1684.5
1688.26
1691.71
1694.92
1697.92
1700.71
1703.32
1705.76
1708.04
1710.16
1712.15
1714.02
1715.78
1717.44
1719.02
1720.53
1721.99
1723.4
1724.79
1726.15
1727.51
1728.87
1730.24
1731.62
1733.02
1734.44
1735.9
1737.39
1738.95
1740.54
1742.16
1743.79
1745.45
1747.11
1748.78
1750.46
1752.13
1753.8
1755.45
1757.08
1758.69
1760.27
1761.8
1763.3
1764.74
1766.13
1767.46
1768.72
1769.91
1771.02
1772.05
1773.01
1773.88
1774.66
1775.36
1775.98
1776.51
1776.96
1777.34
1777.63
1777.86
1778.01
1778.11
1778.14
1778.12
1778.04
1777.92
1777.74
1777.53
1777.26
1776.94
1776.55
1776.1
1775.56
1774.92
1774.14
1773.21
1772.08
1770.7
1769.02
1767
1764.56
1761.59
1758.09
1753.98
1749.17
1743.61
1737.23
1729.97
1721.76
1712.52
1702.18
1690.67
1677.94
1663.94
1648.64
1632.06
1614.21
1595.12
1574.87
1553.54
1531.24
1508.1
1484.26
1459.86
1435.04
1409.93
1384.66
1359.35
1334.1
1309.02
1284.2
1259.74
1235.71
1212.21
1189.28
1166.99
1145.38
1124.49
1104.35
1084.97
1066.36
1048.52
1031.44
1015.12
999.532
984.665
970.497
957.007
944.168
931.958
920.355
909.333
898.867
888.941
879.54
870.629
862.182
854.164
846.559
839.347
832.514
826.042
819.914
814.114
808.629
803.443
798.544
793.919
789.555
785.441
781.564
777.913
774.475
771.231
768.133
765.219
762.478
759.895
757.457
755.152
752.966
750.886
748.898
746.989
745.145
743.353
741.599
739.871
738.157
736.444
734.72
732.974
731.197
729.379
727.511
725.585
723.594
721.532
719.395
717.177
714.875
712.487
710.012
707.448
704.795
702.055
699.229
696.318
693.326
690.256
687.111
683.895
680.614
677.272
673.874
670.427
666.936
663.409
659.852
656.273
652.681
649.085
645.494
641.921
638.376
634.874
631.43
628.059
624.78
621.613
618.579
615.698
612.993
610.402
46802.8
11554.7
5156.67
3252.05
2456.96
2045.67
1802.35
1644.59
1535.09
1454.65
1392.49
1342.09
1299.34
1261.65
1227.32
1195.19
1164.48
1134.71
1105.57
1076.9
1048.59
1020.61
992.979
965.732
938.931
912.633
886.888
861.75
837.292
813.613
790.847
769.161
748.761
729.887
712.839
697.571
683.735
671.123
659.678
649.395
640.286
632.343
625.527
619.775
615.01
611.148
608.105
605.803
604.166
603.132
602.664
602.763
603.478
604.777
606.644
609.06
612.018
615.537
619.659
624.44
629.943
636.237
643.399
651.532
660.725
671.054
682.636
695.646
710.304
726.867
745.638
766.959
791.215
818.831
850.269
886.032
926.681
972.892
1025.6
1086.38
1158.38
1248.81
1370.94
1544.88
1786.65
2081.93
2388.59
2666.86
2896.98
3067.07
3166.76
3187.68
3129.37
3003.8
2834.87
2651.24
2476.12
2321.78
2190.95
2081.25
1988.83
1910.15
1842.47
1783.81
1732.73
1688.29
1649.81
1616.86
1589.11
1566.24
1547.89
1533.63
1522.98
1515.48
1510.64
1508.07
1507.4
1508.3
1510.52
1513.82
1518.01
1522.91
1528.4
1534.33
1540.61
1547.15
1553.85
1560.66
1567.51
1574.35
1581.13
1587.81
1594.36
1600.75
1606.97
1612.98
1618.77
1624.34
1629.67
1634.76
1639.6
1644.2
1648.55
1652.67
1656.54
1660.11
1663.37
1666.35
1669.09
1671.64
1674.01
1676.22
1678.27
1680.19
1681.99
1683.68
1685.27
1686.78
1688.22
1689.6
1690.95
1692.26
1693.56
1694.86
1696.16
1697.48
1698.83
1700.21
1701.62
1703.08
1704.58
1706.13
1707.76
1709.45
1711.18
1712.95
1714.75
1716.57
1718.41
1720.26
1722.12
1723.98
1725.84
1727.69
1729.52
1731.32
1733.09
1734.81
1736.49
1738.12
1739.68
1741.17
1742.58
1743.92
1745.17
1746.32
1747.39
1748.35
1749.21
1749.98
1750.64
1751.21
1751.67
1752.04
1752.32
1752.51
1752.61
1752.63
1752.58
1752.46
1752.27
1752.01
1751.7
1751.31
1750.87
1750.35
1749.76
1749.07
1748.27
1747.34
1746.24
1744.95
1743.42
1741.6
1739.41
1736.83
1733.8
1730.23
1726.08
1721.28
1715.76
1709.46
1702.3
1694.19
1685.06
1674.82
1663.4
1650.72
1636.75
1621.46
1604.84
1586.91
1567.71
1547.3
1525.76
1503.2
1479.77
1455.6
1430.84
1405.65
1380.16
1354.51
1328.81
1303.19
1277.75
1252.6
1227.82
1203.51
1179.75
1156.6
1134.11
1112.35
1091.34
1071.11
1051.68
1033.05
1015.22
998.177
981.915
966.415
951.655
937.612
924.261
911.576
899.532
888.1
877.258
866.981
857.24
848.018
839.301
831.053
823.235
815.823
808.801
802.152
795.859
789.909
784.284
778.971
773.956
769.227
764.77
760.575
756.63
752.924
749.447
746.188
743.135
740.257
737.543
735.013
732.655
730.455
728.403
726.485
724.689
723.002
721.41
719.9
718.458
717.071
715.724
714.404
713.097
711.791
710.473
709.13
707.751
706.326
704.844
703.296
701.675
699.972
698.182
696.299
694.32
692.241
690.059
687.774
685.386
682.895
680.302
677.609
674.82
671.938
668.966
665.91
662.774
659.564
656.286
652.946
649.551
646.108
642.625
639.108
635.569
632.014
628.454
624.9
621.364
617.856
614.391
610.984
607.65
604.405
601.268
598.254
595.383
592.598
46967.1
10588
4745.93
3077.5
2373.94
2005.32
1785.13
1641.09
1540.3
1465.63
1407.35
1359.56
1318.57
1281.99
1248.26
1216.36
1185.64
1155.68
1126.23
1097.17
1068.41
1039.95
1011.81
984.041
956.692
929.804
903.414
877.57
852.341
827.832
804.187
781.581
760.219
740.332
722.173
705.696
690.644
676.852
664.245
652.853
642.704
633.792
626.078
619.493
613.958
609.39
605.709
602.841
600.722
599.307
598.571
598.522
599.192
600.555
602.548
605.127
608.277
612.008
616.35
621.347
627.05
633.522
640.863
649.159
658.469
668.887
680.553
693.649
708.397
725.05
743.903
765.291
789.6
817.267
848.801
884.814
926.094
973.78
1029.74
1097.42
1183.5
1299.63
1461.81
1681.86
1950.36
2234.75
2500.1
2723.97
2895.49
3005.98
3048.15
3019.41
2925.79
2783.48
2615.91
2446.47
2291.43
2157.77
2045.67
1952.1
1873.48
1806.73
1749.5
1700.14
1657.48
1620.69
1589.22
1562.66
1540.67
1522.91
1509
1498.55
1491.12
1486.3
1483.7
1482.96
1483.79
1485.91
1489.12
1493.2
1498.01
1503.39
1509.22
1515.4
1521.84
1528.46
1535.18
1541.94
1548.7
1555.39
1561.99
1568.45
1574.76
1580.87
1586.78
1592.47
1597.92
1603.13
1608.09
1612.8
1617.25
1621.46
1625.43
1629.16
1632.64
1635.82
1638.69
1641.3
1643.71
1645.94
1648.01
1649.95
1651.76
1653.45
1655.05
1656.56
1658
1659.38
1660.72
1662.02
1663.3
1664.57
1665.85
1667.14
1668.46
1669.82
1671.22
1672.67
1674.17
1675.73
1677.36
1679.05
1680.83
1682.68
1684.58
1686.52
1688.5
1690.5
1692.53
1694.58
1696.63
1698.69
1700.74
1702.78
1704.81
1706.8
1708.75
1710.66
1712.51
1714.3
1716.01
1717.65
1719.19
1720.64
1721.99
1723.24
1724.37
1725.38
1726.28
1727.05
1727.71
1728.25
1728.67
1728.97
1729.17
1729.25
1729.24
1729.13
1728.92
1728.63
1728.26
1727.81
1727.28
1726.67
1725.99
1725.21
1724.35
1723.36
1722.25
1720.98
1719.52
1717.81
1715.85
1713.58
1710.93
1707.86
1704.31
1700.22
1695.52
1690.13
1683.98
1676.98
1669.05
1660.09
1650.01
1638.74
1626.19
1612.32
1597.1
1580.51
1562.57
1543.31
1522.79
1501.09
1478.32
1454.62
1430.14
1405.04
1379.47
1353.59
1327.54
1301.44
1275.43
1249.62
1224.1
1198.98
1174.36
1150.3
1126.89
1104.19
1082.23
1061.07
1040.72
1021.21
1002.52
984.665
967.629
951.399
935.953
921.269
907.32
894.08
881.521
869.615
858.333
847.647
837.532
827.963
818.909
810.353
802.278
794.653
787.429
780.583
774.106
767.98
762.191
756.723
751.562
746.694
742.108
737.79
733.729
729.916
726.339
722.99
719.858
716.935
714.207
711.634
709.246
707.035
704.992
703.107
701.368
699.765
698.286
696.918
695.649
694.465
693.354
692.301
691.293
690.315
689.355
688.397
687.43
686.439
685.412
684.338
683.206
682.004
680.725
679.359
677.899
676.339
674.674
672.9
671.013
669.012
666.896
664.666
662.321
659.864
657.298
654.626
651.852
648.981
646.019
642.97
639.841
636.64
633.371
630.045
626.667
623.246
619.791
616.311
612.816
609.316
605.822
602.344
598.897
595.492
592.144
588.867
585.677
582.586
579.61
576.7
47102.9
9935.93
4517.12
2994.86
2343.69
1998.03
1789.89
1653.36
1557.61
1486.43
1430.55
1384.41
1344.49
1308.57
1275.2
1243.44
1212.71
1182.62
1152.98
1123.68
1094.65
1065.91
1037.49
1009.42
981.748
954.485
927.651
901.279
875.431
850.207
825.748
802.228
779.85
758.832
739.406
721.548
704.998
689.672
675.638
662.931
651.518
641.403
632.55
624.898
618.377
612.912
608.43
604.864
602.158
600.27
599.176
598.872
599.367
600.663
602.659
605.294
608.544
612.408
616.904
622.066
627.942
634.611
642.155
650.625
660.095
670.681
682.537
695.85
710.843
727.775
746.948
768.714
793.495
821.805
854.301
891.872
935.828
988.263
1052.75
1135.45
1245.92
1396.26
1595.21
1836.52
2096.41
2345.41
2561.42
2732.11
2849.93
2908.52
2904.52
2840.31
2726.08
2579.42
2421.13
2269.09
2134.02
2019.33
1923.74
1844.13
1777.31
1720.67
1672.29
1630.77
1595.16
1564.75
1539.06
1517.7
1500.33
1486.62
1476.2
1468.7
1463.73
1460.95
1460.02
1460.65
1462.57
1465.57
1469.46
1474.07
1479.27
1484.93
1490.94
1497.23
1503.69
1510.28
1516.91
1523.55
1530.13
1536.62
1542.99
1549.2
1555.23
1561.05
1566.65
1572.02
1577.14
1582.02
1586.65
1591.03
1595.17
1599.07
1602.74
1606.19
1609.38
1612.27
1614.88
1617.25
1619.44
1621.47
1623.38
1625.16
1626.83
1628.42
1629.92
1631.36
1632.75
1634.09
1635.4
1636.7
1637.99
1639.28
1640.6
1641.94
1643.33
1644.76
1646.25
1647.81
1649.43
1651.13
1652.9
1654.75
1656.7
1658.73
1660.8
1662.93
1665.09
1667.28
1669.5
1671.73
1673.98
1676.23
1678.48
1680.7
1682.91
1685.07
1687.2
1689.26
1691.26
1693.19
1695.03
1696.77
1698.41
1699.94
1701.34
1702.62
1703.77
1704.78
1705.65
1706.38
1706.97
1707.42
1707.73
1707.9
1707.94
1707.85
1707.65
1707.33
1706.9
1706.38
1705.76
1705.05
1704.25
1703.35
1702.38
1701.3
1700.12
1698.8
1697.34
1695.72
1693.9
1691.84
1689.5
1686.85
1683.81
1680.34
1676.37
1671.82
1666.61
1660.66
1653.88
1646.17
1637.43
1627.58
1616.52
1604.17
1590.47
1575.39
1558.9
1541.02
1521.76
1501.19
1479.37
1456.43
1432.5
1407.73
1382.3
1356.36
1330.08
1303.62
1277.12
1250.69
1224.47
1198.56
1173.07
1148.1
1123.72
1100.02
1077.05
1054.87
1033.52
1013.02
993.372
974.595
956.678
939.61
923.373
907.945
893.3
879.412
866.251
853.787
841.989
830.829
820.276
810.301
800.877
791.978
783.577
775.649
768.18
761.141
754.484
748.17
742.205
736.572
731.255
726.24
721.512
717.06
712.87
708.932
705.235
701.769
698.525
695.495
692.669
690.04
687.596
685.298
683.181
681.235
679.452
677.825
676.342
674.994
673.769
672.658
671.647
670.725
669.878
669.095
668.36
667.662
666.984
666.315
665.639
664.945
664.217
663.445
662.616
661.719
660.743
659.68
658.52
657.257
655.884
654.397
652.791
651.064
649.214
647.24
645.144
642.926
640.589
638.136
635.571
632.899
630.124
627.253
624.292
621.248
618.127
614.937
611.687
608.385
605.038
601.658
598.252
594.83
591.404
587.984
584.583
581.21
577.881
574.606
571.4
568.274
565.241
562.259
47227.8
9591.9
4443.24
2971.66
2341.09
2007.01
1806.31
1674.87
1582.7
1514.06
1459.97
1415.06
1375.99
1340.63
1307.62
1276.09
1245.48
1215.47
1185.86
1156.55
1127.53
1098.79
1070.37
1042.3
1014.59
987.243
960.246
933.611
907.38
881.637
856.506
832.148
808.752
786.521
765.665
746.29
728.2
711.237
695.496
681.112
668.148
656.577
646.321
637.335
629.57
622.971
617.479
613.034
609.584
607.083
605.497
604.805
604.996
606.081
607.954
610.528
613.762
617.649
622.203
627.457
633.471
640.313
648.032
656.683
666.365
677.208
689.376
703.067
718.516
736.004
755.871
778.536
804.529
834.557
869.6
911.1
961.276
1023.64
1103.59
1208.79
1347.96
1527.16
1742.2
1976.19
2205.87
2410.94
2578.24
2700.11
2770.8
2786.74
2748.27
2661.32
2538.18
2395.73
2251.12
2117.3
2000.87
1902.95
1821.57
1753.82
1696.97
1648.87
1607.92
1572.98
1543.23
1518.11
1497.15
1480
1466.33
1455.8
1448.1
1442.87
1439.79
1438.55
1438.86
1440.48
1443.19
1446.8
1451.15
1456.09
1461.52
1467.31
1473.38
1479.66
1486.07
1492.54
1499.03
1505.48
1511.86
1518.12
1524.24
1530.19
1535.94
1541.49
1546.81
1551.89
1556.74
1561.34
1565.71
1569.84
1573.75
1577.44
1580.92
1584.18
1587.18
1589.89
1592.36
1594.61
1596.69
1598.64
1600.47
1602.19
1603.83
1605.39
1606.89
1608.33
1609.73
1611.1
1612.46
1613.8
1615.15
1616.52
1617.91
1619.34
1620.82
1622.35
1623.96
1625.64
1627.39
1629.23
1631.16
1633.18
1635.31
1637.51
1639.76
1642.06
1644.41
1646.78
1649.19
1651.61
1654.04
1656.47
1658.88
1661.28
1663.65
1665.97
1668.23
1670.43
1672.55
1674.57
1676.5
1678.31
1680
1681.55
1682.96
1684.22
1685.33
1686.28
1687.06
1687.67
1688.12
1688.41
1688.53
1688.5
1688.31
1687.99
1687.52
1686.93
1686.22
1685.4
1684.48
1683.46
1682.35
1681.14
1679.84
1678.45
1676.95
1675.33
1673.58
1671.66
1669.55
1667.21
1664.59
1661.64
1658.28
1654.47
1650.1
1645.11
1639.39
1632.85
1625.4
1616.94
1607.36
1596.56
1584.47
1571
1556.12
1539.79
1522.03
1502.83
1482.26
1460.39
1437.32
1413.19
1388.17
1362.42
1336.12
1309.45
1282.58
1255.64
1228.79
1202.14
1175.81
1149.92
1124.56
1099.83
1075.8
1052.53
1030.09
1008.5
987.802
967.994
949.083
931.064
913.921
897.637
882.188
867.545
853.681
840.563
828.161
816.442
805.374
794.927
785.069
775.771
767.005
758.745
750.962
743.632
736.737
730.252
724.138
718.332
712.854
707.688
702.819
698.233
693.915
689.854
686.038
682.455
679.097
675.954
673.017
670.279
667.731
665.366
663.173
661.12
659.238
657.52
655.958
654.546
653.274
652.134
651.115
650.209
649.403
648.687
648.049
647.477
646.959
646.48
646.027
645.588
645.147
644.693
644.211
643.688
643.112
642.472
641.756
640.954
640.056
639.055
637.944
636.716
635.366
633.892
632.29
630.56
628.701
626.714
624.601
622.365
620.008
617.537
614.954
612.267
609.481
606.603
603.641
600.601
597.491
594.321
591.098
587.832
584.532
581.207
577.868
574.525
571.189
567.871
564.584
561.337
558.145
555.016
551.962
548.946
47332.9
9510.17
4417.5
2969.39
2351.54
2025.53
1830.38
1702.89
1613.57
1546.99
1494.41
1450.6
1412.35
1377.62
1345.13
1314.03
1283.8
1254.13
1224.85
1195.87
1167.18
1138.79
1110.73
1083.01
1055.64
1028.58
1001.79
975.262
949.004
923.073
897.561
872.6
848.354
824.997
802.716
781.688
761.954
743.364
725.885
709.65
694.8
681.406
669.447
658.851
649.545
641.504
634.698
629.085
624.616
621.244
618.927
617.629
617.32
617.974
619.56
621.932
625.028
628.833
633.37
638.68
644.813
651.807
659.709
668.603
678.603
689.857
702.547
716.896
733.176
751.728
772.982
797.5
826.036
859.642
899.831
948.823
1009.9
1087.5
1187.44
1316.05
1477.02
1667.35
1875.32
2083.42
2274.39
2435.26
2557.95
2636.81
2668.21
2651.35
2589.37
2490.34
2366.91
2233.97
2104.88
1988.62
1888.87
1805.39
1736.06
1678.28
1629.8
1588.84
1554.1
1524.63
1499.76
1478.96
1461.85
1448.08
1437.34
1429.32
1423.71
1420.23
1418.57
1418.48
1419.7
1422.03
1425.29
1429.3
1433.93
1439.06
1444.58
1450.4
1456.45
1462.64
1468.93
1475.25
1481.55
1487.8
1493.96
1499.99
1505.87
1511.57
1517.08
1522.38
1527.46
1532.32
1536.95
1541.35
1545.53
1549.51
1553.27
1556.85
1560.23
1563.38
1566.28
1568.93
1571.35
1573.57
1575.64
1577.59
1579.43
1581.18
1582.85
1584.46
1586.01
1587.51
1588.98
1590.43
1591.87
1593.3
1594.75
1596.21
1597.71
1599.24
1600.83
1602.49
1604.21
1606.02
1607.92
1609.9
1611.98
1614.18
1616.47
1618.84
1621.26
1623.74
1626.25
1628.8
1631.38
1633.97
1636.56
1639.15
1641.72
1644.27
1646.77
1649.21
1651.59
1653.88
1656.08
1658.16
1660.13
1661.96
1663.64
1665.16
1666.52
1667.7
1668.7
1669.52
1670.14
1670.57
1670.81
1670.86
1670.73
1670.43
1669.95
1669.32
1668.54
1667.63
1666.59
1665.43
1664.18
1662.84
1661.42
1659.92
1658.35
1656.69
1654.95
1653.1
1651.13
1649.01
1646.69
1644.14
1641.28
1638.07
1634.42
1630.26
1625.49
1620.02
1613.76
1606.59
1598.43
1589.15
1578.66
1566.87
1553.68
1539.05
1522.94
1505.34
1486.27
1465.75
1443.87
1420.72
1396.44
1371.19
1345.15
1318.51
1291.46
1264.17
1236.8
1209.5
1182.4
1155.64
1129.31
1103.54
1078.42
1054.03
1030.43
1007.68
985.827
964.886
944.873
925.788
907.624
890.367
873.996
858.485
843.805
829.927
816.818
804.444
792.772
781.769
771.401
761.636
752.444
743.794
735.657
728.007
720.815
714.057
707.71
701.754
696.155
690.85
685.837
681.118
676.677
672.5
668.574
664.886
661.424
658.18
655.142
652.303
649.653
647.187
644.896
642.772
640.807
638.973
637.301
635.784
634.414
633.186
632.092
631.123
630.272
629.529
628.886
628.331
627.855
627.447
627.094
626.784
626.504
626.242
625.985
625.718
625.429
625.105
624.734
624.302
623.799
623.214
622.537
621.759
620.872
619.87
618.746
617.496
616.118
614.609
612.968
611.196
609.293
607.261
605.105
602.827
600.432
597.926
595.315
592.605
589.803
586.917
583.954
580.922
577.83
574.687
571.503
568.285
565.045
561.792
558.536
555.289
552.06
548.861
545.703
542.595
539.547
536.525
47405.3
9458.78
4408.71
2978.15
2370.1
2050.53
1859.93
1735.75
1648.88
1584.14
1532.98
1490.29
1452.96
1419.03
1387.28
1356.9
1327.39
1298.43
1269.85
1241.59
1213.62
1185.98
1158.68
1131.75
1105.14
1078.81
1052.69
1026.74
1000.94
975.319
949.917
924.813
900.156
876.06
852.671
830.159
808.676
788.316
769.089
751.031
734.219
718.767
704.747
692.176
681.011
671.201
662.715
655.55
649.67
645.034
641.599
639.325
638.175
638.112
639.196
641.214
644.075
647.757
652.272
657.642
663.898
671.08
679.265
688.557
699.097
711.058
724.66
740.179
757.964
778.467
802.277
830.186
863.273
903.037
951.566
1011.65
1086.88
1181.42
1299.61
1443.55
1610.91
1793.6
1978.97
2153.19
2304.53
2424.77
2508.17
2550.94
2551.59
2511.44
2435.48
2332.62
2214.67
2093.97
1980.59
1880.38
1795.11
1723.86
1664.6
1615.14
1573.62
1538.61
1509.03
1484.09
1463.21
1445.95
1431.93
1420.85
1412.41
1406.33
1402.34
1400.17
1399.57
1400.31
1402.18
1405
1408.61
1412.86
1417.64
1422.84
1428.36
1434.14
1440.09
1446.15
1452.28
1458.42
1464.53
1470.57
1476.51
1482.32
1487.98
1493.47
1498.76
1503.86
1508.76
1513.45
1517.93
1522.21
1526.29
1530.18
1533.89
1537.43
1540.77
1543.89
1546.79
1549.46
1551.91
1554.18
1556.31
1558.33
1560.24
1562.07
1563.84
1565.54
1567.19
1568.8
1570.38
1571.95
1573.5
1575.05
1576.61
1578.19
1579.81
1581.46
1583.17
1584.95
1586.8
1588.74
1590.77
1592.9
1595.13
1597.48
1599.93
1602.46
1605.04
1607.68
1610.36
1613.06
1615.79
1618.53
1621.27
1624
1626.7
1629.36
1631.97
1634.5
1636.95
1639.3
1641.53
1643.63
1645.58
1647.37
1648.99
1650.43
1651.67
1652.71
1653.53
1654.15
1654.54
1654.72
1654.68
1654.44
1654
1653.36
1652.54
1651.56
1650.43
1649.18
1647.81
1646.34
1644.8
1643.18
1641.51
1639.79
1638.01
1636.18
1634.28
1632.28
1630.17
1627.89
1625.41
1622.67
1619.6
1616.12
1612.16
1607.63
1602.42
1596.44
1589.58
1581.73
1572.79
1562.63
1551.16
1538.29
1523.95
1508.1
1490.71
1471.8
1451.39
1429.54
1406.36
1381.97
1356.53
1330.24
1303.28
1275.85
1248.15
1220.34
1192.58
1165.03
1137.8
1111.03
1084.83
1059.28
1034.5
1010.53
987.447
965.285
944.069
923.812
904.514
886.166
868.755
852.256
836.646
821.892
807.965
794.829
782.451
770.795
759.828
749.514
739.82
730.713
722.162
714.135
706.603
699.54
692.918
686.709
680.892
675.444
670.338
665.53
660.971
656.683
652.655
648.872
645.322
641.991
638.87
635.948
633.216
630.665
628.287
626.077
624.026
622.128
620.368
618.737
617.256
615.919
614.719
613.651
612.708
611.883
611.169
610.559
610.044
609.615
609.263
608.978
608.75
608.566
608.415
608.285
608.164
608.039
607.896
607.724
607.509
607.241
606.906
606.495
605.996
605.4
604.699
603.885
602.953
601.896
600.712
599.396
597.949
596.368
594.655
592.811
590.839
588.742
586.524
584.19
581.746
579.198
576.553
573.818
571
568.108
565.149
562.132
559.066
555.961
552.826
549.669
546.503
543.335
540.177
537.037
533.929
530.858
527.835
524.829
47450.6
9426.02
4410.77
2994.05
2393.95
2079.81
1893.17
1771.96
1687.37
1624.44
1574.76
1533.34
1497.12
1464.24
1433.53
1404.22
1375.83
1348.01
1320.58
1293.48
1266.69
1240.24
1214.17
1188.47
1163.1
1137.99
1113.05
1088.22
1063.46
1038.77
1014.17
989.57
965.076
940.851
917.002
893.678
871.03
849.184
828.242
808.336
789.569
772.021
755.774
740.899
727.447
715.435
704.858
695.731
688.012
681.678
676.703
673.058
670.713
669.641
669.954
671.48
674.038
677.566
682.041
687.476
693.91
701.415
710.093
720.076
731.54
744.705
759.854
777.347
797.646
821.355
849.267
882.432
922.216
970.429
1029.29
1101.47
1190.05
1297.62
1425.28
1571.22
1729.87
1892.32
2048.06
2187.16
2301.87
2386.43
2436.83
2451.07
2429.29
2374.31
2292.04
2191.17
2082.08
1974.66
1876.1
1790.03
1717.04
1655.99
1605.07
1562.5
1526.75
1496.65
1471.31
1450.08
1432.45
1418.02
1406.47
1397.49
1390.84
1386.25
1383.47
1382.27
1382.43
1383.76
1386.06
1389.19
1393
1397.36
1402.18
1407.36
1412.82
1418.49
1424.3
1430.2
1436.15
1442.09
1448
1453.83
1459.57
1465.18
1470.65
1475.95
1481.09
1486.04
1490.81
1495.39
1499.79
1504.01
1508.06
1511.94
1515.66
1519.2
1522.57
1525.74
1528.7
1531.44
1533.99
1536.37
1538.61
1540.74
1542.78
1544.74
1546.63
1548.46
1550.25
1552
1553.71
1555.42
1557.1
1558.79
1560.49
1562.2
1563.95
1565.73
1567.57
1569.47
1571.45
1573.51
1575.67
1577.94
1580.31
1582.81
1585.41
1588.08
1590.82
1593.6
1596.42
1599.27
1602.14
1605.01
1607.87
1610.71
1613.51
1616.26
1618.94
1621.52
1624
1626.36
1628.58
1630.63
1632.52
1634.22
1635.72
1637
1638.06
1638.88
1639.47
1639.81
1639.91
1639.77
1639.4
1638.81
1638.01
1637.02
1635.86
1634.54
1633.09
1631.53
1629.89
1628.17
1626.4
1624.59
1622.75
1620.89
1618.99
1617.04
1615.04
1612.94
1610.72
1608.32
1605.69
1602.76
1599.46
1595.71
1591.4
1586.46
1580.76
1574.21
1566.69
1558.08
1548.27
1537.14
1524.61
1510.58
1495.02
1477.88
1459.17
1438.9
1417.14
1393.96
1369.5
1343.92
1317.4
1290.14
1262.36
1234.25
1206.01
1177.8
1149.78
1122.08
1094.84
1068.18
1042.2
1016.99
992.631
969.179
946.678
925.153
904.617
885.07
866.504
848.901
832.24
816.493
801.63
787.619
774.425
762.012
750.345
739.387
729.103
719.457
710.416
701.946
694.016
686.593
679.649
673.155
667.084
661.409
656.106
651.153
646.523
642.19
638.101
634.235
630.606
627.205
624.018
621.034
618.24
615.628
613.189
610.913
608.794
606.826
605.002
603.314
601.739
600.301
598.997
597.824
596.775
595.848
595.035
594.332
593.732
593.228
592.815
592.483
592.225
592.031
591.893
591.8
591.741
591.705
591.68
591.655
591.618
591.556
591.457
591.309
591.101
590.821
590.459
590.006
589.453
588.791
588.014
587.117
586.094
584.943
583.66
582.246
580.699
579.02
577.213
575.279
573.221
571.046
568.757
566.361
563.864
561.272
558.593
555.835
553.005
550.113
547.165
544.172
541.143
538.086
535.011
531.928
528.846
525.775
522.725
519.703
516.718
513.741
47470.9
9406.89
4420.05
3014.29
2420.78
2111.44
1928.47
1810.12
1727.81
1666.8
1618.8
1578.86
1544
1512.45
1483.1
1455.28
1428.48
1402.32
1376.57
1351.14
1326.03
1301.28
1276.91
1252.93
1229.28
1205.88
1182.64
1159.47
1136.31
1113.13
1089.95
1066.63
1043.08
1019.44
995.881
972.573
949.653
927.241
905.441
884.342
864.087
844.807
826.62
809.63
793.926
779.578
766.645
755.188
745.237
736.786
729.837
724.389
720.431
717.958
716.966
717.704
719.772
723.011
727.379
732.897
739.624
747.654
757.117
768.184
781.076
796.073
813.535
833.919
857.78
885.856
919.093
958.645
1005.91
1062.63
1130.75
1212.25
1308.69
1420.52
1546.34
1682.36
1822.45
1958.91
2083.83
2190.35
2272.98
2327.62
2351.86
2344.99
2308.31
2245.47
2162.46
2067.32
1968.82
1874.48
1789.25
1715.26
1652.5
1599.85
1555.78
1518.85
1487.83
1461.74
1439.86
1421.62
1406.59
1394.4
1384.77
1377.43
1372.13
1368.64
1366.74
1366.23
1366.92
1368.62
1371.18
1374.47
1378.35
1382.73
1387.5
1392.59
1397.93
1403.44
1409.08
1414.79
1420.54
1426.29
1432
1437.64
1443.19
1448.62
1453.93
1459.1
1464.11
1468.97
1473.67
1478.21
1482.59
1486.81
1490.88
1494.78
1498.54
1502.14
1505.58
1508.84
1511.91
1514.78
1517.46
1519.98
1522.37
1524.65
1526.84
1528.95
1531
1532.99
1534.93
1536.84
1538.72
1540.58
1542.42
1544.26
1546.1
1547.96
1549.84
1551.76
1553.73
1555.76
1557.86
1560.05
1562.34
1564.73
1567.24
1569.88
1572.61
1575.42
1578.29
1581.21
1584.16
1587.14
1590.12
1593.1
1596.06
1598.98
1601.85
1604.65
1607.36
1609.96
1612.42
1614.74
1616.89
1618.85
1620.61
1622.15
1623.47
1624.53
1625.34
1625.88
1626.17
1626.19
1625.96
1625.48
1624.76
1623.82
1622.68
1621.36
1619.88
1618.28
1616.56
1614.77
1612.91
1611.02
1609.1
1607.16
1605.22
1603.27
1601.3
1599.29
1597.22
1595.05
1592.73
1590.22
1587.43
1584.3
1580.75
1576.68
1571.99
1566.57
1560.33
1553.13
1544.85
1535.39
1524.62
1512.43
1498.73
1483.47
1466.61
1448.13
1428.04
1406.38
1383.26
1358.77
1333.07
1306.36
1278.84
1250.73
1222.24
1193.57
1164.9
1136.41
1108.24
1080.52
1053.39
1026.95
1001.3
976.522
952.678
929.811
907.948
887.103
867.277
848.458
830.632
813.776
797.862
782.859
768.734
755.452
742.976
731.271
720.298
710.022
700.405
691.412
683.009
675.162
667.838
661.005
654.634
648.696
643.164
638.01
633.21
628.741
624.577
620.696
617.069
613.647
610.416
607.385
604.552
601.902
599.425
597.112
594.954
592.943
591.071
589.333
587.722
586.233
584.842
583.577
582.433
581.407
580.494
579.69
578.99
578.389
577.884
577.466
577.132
576.873
576.684
576.556
576.48
576.448
576.45
576.475
576.514
576.555
576.587
576.598
576.577
576.513
576.393
576.207
575.946
575.598
575.156
574.611
573.955
573.183
572.29
571.272
570.126
568.85
567.443
565.907
564.241
562.449
560.534
558.499
556.35
554.091
551.728
549.269
546.719
544.087
541.379
538.605
535.771
532.886
529.96
527.001
524.018
521.02
518.017
515.017
512.031
509.064
506.126
503.188
47470.3
9396.53
4433.2
3036.22
2448.42
2143.63
1964.35
1848.86
1768.81
1709.84
1663.83
1625.78
1592.7
1562.88
1535.31
1509.38
1484.66
1460.74
1437.25
1414.07
1391.19
1368.64
1346.47
1324.68
1303.22
1282
1260.93
1239.92
1218.89
1197.9
1176.76
1155.28
1133.43
1111.32
1089.08
1066.85
1044.74
1022.84
1001.27
980.114
959.491
939.517
920.314
902.004
884.709
868.537
853.582
839.915
827.671
816.916
807.704
800.075
794.069
789.696
786.983
786.254
787.429
790.136
794.268
799.829
806.889
815.559
825.994
838.399
853.034
870.227
890.388
914.004
941.679
974.191
1012.46
1057.55
1110.7
1173.23
1246.36
1330.97
1427.22
1534.07
1648.98
1767.78
1885.01
1994.66
2091.02
2169.12
2224.97
2255.92
2260.68
2239.45
2194.15
2128.62
2048.7
1961.51
1874.01
1791.71
1718
1654.08
1599.71
1553.89
1515.38
1483.02
1455.8
1432.94
1413.82
1397.95
1384.95
1374.5
1366.34
1360.21
1355.9
1353.2
1351.91
1351.86
1352.86
1354.77
1357.44
1360.77
1364.62
1368.92
1373.58
1378.53
1383.69
1389.01
1394.45
1399.96
1405.51
1411.05
1416.57
1422.03
1427.42
1432.72
1437.91
1442.98
1447.92
1452.74
1457.41
1461.95
1466.35
1470.6
1474.7
1478.66
1482.49
1486.19
1489.73
1493.12
1496.32
1499.33
1502.17
1504.86
1507.42
1509.87
1512.23
1514.52
1516.74
1518.9
1521.02
1523.1
1525.15
1527.18
1529.19
1531.19
1533.2
1535.21
1537.24
1539.3
1541.41
1543.57
1545.8
1548.11
1550.52
1553.03
1555.68
1558.45
1561.31
1564.24
1567.24
1570.27
1573.34
1576.42
1579.49
1582.55
1585.58
1588.55
1591.45
1594.27
1596.97
1599.53
1601.93
1604.15
1606.17
1607.98
1609.55
1610.88
1611.94
1612.74
1613.25
1613.49
1613.45
1613.14
1612.57
1611.75
1610.7
1609.44
1608
1606.4
1604.66
1602.82
1600.91
1598.94
1596.93
1594.92
1592.91
1590.9
1588.91
1586.92
1584.92
1582.88
1580.76
1578.53
1576.12
1573.48
1570.52
1567.16
1563.31
1558.87
1553.73
1547.78
1540.9
1532.95
1523.83
1513.41
1501.56
1488.21
1473.26
1456.69
1438.45
1418.56
1397.05
1374
1349.51
1323.75
1296.88
1269.12
1240.71
1211.85
1182.77
1153.66
1124.7
1096.04
1067.84
1040.23
1013.32
987.216
962.005
937.75
914.497
892.273
871.094
850.96
831.864
813.788
796.709
780.599
765.429
751.164
737.769
725.207
713.441
702.432
692.144
682.538
673.578
665.228
657.453
650.217
643.489
637.237
631.43
626.039
621.036
616.394
612.088
608.095
604.39
600.95
597.754
594.775
591.968
589.321
586.83
584.507
582.338
580.315
578.427
576.669
575.034
573.515
572.106
570.803
569.586
568.481
567.483
566.59
565.797
565.101
564.498
563.984
563.555
563.206
562.931
562.726
562.584
562.498
562.461
562.465
562.501
562.561
562.635
562.712
562.783
562.836
562.861
562.847
562.782
562.657
562.462
562.186
561.822
561.36
560.793
560.115
559.321
558.406
557.368
556.203
554.91
553.49
551.943
550.271
548.477
546.564
544.535
542.398
540.155
537.814
535.381
532.864
530.268
527.602
524.874
522.091
519.263
516.397
513.503
510.588
507.662
504.734
501.812
498.903
496.015
493.123
47453.1
9389.6
4446.58
3057.02
2474.42
2174.46
1998.23
1884.57
1806.86
1750.9
1707.95
1672.77
1642.4
1615.14
1590.06
1566.57
1544.3
1522.97
1502.23
1481.82
1461.66
1441.81
1422.3
1403.14
1384.29
1365.68
1347.21
1328.8
1310.37
1292.02
1273.53
1254.64
1235.3
1215.58
1195.61
1175.48
1155.3
1135.14
1115.05
1095.12
1075.43
1056.06
1037.1
1018.67
1000.89
983.871
967.75
952.657
938.726
926.083
914.843
905.107
896.959
890.477
885.696
882.652
882.161
883.826
887.338
892.629
899.742
908.786
919.922
933.362
949.372
968.28
990.483
1016.46
1046.8
1082.18
1123.35
1171.14
1226.4
1289.89
1362.11
1443.1
1532.15
1627.55
1726.51
1825.27
1919.4
2004.4
2076.02
2130.59
2165.4
2178.71
2169.99
2139.92
2090.67
2026.21
1951.86
1873.46
1796.38
1724.65
1660.58
1604.87
1557.25
1516.88
1482.79
1454.04
1429.83
1409.49
1392.51
1378.47
1367.01
1357.86
1350.77
1345.51
1341.89
1339.71
1338.8
1339
1340.15
1342.12
1344.78
1348.04
1351.78
1355.94
1360.43
1365.18
1370.14
1375.25
1380.47
1385.77
1391.11
1396.47
1401.81
1407.12
1412.38
1417.57
1422.69
1427.71
1432.62
1437.43
1442.12
1446.67
1451.09
1455.38
1459.54
1463.59
1467.51
1471.31
1474.98
1478.49
1481.84
1485.02
1488.03
1490.9
1493.64
1496.27
1498.82
1501.29
1503.69
1506.04
1508.34
1510.61
1512.84
1515.04
1517.23
1519.41
1521.59
1523.77
1525.96
1528.17
1530.42
1532.72
1535.08
1537.52
1540.05
1542.69
1545.46
1548.34
1551.32
1554.37
1557.47
1560.61
1563.76
1566.92
1570.06
1573.17
1576.23
1579.21
1582.1
1584.88
1587.51
1589.98
1592.26
1594.34
1596.19
1597.8
1599.15
1600.22
1601.01
1601.51
1601.72
1601.64
1601.28
1600.64
1599.74
1598.61
1597.26
1595.71
1594
1592.16
1590.21
1588.19
1586.11
1584.02
1581.92
1579.84
1577.79
1575.76
1573.76
1571.77
1569.76
1567.71
1565.56
1563.27
1560.77
1557.98
1554.81
1551.19
1546.99
1542.11
1536.44
1529.86
1522.24
1513.45
1503.36
1491.86
1478.83
1464.21
1447.92
1429.94
1410.26
1388.91
1365.96
1341.51
1315.7
1288.71
1260.76
1232.06
1202.87
1173.39
1143.85
1114.42
1085.29
1056.6
1028.5
1001.12
974.549
948.892
924.212
900.557
877.955
856.421
835.96
816.564
798.216
780.892
764.566
749.206
734.78
721.251
708.582
696.736
685.674
675.357
665.748
656.808
648.499
640.786
633.632
627.003
620.865
615.187
609.938
605.087
600.608
596.472
592.655
589.131
585.879
582.874
580.095
577.523
575.135
572.893
570.778
568.783
566.912
565.17
563.545
562.03
560.621
559.309
558.091
556.962
555.907
554.949
554.084
553.31
552.623
552.021
551.5
551.056
550.687
550.388
550.155
549.984
549.869
549.805
549.786
549.804
549.852
549.923
550.006
550.094
550.177
550.245
550.288
550.295
550.256
550.163
550.003
549.769
549.452
549.044
548.536
547.923
547.199
546.36
545.401
544.32
543.116
541.788
540.337
538.762
537.068
535.256
533.331
531.296
529.157
526.92
524.59
522.173
519.678
517.11
514.477
511.788
509.05
506.271
503.459
500.623
497.771
494.911
492.052
489.202
486.366
483.521
47423.2
9381.53
4457.05
3073.85
2495.62
2199.92
2026.07
1914.72
1840.47
1788.39
1749.36
1718.07
1691.47
1667.85
1646.24
1626.07
1606.99
1588.75
1571.15
1553.92
1536.94
1520.22
1503.77
1487.63
1471.77
1456.12
1440.62
1425.16
1409.69
1394.27
1378.85
1363.04
1346.72
1329.97
1312.88
1295.57
1278.1
1260.54
1242.93
1225.32
1207.76
1190.29
1172.99
1155.91
1139.15
1122.8
1106.97
1091.77
1077.33
1063.79
1051.29
1039.96
1029.95
1021.39
1014.41
1009.1
1005.57
1004.98
1006.92
1011.06
1017.35
1025.83
1036.63
1049.94
1066.01
1085.12
1107.63
1133.93
1164.5
1199.85
1240.54
1287.12
1340.05
1399.66
1465.95
1538.44
1616.03
1696.88
1778.44
1857.56
1930.81
1994.73
2046.13
2082.37
2101.52
2102.45
2085
2050.32
2000.75
1939.87
1872.19
1802.39
1734.58
1671.72
1615.45
1566.27
1523.92
1487.79
1457.11
1431.15
1409.23
1390.81
1375.43
1362.73
1352.38
1344.15
1337.79
1333.11
1329.91
1328.02
1327.3
1327.59
1328.75
1330.67
1333.22
1336.32
1339.88
1343.83
1348.09
1352.61
1357.34
1362.23
1367.24
1372.33
1377.49
1382.68
1387.89
1393.09
1398.26
1403.38
1408.45
1413.45
1418.36
1423.16
1427.86
1432.44
1436.91
1441.25
1445.49
1449.62
1453.65
1457.56
1461.35
1465
1468.5
1471.84
1475.03
1478.08
1481.01
1483.83
1486.57
1489.23
1491.82
1494.36
1496.85
1499.3
1501.72
1504.11
1506.49
1508.85
1511.2
1513.55
1515.91
1518.28
1520.68
1523.12
1525.61
1528.17
1530.82
1533.58
1536.46
1539.44
1542.52
1545.66
1548.84
1552.05
1555.27
1558.47
1561.65
1564.77
1567.82
1570.78
1573.61
1576.31
1578.84
1581.18
1583.32
1585.22
1586.86
1588.24
1589.34
1590.13
1590.63
1590.83
1590.72
1590.32
1589.63
1588.67
1587.46
1586.02
1584.39
1582.58
1580.64
1578.59
1576.47
1574.3
1572.12
1569.95
1567.81
1565.72
1563.67
1561.67
1559.7
1557.74
1555.76
1553.71
1551.54
1549.18
1546.55
1543.58
1540.17
1536.21
1531.59
1526.19
1519.9
1512.58
1504.1
1494.34
1483.17
1470.46
1456.15
1440.15
1422.42
1402.96
1381.79
1358.96
1334.56
1308.74
1281.66
1253.53
1224.58
1195.07
1165.22
1135.25
1105.37
1075.77
1046.6
1018.01
990.147
963.113
937.004
911.89
887.821
864.829
842.929
822.126
802.414
783.776
766.192
749.631
734.066
719.461
705.782
692.991
681.05
669.921
659.563
649.938
641.007
632.732
625.073
617.995
611.461
605.437
599.887
594.781
590.087
585.774
581.815
578.182
574.848
571.79
568.984
566.408
564.039
561.86
559.853
557.999
556.273
554.64
553.096
551.635
550.262
548.983
547.789
546.675
545.636
544.667
543.761
542.937
542.192
541.523
540.927
540.402
539.946
539.556
539.229
538.963
538.754
538.598
538.492
538.431
538.409
538.421
538.459
538.518
538.59
538.665
538.737
538.795
538.83
538.834
538.796
538.706
538.557
538.338
538.041
537.659
537.184
536.609
535.928
535.138
534.234
533.214
532.074
530.815
529.436
527.938
526.323
524.593
522.751
520.802
518.75
516.6
514.358
512.029
509.62
507.139
504.591
501.985
499.328
496.627
493.891
491.126
488.343
485.548
482.749
479.954
477.169
474.372
47380.8
9370.46
4462.93
3084.87
2510
2217.02
2045.99
1938.29
1868.43
1821.05
1786.81
1760.3
1738.42
1719.42
1702.26
1686.35
1671.33
1656.98
1643.13
1629.6
1616.26
1603.09
1590.13
1577.39
1564.87
1552.53
1540.29
1528.08
1515.85
1503.58
1491.44
1478.99
1466.02
1452.55
1438.68
1424.51
1410.13
1395.59
1380.93
1366.18
1351.38
1336.55
1321.72
1306.92
1292.21
1277.64
1263.27
1249.18
1235.46
1222.22
1209.58
1197.67
1186.63
1176.62
1167.79
1160.31
1154.3
1149.9
1148.34
1149.71
1153.61
1159.91
1168.67
1180
1194.1
1211.21
1231.6
1255.59
1283.53
1315.81
1352.77
1394.75
1441.94
1494.36
1551.7
1613.27
1677.89
1743.84
1808.96
1870.7
1926.32
1973.18
2008.86
2031.38
2039.38
2032.21
2010.04
1974.03
1926.4
1870.25
1809.29
1747.2
1687.16
1631.43
1581.29
1537.15
1498.85
1465.91
1437.77
1413.85
1393.59
1376.54
1362.28
1350.47
1340.85
1333.21
1327.31
1322.95
1319.95
1318.17
1317.46
1317.68
1318.72
1320.47
1322.82
1325.69
1329.01
1332.71
1336.72
1341
1345.5
1350.17
1354.98
1359.9
1364.9
1369.96
1375.05
1380.17
1385.27
1390.35
1395.38
1400.34
1405.24
1410.04
1414.76
1419.38
1423.89
1428.3
1432.62
1436.84
1440.96
1444.98
1448.9
1452.68
1456.33
1459.84
1463.2
1466.43
1469.54
1472.56
1475.48
1478.33
1481.11
1483.84
1486.52
1489.16
1491.76
1494.34
1496.9
1499.44
1501.97
1504.5
1507.02
1509.55
1512.1
1514.68
1517.3
1519.98
1522.74
1525.6
1528.58
1531.65
1534.8
1538
1541.24
1544.5
1547.75
1550.98
1554.16
1557.26
1560.28
1563.18
1565.93
1568.52
1570.92
1573.1
1575.05
1576.74
1578.15
1579.27
1580.09
1580.59
1580.77
1580.64
1580.19
1579.45
1578.43
1577.15
1575.62
1573.9
1571.99
1569.95
1567.81
1565.59
1563.34
1561.08
1558.85
1556.67
1554.55
1552.49
1550.51
1548.58
1546.68
1544.78
1542.83
1540.79
1538.58
1536.13
1533.35
1530.15
1526.42
1522.05
1516.92
1510.9
1503.87
1495.69
1486.23
1475.37
1462.97
1448.95
1433.23
1415.76
1396.52
1375.52
1352.81
1328.49
1302.67
1275.52
1247.24
1218.08
1188.27
1158.06
1127.69
1097.37
1067.29
1037.65
1008.58
980.235
952.733
926.17
900.618
876.131
852.741
830.468
809.315
789.276
770.339
752.481
735.676
719.893
705.099
691.258
678.334
666.288
655.081
644.674
635.025
626.096
617.847
610.239
603.233
596.793
590.881
585.463
580.503
575.97
571.832
568.057
564.618
561.486
558.634
556.038
553.675
551.522
549.559
547.767
546.129
544.63
543.253
541.98
540.784
539.642
538.551
537.509
536.518
535.59
534.718
533.896
533.126
532.422
531.781
531.2
530.679
530.214
529.805
529.45
529.147
528.895
528.69
528.531
528.413
528.334
528.29
528.275
528.283
528.31
528.347
528.389
528.427
528.453
528.459
528.436
528.374
528.266
528.103
527.875
527.575
527.195
526.727
526.166
525.506
524.742
523.869
522.886
521.788
520.576
519.249
517.807
516.251
514.584
512.808
510.927
508.945
506.867
504.698
502.443
500.108
497.701
495.226
492.693
490.106
487.475
484.806
482.107
479.385
476.649
473.906
471.162
468.425
465.673
47326.4
9355.72
4463.41
3088.97
2515.97
2225.39
2057.88
1954.6
1889.64
1847.47
1818.68
1797.76
1781.51
1768.07
1756.34
1745.65
1735.63
1726.04
1716.72
1707.53
1698.38
1689.28
1680.28
1671.41
1662.67
1654.03
1645.43
1636.81
1628.1
1619.27
1610.5
1601.61
1592.22
1582.27
1571.82
1560.98
1549.84
1538.46
1526.89
1515.15
1503.28
1491.28
1479.16
1466.95
1454.65
1442.28
1429.88
1417.48
1405.12
1392.86
1380.79
1368.99
1357.57
1346.66
1336.4
1326.95
1318.5
1311.19
1305.22
1301.44
1300.92
1303.09
1307.86
1315.23
1325.3
1338.25
1354.29
1373.68
1396.68
1423.55
1454.51
1489.73
1529.22
1572.82
1620.1
1670.3
1722.3
1774.61
1825.38
1872.54
1913.94
1947.52
1971.45
1984.22
1984.83
1972.85
1948.6
1913.17
1868.49
1817.19
1762.24
1706.59
1652.77
1602.63
1557.23
1516.94
1481.57
1450.83
1424.41
1401.79
1382.56
1366.4
1352.87
1341.64
1332.47
1325.12
1319.4
1315.12
1312.12
1310.26
1309.41
1309.44
1310.26
1311.75
1313.83
1316.43
1319.46
1322.89
1326.63
1330.66
1334.93
1339.39
1344.01
1348.76
1353.62
1358.55
1363.53
1368.55
1373.57
1378.58
1383.56
1388.49
1393.37
1398.18
1402.91
1407.56
1412.13
1416.6
1420.99
1425.3
1429.51
1433.64
1437.67
1441.58
1445.37
1449.03
1452.56
1455.96
1459.26
1462.45
1465.56
1468.59
1471.55
1474.46
1477.33
1480.15
1482.94
1485.7
1488.44
1491.16
1493.86
1496.55
1499.24
1501.93
1504.62
1507.34
1510.08
1512.88
1515.74
1518.7
1521.76
1524.91
1528.12
1531.38
1534.66
1537.94
1541.21
1544.43
1547.59
1550.65
1553.6
1556.41
1559.05
1561.5
1563.73
1565.72
1567.44
1568.88
1570.02
1570.83
1571.33
1571.48
1571.31
1570.82
1570.01
1568.91
1567.54
1565.92
1564.09
1562.09
1559.94
1557.7
1555.39
1553.06
1550.74
1548.46
1546.25
1544.12
1542.08
1540.13
1538.26
1536.44
1534.64
1532.82
1530.92
1528.88
1526.61
1524.03
1521.04
1517.53
1513.4
1508.52
1502.77
1496.01
1488.11
1478.94
1468.36
1456.25
1442.51
1427.05
1409.82
1390.79
1369.97
1347.39
1323.13
1297.33
1270.13
1241.73
1212.36
1182.28
1151.74
1120.97
1090.22
1059.69
1029.56
1000.02
971.206
943.243
916.229
890.242
865.336
841.548
818.897
797.391
777.024
757.782
739.645
722.589
706.583
691.593
677.585
664.521
652.364
641.074
630.61
620.933
612.002
603.777
596.217
589.283
582.937
577.141
571.857
567.05
562.685
558.73
555.151
551.918
549
546.37
544.001
541.868
539.947
538.217
536.656
535.246
533.971
532.814
531.763
530.804
529.922
529.1
528.313
527.545
526.792
526.056
525.338
524.643
523.997
523.398
522.844
522.333
521.866
521.442
521.059
520.719
520.419
520.159
519.937
519.752
519.603
519.485
519.396
519.333
519.29
519.263
519.246
519.232
519.216
519.188
519.143
519.072
518.966
518.817
518.617
518.359
518.033
517.634
517.153
516.584
515.923
515.163
514.301
513.333
512.258
511.073
509.778
508.372
506.858
505.236
503.509
501.68
499.753
497.731
495.62
493.425
491.152
488.806
486.393
483.921
481.396
478.824
476.214
473.572
470.905
468.221
465.528
462.831
460.138
457.428
47265.4
9340.05
4459.8
3087.04
2514.49
2225
2061.09
1962.72
1902.87
1866.19
1843.34
1828.67
1818.85
1811.86
1806.5
1801.99
1797.9
1793.95
1789.98
1785.86
1781.59
1777.22
1772.8
1768.37
1763.95
1759.51
1755.02
1750.42
1745.66
1740.69
1735.52
1730.36
1724.84
1718.73
1712.01
1704.77
1697.08
1689.04
1680.69
1672.08
1663.22
1654.14
1644.82
1635.28
1625.51
1615.51
1605.27
1594.79
1584.09
1573.18
1562.08
1550.83
1539.49
1528.14
1516.88
1505.82
1495.13
1484.99
1475.62
1467.23
1460.09
1455.61
1454.26
1455.66
1459.79
1466.7
1476.55
1489.51
1505.81
1525.61
1549.06
1576.21
1607.01
1641.18
1678.27
1717.53
1757.97
1798.27
1836.87
1872.13
1902.31
1925.75
1940.99
1946.84
1942.51
1927.74
1902.81
1868.7
1827.04
1780
1730.02
1679.53
1630.74
1584.96
1542.85
1504.98
1471.41
1441.97
1416.67
1394.95
1376.41
1360.7
1347.47
1336.44
1327.35
1320
1314.2
1309.78
1306.58
1304.49
1303.36
1303.1
1303.59
1304.76
1306.52
1308.8
1311.52
1314.64
1318.11
1321.88
1325.9
1330.13
1334.55
1339.12
1343.81
1348.59
1353.44
1358.34
1363.27
1368.2
1373.11
1378
1382.85
1387.65
1392.4
1397.07
1401.67
1406.2
1410.66
1415.04
1419.34
1423.56
1427.7
1431.73
1435.65
1439.45
1443.13
1446.7
1450.16
1453.52
1456.8
1460
1463.15
1466.23
1469.27
1472.27
1475.23
1478.17
1481.08
1483.97
1486.85
1489.71
1492.55
1495.4
1498.24
1501.09
1503.96
1506.87
1509.84
1512.89
1516.03
1519.24
1522.5
1525.8
1529.1
1532.4
1535.65
1538.84
1541.95
1544.94
1547.79
1550.47
1552.95
1555.21
1557.22
1558.96
1560.4
1561.53
1562.33
1562.78
1562.89
1562.66
1562.08
1561.18
1559.98
1558.5
1556.76
1554.82
1552.7
1550.44
1548.1
1545.71
1543.31
1540.94
1538.63
1536.41
1534.3
1532.3
1530.41
1528.63
1526.91
1525.24
1523.57
1521.83
1519.96
1517.89
1515.51
1512.74
1509.46
1505.57
1500.93
1495.43
1488.92
1481.29
1472.38
1462.06
1450.22
1436.73
1421.52
1404.52
1385.68
1365.02
1342.55
1318.37
1292.58
1265.34
1236.83
1207.28
1176.95
1146.09
1114.95
1083.77
1052.79
1022.19
992.174
962.895
934.483
907.029
880.613
855.294
831.111
808.087
786.229
765.534
745.989
727.575
710.267
694.037
678.85
664.673
651.468
639.198
627.823
617.302
607.596
598.662
590.461
582.95
576.09
569.842
564.165
559.022
554.376
550.19
546.429
543.059
540.047
537.361
534.972
532.85
530.969
529.302
527.827
526.521
525.362
524.332
523.414
522.593
521.855
521.188
520.582
520.026
519.505
519.006
518.512
518.001
517.474
516.931
516.399
515.882
515.391
514.929
514.494
514.087
513.708
513.358
513.036
512.745
512.482
512.248
512.042
511.862
511.706
511.571
511.454
511.351
511.257
511.166
511.073
510.972
510.854
510.713
510.542
510.332
510.077
509.767
509.396
508.957
508.442
507.847
507.164
506.389
505.519
504.548
503.476
502.3
501.02
499.634
498.144
496.55
494.856
493.063
491.176
489.196
487.13
484.982
482.757
480.461
478.099
475.678
473.203
470.683
468.122
465.529
462.91
460.272
457.622
454.967
452.313
449.641
47326.2
9345.73
4457.07
3081.14
2507.23
2217.35
2056.36
1962.63
1907.66
1876.37
1859.56
1851.51
1848.63
1848.74
1850.46
1852.95
1855.62
1858.14
1860.34
1862.17
1863.65
1864.84
1865.79
1866.54
1867.12
1867.53
1867.75
1867.73
1867.43
1866.81
1865.85
1864.67
1863.32
1861.48
1858.98
1855.81
1852.04
1847.75
1843
1837.84
1832.3
1826.41
1820.16
1813.56
1806.58
1799.23
1791.47
1783.28
1774.65
1765.56
1755.99
1745.94
1735.4
1724.39
1712.96
1701.15
1689.07
1676.82
1664.54
1652.46
1640.79
1629.82
1620.25
1613.49
1609.74
1608.82
1610.74
1615.59
1623.53
1634.69
1649.19
1667.04
1688.15
1712.25
1738.9
1767.41
1796.91
1826.28
1854.2
1879.28
1900.08
1915.23
1923.51
1923.93
1915.87
1899.09
1873.86
1840.99
1801.83
1758.21
1712.28
1665.98
1620.73
1577.62
1537.41
1500.98
1468.66
1440.21
1415.44
1394.01
1375.58
1359.83
1346.47
1335.22
1325.87
1318.21
1312.06
1307.26
1303.67
1301.16
1299.62
1298.94
1299.02
1299.79
1301.15
1303.05
1305.42
1308.21
1311.35
1314.82
1318.57
1322.55
1326.74
1331.09
1335.59
1340.19
1344.89
1349.65
1354.46
1359.29
1364.13
1368.96
1373.76
1378.54
1383.28
1387.96
1392.59
1397.16
1401.67
1406.11
1410.49
1414.79
1419.02
1423.15
1427.19
1431.11
1434.93
1438.65
1442.26
1445.78
1449.22
1452.59
1455.9
1459.15
1462.36
1465.53
1468.66
1471.77
1474.85
1477.91
1480.95
1483.98
1486.99
1489.99
1492.98
1495.97
1498.97
1502
1505.07
1508.22
1511.43
1514.7
1518
1521.32
1524.63
1527.9
1531.12
1534.25
1537.26
1540.12
1542.82
1545.31
1547.57
1549.57
1551.28
1552.69
1553.77
1554.5
1554.88
1554.9
1554.56
1553.87
1552.84
1551.5
1549.87
1548
1545.92
1543.67
1541.3
1538.86
1536.39
1533.94
1531.54
1529.23
1527.03
1524.96
1523.04
1521.25
1519.58
1518.01
1516.49
1514.99
1513.44
1511.78
1509.91
1507.75
1505.2
1502.15
1498.49
1494.09
1488.83
1482.56
1475.17
1466.5
1456.42
1444.81
1431.55
1416.55
1399.75
1381.09
1360.57
1338.22
1314.1
1288.32
1261.03
1232.42
1202.7
1172.12
1140.96
1109.47
1077.9
1046.49
1015.44
984.946
955.186
926.31
898.426
871.594
845.87
821.3
797.909
775.707
754.691
734.851
716.166
698.612
682.162
666.783
652.44
639.098
626.717
615.26
604.685
594.951
586.018
577.843
570.386
563.606
557.461
551.912
546.919
542.444
538.449
534.897
531.753
528.981
526.548
524.421
522.571
520.968
519.584
518.393
517.371
516.493
515.738
515.088
514.525
514.033
513.599
513.211
512.86
512.538
512.235
511.944
511.656
511.354
511.031
510.668
510.279
509.869
509.446
509.016
508.587
508.169
507.766
507.379
507.01
506.659
506.327
506.017
505.727
505.457
505.207
504.976
504.759
504.555
504.36
504.169
503.977
503.779
503.567
503.336
503.079
502.788
502.456
502.076
501.641
501.143
500.576
499.935
499.213
498.406
497.509
496.519
495.433
494.249
492.967
491.585
490.103
488.523
486.847
485.076
483.214
481.264
479.23
477.116
474.928
472.67
470.347
467.967
465.534
463.054
460.536
457.983
455.404
452.805
450.193
447.574
444.954
442.316
47382.6
9356.47
4453.42
3071.82
2495.51
2205.29
2045.53
1954.81
1904.14
1877.88
1866.81
1865.17
1869.26
1876.67
1885.83
1895.75
1905.76
1915.51
1924.8
1933.57
1941.81
1949.53
1956.77
1963.56
1969.97
1976
1981.67
1986.95
1991.83
1996.26
2000.21
2003.68
2006.83
2009.65
2011.96
2013.54
2014.37
2014.5
2013.99
2012.89
2011.25
2009.1
2006.44
2003.29
1999.63
1995.43
1990.69
1985.36
1979.42
1972.81
1965.52
1957.49
1948.71
1939.12
1928.73
1917.52
1905.51
1892.73
1879.26
1865.18
1850.65
1835.86
1821.05
1806.5
1793.36
1783.12
1775.66
1770.97
1769.07
1770.07
1774.05
1781.05
1791
1803.7
1818.8
1835.74
1853.76
1871.92
1889.13
1904.2
1915.88
1923.03
1924.6
1919.76
1907.96
1889.01
1863.13
1830.91
1793.5
1752.55
1709.64
1665.9
1622.48
1580.83
1542.08
1506.67
1474.83
1446.52
1421.59
1399.8
1380.87
1364.54
1350.55
1338.66
1328.65
1320.33
1313.53
1308.09
1303.87
1300.76
1298.63
1297.38
1296.92
1297.17
1298.05
1299.49
1301.43
1303.81
1306.59
1309.71
1313.13
1316.82
1320.73
1324.83
1329.09
1333.49
1338
1342.6
1347.26
1351.97
1356.7
1361.45
1366.2
1370.94
1375.65
1380.33
1384.97
1389.56
1394.1
1398.59
1403.03
1407.39
1411.69
1415.91
1420.05
1424.09
1428.03
1431.87
1435.63
1439.3
1442.89
1446.41
1449.88
1453.29
1456.66
1459.99
1463.29
1466.57
1469.82
1473.05
1476.26
1479.46
1482.63
1485.79
1488.94
1492.07
1495.2
1498.35
1501.54
1504.78
1508.05
1511.36
1514.68
1518
1521.27
1524.48
1527.61
1530.61
1533.46
1536.13
1538.58
1540.8
1542.74
1544.38
1545.7
1546.67
1547.28
1547.53
1547.4
1546.9
1546.03
1544.83
1543.31
1541.51
1539.47
1537.23
1534.84
1532.35
1529.82
1527.29
1524.8
1522.4
1520.12
1517.99
1516.01
1514.2
1512.55
1511.04
1509.65
1508.33
1507.04
1505.7
1504.26
1502.62
1500.7
1498.38
1495.56
1492.13
1487.96
1482.92
1476.88
1469.7
1461.25
1451.38
1439.97
1426.9
1412.09
1395.46
1376.95
1356.55
1334.29
1310.21
1284.43
1257.1
1228.38
1198.49
1167.69
1136.24
1104.44
1072.52
1040.72
1009.24
978.277
948.029
918.662
890.306
863.053
836.938
811.992
788.246
765.711
744.387
724.262
705.318
687.531
670.871
655.309
640.81
627.338
614.855
603.322
592.699
582.945
574.018
565.877
558.48
551.787
545.755
540.343
535.513
531.223
527.434
524.11
521.211
518.701
516.545
514.71
513.161
511.867
510.798
509.926
509.222
508.661
508.22
507.875
507.607
507.398
507.232
507.095
506.976
506.865
506.754
506.638
506.512
506.371
506.21
506.024
505.807
505.561
505.276
504.945
504.569
504.157
503.722
503.271
502.815
502.364
501.921
501.49
501.071
500.666
500.276
499.903
499.544
499.2
498.868
498.545
498.227
497.912
497.592
497.264
496.921
496.556
496.163
495.735
495.265
494.746
494.171
493.535
492.83
492.052
491.195
490.255
489.23
488.114
486.908
485.608
484.214
482.727
481.147
479.474
477.712
475.863
473.929
471.915
469.824
467.661
465.43
463.137
460.787
458.386
455.939
453.453
450.934
448.388
445.822
443.241
440.653
438.062
435.453
47393
9367.3
4449.43
3060.86
2480.96
2189.33
2029.77
1940.65
1892.8
1870.52
1864.47
1868.69
1879.31
1893.76
1910.36
1927.94
1945.78
1963.43
1980.63
1997.23
2013.14
2028.3
2042.72
2056.43
2069.49
2081.96
2093.89
2105.29
2116.16
2126.46
2136.19
2145.31
2153.81
2161.85
2169.44
2176.48
2182.77
2188.24
2192.87
2196.72
2199.82
2202.22
2203.92
2204.96
2205.31
2204.98
2203.94
2202.16
2199.6
2196.21
2191.96
2186.79
2180.64
2173.47
2165.22
2155.84
2145.32
2133.61
2120.72
2106.65
2091.46
2075.22
2058.04
2040.11
2021.6
2002.76
1985.22
1970.46
1958.06
1948.09
1940.58
1935.56
1933.03
1932.88
1934.88
1938.65
1943.62
1949.09
1954.17
1957.9
1959.27
1957.29
1951.06
1939.89
1923.35
1901.29
1873.8
1841.28
1804.7
1765.09
1723.33
1680.39
1638.19
1597.55
1559.26
1523.85
1491.57
1462.52
1436.61
1413.7
1393.58
1376.04
1360.84
1347.78
1336.65
1327.25
1319.43
1313.03
1307.9
1303.93
1300.99
1298.99
1297.82
1297.41
1297.67
1298.53
1299.94
1301.82
1304.14
1306.83
1309.86
1313.18
1316.76
1320.56
1324.55
1328.69
1332.98
1337.37
1341.86
1346.41
1351.01
1355.65
1360.31
1364.98
1369.64
1374.29
1378.92
1383.52
1388.08
1392.59
1397.06
1401.48
1405.84
1410.13
1414.35
1418.48
1422.53
1426.49
1430.37
1434.18
1437.91
1441.59
1445.2
1448.77
1452.3
1455.8
1459.27
1462.71
1466.14
1469.54
1472.93
1476.3
1479.64
1482.96
1486.26
1489.53
1492.8
1496.06
1499.34
1502.65
1505.96
1509.28
1512.57
1515.82
1519
1522.08
1525.03
1527.81
1530.4
1532.76
1534.87
1536.68
1538.18
1539.33
1540.13
1540.55
1540.59
1540.23
1539.51
1538.41
1536.98
1535.24
1533.23
1530.99
1528.58
1526.05
1523.46
1520.85
1518.28
1515.8
1513.44
1511.24
1509.21
1507.37
1505.73
1504.27
1502.97
1501.8
1500.72
1499.67
1498.59
1497.4
1496.01
1494.33
1492.26
1489.68
1486.47
1482.52
1477.69
1471.85
1464.86
1456.59
1446.9
1435.66
1422.76
1408.09
1391.58
1373.19
1352.89
1330.69
1306.64
1280.83
1253.43
1224.6
1194.55
1163.54
1131.86
1099.77
1067.51
1035.31
1003.4
971.976
941.25
911.404
882.578
854.879
828.365
803.063
778.977
756.128
734.513
714.122
694.937
676.933
660.082
644.352
629.711
616.122
603.548
591.95
581.289
571.524
562.613
554.516
547.191
540.595
534.688
529.428
524.774
520.686
517.123
514.047
511.417
509.196
507.347
505.833
504.619
503.671
502.956
502.443
502.1
501.9
501.816
501.822
501.895
502.015
502.162
502.32
502.475
502.615
502.731
502.815
502.862
502.87
502.837
502.76
502.644
502.498
502.323
502.11
501.849
501.531
501.152
500.714
500.223
499.695
499.141
498.575
498.005
497.44
496.884
496.339
495.807
495.288
494.783
494.291
493.809
493.337
492.869
492.403
491.932
491.452
490.957
490.44
489.895
489.315
488.693
488.023
487.298
486.513
485.661
484.738
483.74
482.663
481.503
480.258
478.927
477.508
476.002
474.407
472.726
470.96
469.111
467.182
465.176
463.097
460.948
458.735
456.461
454.133
451.754
449.332
446.871
444.378
441.858
439.317
436.762
434.199
431.632
429.049
47357.9
9378.36
4446.07
3049.32
2464.45
2170.04
2009.38
1920.51
1874.13
1854.44
1852.1
1861.16
1877.65
1898.83
1922.78
1948.16
1974.11
2000.04
2025.63
2050.65
2074.89
2098.21
2120.54
2141.9
2162.35
2182.01
2200.95
2219.24
2236.91
2253.96
2270.36
2286.11
2301.17
2315.51
2329.21
2342.36
2354.85
2366.65
2377.55
2387.51
2396.52
2404.6
2411.77
2418.04
2423.41
2427.87
2431.41
2434.01
2435.62
2436.22
2435.76
2434.17
2431.41
2427.41
2422.12
2415.46
2407.38
2397.82
2386.74
2374.1
2359.88
2344.06
2326.67
2307.74
2287.36
2265.63
2242.69
2218.78
2195.95
2175.26
2156.35
2139.26
2123.95
2110.41
2098.51
2088.03
2078.65
2069.89
2061.16
2051.74
2040.9
2027.85
2011.92
1992.61
1969.58
1942.7
1911.99
1877.64
1840.04
1799.39
1757.24
1714.51
1672.2
1631.14
1592.04
1555.41
1521.58
1490.72
1462.86
1437.91
1415.75
1396.2
1379.07
1364.18
1351.32
1340.32
1331
1323.21
1316.79
1311.63
1307.59
1304.56
1302.45
1301.17
1300.63
1300.76
1301.48
1302.73
1304.47
1306.63
1309.17
1312.04
1315.21
1318.63
1322.28
1326.11
1330.12
1334.26
1338.52
1342.88
1347.32
1351.81
1356.35
1360.92
1365.51
1370.1
1374.69
1379.26
1383.81
1388.33
1392.82
1397.27
1401.67
1406.01
1410.3
1414.51
1418.66
1422.73
1426.73
1430.66
1434.53
1438.34
1442.11
1445.84
1449.53
1453.19
1456.82
1460.44
1464.03
1467.6
1471.16
1474.69
1478.19
1481.66
1485.1
1488.5
1491.86
1495.21
1498.55
1501.87
1505.16
1508.41
1511.6
1514.7
1517.68
1520.51
1523.16
1525.6
1527.78
1529.69
1531.29
1532.56
1533.46
1533.99
1534.12
1533.87
1533.22
1532.19
1530.8
1529.09
1527.08
1524.83
1522.39
1519.81
1517.16
1514.48
1511.83
1509.27
1506.84
1504.58
1502.51
1500.65
1499.02
1497.6
1496.39
1495.36
1494.47
1493.68
1492.92
1492.12
1491.21
1490.09
1488.68
1486.85
1484.51
1481.53
1477.78
1473.14
1467.48
1460.66
1452.54
1442.98
1431.87
1419.08
1404.52
1388.1
1369.78
1349.53
1327.35
1303.3
1277.45
1249.95
1220.99
1190.79
1159.6
1127.69
1095.3
1062.69
1030.08
997.731
965.845
934.647
904.33
875.05
846.921
820.014
794.362
769.975
746.838
724.958
704.326
684.924
666.727
649.706
633.831
619.067
605.379
592.731
581.085
570.4
560.638
551.757
543.717
536.476
529.993
524.226
519.134
514.675
510.809
507.494
504.691
502.357
500.456
498.946
497.79
496.95
496.389
496.072
495.965
496.032
496.244
496.569
496.98
497.449
497.953
498.469
498.977
499.461
499.905
500.298
500.63
500.895
501.087
501.204
501.246
501.215
501.119
500.979
500.798
500.573
500.3
499.974
499.585
499.126
498.597
498.001
497.346
496.647
495.917
495.174
494.427
493.684
492.951
492.233
491.529
490.84
490.165
489.503
488.852
488.208
487.566
486.922
486.271
485.605
484.92
484.208
483.462
482.677
481.845
480.961
480.019
479.014
477.941
476.797
475.577
474.28
472.903
471.446
469.906
468.285
466.583
464.8
462.94
461.005
458.996
456.918
454.774
452.568
450.306
447.99
445.627
443.221
440.778
438.303
435.803
433.283
430.748
428.205
425.659
423.097
47280.2
9392.9
4446.49
3040.08
2448.58
2149.77
1986.4
1896.23
1849.8
1831.26
1831.26
1843.82
1864.93
1891.79
1922.4
1955.3
1989.42
2023.98
2058.4
2092.25
2125.26
2157.21
2187.95
2217.46
2245.81
2273.18
2299.74
2325.56
2350.71
2375.23
2399.13
2422.39
2444.98
2466.85
2487.97
2508.28
2527.92
2546.85
2565
2582.3
2598.58
2613.77
2627.84
2640.76
2652.52
2663.11
2672.49
2680.65
2687.56
2693.16
2697.42
2700.3
2701.72
2701.65
2699.99
2696.7
2691.72
2684.96
2676.37
2665.89
2653.46
2639.06
2622.63
2604.17
2583.67
2561.12
2536.54
2509.95
2481.29
2451.09
2421.28
2392.73
2365.27
2338.82
2313.32
2288.68
2264.74
2241.25
2217.86
2194.16
2169.67
2143.9
2116.4
2086.84
2055.02
2020.91
1984.64
1945.93
1904.72
1861.74
1817.63
1773.13
1728.99
1685.86
1644.37
1605.08
1568.35
1534.38
1503.35
1475.24
1449.97
1427.42
1407.46
1389.89
1374.55
1361.24
1349.81
1340.06
1331.86
1325.06
1319.53
1315.13
1311.77
1309.35
1307.76
1306.92
1306.77
1307.22
1308.22
1309.7
1311.63
1313.94
1316.59
1319.55
1322.77
1326.22
1329.88
1333.72
1337.7
1341.81
1346.03
1350.34
1354.71
1359.15
1363.62
1368.12
1372.64
1377.16
1381.68
1386.18
1390.67
1395.13
1399.55
1403.93
1408.27
1412.55
1416.77
1420.94
1425.04
1429.09
1433.08
1437.03
1440.94
1444.81
1448.65
1452.46
1456.25
1460.01
1463.76
1467.48
1471.18
1474.84
1478.47
1482.05
1485.57
1489.04
1492.45
1495.81
1499.11
1502.35
1505.51
1508.58
1511.54
1514.34
1516.97
1519.4
1521.58
1523.49
1525.11
1526.39
1527.31
1527.86
1528.01
1527.77
1527.13
1526.1
1524.71
1522.98
1520.94
1518.65
1516.16
1513.52
1510.8
1508.05
1505.34
1502.71
1500.22
1497.92
1495.82
1493.96
1492.35
1491
1489.88
1488.99
1488.29
1487.73
1487.27
1486.84
1486.36
1485.75
1484.93
1483.78
1482.21
1480.1
1477.33
1473.77
1469.3
1463.78
1457.09
1449.08
1439.62
1428.59
1415.86
1401.35
1384.97
1366.67
1346.42
1324.23
1300.14
1274.21
1246.59
1217.48
1187.13
1155.77
1123.61
1090.91
1057.92
1024.89
992.089
959.743
928.072
897.294
867.577
839.044
811.774
785.801
761.128
737.744
715.625
694.779
675.19
656.831
639.67
623.675
608.814
595.051
582.35
570.674
559.985
550.243
541.409
533.442
526.302
519.949
514.34
509.435
505.192
501.571
498.53
496.027
494.021
492.472
491.338
490.58
490.157
490.03
490.161
490.512
491.046
491.728
492.523
493.401
494.33
495.283
496.233
497.158
498.036
498.85
499.584
500.226
500.767
501.2
501.52
501.728
501.822
501.806
501.697
501.514
501.262
500.946
500.57
500.137
499.644
499.087
498.462
497.763
496.99
496.148
495.249
494.308
493.341
492.363
491.389
490.424
489.474
488.544
487.633
486.743
485.87
485.011
484.164
483.325
482.487
481.645
480.793
479.923
479.031
478.108
477.149
476.147
475.096
473.991
472.827
471.6
470.306
468.942
467.505
465.995
464.41
462.75
461.015
459.206
457.324
455.371
453.35
451.264
449.116
446.91
444.649
442.339
439.984
437.588
435.157
432.695
430.209
427.704
425.186
422.659
420.129
417.586
47190.8
9419.38
4456.83
3039.38
2440.25
2136.04
1968.85
1876.11
1828.21
1809.23
1809.79
1823.9
1847.53
1877.85
1912.77
1950.78
1990.73
2031.73
2073.15
2114.46
2155.25
2195.15
2233.85
2271.18
2307.13
2341.8
2375.35
2408.05
2440.05
2471.45
2502.29
2532.6
2562.38
2591.55
2620.04
2647.8
2674.78
2700.91
2726.3
2750.86
2774.55
2797.28
2818.85
2839.16
2858.14
2875.73
2891.86
2906.49
2919.56
2931.01
2940.8
2948.86
2955.13
2959.53
2962.01
2962.48
2960.88
2957.14
2951.17
2942.92
2932.33
2919.33
2903.87
2885.93
2865.47
2842.46
2816.92
2788.82
2758.18
2724.98
2689.12
2651.44
2614.23
2577.34
2540.79
2504.55
2468.53
2432.62
2396.66
2360.42
2323.65
2286.06
2247.4
2207.48
2166.19
2123.62
2079.94
2035.83
1990.22
1943.22
1895.38
1847.34
1799.73
1753.16
1708.18
1665.34
1625.02
1587.41
1552.59
1520.73
1491.77
1465.7
1442.41
1421.72
1403.48
1387.51
1373.61
1361.63
1351.38
1342.71
1335.48
1329.54
1324.78
1321.07
1318.32
1316.43
1315.31
1314.88
1315.08
1315.84
1317.1
1318.8
1320.91
1323.36
1326.13
1329.18
1332.46
1335.96
1339.65
1343.49
1347.47
1351.57
1355.77
1360.04
1364.38
1368.77
1373.2
1377.64
1382.11
1386.57
1391.03
1395.47
1399.9
1404.29
1408.65
1412.97
1417.24
1421.46
1425.64
1429.77
1433.85
1437.89
1441.89
1445.86
1449.8
1453.72
1457.61
1461.47
1465.31
1469.11
1472.88
1476.6
1480.27
1483.87
1487.39
1490.82
1494.16
1497.42
1500.57
1503.6
1506.51
1509.27
1511.85
1514.22
1516.37
1518.25
1519.83
1521.09
1522
1522.54
1522.69
1522.44
1521.8
1520.76
1519.35
1517.59
1515.52
1513.19
1510.64
1507.94
1505.15
1502.33
1499.54
1496.85
1494.29
1491.93
1489.79
1487.91
1486.31
1484.99
1483.94
1483.15
1482.6
1482.25
1482.04
1481.92
1481.83
1481.67
1481.37
1480.84
1479.96
1478.64
1476.75
1474.17
1470.8
1466.49
1461.11
1454.53
1446.61
1437.24
1426.27
1413.59
1399.11
1382.75
1364.46
1344.19
1321.95
1297.8
1271.79
1244.06
1214.82
1184.29
1152.68
1120.22
1087.15
1053.77
1020.33
987.094
954.3
922.161
890.893
860.725
831.788
804.164
777.889
752.956
729.326
706.974
685.925
666.165
647.66
630.375
614.277
599.332
585.504
572.759
561.061
550.372
540.655
531.872
523.983
516.948
510.729
505.284
500.573
496.556
493.19
490.435
488.249
486.59
485.416
484.684
484.353
484.38
484.724
485.343
486.196
487.244
488.446
489.766
491.168
492.615
494.077
495.524
496.927
498.262
499.508
500.645
501.659
502.537
503.271
503.852
504.28
504.553
504.673
504.645
504.488
504.221
503.851
503.387
502.839
502.215
501.525
500.771
499.956
499.075
498.126
497.105
496.014
494.862
493.66
492.429
491.184
489.939
488.706
487.493
486.306
485.143
484.008
482.898
481.811
480.741
479.684
478.635
477.588
476.535
475.469
474.385
473.276
472.133
470.953
469.728
468.454
467.125
465.739
464.291
462.779
461.201
459.555
457.841
456.059
454.208
452.291
450.309
448.263
446.156
443.992
441.773
439.504
437.189
434.83
432.434
430.005
427.548
425.068
422.57
420.059
417.541
415.02
412.487
47085.5
9449.15
4471.74
3043.4
2436.44
2126.51
1955.09
1859.26
1809.24
1789.02
1789.19
1803.74
1828.62
1860.94
1898.61
1940.05
1984.04
2029.66
2076.18
2123.03
2169.69
2215.68
2260.55
2304.04
2346.06
2386.73
2426.29
2464.98
2503
2540.48
2577.46
2613.94
2649.84
2685.16
2719.86
2753.9
2787.24
2819.89
2851.72
2882.67
2912.81
2942.03
2970.22
2997.27
3022.97
3047.2
3069.83
3090.78
3109.96
3127.29
3142.68
3156.07
3167.36
3176.47
3183.33
3187.86
3189.97
3189.58
3186.62
3181
3172.67
3161.54
3147.58
3130.74
3110.98
3088.27
3062.6
3033.96
3002.34
2967.75
2930.18
2889.65
2846.16
2802.06
2757.83
2713.41
2668.74
2623.76
2578.38
2532.5
2486
2438.76
2390.64
2341.54
2291.45
2240.66
2190.13
2140.24
2090.12
2039.01
1987.22
1935.26
1883.71
1833.17
1784.15
1737.13
1692.54
1650.67
1611.6
1575.55
1542.53
1512.43
1485.2
1460.75
1439.03
1419.83
1402.97
1388.28
1375.56
1364.65
1355.38
1347.6
1341.17
1335.95
1331.84
1328.71
1326.47
1325.03
1324.31
1324.23
1324.74
1325.76
1327.24
1329.14
1331.4
1333.98
1336.85
1339.98
1343.33
1346.87
1350.59
1354.45
1358.44
1362.53
1366.71
1370.96
1375.27
1379.62
1384
1388.4
1392.81
1397.22
1401.62
1406
1410.36
1414.69
1418.98
1423.23
1427.44
1431.61
1435.74
1439.84
1443.89
1447.92
1451.91
1455.88
1459.81
1463.71
1467.58
1471.4
1475.17
1478.88
1482.51
1486.06
1489.5
1492.82
1496.02
1499.09
1502.01
1504.78
1507.36
1509.74
1511.89
1513.79
1515.41
1516.71
1517.68
1518.29
1518.51
1518.35
1517.78
1516.81
1515.46
1513.75
1511.72
1509.39
1506.84
1504.1
1501.26
1498.36
1495.47
1492.67
1489.99
1487.51
1485.25
1483.26
1481.57
1480.17
1479.08
1478.29
1477.78
1477.52
1477.46
1477.55
1477.74
1477.94
1478.08
1478.08
1477.83
1477.23
1476.18
1474.56
1472.26
1469.14
1465.09
1459.97
1453.65
1446
1436.88
1426.18
1413.78
1399.57
1383.47
1365.43
1345.41
1323.39
1299.41
1273.52
1245.86
1216.64
1186.04
1154.29
1121.61
1088.28
1054.57
1020.77
987.157
953.959
921.394
889.663
858.97
829.478
801.343
774.603
749.254
725.247
702.544
681.146
661.065
642.262
624.7
608.346
593.165
579.123
566.187
554.322
543.493
533.664
524.798
516.857
509.803
503.598
498.202
493.576
489.679
486.471
483.91
481.955
480.564
479.693
479.299
479.339
479.769
480.544
481.621
482.956
484.505
486.225
488.074
490.011
491.998
493.997
495.974
497.896
499.735
501.463
503.059
504.502
505.778
506.874
507.781
508.494
509.011
509.334
509.464
509.409
509.191
508.824
508.319
507.686
506.937
506.086
505.147
504.133
503.054
501.914
500.716
499.457
498.133
496.744
495.294
493.796
492.265
490.718
489.173
487.644
486.139
484.665
483.227
481.824
480.454
479.117
477.806
476.516
475.241
473.974
472.709
471.437
470.153
468.849
467.518
466.154
464.751
463.305
461.811
460.264
458.662
457.003
455.284
453.504
451.663
449.76
447.796
445.773
443.692
441.555
439.365
437.125
434.838
432.508
430.139
427.734
425.299
422.838
420.356
417.857
415.347
412.83
410.312
407.784
46957.1
9500.33
4499.82
3056.8
2439.66
2122.29
1945.28
1845.18
1791.95
1769.45
1768.19
1782.13
1807.19
1840.47
1879.85
1923.7
1970.78
2020.12
2070.95
2122.63
2174.58
2226.22
2276.97
2326.39
2374.32
2420.84
2466.19
2510.65
2554.46
2597.8
2640.77
2683.38
2725.63
2767.49
2808.89
2849.73
2889.89
2929.23
2967.73
3005.38
3042.21
3078.16
3113.17
3147.1
3179.82
3211.18
3240.94
3268.93
3295.02
3319.06
3340.95
3360.57
3377.82
3392.58
3404.76
3414.24
3420.94
3424.75
3425.59
3423.36
3417.98
3409.38
3397.49
3382.28
3363.69
3341.7
3316.3
3287.46
3255.2
3219.51
3180.41
3137.88
3091.88
3042.24
2990.56
2938.35
2885.52
2832.03
2777.83
2722.89
2667.17
2610.63
2553.23
2494.79
2436.21
2377.67
2319.53
2262.27
2205.96
2150.1
2094.27
2038.38
1982.81
1928.18
1874.89
1823.42
1774.2
1727.54
1683.68
1642.84
1605.14
1570.53
1538.97
1510.34
1484.49
1461.34
1440.83
1422.77
1406.96
1393.24
1381.41
1371.31
1362.77
1355.65
1349.81
1345.13
1341.49
1338.78
1336.91
1335.79
1335.35
1335.52
1336.24
1337.44
1339.07
1341.09
1343.44
1346.11
1349.04
1352.21
1355.59
1359.15
1362.87
1366.72
1370.7
1374.76
1378.91
1383.13
1387.39
1391.69
1396.01
1400.35
1404.69
1409.03
1413.36
1417.66
1421.94
1426.19
1430.4
1434.58
1438.72
1442.83
1446.9
1450.94
1454.94
1458.91
1462.83
1466.72
1470.56
1474.34
1478.05
1481.68
1485.21
1488.62
1491.91
1495.04
1498.02
1500.83
1503.44
1505.84
1508.02
1509.95
1511.6
1512.95
1513.98
1514.65
1514.96
1514.87
1514.39
1513.51
1512.24
1510.6
1508.62
1506.32
1503.77
1501.02
1498.13
1495.16
1492.18
1489.26
1486.47
1483.85
1481.46
1479.33
1477.51
1476
1474.83
1473.99
1473.46
1473.22
1473.24
1473.47
1473.86
1474.33
1474.82
1475.25
1475.53
1475.56
1475.23
1474.45
1473.09
1471.05
1468.2
1464.4
1459.55
1453.49
1446.12
1437.28
1426.85
1414.74
1400.82
1385
1367.22
1347.44
1325.61
1301.78
1276
1248.39
1219.15
1188.48
1156.58
1123.71
1090.15
1056.18
1022.07
988.108
954.537
921.584
889.462
858.355
828.412
799.739
772.497
746.695
722.288
699.211
677.47
657.058
637.941
620.083
603.451
588.01
573.73
560.577
548.519
537.523
527.555
518.579
510.561
503.463
497.248
491.879
487.316
483.522
480.455
478.076
476.342
475.212
474.642
474.589
475.008
475.853
477.078
478.636
480.481
482.565
484.84
487.262
489.784
492.362
494.954
497.519
500.021
502.424
504.697
506.813
508.747
510.481
511.998
513.288
514.342
515.156
515.731
516.07
516.176
516.062
515.75
515.254
514.584
513.754
512.777
511.669
510.447
509.129
507.73
506.268
504.75
503.182
501.565
499.894
498.167
496.385
494.559
492.7
490.828
488.959
487.109
485.288
483.507
481.769
480.076
478.429
476.822
475.253
473.715
472.201
470.704
469.216
467.73
466.239
464.734
463.21
461.66
460.078
458.459
456.799
455.093
453.34
451.535
449.678
447.767
445.802
443.783
441.711
439.587
437.412
435.189
432.92
430.609
428.258
425.872
423.453
421.007
418.536
416.047
413.543
411.03
408.511
405.991
403.464
46826.8
9813.05
4576.1
3091.7
2456.2
2127.41
1942.47
1836.45
1778.67
1752.7
1748.89
1761.14
1785.32
1818.52
1858.58
1903.86
1953.09
2005.27
2059.61
2115.45
2172.16
2229.06
2285.43
2340.65
2394.4
2446.68
2497.73
2547.85
2597.34
2646.41
2695.2
2743.78
2792.17
2840.33
2888.21
2935.71
2982.74
3029.18
3074.92
3119.85
3163.78
3206.67
3248.58
3289.55
3329.45
3368.06
3405.2
3440.67
3474.2
3505.6
3534.69
3561.31
3585.32
3606.57
3624.93
3640.26
3652.42
3661.3
3666.78
3668.75
3667.1
3661.74
3652.6
3639.61
3622.73
3601.93
3577.17
3548.47
3515.83
3479.26
3438.79
3394.42
3346.14
3293.92
3237.68
3177.95
3117.23
3055.47
2992.72
2928.99
2864.22
2798.5
2731.83
2665.1
2598.37
2531.81
2465.76
2400.59
2336.58
2273.95
2212.44
2151.98
2092.48
2034.02
1976.71
1921.05
1867.45
1816.16
1767.51
1721.75
1679.05
1639.5
1603.16
1570.01
1539.82
1512.51
1487.89
1465.87
1446.4
1429.28
1414.35
1401.42
1390.3
1380.84
1372.88
1366.28
1360.9
1356.62
1353.33
1350.93
1349.33
1348.44
1348.21
1348.54
1349.4
1350.71
1352.43
1354.52
1356.93
1359.63
1362.59
1365.77
1369.15
1372.7
1376.4
1380.22
1384.16
1388.18
1392.28
1396.43
1400.62
1404.85
1409.09
1413.35
1417.6
1421.84
1426.07
1430.27
1434.44
1438.59
1442.7
1446.77
1450.81
1454.81
1458.77
1462.68
1466.55
1470.36
1474.11
1477.79
1481.38
1484.86
1488.23
1491.45
1494.5
1497.38
1500.07
1502.53
1504.77
1506.75
1508.45
1509.86
1510.95
1511.7
1512.09
1512.1
1511.72
1510.94
1509.76
1508.2
1506.27
1504.03
1501.5
1498.74
1495.81
1492.78
1489.72
1486.7
1483.77
1481.01
1478.47
1476.19
1474.22
1472.57
1471.28
1470.34
1469.74
1469.48
1469.51
1469.81
1470.32
1470.98
1471.74
1472.5
1473.2
1473.74
1474.03
1473.96
1473.43
1472.32
1470.52
1467.91
1464.37
1459.76
1453.95
1446.83
1438.26
1428.1
1416.23
1402.56
1386.98
1369.41
1349.8
1328.12
1304.38
1278.68
1251.13
1221.92
1191.22
1159.24
1126.24
1092.49
1058.29
1023.92
989.656
955.746
922.422
889.904
858.384
828.016
798.922
771.199
744.926
720.111
696.667
674.569
653.82
634.385
616.226
599.308
583.6
569.07
555.688
543.424
532.246
522.123
513.023
504.911
497.753
491.513
486.156
481.645
477.941
475.007
472.803
471.287
470.418
470.153
470.448
471.258
472.535
474.232
476.299
478.687
481.344
484.22
487.263
490.423
493.65
496.895
500.113
503.259
506.292
509.176
511.877
514.365
516.617
518.611
520.334
521.775
522.929
523.792
524.369
524.667
524.692
524.459
523.996
523.316
522.433
521.362
520.119
518.722
517.189
515.539
513.793
511.969
510.085
508.155
506.187
504.183
502.139
500.053
497.922
495.753
493.556
491.348
489.145
486.965
484.819
482.718
480.668
478.674
476.734
474.847
473.009
471.213
469.452
467.717
466
464.295
462.592
460.885
459.166
457.429
455.667
453.877
452.053
450.191
448.288
446.342
444.351
442.313
440.23
438.099
435.923
433.703
431.439
429.135
426.793
424.416
422.006
419.568
417.105
414.621
412.12
409.607
407.086
404.561
402.037
399.507
46700.6
10364.8
4784.03
3179.17
2499.39
2148.56
1951.13
1836.53
1772.33
1741.41
1733.79
1743.21
1765.47
1797.59
1837.37
1883.16
1933.67
1987.88
2045.02
2104.42
2165.43
2227.3
2289.13
2350.08
2409.65
2467.71
2524.46
2580.22
2635.34
2690.08
2744.61
2799.03
2853.4
2907.69
2961.86
3015.83
3069.5
3122.77
3175.51
3227.59
3278.89
3329.26
3378.54
3426.61
3473.62
3519.53
3564.13
3607.12
3648.24
3687.28
3723.95
3758.05
3789.36
3817.7
3842.9
3864.78
3883.16
3897.89
3908.8
3915.75
3918.61
3917.26
3911.59
3901.51
3886.96
3867.9
3844.3
3816.15
3783.48
3746.3
3704.66
3658.59
3608.14
3553.33
3494.18
3430.7
3362.63
3292.61
3221.29
3148.82
3074.87
3000.47
2925.71
2850.78
2775.85
2701.15
2627
2553.79
2481.87
2411.44
2342.59
2275.56
2210.35
2146.96
2085.55
2026.01
1968.52
1913.05
1860.05
1809.78
1762.35
1717.98
1676.78
1638.78
1603.97
1572.31
1543.55
1517.54
1494.1
1473.15
1454.66
1438.43
1424.29
1412.06
1401.58
1392.67
1385.2
1379.02
1374
1370.04
1367.02
1364.86
1363.46
1362.74
1362.64
1363.08
1364.02
1365.4
1367.17
1369.29
1371.72
1374.42
1377.37
1380.53
1383.88
1387.39
1391.04
1394.81
1398.67
1402.62
1406.63
1410.69
1414.79
1418.9
1423.03
1427.16
1431.29
1435.39
1439.48
1443.54
1447.57
1451.56
1455.51
1459.42
1463.28
1467.09
1470.84
1474.53
1478.13
1481.65
1485.05
1488.33
1491.47
1494.43
1497.2
1499.76
1502.08
1504.15
1505.94
1507.43
1508.61
1509.45
1509.93
1510.04
1509.76
1509.07
1507.99
1506.52
1504.67
1502.48
1499.98
1497.23
1494.28
1491.2
1488.06
1484.93
1481.88
1478.98
1476.28
1473.84
1471.7
1469.89
1468.45
1467.38
1466.67
1466.33
1466.32
1466.62
1467.19
1467.97
1468.9
1469.91
1470.94
1471.89
1472.67
1473.19
1473.35
1473.05
1472.17
1470.59
1468.2
1464.88
1460.49
1454.91
1448.01
1439.65
1429.7
1418.04
1404.55
1389.13
1371.71
1352.23
1330.68
1307.06
1281.46
1254
1224.85
1194.16
1162.15
1129.07
1095.19
1060.81
1026.21
991.68
957.464
923.799
890.908
858.99
828.207
798.687
770.524
743.801
718.554
694.75
672.301
651.216
631.462
613
595.795
579.815
565.03
551.411
538.93
527.56
517.27
508.031
499.812
492.581
486.304
480.947
476.475
472.852
470.041
468.005
466.703
466.095
466.138
466.788
468.001
469.727
471.918
474.522
477.487
480.757
484.279
487.996
491.852
495.79
499.756
503.697
507.561
511.301
514.871
518.233
521.349
524.19
526.73
528.95
530.835
532.377
533.572
534.422
534.933
535.118
534.987
534.561
533.87
532.931
531.763
530.384
528.815
527.076
525.189
523.173
521.049
518.837
516.557
514.23
511.869
509.486
507.082
504.656
502.203
499.718
497.204
494.668
492.125
489.59
487.081
484.61
482.19
479.827
477.526
475.289
473.117
471.005
468.946
466.933
464.957
463.01
461.083
459.168
457.258
455.345
453.422
451.483
449.524
447.538
445.524
443.476
441.393
439.272
437.113
434.916
432.679
430.405
428.094
425.747
423.367
420.957
418.519
416.056
413.571
411.069
408.552
406.026
403.493
400.959
398.426
395.891
46570.3
11101.1
5103.79
3327.9
2579.41
2195.35
1978.01
1850.33
1776.82
1738.92
1725.95
1731.28
1750.52
1780.65
1819.34
1864.87
1915.96
1971.6
2031.01
2093.54
2158.57
2225.25
2292.52
2359.27
2424.76
2488.68
2551.21
2612.67
2673.45
2733.84
2794.07
2854.28
2914.51
2974.79
3035.08
3095.3
3155.38
3215.19
3274.62
3333.55
3391.83
3449.33
3505.91
3561.39
3615.61
3668.58
3720.46
3770.88
3819.54
3866.1
3910.3
3951.93
3990.69
4026.36
4058.7
4087.51
4112.57
4133.66
4150.58
4163.15
4171.18
4174.51
4172.99
4166.51
4154.96
4138.27
4116.4
4089.34
4057.08
4019.68
3977.17
3929.62
3877.09
3819.71
3757.54
3690.59
3618.74
3542.05
3461.95
3380.78
3298.86
3216.36
3133.44
3050.29
2967.13
2884.22
2801.9
2720.54
2640.54
2562.17
2485.65
2411.14
2338.75
2268.65
2201.26
2136.4
2074.22
2014.75
1957.86
1903.63
1852
1803.31
1757.66
1715.1
1675.72
1639.53
1606.46
1576.42
1549.14
1524.45
1502.2
1482.36
1464.85
1449.51
1436.14
1424.59
1414.7
1406.3
1399.26
1393.45
1388.76
1385.06
1382.26
1380.28
1379.03
1378.43
1378.41
1378.93
1379.91
1381.31
1383.09
1385.21
1387.62
1390.3
1393.2
1396.31
1399.59
1403.03
1406.59
1410.27
1414.03
1417.86
1421.74
1425.66
1429.61
1433.57
1437.54
1441.5
1445.44
1449.36
1453.25
1457.1
1460.91
1464.68
1468.39
1472.04
1475.62
1479.12
1482.52
1485.81
1488.98
1492
1494.84
1497.49
1499.91
1502.09
1503.99
1505.6
1506.88
1507.83
1508.42
1508.64
1508.47
1507.89
1506.92
1505.54
1503.77
1501.64
1499.18
1496.44
1493.48
1490.36
1487.15
1483.92
1480.75
1477.7
1474.85
1472.24
1469.93
1467.95
1466.33
1465.1
1464.26
1463.8
1463.71
1463.96
1464.52
1465.35
1466.38
1467.56
1468.82
1470.08
1471.25
1472.25
1472.99
1473.36
1473.25
1472.56
1471.18
1468.98
1465.84
1461.64
1456.23
1449.49
1441.28
1431.48
1419.95
1406.6
1391.32
1374.03
1354.7
1333.28
1309.79
1284.31
1256.98
1227.91
1197.28
1165.28
1132.16
1098.19
1063.67
1028.88
994.111
959.62
925.64
892.399
860.105
828.925
798.994
770.411
743.246
717.559
693.366
670.585
649.166
629.097
610.335
592.842
576.588
561.544
547.682
534.977
523.404
512.936
503.547
495.209
487.89
481.562
476.192
471.746
468.193
465.496
463.619
462.525
462.174
462.526
463.536
465.159
467.348
470.052
473.218
476.791
480.714
484.926
489.368
493.978
498.692
503.449
508.188
512.851
517.381
521.726
525.837
529.671
533.19
536.362
539.161
541.567
543.567
545.156
546.333
547.102
547.477
547.472
547.104
546.401
545.397
544.114
542.575
540.806
538.833
536.68
534.373
531.934
529.386
526.749
524.043
521.287
518.502
515.701
512.896
510.09
507.28
504.461
501.625
498.771
495.904
493.034
490.176
487.346
484.558
481.825
479.154
476.551
474.019
471.562
469.176
466.855
464.591
462.374
460.197
458.05
455.925
453.814
451.709
449.604
447.492
445.367
443.226
441.063
438.875
436.66
434.415
432.14
429.834
427.498
425.131
422.734
420.31
417.861
415.388
412.894
410.383
407.857
405.32
402.776
400.228
397.68
395.135
392.592
46435.6
11968.2
5536.12
3543.92
2701.18
2270.28
2025.88
1880.79
1795.15
1748.33
1728.61
1728.79
1744.18
1771.53
1808.46
1853.23
1904.51
1961.27
2022.76
2088.36
2157.43
2229.04
2301.9
2374.63
2446.28
2516.2
2584.59
2651.84
2718.35
2784.45
2850.39
2916.34
2982.38
3048.53
3114.77
3181.03
3247.24
3313.29
3379.05
3444.39
3509.18
3573.3
3636.61
3698.95
3760.17
3820.1
3878.69
3936.15
3991.96
4045.71
4097.12
4145.89
4191.76
4234.49
4273.83
4309.5
4341.24
4368.8
4391.94
4410.41
4423.98
4432.43
4435.56
4433.21
4425.22
4411.49
4391.92
4366.49
4335.18
4298.01
4255.03
4206.31
4151.91
4092.04
4026.88
3956.43
3880.36
3799.7
3714.28
3625.32
3535.43
3444.83
3353.72
3262.33
3170.92
3079.78
2989.24
2899.71
2811.55
2725.1
2640.64
2558.39
2478.52
2401.23
2326.72
2255.08
2186.51
2121.38
2059.41
2000.69
1945.14
1892.61
1843.05
1796.42
1752.93
1712.55
1675.29
1641.13
1609.97
1581.67
1555.9
1532.55
1511.54
1492.88
1476.42
1461.99
1449.41
1438.54
1429.21
1421.3
1414.68
1409.21
1404.8
1401.33
1398.72
1396.89
1395.74
1395.23
1395.27
1395.81
1396.81
1398.21
1399.97
1402.05
1404.41
1407.01
1409.84
1412.86
1416.04
1419.36
1422.79
1426.32
1429.92
1433.58
1437.29
1441.02
1444.76
1448.51
1452.25
1455.98
1459.67
1463.33
1466.94
1470.51
1474.01
1477.44
1480.79
1484.05
1487.2
1490.22
1493.09
1495.79
1498.29
1500.56
1502.57
1504.3
1505.72
1506.8
1507.51
1507.85
1507.8
1507.34
1506.47
1505.19
1503.5
1501.44
1499.03
1496.31
1493.35
1490.19
1486.92
1483.61
1480.33
1477.15
1474.14
1471.36
1468.88
1466.72
1464.93
1463.52
1462.52
1461.92
1461.7
1461.87
1462.37
1463.18
1464.25
1465.52
1466.93
1468.41
1469.88
1471.25
1472.45
1473.36
1473.91
1473.97
1473.45
1472.22
1470.16
1467.16
1463.07
1457.78
1451.14
1443.04
1433.34
1421.92
1408.68
1393.52
1376.37
1357.18
1335.91
1312.57
1287.25
1260.06
1231.11
1200.56
1168.6
1135.48
1101.46
1066.83
1031.88
996.903
962.157
927.887
894.32
861.67
830.112
799.786
770.8
743.226
717.108
692.488
669.355
647.615
627.236
608.178
590.401
573.873
558.566
544.457
531.521
519.737
509.081
499.529
491.058
483.639
477.245
471.848
467.415
463.917
461.322
459.594
458.698
458.599
459.255
460.624
462.663
465.324
468.556
472.305
476.514
481.123
486.068
491.284
496.704
502.259
507.879
513.496
519.044
524.457
529.674
534.637
539.293
543.596
547.505
550.987
554.014
556.568
558.637
560.217
561.314
561.936
562.1
561.828
561.143
560.079
558.674
556.958
554.961
552.715
550.251
547.6
544.793
541.854
538.812
535.687
532.503
529.277
526.028
522.772
519.525
516.296
513.088
509.897
506.716
503.535
500.35
497.162
493.978
490.809
487.671
484.578
481.542
478.573
475.678
472.858
470.121
467.465
464.886
462.375
459.922
457.518
455.155
452.824
450.517
448.226
445.944
443.663
441.379
439.087
436.781
434.459
432.118
429.755
427.37
424.962
422.531
420.077
417.602
415.106
412.592
410.063
407.519
404.965
402.403
399.836
397.269
394.704
392.144
389.588
46300.2
12900.2
6072.71
3831.78
2869.93
2377.86
2098.24
1930.8
1829.86
1772.04
1744.18
1738.31
1749.3
1773.64
1808.82
1852.99
1904.77
1963.13
2027.33
2096.75
2170.67
2247.93
2326.85
2405.74
2483.4
2559.33
2633.68
2706.81
2779.14
2851.03
2922.74
2994.43
3066.22
3138.11
3210.1
3282.13
3354.13
3426.05
3497.68
3568.87
3639.54
3709.58
3778.86
3847.24
3914.59
3980.76
4045.55
4109.13
4171.29
4231.49
4289.36
4344.53
4396.8
4445.89
4491.51
4533.41
4571.3
4604.9
4633.94
4658.11
4677.13
4690.72
4698.63
4700.63
4696.51
4686.11
4669.28
4645.94
4616.03
4579.56
4536.55
4487.06
4431.02
4368.83
4300.83
4227.13
4147.9
4063.6
3974.47
3880.79
3783.08
3684.48
3585.22
3485.62
3385.97
3286.58
3187.82
3090.08
2993.73
2899.15
2806.65
2716.48
2628.88
2544.05
2462.19
2383.46
2308.02
2236.06
2167.61
2102.84
2041.93
1984.59
1930.82
1880.43
1833.28
1789.17
1748.12
1710.19
1675.26
1643.3
1614.14
1587.57
1563.33
1541.38
1521.79
1504.37
1488.99
1475.48
1463.69
1453.49
1444.73
1437.29
1431.06
1425.92
1421.77
1418.51
1416.07
1414.36
1413.3
1412.84
1412.91
1413.46
1414.44
1415.81
1417.51
1419.51
1421.78
1424.29
1426.99
1429.87
1432.9
1436.04
1439.29
1442.62
1446.01
1449.44
1452.9
1456.38
1459.85
1463.32
1466.76
1470.16
1473.53
1476.83
1480.07
1483.23
1486.3
1489.27
1492.1
1494.79
1497.31
1499.62
1501.71
1503.54
1505.08
1506.29
1507.14
1507.61
1507.69
1507.35
1506.59
1505.41
1503.82
1501.82
1499.46
1496.78
1493.81
1490.64
1487.32
1483.94
1480.56
1477.26
1474.11
1471.18
1468.53
1466.19
1464.22
1462.64
1461.46
1460.7
1460.34
1460.38
1460.78
1461.53
1462.58
1463.87
1465.36
1466.97
1468.64
1470.29
1471.84
1473.2
1474.26
1474.94
1475.14
1474.73
1473.6
1471.63
1468.7
1464.69
1459.46
1452.89
1444.85
1435.23
1423.91
1410.78
1395.75
1378.74
1359.7
1338.58
1315.43
1290.28
1263.25
1234.44
1203.99
1172.1
1139.01
1104.96
1070.26
1035.18
1000.01
965.036
930.494
896.622
863.634
831.715
801.011
771.635
743.668
717.156
692.122
668.584
646.517
625.836
606.487
588.429
571.629
556.06
541.699
528.527
516.523
505.668
495.943
487.325
479.792
473.318
467.877
463.442
459.985
457.476
455.883
455.174
455.315
456.268
457.994
460.448
463.586
467.355
471.703
476.571
481.895
487.611
493.648
499.933
506.393
512.95
519.529
526.054
532.45
538.646
544.574
550.17
555.376
560.143
564.43
568.202
571.427
574.088
576.179
577.7
578.66
579.073
578.962
578.352
577.274
575.768
573.881
571.649
569.11
566.302
563.262
560.027
556.626
553.095
549.465
545.765
542.02
538.251
534.476
530.711
526.972
523.27
519.613
516.003
512.433
508.894
505.375
501.868
498.37
494.883
491.417
487.985
484.601
481.277
478.023
474.846
471.75
468.741
465.824
462.994
460.243
457.56
454.937
452.364
449.834
447.338
444.867
442.414
439.971
437.534
435.097
432.655
430.205
427.744
425.27
422.781
420.277
417.757
415.223
412.675
410.113
407.541
404.959
402.371
399.779
397.186
394.595
392.008
389.43
386.858
46169.3
13808
6684.05
4188.59
3088.69
2521.91
2198.64
2003.55
1883.98
1813.07
1775.87
1763.39
1769.92
1791.58
1825.65
1870.15
1923.6
1984.96
2053.46
2128.41
2208.82
2292.98
2378.72
2464.09
2547.98
2630.04
2710.47
2789.65
2868
2945.85
3023.46
3100.98
3178.49
3256.02
3333.55
3411.01
3488.34
3565.42
3642.14
3718.38
3794.04
3869.01
3943.2
4016.49
4088.79
4159.95
4229.87
4298.39
4365.61
4430.91
4493.89
4554.22
4611.64
4665.84
4716.57
4763.56
4806.53
4845.18
4879.19
4908.24
4932.03
4950.22
4962.52
4968.61
4968.24
4961.17
4947.18
4926.13
4897.9
4862.44
4819.78
4769.95
4713.05
4649.35
4579.15
4502.72
4420.39
4332.58
4239.65
4141.96
4039.87
3933.59
3826.35
3718.65
3610.85
3503.28
3396.33
3290.39
3185.87
3083.13
2982.54
2884.38
2788.92
2696.38
2606.99
2520.91
2438.32
2359.37
2284.16
2212.82
2145.42
2081.95
2022.56
1967.19
1915.58
1867.63
1823.09
1781.78
1743.42
1708.06
1675.61
1645.89
1618.71
1593.79
1571.19
1550.88
1532.71
1516.53
1502.21
1489.61
1478.61
1469.07
1460.87
1453.9
1448.05
1443.22
1439.32
1436.26
1433.96
1432.35
1431.36
1430.94
1431.01
1431.54
1432.48
1433.77
1435.38
1437.27
1439.41
1441.76
1444.29
1446.98
1449.79
1452.71
1455.71
1458.78
1461.89
1465.03
1468.17
1471.32
1474.45
1477.54
1480.59
1483.59
1486.51
1489.34
1492.07
1494.68
1497.14
1499.44
1501.53
1503.4
1505
1506.31
1507.28
1507.88
1508.08
1507.87
1507.23
1506.16
1504.65
1502.74
1500.43
1497.78
1494.83
1491.65
1488.3
1484.86
1481.4
1478
1474.73
1471.67
1468.86
1466.36
1464.22
1462.46
1461.1
1460.16
1459.64
1459.53
1459.81
1460.45
1461.43
1462.69
1464.19
1465.86
1467.65
1469.49
1471.29
1472.97
1474.44
1475.62
1476.39
1476.66
1476.31
1475.23
1473.31
1470.41
1466.42
1461.23
1454.7
1446.72
1437.17
1425.94
1412.92
1398.01
1381.15
1362.27
1341.33
1318.35
1293.4
1266.54
1237.88
1207.56
1175.76
1142.72
1108.67
1073.92
1038.73
1003.41
968.215
933.419
899.261
865.955
833.689
802.621
772.869
744.52
717.628
692.218
668.29
645.841
624.854
605.223
586.89
569.821
553.99
539.376
525.962
513.731
502.669
492.758
483.981
476.318
469.748
464.247
459.793
456.359
453.919
452.445
451.908
452.275
453.514
455.586
458.45
462.063
466.375
471.332
476.874
482.94
489.459
496.358
503.561
510.988
518.555
526.177
533.771
541.251
548.534
555.544
562.209
568.45
574.209
579.438
584.098
588.146
591.544
594.289
596.378
597.816
598.611
598.781
598.352
597.355
595.822
593.804
591.36
588.536
585.372
581.913
578.202
574.279
570.177
565.938
561.608
557.219
552.801
548.381
543.983
539.622
535.315
531.072
526.902
522.809
518.792
514.843
510.95
507.099
503.277
499.477
495.7
491.95
488.238
484.577
480.979
477.454
474.009
470.648
467.379
464.211
461.141
458.159
455.255
452.421
449.648
446.927
444.249
441.606
438.989
436.393
433.81
431.235
428.664
426.092
423.518
420.939
418.353
415.759
413.158
410.549
407.933
405.312
402.686
400.059
397.432
394.807
392.187
389.575
386.974
384.383
46049.3
14576
7309.76
4596.06
3354.32
2703.93
2329.89
2102.34
1961.11
1875.45
1828.28
1809.4
1812.32
1832.7
1867.49
1914.52
1972.21
2039.45
2115.38
2198.9
2288.17
2380.6
2473.66
2565.64
2655.81
2744.11
2830.8
2916.25
3000.82
3084.78
3168.33
3251.61
3334.65
3417.46
3500.02
3582.26
3664.1
3745.46
3826.23
3906.33
3985.68
4064.2
4141.83
4218.48
4294.1
4368.62
4441.92
4513.92
4584.45
4653
4719.21
4782.78
4843.44
4900.93
4954.99
5005.36
5051.75
5093.85
5131.34
5163.9
5191.19
5212.87
5228.59
5237.98
5240.74
5236.53
5225.11
5206.25
5179.78
5145.58
5103.62
5053.92
4996.6
4931.85
4859.96
4781.25
4696.12
4605.01
4508.39
4406.7
4300.37
4189.74
4075.11
3959.6
3843.86
3728.28
3613.26
3499.22
3386.58
3275.75
3167.08
3060.92
2957.56
2857.25
2760.22
2666.68
2576.78
2490.69
2408.53
2330.41
2256.41
2186.57
2120.95
2059.52
2002.23
1949.18
1900.11
1854.8
1813.04
1774.54
1739.05
1706.33
1676.31
1648.71
1623.4
1600.38
1579.56
1560.8
1544
1529.02
1515.74
1504.04
1493.8
1484.91
1477.26
1470.75
1465.27
1460.75
1457.08
1454.2
1452.04
1450.52
1449.58
1449.16
1449.22
1449.69
1450.54
1451.73
1453.21
1454.94
1456.89
1459.04
1461.34
1463.78
1466.32
1468.95
1471.65
1474.38
1477.14
1479.91
1482.67
1485.39
1488.08
1490.7
1493.24
1495.68
1498.01
1500.2
1502.21
1504.03
1505.62
1506.95
1507.98
1508.66
1508.97
1508.86
1508.33
1507.36
1505.95
1504.11
1501.87
1499.26
1496.34
1493.16
1489.8
1486.32
1482.8
1479.33
1475.97
1472.79
1469.85
1467.21
1464.91
1462.98
1461.46
1460.34
1459.65
1459.37
1459.5
1460
1460.87
1462.04
1463.49
1465.17
1467
1468.93
1470.89
1472.8
1474.57
1476.12
1477.36
1478.17
1478.47
1478.13
1477.06
1475.13
1472.24
1468.26
1463.08
1456.59
1448.65
1439.17
1428.02
1415.11
1400.33
1383.62
1364.9
1344.15
1321.36
1296.61
1269.94
1241.44
1211.26
1179.57
1146.59
1112.57
1077.78
1042.5
1007.04
971.659
936.627
902.195
868.586
835.992
804.573
774.458
745.739
718.479
692.705
668.421
645.604
624.26
604.35
585.749
568.416
552.325
537.457
523.797
511.334
500.054
489.947
480.997
473.189
466.506
460.929
456.436
453.006
450.616
449.241
448.857
449.433
450.941
453.345
456.61
460.691
465.542
471.111
477.339
484.162
491.51
499.307
507.473
515.92
524.562
533.302
542.05
550.713
559.192
567.398
575.254
582.684
589.586
595.919
601.639
606.702
611.076
614.738
617.669
619.854
621.292
621.985
621.951
621.218
619.818
617.787
615.185
612.08
608.527
604.575
600.278
595.692
590.877
585.891
580.788
575.61
570.386
565.15
559.942
554.786
549.705
544.716
539.832
535.059
530.403
525.863
521.434
517.104
512.858
508.677
504.545
500.452
496.393
492.371
488.392
484.468
480.61
476.827
473.128
469.516
465.999
462.593
459.294
456.092
452.979
449.945
446.981
444.079
441.229
438.422
435.65
432.907
430.186
427.481
424.788
422.103
419.422
416.745
414.068
411.391
408.714
406.037
403.36
400.684
398.011
395.343
392.681
390.028
387.387
384.758
382.144
45948.1
15042.4
7850.91
5011.88
3652.2
2920.39
2493.05
2230.43
2066.04
1965.37
1909.12
1885.68
1887.66
1910.08
1949.53
2003.58
2070.51
2148.96
2237.35
2333.16
2433.14
2534.27
2634.59
2733.22
2829.94
2924.84
3018.18
3110.2
3201.14
3291.18
3380.43
3468.97
3556.82
3643.96
3730.37
3815.99
3900.78
3984.68
4067.62
4149.56
4230.46
4310.31
4389.07
4466.76
4543.34
4618.82
4693.15
4766.32
4837.7
4906.95
4973.81
5038.03
5099.4
5157.69
5212.64
5264.03
5311.57
5354.97
5393.92
5428.08
5457.12
5480.66
5498.33
5509.74
5514.52
5512.31
5502.78
5485.64
5460.65
5427.62
5386.46
5337.13
5279.67
5214.22
5141.04
5060.47
4972.92
4878.86
4778.82
4673.32
4562.86
4447.93
4328.92
4206.22
4082.97
3959.69
3836.87
3714.94
3594.36
3475.54
3358.91
3244.81
3133.59
3025.52
2920.86
2819.81
2722.57
2629.29
2540.09
2455.1
2374.39
2298.01
2226.03
2158.43
2095.2
2036.34
1981.72
1931.25
1884.98
1842.5
1803.57
1767.9
1735.18
1704.99
1677.19
1651.71
1628.43
1607.26
1588.11
1570.84
1555.35
1541.53
1529.26
1518.43
1508.94
1500.69
1493.57
1487.5
1482.39
1478.15
1474.71
1472
1469.94
1468.49
1467.57
1467.14
1467.14
1467.53
1468.27
1469.3
1470.6
1472.13
1473.85
1475.74
1477.75
1479.88
1482.09
1484.37
1486.68
1489
1491.32
1493.62
1495.87
1498.05
1500.14
1502.13
1503.97
1505.65
1507.13
1508.38
1509.36
1510.04
1510.38
1510.33
1509.87
1508.98
1507.65
1505.88
1503.71
1501.15
1498.27
1495.12
1491.76
1488.27
1484.73
1481.21
1477.78
1474.52
1471.49
1468.73
1466.29
1464.22
1462.53
1461.25
1460.38
1459.93
1459.88
1460.23
1460.95
1462
1463.35
1464.96
1466.77
1468.72
1470.76
1472.8
1474.77
1476.59
1478.16
1479.4
1480.21
1480.49
1480.13
1479.03
1477.09
1474.18
1470.2
1465.03
1458.55
1450.66
1441.24
1430.18
1417.37
1402.73
1386.16
1367.61
1347.04
1324.46
1299.9
1273.42
1245.1
1215.07
1183.5
1150.6
1116.62
1081.81
1046.47
1010.89
975.332
940.081
905.391
871.491
838.58
806.825
776.359
747.283
719.665
693.539
668.912
645.763
624.058
603.833
584.971
567.381
551.034
535.913
522.005
509.303
497.799
487.484
478.348
470.38
463.567
457.894
453.343
449.896
447.534
446.237
445.982
446.746
448.502
451.221
454.867
459.404
464.785
470.962
477.877
485.466
493.658
502.376
511.536
521.047
530.813
540.741
550.716
560.644
570.433
579.956
589.135
597.899
606.17
613.887
620.987
627.401
633.07
637.957
642.045
645.291
647.673
649.182
649.82
649.603
648.56
646.727
644.147
640.882
637.001
632.57
627.651
622.312
616.625
610.669
604.537
598.292
591.991
585.693
579.444
573.271
567.187
561.228
555.41
549.749
544.252
538.923
533.761
528.762
523.913
519.199
514.599
510.091
505.654
501.274
496.941
492.656
488.421
484.246
480.141
476.115
472.174
468.322
464.573
460.943
457.428
454.02
450.708
447.486
444.343
441.27
438.257
435.296
432.378
429.497
426.646
423.819
421.012
418.22
415.441
412.671
409.911
407.157
404.411
401.671
398.938
396.214
393.499
390.795
388.104
385.428
382.768
380.126
45872.8
14991.4
8174.82
5362.78
3951.23
3159.9
2686.5
2391.88
2206.91
2094.55
2033.56
2010.91
2018.19
2049.78
2101.83
2171.56
2256.49
2353.53
2458.76
2568.18
2678.61
2788.23
2896.28
3002.47
3106.71
3209.04
3309.5
3408.18
3505.16
3600.5
3694.26
3786.47
3877.15
3966.3
4053.94
4140.07
4224.72
4307.9
4389.62
4469.93
4548.86
4626.46
4702.81
4777.99
4852.06
4925.09
4997.13
5068.03
5136.72
5203.15
5267.2
5328.69
5387.47
5443.33
5496.08
5545.49
5591.3
5633.24
5671.02
5704.3
5732.74
5755.96
5773.57
5785.18
5790.38
5788.77
5779.97
5763.63
5739.43
5707.1
5666.46
5617.42
5559.92
5494.02
5419.91
5337.89
5248.35
5151.78
5048.71
4939.73
4825.42
4706.36
4583.08
4456.02
4325.81
4195.34
4065.14
3935.68
3807.44
3680.9
3556.5
3434.64
3315.69
3199.97
3087.75
2979.26
2874.7
2774.24
2678.02
2586.14
2498.69
2415.74
2337.33
2263.48
2194.18
2129.4
2069.1
2013.18
1961.59
1914.12
1870.7
1831.14
1795.01
1761.99
1731.69
1703.89
1678.29
1654.9
1633.56
1614.14
1596.57
1580.72
1566.49
1553.78
1542.47
1532.48
1523.71
1516.07
1509.47
1503.82
1499.05
1495.08
1491.85
1489.28
1487.32
1485.91
1484.99
1484.51
1484.43
1484.7
1485.27
1486.11
1487.19
1488.45
1489.88
1491.44
1493.11
1494.85
1496.65
1498.47
1500.29
1502.08
1503.82
1505.47
1507.03
1508.45
1509.71
1510.77
1511.6
1512.16
1512.42
1512.34
1511.88
1511.01
1509.72
1508.01
1505.89
1503.39
1500.56
1497.45
1494.13
1490.66
1487.13
1483.6
1480.15
1476.85
1473.75
1470.91
1468.37
1466.18
1464.35
1462.91
1461.87
1461.24
1461.01
1461.17
1461.72
1462.61
1463.82
1465.31
1467.04
1468.95
1470.98
1473.07
1475.14
1477.13
1478.94
1480.5
1481.71
1482.48
1482.71
1482.31
1481.17
1479.18
1476.25
1472.25
1467.08
1460.62
1452.77
1443.4
1432.42
1419.72
1405.2
1388.79
1370.41
1350.02
1327.64
1303.28
1277
1248.86
1218.99
1187.55
1154.74
1120.8
1086
1050.6
1014.91
979.202
943.748
908.814
874.636
841.42
809.34
778.535
749.113
721.148
694.68
669.72
646.253
624.235
603.652
584.523
566.685
550.088
534.716
520.56
507.615
495.879
485.346
476.011
467.869
460.908
455.12
450.489
447.003
444.646
443.401
443.251
444.176
446.155
449.163
453.169
458.14
464.034
470.804
478.397
486.748
495.787
505.435
515.607
526.213
537.141
548.297
559.583
570.854
582.039
593.045
603.786
614.175
624.111
633.498
642.29
650.383
657.688
664.131
669.654
674.217
677.787
680.346
681.89
682.424
681.968
680.555
678.225
675.028
671.031
666.3
660.907
654.926
648.436
641.522
634.274
626.786
619.144
611.436
603.76
596.187
588.763
581.529
574.499
567.671
561.066
554.691
548.551
542.643
536.96
531.49
526.216
521.115
516.162
511.328
506.589
501.927
497.327
492.787
488.307
483.892
479.553
475.295
471.124
467.045
463.077
459.239
455.523
451.921
448.426
445.028
441.717
438.483
435.318
432.213
429.159
426.149
423.176
420.235
417.321
414.43
411.559
408.705
405.867
403.043
400.234
397.437
394.655
391.888
389.136
386.402
383.686
380.99
378.316
45828.5
14273.4
8160.03
5556.63
4206.07
3404.39
2909.11
2597.27
2403.44
2290.63
2236.78
2227.66
2253.98
2309.42
2388.7
2486.37
2596.8
2714.77
2836.31
2959.13
3081.15
3201.51
3319.73
3435.5
3548.51
3658.56
3765.52
3869.31
3969.95
4067.46
4161.93
4253.45
4342.11
4428.05
4511.4
4592.32
4671
4747.58
4822.23
4895.08
4966.31
5036.08
5104.59
5172.02
5238.53
5304.33
5369.6
5432.82
5493.85
5552.73
5609.42
5663.83
5715.83
5765.26
5811.95
5855.7
5896.27
5933.4
5966.81
5996.17
6021.14
6041.36
6056.42
6065.91
6069.41
6066.5
6056.75
6039.78
6015.19
5982.64
5941.86
5892.67
5834.92
5768.58
5693.73
5610.6
5519.52
5420.94
5315.37
5203.43
5085.75
4962.98
4835.7
4704.48
4569.71
4432.74
4295.79
4159.33
4023.9
3890.02
3758.17
3628.83
3502.39
3379.22
3259.61
3143.83
3032.09
2924.56
2821.39
2722.7
2628.57
2539.07
2454.25
2374.14
2298.73
2228
2161.92
2100.42
2043.42
1990.8
1942.44
1898.15
1857.68
1820.83
1787.19
1756.51
1728.52
1702.95
1679.53
1658.09
1638.57
1620.81
1604.72
1590.21
1577.17
1565.49
1555.1
1545.91
1537.82
1530.75
1524.63
1519.38
1514.93
1511.21
1508.16
1505.71
1503.82
1502.42
1501.47
1500.91
1500.7
1500.79
1501.15
1501.74
1502.51
1503.44
1504.5
1505.64
1506.85
1508.08
1509.31
1510.5
1511.63
1512.67
1513.57
1514.32
1514.87
1515.19
1515.24
1515
1514.43
1513.5
1512.19
1510.48
1508.39
1505.94
1503.17
1500.12
1496.87
1493.46
1489.98
1486.49
1483.06
1479.76
1476.64
1473.75
1471.15
1468.85
1466.91
1465.33
1464.13
1463.32
1462.91
1462.88
1463.23
1463.93
1464.96
1466.3
1467.89
1469.69
1471.65
1473.71
1475.8
1477.87
1479.82
1481.6
1483.1
1484.25
1484.96
1485.13
1484.66
1483.47
1481.43
1478.45
1474.43
1469.25
1462.8
1454.98
1445.67
1434.77
1422.17
1407.77
1391.5
1373.29
1353.09
1330.9
1306.75
1280.66
1252.7
1223
1191.69
1158.98
1125.1
1090.31
1054.87
1019.09
983.238
947.597
912.432
877.988
844.477
812.082
780.95
751.193
722.891
696.091
670.809
647.032
624.723
603.829
584.377
566.298
549.459
533.84
519.436
506.246
494.271
483.511
473.967
465.634
458.509
452.585
447.853
444.304
441.925
440.705
440.631
441.689
443.861
447.128
451.465
456.842
463.222
470.563
478.811
487.908
497.782
508.358
519.543
531.247
543.38
555.799
568.435
581.192
593.98
606.702
619.237
631.51
643.396
654.762
665.485
675.461
684.594
692.797
699.993
706.123
711.14
715.013
717.726
719.276
719.672
718.937
717.108
714.232
710.363
705.574
699.93
693.503
686.377
678.643
670.398
661.744
652.785
643.624
634.362
625.102
615.936
606.956
598.25
589.852
581.786
574.044
566.612
559.495
552.69
546.187
539.972
534.027
528.325
522.838
517.533
512.376
507.34
502.4
497.54
492.752
488.035
483.391
478.829
474.351
469.96
465.665
461.495
457.465
453.563
449.783
446.117
442.555
439.089
435.707
432.4
429.16
425.979
422.849
419.763
416.716
413.704
410.721
407.766
404.834
401.926
399.038
396.172
393.325
390.499
387.694
384.911
382.151
379.415
376.705
45808.1
12774.3
7752.12
5566.14
4381.77
3648.23
3181.41
2889
2716.65
2631.46
2612.98
2644.39
2713.25
2810.06
2926.88
3056.57
3193.32
3333.31
3474.67
3617.34
3756.44
3891.25
4021.32
4146.19
4265.46
4378.88
4486.36
4587.95
4683.82
4774.22
4859.47
4939.92
5015.94
5087.9
5156.19
5221.26
5283.63
5343.61
5401.53
5457.67
5512.37
5565.95
5618.67
5670.95
5722.89
5775.05
5825.61
5874.25
5921.16
5966.43
6010.05
6051.96
6092.06
6130.22
6166.27
6200.01
6231.2
6259.6
6284.91
6306.82
6324.99
6339.04
6348.58
6353.19
6352.43
6345.87
6333.06
6313.58
6286.99
6252.89
6210.91
6160.78
6102.26
6035.21
5959.6
5875.55
5783.27
5683.16
5575.67
5461.41
5341
5215.12
5084.41
4949.53
4811.02
4669.22
4526.34
4383.59
4241.59
4100.9
3962.08
3825.66
3692.09
3561.79
3435.08
3312.25
3193.54
3079.13
2969.19
2863.84
2763.16
2667.23
2576.09
2489.79
2408.31
2331.65
2259.79
2192.66
2130.21
2072.32
2018.89
1969.76
1924.71
1883.45
1845.67
1811.2
1779.96
1751.53
1725.69
1702.16
1680.73
1661.13
1643.26
1627.04
1612.34
1599.05
1587.1
1576.41
1566.87
1558.41
1550.95
1544.42
1538.75
1533.87
1529.7
1526.2
1523.29
1520.93
1519.06
1517.63
1516.58
1515.88
1515.46
1515.3
1515.36
1515.58
1515.95
1516.41
1516.93
1517.48
1518.01
1518.5
1518.91
1519.19
1519.32
1519.26
1518.99
1518.47
1517.66
1516.55
1515.12
1513.35
1511.25
1508.82
1506.1
1503.13
1499.96
1496.65
1493.26
1489.86
1486.5
1483.25
1480.15
1477.26
1474.62
1472.27
1470.23
1468.52
1467.18
1466.2
1465.6
1465.37
1465.51
1466
1466.83
1467.96
1469.37
1471.01
1472.84
1474.81
1476.86
1478.92
1480.94
1482.84
1484.55
1485.97
1487.04
1487.67
1487.75
1487.21
1485.94
1483.84
1480.82
1476.76
1471.56
1465.12
1457.32
1448.06
1437.23
1424.73
1410.45
1394.33
1376.27
1356.25
1334.26
1310.3
1284.4
1256.63
1227.08
1195.92
1163.31
1129.5
1094.72
1059.26
1023.39
987.413
951.596
916.213
881.515
847.721
815.021
783.57
753.488
724.861
697.74
672.144
648.067
625.474
604.309
584.539
566.192
549.12
533.259
518.609
505.172
492.954
481.96
472.194
463.658
456.351
450.272
445.417
441.778
439.351
438.127
438.098
439.254
441.585
445.076
449.708
455.456
462.288
470.165
479.038
488.85
499.535
511.013
523.208
536.011
549.34
563.112
577.247
591.655
606.215
620.859
635.429
649.773
663.749
677.222
690.054
702.115
713.29
723.479
732.585
740.531
747.254
752.709
756.866
759.708
761.236
761.463
760.413
758.129
754.66
750.07
744.438
737.822
730.297
721.953
712.895
703.229
693.071
682.535
671.74
660.803
649.836
638.948
628.241
617.81
607.741
598.117
588.954
580.25
571.971
564.097
556.617
549.515
542.768
536.348
530.222
524.352
518.698
513.223
507.894
502.682
497.568
492.541
487.595
482.732
477.956
473.268
468.666
464.169
459.818
455.609
451.536
447.593
443.77
440.059
436.448
432.929
429.492
426.128
422.829
419.588
416.398
413.254
410.15
407.084
404.051
401.05
398.078
395.133
392.216
389.325
386.461
383.624
380.815
378.034
375.284
45806.1
10748.8
7033.48
5443.19
4538.72
3980.61
3632.94
3433.11
3341.37
3331.84
3391.2
3493.6
3625.6
3777.16
3940.32
4109.66
4281.14
4451.48
4618.23
4779.91
4931.85
5073.42
5204.13
5323.77
5432.4
5530.33
5618.09
5696.38
5765.98
5827.76
5882.57
5931.28
5974.72
6013.67
6048.85
6080.94
6110.57
6138.54
6165.32
6191.31
6217
6242.89
6269.15
6296.68
6324.75
6351.76
6377.98
6403.5
6428.42
6452.77
6476.51
6499.59
6521.86
6543.18
6563.35
6582.14
6599.31
6614.57
6627.63
6638.15
6645.77
6650.13
6650.81
6647.4
6639.46
6626.55
6608.21
6583.99
6553.42
6516.06
6471.46
6419.28
6359.19
6290.94
6214.35
6129.42
6036.23
5935.05
5826.25
5710.35
5587.96
5459.72
5326.34
5188.5
5046.83
4901.84
4754.14
4606.05
4458.25
4311.43
4166.24
4023.29
3883.08
3746.07
3612.65
3483.13
3357.77
3236.78
3120.34
3008.55
2901.54
2799.36
2702.08
2609.72
2522.3
2439.81
2362.23
2289.51
2221.61
2158.43
2099.88
2045.81
1996.04
1950.28
1908.21
1869.69
1834.52
1802.46
1773.39
1747.05
1723.14
1701.45
1681.74
1663.83
1647.48
1632.61
1619.16
1607.02
1596.07
1586.24
1577.47
1569.69
1562.81
1556.76
1551.47
1546.89
1542.95
1539.6
1536.78
1534.43
1532.49
1530.93
1529.68
1528.7
1527.96
1527.4
1526.98
1526.66
1526.4
1526.15
1525.89
1525.55
1525.12
1524.55
1523.82
1522.88
1521.73
1520.34
1518.68
1516.76
1514.58
1512.13
1509.45
1506.55
1503.48
1500.29
1497.03
1493.75
1490.51
1487.34
1484.32
1481.46
1478.82
1476.43
1474.32
1472.52
1471.04
1469.9
1469.11
1468.68
1468.6
1468.87
1469.46
1470.37
1471.56
1473
1474.65
1476.47
1478.41
1480.41
1482.42
1484.36
1486.18
1487.79
1489.12
1490.09
1490.61
1490.6
1489.96
1488.61
1486.44
1483.36
1479.26
1474.04
1467.59
1459.81
1450.59
1439.83
1427.41
1413.25
1397.26
1379.36
1359.51
1337.7
1313.93
1288.22
1260.62
1231.24
1200.21
1167.72
1133.97
1099.22
1063.74
1027.8
991.7
955.718
920.129
885.188
851.122
818.127
786.366
755.968
727.025
699.593
673.694
649.325
626.456
605.035
584.996
566.348
549.045
532.95
518.057
504.373
491.909
480.674
470.676
461.923
454.419
448.165
443.163
439.411
436.907
435.647
435.629
436.849
439.3
442.975
447.86
453.936
461.177
469.546
479.001
489.485
500.941
513.298
526.465
540.387
554.996
570.222
585.963
602.162
618.668
635.329
651.995
668.512
684.715
700.448
715.561
729.899
743.325
755.713
766.953
776.951
785.631
792.93
798.803
803.221
806.17
807.654
807.687
806.301
803.539
799.457
794.117
787.598
779.954
771.262
761.625
751.162
739.99
728.232
716.02
703.485
690.758
677.966
665.232
652.672
640.393
628.492
617.059
606.17
595.883
586.189
577.055
568.424
560.275
552.581
545.311
538.425
531.882
525.635
519.64
513.854
508.239
502.763
497.402
492.142
486.976
481.904
476.925
472.032
467.228
462.552
458.034
453.664
449.436
445.344
441.379
437.53
433.788
430.143
426.586
423.107
419.701
416.358
413.072
409.839
406.654
403.511
400.41
397.345
394.317
391.322
388.361
385.433
382.537
379.675
376.845
374.051
45825.3
9721.32
6540.81
5669.43
5195.34
4939.59
4823.38
4810.89
4877.44
5004.02
5181.15
5379.16
5588.38
5802.29
6014.01
6217.48
6408.05
6582.4
6738.07
6870.85
6986.28
7083.87
7163.69
7226.59
7273.91
7307.21
7328.19
7338.54
7339.91
7333.82
7321.73
7304.96
7284.75
7262.17
7238.13
7213.31
7188.39
7164.38
7141.74
7120.79
7102.18
7086.86
7073.79
7061.7
7050.78
7041.11
7032.76
7025.71
7019.92
7015.31
7011.77
7009.11
7007.15
7005.64
7004.32
7002.91
7001.1
6998.55
6994.93
6989.86
6982.97
6973.87
6962.13
6947.34
6929.06
6906.84
6880.24
6848.78
6811.99
6769.38
6720.48
6664.91
6602.23
6532.07
6454.16
6368.29
6274.43
6172.67
6063.24
5946.53
5823.05
5693.42
5558.3
5418.4
5274.39
5126.84
4976.1
4823.9
4671.37
4519.35
4368.59
4219.78
4073.53
3930.37
3790.74
3654.99
3523.42
3396.23
3273.64
3155.76
3042.71
2934.56
2831.38
2733.19
2640.02
2551.86
2468.7
2390.51
2317.23
2248.81
2185.15
2126.13
2071.58
2021.25
1974.8
1932.08
1892.9
1857.05
1824.34
1794.56
1767.48
1743.01
1720.83
1700.73
1682.51
1665.98
1651
1637.38
1625
1613.82
1603.76
1594.73
1586.63
1579.4
1572.98
1567.31
1562.31
1557.94
1554.12
1550.8
1547.92
1545.43
1543.28
1541.42
1539.79
1538.36
1537.08
1535.89
1534.75
1533.63
1532.48
1531.26
1529.94
1528.49
1526.89
1525.12
1523.16
1521.02
1518.68
1516.15
1513.45
1510.6
1507.63
1504.55
1501.43
1498.29
1495.18
1492.13
1489.19
1486.39
1483.78
1481.38
1479.21
1477.32
1475.73
1474.44
1473.48
1472.84
1472.54
1472.57
1472.92
1473.58
1474.53
1475.73
1477.17
1478.8
1480.57
1482.45
1484.38
1486.3
1488.14
1489.85
1491.34
1492.55
1493.4
1493.81
1493.68
1492.94
1491.49
1489.24
1486.09
1481.94
1476.69
1470.23
1462.47
1453.28
1442.57
1430.23
1416.18
1400.31
1382.55
1362.87
1341.23
1317.64
1292.11
1264.69
1235.46
1204.57
1172.18
1138.5
1103.78
1068.28
1032.29
996.074
959.938
924.153
888.979
854.651
821.371
789.31
758.604
729.353
701.619
675.428
650.779
627.641
605.968
585.694
566.77
549.21
532.892
517.759
503.828
491.115
479.634
469.396
460.414
452.697
446.25
441.08
437.188
434.578
433.251
433.209
434.453
436.983
440.797
445.888
452.243
459.841
468.651
478.632
489.744
501.918
515.111
529.274
544.36
560.305
577.058
594.515
612.54
630.996
649.731
668.578
687.363
705.921
724.06
741.606
758.387
774.25
789.051
802.66
814.958
825.852
835.264
843.135
849.417
854.084
857.125
858.543
858.359
856.605
853.33
848.594
842.462
835.012
826.297
816.396
805.416
793.473
780.699
767.235
753.238
738.851
724.219
709.484
694.783
680.246
665.994
652.136
638.772
625.988
613.857
602.444
591.76
581.768
572.402
563.605
555.339
547.561
540.223
533.275
526.664
520.339
514.252
508.36
502.629
497.03
491.546
486.171
480.899
475.721
470.628
465.64
460.811
456.14
451.625
447.258
443.032
438.937
434.964
431.102
427.342
423.676
420.094
416.589
413.154
409.783
406.47
403.211
400.001
396.838
393.719
390.642
387.605
384.608
381.649
378.729
375.847
373.005
45884.8
10996
9000.88
8899.57
8882.98
8927.88
9010.17
9126.42
9272.94
9440.92
9607.23
9778.85
9941.29
10082.1
10194.5
10275.9
10326.5
10348
10342.7
10312.8
10262.4
10194.6
10112.3
10017.9
9913.75
9802.09
9684.88
9563.91
9440.79
9316.89
9193.44
9071.6
8952.52
8836.93
8725.39
8618.36
8516.32
8420.62
8330.87
8246.57
8167.17
8091.73
8021.08
7955.09
7893.69
7836.71
7784.01
7735.35
7690.52
7649.24
7611.23
7576.17
7543.73
7513.55
7485.26
7458.47
7432.78
7407.79
7383.08
7358.25
7332.87
7306.51
7278.75
7249.16
7217.29
7182.73
7145.03
7103.72
7058.34
7008.39
6953.42
6892.98
6826.57
6753.74
6674.07
6587.22
6492.95
6391.17
6281.91
6165.4
6041.99
5912.18
5776.56
5635.8
5490.58
5341.53
5189.15
5034.11
4878.1
4722.01
4566.7
4412.96
4261.5
4112.92
3967.72
3826.32
3689.04
3556.16
3427.87
3304.32
3185.62
3071.87
2963.11
2859.4
2760.75
2667.17
2578.64
2495.15
2416.66
2343.11
2274.42
2210.5
2151.2
2096.26
2045.38
1998.4
1955.13
1915.37
1878.94
1845.61
1815.18
1787.49
1762.29
1739.4
1718.73
1700.01
1683.03
1667.65
1653.73
1641.11
1629.69
1619.35
1609.98
1601.54
1593.95
1587.15
1581.06
1575.6
1570.73
1566.38
1562.5
1559.03
1555.92
1553.11
1550.55
1548.19
1545.98
1543.88
1541.84
1539.82
1537.8
1535.73
1533.58
1531.35
1529.01
1526.56
1524
1521.32
1518.54
1515.67
1512.72
1509.73
1506.71
1503.68
1500.68
1497.74
1494.89
1492.16
1489.57
1487.17
1484.98
1483.01
1481.31
1479.88
1478.75
1477.91
1477.39
1477.18
1477.27
1477.67
1478.35
1479.3
1480.49
1481.88
1483.46
1485.16
1486.95
1488.77
1490.57
1492.29
1493.87
1495.23
1496.3
1497.01
1497.29
1497.04
1496.18
1494.62
1492.28
1489.05
1484.84
1479.54
1473.07
1465.3
1456.14
1445.47
1433.21
1419.24
1403.49
1385.87
1366.33
1344.86
1321.44
1296.07
1268.81
1239.74
1208.97
1176.69
1143.08
1108.39
1072.88
1036.82
1000.51
964.227
928.256
892.86
858.279
824.723
792.372
761.368
731.817
703.789
677.315
652.396
629.001
607.084
586.583
567.429
549.606
533.063
517.695
503.517
490.553
478.821
468.337
459.116
451.172
444.515
439.155
435.099
432.354
430.927
430.824
432.052
434.617
438.522
443.768
450.347
458.245
467.436
477.888
489.557
502.42
516.451
531.621
547.889
565.217
583.502
602.635
622.49
642.924
663.776
684.872
706.026
727.034
747.697
767.823
787.224
805.715
823.137
839.343
854.197
867.579
879.392
889.555
898.007
904.705
909.623
912.751
914.095
913.676
911.528
907.702
902.26
895.275
886.834
876.975
865.785
853.373
839.86
825.397
810.139
794.243
777.872
761.201
744.392
727.594
710.953
694.6
678.66
663.241
648.441
634.343
621.016
608.508
596.862
586.035
575.961
566.546
557.732
549.468
541.699
534.365
527.407
520.768
514.394
508.239
502.263
496.436
490.74
485.166
479.702
474.329
469.047
463.907
458.939
454.135
449.491
445.001
440.654
436.443
432.357
428.387
424.525
420.76
417.086
413.493
409.977
406.529
403.147
399.823
396.556
393.341
390.176
387.059
383.988
380.962
377.981
375.043
372.151
46120.5
27849.8
23675.7
21868.2
20793.3
20077.5
19565.5
19168.6
18829.5
18510.2
18186.1
17848.5
17494.6
17125.7
16745.6
16358.8
15970.1
15583.2
15200.9
14825.3
14457.7
14099.2
13750.5
13412.1
13084.5
12767.9
12462.3
12168
11884.7
11612.7
11351.8
11102.5
10865.6
10640.2
10425.9
10222.7
10030.1
9846.45
9672.27
9507.89
9353.16
9207.63
9071.09
8943.25
8823.76
8712.25
8608.3
8511.49
8421.37
8337.48
8259.35
8186.51
8118.45
8054.69
7994.72
7938.05
7884.16
7832.58
7782.8
7734.37
7686.81
7639.66
7592.49
7544.86
7496.35
7446.54
7395.01
7341.33
7285.09
7225.82
7163.07
7096.36
7025.18
6949
6867.28
6779.52
6685.3
6584.28
6476.28
6361.28
6239.42
6111.02
5976.54
5836.53
5691.64
5542.51
5389.67
5233.52
5075.45
4916.59
4757.94
4600.4
4444.76
4291.71
4141.8
3995.51
3853.24
3715.26
3581.82
3453.1
3329.23
3210.31
3096.41
2987.55
2883.78
2785.09
2691.49
2602.96
2519.48
2440.99
2367.44
2298.74
2234.76
2175.23
2119.91
2068.65
2021.25
1977.53
1937.29
1900.33
1866.45
1835.45
1807.12
1781.28
1757.77
1736.37
1716.92
1699.31
1683.38
1668.92
1655.8
1643.91
1633.15
1623.39
1614.55
1606.55
1599.29
1592.69
1586.71
1581.29
1576.36
1571.88
1567.77
1563.99
1560.47
1557.18
1554.06
1551.07
1548.17
1545.34
1542.53
1539.72
1536.9
1534.05
1531.16
1528.24
1525.28
1522.29
1519.28
1516.26
1513.25
1510.26
1507.33
1504.44
1501.64
1498.94
1496.37
1493.96
1491.72
1489.69
1487.88
1486.31
1485
1483.97
1483.22
1482.77
1482.6
1482.73
1483.13
1483.8
1484.71
1485.84
1487.16
1488.65
1490.24
1491.91
1493.6
1495.27
1496.84
1498.26
1499.47
1500.38
1500.94
1501.07
1500.68
1499.69
1498.01
1495.56
1492.25
1487.96
1482.62
1476.11
1468.33
1459.18
1448.56
1436.35
1422.47
1406.81
1389.31
1369.91
1348.59
1325.32
1300.11
1273
1244.07
1213.43
1181.24
1147.7
1113.04
1077.52
1041.4
1004.99
968.57
932.42
896.811
861.987
828.166
795.533
764.239
734.397
706.083
679.334
654.154
630.515
608.367
587.645
568.282
550.223
533.446
517.849
503.424
490.206
478.219
467.482
458.014
449.83
442.947
437.378
433.134
430.227
428.668
428.467
429.638
432.191
436.137
441.482
448.227
456.362
465.872
476.727
488.921
502.45
517.301
533.473
550.918
569.566
589.336
610.122
631.799
654.223
677.225
700.625
724.206
747.756
771.064
793.904
816.082
837.399
857.662
876.695
894.34
910.46
924.936
937.67
948.586
957.622
964.74
969.914
973.135
974.412
973.764
971.228
966.852
960.699
952.845
943.375
932.299
919.704
905.721
890.5
874.208
857.015
839.085
820.608
801.764
782.727
763.678
744.785
726.193
708.036
690.435
673.495
657.309
641.954
627.491
613.963
601.395
589.776
579.023
569.015
559.683
550.965
542.795
535.104
527.824
520.893
514.252
507.85
501.643
495.601
489.707
483.947
478.295
472.732
467.292
462.031
456.942
452.021
447.265
442.664
438.21
433.896
429.711
425.646
421.693
417.843
414.087
410.419
406.832
403.32
399.878
396.502
393.187
389.93
386.729
383.581
380.485
377.439
374.443
371.498
91888
68380.4
55772.9
48131
42988
39211.6
36240.5
33782.4
31678.8
29839.4
28208.3
26748.7
25434.8
24245.1
23162.5
22172.8
21264
20426
19650.1
18928.8
18255.9
17626.4
17035.8
16480.5
15958
15465.3
14999.5
14558.4
14140.2
13743.4
13366.5
13008.1
12666.5
12341.5
12033
11740.4
11463.2
11200.5
10951.7
10716.4
10494.3
10284.9
10087.8
9902.32
9728.13
9564.67
9411.42
9267.79
9133.24
9007.17
8888.99
8778.11
8673.93
8575.85
8483.28
8395.63
8312.33
8232.81
8156.54
8083.01
8011.72
7942.2
7874.01
7806.74
7740
7673.39
7606.55
7539.15
7470.81
7401.13
7329.71
7256.08
7179.72
7100.06
7016.47
6928.3
6834.93
6735.8
6630.45
6518.58
6400.07
6274.99
6143.6
6006.3
5863.63
5716.19
5564.51
5408.98
5250.64
5090.73
4930.35
4770.52
4612.13
4455.93
4302.58
4152.61
4006.44
3864.43
3726.82
3593.84
3465.65
3342.34
3224.02
3110.72
3002.49
2899.34
2801.27
2708.27
2620.32
2537.39
2459.43
2386.37
2318.04
2254.23
2194.75
2139.44
2088.12
2040.6
1996.71
1956.23
1918.98
1884.76
1853.36
1824.6
1798.3
1774.27
1752.33
1732.34
1714.15
1697.57
1682.48
1668.78
1656.38
1645.09
1634.81
1625.45
1616.92
1609.16
1602.07
1595.59
1589.64
1584.16
1579.09
1574.38
1569.97
1565.81
1561.87
1558.1
1554.48
1550.95
1547.52
1544.14
1540.8
1537.51
1534.23
1531
1527.8
1524.63
1521.5
1518.43
1515.43
1512.51
1509.67
1506.94
1504.33
1501.85
1499.53
1497.39
1495.45
1493.72
1492.23
1490.98
1489.99
1489.27
1488.83
1488.66
1488.76
1489.11
1489.72
1490.56
1491.6
1492.81
1494.17
1495.63
1497.16
1498.7
1500.2
1501.61
1502.87
1503.91
1504.67
1505.08
1505.06
1504.53
1503.42
1501.63
1499.09
1495.69
1491.35
1485.96
1479.44
1471.66
1462.54
1451.96
1439.83
1426.03
1410.49
1393.12
1373.86
1352.69
1329.58
1304.53
1277.57
1248.78
1218.26
1186.17
1152.7
1118.07
1082.53
1046.37
1009.86
973.299
936.971
901.149
866.082
831.995
799.079
767.493
737.357
708.751
681.721
656.274
632.386
610.006
589.062
569.482
551.206
534.178
518.333
503.646
490.16
477.905
466.904
457.173
448.732
441.601
435.795
431.333
428.227
426.495
426.151
427.214
429.699
433.623
438.999
445.834
454.133
463.879
475.078
487.739
501.878
517.508
534.6
553.118
573.007
594.191
616.574
640.032
664.42
689.571
715.276
741.312
767.454
793.471
819.141
844.23
868.51
891.765
913.794
934.417
953.474
970.828
986.363
999.983
1011.61
1021.2
1028.71
1034.1
1037.39
1038.57
1037.68
1034.74
1029.8
1022.93
1014.2
1003.69
991.375
977.347
961.749
944.739
926.501
907.23
887.13
866.413
845.272
823.902
802.494
781.224
760.27
739.785
719.9
700.728
682.367
664.901
648.398
632.909
618.465
605.078
592.752
581.381
570.839
561.049
551.932
543.409
535.402
527.837
520.645
513.764
507.137
500.72
494.485
488.414
482.478
476.644
470.92
465.373
460.005
454.813
449.793
444.94
440.245
435.701
431.3
427.031
422.887
418.858
414.936
411.114
407.384
403.74
400.176
396.687
393.269
389.917
386.629
383.402
380.234
377.122
374.066
371.067
47222
44603.1
42304.7
40339.3
38654.4
37170.1
35820.2
34555.9
33340.1
32148.4
30969.4
29800.3
28646.3
27516.4
26420.1
25365.9
24360
23405.9
22505.2
21657.2
20860.1
20111.5
19408.2
18746.4
18122.3
17532.5
16974.4
16445.2
15943.1
15466.1
15012.5
14581
14170.1
13778.7
13406
13051.1
12713.5
12392.4
12087
11797
11521.7
11260.7
11013.5
10779.6
10558.5
10349.7
10152.6
9966.72
9791.43
9626.14
9470.23
9323.07
9184.04
9052.51
8927.85
8809.46
8696.71
8589.05
8485.9
8386.76
8291.14
8198.58
8108.69
8021.07
7935.39
7851.34
7768.65
7687.06
7606.29
7526.04
7445.96
7365.64
7284.59
7202.21
7117.8
7030.59
6939.76
6844.51
6744.08
6637.85
6525.37
6406.41
6280.93
6149.14
6011.4
5868.19
5720.04
5567.38
5410.95
5252.01
5091.78
4931.36
4771.74
4613.78
4458.21
4305.65
4156.59
4011.42
3870.48
3733.99
3602.13
3475.04
3352.82
3235.55
3123.26
3016
2913.77
2816.57
2724.4
2637.23
2555.02
2477.7
2405.1
2337.07
2273.46
2214.11
2158.84
2107.5
2059.89
2015.83
1975.13
1937.59
1903.02
1871.23
1842.04
1815.26
1790.72
1768.26
1747.71
1728.92
1711.75
1696.07
1681.78
1668.72
1656.79
1645.87
1635.9
1626.82
1618.5
1610.85
1603.8
1597.28
1591.22
1585.57
1580.28
1575.3
1570.59
1566.11
1561.83
1557.7
1553.72
1549.86
1546.1
1542.43
1538.85
1535.36
1531.96
1528.66
1525.44
1522.34
1519.35
1516.47
1513.72
1511.1
1508.63
1506.33
1504.2
1502.28
1500.56
1499.07
1497.81
1496.8
1496.05
1495.55
1495.32
1495.33
1495.6
1496.09
1496.8
1497.7
1498.77
1499.96
1501.26
1502.61
1503.97
1505.29
1506.52
1507.6
1508.47
1509.07
1509.32
1509.15
1508.5
1507.27
1505.39
1502.77
1499.32
1494.95
1489.56
1483.06
1475.33
1466.28
1455.81
1443.8
1430.16
1414.79
1397.62
1378.57
1357.62
1334.75
1309.93
1283.2
1254.63
1224.3
1192.38
1159.03
1124.49
1088.99
1052.8
1016.22
979.533
943.026
906.979
871.646
837.258
804.017
772.088
741.599
712.641
685.265
659.483
635.28
612.604
591.383
571.538
553.001
535.686
519.537
504.539
490.741
478.175
466.865
456.828
448.083
440.651
434.554
429.811
426.442
424.466
423.903
424.774
427.103
430.91
436.217
443.038
451.384
461.264
472.697
485.716
500.35
516.6
534.459
553.903
574.888
597.352
621.205
646.334
672.592
699.808
727.758
756.218
784.946
813.713
842.264
870.34
897.686
924.062
949.242
973.02
995.215
1015.67
1034.24
1050.82
1065.32
1077.65
1087.78
1095.67
1101.3
1104.67
1105.8
1104.71
1101.44
1096.04
1088.57
1079.1
1067.69
1054.3
1038.99
1021.91
1003.21
983.079
961.732
939.399
916.32
892.735
868.882
844.969
821.189
797.726
774.746
752.416
730.857
710.177
690.462
671.786
654.204
637.755
622.46
608.334
595.375
583.436
572.405
562.19
552.7
543.846
535.54
527.704
520.264
513.15
506.305
499.688
493.272
487.028
480.911
474.905
469.062
463.413
457.947
452.662
447.552
442.612
437.834
433.211
428.733
424.392
420.179
416.085
412.103
408.224
404.442
400.751
397.145
393.619
390.168
386.79
383.48
380.235
377.055
373.935
370.879
25413.4
25209.5
24992.8
24783
24583.8
24411
24270
24156.4
24063
23980.4
23897.1
23800.8
23679.2
23521.6
23319.9
23069
22767.4
22416.6
22020.9
21586.5
21120.8
20631.3
20125.8
19611.6
19094.8
18579.4
18070.1
17570.9
17084.7
16613
16156.6
15715.7
15290.3
14880.3
14485.4
14105.5
13740.1
13389.2
13052.3
12729.3
12419.9
12123.8
11840.7
11570.5
11312.7
11067
10833.1
10610.5
10398.7
10197.4
10006
9823.91
9650.68
9485.72
9328.48
9178.41
9034.95
8897.58
8765.81
8639.16
8517.23
8399.63
8286.04
8176.18
8069.81
7966.78
7866.92
7770.1
7676.2
7585.02
7496.34
7409.84
7325.08
7241.46
7158.25
7074.54
6989.33
6901.5
6809.96
6713.68
6611.79
6503.61
6388.73
6267.01
6138.55
6003.64
5862.68
5716.11
5564.47
5409.09
5251.28
5092.25
4933.11
4774.85
4618.32
4464.22
4313.16
4165.61
4021.96
3882.49
3747.43
3616.95
3491.18
3370.21
3254.09
3142.87
3036.58
2935.25
2838.86
2747.42
2660.88
2579.17
2502.17
2429.77
2361.83
2298.21
2238.76
2183.32
2131.72
2083.78
2039.33
1998.17
1960.12
1925
1892.62
1862.8
1835.36
1810.14
1786.98
1765.72
1746.2
1728.31
1711.91
1696.87
1683.07
1670.41
1658.8
1648.14
1638.35
1629.32
1620.98
1613.25
1606.07
1599.39
1593.13
1587.26
1581.73
1576.5
1571.53
1566.79
1562.26
1557.9
1553.71
1549.66
1545.76
1542
1538.38
1534.9
1531.57
1528.39
1525.37
1522.49
1519.78
1517.24
1514.87
1512.68
1510.7
1508.93
1507.38
1506.05
1504.97
1504.12
1503.52
1503.17
1503.06
1503.17
1503.51
1504.05
1504.76
1505.63
1506.63
1507.71
1508.85
1509.99
1511.09
1512.1
1512.96
1513.62
1514.01
1514.07
1513.72
1512.9
1511.52
1509.51
1506.78
1503.24
1498.8
1493.36
1486.83
1479.11
1470.09
1459.66
1447.73
1434.19
1418.95
1401.91
1383.03
1362.25
1339.55
1314.92
1288.37
1259.96
1229.79
1198
1164.75
1130.26
1094.78
1058.57
1021.92
985.112
948.442
912.189
876.616
841.959
808.425
776.189
745.386
716.112
688.426
662.346
637.857
614.915
593.447
573.368
554.602
537.033
520.599
505.312
491.222
478.366
466.77
456.449
447.42
439.705
433.328
428.311
424.681
422.458
421.667
422.335
424.49
428.157
433.367
440.14
448.501
458.481
470.115
483.453
498.519
515.333
533.901
554.214
576.245
599.943
625.229
651.998
680.113
709.381
739.587
770.49
801.862
833.442
864.954
896.112
926.638
956.262
984.733
1011.82
1037.31
1061.03
1082.82
1102.53
1120.07
1135.33
1148.27
1158.83
1167
1172.77
1176.15
1177.15
1175.83
1172.22
1166.36
1158.34
1148.2
1136
1121.66
1105.21
1086.76
1066.47
1044.52
1021.13
996.559
971.062
944.917
918.398
891.768
865.273
839.114
813.469
788.498
764.355
741.169
719.031
698.018
678.187
659.58
642.224
626.139
611.361
597.82
585.355
573.864
563.245
553.396
544.219
535.623
527.522
519.836
512.491
505.432
498.623
492.03
485.604
479.305
473.156
467.214
461.466
455.907
450.534
445.341
440.322
435.469
430.775
426.229
421.824
417.551
413.401
409.367
405.441
401.616
397.886
394.246
390.691
387.216
383.818
380.494
377.24
374.054
370.937
13578.9
13626.4
13680.2
13741.9
13817.4
13909.4
14018.9
14146.7
14293.2
14458.9
14643.2
14845.2
15062.6
15291.9
15528.6
15767.1
16000.6
16222.1
16424.3
16600.2
16743.6
16849.4
16913.6
16934.1
16909.9
16842.5
16733.4
16584.9
16400.6
16180.4
15930.2
15656.6
15365.7
15062.8
14752.5
14438.6
14124
13811.2
13502.1
13197.9
12899.9
12608.7
12325
12049.3
11781.9
11523
11272.7
11031.2
10798.3
10574.1
10358.3
10150.8
9951.22
9759.39
9574.95
9397.57
9226.91
9062.65
8904.47
8752.08
8605.26
8463.8
8327.56
8196.47
8070.49
7949.62
7833.92
7723.44
7618.25
7518.35
7423.67
7334.02
7249.07
7168.27
7090.85
7015.81
6941.93
6867.79
6791.89
6712.68
6628.76
6538.85
6442
6337.56
6225.21
6104.9
5976.8
5841.21
5698.82
5550.99
5399.14
5244.61
5088.66
4932.44
4776.96
4623.07
4471.49
4322.83
4177.56
4036.05
3898.61
3765.45
3636.73
3512.59
3393.11
3278.35
3168.36
3063.17
2962.79
2867.22
2776.45
2690.42
2609.06
2532.27
2459.94
2391.96
2328.18
2268.47
2212.68
2160.65
2112.21
2067.18
2025.38
1986.65
1950.8
1917.65
1887.04
1858.79
1832.74
1808.73
1786.61
1766.25
1747.51
1730.26
1714.39
1699.76
1686.3
1673.89
1662.46
1651.89
1642.11
1633.04
1624.61
1616.76
1609.42
1602.56
1596.11
1590.03
1584.29
1578.86
1573.69
1568.77
1564.08
1559.59
1555.31
1551.22
1547.32
1543.61
1540.11
1536.81
1533.7
1530.78
1528.05
1525.51
1523.18
1521.05
1519.14
1517.45
1515.99
1514.76
1513.76
1513
1512.47
1512.17
1512.09
1512.22
1512.54
1513.02
1513.65
1514.4
1515.22
1516.1
1516.97
1517.81
1518.56
1519.16
1519.56
1519.71
1519.53
1518.96
1517.92
1516.35
1514.15
1511.26
1507.57
1503.01
1497.47
1490.86
1483.07
1474.01
1463.57
1451.64
1438.12
1422.92
1405.95
1387.13
1366.44
1343.83
1319.3
1292.85
1264.54
1234.45
1202.72
1169.52
1135.05
1099.55
1063.3
1026.56
989.633
952.81
916.374
880.591
845.702
811.921
779.427
748.363
718.829
690.89
664.568
639.849
616.691
595.026
574.765
555.817
538.034
521.357
505.821
491.477
478.366
466.517
455.945
446.665
438.695
432.061
426.79
422.911
420.449
419.435
419.897
421.868
425.383
430.474
437.177
445.532
455.587
467.395
481.005
496.458
513.786
533.014
554.148
577.177
602.067
628.75
657.127
687.073
718.381
750.839
784.21
818.256
852.697
887.229
921.546
955.338
988.311
1020.18
1050.69
1079.61
1106.72
1131.83
1154.79
1175.46
1193.76
1209.6
1222.93
1233.73
1241.97
1247.68
1250.88
1251.6
1249.9
1245.83
1239.46
1230.85
1220.08
1207.18
1192.04
1174.61
1155
1133.33
1109.78
1084.56
1057.91
1030.11
1001.46
972.265
942.836
913.466
884.421
855.935
828.167
801.28
775.403
750.669
727.155
704.921
684.011
664.451
646.263
629.482
614.127
600.044
587.097
575.18
564.182
553.994
544.51
535.635
527.277
519.349
511.779
504.517
497.525
490.749
484.133
477.669
471.418
465.375
459.533
453.888
448.435
443.167
438.078
433.159
428.402
423.797
419.337
415.013
410.816
406.738
402.773
398.914
395.154
391.489
387.914
384.423
381.014
377.683
374.428
371.247
6830.64
6893.56
6963.29
7037.12
7116.18
7197.52
7283.7
7376.55
7478.08
7592.15
7719.64
7860.98
8016.66
8187.25
8373.33
8575.32
8793.4
9027.37
9276.46
9539.37
9814.07
10097.9
10387.5
10679
10967.9
11249.9
11520.3
11774.5
12007.9
12219.7
12404.5
12551.4
12658
12723.6
12748.8
12735.4
12686.1
12604.3
12493.9
12359
12203.6
12031.7
11846.9
11652.3
11450.8
11244.7
11036
10826.4
10617.3
10409.6
10204.4
10002.1
9803.5
9608.83
9418.47
9232.64
9051.55
8875.37
8704.22
8538.28
8377.7
8222.66
8073.39
7930.13
7793.18
7662.87
7539.54
7423.56
7315.24
7214.87
7122.6
7038.47
6962.32
6893.71
6831.93
6775.93
6724.3
6675.32
6627.01
6577.24
6523.86
6464.87
6398.49
6323.34
6238.41
6142.94
6036.7
5920.04
5794.11
5660.29
5520.1
5375.07
5226.68
5076.27
4925.1
4774.22
4624.56
4476.87
4331.79
4189.81
4051.33
3916.67
3786.04
3659.64
3537.59
3419.99
3306.92
3198.42
3094.52
2995.25
2900.6
2810.56
2725.06
2644.06
2567.45
2495.16
2427.07
2363.06
2303
2246.75
2194.16
2145.08
2099.35
2056.78
2017.23
1980.51
1946.46
1914.92
1885.72
1858.71
1833.73
1810.65
1789.33
1769.64
1751.45
1734.64
1719.12
1704.77
1691.5
1679.21
1667.82
1657.25
1647.41
1638.25
1629.7
1621.71
1614.22
1607.19
1600.58
1594.34
1588.44
1582.87
1577.59
1572.58
1567.83
1563.33
1559.08
1555.08
1551.34
1547.84
1544.57
1541.53
1538.7
1536.1
1533.73
1531.58
1529.65
1527.97
1526.51
1525.28
1524.29
1523.52
1522.97
1522.63
1522.48
1522.52
1522.72
1523.06
1523.5
1524.02
1524.58
1525.15
1525.67
1526.11
1526.4
1526.5
1526.35
1525.88
1525.03
1523.72
1521.89
1519.46
1516.34
1512.44
1507.69
1501.97
1495.21
1487.28
1478.1
1467.55
1455.53
1441.94
1426.68
1409.66
1390.82
1370.11
1347.5
1322.96
1296.51
1268.2
1238.1
1206.36
1173.13
1138.62
1103.06
1066.72
1029.89
992.837
955.872
919.274
883.314
848.236
814.26
781.567
750.305
720.58
692.456
665.96
641.08
617.77
595.967
575.588
556.503
538.559
521.684
505.948
491.399
478.078
466.018
455.236
445.745
437.559
430.702
425.205
421.098
418.415
417.188
417.45
419.239
422.593
427.557
434.177
442.51
452.621
464.569
478.414
494.212
512.013
531.855
553.765
577.748
603.786
631.827
661.783
693.527
726.857
761.555
797.405
834.145
871.477
909.075
946.606
983.734
1020.13
1055.49
1089.52
1121.94
1152.51
1181.03
1207.3
1231.18
1252.55
1271.32
1287.42
1300.82
1311.5
1319.49
1324.8
1327.5
1327.64
1325.31
1320.58
1313.54
1304.26
1292.82
1279.26
1263.44
1245.23
1224.71
1201.98
1177.18
1150.49
1122.13
1092.36
1061.47
1029.81
997.703
965.494
933.509
902.038
871.329
841.565
812.879
785.39
759.218
734.434
711.081
689.186
668.767
649.848
632.474
616.592
602.019
588.637
576.332
564.984
554.479
544.707
535.567
526.961
518.798
511.014
503.562
496.386
489.416
482.619
476.04
469.687
463.55
457.622
451.899
446.374
441.04
435.889
430.912
426.102
421.448
416.942
412.575
408.34
404.229
400.234
396.35
392.569
388.888
385.301
381.804
378.392
375.064
371.817
3530.6
3553.45
3579.1
3607.49
3641.57
3684.77
3735.46
3792.44
3853.49
3915.57
3978.87
4044.62
4114.14
4188.47
4268.43
4354.76
4448.21
4549.53
4659.51
4778.57
4907.76
5048.06
5200.04
5364.06
5540.3
5728.65
5928.77
6139.91
6360.99
6591.12
6826.67
7070.12
7317.61
7564.87
7807.39
8040.61
8260.11
8461.84
8642.25
8798.5
8928.48
9030.89
9105.26
9151.84
9171.57
9165.93
9136.86
9086.57
9017.45
8931.95
8832.49
8721.37
8600.76
8472.65
8338.83
8200.92
8060.37
7918.5
7776.5
7635.45
7496.37
7360.23
7227.94
7100.42
6978.55
6863.19
6755.19
6655.39
6564.56
6483.39
6412.49
6352.28
6302.98
6264.5
6236.43
6217.89
6207.52
6203.43
6203.23
6204.1
6202.97
6196.74
6182.45
6157.5
6119.35
6065.53
5996.34
5912.73
5815.85
5707.17
5588.42
5461.41
5327.95
5189.73
5048.34
4905.19
4761.47
4618.22
4476.3
4336.41
4199.12
4064.87
3934.01
3806.81
3683.49
3564.19
3449.04
3338.13
3231.53
3129.27
3031.39
2937.88
2848.74
2763.92
2683.38
2607.04
2534.84
2466.67
2402.43
2342
2285.26
2232.07
2182.29
2135.77
2092.35
2051.88
2014.2
1979.15
1946.58
1916.33
1888.26
1862.23
1838.09
1815.72
1794.99
1775.77
1757.97
1741.46
1726.16
1711.96
1698.77
1686.51
1675.1
1664.46
1654.55
1645.28
1636.61
1628.49
1620.87
1613.7
1606.97
1600.62
1594.64
1589
1583.69
1578.68
1573.99
1569.6
1565.54
1561.75
1558.23
1554.97
1551.96
1549.2
1546.69
1544.42
1542.39
1540.61
1539.06
1537.74
1536.64
1535.76
1535.09
1534.6
1534.3
1534.14
1534.12
1534.2
1534.35
1534.55
1534.74
1534.89
1534.95
1534.88
1534.62
1534.11
1533.29
1532.09
1530.46
1528.3
1525.56
1522.14
1517.96
1512.93
1506.96
1499.94
1491.78
1482.37
1471.62
1459.4
1445.63
1430.2
1413.01
1394.02
1373.17
1350.43
1325.77
1299.21
1270.78
1240.58
1208.73
1175.39
1140.77
1105.1
1068.65
1031.69
994.514
957.415
920.681
884.581
849.364
815.25
782.425
751.038
721.197
692.968
666.378
641.415
618.032
596.157
575.724
556.552
538.496
521.481
505.597
490.897
477.42
465.199
454.255
444.598
436.241
429.202
423.513
419.21
416.329
414.907
414.983
416.597
419.793
424.626
431.158
439.462
449.607
461.668
475.717
491.825
510.059
530.476
553.12
578.014
605.157
634.516
666.017
699.522
734.85
771.779
810.103
849.545
889.786
930.48
971.267
1011.78
1051.67
1090.57
1128.18
1164.16
1198.26
1230.22
1259.84
1286.94
1311.37
1333.02
1351.81
1367.69
1380.66
1390.74
1397.96
1402.41
1404.17
1403.35
1400.05
1394.38
1386.45
1376.35
1364.16
1349.95
1333.53
1314.73
1293.57
1270.14
1244.53
1216.86
1187.32
1156.11
1123.5
1089.82
1055.4
1020.63
985.874
951.487
917.787
885.04
853.448
823.124
794.176
766.708
740.785
716.434
693.668
672.501
652.961
635.081
618.726
603.723
589.956
577.302
565.636
554.84
544.802
535.412
526.566
518.181
510.2
502.563
495.191
488.03
481.099
474.417
467.968
461.744
455.74
449.948
444.361
438.97
433.767
428.743
423.888
419.194
414.652
410.253
405.989
401.854
397.84
393.94
390.148
386.461
382.871
379.377
375.972
372.656
2063.65
2070.53
2078.23
2087.37
2099.46
2115.55
2136.17
2161.29
2190.3
2221.83
2255.48
2290.74
2326.87
2363.13
2399.19
2435.3
2471.97
2509.81
2549.37
2591.32
2635.93
2683.42
2734.17
2788.57
2846.96
2909.68
2977.04
3049.15
3125.56
3206.54
3294.29
3390.52
3495.66
3609.82
3732.86
3864.35
4003.52
4149.26
4300.15
4454.43
4610.09
4764.91
4916.55
5062.65
5200.92
5329.23
5445.68
5548.7
5637.06
5709.94
5766.94
5808.02
5833.55
5844.18
5840.88
5824.81
5797.34
5759.95
5714.2
5661.72
5604.13
5543.07
5480.15
5416.97
5355.09
5296.03
5241.27
5192.26
5150.39
5117.01
5093.37
5080.65
5079.83
5091.72
5116.81
5155.17
5206.29
5268.99
5341.19
5419.92
5501.31
5580.78
5653.33
5713.56
5753.54
5771.58
5768.28
5743.88
5699.4
5636.48
5557.18
5463.8
5358.68
5244.12
5122.29
4995.14
4864.4
4731.55
4597.87
4464.38
4331.96
4201.29
4072.92
3947.29
3824.75
3705.56
3589.94
3478.03
3369.97
3265.86
3165.74
3069.68
2977.69
2889.78
2805.91
2726.07
2650.2
2578.25
2510.12
2445.75
2385.02
2327.83
2274.07
2223.59
2176.27
2131.98
2090.55
2051.87
2015.77
1982.11
1950.75
1921.56
1894.4
1869.14
1845.64
1823.8
1803.5
1784.63
1767.08
1750.76
1735.58
1721.44
1708.27
1695.99
1684.52
1673.82
1663.81
1654.44
1645.66
1637.44
1629.72
1622.47
1615.66
1609.26
1603.26
1597.63
1592.38
1587.51
1583.01
1578.82
1574.93
1571.34
1568.04
1565.01
1562.25
1559.76
1557.52
1555.52
1553.76
1552.24
1550.93
1549.83
1548.92
1548.18
1547.59
1547.13
1546.77
1546.49
1546.24
1545.99
1545.7
1545.32
1544.81
1544.11
1543.17
1541.92
1540.31
1538.26
1535.71
1532.57
1528.76
1524.2
1518.8
1512.47
1505.1
1496.6
1486.86
1475.77
1463.23
1449.14
1433.4
1415.93
1396.65
1375.53
1352.53
1327.61
1300.8
1272.14
1241.72
1209.66
1176.12
1141.32
1105.48
1068.87
1031.77
994.459
957.241
920.397
884.2
848.899
814.715
781.834
750.404
720.534
692.29
665.695
640.734
617.367
595.51
575.079
555.874
537.747
520.662
504.685
489.894
476.321
463.996
452.942
443.171
434.692
427.519
421.68
417.216
414.167
412.576
412.484
413.937
416.985
421.692
428.137
436.401
446.566
458.719
472.947
489.336
507.971
528.927
552.266
578.032
606.239
636.875
669.883
705.118
742.408
781.556
822.345
864.486
907.644
951.452
995.523
1039.46
1082.87
1125.37
1166.59
1206.18
1243.83
1279.26
1312.22
1342.51
1369.94
1394.36
1415.69
1433.87
1448.88
1460.76
1469.58
1475.44
1478.46
1478.78
1476.56
1471.92
1465.01
1455.96
1444.88
1431.87
1416.97
1400.06
1380.79
1359.25
1335.47
1309.5
1281.4
1251.28
1219.29
1185.65
1150.61
1114.5
1077.7
1040.59
1003.59
967.083
931.412
896.866
863.656
831.891
801.665
773.068
746.157
720.946
697.436
675.642
655.596
637.286
620.52
605.147
591.043
578.08
566.13
555.072
544.788
535.16
526.089
517.502
509.334
501.505
493.937
486.623
479.585
472.804
466.269
459.971
453.901
448.051
442.412
436.974
431.728
426.666
421.778
417.054
412.486
408.065
403.784
399.635
395.611
391.706
387.914
384.23
380.649
377.167
373.78
1352.79
1357.58
1362.51
1367.68
1373.21
1379.26
1386.02
1393.95
1404.1
1416.97
1432.34
1449.66
1468.41
1488.27
1509.02
1530.37
1552.01
1573.58
1594.77
1615.58
1635.95
1655.95
1675.84
1695.83
1716.01
1736.54
1757.59
1779.4
1802.69
1827.51
1854.25
1882.99
1913.98
1947.46
1983.68
2022.85
2065.16
2110.72
2159.62
2211.84
2267.29
2325.53
2386.62
2450.18
2515.69
2582.53
2650.01
2717.36
2783.74
2848.32
2910.25
2968.74
3023.06
3072.59
3116.87
3155.59
3188.59
3215.9
3237.71
3254.41
3266.53
3274.75
3279.89
3282.88
3284.75
3286.63
3289.72
3295.28
3304.67
3319.29
3340.6
3370.14
3409.5
3460.32
3524.25
3602.88
3697.64
3809.59
3939.22
4086.03
4248.23
4422.27
4602.3
4776.29
4934.2
5071.82
5183.63
5266.31
5318.69
5341.48
5336.69
5307.17
5256.21
5187.16
5103.27
5007.56
4902.69
4791.04
4674.61
4555.09
4433.9
4312.18
4190.86
4070.69
3952.27
3836.08
3722.48
3611.78
3504.2
3399.94
3299.14
3201.89
3108.28
3018.36
2932.15
2849.67
2770.91
2695.83
2624.4
2556.57
2492.26
2431.41
2373.91
2319.68
2268.59
2220.55
2175.41
2133.07
2093.39
2056.24
2021.48
1989
1958.66
1930.34
1903.91
1879.25
1856.26
1834.82
1814.84
1796.21
1778.83
1762.63
1747.5
1733.38
1720.19
1707.86
1696.33
1685.55
1675.45
1666
1657.14
1648.83
1641.05
1633.75
1626.92
1620.54
1614.6
1609.12
1604.03
1599.31
1594.93
1590.89
1587.16
1583.74
1580.61
1577.76
1575.17
1572.84
1570.76
1568.9
1567.25
1565.8
1564.53
1563.41
1562.42
1561.53
1560.71
1559.93
1559.15
1558.33
1557.42
1556.39
1555.17
1553.71
1551.95
1549.83
1547.27
1544.22
1540.58
1536.28
1531.24
1525.36
1518.55
1510.7
1501.73
1491.52
1479.96
1466.96
1452.41
1436.22
1418.29
1398.58
1377.04
1353.62
1328.3
1301.1
1272.08
1241.31
1208.93
1175.11
1140.05
1103.98
1067.17
1029.9
992.459
955.137
918.22
881.978
846.658
812.48
779.63
748.252
718.452
690.292
663.794
638.934
615.668
593.931
573.559
554.373
536.227
519.137
503.138
488.318
474.714
462.35
451.246
441.416
432.869
425.614
419.674
415.09
411.91
410.178
409.944
411.256
414.169
418.763
425.123
433.344
443.52
455.752
470.141
486.789
505.797
527.261
551.262
577.863
607.099
638.973
673.45
710.384
749.608
790.952
834.19
879.022
925.098
972.028
1019.4
1066.78
1113.74
1159.86
1204.72
1247.93
1289.15
1328.05
1364.33
1397.74
1428.06
1455.11
1478.76
1498.96
1515.71
1529.05
1539.07
1545.93
1549.78
1550.81
1549.21
1545.17
1538.86
1530.46
1520.11
1507.93
1494.01
1478.42
1461.04
1441.47
1419.78
1395.96
1370.03
1342
1311.9
1279.81
1245.87
1210.26
1173.24
1135.14
1096.35
1057.29
1018.4
980.102
942.759
906.684
872.098
839.116
807.812
778.269
750.535
724.61
700.491
678.195
657.752
639.081
621.971
606.286
591.894
578.664
566.465
555.173
544.66
534.81
525.535
516.763
508.41
500.383
492.644
485.22
478.081
471.215
464.607
458.246
452.122
446.225
440.544
435.07
429.794
424.705
419.793
415.05
410.468
406.036
401.749
397.597
393.575
389.677
385.895
382.226
378.665
375.205
966.183
969.962
973.765
977.615
981.541
985.571
989.737
994.092
998.732
1003.76
1009.29
1015.49
1022.69
1031.13
1040.89
1051.84
1063.74
1076.32
1089.38
1102.72
1116.13
1129.43
1142.4
1154.92
1167.01
1178.62
1189.78
1200.59
1211.19
1221.74
1232.45
1243.33
1254.44
1265.89
1277.77
1290.18
1303.19
1316.88
1331.31
1346.54
1362.62
1379.71
1397.63
1416.36
1435.88
1456.12
1477
1498.43
1520.27
1542.37
1564.57
1586.68
1608.33
1629.59
1650.31
1670.33
1689.51
1707.77
1725.07
1741.41
1756.88
1771.6
1785.78
1799.7
1813.67
1828.13
1843.59
1860.65
1879.97
1902.32
1928.58
1959.75
1996.99
2041.63
2095.21
2159.52
2236.61
2328.83
2438.7
2568.91
2721.96
2899.75
3102.48
3324.68
3564.33
3811.54
4054.37
4280.64
4479.78
4644.27
4770.24
4857.25
4907.41
4924.48
4912.97
4877.51
4822.51
4751.92
4669.2
4577.28
4478.61
4375.23
4268.8
4160.67
4051.93
3943.44
3835.91
3729.89
3625.82
3524.06
3424.88
3328.51
3235.11
3144.82
3057.74
2973.93
2893.43
2816.28
2742.47
2672
2604.82
2540.91
2480.21
2422.66
2368.17
2316.66
2268.04
2222.2
2179.04
2138.44
2100.3
2064.5
2030.92
1999.45
1969.98
1942.38
1916.56
1892.4
1869.82
1848.7
1828.95
1810.49
1793.23
1777.08
1761.98
1747.85
1734.63
1722.25
1710.66
1699.81
1689.64
1680.11
1671.19
1662.83
1655.02
1647.72
1640.96
1634.71
1628.9
1623.49
1618.48
1613.83
1609.54
1605.57
1601.92
1598.57
1595.5
1592.7
1590.14
1587.8
1585.68
1583.74
1581.96
1580.31
1578.78
1577.32
1575.9
1574.48
1573.03
1571.49
1569.82
1567.98
1565.89
1563.51
1560.77
1557.6
1553.92
1549.67
1544.76
1539.1
1532.61
1525.18
1516.72
1507.12
1496.29
1484.11
1470.48
1455.31
1438.48
1419.95
1399.64
1377.5
1353.5
1327.62
1299.88
1270.35
1239.1
1206.29
1172.08
1136.68
1100.33
1063.29
1025.84
988.273
950.876
913.932
877.708
842.448
808.368
775.648
744.429
714.812
686.85
660.557
635.916
612.854
591.319
571.07
551.943
533.847
516.824
500.882
486.103
472.54
460.207
449.119
439.292
430.734
423.452
417.464
412.809
409.537
407.701
407.355
408.549
411.349
415.843
422.128
430.309
440.494
452.798
467.335
484.225
503.587
525.533
550.167
577.574
607.808
640.888
676.799
715.401
756.534
800.051
845.719
893.23
942.217
992.27
1042.95
1093.79
1144.31
1194.06
1242.57
1289.42
1334.21
1376.55
1416.1
1452.54
1485.6
1515.07
1540.8
1562.73
1580.86
1595.26
1606.06
1613.46
1617.67
1618.93
1617.49
1613.57
1607.41
1599.22
1589.16
1577.4
1564.06
1549.24
1532.98
1515.19
1495.45
1473.8
1450.21
1424.65
1397.09
1367.51
1335.92
1302.36
1266.94
1229.83
1191.28
1151.62
1111.26
1070.65
1030.23
990.477
951.777
914.46
878.76
844.793
812.622
782.323
753.934
727.444
702.854
680.18
659.433
640.472
623.088
607.147
592.516
579.06
566.647
555.143
544.418
534.368
524.915
515.966
507.415
499.204
491.354
483.829
476.608
469.671
463.003
456.593
450.427
444.494
438.784
433.286
427.99
422.886
417.964
413.214
408.629
404.199
399.917
395.775
391.767
387.887
384.128
380.486
376.954
737.589
740.584
743.576
746.574
749.588
752.628
755.702
758.82
761.992
765.236
768.571
772.024
775.638
779.464
783.553
787.961
792.77
798.099
804.06
810.708
818.008
825.858
834.123
842.668
851.366
860.094
868.726
877.145
885.254
892.988
900.324
907.27
913.858
920.142
926.182
932.038
937.765
943.413
949.026
954.639
960.294
966.122
972.006
977.96
983.999
990.133
996.362
1002.68
1009.09
1015.56
1022.09
1028.66
1035.35
1042.02
1048.65
1055.23
1061.75
1068.25
1074.73
1081.25
1087.84
1094.59
1101.57
1108.88
1116.48
1124.76
1133.91
1144.14
1155.7
1168.91
1184.14
1201.82
1222.46
1246.71
1275.37
1309.39
1349.94
1398.47
1456.76
1527.02
1611.95
1714.81
1839.41
1992.59
2179.07
2399.02
2649
2921.29
3204.25
3483.77
3745.58
3977.54
4171.29
4322.78
4431.9
4501.39
4535.71
4540.03
4519.51
4478.94
4422.53
4353.84
4275.87
4191.04
4101.37
4008.47
3913.65
3817.94
3722.2
3627.08
3533.12
3440.76
3350.33
3262.11
3176.31
3093.1
3012.6
2934.92
2860.11
2788.22
2719.28
2653.29
2590.25
2530.12
2472.88
2418.46
2366.81
2317.87
2271.55
2227.76
2186.42
2147.43
2110.7
2076.12
2043.6
2013.03
1984.32
1957.37
1932.07
1908.35
1886.1
1865.25
1845.7
1827.37
1810.19
1794.09
1779
1764.86
1751.6
1739.17
1727.52
1716.6
1706.37
1696.78
1687.82
1679.46
1671.72
1664.52
1657.81
1651.56
1645.74
1640.33
1635.3
1630.63
1626.31
1622.3
1618.58
1615.14
1611.94
1608.98
1606.21
1603.63
1601.18
1598.86
1596.62
1594.42
1592.24
1590.02
1587.72
1585.3
1582.7
1579.86
1576.72
1573.23
1569.3
1564.88
1559.87
1554.2
1547.77
1540.5
1532.3
1523.05
1512.67
1501.03
1488.05
1473.61
1457.62
1439.99
1420.65
1399.55
1376.64
1351.88
1325.26
1296.82
1266.63
1234.78
1201.42
1166.73
1130.92
1094.23
1056.94
1019.31
981.633
944.204
907.296
871.172
836.069
802.195
769.724
738.789
709.479
681.844
655.887
631.573
608.859
587.577
567.514
548.496
530.526
513.643
497.843
483.185
469.74
457.516
446.518
436.76
428.253
421.003
415.024
410.35
407.033
405.133
404.709
405.816
408.528
412.941
419.165
427.315
437.513
449.888
464.569
481.692
501.392
523.803
549.05
577.237
608.444
642.708
680.021
720.264
763.284
808.952
857.033
907.21
959.102
1012.27
1066.26
1120.56
1174.65
1228.03
1280.21
1330.69
1379.03
1424.77
1467.51
1506.85
1542.49
1574.17
1601.71
1625.03
1644.17
1659.21
1670.35
1677.83
1681.92
1682.94
1681.17
1676.92
1670.45
1662.01
1651.83
1640.08
1626.92
1612.46
1596.79
1579.94
1561.84
1542.07
1520.62
1497.46
1472.52
1445.74
1417.06
1386.41
1353.79
1319.2
1282.74
1244.55
1204.88
1164.07
1122.52
1080.72
1039.14
998.261
958.517
920.246
883.694
848.977
816.148
785.28
756.4
729.494
704.567
681.631
660.667
641.485
623.89
607.748
592.924
579.282
566.683
554.987
544.075
533.86
524.235
515.082
506.347
498.03
490.085
482.481
475.193
468.201
461.489
455.042
448.847
442.892
437.166
431.657
426.354
421.247
416.327
411.584
407.009
402.594
398.331
394.212
390.231
386.382
382.659
379.053
593.873
596.232
598.582
600.927
603.273
605.625
607.984
610.354
612.737
615.135
617.551
619.988
622.453
624.952
627.496
630.098
632.772
635.542
638.435
641.481
644.716
648.186
651.947
656.053
660.537
665.396
670.589
676.051
681.697
687.44
693.188
698.856
704.364
709.644
714.646
719.338
723.71
727.769
731.531
735.023
738.275
741.324
744.191
746.898
749.463
751.902
754.231
756.464
758.613
760.69
762.707
764.683
766.719
768.727
770.715
772.709
774.742
776.849
779.083
781.501
784.146
787.054
790.264
793.828
797.871
802.354
807.354
812.966
819.3
826.488
834.686
844.069
854.731
867.106
881.546
898.441
918.263
941.587
969.168
1001.98
1041.28
1088.81
1147.11
1221.95
1318.17
1440.44
1593.23
1779.63
2000.09
2251.11
2524.7
2808.99
3089.89
3353.46
3588.08
3785.88
3943.14
4059.78
4138.42
4183.26
4199.2
4191.12
4163.56
4120.55
4065.46
4001.16
3929.96
3853.75
3774.09
3692.22
3609.14
3525.66
3442.42
3359.95
3278.66
3198.9
3120.93
3044.96
2971.16
2899.66
2830.56
2763.93
2699.83
2638.28
2579.29
2522.87
2468.99
2417.63
2368.73
2322.26
2278.14
2236.31
2196.71
2159.25
2123.85
2090.43
2058.9
2029.18
2001.19
1974.83
1950.03
1926.71
1904.77
1884.16
1864.78
1846.58
1829.48
1813.43
1798.35
1784.19
1770.89
1758.42
1746.71
1735.73
1725.45
1715.86
1706.98
1698.66
1690.88
1683.6
1676.8
1670.44
1664.5
1658.96
1653.77
1648.92
1644.38
1640.13
1636.13
1632.35
1628.77
1625.35
1622.07
1618.88
1615.75
1612.64
1609.5
1606.29
1602.96
1599.44
1595.7
1591.65
1587.25
1582.41
1577.06
1571.13
1564.52
1557.15
1548.93
1539.76
1529.53
1518.16
1505.52
1491.53
1476.06
1459.05
1440.4
1420.06
1397.97
1374.08
1348.36
1320.82
1291.52
1260.51
1227.93
1193.91
1158.66
1122.38
1085.32
1047.76
1009.97
972.236
934.842
898.059
862.14
827.314
793.779
761.697
731.188
702.335
675.164
649.686
625.842
603.567
582.606
562.777
543.947
526.189
509.532
493.96
479.512
466.268
454.233
443.406
433.791
425.4
418.243
412.332
407.694
404.383
402.463
402
403.056
405.708
410.066
416.248
424.383
434.604
447.055
461.881
479.234
499.267
522.133
547.978
576.931
609.093
644.524
683.219
725.08
769.971
817.776
868.257
921.089
975.877
1032.17
1089.46
1147.21
1204.87
1261.89
1317.72
1371.83
1423.68
1472.77
1518.6
1560.72
1598.75
1632.39
1661.44
1685.83
1705.59
1720.87
1731.91
1739.01
1742.53
1742.83
1740.28
1735.25
1728.04
1718.95
1708.24
1696.12
1682.77
1668.31
1652.86
1636.47
1619.16
1600.86
1581.2
1560.1
1537.53
1513.39
1487.6
1460.06
1430.69
1399.39
1366.12
1330.88
1293.74
1254.82
1214.39
1172.76
1130.38
1087.72
1045.29
1003.61
963.119
924.171
887.019
851.776
818.488
787.228
758.012
730.833
705.696
682.605
661.498
642.161
624.414
608.123
593.152
579.357
566.595
554.735
543.668
533.275
523.44
514.132
505.304
496.901
488.883
481.218
473.88
466.849
460.107
453.638
447.428
441.465
435.736
430.229
424.934
419.839
414.935
410.212
405.662
401.275
397.044
392.962
389.021
385.216
381.536
499.442
501.284
503.118
504.946
506.772
508.596
510.421
512.247
514.076
515.908
517.742
519.577
521.415
523.256
525.099
526.946
528.8
530.665
532.544
534.444
536.374
538.344
540.366
542.457
544.636
546.925
549.35
551.94
554.721
557.711
560.91
564.303
567.855
571.519
575.239
578.956
582.611
586.149
589.524
592.699
595.65
598.363
600.836
603.073
605.085
606.886
608.492
609.92
611.189
612.314
613.316
614.216
615.046
615.83
616.6
617.395
618.246
619.188
620.315
621.727
623.393
625.291
627.42
629.793
632.51
635.49
638.76
642.365
646.356
650.796
655.754
661.317
667.62
674.77
682.958
692.316
703.002
715.115
729.015
745.093
763.918
786.586
814.153
849.23
894.199
951.959
1026.12
1120.92
1240.94
1390.26
1571.36
1783.92
2023.9
2283.29
2550.91
2814.13
3060.85
3281.19
3468.58
3619.88
3735.02
3816.12
3866.71
3890.93
3893.01
3876.9
3846.15
3803.82
3752.49
3694.29
3630.97
3563.96
3494.44
3423.34
3351.45
3279.4
3207.69
3136.72
3066.84
2998.31
2931.36
2866.15
2802.84
2741.53
2682.3
2625.21
2570.29
2517.56
2467.04
2418.71
2372.54
2328.52
2286.59
2246.71
2208.82
2172.87
2138.79
2106.52
2075.99
2047.11
2019.84
1994.08
1969.78
1946.86
1925.25
1904.88
1885.7
1867.63
1850.62
1834.62
1819.55
1805.38
1792.06
1779.54
1767.8
1756.87
1746.62
1737.01
1727.98
1719.49
1711.53
1704.04
1697.01
1690.39
1684.16
1678.29
1672.73
1667.47
1662.46
1657.68
1653.09
1648.64
1644.32
1640.06
1635.83
1631.59
1627.28
1622.85
1618.24
1613.4
1608.26
1602.76
1596.81
1590.35
1583.29
1575.54
1567.02
1557.63
1547.27
1535.84
1523.24
1509.37
1494.12
1477.41
1459.14
1439.25
1417.68
1394.37
1369.28
1342.41
1313.77
1283.43
1251.47
1218.03
1183.27
1147.38
1110.6
1073.17
1035.37
997.466
959.748
922.489
885.951
850.376
815.978
782.943
751.415
721.502
693.264
666.733
641.862
618.656
596.875
576.303
556.745
538.211
520.765
504.435
489.184
475.043
462.087
450.327
439.752
430.358
422.154
415.153
409.37
404.829
401.578
399.686
399.227
400.27
402.897
407.228
413.392
421.532
431.793
444.333
459.312
476.9
497.268
520.588
547.028
576.739
609.847
646.437
686.504
729.97
776.726
826.662
879.537
935.02
992.7
1052.1
1112.69
1173.89
1235.12
1295.77
1355.25
1412.96
1468.29
1520.65
1569.47
1614.21
1654.43
1689.79
1720.06
1745.18
1765.2
1780.31
1790.82
1797.11
1799.61
1798.77
1795.02
1788.79
1780.46
1770.35
1758.76
1745.93
1732.05
1717.28
1701.72
1685.46
1668.54
1650.96
1632.62
1613.2
1592.59
1570.71
1547.48
1522.81
1496.57
1468.64
1438.91
1407.28
1373.67
1338.07
1300.53
1261.18
1220.27
1178.12
1135.19
1091.97
1048.99
1006.78
965.811
926.438
888.921
853.357
819.79
788.297
758.891
731.569
706.335
683.179
661.994
642.566
624.724
608.332
593.249
579.329
566.424
554.404
543.149
532.576
522.639
513.252
504.349
495.881
487.808
480.1
472.729
465.675
458.919
452.443
446.234
440.278
434.56
429.071
423.797
418.728
413.854
409.165
404.653
400.308
396.123
392.09
388.203
384.449
435.491
436.914
438.332
439.745
441.155
442.563
443.968
445.373
446.778
448.181
449.584
450.985
452.384
453.78
455.172
456.559
457.941
459.317
460.688
462.054
463.416
464.775
466.133
467.494
468.862
470.242
471.641
473.065
474.526
476.034
477.604
479.25
480.987
482.828
484.781
486.847
489.017
491.274
493.591
495.935
498.27
500.561
502.773
504.877
506.849
508.673
510.338
511.841
513.185
514.375
515.423
516.348
517.178
517.951
518.731
519.608
520.566
521.589
522.652
523.737
524.867
526.065
527.354
528.759
530.319
532.059
534.01
536.205
538.685
541.492
544.677
548.304
552.536
557.355
562.799
568.96
575.954
583.929
593.003
603.333
615.049
628.196
643.391
661.788
684.417
712.562
747.885
792.757
850.802
925.3
1019.95
1138.48
1283.99
1457.85
1658.71
1882.04
2120.28
2363.64
2601.59
2824.35
3024.12
3195.68
3336.5
3446.43
3527.06
3581.09
3611.81
3622.65
3616.87
3597.45
3567.04
3527.89
3481.91
3430.68
3375.51
3317.5
3257.56
3196.42
3134.69
3072.86
3011.35
2950.52
2890.62
2831.9
2774.54
2718.67
2664.42
2611.89
2561.12
2512.18
2465.08
2419.85
2376.48
2334.97
2295.29
2257.42
2221.31
2186.94
2154.24
2123.17
2093.68
2065.71
2039.21
2014.1
1990.35
1967.87
1946.63
1926.55
1907.59
1889.69
1872.8
1856.86
1841.83
1827.68
1814.37
1801.93
1790.2
1779.13
1768.68
1758.82
1749.51
1740.72
1732.4
1724.52
1717.05
1709.95
1703.18
1696.7
1690.48
1684.48
1678.65
1672.96
1667.36
1661.8
1656.23
1650.61
1644.87
1638.95
1632.8
1626.35
1619.52
1612.24
1604.43
1596.01
1586.88
1576.96
1566.15
1554.35
1541.46
1527.38
1512
1495.24
1477.01
1457.25
1435.87
1412.82
1388.05
1361.54
1333.31
1303.39
1271.86
1238.83
1204.44
1168.87
1132.32
1095.04
1057.28
1019.3
981.386
943.807
906.829
870.699
835.645
801.865
769.523
738.746
709.618
682.193
656.46
632.419
609.912
588.687
568.539
549.359
531.227
514.203
498.304
483.478
469.743
457.172
445.776
435.539
426.447
418.504
411.726
406.132
401.746
398.611
396.799
396.39
397.462
400.102
404.439
410.616
418.785
429.109
441.757
456.905
474.741
495.455
519.238
546.279
576.753
610.811
648.562
690.005
735.077
783.702
835.772
891.044
949.18
1009.76
1072.27
1136.16
1200.81
1265.59
1329.87
1392.99
1454.27
1513.02
1568.57
1620.25
1667.45
1709.66
1746.49
1777.7
1803.21
1823.12
1837.68
1847.27
1852.35
1853.43
1851.06
1845.73
1837.94
1828.09
1816.58
1803.73
1789.83
1775.09
1759.68
1743.73
1727.32
1710.5
1693.27
1675.63
1657.46
1638.47
1618.51
1597.5
1575.32
1551.86
1526.99
1500.59
1472.54
1442.7
1410.96
1377.24
1341.5
1303.79
1264.23
1223.06
1180.64
1137.4
1093.88
1050.6
1008.12
966.91
927.341
889.662
853.957
820.27
788.684
759.217
731.869
706.634
683.48
662.27
642.806
624.912
608.452
593.276
579.22
566.15
553.976
542.623
531.992
521.989
512.537
503.578
495.063
486.955
479.22
471.833
464.771
458.016
451.548
445.354
439.418
433.726
428.267
423.028
417.998
413.168
408.526
404.064
399.773
395.646
391.675
387.845
391.396
392.485
393.566
394.641
395.712
396.78
397.846
398.91
399.974
401.037
402.099
403.16
404.219
405.275
406.328
407.377
408.421
409.459
410.49
411.514
412.529
413.536
414.534
415.522
416.502
417.474
418.437
419.395
420.348
421.3
422.253
423.212
424.181
425.167
426.177
427.22
428.305
429.439
430.629
431.88
433.193
434.561
435.975
437.421
438.882
440.336
441.764
443.145
444.464
445.708
446.87
447.958
449.014
450.093
451.161
452.192
453.193
454.162
455.048
455.798
456.454
457.06
457.654
458.274
458.956
459.737
460.652
461.738
463.034
464.582
466.427
468.637
471.288
474.381
477.924
481.999
486.704
492.23
498.63
505.993
514.364
523.574
533.864
545.774
559.704
576.357
596.688
621.577
652.03
689.89
737.182
796.356
871.752
966.415
1083
1223.39
1387.87
1574.33
1778.2
1992.78
2209.99
2421.48
2619.66
2798.51
2953.98
3083.98
3188.19
3267.63
3324.22
3360.4
3378.84
3382.15
3372.79
3353.01
3324.75
3289.72
3249.37
3204.89
3157.31
3107.47
3056.09
3003.75
2950.97
2898.13
2845.59
2793.61
2742.45
2692.27
2643.23
2595.47
2549.06
2504.09
2460.61
2418.66
2378.27
2339.44
2302.17
2266.46
2232.28
2199.62
2168.44
2138.71
2110.39
2083.44
2057.81
2033.46
2010.35
1988.41
1967.61
1947.9
1929.22
1911.54
1894.81
1878.99
1864.12
1850.04
1836.7
1824.06
1812.06
1800.68
1789.87
1779.6
1769.83
1760.51
1751.6
1743.07
1734.88
1726.97
1719.31
1711.86
1704.56
1697.38
1690.24
1683.12
1675.93
1668.64
1661.17
1653.46
1645.44
1637.03
1628.15
1618.73
1608.67
1597.89
1586.28
1573.77
1560.23
1545.58
1529.72
1512.55
1494
1473.99
1452.45
1429.31
1404.52
1378.06
1349.92
1320.15
1288.8
1255.96
1221.77
1186.38
1149.99
1112.81
1075.1
1037.1
999.081
961.312
924.055
887.559
852.056
817.751
784.82
753.403
723.602
695.482
669.065
644.355
621.257
599.504
578.897
559.227
540.563
522.97
506.494
491.142
476.838
463.607
451.52
440.579
430.764
422.056
414.451
407.964
402.62
398.446
395.485
393.806
393.495
394.64
397.334
401.714
407.936
416.166
426.58
439.362
454.704
472.81
493.889
518.154
545.814
577.068
612.092
651.019
693.856
740.552
791.064
845.285
902.971
963.776
1027.26
1092.89
1160.08
1228.18
1296.53
1364.43
1431.16
1495.96
1558.07
1616.72
1671.13
1720.63
1764.62
1802.67
1834.52
1860.1
1879.56
1893.21
1901.51
1905.02
1904.33
1900.06
1892.75
1882.98
1871.23
1857.95
1843.5
1828.19
1812.27
1795.93
1779.3
1762.48
1745.5
1728.38
1711.1
1693.62
1675.82
1657.45
1638.32
1618.31
1597.31
1575.2
1551.82
1527.05
1500.74
1472.75
1442.97
1411.28
1377.61
1341.9
1304.19
1264.6
1223.38
1180.89
1137.58
1093.97
1050.63
1008.11
966.872
927.303
889.636
853.939
820.267
788.719
759.305
732.024
706.858
683.743
662.534
643.047
625.118
608.585
593.295
579.121
565.985
553.777
542.383
531.699
521.641
512.14
503.139
494.591
486.46
478.712
471.322
464.265
457.521
451.074
444.905
438.999
433.344
427.926
422.732
417.751
412.973
408.388
403.986
399.759
395.699
391.788
364.558
365.359
366.162
366.966
367.771
368.576
369.383
370.189
370.997
371.804
372.612
373.42
374.226
375.032
375.835
376.636
377.433
378.226
379.013
379.794
380.568
381.335
382.093
382.841
383.58
384.308
385.025
385.731
386.426
387.11
387.784
388.448
389.103
389.752
390.396
391.037
391.681
392.33
392.99
393.667
394.366
395.094
395.853
396.649
397.482
398.349
399.247
400.169
401.105
402.046
402.983
403.933
404.92
405.903
406.838
407.66
408.387
409.034
409.605
410.101
410.537
410.931
411.305
411.682
412.084
412.537
413.065
413.692
414.446
415.355
416.459
417.806
419.403
421.261
423.418
425.918
428.82
432.2
436.137
440.721
446.05
452.295
459.543
468.102
478.224
490.223
504.456
521.295
541.078
564.915
594.177
630.176
673.984
727.808
793.729
875.363
975.655
1096.02
1236.97
1397.52
1574.68
1763.64
1958.21
2151.65
2337.38
2509.74
2664.43
2798.71
2911.35
3002.33
3072.64
3123.87
3157.99
3177.1
3183.29
3178.53
3164.63
3143.2
3115.64
3083.16
3046.8
3007.44
2965.82
2922.58
2878.26
2833.29
2788.05
2742.87
2698
2653.66
2610.03
2567.26
2525.47
2484.76
2445.2
2406.84
2369.74
2333.93
2299.41
2266.2
2234.29
2203.68
2174.35
2146.29
2119.46
2093.83
2069.39
2046.08
2023.87
2002.73
1982.62
1963.49
1945.32
1928.09
1911.8
1896.26
1881.45
1867.33
1853.87
1841.02
1828.75
1817.01
1805.77
1794.97
1784.59
1774.57
1764.86
1755.43
1746.22
1737.19
1728.27
1719.42
1710.57
1701.67
1692.65
1683.45
1674
1664.22
1654.03
1643.35
1632.1
1620.18
1607.5
1593.98
1579.51
1563.99
1547.33
1529.44
1510.26
1489.68
1467.65
1444.1
1418.97
1392.24
1363.9
1333.99
1302.56
1269.69
1235.5
1200.14
1163.78
1126.64
1088.95
1050.94
1012.87
975.01
937.606
900.905
865.138
830.512
797.206
765.368
735.11
706.506
679.6
654.387
630.838
608.679
587.698
567.676
548.615
530.591
513.668
497.86
483.135
469.441
456.801
445.281
434.874
425.552
417.295
410.092
403.954
398.909
394.993
392.249
390.746
390.573
391.828
394.607
399.058
405.35
413.663
424.188
437.123
452.679
471.074
492.537
517.302
545.601
577.657
613.668
653.795
698.052
746.399
798.826
855.227
915.357
978.859
1045.27
1114.05
1184.55
1256.12
1328.04
1399.55
1469.88
1538.17
1603.59
1665.24
1722.28
1773.92
1819.5
1858.55
1890.78
1916.16
1934.86
1947.28
1953.98
1955.59
1952.77
1946.2
1936.55
1924.43
1910.41
1895
1878.61
1861.59
1844.2
1826.65
1809.08
1791.6
1774.24
1757.02
1739.91
1722.85
1705.79
1688.58
1671.02
1652.86
1633.99
1614.29
1593.62
1571.84
1548.82
1524.39
1498.4
1470.71
1441.2
1409.76
1376.33
1340.86
1303.38
1264.02
1223.02
1180.73
1137.61
1094.18
1051.01
1008.66
967.582
928.162
890.624
855.025
821.442
789.976
760.639
733.424
708.297
685.164
663.901
644.335
626.302
609.655
594.276
580.05
566.859
554.583
543.111
532.35
522.22
512.655
503.601
495.012
486.849
479.082
471.682
464.624
457.889
451.457
445.311
439.435
433.814
428.436
423.287
418.356
413.633
409.106
404.768
400.608
396.607
346.578
347.183
347.789
348.394
349.001
349.608
350.216
350.826
351.437
352.048
352.661
353.274
353.887
354.5
355.112
355.723
356.332
356.938
357.54
358.139
358.732
359.319
359.9
360.474
361.04
361.597
362.144
362.682
363.209
363.725
364.229
364.722
365.204
365.674
366.133
366.581
367.02
367.45
367.875
368.296
368.717
369.141
369.572
370.016
370.476
370.959
371.466
372.001
372.565
373.157
373.777
374.442
375.126
375.774
376.381
376.938
377.441
377.894
378.302
378.671
379.01
379.326
379.632
379.939
380.261
380.613
381.01
381.469
382.007
382.649
383.429
384.35
385.414
386.64
388.051
389.672
391.533
393.671
396.128
398.957
402.223
406.013
410.443
415.747
422.198
429.994
439.334
450.515
463.799
479.563
498.969
522.98
551.427
585.734
627.321
677.308
737.422
809.49
896.488
1000.71
1122.53
1261.4
1415.43
1581.23
1754.2
1928.99
2100.1
2262.55
2412.18
2545.96
2662.08
2759.82
2839.38
2901.6
2947.84
2979.69
2998.83
3006.93
3005.58
2996.25
2980.24
2958.74
2932.76
2903.19
2870.78
2836.17
2799.93
2762.52
2724.34
2685.75
2647.02
2608.39
2570.07
2532.23
2495.02
2458.54
2422.89
2388.15
2354.38
2321.62
2289.9
2259.26
2229.69
2201.22
2173.82
2147.51
2122.26
2098.05
2074.87
2052.68
2031.47
2011.2
1991.86
1973.46
1955.86
1939
1922.85
1907.37
1892.52
1878.26
1864.56
1851.37
1838.65
1826.36
1814.45
1802.87
1791.58
1780.52
1769.64
1758.88
1748.2
1737.51
1726.77
1715.91
1704.84
1693.51
1681.83
1669.71
1657.09
1643.86
1629.95
1615.24
1599.66
1583.1
1565.48
1546.72
1526.73
1505.43
1482.76
1458.64
1433.03
1405.9
1377.25
1347.1
1315.49
1282.5
1248.25
1212.86
1176.51
1139.39
1101.71
1063.71
1025.62
987.701
950.198
913.349
877.38
842.497
808.88
776.686
746.028
716.998
689.643
663.971
639.988
617.445
596.124
575.797
556.394
537.992
520.657
504.432
489.315
475.219
462.144
450.104
439.16
429.286
420.454
412.64
405.833
400.037
395.283
391.611
389.072
387.734
387.687
389.036
391.886
396.388
402.726
411.095
421.699
434.755
450.486
469.131
490.937
516.159
545.052
577.865
614.822
656.109
701.755
751.733
806.061
864.639
927.22
993.439
1062.82
1134.78
1208.66
1283.77
1359.33
1434.53
1508.52
1580.37
1649.13
1713.81
1773.45
1827.18
1874.25
1914.14
1946.58
1971.52
1989.21
2000.13
2004.94
2004.3
1998.99
1989.78
1977.4
1962.58
1945.96
1928.08
1909.42
1890.36
1871.2
1852.17
1833.41
1815.03
1797.08
1779.55
1762.42
1745.61
1729.06
1712.64
1696.24
1679.63
1662.58
1644.95
1626.61
1607.41
1587.23
1565.92
1543.33
1519.32
1493.75
1466.44
1437.28
1406.16
1373.01
1337.82
1300.64
1261.59
1220.91
1178.95
1136.16
1093.08
1050.25
1008.23
967.493
928.386
891.117
855.73
822.361
791.088
761.922
734.848
709.814
686.727
665.456
645.858
627.788
611.114
595.709
581.45
568.211
555.876
544.341
533.518
523.332
513.72
504.628
496.012
487.833
480.059
472.662
465.618
458.903
452.499
446.388
440.554
434.981
429.656
424.565
419.698
415.043
410.59
406.329
402.235
332.687
333.123
333.559
333.996
334.434
334.873
335.314
335.756
336.199
336.644
337.091
337.539
337.987
338.437
338.887
339.336
339.785
340.233
340.679
341.123
341.564
342.002
342.436
342.864
343.288
343.705
344.116
344.519
344.914
345.301
345.679
346.048
346.406
346.755
347.093
347.42
347.737
348.044
348.341
348.63
348.911
349.185
349.456
349.725
349.996
350.273
350.558
350.857
351.174
351.509
351.864
352.235
352.595
352.94
353.271
353.586
353.886
354.17
354.44
354.699
354.95
355.197
355.447
355.706
355.981
356.282
356.617
356.998
357.44
357.967
358.581
359.278
360.071
360.972
361.995
363.153
364.462
365.939
367.605
369.484
371.606
374.01
376.758
379.988
383.814
388.375
393.909
400.675
408.802
418.63
430.516
444.849
462.392
484.157
511.255
543.727
582.33
628.364
682.662
746.556
821.468
909.75
1012.91
1130.58
1261.6
1403.83
1554.07
1708.41
1862.59
2012.4
2154.08
2284.6
2401.78
2504.27
2591.58
2663.84
2721.7
2766.16
2798.41
2819.76
2831.5
2834.92
2831.2
2821.41
2806.53
2787.44
2764.88
2739.52
2711.95
2682.65
2652.04
2620.49
2588.32
2555.79
2523.14
2490.56
2458.21
2426.23
2394.74
2363.82
2333.58
2304.05
2275.31
2247.37
2220.28
2194.05
2168.69
2144.21
2120.61
2097.88
2076
2054.97
2034.78
2015.4
1996.7
1978.68
1961.29
1944.5
1928.29
1912.62
1897.46
1882.75
1868.46
1854.55
1840.97
1827.66
1814.58
1801.67
1788.87
1776.13
1763.38
1750.55
1737.57
1724.37
1710.88
1697.01
1682.68
1667.8
1652.28
1636.05
1619
1601.05
1582.11
1562.11
1540.96
1518.59
1494.92
1469.89
1443.47
1415.62
1386.35
1355.68
1323.65
1290.34
1255.84
1220.3
1183.86
1146.7
1109.04
1071.08
1033.06
995.219
957.783
920.985
885.042
850.153
816.493
784.218
753.438
724.259
696.719
670.853
646.656
623.904
602.385
581.893
562.295
543.672
526.083
509.587
494.186
479.845
466.481
454.112
442.778
432.497
423.235
414.961
407.654
401.301
395.904
391.491
388.108
385.815
384.682
384.802
386.285
389.243
393.831
400.249
408.705
419.42
432.627
448.566
467.494
489.676
515.39
544.915
578.523
616.467
658.96
706.04
757.698
813.977
874.783
939.867
1008.85
1081.24
1156.42
1233.72
1312.39
1391.6
1470.49
1548.12
1623.48
1695.5
1763.11
1825.22
1880.85
1929.21
1969.72
2002.09
2026.32
2042.72
2051.88
2054.46
2051.26
2043.14
2030.95
2015.55
1997.73
1978.18
1957.54
1936.31
1914.93
1893.74
1872.96
1852.78
1833.28
1814.53
1796.52
1779.2
1762.49
1746.3
1730.52
1715
1699.59
1684.09
1668.26
1651.94
1634.99
1617.27
1598.64
1578.97
1558.13
1535.98
1512.38
1487.19
1460.27
1431.47
1400.67
1367.82
1332.91
1296.03
1257.32
1217.01
1175.46
1133.12
1090.51
1048.16
1006.63
966.365
927.706
890.806
855.752
822.71
791.73
762.823
735.965
711.096
688.123
666.93
647.384
629.352
612.703
597.31
583.042
569.778
557.407
545.833
534.973
524.755
515.117
506.008
497.384
489.206
481.443
474.065
467.048
460.369
454.007
447.945
442.166
436.654
431.395
426.377
421.587
417.013
412.646
408.457
322.212
322.502
322.793
323.085
323.379
323.674
323.972
324.271
324.572
324.875
325.18
325.487
325.795
326.105
326.416
326.728
327.041
327.354
327.667
327.979
328.29
328.599
328.907
329.212
329.514
329.813
330.107
330.397
330.682
330.962
331.236
331.503
331.763
332.016
332.261
332.499
332.728
332.95
333.163
333.368
333.565
333.756
333.94
334.119
334.295
334.469
334.644
334.822
335.008
335.201
335.4
335.582
335.748
335.908
336.062
336.212
336.361
336.51
336.661
336.816
336.978
337.149
337.333
337.534
337.756
338.005
338.286
338.611
338.993
339.435
339.929
340.484
341.11
341.814
342.604
343.49
344.48
345.585
346.813
348.178
349.691
351.371
353.245
355.383
357.838
360.674
363.984
367.891
372.562
378.342
385.309
393.772
404.043
416.538
431.869
450.938
474.647
504.082
539.202
580.416
628.735
684.647
749.112
823.098
908.275
1005.66
1114.5
1233.48
1360.63
1493.31
1628.43
1762.78
1893.2
2016.92
2131.64
2235.7
2328.02
2408.1
2475.94
2531.91
2576.66
2611.04
2636.01
2652.56
2661.65
2664.25
2661.22
2653.38
2641.46
2626.12
2607.94
2587.44
2565.05
2541.19
2516.18
2490.31
2463.84
2436.99
2409.95
2382.88
2355.92
2329.2
2302.8
2276.81
2251.29
2226.31
2201.91
2178.12
2154.97
2132.47
2110.64
2089.48
2068.97
2049.01
2029.6
2010.71
1992.33
1974.45
1957.03
1940.05
1923.46
1907.25
1891.36
1875.75
1860.38
1845.2
1830.14
1815.16
1800.2
1785.18
1770.05
1754.73
1739.14
1723.21
1706.86
1690.02
1672.59
1654.48
1635.63
1615.94
1595.33
1573.74
1551.07
1527.26
1502.23
1475.96
1448.39
1419.52
1389.35
1357.9
1325.22
1291.38
1256.5
1220.68
1184.08
1146.88
1109.26
1071.43
1033.61
996.006
958.85
922.353
886.718
852.128
818.757
786.739
756.184
727.204
699.811
674.095
649.98
627.268
605.765
585.288
565.681
547.025
529.374
512.787
497.284
482.852
469.384
456.869
445.314
434.785
425.253
416.682
409.04
402.307
396.469
391.53
387.515
384.473
382.472
381.589
381.923
383.587
386.7
391.418
397.959
406.547
417.419
430.823
447.019
466.281
488.895
515.16
545.379
579.849
618.849
662.621
711.213
764.63
822.943
886.061
953.73
1025.56
1101.02
1179.5
1260.26
1342.52
1425.4
1507.97
1589.21
1668.01
1743.22
1813.61
1878.02
1935.37
1984.77
2025.63
2057.67
2080.9
2095.75
2102.82
2102.87
2096.8
2085.56
2070.12
2051.41
2030.3
2007.56
1983.87
1959.8
1935.84
1912.33
1889.57
1867.72
1846.9
1827.15
1808.47
1790.81
1774.07
1758.14
1742.88
1728.14
1713.76
1699.55
1685.31
1670.82
1655.89
1640.37
1624.13
1607.01
1588.91
1569.71
1549.27
1527.5
1504.24
1479.39
1452.78
1424.29
1393.81
1361.25
1326.63
1290.04
1251.66
1211.76
1170.68
1128.87
1086.81
1045.05
1004.13
964.454
926.334
889.89
855.285
822.66
792.058
763.485
736.911
712.276
689.494
668.45
649.022
631.081
614.5
599.146
584.896
571.633
559.253
547.667
536.794
526.566
516.924
507.818
499.204
491.046
483.31
475.967
468.993
462.364
456.059
450.06
444.35
438.913
433.735
428.803
424.104
419.625
415.336
314.551
314.717
314.885
315.055
315.227
315.4
315.577
315.755
315.935
316.118
316.303
316.491
316.68
316.872
317.065
317.26
317.456
317.654
317.853
318.052
318.251
318.451
318.65
318.848
319.046
319.242
319.436
319.628
319.818
320.004
320.187
320.367
320.543
320.714
320.88
321.042
321.199
321.35
321.495
321.636
321.771
321.901
322.026
322.146
322.263
322.378
322.491
322.605
322.721
322.84
322.96
323.065
323.143
323.209
323.272
323.334
323.397
323.464
323.537
323.619
323.712
323.818
323.942
324.085
324.251
324.445
324.674
324.946
325.261
325.614
326.011
326.457
326.957
327.518
328.144
328.842
329.617
330.475
331.423
332.465
333.611
334.867
336.247
337.787
339.512
341.45
343.637
346.123
348.982
352.319
356.266
361.135
367.033
374.188
382.936
393.615
406.603
422.743
442.829
467.668
498.206
534.234
575.941
624.034
678.709
740.561
810.208
888.508
976.485
1073.32
1177.78
1288.3
1402.88
1519.25
1635.03
1747.94
1855.9
1957.17
2050.39
2134.61
2209.3
2274.28
2329.65
2375.78
2413.19
2442.5
2464.42
2479.68
2488.98
2493.03
2492.49
2487.96
2480
2469.11
2455.75
2440.33
2423.21
2404.7
2385.08
2364.6
2343.47
2321.89
2300
2277.94
2255.83
2233.78
2211.88
2190.2
2168.8
2147.73
2127.03
2106.68
2086.61
2066.82
2047.32
2028.13
2009.23
1990.63
1972.32
1954.26
1936.45
1918.84
1901.41
1884.11
1866.9
1849.73
1832.56
1815.32
1797.95
1780.39
1762.58
1744.43
1725.86
1706.83
1687.25
1667.04
1646.11
1624.41
1601.86
1578.37
1553.88
1528.33
1501.68
1473.89
1444.93
1414.81
1383.53
1351.13
1317.67
1283.21
1247.88
1211.78
1175.06
1137.89
1100.45
1062.92
1025.51
988.418
951.847
915.99
881.027
847.134
814.455
783.105
753.218
724.843
698
672.837
649.157
626.788
605.566
585.325
565.933
547.469
529.984
513.531
498.137
483.793
470.422
457.956
446.404
435.798
426.166
417.466
409.662
402.722
396.625
391.362
386.937
383.374
380.724
379.061
378.473
379.067
380.961
384.281
389.181
395.896
404.668
415.752
429.413
445.931
465.597
488.717
515.613
546.613
582.038
622.193
667.35
717.563
772.853
833.316
898.865
969.234
1044.02
1122.66
1204.52
1288.82
1374.72
1461.3
1547.54
1632.35
1714.53
1792.8
1865.84
1932.35
1991.17
2041.36
2082.28
2113.67
2135.63
2148.6
2153.25
2150.46
2141.22
2126.6
2107.64
2085.36
2060.7
2034.51
2007.51
1980.35
1953.54
1927.49
1902.49
1878.75
1856.38
1835.42
1815.88
1797.71
1780.81
1765.03
1750.22
1736.19
1722.76
1709.75
1696.95
1684.14
1671.11
1657.66
1643.62
1628.84
1613.21
1596.6
1578.92
1560.07
1539.94
1518.43
1495.44
1470.82
1444.46
1416.21
1385.99
1353.7
1319.35
1283.05
1245.01
1205.52
1164.94
1123.71
1082.29
1041.22
1000.98
961.976
924.456
888.561
854.502
822.376
792.224
764.052
737.829
713.496
690.967
670.132
650.874
633.069
616.587
601.302
587.097
573.863
561.502
549.928
539.066
528.851
519.227
510.144
501.56
493.439
485.747
478.456
471.54
464.976
458.743
452.822
447.196
441.849
436.767
431.935
427.341
422.947
309.154
309.219
309.286
309.355
309.426
309.5
309.576
309.654
309.734
309.817
309.903
309.99
310.081
310.173
310.268
310.365
310.463
310.564
310.666
310.769
310.874
310.98
311.087
311.194
311.301
311.409
311.516
311.623
311.729
311.834
311.938
312.041
312.141
312.24
312.336
312.43
312.521
312.61
312.695
312.778
312.858
312.935
313.009
313.081
313.152
313.22
313.288
313.356
313.426
313.498
313.572
313.643
313.697
313.732
313.753
313.773
313.795
313.82
313.85
313.889
313.939
314.001
314.079
314.176
314.294
314.443
314.623
314.836
315.079
315.355
315.668
316.021
316.419
316.865
317.363
317.917
318.531
319.208
319.952
320.768
321.659
322.63
323.688
324.854
326.141
327.561
329.129
330.866
332.799
334.967
337.424
340.26
343.577
347.579
352.512
358.481
365.783
374.694
385.598
398.826
415.249
435.532
460.346
490.455
525.576
565.637
611.157
662.136
718.758
781.498
850.395
926.677
1009.76
1098.66
1192.17
1288.9
1387.27
1485.63
1582.32
1675.81
1764.77
1848.09
1924.92
1994.7
2057.09
2112.01
2159.54
2199.92
2233.5
2260.72
2282.06
2298.03
2309.13
2315.87
2318.74
2318.18
2314.63
2308.47
2300.05
2289.71
2277.73
2264.36
2249.86
2234.41
2218.22
2201.43
2184.18
2166.6
2148.8
2130.85
2112.82
2094.6
2076.19
2057.67
2039.07
2020.44
2001.78
1983.12
1964.46
1945.8
1927.12
1908.41
1889.65
1870.8
1851.84
1832.72
1813.39
1793.8
1773.91
1753.64
1732.94
1711.74
1690
1667.63
1644.57
1620.76
1596.13
1570.63
1544.21
1516.84
1488.47
1459.09
1428.69
1397.29
1364.91
1331.6
1297.43
1262.47
1226.84
1190.65
1154.05
1117.2
1080.25
1043.39
1006.79
970.64
935.109
900.368
866.584
833.891
802.407
772.27
743.543
716.247
690.541
666.315
643.442
621.755
601.126
581.378
562.465
544.459
527.403
511.346
496.31
482.289
469.218
457.014
445.672
435.198
425.656
417.011
409.222
402.254
396.079
390.675
386.038
382.174
379.112
376.9
375.62
375.37
376.265
378.437
382.018
387.161
394.107
403.125
414.486
428.477
445.396
465.553
489.274
516.906
548.801
585.306
626.749
673.428
725.408
782.722
845.494
913.63
986.856
1064.74
1146.71
1232.06
1319.99
1409.61
1499.92
1589.84
1678.19
1763.66
1844.86
1920.35
1988.73
2048.74
2099.39
2140.05
2170.46
2190.81
2201.54
2203.46
2197.52
2184.83
2166.55
2143.82
2117.73
2089.29
2059.4
2028.88
1998.39
1968.5
1939.65
1912.16
1886.3
1862.17
1839.8
1819.19
1800.28
1783
1767.19
1752.69
1739.3
1726.81
1715
1703.65
1692.51
1681.35
1669.92
1658.03
1645.5
1632.2
1618.01
1602.83
1586.58
1569.16
1550.51
1530.56
1509.2
1486.35
1461.87
1435.65
1407.57
1377.53
1345.46
1311.37
1275.37
1237.66
1198.57
1158.51
1117.9
1077.19
1036.86
997.378
959.102
922.241
887.006
853.565
822.005
792.369
764.661
738.854
714.884
692.664
672.09
653.046
635.411
619.06
603.875
589.744
576.566
564.249
552.713
541.887
531.708
522.123
513.084
504.549
496.482
488.852
481.629
474.788
468.305
462.159
456.331
450.805
445.564
440.593
435.877
431.374
305.519
305.505
305.492
305.482
305.473
305.467
305.463
305.461
305.462
305.464
305.469
305.477
305.487
305.499
305.513
305.529
305.548
305.569
305.591
305.616
305.642
305.67
305.699
305.73
305.761
305.794
305.827
305.861
305.896
305.93
305.965
306
306.034
306.069
306.102
306.135
306.167
306.198
306.229
306.258
306.286
306.314
306.34
306.367
306.392
306.418
306.444
306.472
306.501
306.533
306.568
306.605
306.642
306.67
306.687
306.693
306.693
306.694
306.7
306.713
306.735
306.767
306.813
306.876
306.961
307.069
307.201
307.356
307.537
307.747
307.988
308.264
308.576
308.927
309.321
309.759
310.244
310.78
311.369
312.012
312.714
313.477
314.304
315.209
316.2
317.283
318.465
319.754
321.163
322.704
324.398
326.275
328.375
330.762
333.522
336.768
340.778
345.656
351.586
358.869
367.721
378.505
391.5
407.468
426.956
450.466
478.588
511.203
547.834
588.934
634.431
684.079
738.341
797.108
860.551
929.227
1002.42
1079.25
1158.76
1239.92
1321.61
1402.71
1482.13
1558.86
1632.05
1700.95
1765.02
1823.85
1877.2
1924.97
1967.17
2003.93
2035.45
2061.98
2083.82
2101.32
2114.8
2124.63
2131.12
2134.62
2135.44
2133.87
2130.19
2124.64
2117.47
2108.88
2099.07
2088.2
2076.43
2063.88
2050.57
2036.29
2021.24
2005.53
1989.23
1972.41
1955.12
1937.41
1919.3
1900.82
1881.97
1862.76
1843.18
1823.21
1802.85
1782.05
1760.79
1739.03
1716.74
1693.87
1670.37
1646.22
1621.36
1595.75
1569.37
1542.16
1514.12
1485.21
1455.44
1424.8
1393.32
1361.02
1327.94
1294.16
1259.73
1224.77
1189.37
1153.65
1117.75
1081.82
1046
1010.45
975.324
940.776
906.962
874.021
842.07
811.232
781.63
753.311
726.304
700.794
676.677
653.843
632.163
611.515
591.827
572.874
554.751
537.509
521.185
505.82
491.424
477.992
465.453
453.731
442.816
432.708
423.456
415.057
407.469
400.654
394.578
389.215
384.549
380.578
377.315
374.79
373.058
372.2
372.327
373.567
376.062
379.96
385.407
392.649
401.983
413.701
428.109
445.526
466.282
490.725
519.223
552.156
589.903
632.81
681.185
735.119
794.654
859.938
930.867
1007.15
1088.33
1173.79
1262.79
1354.48
1447.9
1542
1635.61
1727.44
1816.1
1900.06
1977.77
2047.72
2108.58
2159.33
2199.32
2228.38
2246.7
2254.83
2253.65
2244.25
2227.83
2205.64
2178.9
2148.78
2116.34
2082.57
2048.3
2014.28
1981.08
1949.23
1919.04
1890.73
1864.45
1840.25
1818.11
1798.02
1779.93
1763.71
1749.21
1736.24
1724.6
1714.03
1704.27
1695.04
1686.03
1676.94
1667.49
1657.45
1646.61
1634.88
1622.16
1608.36
1593.44
1577.33
1560
1541.4
1521.47
1500.12
1477.27
1452.81
1426.64
1398.62
1368.68
1336.76
1302.88
1267.15
1229.8
1191.15
1151.63
1111.66
1071.68
1032.15
993.484
955.989
919.871
885.358
852.593
821.663
792.61
765.437
740.111
716.562
694.706
674.438
655.648
638.216
622.028
606.971
592.943
579.849
567.604
556.131
545.364
535.244
525.719
516.744
508.277
500.284
492.733
485.595
478.845
472.46
466.419
460.702
455.293
450.175
445.332
440.715
303.194
303.121
303.049
302.979
302.911
302.845
302.78
302.717
302.656
302.598
302.541
302.486
302.434
302.383
302.335
302.288
302.244
302.201
302.161
302.122
302.085
302.05
302.017
301.985
301.955
301.926
301.898
301.871
301.846
301.821
301.798
301.775
301.753
301.731
301.71
301.689
301.669
301.649
301.629
301.609
301.59
301.571
301.552
301.534
301.517
301.501
301.486
301.474
301.463
301.456
301.452
301.453
301.457
301.463
301.47
301.473
301.47
301.463
301.454
301.446
301.445
301.453
301.473
301.509
301.562
301.63
301.717
301.823
301.952
302.106
302.286
302.494
302.733
303.004
303.31
303.653
304.034
304.455
304.919
305.427
305.981
306.583
307.236
307.946
308.721
309.564
310.479
311.47
312.541
313.699
314.951
316.308
317.784
319.4
321.184
323.179
325.454
328.089
331.206
335.094
339.795
345.512
352.518
360.983
371.22
383.413
398.138
415.878
436.965
461.829
490.688
522.682
558.054
596.908
638.972
684.11
732.532
784.008
838.522
896.543
957.487
1020.7
1085.49
1151.13
1216.92
1282.13
1346.07
1408.09
1467.63
1524.18
1577.36
1626.88
1672.51
1714.15
1751.74
1785.3
1814.93
1840.73
1862.88
1881.55
1896.95
1909.3
1918.81
1925.71
1930.2
1932.5
1932.8
1931.29
1928.13
1923.45
1917
1908.94
1899.41
1888.54
1876.44
1863.21
1848.92
1833.67
1817.5
1800.46
1782.61
1763.96
1744.55
1724.37
1703.46
1681.79
1659.38
1636.22
1612.3
1587.61
1562.14
1535.89
1508.85
1481.03
1452.42
1423.05
1392.93
1362.09
1330.58
1298.44
1265.74
1232.56
1198.97
1165.08
1131
1096.84
1062.72
1028.76
995.105
961.884
929.229
897.259
866.081
835.815
806.581
778.442
751.434
725.652
701.222
678.003
655.927
634.889
614.791
595.594
577.105
559.344
542.386
526.261
511.01
496.656
483.205
470.648
458.884
447.875
437.611
428.089
419.347
411.402
404.209
397.73
391.931
386.782
382.262
378.362
375.084
372.447
370.487
369.264
368.865
369.407
371.03
373.893
378.16
383.983
391.594
401.326
413.493
428.424
446.456
467.945
493.258
522.787
556.939
596.125
640.723
691.016
747.137
809.143
877.198
951.18
1030.77
1115.48
1204.66
1297.5
1393.11
1490.45
1588.39
1685.68
1780.94
1872.64
1959.15
2038.79
2109.95
2171.25
2221.64
2260.52
2287.76
2303.58
2308.67
2304.01
2290.82
2270.38
2244.03
2213.06
2178.7
2142.09
2104.24
2066.06
2028.31
1991.64
1956.47
1923.15
1891.88
1862.81
1836.03
1811.6
1789.55
1769.88
1752.57
1737.48
1724.46
1713.3
1703.75
1695.54
1688.35
1681.84
1675.66
1669.41
1662.71
1655.27
1646.77
1637.06
1626.07
1613.77
1600.19
1585.33
1569.19
1551.76
1533.02
1512.93
1491.44
1468.46
1443.9
1417.64
1389.58
1359.63
1327.78
1294.05
1258.58
1221.59
1183.41
1144.49
1105.21
1066
1027.3
989.463
952.755
917.435
883.697
851.676
821.453
793.067
766.512
741.734
718.666
697.222
677.302
658.799
641.604
625.609
610.711
596.815
583.832
571.684
560.3
549.616
539.578
530.135
521.243
512.865
504.964
497.511
490.477
483.837
477.569
471.65
466.064
460.792
455.816
451.081
301.788
301.674
301.561
301.45
301.339
301.23
301.123
301.016
300.912
300.808
300.707
300.607
300.508
300.412
300.317
300.223
300.132
300.042
299.954
299.867
299.782
299.699
299.617
299.537
299.458
299.38
299.304
299.23
299.156
299.084
299.013
298.943
298.873
298.805
298.738
298.672
298.607
298.542
298.478
298.416
298.354
298.293
298.233
298.175
298.117
298.062
298.008
297.957
297.908
297.863
297.821
297.783
297.75
297.721
297.697
297.678
297.662
297.646
297.629
297.612
297.597
297.586
297.582
297.588
297.605
297.636
297.682
297.746
297.828
297.932
298.057
298.207
298.382
298.584
298.815
299.077
299.37
299.696
300.057
300.454
300.889
301.363
301.877
302.436
303.046
303.708
304.425
305.198
306.031
306.927
307.888
308.92
310.026
311.215
312.496
313.882
315.393
317.057
318.916
321.035
323.489
326.396
330.016
334.378
339.652
346.088
353.81
363.049
373.98
386.85
402.121
420.028
440.821
464.762
491.654
520.887
552.625
586.872
623.334
661.785
702.379
744.919
789.145
835.328
883.407
932.922
983.4
1034.36
1085.34
1135.91
1185.63
1234.12
1280.99
1325.93
1368.65
1408.94
1446.62
1481.56
1513.69
1542.96
1569.38
1592.98
1613.81
1631.95
1647.5
1660.58
1671.29
1679.75
1686.09
1690.32
1692
1691.59
1689.19
1684.89
1678.81
1671.02
1661.63
1650.73
1638.38
1624.67
1609.66
1593.42
1576
1557.45
1537.82
1517.14
1495.46
1472.82
1449.25
1424.78
1399.45
1373.31
1346.4
1318.76
1290.45
1261.53
1232.06
1202.11
1171.77
1141.12
1110.25
1079.26
1048.24
1017.31
986.584
956.16
926.143
896.629
867.721
839.546
812.181
785.679
760.079
735.493
712.055
689.653
668.223
647.721
628.063
609.199
591.115
573.626
556.768
540.619
525.214
510.589
496.767
483.755
471.56
460.134
449.395
439.334
429.944
421.226
413.217
405.932
399.329
393.369
388.02
383.25
379.039
375.372
372.246
369.67
367.671
366.292
365.6
365.687
366.677
368.723
372.002
376.693
382.965
391.036
401.261
413.987
429.565
448.358
470.742
497.109
527.874
563.47
604.339
650.898
703.397
761.991
826.787
897.937
975.294
1058.51
1147.05
1240.2
1337.12
1436.83
1538.22
1640.08
1741.05
1839.64
1934.2
2022.98
2104.17
2176.1
2237.32
2286.8
2324.01
2348.85
2361.65
2363.21
2354.66
2337.31
2312.55
2281.78
2246.37
2207.6
2166.66
2124.58
2082.35
2040.69
2000.17
1961.21
1924.1
1889.04
1856.28
1826.04
1798.48
1773.69
1751.72
1732.57
1716.18
1702.42
1691.11
1682.01
1674.85
1669.33
1665.11
1661.82
1659.05
1656.35
1653.27
1649.38
1644.29
1637.62
1629.23
1619.08
1607.23
1593.78
1578.82
1562.45
1544.74
1525.69
1505.28
1483.49
1460.24
1435.46
1409.04
1380.86
1350.87
1319.04
1285.43
1250.18
1213.54
1175.88
1137.58
1099.03
1060.58
1022.67
985.631
949.755
915.271
882.352
851.117
821.641
793.96
768.066
743.895
721.352
700.358
680.819
662.636
645.707
629.935
615.224
601.487
588.643
576.619
565.348
554.773
544.839
535.5
526.714
518.445
510.658
503.323
496.414
489.905
483.775
478.003
472.57
467.456
462.6
300.984
300.844
300.704
300.566
300.428
300.291
300.155
300.02
299.885
299.752
299.62
299.489
299.36
299.231
299.104
298.978
298.853
298.729
298.607
298.486
298.367
298.248
298.131
298.015
297.9
297.787
297.674
297.563
297.453
297.344
297.236
297.129
297.023
296.918
296.814
296.712
296.61
296.509
296.409
296.31
296.212
296.115
296.02
295.926
295.833
295.743
295.654
295.567
295.483
295.402
295.325
295.251
295.181
295.116
295.056
295.002
294.954
294.912
294.875
294.843
294.815
294.79
294.767
294.749
294.737
294.734
294.743
294.766
294.806
294.863
294.94
295.036
295.155
295.296
295.462
295.653
295.87
296.116
296.39
296.695
297.03
297.398
297.8
298.237
298.715
299.234
299.797
300.405
301.059
301.76
302.512
303.315
304.172
305.085
306.059
307.097
308.205
309.393
310.671
312.059
313.581
315.274
317.196
319.409
322.004
325.213
329.08
333.7
339.273
345.961
353.859
363.156
373.934
386.372
400.768
417.265
436.011
457.145
480.492
505.441
532.048
560.331
590.111
621.084
653.21
686.465
720.676
755.615
791.307
827.898
865.072
902.521
939.944
977.049
1013.56
1049.25
1083.89
1117.27
1149.22
1179.57
1208.19
1234.96
1259.8
1282.66
1303.48
1322.25
1338.96
1353.62
1366.22
1376.37
1384.4
1390.43
1394.49
1396.59
1396.77
1395.09
1391.59
1386.34
1379.39
1370.81
1360.67
1349.04
1335.98
1321.58
1305.89
1288.99
1270.96
1251.85
1231.75
1210.72
1188.84
1166.19
1142.85
1118.89
1094.41
1069.49
1044.22
1018.7
993.008
967.247
941.498
915.85
890.403
865.27
840.536
816.267
792.517
769.335
746.806
725.141
704.256
684.099
664.651
645.894
627.771
610.261
593.371
577.042
561.152
545.796
531.043
516.927
503.479
490.715
478.651
467.298
456.619
446.535
437.055
428.166
419.865
412.155
405.094
398.667
392.835
387.564
382.823
378.584
374.826
371.534
368.703
366.337
364.455
363.092
362.298
362.149
362.745
364.217
366.729
370.473
375.653
382.457
391.093
401.923
415.339
431.718
451.447
474.926
502.573
534.83
572.149
615.005
663.855
718.916
780.345
848.326
922.968
1004.09
1091.31
1184.04
1281.49
1382.77
1486.79
1592.38
1698.22
1802.84
1904.63
2001.81
2092.48
2174.75
2246.87
2307.37
2355.28
2390.15
2411.9
2421.03
2418.51
2405.6
2383.71
2354.31
2318.88
2278.84
2235.51
2190.07
2143.67
2097.16
2051.21
2006.3
1962.79
1921.01
1881.36
1844.18
1809.79
1778.47
1750.39
1725.64
1704.22
1686.08
1671.1
1659.09
1649.83
1643.06
1638.49
1635.81
1634.67
1634.71
1635.51
1636.63
1637.56
1637.81
1636.96
1634.42
1629.84
1623.02
1613.92
1602.62
1589.31
1574.21
1557.53
1539.4
1519.9
1499.06
1476.87
1453.29
1428.23
1401.59
1373.27
1343.19
1311.35
1277.83
1242.78
1206.51
1169.34
1131.62
1093.71
1055.98
1018.84
982.603
947.551
913.89
881.772
851.303
822.553
795.571
770.339
746.79
724.797
704.278
685.145
667.308
650.673
635.15
620.654
607.103
594.425
582.551
571.419
560.976
551.17
541.959
533.303
525.166
517.516
510.324
503.565
497.213
491.248
485.65
480.396
475.419
300.544
300.389
300.233
300.079
299.924
299.77
299.617
299.464
299.311
299.16
299.009
298.858
298.708
298.559
298.411
298.264
298.117
297.971
297.826
297.682
297.539
297.397
297.255
297.115
296.975
296.836
296.698
296.56
296.424
296.288
296.153
296.019
295.886
295.754
295.622
295.491
295.361
295.232
295.103
294.976
294.849
294.723
294.599
294.476
294.354
294.234
294.115
293.999
293.885
293.773
293.664
293.558
293.456
293.358
293.265
293.177
293.094
293.018
292.949
292.888
292.833
292.784
292.742
292.704
292.671
292.643
292.623
292.612
292.613
292.629
292.661
292.711
292.779
292.866
292.975
293.104
293.257
293.433
293.633
293.859
294.111
294.39
294.698
295.035
295.405
295.809
296.249
296.724
297.237
297.789
298.379
299.01
299.683
300.398
301.158
301.964
302.818
303.722
304.68
305.697
306.781
307.94
309.191
310.553
312.055
313.745
315.67
317.891
320.554
323.798
327.637
332.171
337.58
343.969
351.389
359.962
369.773
380.815
393.255
407.204
422.733
439.921
458.77
478.832
499.851
521.811
544.682
568.341
592.552
617.172
642.196
667.517
693.002
718.482
743.84
769.294
794.665
819.762
844.403
868.421
891.661
913.979
935.247
955.354
974.211
991.737
1007.86
1022.51
1035.58
1046.76
1056.59
1065.03
1072.03
1077.57
1081.61
1084.16
1085.2
1084.75
1082.82
1079.45
1074.66
1068.51
1061.03
1052.3
1042.35
1031.27
1019.12
1005.97
991.904
976.989
961.307
944.939
927.967
910.479
892.578
874.358
855.901
837.285
818.582
799.857
781.173
762.594
744.245
726.297
708.717
691.488
674.611
658.096
641.965
626.185
610.759
595.714
581.075
566.794
552.768
539.095
525.85
513.085
500.827
489.097
477.916
467.308
457.272
447.748
438.72
430.198
422.175
414.648
407.624
401.125
395.192
389.787
384.879
380.437
376.435
372.85
369.664
366.863
364.442
362.406
360.768
359.556
358.814
358.602
359.004
360.128
362.115
365.14
369.41
375.153
382.585
391.906
403.48
417.749
435.118
456.001
480.825
510.031
544.091
583.492
628.712
680.256
738.314
803.039
874.681
953.298
1038.67
1130.35
1227.68
1329.82
1435.75
1544.34
1654.28
1764.15
1872.36
1977.15
2076.6
2168.69
2251.42
2322.99
2381.98
2427.51
2459.16
2477.04
2481.78
2474.56
2456.76
2429.9
2395.54
2355.21
2310.35
2262.29
2212.29
2161.29
2110.13
2059.27
2009.17
1960.3
1913.2
1868.37
1826.32
1787.51
1752.27
1720.81
1693.23
1669.51
1649.56
1633.21
1620.27
1610.5
1603.64
1599.41
1597.5
1597.61
1599.43
1602.59
1606.73
1611.42
1616.17
1620.5
1623.99
1626.04
1626.05
1623.63
1618.5
1610.57
1599.96
1586.9
1571.72
1554.71
1536.12
1516.12
1494.79
1472.16
1448.19
1422.8
1395.89
1367.36
1337.15
1305.26
1271.79
1236.95
1201.01
1164.25
1127.05
1089.74
1052.69
1016.27
980.801
946.523
913.634
882.272
852.536
824.486
798.161
773.572
750.632
729.195
709.162
690.453
672.981
656.662
641.413
627.157
613.82
601.333
589.635
578.669
568.384
558.733
549.676
541.176
533.199
525.715
518.696
512.117
505.955
500.189
494.796
489.699
300.307
300.144
299.98
299.816
299.653
299.489
299.326
299.163
299
298.838
298.675
298.513
298.352
298.19
298.03
297.869
297.709
297.549
297.39
297.232
297.073
296.916
296.758
296.601
296.445
296.289
296.134
295.979
295.824
295.67
295.517
295.364
295.211
295.059
294.907
294.756
294.606
294.455
294.306
294.157
294.009
293.861
293.714
293.569
293.424
293.28
293.138
292.998
292.859
292.722
292.587
292.456
292.327
292.201
292.079
291.962
291.85
291.744
291.643
291.549
291.462
291.383
291.311
291.246
291.189
291.14
291.097
291.061
291.033
291.016
291.01
291.019
291.043
291.084
291.143
291.22
291.316
291.433
291.57
291.729
291.911
292.116
292.345
292.599
292.88
293.19
293.528
293.897
294.297
294.728
295.191
295.687
296.216
296.78
297.379
298.013
298.683
299.391
300.138
300.924
301.752
302.624
303.544
304.517
305.551
306.656
307.848
309.147
310.583
312.197
314.028
316.127
318.629
321.639
325.158
329.233
333.988
339.56
345.95
353.196
361.364
370.5
380.535
391.478
403.392
416.313
430.264
445.238
460.995
477.19
493.778
510.707
527.92
545.339
562.811
580.158
597.378
614.403
631.151
647.533
663.458
678.835
693.572
707.656
721.154
733.959
745.972
757.088
767.035
776.216
784.631
792.23
798.968
804.803
809.703
813.64
816.594
818.55
819.504
819.456
818.414
816.393
813.413
809.502
804.693
799.023
792.535
785.276
777.293
768.641
759.373
749.545
739.218
728.479
717.5
706.295
694.884
683.293
671.554
659.699
647.766
635.794
623.815
611.828
599.867
587.974
576.19
564.549
553.049
541.565
530.193
519.018
508.103
497.488
487.197
477.259
467.706
458.561
449.822
441.449
433.443
425.829
418.61
411.786
405.362
399.339
393.74
388.615
383.93
379.657
375.772
372.253
369.078
366.23
363.695
361.464
359.535
357.914
356.612
355.656
355.08
354.938
355.3
356.259
357.935
360.476
364.071
368.941
375.339
383.509
393.665
406.156
421.481
440.076
462.385
488.864
519.978
556.23
598.146
646.234
700.953
762.54
831.125
907.008
990.185
1080.37
1177.06
1279.49
1386.74
1497.7
1611.1
1725.55
1839.47
1951.13
2058.62
2159.86
2252.7
2335.09
2405.2
2461.7
2503.84
2531.25
2544.28
2543.82
2531.19
2507.93
2475.65
2435.99
2390.5
2340.65
2287.75
2232.87
2176.89
2120.37
2063.78
2007.76
1952.97
1900.12
1849.94
1803.06
1760
1721.11
1686.6
1656.52
1630.8
1609.27
1591.72
1577.9
1567.55
1560.39
1556.15
1554.53
1555.24
1558
1562.52
1568.48
1575.54
1583.32
1591.4
1599.31
1606.64
1612.98
1617.6
1619.94
1619.52
1615.99
1609.22
1599.31
1586.55
1571.32
1554.02
1534.99
1514.49
1492.65
1469.55
1445.15
1419.39
1392.16
1363.38
1332.99
1301.03
1267.62
1232.96
1197.27
1160.88
1124.16
1087.42
1051
1015.27
980.505
946.948
914.778
884.124
855.073
827.681
801.981
778
755.644
734.753
715.209
696.93
679.838
663.854
648.901
634.909
621.81
609.542
598.048
587.275
577.176
567.71
558.839
550.527
542.744
535.461
528.651
522.292
516.361
510.833
505.622
300.175
300.007
299.839
299.671
299.503
299.335
299.166
298.998
298.829
298.661
298.492
298.324
298.155
297.987
297.819
297.651
297.483
297.315
297.148
296.98
296.813
296.645
296.478
296.311
296.145
295.978
295.811
295.645
295.479
295.313
295.147
294.981
294.815
294.65
294.484
294.319
294.154
293.989
293.825
293.661
293.497
293.333
293.17
293.008
292.846
292.685
292.525
292.366
292.209
292.053
291.899
291.746
291.597
291.449
291.306
291.165
291.029
290.897
290.77
290.649
290.534
290.426
290.325
290.231
290.146
290.069
290
289.94
289.889
289.846
289.812
289.789
289.778
289.78
289.797
289.83
289.879
289.946
290.031
290.134
290.257
290.4
290.563
290.748
290.956
291.187
291.443
291.725
292.032
292.365
292.725
293.113
293.528
293.971
294.443
294.944
295.474
296.034
296.623
297.243
297.894
298.576
299.29
300.038
300.821
301.641
302.502
303.408
304.368
305.39
306.487
307.675
308.981
310.436
312.067
313.908
316.026
318.551
321.501
324.871
328.689
333.031
338.01
343.627
349.862
356.729
364.245
372.418
381.151
390.348
400.011
410.156
420.782
431.875
443.352
454.902
466.461
477.979
489.402
500.674
511.739
522.541
533.012
543.064
552.615
561.649
570.121
577.944
585.12
591.851
598.116
603.894
609.164
613.907
618.108
621.751
624.824
627.317
629.224
630.54
631.264
631.398
630.947
629.918
628.322
626.172
623.485
620.278
616.573
612.394
607.766
602.718
597.277
591.468
585.294
578.79
571.995
564.946
557.68
550.234
542.645
534.946
527.12
519.096
510.953
502.76
494.574
486.442
478.407
470.496
462.745
455.184
447.834
440.694
433.753
427.027
420.546
414.333
408.396
402.742
397.379
392.309
387.539
383.12
379.06
375.336
371.926
368.812
365.977
363.406
361.084
359.001
357.15
355.525
354.13
352.971
352.062
351.426
351.097
351.12
351.558
352.49
354.019
356.277
359.426
363.664
369.232
376.403
385.454
396.626
410.258
426.892
447.011
471.089
499.61
533.075
572.006
616.968
668.532
727.046
792.8
865.944
946.78
1035.22
1130.91
1233.23
1341.34
1454.19
1570.55
1689.03
1808.09
1926.01
2040.87
2150.6
2252.96
2345.69
2426.67
2494.16
2546.96
2584.4
2606.38
2613.47
2606.87
2588.06
2558.71
2520.55
2475.26
2424.4
2369.34
2311.25
2251.01
2189.24
2126.48
2063.49
2001.04
1940.07
1881.51
1826.23
1774.95
1728.2
1686.28
1649.33
1617.32
1590.09
1567.4
1548.97
1534.51
1523.7
1516.26
1511.9
1510.32
1511.27
1514.48
1519.69
1526.63
1535.04
1544.6
1555
1565.84
1576.72
1587.26
1597.17
1605.82
1612.58
1616.86
1618.1
1615.91
1610.12
1600.82
1588.3
1573.01
1555.45
1536.02
1515.04
1492.72
1469.14
1444.3
1418.14
1390.57
1361.51
1330.94
1298.91
1265.53
1230.97
1195.52
1159.51
1123.24
1087.02
1051.2
1016.1
981.996
949.108
917.604
887.604
859.189
832.408
807.292
783.873
762.068
741.703
722.637
704.791
688.087
672.452
657.815
644.109
631.274
619.252
607.99
597.44
587.562
578.316
569.667
561.584
554.036
546.998
540.445
534.355
528.699
523.383
300.094
299.924
299.754
299.584
299.413
299.242
299.071
298.9
298.728
298.556
298.385
298.213
298.041
297.868
297.696
297.524
297.351
297.178
297.006
296.833
296.66
296.487
296.314
296.141
295.967
295.794
295.62
295.447
295.273
295.099
294.925
294.751
294.576
294.402
294.228
294.053
293.878
293.703
293.529
293.354
293.179
293.005
292.83
292.656
292.482
292.309
292.136
291.964
291.793
291.623
291.454
291.287
291.122
290.958
290.798
290.64
290.485
290.334
290.187
290.045
289.907
289.776
289.65
289.532
289.42
289.317
289.222
289.136
289.059
288.991
288.933
288.884
288.845
288.817
288.801
288.798
288.809
288.835
288.876
288.934
289.008
289.099
289.208
289.335
289.482
289.649
289.838
290.047
290.278
290.532
290.808
291.108
291.43
291.776
292.147
292.541
292.959
293.402
293.869
294.36
294.877
295.418
295.983
296.574
297.189
297.83
298.496
299.189
299.91
300.661
301.445
302.264
303.126
304.036
305.004
306.04
307.161
308.388
309.743
311.245
312.914
314.788
316.967
319.485
322.326
325.483
328.961
332.792
337.046
341.744
346.849
352.329
358.165
364.342
370.84
377.606
384.556
391.601
398.687
405.796
412.913
420.019
427.087
434.028
440.705
447.088
453.144
458.783
464.18
469.318
474.182
478.756
483.024
486.97
490.582
493.846
496.753
499.292
501.458
503.244
504.647
505.667
506.303
506.557
506.433
505.938
505.079
503.864
502.306
500.416
498.207
495.696
492.896
489.801
486.342
482.559
478.493
474.183
469.668
464.985
460.172
455.263
450.286
445.262
440.207
435.138
430.065
425.001
419.965
414.992
410.11
405.343
400.712
396.232
391.915
387.77
383.802
380.017
376.434
373.097
370.013
367.165
364.54
362.125
359.91
357.885
356.039
354.365
352.856
351.508
350.318
349.29
348.426
347.739
347.242
346.96
346.923
347.173
347.765
348.77
350.279
352.407
355.297
359.125
364.106
370.5
378.605
388.729
401.147
416.207
434.475
456.495
482.779
513.837
550.203
592.446
641.123
696.874
759.971
830.668
909.245
995.901
1090.46
1192.44
1301.13
1415.56
1534.53
1656.69
1780.48
1904.19
2025.92
2143.57
2254.85
2357.37
2448.79
2527
2590.41
2637.97
2669.17
2684.29
2684.22
2670.43
2644.6
2608.55
2564.03
2512.78
2456.21
2395.53
2331.6
2265.07
2196.56
2126.91
2057.01
1987.99
1921.01
1857.19
1797.47
1742.57
1692.94
1648.82
1610.19
1576.94
1548.8
1525.47
1506.6
1491.83
1480.82
1473.25
1468.82
1467.25
1468.28
1471.66
1477.17
1484.58
1493.66
1504.18
1515.88
1528.46
1541.58
1554.9
1568.06
1580.78
1592.74
1603.26
1611.71
1617.46
1619.93
1618.71
1613.59
1604.66
1592.26
1576.89
1559.06
1539.27
1517.86
1495.09
1471.05
1445.78
1419.22
1391.3
1361.97
1331.22
1299.1
1265.71
1231.26
1196.06
1160.4
1124.56
1088.85
1053.58
1019.08
985.587
953.318
922.427
893.026
865.19
838.966
814.38
791.471
770.172
750.304
731.701
714.282
697.97
682.694
668.389
654.993
642.446
630.698
619.7
609.41
599.791
590.807
582.427
574.618
567.357
560.616
554.374
548.598
543.186
300.039
299.867
299.696
299.524
299.352
299.18
299.007
298.834
298.661
298.487
298.314
298.139
297.965
297.791
297.616
297.441
297.265
297.09
296.914
296.738
296.561
296.385
296.208
296.031
295.853
295.675
295.497
295.319
295.14
294.961
294.782
294.602
294.422
294.242
294.061
293.88
293.699
293.517
293.336
293.154
292.972
292.789
292.607
292.425
292.243
292.061
291.879
291.698
291.517
291.337
291.158
290.98
290.804
290.629
290.456
290.285
290.117
289.952
289.79
289.632
289.478
289.329
289.185
289.046
288.914
288.789
288.671
288.561
288.46
288.367
288.284
288.21
288.147
288.094
288.052
288.02
288
287.992
287.998
288.017
288.051
288.1
288.164
288.244
288.34
288.454
288.586
288.737
288.906
289.093
289.301
289.528
289.775
290.041
290.328
290.636
290.964
291.312
291.681
292.07
292.479
292.909
293.359
293.829
294.318
294.828
295.356
295.904
296.471
297.058
297.663
298.289
298.936
299.604
300.295
301.012
301.758
302.538
303.356
304.218
305.132
306.106
307.156
308.296
309.537
310.888
312.358
313.963
315.758
317.788
320.049
322.521
325.186
328.032
331.05
334.24
337.619
341.201
344.966
348.88
352.905
357.009
361.162
365.328
369.471
373.551
377.502
381.38
385.19
388.904
392.496
395.937
399.206
402.285
405.158
407.816
410.249
412.451
414.414
416.134
417.607
418.829
419.799
420.515
420.978
421.191
421.156
420.878
420.363
419.617
418.647
417.462
416.069
414.477
412.689
410.715
408.568
406.264
403.823
401.265
398.613
395.885
393.104
390.288
387.457
384.63
381.822
379.049
376.323
373.651
371.04
368.499
366.042
363.694
361.487
359.427
357.507
355.719
354.056
352.515
351.092
349.781
348.579
347.481
346.486
345.59
344.792
344.095
343.5
343.013
342.644
342.403
342.308
342.381
342.653
343.162
343.959
345.106
346.687
348.802
351.579
355.178
359.792
365.656
373.052
382.305
393.758
407.725
424.577
444.906
469.324
498.375
532.607
572.581
618.911
672.229
733.018
801.654
878.303
963.361
1056.87
1158.53
1267.74
1383.63
1505.08
1630.73
1759.04
1888.29
2016.55
2141.7
2261.41
2373.21
2474.56
2563.06
2636.75
2694.23
2734.59
2757.75
2764.38
2755.79
2733.71
2700.02
2656.63
2605.31
2547.57
2484.71
2417.53
2346.66
2272.79
2196.81
2119.76
2042.9
1967.61
1895.25
1827.02
1763.83
1706.32
1654.82
1609.41
1569.96
1536.23
1507.87
1484.49
1465.68
1451.04
1440.18
1432.75
1428.44
1426.96
1428.06
1431.51
1437.11
1444.66
1453.98
1464.89
1477.18
1490.65
1505.03
1520.03
1535.34
1550.64
1565.66
1580.24
1593.81
1605.76
1615.43
1622.17
1625.4
1624.71
1619.9
1611.09
1598.66
1583.12
1565.03
1544.9
1523.1
1499.91
1475.46
1449.78
1422.84
1394.59
1365
1334.07
1301.85
1268.46
1234.15
1199.2
1163.89
1128.47
1093.24
1058.5
1024.56
991.637
959.939
929.607
900.747
873.429
847.696
823.575
801.115
780.271
760.864
742.7
725.695
709.774
694.867
680.911
667.844
655.612
644.168
633.471
623.482
614.167
605.492
597.427
589.945
583.02
576.631
570.741
565.235
299.996
299.824
299.652
299.479
299.306
299.133
298.959
298.785
298.611
298.436
298.261
298.085
297.91
297.733
297.557
297.38
297.203
297.025
296.847
296.669
296.49
296.311
296.132
295.952
295.771
295.591
295.409
295.228
295.046
294.863
294.68
294.497
294.313
294.128
293.944
293.758
293.573
293.387
293.2
293.013
292.826
292.639
292.451
292.263
292.076
291.888
291.7
291.512
291.325
291.138
290.952
290.767
290.583
290.4
290.218
290.039
289.861
289.685
289.513
289.343
289.177
289.015
288.857
288.704
288.556
288.414
288.278
288.149
288.027
287.913
287.808
287.711
287.624
287.547
287.48
287.424
287.378
287.343
287.319
287.307
287.307
287.32
287.347
287.387
287.442
287.512
287.597
287.698
287.814
287.948
288.098
288.265
288.449
288.65
288.868
289.104
289.357
289.628
289.916
290.222
290.544
290.884
291.241
291.614
292.004
292.409
292.831
293.267
293.719
294.186
294.667
295.162
295.67
296.193
296.728
297.277
297.84
298.417
299.009
299.616
300.24
300.883
301.547
302.236
302.951
303.697
304.478
305.296
306.159
307.075
308.049
309.086
310.187
311.352
312.58
313.873
315.25
316.734
318.335
320.039
321.83
323.686
325.589
327.521
329.464
331.396
333.315
335.253
337.201
339.15
341.092
343.017
344.917
346.78
348.591
350.338
352.007
353.586
355.063
356.427
357.669
358.783
359.761
360.6
361.295
361.847
362.254
362.518
362.643
362.632
362.492
362.229
361.851
361.367
360.784
360.11
359.354
358.523
357.624
356.665
355.652
354.593
353.497
352.372
351.234
350.098
348.984
347.911
346.887
345.914
344.989
344.113
343.284
342.504
341.774
341.093
340.462
339.881
339.349
338.867
338.433
338.05
337.717
337.437
337.212
337.048
336.949
336.924
336.984
337.141
337.414
337.825
338.402
339.182
340.211
341.547
343.265
345.457
348.24
351.756
356.184
361.739
368.681
377.321
388.016
401.148
417.069
436.192
459.149
486.615
519.175
557.403
601.917
653.325
712.357
779.356
854.681
938.572
1031.38
1132.98
1242.91
1360.4
1484.4
1613.6
1746.45
1881.19
2015.87
2148.31
2276.14
2396.78
2507.55
2605.82
2689.28
2756.17
2805.28
2836.16
2849.19
2845.55
2827.01
2795.51
2753.14
2701.73
2642.91
2577.91
2507.56
2432.49
2353.49
2271.44
2187.5
2103.06
2019.7
1938.96
1862.29
1790.82
1725.37
1666.42
1614.14
1568.45
1529.1
1495.73
1467.9
1445.15
1427.01
1413.02
1402.75
1395.82
1391.89
1390.68
1391.93
1395.44
1401.02
1408.51
1417.77
1428.65
1441.02
1454.73
1469.59
1485.4
1501.9
1518.82
1535.86
1552.8
1569.5
1585.58
1600.44
1613.44
1623.89
1631.16
1634.7
1634.12
1629.28
1620.35
1607.74
1591.96
1573.59
1553.13
1530.99
1507.43
1482.6
1456.54
1429.25
1400.71
1370.89
1339.79
1307.47
1274.13
1239.99
1205.32
1170.35
1135.34
1100.58
1066.36
1032.94
1000.56
969.381
939.555
911.176
884.31
858.995
835.271
813.189
792.741
773.751
755.996
739.392
723.86
709.33
695.735
683.015
671.122
660.015
649.654
640.004
631.031
622.704
614.997
607.881
601.336
595.321
589.709
299.962
299.79
299.617
299.443
299.27
299.096
298.921
298.746
298.571
298.395
298.219
298.043
297.866
297.688
297.511
297.332
297.154
296.975
296.795
296.615
296.435
296.254
296.072
295.89
295.708
295.525
295.342
295.158
294.973
294.788
294.603
294.417
294.23
294.043
293.855
293.667
293.478
293.289
293.1
292.909
292.719
292.528
292.337
292.145
291.954
291.762
291.57
291.378
291.187
290.995
290.804
290.614
290.424
290.236
290.048
289.862
289.678
289.496
289.315
289.138
288.963
288.791
288.623
288.459
288.3
288.145
287.995
287.852
287.714
287.583
287.46
287.344
287.236
287.137
287.048
286.968
286.898
286.839
286.79
286.752
286.724
286.707
286.702
286.709
286.728
286.76
286.806
286.865
286.938
287.026
287.127
287.244
287.375
287.521
287.682
287.857
288.049
288.255
288.476
288.711
288.962
289.227
289.507
289.801
290.108
290.429
290.763
291.11
291.47
291.842
292.225
292.619
293.024
293.439
293.864
294.298
294.741
295.192
295.652
296.119
296.594
297.077
297.567
298.064
298.57
299.084
299.606
300.138
300.68
301.234
301.8
302.38
302.974
303.583
304.208
304.849
305.505
306.18
306.874
307.587
308.317
309.061
309.817
310.579
311.342
312.099
312.87
313.653
314.448
315.253
316.07
316.899
317.739
318.588
319.442
320.296
321.143
321.977
322.792
323.582
324.339
325.06
325.738
326.371
326.953
327.484
327.96
328.382
328.749
329.063
329.326
329.54
329.712
329.843
329.941
330.009
330.051
330.072
330.074
330.059
330.03
329.988
329.937
329.877
329.813
329.746
329.68
329.617
329.56
329.511
329.471
329.443
329.428
329.427
329.441
329.472
329.52
329.587
329.676
329.788
329.927
330.096
330.3
330.544
330.836
331.185
331.602
332.101
332.699
333.419
334.287
335.338
336.616
338.174
340.081
342.423
345.306
348.865
353.263
358.701
365.425
373.725
383.949
396.494
411.784
430.211
452.255
478.603
509.99
547.032
590.354
640.585
698.46
764.485
839.134
922.604
1015.34
1117.44
1228.59
1348.13
1475.08
1608.16
1745.82
1886.27
2027.5
2167.26
2303.09
2432.3
2552.06
2659.52
2752.1
2827.68
2884.77
2922.58
2941.24
2941.85
2926.12
2896.2
2854.22
2802.13
2741.77
2674.22
2600.33
2520.83
2436.57
2348.48
2257.79
2166.02
2074.85
1986.03
1901.16
1821.59
1748.33
1682
1622.89
1571.02
1526.14
1487.91
1455.84
1429.41
1408.07
1391.27
1378.51
1369.31
1363.27
1360.02
1359.28
1360.81
1364.41
1369.93
1377.23
1386.2
1396.74
1408.77
1422.19
1436.9
1452.76
1469.59
1487.2
1505.35
1523.8
1542.33
1560.81
1579.03
1596.41
1612.31
1626.04
1636.93
1644.36
1647.83
1647.03
1641.9
1632.66
1619.74
1603.66
1585
1564.24
1541.79
1517.9
1492.74
1466.36
1438.79
1410
1379.97
1348.72
1316.38
1283.13
1249.2
1214.82
1180.21
1145.62
1111.33
1077.61
1044.69
1012.81
982.114
952.745
924.789
898.307
873.344
849.943
828.165
808.045
789.419
772.048
755.831
740.684
726.528
713.293
700.927
689.387
678.631
668.622
659.325
650.708
642.743
635.401
628.664
622.484
616.721
299.935
299.762
299.588
299.414
299.24
299.066
298.89
298.715
298.539
298.362
298.185
298.008
297.83
297.652
297.473
297.294
297.114
296.934
296.753
296.572
296.39
296.208
296.025
295.842
295.658
295.473
295.288
295.103
294.916
294.73
294.542
294.354
294.166
293.977
293.787
293.597
293.406
293.215
293.023
292.831
292.638
292.445
292.251
292.058
291.863
291.669
291.475
291.28
291.086
290.891
290.697
290.504
290.311
290.118
289.927
289.737
289.548
289.361
289.175
288.992
288.811
288.633
288.458
288.286
288.117
287.953
287.794
287.639
287.489
287.345
287.208
287.077
286.953
286.836
286.728
286.627
286.536
286.454
286.382
286.32
286.268
286.226
286.194
286.172
286.161
286.162
286.174
286.198
286.234
286.282
286.343
286.416
286.502
286.601
286.714
286.839
286.977
287.128
287.293
287.47
287.66
287.862
288.077
288.304
288.543
288.793
289.055
289.328
289.611
289.904
290.207
290.519
290.84
291.169
291.506
291.85
292.201
292.558
292.921
293.289
293.661
294.038
294.419
294.802
295.189
295.578
295.97
296.363
296.758
297.155
297.553
297.953
298.353
298.755
299.158
299.563
299.967
300.373
300.779
301.186
301.592
301.998
302.402
302.803
303.199
303.594
303.991
304.39
304.791
305.194
305.599
306.006
306.414
306.824
307.235
307.648
308.061
308.474
308.886
309.297
309.706
310.111
310.512
310.908
311.298
311.683
312.06
312.431
312.794
313.149
313.498
313.839
314.174
314.502
314.825
315.143
315.458
315.77
316.08
316.389
316.698
317.007
317.318
317.631
317.946
318.265
318.587
318.915
319.248
319.587
319.933
320.287
320.65
321.023
321.408
321.806
322.221
322.654
323.109
323.589
324.101
324.65
325.244
325.891
326.603
327.394
328.281
329.284
330.431
331.754
333.294
335.103
337.246
339.802
342.875
346.589
351.101
356.601
363.324
371.55
381.613
393.905
408.871
426.992
448.692
474.55
505.337
541.822
584.663
634.511
692.095
758.045
832.866
916.923
1010.51
1114
1227.21
1349.59
1480.22
1617.86
1760.95
1907.64
2055.85
2203.22
2347.15
2484.82
2613.22
2729.3
2830.19
2913.48
2977.41
3020.87
3043.91
3047.46
3033.3
3003.7
2960.87
2907.07
2843.94
2772.71
2694.29
2609.58
2519.48
2425.01
2327.5
2228.51
2129.83
2033.3
1940.64
1853.37
1772.63
1699.21
1633.52
1575.68
1525.54
1482.74
1446.8
1417.1
1393.02
1373.91
1359.15
1348.18
1340.5
1335.68
1333.37
1333.28
1335.19
1338.92
1344.34
1351.35
1359.87
1369.84
1381.21
1393.92
1407.94
1423.19
1439.58
1456.99
1475.26
1494.23
1513.7
1533.49
1553.48
1573.56
1593.2
1611.77
1628.55
1642.84
1653.96
1661.33
1664.54
1663.36
1657.81
1648.16
1634.87
1618.47
1599.53
1578.51
1555.8
1531.65
1506.22
1479.6
1451.81
1422.82
1392.63
1361.32
1329.02
1295.93
1262.25
1228.19
1193.96
1159.82
1126
1092.77
1060.35
1028.94
998.704
969.754
942.172
916.023
891.351
868.204
846.651
826.783
808.451
791.433
775.575
760.777
746.955
734.047
722.005
710.786
700.347
690.652
681.667
673.364
665.714
658.7
652.269
646.265
299.913
299.74
299.566
299.391
299.217
299.041
298.866
298.69
298.513
298.336
298.158
297.98
297.802
297.623
297.443
297.263
297.082
296.901
296.72
296.537
296.355
296.171
295.987
295.803
295.618
295.433
295.246
295.06
294.872
294.684
294.496
294.307
294.117
293.927
293.736
293.544
293.352
293.16
292.967
292.773
292.579
292.384
292.189
291.994
291.798
291.603
291.407
291.21
291.014
290.818
290.622
290.427
290.232
290.037
289.844
289.651
289.459
289.269
289.08
288.893
288.708
288.525
288.344
288.167
287.993
287.822
287.654
287.491
287.333
287.179
287.031
286.888
286.751
286.62
286.497
286.38
286.272
286.171
286.078
285.995
285.92
285.856
285.801
285.755
285.719
285.693
285.676
285.669
285.673
285.688
285.714
285.751
285.799
285.859
285.929
286.012
286.105
286.21
286.326
286.453
286.591
286.741
286.901
287.071
287.252
287.443
287.643
287.853
288.072
288.299
288.535
288.779
289.029
289.287
289.551
289.821
290.096
290.376
290.66
290.948
291.24
291.534
291.83
292.129
292.428
292.729
293.029
293.33
293.63
293.929
294.227
294.523
294.818
295.11
295.4
295.687
295.971
296.252
296.53
296.804
297.075
297.342
297.604
297.863
298.116
298.367
298.616
298.865
299.112
299.359
299.605
299.852
300.099
300.346
300.595
300.845
301.096
301.35
301.606
301.865
302.128
302.394
302.664
302.939
303.219
303.504
303.795
304.092
304.395
304.706
305.024
305.35
305.684
306.027
306.378
306.739
307.11
307.49
307.881
308.282
308.695
309.118
309.553
310
310.459
310.93
311.413
311.91
312.421
312.946
313.487
314.045
314.62
315.216
315.834
316.476
317.148
317.851
318.592
319.377
320.212
321.108
322.074
323.126
324.279
325.554
326.978
328.582
330.406
332.501
334.93
337.771
341.123
345.109
349.88
355.623
362.566
370.985
381.21
393.628
408.691
426.898
448.785
474.858
505.793
542.472
585.685
636.1
694.442
761.432
837.603
923.426
1019.2
1125.38
1241.93
1368.39
1503.89
1647.2
1796.73
1950.57
2106.51
2262.06
2414.44
2560.63
2697.4
2821.43
2929.62
3019.3
3088.4
3135.73
3161.17
3165.69
3151.17
3119.88
3074.38
3016.85
2948.97
2872.12
2787.44
2696.04
2598.92
2497.29
2392.58
2286.39
2180.48
2076.7
1976.84
1882.46
1794.84
1714.88
1643.13
1579.82
1524.9
1478.06
1438.8
1406.45
1380.27
1359.49
1343.38
1331.26
1322.54
1316.71
1313.36
1312.16
1312.83
1315.18
1319.06
1324.36
1331.01
1338.97
1348.19
1358.66
1370.37
1383.29
1397.42
1412.72
1429.14
1446.61
1465.02
1484.27
1504.24
1524.82
1545.93
1567.51
1589.11
1610.14
1629.86
1647.53
1662.4
1673.8
1681.18
1684.2
1682.7
1676.77
1666.76
1653.15
1636.52
1617.37
1596.19
1573.32
1549.01
1523.44
1496.69
1468.76
1439.66
1409.41
1378.13
1345.97
1313.11
1279.74
1246.05
1212.26
1178.58
1145.25
1112.52
1080.6
1049.67
1019.88
991.323
964.088
938.231
913.796
890.833
869.42
849.685
831.528
814.777
799.169
784.601
770.997
758.302
746.467
735.446
725.201
715.696
706.904
698.795
691.355
684.525
678.134
299.897
299.723
299.549
299.374
299.199
299.023
298.847
298.671
298.494
298.316
298.138
297.959
297.78
297.601
297.42
297.24
297.059
296.877
296.694
296.512
296.328
296.144
295.96
295.775
295.589
295.403
295.216
295.028
294.84
294.651
294.462
294.272
294.082
293.891
293.699
293.507
293.314
293.121
292.927
292.733
292.538
292.343
292.148
291.952
291.755
291.559
291.362
291.165
290.969
290.772
290.575
290.379
290.183
289.987
289.792
289.598
289.405
289.213
289.022
288.832
288.644
288.459
288.275
288.094
287.915
287.739
287.567
287.398
287.232
287.071
286.915
286.763
286.616
286.475
286.34
286.21
286.088
285.972
285.863
285.763
285.669
285.585
285.509
285.441
285.384
285.335
285.295
285.264
285.241
285.228
285.224
285.23
285.246
285.272
285.308
285.353
285.409
285.474
285.55
285.635
285.73
285.834
285.948
286.07
286.202
286.342
286.491
286.648
286.812
286.984
287.163
287.348
287.539
287.737
287.939
288.146
288.358
288.573
288.792
289.013
289.237
289.462
289.689
289.917
290.145
290.374
290.601
290.828
291.053
291.277
291.498
291.717
291.933
292.145
292.355
292.56
292.762
292.96
293.153
293.343
293.527
293.708
293.884
294.054
294.221
294.387
294.549
294.711
294.871
295.03
295.189
295.348
295.507
295.668
295.831
295.996
296.164
296.336
296.512
296.693
296.879
297.073
297.273
297.482
297.699
297.927
298.165
298.414
298.676
298.95
299.238
299.541
299.859
300.192
300.542
300.909
301.293
301.696
302.117
302.558
303.018
303.499
304
304.523
305.068
305.636
306.227
306.843
307.485
308.153
308.851
309.579
310.34
311.138
311.975
312.856
313.786
314.772
315.82
316.941
318.146
319.448
320.865
322.418
324.133
326.043
328.189
330.62
333.402
336.613
340.353
344.744
349.94
356.129
363.54
372.45
383.194
396.165
411.824
430.69
453.347
480.352
512.384
550.221
594.859
647.028
707.52
776.978
856.03
945.242
1044.93
1155.57
1277.25
1409.56
1551.66
1702.28
1859.77
2022.11
2186.94
2351.57
2512.96
2667.83
2812.64
2943.78
3057.88
3152.06
3224.04
3272.54
3297.54
3300.17
3282.29
3246.57
3195.47
3131.17
3055.55
2970.25
2876.81
2776.47
2670.57
2560.53
2447.84
2334.18
2221.37
2111.08
2004.85
1904.25
1810.62
1724.97
1648
1580.08
1521.25
1471.26
1429.56
1395.44
1368.02
1346.41
1329.74
1317.21
1308.14
1301.95
1298.17
1296.42
1296.39
1297.87
1300.68
1304.7
1309.86
1316.11
1323.43
1331.81
1341.25
1351.76
1363.34
1376.01
1389.78
1404.64
1420.57
1437.54
1455.5
1474.39
1494.18
1514.83
1536.36
1558.76
1581.71
1604.67
1626.97
1647.86
1666.57
1682.29
1694.34
1702.15
1705.35
1703.84
1697.82
1687.71
1674.04
1657.38
1638.26
1617.12
1594.3
1570.06
1544.54
1517.83
1489.93
1460.87
1430.74
1399.66
1367.77
1335.26
1302.3
1269.06
1235.75
1202.59
1169.8
1137.6
1106.19
1075.74
1046.37
1018.19
991.264
965.648
941.377
918.5
897.095
877.296
859.108
842.357
826.757
812.171
798.544
785.823
773.957
762.907
752.636
743.119
734.325
726.242
718.807
711.836
299.887
299.713
299.538
299.364
299.188
299.012
298.836
298.659
298.481
298.303
298.125
297.946
297.767
297.587
297.406
297.225
297.043
296.861
296.678
296.495
296.311
296.127
295.942
295.756
295.57
295.384
295.196
295.009
294.82
294.631
294.442
294.252
294.061
293.87
293.678
293.486
293.293
293.099
292.905
292.711
292.516
292.321
292.126
291.93
291.733
291.537
291.34
291.144
290.947
290.75
290.553
290.357
290.161
289.965
289.77
289.575
289.381
289.189
288.997
288.806
288.617
288.43
288.244
288.061
287.879
287.701
287.525
287.352
287.182
287.016
286.854
286.695
286.542
286.393
286.249
286.11
285.977
285.85
285.729
285.615
285.508
285.407
285.315
285.23
285.153
285.085
285.025
284.974
284.931
284.897
284.87
284.851
284.84
284.839
284.846
284.862
284.887
284.92
284.962
285.013
285.072
285.14
285.216
285.299
285.391
285.49
285.596
285.709
285.829
285.955
286.087
286.224
286.367
286.514
286.665
286.821
286.98
287.142
287.306
287.472
287.64
287.809
287.979
288.148
288.318
288.486
288.654
288.82
288.983
289.145
289.304
289.459
289.612
289.76
289.905
290.046
290.182
290.313
290.441
290.563
290.681
290.794
290.901
291.004
291.105
291.202
291.298
291.392
291.485
291.577
291.67
291.764
291.859
291.956
292.056
292.16
292.268
292.381
292.501
292.627
292.762
292.905
293.058
293.222
293.399
293.588
293.792
294.011
294.246
294.499
294.771
295.062
295.374
295.707
296.064
296.444
296.849
297.28
297.738
298.223
298.738
299.282
299.858
300.466
301.107
301.784
302.497
303.25
304.042
304.878
305.76
306.691
307.676
308.719
309.826
311.004
312.261
313.607
315.055
316.62
318.32
320.177
322.22
324.484
327.011
329.856
333.085
336.782
341.051
346.022
351.853
358.74
366.922
376.69
388.39
402.434
419.302
439.542
463.774
492.63
526.815
567.133
614.578
670.049
734.425
808.28
892.299
987.03
1092.93
1210.42
1339.69
1480.33
1631.44
1791.7
1959.31
2132.08
2307.42
2482.35
2653.51
2817.21
2969.52
3106.49
3224.4
3320.31
3391.69
3437.52
3458
3454.39
3429.13
3384.69
3323.54
3248.07
3160.53
3063.03
2957.34
2845.21
2728.27
2608.01
2486.22
2364.63
2244.75
2128.36
2017.17
1912.07
1813.75
1723.64
1642.73
1571.55
1510.25
1458.55
1415.86
1381.29
1353.86
1332.53
1316.32
1304.31
1295.75
1289.97
1286.46
1284.81
1284.7
1285.87
1288.16
1291.43
1295.6
1300.61
1306.44
1313.09
1320.58
1328.94
1338.19
1348.33
1359.4
1371.42
1384.42
1398.41
1413.39
1429.35
1446.29
1464.19
1483.07
1502.98
1523.98
1546.16
1569.39
1593.21
1617.07
1640.38
1662.4
1682.37
1699.46
1712.87
1721.83
1725.94
1725.16
1719.75
1710.18
1697.03
1680.88
1662.28
1641.65
1619.34
1595.59
1570.54
1544.24
1516.75
1488.12
1458.47
1427.91
1396.61
1364.7
1332.37
1299.78
1267.12
1234.6
1202.43
1170.82
1139.93
1109.94
1080.95
1053.07
1026.36
1000.85
976.584
953.586
931.941
911.744
893.142
875.99
859.951
844.939
830.902
817.789
805.558
794.172
783.605
773.826
764.823
756.526
748.743
299.883
299.709
299.535
299.36
299.184
299.008
298.831
298.654
298.477
298.299
298.12
297.941
297.761
297.581
297.4
297.219
297.037
296.855
296.672
296.489
296.305
296.12
295.935
295.75
295.563
295.377
295.189
295.002
294.813
294.624
294.435
294.245
294.054
293.863
293.672
293.48
293.287
293.094
292.9
292.706
292.512
292.317
292.122
291.927
291.731
291.536
291.34
291.144
290.947
290.751
290.555
290.359
290.164
289.969
289.774
289.58
289.386
289.194
289.002
288.812
288.623
288.435
288.249
288.064
287.882
287.702
287.524
287.349
287.177
287.008
286.842
286.68
286.522
286.368
286.218
286.073
285.934
285.799
285.67
285.546
285.429
285.318
285.213
285.116
285.025
284.942
284.866
284.799
284.739
284.688
284.644
284.608
284.579
284.557
284.543
284.536
284.538
284.547
284.563
284.588
284.62
284.659
284.705
284.759
284.819
284.886
284.96
285.039
285.124
285.215
285.31
285.411
285.515
285.624
285.736
285.852
285.97
286.09
286.212
286.336
286.46
286.585
286.71
286.835
286.958
287.081
287.202
287.321
287.437
287.551
287.661
287.768
287.872
287.971
288.066
288.157
288.243
288.325
288.401
288.473
288.54
288.602
288.658
288.712
288.762
288.809
288.855
288.899
288.942
288.985
289.028
289.073
289.12
289.171
289.225
289.284
289.349
289.421
289.501
289.59
289.689
289.799
289.922
290.059
290.211
290.38
290.566
290.773
291
291.249
291.522
291.821
292.146
292.5
292.883
293.298
293.746
294.228
294.747
295.303
295.899
296.536
297.217
297.944
298.719
299.544
300.422
301.357
302.352
303.411
304.54
305.743
307.028
308.403
309.877
311.462
313.173
315.026
317.041
319.246
321.67
324.353
327.343
330.698
334.493
338.82
343.79
349.546
356.259
364.141
373.449
384.497
397.657
413.371
432.155
454.598
481.366
513.165
550.755
595.031
647.001
707.671
778.044
858.62
950.117
1053.05
1167.93
1295.29
1435.28
1587.39
1750.61
1923.43
2103.85
2289.4
2477.13
2663.64
2845.1
3017.31
3175.82
3316.28
3434.79
3528.22
3594.2
3632.22
3642.79
3627.92
3589.77
3530.91
3454.11
3362.25
3258.12
3144.2
3022.91
2896.39
2766.45
2635.07
2503.96
2374.08
2247.83
2126.66
2012
1904.75
1804.79
1711.68
1627.9
1554.79
1492.47
1440.57
1398.29
1364.59
1338.29
1318.25
1303.36
1292.66
1285.31
1280.61
1278
1277.02
1277.35
1278.73
1280.98
1283.97
1287.61
1291.86
1296.68
1302.07
1308.05
1314.65
1321.93
1329.94
1338.68
1348.18
1358.48
1369.62
1381.63
1394.53
1408.33
1423.04
1438.68
1455.26
1472.85
1491.52
1511.34
1532.44
1554.83
1578.12
1601.91
1625.8
1649.28
1671.78
1692.63
1711.04
1725.83
1736.13
1741.53
1741.93
1737.54
1728.87
1716.57
1701.24
1683.43
1663.6
1642.06
1619.04
1594.65
1568.97
1542.07
1514.07
1485.07
1455.2
1424.61
1393.45
1361.87
1330.04
1298.15
1266.38
1234.95
1204.03
1173.8
1144.39
1115.91
1088.46
1062.08
1036.8
1012.63
989.605
967.779
947.231
928.154
910.342
893.634
877.991
863.369
849.726
837.023
825.231
814.316
804.27
795.012
786.332
299.886
299.712
299.537
299.362
299.186
299.01
298.834
298.657
298.479
298.301
298.122
297.943
297.763
297.583
297.403
297.221
297.04
296.858
296.675
296.491
296.308
296.123
295.938
295.753
295.567
295.381
295.194
295.006
294.818
294.629
294.44
294.251
294.061
293.87
293.679
293.488
293.296
293.103
292.911
292.718
292.524
292.33
292.136
291.942
291.748
291.553
291.358
291.163
290.968
290.774
290.579
290.384
290.19
289.996
289.803
289.61
289.418
289.227
289.036
288.847
288.659
288.472
288.286
288.103
287.921
287.741
287.563
287.388
287.215
287.045
286.878
286.715
286.555
286.398
286.246
286.098
285.954
285.815
285.68
285.551
285.428
285.31
285.198
285.092
284.992
284.899
284.813
284.734
284.662
284.597
284.541
284.491
284.449
284.414
284.386
284.364
284.349
284.34
284.339
284.344
284.356
284.375
284.4
284.432
284.469
284.513
284.562
284.617
284.676
284.74
284.809
284.882
284.959
285.039
285.122
285.208
285.296
285.386
285.477
285.569
285.662
285.754
285.847
285.938
286.029
286.118
286.205
286.29
286.373
286.452
286.529
286.601
286.671
286.736
286.797
286.853
286.905
286.953
286.996
287.034
287.068
287.097
287.122
287.145
287.165
287.183
287.2
287.215
287.23
287.245
287.261
287.279
287.3
287.325
287.356
287.392
287.437
287.49
287.553
287.627
287.714
287.816
287.933
288.067
288.22
288.394
288.59
288.81
289.056
289.329
289.633
289.968
290.337
290.742
291.184
291.667
292.191
292.761
293.377
294.043
294.762
295.535
296.367
297.261
298.219
299.248
300.35
301.532
302.799
304.159
305.619
307.188
308.88
310.706
312.683
314.83
317.173
319.738
322.563
325.69
329.172
333.076
337.482
342.491
348.227
354.843
362.525
371.503
382.054
394.514
409.283
426.836
447.724
472.579
502.114
537.097
578.351
626.877
683.716
749.963
826.691
914.344
1013.69
1125.2
1249.4
1386.98
1538.01
1701.88
1877.48
2063.1
2256.52
2454.98
2655.17
2853.26
3044.94
3225.48
3389.93
3533.66
3652.7
3743.39
3804.11
3834.38
3835.39
3808.7
3756.55
3681.78
3587.62
3477.56
3354.93
3223.04
3084.86
2942.83
2799.46
2656.74
2515.54
2378.42
2246.9
2122.64
2006.19
1897.32
1796.23
1702.38
1615.71
1539.57
1475.75
1423.43
1381.49
1348.67
1323.61
1305.01
1291.66
1282.5
1276.64
1273.33
1271.95
1272.02
1273.17
1275.14
1277.75
1280.84
1284.34
1288.21
1292.43
1297.03
1301.97
1307.3
1313.07
1319.32
1326.11
1333.5
1341.52
1350.21
1359.61
1369.76
1380.71
1392.47
1405.08
1418.54
1432.91
1448.22
1464.53
1481.95
1500.55
1520.4
1541.54
1563.64
1586.4
1609.53
1632.72
1655.57
1677.63
1698.39
1716.95
1732.37
1743.77
1750.57
1752.3
1749.19
1741.75
1730.59
1716.35
1699.61
1680.8
1660.24
1638.12
1614.56
1589.67
1563.55
1536.32
1508.1
1479.03
1449.24
1418.88
1388.1
1357.07
1325.96
1294.96
1264.26
1234.01
1204.39
1175.51
1147.48
1120.37
1094.22
1069.05
1044.86
1021.68
999.514
978.456
958.652
940.072
922.672
906.404
891.226
877.094
863.977
851.84
840.674
830.395
820.787
299.894
299.72
299.545
299.37
299.195
299.019
298.842
298.665
298.488
298.31
298.132
297.953
297.773
297.593
297.413
297.232
297.051
296.869
296.686
296.504
296.32
296.136
295.952
295.767
295.582
295.396
295.209
295.023
294.835
294.648
294.459
294.271
294.082
293.892
293.702
293.512
293.322
293.131
292.939
292.748
292.556
292.364
292.172
291.979
291.787
291.594
291.401
291.209
291.016
290.824
290.631
290.439
290.248
290.056
289.866
289.676
289.486
289.298
289.11
288.923
288.738
288.554
288.371
288.19
288.01
287.833
287.658
287.484
287.314
287.145
286.98
286.818
286.659
286.503
286.351
286.203
286.059
285.919
285.783
285.653
285.527
285.406
285.291
285.182
285.078
284.98
284.888
284.803
284.724
284.652
284.587
284.529
284.477
284.434
284.397
284.366
284.342
284.324
284.311
284.305
284.304
284.31
284.322
284.339
284.362
284.39
284.423
284.461
284.503
284.55
284.601
284.656
284.713
284.774
284.838
284.903
284.971
285.04
285.11
285.181
285.253
285.324
285.395
285.465
285.534
285.601
285.667
285.73
285.791
285.85
285.905
285.957
286.006
286.051
286.092
286.13
286.163
286.191
286.216
286.237
286.253
286.266
286.277
286.286
286.293
286.299
286.305
286.31
286.316
286.324
286.335
286.349
286.368
286.393
286.425
286.465
286.515
286.577
286.651
286.739
286.843
286.964
287.104
287.265
287.449
287.658
287.895
288.161
288.459
288.791
289.159
289.567
290.017
290.511
291.053
291.645
292.29
292.993
293.755
294.582
295.477
296.444
297.489
298.616
299.831
301.141
302.552
304.075
305.718
307.493
309.413
311.494
313.755
316.218
318.912
321.867
325.126
328.736
332.757
337.263
342.343
348.108
354.693
362.266
371.029
381.229
393.167
407.202
423.764
443.358
466.578
494.091
526.661
565.114
610.334
663.435
725.501
797.817
881.256
976.359
1083.89
1204.31
1338.15
1486.22
1648.53
1824.38
2012.52
2211.08
2417.59
2628.98
2841.59
3051.13
3252.79
3441.32
3611.49
3758.33
3877.48
3965.7
4021.37
4044.51
4035.79
3996.6
3929.42
3837.39
3724.41
3594.64
3452.34
3301.52
3145.55
2987.71
2830.71
2675.63
2525.33
2381.63
2246.12
2119.42
2001.11
1891.67
1789.91
1695.2
1607.33
1528.55
1461.59
1407.89
1365.69
1333.31
1309.19
1291.91
1280.13
1272.69
1268.57
1266.94
1267.13
1268.61
1270.99
1273.96
1277.31
1280.91
1284.71
1288.61
1292.62
1296.75
1301.02
1305.48
1310.16
1315.11
1320.39
1326.06
1332.18
1338.8
1345.97
1353.75
1362.18
1371.3
1381.17
1391.8
1403.25
1415.53
1428.71
1442.83
1457.95
1474.17
1491.54
1510.11
1529.87
1550.57
1571.96
1593.81
1615.88
1637.88
1659.46
1680.32
1699.96
1717.73
1733.03
1744.96
1752.63
1755.69
1754.06
1748.08
1738.35
1725.45
1709.96
1692.31
1672.83
1651.71
1629.1
1605.12
1579.88
1553.52
1526.16
1497.91
1468.93
1439.35
1409.32
1379.01
1348.59
1318.23
1288.11
1258.38
1229.19
1200.65
1172.86
1145.88
1119.74
1094.48
1070.11
1046.56
1023.81
1002.26
982.016
963.027
945.251
928.651
913.185
898.827
885.544
873.336
862.118
851.683
299.908
299.734
299.56
299.385
299.21
299.035
298.859
298.682
298.505
298.328
298.15
297.972
297.793
297.614
297.434
297.254
297.073
296.892
296.711
296.529
296.346
296.164
295.98
295.797
295.613
295.428
295.243
295.058
294.873
294.687
294.5
294.314
294.127
293.94
293.752
293.564
293.377
293.188
293
292.812
292.623
292.434
292.245
292.057
291.868
291.679
291.491
291.303
291.114
290.927
290.739
290.552
290.366
290.18
289.994
289.81
289.626
289.443
289.262
289.081
288.902
288.724
288.547
288.372
288.199
288.028
287.859
287.692
287.528
287.366
287.206
287.05
286.897
286.747
286.6
286.457
286.318
286.183
286.051
285.925
285.803
285.685
285.573
285.465
285.363
285.267
285.176
285.091
285.012
284.939
284.873
284.813
284.76
284.713
284.673
284.64
284.613
284.592
284.578
284.568
284.564
284.566
284.572
284.584
284.601
284.623
284.649
284.68
284.715
284.754
284.796
284.841
284.89
284.941
284.995
285.051
285.109
285.168
285.228
285.289
285.35
285.411
285.472
285.533
285.592
285.65
285.707
285.762
285.815
285.866
285.914
285.96
286.002
286.04
286.075
286.105
286.132
286.155
286.175
286.191
286.205
286.218
286.229
286.239
286.249
286.26
286.272
286.285
286.302
286.322
286.348
286.38
286.419
286.468
286.527
286.598
286.683
286.784
286.901
287.036
287.19
287.366
287.564
287.788
288.04
288.323
288.638
288.989
289.38
289.812
290.288
290.814
291.391
292.024
292.716
293.472
294.295
295.191
296.165
297.221
298.367
299.608
300.952
302.406
303.98
305.685
307.532
309.534
311.707
314.071
316.647
319.461
322.544
325.935
329.678
333.829
338.455
343.638
349.477
356.095
363.641
372.297
382.283
393.868
407.374
423.189
441.772
463.663
489.493
519.968
555.913
598.186
647.759
705.84
773.562
852.41
943.065
1046.11
1162.16
1291.84
1435.65
1594.52
1768.36
1956.4
2157.23
2368.81
2588.45
2812.77
3037.69
3258.52
3469.96
3666.28
3841.95
3991.8
4111.16
4197.02
4248.16
4264.09
4244.99
4192.39
4108.71
3997.92
3864.64
3714.03
3551.17
3380.65
3206.62
3032.79
2861.07
2694.54
2535.58
2386.13
2246.99
2117.53
1998.09
1887.09
1783.71
1687.85
1599.17
1518.84
1449.75
1393.52
1349.97
1317.27
1293.66
1277.48
1267.25
1261.64
1259.55
1260.02
1262.26
1265.63
1269.71
1274.18
1278.8
1283.4
1287.9
1292.26
1296.48
1300.58
1304.6
1308.58
1312.56
1316.61
1320.79
1325.15
1329.76
1334.68
1339.99
1345.73
1351.96
1358.75
1366.14
1374.19
1382.94
1392.43
1402.71
1413.82
1425.8
1438.73
1452.64
1467.58
1483.61
1500.77
1519.06
1538.25
1558.14
1578.56
1599.29
1620.09
1640.68
1660.73
1679.87
1697.75
1714.12
1728.35
1739.84
1747.88
1751.87
1751.62
1747.23
1739
1727.57
1713.4
1696.94
1678.53
1658.42
1636.77
1613.71
1589.37
1563.85
1537.28
1509.78
1481.48
1452.53
1423.08
1393.3
1363.35
1333.4
1303.62
1274.16
1245.16
1216.74
1189
1162.02
1135.82
1110.41
1085.71
1061.87
1039.24
1017.86
997.727
978.816
961.113
944.589
929.238
915.035
901.999
890.055
879.021
299.931
299.758
299.585
299.411
299.237
299.063
298.888
298.713
298.537
298.361
298.185
298.008
297.831
297.653
297.475
297.297
297.118
296.939
296.76
296.581
296.401
296.221
296.04
295.86
295.679
295.498
295.317
295.135
294.953
294.772
294.59
294.408
294.226
294.043
293.861
293.679
293.497
293.315
293.133
292.951
292.769
292.588
292.406
292.226
292.045
291.865
291.685
291.505
291.327
291.148
290.971
290.794
290.618
290.443
290.269
290.096
289.924
289.753
289.583
289.415
289.248
289.083
288.92
288.758
288.599
288.441
288.285
288.132
287.982
287.834
287.688
287.546
287.406
287.27
287.137
287.007
286.881
286.759
286.641
286.527
286.417
286.312
286.211
286.115
286.024
285.937
285.856
285.781
285.711
285.647
285.589
285.537
285.491
285.451
285.417
285.39
285.369
285.354
285.345
285.342
285.344
285.352
285.364
285.382
285.404
285.43
285.461
285.496
285.535
285.577
285.623
285.671
285.723
285.777
285.833
285.891
285.951
286.013
286.075
286.139
286.203
286.267
286.331
286.396
286.459
286.522
286.584
286.644
286.703
286.758
286.811
286.861
286.908
286.951
286.992
287.029
287.064
287.096
287.125
287.154
287.182
287.211
287.24
287.269
287.301
287.336
287.374
287.416
287.465
287.52
287.583
287.657
287.741
287.838
287.95
288.079
288.226
288.394
288.586
288.804
289.048
289.319
289.618
289.947
290.31
290.711
291.151
291.636
292.168
292.752
293.392
294.091
294.856
295.691
296.6
297.591
298.669
299.84
301.113
302.495
303.994
305.621
307.387
309.304
311.387
313.652
316.117
318.805
321.741
324.957
328.487
332.376
336.675
341.446
346.767
352.727
359.44
367.039
375.69
385.592
396.985
410.16
425.466
443.319
464.208
488.712
517.5
551.32
591.05
637.579
692.021
755.593
829.527
915.464
1013.86
1125.37
1250.43
1389.64
1543.85
1713.87
1899.5
2099.89
2313.52
2538.17
2770.91
3008.04
3245.13
3477.06
3697.96
3901.93
4083.03
4235.66
4355.38
4439.38
4486.05
4494.17
4463.84
4396.32
4294.67
4163.56
4008.81
3836.5
3652.51
3461.88
3269.55
3078.85
2892.8
2714.91
2547.89
2392.98
2249.53
2117.84
1996.01
1882.61
1777.6
1680.54
1590.78
1509.09
1438.08
1379.53
1333.97
1299.96
1275.89
1260.11
1251.04
1247.25
1247.4
1250.34
1255.16
1261.17
1267.7
1274.37
1280.9
1287.15
1293.01
1298.44
1303.43
1308.02
1312.26
1316.2
1319.94
1323.52
1327.01
1330.48
1333.98
1337.6
1341.41
1345.46
1349.84
1354.6
1359.81
1365.52
1371.79
1378.69
1386.25
1394.52
1403.55
1413.39
1424.08
1435.65
1448.17
1461.69
1476.24
1491.89
1508.63
1526.26
1544.62
1563.55
1582.86
1602.33
1621.72
1640.71
1658.99
1676.29
1692.26
1706.62
1719.17
1729.44
1736.97
1741.26
1741.9
1738.78
1732
1721.86
1708.87
1693.46
1676.01
1656.8
1635.99
1613.72
1590.1
1565.25
1539.27
1512.29
1484.45
1455.9
1426.8
1397.32
1367.64
1337.92
1308.35
1279.1
1250.3
1222.08
1194.53
1167.71
1141.62
1116.42
1092.21
1069.14
1047.22
1026.47
1006.9
988.513
971.316
955.322
940.528
926.978
914.619
903.315
299.975
299.804
299.633
299.462
299.291
299.119
298.947
298.775
298.603
298.43
298.257
298.084
297.911
297.738
297.565
297.392
297.218
297.045
296.871
296.697
296.524
296.35
296.177
296.004
295.83
295.657
295.484
295.312
295.139
294.967
294.795
294.623
294.452
294.281
294.11
293.94
293.771
293.602
293.433
293.266
293.099
292.932
292.766
292.602
292.438
292.274
292.112
291.951
291.791
291.632
291.474
291.318
291.162
291.008
290.856
290.705
290.555
290.408
290.261
290.117
289.975
289.834
289.696
289.559
289.425
289.293
289.164
289.037
288.912
288.791
288.672
288.556
288.443
288.333
288.227
288.124
288.024
287.928
287.836
287.747
287.663
287.582
287.506
287.434
287.367
287.304
287.245
287.192
287.144
287.101
287.064
287.032
287.006
286.985
286.971
286.962
286.958
286.961
286.969
286.983
287.002
287.026
287.056
287.09
287.13
287.173
287.222
287.273
287.329
287.388
287.451
287.517
287.586
287.658
287.731
287.806
287.883
287.961
288.04
288.121
288.202
288.283
288.365
288.446
288.526
288.606
288.684
288.761
288.835
288.907
288.977
289.045
289.111
289.175
289.238
289.299
289.358
289.417
289.476
289.536
289.598
289.662
289.729
289.8
289.876
289.957
290.045
290.141
290.246
290.361
290.489
290.631
290.789
290.965
291.16
291.378
291.621
291.891
292.191
292.525
292.898
293.31
293.759
294.245
294.774
295.347
295.97
296.648
297.385
298.187
299.059
300.007
301.037
302.157
303.374
304.697
306.132
307.692
309.386
311.225
313.225
315.399
317.765
320.342
323.153
326.223
329.584
333.271
337.326
341.799
346.749
352.248
358.382
365.255
372.99
381.738
391.682
403.041
416.077
431.106
448.506
468.722
492.281
519.797
551.974
589.617
633.649
684.991
744.896
814.597
895.704
989.292
1096.01
1216.54
1351.13
1500.32
1665.34
1846.79
2044.44
2257.34
2483.82
2721.5
2967.22
3216.96
3465.98
3708.64
3938.81
4150.26
4336.56
4492.17
4612.46
4694.78
4736.57
4736.05
4692.94
4608.75
4487.33
4334.57
4157.4
3962.79
3757.22
3546.47
3335.8
3127.7
2927.29
2738.49
2563.53
2402.31
2254.92
2119.58
1994.21
1878.42
1771.62
1672.93
1581.95
1499
1426.13
1365.31
1317.34
1281.36
1255.91
1239.54
1230.78
1228.11
1230.15
1235.68
1243.46
1252.57
1262.28
1272.04
1281.44
1290.25
1298.35
1305.69
1312.25
1318.09
1323.25
1327.81
1331.87
1335.5
1338.8
1341.85
1344.71
1347.46
1350.19
1352.96
1355.86
1358.95
1362.3
1365.99
1370.06
1374.6
1379.65
1385.28
1391.52
1398.44
1406.07
1414.46
1423.66
1433.71
1444.69
1456.64
1469.63
1483.69
1498.84
1514.88
1531.67
1549.06
1566.89
1584.95
1603.03
1620.84
1638.1
1654.53
1669.83
1683.77
1696.09
1706.59
1715.14
1721.43
1725.12
1725.89
1723.39
1717.54
1708.25
1696.09
1681.42
1664.66
1646.1
1625.89
1604.16
1581.01
1556.55
1530.91
1504.22
1476.65
1448.36
1419.51
1390.32
1360.96
1331.63
1302.53
1273.78
1245.54
1217.91
1191.05
1165.02
1139.95
1115.86
1092.82
1070.84
1049.95
1030.17
1011.55
994.095
977.853
962.844
949.146
936.743
925.586
300.072
299.907
299.742
299.578
299.413
299.248
299.084
298.92
298.756
298.592
298.428
298.265
298.102
297.94
297.778
297.616
297.455
297.294
297.134
296.974
296.815
296.657
296.499
296.342
296.186
296.03
295.876
295.722
295.569
295.418
295.267
295.117
294.968
294.821
294.675
294.529
294.386
294.243
294.102
293.962
293.824
293.687
293.552
293.418
293.286
293.156
293.027
292.9
292.775
292.651
292.53
292.411
292.293
292.178
292.064
291.953
291.844
291.737
291.632
291.53
291.43
291.332
291.237
291.144
291.054
290.966
290.881
290.799
290.719
290.643
290.569
290.498
290.43
290.365
290.304
290.245
290.19
290.138
290.09
290.045
290.003
289.965
289.931
289.901
289.874
289.851
289.832
289.817
289.807
289.802
289.801
289.806
289.815
289.829
289.849
289.873
289.903
289.938
289.977
290.022
290.072
290.126
290.186
290.25
290.318
290.39
290.467
290.548
290.633
290.722
290.814
290.91
291.009
291.11
291.213
291.318
291.425
291.533
291.643
291.753
291.864
291.976
292.087
292.198
292.308
292.417
292.525
292.632
292.739
292.845
292.951
293.056
293.16
293.264
293.368
293.472
293.576
293.681
293.792
293.906
294.024
294.148
294.277
294.414
294.559
294.713
294.878
295.055
295.246
295.452
295.676
295.92
296.185
296.475
296.791
297.136
297.514
297.928
298.381
298.877
299.42
300.019
300.676
301.385
302.146
302.963
303.844
304.793
305.817
306.925
308.122
309.418
310.822
312.343
313.991
315.78
317.721
319.829
322.121
324.613
327.327
330.287
333.518
337.053
340.927
345.181
349.866
355.039
360.769
367.139
374.246
382.206
391.161
401.279
412.762
425.851
440.835
458.058
477.927
500.926
527.615
558.647
594.77
636.836
685.797
742.705
808.826
885.518
974.592
1076.69
1192.59
1322.63
1467.31
1626.98
1803.21
1996.45
2206.33
2431.82
2671.13
2921.71
3180.15
3442.2
3702.74
3955.74
4194.94
4413.49
4605.06
4763.65
4885.03
4965.47
5001.35
4990.71
4932.77
4829.78
4686.77
4511.13
4310.76
4093.54
3866.31
3635.43
3405.64
3180.89
2966.37
2766.66
2583.13
2415.51
2262.88
2122.5
1993.33
1874.72
1765.46
1664.94
1572.56
1488.31
1413.9
1351.06
1300.52
1262.02
1234.37
1216.37
1206.72
1204.13
1207.26
1214.67
1225.13
1237.51
1250.85
1264.38
1277.55
1289.97
1301.38
1311.69
1320.86
1328.91
1335.93
1341.99
1347.19
1351.64
1355.44
1358.69
1361.5
1363.95
1366.14
1368.13
1370.01
1371.88
1373.8
1375.84
1378.08
1380.59
1383.43
1386.67
1390.37
1394.58
1399.36
1404.76
1410.82
1417.6
1425.17
1433.59
1442.92
1453.24
1464.59
1477.01
1490.51
1504.91
1520.08
1535.89
1552.18
1568.77
1585.46
1601.98
1618.08
1633.5
1647.96
1661.24
1673.09
1683.35
1691.85
1698.44
1703.06
1705.53
1705.53
1702.85
1697.08
1688.08
1676.18
1661.83
1645.42
1627.19
1607.28
1585.81
1562.88
1538.63
1513.2
1486.76
1459.49
1431.56
1403.2
1374.6
1345.95
1317.44
1289.24
1261.51
1234.47
1208.18
1182.73
1158.15
1134.52
1111.86
1090.21
1069.59
1050.02
1031.57
1014.25
998.15
983.308
969.847
957.795
947.192
300.309
300.158
300.009
299.859
299.711
299.564
299.417
299.272
299.127
298.984
298.841
298.7
298.56
298.422
298.284
298.148
298.014
297.881
297.749
297.619
297.491
297.364
297.239
297.115
296.994
296.874
296.757
296.641
296.527
296.416
296.306
296.199
296.093
295.99
295.89
295.791
295.695
295.601
295.51
295.421
295.335
295.251
295.17
295.091
295.015
294.942
294.871
294.803
294.738
294.675
294.615
294.558
294.504
294.452
294.403
294.357
294.314
294.273
294.236
294.201
294.169
294.139
294.113
294.089
294.068
294.05
294.035
294.022
294.012
294.005
294.001
293.999
294.001
294.005
294.011
294.021
294.033
294.049
294.066
294.087
294.111
294.137
294.166
294.199
294.234
294.272
294.313
294.356
294.403
294.453
294.508
294.567
294.63
294.697
294.768
294.843
294.922
295.006
295.094
295.185
295.281
295.381
295.485
295.593
295.705
295.821
295.94
296.062
296.188
296.317
296.449
296.584
296.722
296.862
297.005
297.15
297.298
297.448
297.599
297.751
297.905
298.059
298.214
298.37
298.526
298.683
298.841
298.999
299.157
299.316
299.476
299.637
299.798
299.962
300.126
300.293
300.464
300.642
300.826
301.018
301.218
301.427
301.646
301.876
302.119
302.377
302.651
302.942
303.253
303.587
303.944
304.329
304.743
305.189
305.671
306.192
306.755
307.366
308.027
308.744
309.521
310.366
311.289
312.298
313.382
314.541
315.78
317.108
318.536
320.072
321.727
323.514
325.445
327.534
329.797
332.251
334.916
337.814
340.968
344.409
348.166
352.278
356.788
361.744
367.204
373.238
379.924
387.357
395.65
404.936
415.374
427.152
440.496
455.674
473.003
492.86
515.69
542.007
572.416
607.617
648.392
695.644
750.39
813.764
887.039
972.153
1069.98
1181.45
1307.31
1447.59
1602.59
1773.43
1961.4
2166.76
2389.07
2627.17
2879.18
3142.36
3413.13
3687.02
3958.46
4221.4
4469.16
4694.65
4891.34
5053.29
5175.63
5253.38
5282.24
5259.17
5183.85
5059.61
4893.08
4693.24
4469.05
4229.05
3980.31
3729.6
3480.82
3239.34
3011.26
2800.54
2607.39
2432.91
2273.69
2127.54
1993.99
1871.64
1759.51
1656.78
1562.57
1477.1
1401.61
1337.17
1284.31
1243.11
1212.65
1192.01
1180.29
1176.45
1179.19
1187.3
1199.51
1214.58
1231.39
1248.96
1266.49
1283.37
1299.17
1313.63
1326.61
1338.08
1348.09
1356.72
1364.09
1370.31
1375.52
1379.82
1383.35
1386.22
1388.54
1390.4
1391.9
1393.11
1394.14
1395.06
1395.96
1396.89
1397.95
1399.2
1400.71
1402.54
1404.76
1407.44
1410.62
1414.38
1418.77
1423.86
1429.73
1436.44
1444.07
1452.68
1462.34
1473.07
1484.88
1497.59
1511.09
1525.26
1539.95
1555
1570.21
1585.35
1600.18
1614.46
1627.94
1640.4
1651.61
1661.41
1669.62
1676.14
1680.87
1683.68
1684.53
1683.27
1679.6
1673.22
1663.8
1651.66
1637.25
1620.85
1602.65
1582.8
1561.4
1538.6
1514.54
1489.41
1463.38
1436.66
1409.45
1381.94
1354.35
1326.85
1299.7
1272.99
1246.93
1221.56
1196.95
1173.16
1150.27
1128.31
1107.31
1087.29
1068.28
1050.35
1033.54
1017.94
1003.63
990.78
979.49
969.896
300.889
300.77
300.653
300.539
300.426
300.316
300.208
300.102
299.998
299.898
299.799
299.703
299.61
299.52
299.432
299.347
299.265
299.186
299.109
299.036
298.966
298.899
298.835
298.774
298.717
298.663
298.612
298.565
298.521
298.481
298.444
298.41
298.38
298.354
298.331
298.312
298.297
298.285
298.276
298.272
298.271
298.274
298.281
298.291
298.305
298.322
298.343
298.368
298.396
298.428
298.464
298.503
298.545
298.591
298.641
298.693
298.749
298.808
298.87
298.936
299.004
299.076
299.15
299.227
299.307
299.389
299.474
299.562
299.652
299.745
299.84
299.937
300.036
300.137
300.24
300.345
300.452
300.561
300.672
300.784
300.898
301.014
301.131
301.25
301.371
301.493
301.616
301.741
301.866
301.993
302.123
302.256
302.392
302.53
302.672
302.816
302.963
303.113
303.266
303.421
303.58
303.742
303.906
304.074
304.244
304.418
304.594
304.773
304.954
305.138
305.325
305.515
305.706
305.901
306.097
306.296
306.497
306.7
306.906
307.113
307.323
307.534
307.747
307.963
308.18
308.399
308.62
308.844
309.069
309.298
309.529
309.764
310.002
310.244
310.49
310.743
311.005
311.28
311.565
311.862
312.171
312.495
312.835
313.192
313.568
313.965
314.386
314.832
315.306
315.81
316.348
316.923
317.538
318.197
318.903
319.662
320.477
321.354
322.299
323.316
324.413
325.597
326.876
328.27
329.789
331.426
333.172
335.038
337.038
339.185
341.496
343.987
346.678
349.589
352.745
356.172
359.899
363.96
368.394
373.246
378.565
384.412
390.854
397.972
405.858
414.623
424.396
435.33
447.605
461.434
477.071
494.814
515.014
538.085
564.508
594.846
629.752
669.95
716.291
769.772
831.372
902.319
984.5
1079.02
1186.69
1308.73
1445.18
1596.32
1762.3
1944.89
2145
2362.74
2597.55
2848.17
3112.57
3387.9
3670.43
3955.32
4237.02
4509.37
4764.92
4997.16
5198.9
5364.25
5486.84
5560.66
5580.24
5542
5446.38
5298.26
5106.4
4881.15
4632.49
4369.46
4099.43
3829.19
3561.9
3304.23
3062.44
2840.12
2637.8
2454.96
2287.82
2135.54
1996.82
1870.11
1754.49
1648.86
1552.65
1466.14
1389.91
1324.31
1269.7
1226.01
1192.4
1168.57
1153.82
1147.25
1148.02
1155.12
1167.46
1183.85
1203.15
1224.21
1246.03
1267.75
1288.68
1308.33
1326.37
1342.61
1357
1369.56
1380.38
1389.58
1397.31
1403.72
1408.96
1413.15
1416.43
1418.94
1420.78
1422.07
1422.88
1423.33
1423.48
1423.44
1423.27
1423.06
1422.89
1422.82
1422.93
1423.29
1423.97
1425.04
1426.58
1428.64
1431.31
1434.67
1438.79
1443.75
1449.64
1456.51
1464.43
1473.43
1483.5
1494.48
1506.26
1518.73
1531.76
1545.19
1558.86
1572.53
1585.99
1599.02
1611.38
1622.87
1633.27
1642.44
1650.2
1656.44
1661.05
1663.92
1664.99
1664.15
1661.31
1656.28
1648.75
1638.41
1625.73
1610.96
1594.34
1575.99
1556.08
1534.74
1512.13
1488.43
1463.81
1438.47
1412.62
1386.45
1360.21
1334.06
1308.21
1282.78
1257.89
1233.65
1210.12
1187.37
1165.47
1144.47
1124.39
1105.26
1087.11
1070
1054
1039.23
1025.8
1013.92
1003.82
995.74
302.229
302.175
302.124
302.078
302.035
301.997
301.963
301.933
301.907
301.886
301.87
301.857
301.849
301.846
301.848
301.854
301.865
301.88
301.901
301.926
301.956
301.991
302.03
302.075
302.125
302.179
302.239
302.303
302.373
302.447
302.527
302.611
302.7
302.795
302.894
302.998
303.107
303.221
303.34
303.464
303.592
303.725
303.863
304.006
304.153
304.304
304.46
304.62
304.785
304.954
305.126
305.303
305.484
305.668
305.856
306.048
306.243
306.441
306.643
306.848
307.055
307.265
307.478
307.693
307.91
308.13
308.351
308.574
308.799
309.025
309.253
309.482
309.712
309.942
310.173
310.405
310.638
310.87
311.103
311.336
311.568
311.801
312.033
312.265
312.497
312.728
312.959
313.188
313.417
313.643
313.87
314.098
314.327
314.557
314.788
315.02
315.253
315.488
315.724
315.961
316.199
316.439
316.681
316.924
317.169
317.416
317.664
317.914
318.166
318.42
318.677
318.935
319.195
319.458
319.723
319.99
320.26
320.533
320.808
321.086
321.367
321.651
321.938
322.229
322.523
322.821
323.124
323.431
323.743
324.061
324.384
324.713
325.05
325.394
325.747
326.113
326.499
326.899
327.317
327.752
328.207
328.684
329.185
329.711
330.265
330.849
331.467
332.121
332.814
333.55
334.333
335.167
336.055
337.004
338.018
339.102
340.263
341.508
342.843
344.277
345.817
347.474
349.258
351.183
353.276
355.56
358.034
360.679
363.512
366.553
369.825
373.355
377.172
381.307
385.798
390.684
396.013
401.837
408.219
415.227
422.945
431.466
440.899
451.373
463.038
476.068
490.671
507.089
525.605
546.556
570.331
597.384
628.249
663.538
703.929
750.242
803.424
864.343
934.241
1014.83
1107.25
1212.34
1331.35
1464.72
1612.63
1774.79
1952.65
2147.62
2360.3
2590.61
2837.87
3100.71
3377.03
3663.83
3957.15
4252.22
4543.45
4823.85
5087.06
5325.35
5532.04
5699.96
5821.47
5889.17
5896.29
5839.47
5720.53
5545.98
5326.99
5075.15
4801.37
4515.06
4223.88
3934.19
3649.1
3375.36
3119.85
2885.49
2673.49
2481.6
2306.44
2147.44
2002.67
1871.01
1751.31
1642.57
1544.55
1457.22
1380.45
1314.07
1258.15
1212.08
1175.61
1148.47
1129.93
1119.62
1116.96
1121.26
1131.71
1147.41
1167.31
1190.32
1215.36
1241.36
1267.41
1292.74
1316.74
1338.98
1359.18
1377.22
1393.08
1406.81
1418.54
1428.42
1436.62
1443.3
1448.64
1452.79
1455.89
1458.09
1459.5
1460.23
1460.39
1460.07
1459.36
1458.34
1457.11
1455.74
1454.31
1452.89
1451.58
1450.44
1449.56
1449
1448.86
1449.22
1450.16
1451.76
1454.11
1457.31
1461.42
1466.52
1472.66
1479.89
1488.19
1497.39
1507.41
1518.13
1529.44
1541.2
1553.24
1565.36
1577.36
1589.04
1600.17
1610.57
1620.04
1628.42
1635.56
1641.34
1645.65
1648.4
1649.49
1648.83
1646.34
1641.88
1635.33
1626.33
1614.96
1601.6
1586.35
1569.39
1550.88
1530.96
1509.79
1487.54
1464.38
1440.5
1416.13
1391.47
1366.72
1342.06
1317.63
1293.6
1270.07
1247.15
1224.89
1203.39
1182.7
1162.87
1143.94
1125.93
1108.88
1092.87
1077.96
1064.3
1052.04
1041.5
1033.08
1027.03
305.097
305.159
305.227
305.301
305.382
305.47
305.564
305.665
305.772
305.886
306.006
306.133
306.267
306.407
306.554
306.708
306.868
307.035
307.209
307.389
307.576
307.77
307.97
308.177
308.39
308.61
308.836
309.069
309.308
309.554
309.806
310.064
310.328
310.598
310.874
311.157
311.445
311.739
312.039
312.344
312.655
312.971
313.293
313.62
313.952
314.288
314.63
314.976
315.327
315.682
316.042
316.405
316.772
317.143
317.518
317.895
318.276
318.659
319.045
319.434
319.824
320.217
320.611
321.007
321.404
321.801
322.2
322.599
322.998
323.397
323.796
324.194
324.591
324.987
325.382
325.776
326.167
326.557
326.945
327.33
327.713
328.093
328.471
328.845
329.217
329.585
329.95
330.311
330.669
331.023
331.37
331.715
332.06
332.403
332.744
333.085
333.425
333.764
334.102
334.439
334.776
335.113
335.449
335.785
336.122
336.459
336.797
337.135
337.474
337.815
338.157
338.501
338.847
339.195
339.545
339.898
340.254
340.614
340.977
341.344
341.716
342.092
342.474
342.861
343.255
343.655
344.062
344.477
344.9
345.333
345.775
346.228
346.694
347.172
347.667
348.192
348.738
349.308
349.903
350.525
351.177
351.861
352.58
353.337
354.134
354.976
355.865
356.807
357.804
358.862
359.986
361.182
362.454
363.811
365.258
366.804
368.456
370.224
372.118
374.149
376.328
378.669
381.186
383.895
386.817
389.991
393.463
397.234
401.322
405.71
410.437
415.548
421.083
427.094
433.636
440.774
448.583
457.148
466.567
476.952
488.433
501.158
515.302
531.069
548.694
568.455
590.67
615.715
644.031
676.129
712.574
754.035
801.318
855.272
916.726
986.998
1067.58
1159.43
1263.45
1380.78
1512.14
1657.73
1817.13
1991.34
2181.9
2389.75
2615.21
2858.08
3117.56
3392.13
3679.57
3976.83
4279.99
4584.14
4883.3
5171.36
5440.99
5684.9
5895.57
6064.02
6182.27
6240.3
6231.04
6151.8
6006.19
5803.1
5555.51
5276.12
4976.51
4666.56
4354
4044.69
3742.58
3452.87
3183.54
2936.66
2714.46
2512.77
2329.53
2163.41
2012.45
1875.77
1752.13
1640.91
1541.67
1453.66
1376.17
1309.12
1251.76
1203.56
1164.52
1133.88
1111.41
1096.83
1089.74
1089.79
1096.52
1109.3
1127.41
1149.99
1176.07
1204.6
1234.55
1264.95
1294.91
1323.72
1350.79
1375.74
1398.3
1418.36
1435.92
1451.06
1463.91
1474.66
1483.49
1490.6
1496.17
1500.38
1503.38
1505.33
1506.37
1506.6
1506.15
1505.09
1503.54
1501.58
1499.29
1496.76
1494.08
1491.33
1488.59
1485.95
1483.5
1481.32
1479.51
1478.15
1477.35
1477.2
1477.78
1479.19
1481.51
1484.81
1489.15
1494.57
1501.07
1508.47
1516.68
1525.61
1535.15
1545.18
1555.53
1566.03
1576.5
1586.73
1596.54
1605.73
1614.14
1621.61
1627.98
1633.16
1637.02
1639.47
1640.41
1639.77
1637.44
1633.32
1627.3
1619.16
1608.71
1596.44
1582.38
1566.65
1549.42
1530.82
1511.03
1490.19
1468.47
1446.1
1423.25
1400.15
1376.95
1353.83
1330.94
1308.43
1286.39
1264.93
1244.12
1224.02
1204.72
1186.26
1168.66
1151.98
1136.24
1121.54
1107.95
1095.68
1084.9
1076.03
1069.76
1066.4
310.761
311.012
311.273
311.543
311.822
312.109
312.406
312.711
313.025
313.348
313.68
314.02
314.369
314.727
315.093
315.467
315.85
316.241
316.64
317.048
317.464
317.888
318.319
318.759
319.206
319.661
320.123
320.594
321.071
321.556
322.048
322.546
323.052
323.565
324.084
324.61
325.143
325.681
326.226
326.777
327.333
327.896
328.463
329.036
329.614
330.197
330.784
331.376
331.973
332.573
333.177
333.784
334.395
335.008
335.625
336.243
336.864
337.487
338.111
338.736
339.362
339.988
340.615
341.241
341.867
342.492
343.116
343.738
344.358
344.976
345.591
346.203
346.812
347.417
348.018
348.614
349.206
349.793
350.375
350.951
351.522
352.087
352.645
353.197
353.742
354.281
354.813
355.339
355.857
356.367
356.869
357.359
357.845
358.327
358.805
359.279
359.749
360.216
360.68
361.141
361.599
362.054
362.508
362.96
363.41
363.859
364.308
364.756
365.204
365.653
366.103
366.555
367.008
367.465
367.924
368.387
368.854
369.326
369.803
370.286
370.777
371.274
371.78
372.295
372.82
373.355
373.902
374.462
375.035
375.623
376.228
376.849
377.49
378.156
378.862
379.6
380.37
381.176
382.021
382.907
383.837
384.816
385.846
386.933
388.08
389.291
390.573
391.93
393.37
394.897
396.52
398.246
400.083
402.041
404.129
406.36
408.743
411.293
414.024
416.952
420.094
423.469
427.099
431.007
435.219
439.768
444.694
450.093
455.993
462.41
469.4
476.995
485.231
494.19
503.968
514.672
526.421
539.349
553.61
569.379
586.861
606.288
627.935
652.121
679.213
709.628
743.844
782.437
826.088
875.539
931.5
994.979
1067.32
1149.61
1242.6
1347.26
1464.62
1595.42
1739.8
1897.48
2069.22
2256.51
2460.4
2681.43
2919.69
3174.8
3445.89
3731.41
4029.08
4335.62
4647.16
4958.89
5265.23
5559.47
5834.42
6082.32
6294.12
6460.73
6571.12
6614.79
6584.47
6478.91
6303.52
6070.09
5792.74
5485.05
5159.09
4825.05
4490.46
4161.68
3842.41
3537.1
3253.76
2993.98
2760.78
2549.07
2357.78
2184.72
2028.54
1888.07
1761.91
1649.18
1548.74
1459.55
1381.32
1313.1
1253.67
1203.53
1161.62
1127.54
1101.13
1082.03
1070.07
1065.05
1066.72
1074.79
1088.85
1108.37
1132.67
1160.94
1192.27
1225.68
1260.18
1294.82
1328.74
1361.23
1391.7
1419.74
1445.07
1467.57
1487.23
1504.13
1518.43
1530.33
1540.03
1547.75
1553.71
1558.11
1561.13
1562.93
1563.67
1563.47
1562.45
1560.71
1558.36
1555.48
1552.17
1548.52
1544.61
1540.53
1536.39
1532.26
1528.26
1524.46
1520.99
1517.93
1515.39
1513.47
1512.27
1511.88
1512.39
1513.87
1516.37
1519.95
1524.63
1530.2
1536.57
1543.68
1551.41
1559.65
1568.27
1577.09
1585.95
1594.66
1603.06
1610.97
1618.21
1624.65
1630.15
1634.58
1637.85
1639.86
1640.51
1639.74
1637.43
1633.5
1627.82
1620.25
1610.52
1599.01
1585.93
1571.28
1555.18
1537.8
1519.27
1499.78
1479.48
1458.6
1437.31
1415.77
1394.17
1372.66
1351.39
1330.49
1310.06
1290.18
1270.94
1252.41
1234.64
1217.69
1201.59
1186.4
1172.16
1158.97
1146.94
1136.3
1127.29
1120.48
1116.92
1117.04
321.169
321.709
322.259
322.821
323.393
323.977
324.571
325.176
325.792
326.418
327.054
327.701
328.358
329.024
329.701
330.387
331.083
331.788
332.502
333.226
333.958
334.7
335.45
336.209
336.976
337.751
338.535
339.327
340.126
340.933
341.748
342.57
343.399
344.235
345.078
345.928
346.784
347.646
348.514
349.388
350.267
351.152
352.042
352.937
353.836
354.74
355.647
356.559
357.473
358.391
359.312
360.235
361.16
362.086
363.014
363.943
364.873
365.802
366.732
367.66
368.588
369.514
370.437
371.359
372.277
373.192
374.103
375.009
375.911
376.807
377.697
378.581
379.459
380.329
381.191
382.046
382.891
383.728
384.556
385.374
386.182
386.98
387.767
388.544
389.31
390.064
390.807
391.539
392.26
392.968
393.665
394.347
395.011
395.667
396.316
396.957
397.592
398.221
398.844
399.461
400.073
400.68
401.284
401.883
402.48
403.074
403.667
404.259
404.85
405.442
406.035
406.63
407.228
407.83
408.437
409.049
409.668
410.294
410.929
411.574
412.229
412.897
413.578
414.273
414.985
415.713
416.461
417.229
418.018
418.832
419.671
420.539
421.442
422.403
423.41
424.465
425.571
426.732
427.951
429.235
430.587
432.012
433.516
435.105
436.786
438.564
440.449
442.447
444.567
446.82
449.216
451.767
454.483
457.38
460.473
463.777
467.31
471.093
475.148
479.498
484.17
489.193
494.6
500.427
506.715
513.51
520.863
528.84
537.522
547.055
557.505
568.935
581.431
595.115
610.125
626.619
644.775
664.777
686.872
711.336
738.483
768.675
802.345
839.998
882.165
929.425
982.465
1042.23
1109.8
1186.08
1271.74
1367.62
1474.74
1593.89
1725.66
1870.02
2026.93
2197.32
2382.5
2583.51
2800.98
3035.21
3286.03
3552.9
3834.76
4129.99
4436.52
4751.14
5069.87
5388
5699.59
5998.02
6275.68
6524.06
6733.53
6893.01
6989.9
7013.35
6956.85
6821.14
6613.45
6348.14
6040.12
5703.55
5350.85
4992.02
4634.83
4285.92
3949.25
3629.33
3331.89
3059.54
2814.74
2593.97
2395.7
2217.35
2057.67
1914.55
1786.42
1672.13
1570.27
1479.96
1400.2
1329.5
1268.2
1215.4
1170.25
1132.68
1102.2
1078.54
1061.58
1051.14
1047.11
1049.38
1057.76
1072.05
1091.89
1116.84
1146.27
1179.45
1215.51
1253.54
1292.57
1331.65
1369.92
1406.61
1441.07
1472.84
1501.59
1527.15
1549.49
1568.67
1584.86
1598.28
1609.15
1617.74
1624.28
1629.03
1632.18
1633.94
1634.46
1633.9
1632.38
1630.02
1626.91
1623.17
1618.88
1614.14
1609.03
1603.67
1598.14
1592.55
1587
1581.6
1576.46
1571.68
1567.39
1563.69
1560.68
1558.46
1557.12
1556.74
1557.37
1559.07
1561.9
1565.62
1570.14
1575.39
1581.28
1587.7
1594.53
1601.62
1608.82
1615.96
1622.87
1629.41
1635.41
1640.72
1645.23
1648.83
1651.39
1652.84
1653.08
1652.03
1649.62
1645.74
1640.29
1633.12
1623.97
1613.01
1600.7
1586.94
1571.86
1555.57
1538.23
1520.06
1501.18
1481.78
1462.03
1442.09
1422.12
1402.28
1382.7
1363.48
1344.75
1326.57
1309.02
1292.16
1276.05
1260.76
1246.31
1232.78
1220.21
1208.74
1198.48
1189.74
1182.83
1178.56
1178.4
1183.07
339.239
340.191
341.156
342.133
343.122
344.124
345.138
346.163
347.201
348.249
349.309
350.38
351.462
352.555
353.658
354.771
355.894
357.028
358.17
359.323
360.485
361.656
362.836
364.024
365.221
366.427
367.641
368.862
370.092
371.329
372.573
373.825
375.083
376.348
377.62
378.897
380.181
381.47
382.765
384.065
385.37
386.679
387.993
389.311
390.632
391.957
393.284
394.614
395.946
397.28
398.615
399.951
401.288
402.624
403.96
405.295
406.628
407.959
409.288
410.613
411.934
413.252
414.564
415.871
417.171
418.465
419.752
421.03
422.3
423.561
424.812
426.052
427.282
428.499
429.705
430.897
432.076
433.241
434.392
435.528
436.649
437.753
438.842
439.915
440.971
442.01
443.032
444.037
445.024
445.995
446.949
447.885
448.801
449.689
450.564
451.429
452.284
453.129
453.966
454.795
455.617
456.432
457.242
458.047
458.848
459.646
460.443
461.238
462.034
462.832
463.633
464.438
465.249
466.066
466.892
467.728
468.575
469.435
470.31
471.202
472.111
473.041
473.994
474.97
475.973
477.004
478.066
479.162
480.293
481.463
482.677
483.943
485.297
486.719
488.211
489.779
491.429
493.166
494.997
496.929
498.968
501.124
503.404
505.817
508.374
511.084
513.959
517.012
520.256
523.707
527.38
531.294
535.469
539.925
544.686
549.779
555.231
561.075
567.344
574.076
581.313
589.103
597.496
606.551
616.334
626.918
638.388
650.838
664.377
679.133
695.243
712.898
732.312
753.659
777.143
803.009
831.541
863.051
897.906
936.494
979.253
1026.75
1079.73
1138.96
1205.13
1278.8
1360.58
1451.28
1551.81
1662.87
1785.07
1918.69
2063.71
2220.62
2390.51
2574.56
2773.68
2988.55
3219.53
3466.61
3729.45
4007.49
4299.65
4604.1
4918.45
5239.69
5563.6
5885.23
6198.75
6497.55
6773.45
7017.22
7217.91
7363.38
7440.02
7437.25
7349.75
7180.16
6938.39
6639.97
6300.35
5934.14
5553.92
5169.38
4789.48
4419.73
4065.54
3731.99
3422.57
3139.44
2884.46
2655.94
2451.48
2268.65
2105.54
1959.77
1829.89
1713.97
1610.24
1518.07
1435.79
1362.84
1299.01
1242.93
1194.48
1153.11
1118.36
1090.1
1068.07
1052.13
1042.21
1038.24
1040.17
1047.93
1061.44
1080.55
1104.98
1134.38
1168.21
1205.81
1246.41
1289.11
1332.97
1377.02
1420.34
1462.06
1501.44
1537.89
1571
1600.5
1626.32
1648.49
1667.17
1682.6
1695.04
1704.8
1712.17
1717.44
1720.87
1722.67
1723.06
1722.2
1720.24
1717.29
1713.49
1708.92
1703.69
1697.89
1691.63
1685
1678.1
1671.05
1663.95
1656.93
1650.09
1643.57
1637.48
1631.94
1627.06
1622.94
1619.69
1617.38
1616.09
1615.85
1616.78
1618.63
1621.28
1624.66
1628.67
1633.24
1638.25
1643.56
1649.05
1654.55
1659.93
1665.02
1669.69
1673.81
1677.25
1679.9
1681.66
1682.45
1682.18
1680.76
1678.13
1674.19
1668.85
1661.96
1653.32
1642.8
1631.06
1618.05
1603.85
1588.6
1572.44
1555.53
1538.04
1520.12
1501.92
1483.6
1465.31
1447.19
1429.35
1411.91
1394.96
1378.58
1362.82
1347.77
1333.46
1319.96
1307.32
1295.62
1284.92
1275.39
1267.16
1260.63
1256.25
1255.16
1259.37
1270.04
369.437
370.968
372.513
374.071
375.643
377.227
378.823
380.432
382.053
383.686
385.331
386.986
388.653
390.331
392.019
393.717
395.426
397.144
398.872
400.609
402.356
404.111
405.875
407.648
409.429
411.218
413.015
414.819
416.631
418.45
420.276
422.108
423.947
425.792
427.643
429.499
431.361
433.228
435.099
436.975
438.855
440.739
442.626
444.515
446.408
448.302
450.198
452.095
453.992
455.89
457.787
459.683
461.578
463.471
465.361
467.248
469.13
471.008
472.881
474.748
476.608
478.46
480.305
482.14
483.965
485.78
487.584
489.375
491.153
492.917
494.667
496.401
498.118
499.819
501.501
503.164
504.808
506.432
508.035
509.616
511.175
512.712
514.226
515.716
517.183
518.626
520.045
521.44
522.811
524.158
525.482
526.782
528.059
529.31
530.523
531.714
532.892
534.06
535.217
536.365
537.505
538.638
539.766
540.89
542.011
543.131
544.252
545.374
546.501
547.634
548.775
549.926
551.088
552.265
553.459
554.671
555.906
557.164
558.449
559.764
561.112
562.495
563.917
565.382
566.892
568.451
570.062
571.73
573.46
575.259
577.148
579.168
581.291
583.525
585.877
588.355
590.969
593.727
596.641
599.721
602.978
606.425
610.075
613.942
618.043
622.394
627.014
631.924
637.146
642.707
648.632
654.953
661.7
668.911
676.623
684.878
693.723
703.208
713.386
724.319
736.073
748.722
762.35
777.056
792.95
810.16
828.827
849.109
871.175
895.211
921.417
950.015
981.258
1015.45
1053
1094.36
1140.03
1190.51
1246.18
1307.42
1374.6
1448.28
1529.15
1617.91
1715.17
1821.39
1936.91
2061.98
2196.87
2342.28
2499.29
2669.03
2852.6
3050.82
3264.21
3493.05
3737.47
3997.69
4272.87
4561.9
4863.34
5175.25
5495.03
5819.4
6144.43
6465.28
6775.67
7068.66
7335.93
7567.65
7752.09
7875.94
7925.52
7890.58
7767.67
7560.91
7282.94
6949.79
6577.33
6180.39
5771.2
5360.56
4956.78
4566.27
4195.76
3849.55
3530.55
3239.24
2976.39
2740.77
2530.24
2342.75
2175.79
2027.08
1894.64
1776.14
1670.56
1576.28
1491.25
1416.25
1349.46
1290.3
1238.38
1193.02
1154.03
1121.08
1093.94
1072.51
1056.69
1046.41
1041.67
1042.47
1048.81
1060.67
1078.04
1100.84
1128.92
1162.02
1199.74
1241.53
1286.69
1334.38
1383.67
1433.54
1482.97
1530.95
1576.58
1619.09
1657.9
1692.63
1723.07
1749.24
1771.25
1789.37
1803.92
1815.25
1823.73
1829.72
1833.53
1835.47
1835.76
1834.63
1832.24
1828.73
1824.24
1818.86
1812.7
1805.87
1798.45
1790.55
1782.27
1773.73
1765.04
1756.34
1747.74
1739.39
1731.4
1723.91
1717.04
1710.9
1705.61
1701.25
1697.92
1695.65
1694.55
1694.51
1695.27
1696.74
1698.86
1701.55
1704.69
1708.19
1711.92
1715.73
1719.51
1723.1
1726.38
1729.22
1731.51
1733.14
1734.02
1734.06
1733.19
1731.32
1728.38
1724.3
1718.97
1712.28
1704.04
1693.99
1682.7
1670.34
1656.96
1642.66
1627.61
1611.96
1595.84
1579.4
1562.78
1546.13
1529.56
1513.22
1497.22
1481.64
1466.58
1452.12
1438.29
1425.18
1412.83
1401.32
1390.68
1381.04
1372.45
1365.15
1359.3
1355.41
1354.12
1357.28
1367.14
1385.98
419.07
421.425
423.794
426.176
428.572
430.981
433.402
435.836
438.282
440.74
443.209
445.689
448.18
450.682
453.194
455.716
458.247
460.789
463.339
465.899
468.468
471.045
473.631
476.225
478.827
481.437
484.054
486.679
489.31
491.949
494.595
497.247
499.905
502.569
505.239
507.914
510.594
513.278
515.967
518.66
521.357
524.056
526.759
529.463
532.169
534.876
537.584
540.292
542.999
545.705
548.41
551.113
553.812
556.508
559.2
561.886
564.567
567.241
569.908
572.566
575.216
577.855
580.482
583.098
585.7
588.288
590.861
593.417
595.955
598.474
600.972
603.45
605.904
608.335
610.741
613.121
615.475
617.8
620.096
622.363
624.6
626.807
628.983
631.127
633.24
635.322
637.372
639.391
641.379
643.336
645.263
647.161
649.03
650.87
652.679
654.446
656.171
657.887
659.595
661.297
662.994
664.688
666.381
668.076
669.775
671.48
673.193
674.918
676.656
678.412
680.188
681.988
683.815
685.673
687.567
689.5
691.477
693.502
695.581
697.717
699.917
702.184
704.525
706.943
709.446
712.037
714.724
717.513
720.42
723.496
726.77
730.213
733.838
737.656
741.679
745.922
750.398
755.123
760.112
765.383
770.955
776.847
783.083
789.686
796.686
804.113
812.002
820.39
829.32
838.837
848.987
859.822
871.395
883.763
896.987
911.131
926.265
942.463
959.805
978.378
998.285
1019.65
1042.62
1067.38
1094.16
1123.17
1154.64
1188.79
1225.82
1265.94
1309.36
1356.3
1407
1461.78
1521.08
1585.39
1655.2
1730.95
1813
1901.58
1997.03
2099.68
2209.73
2327.53
2453.73
2589.21
2735.06
2892.49
3062.49
3245.88
3443.29
3655.21
3882.92
4126.31
4384.86
4657.82
4944.23
5242.54
5550.72
5866.55
6187.4
6509.8
6829.66
7142.31
7442.03
7721.63
7972.59
8184.41
8344.96
8439.77
8455.41
8382.62
8219.72
7972.35
7655.27
7284.71
6877.06
6446.96
6007.15
5569.16
5140.91
4730.74
4344.78
3987.11
3658.77
3360.67
3092.01
2850.5
2634.58
2442.01
2270.52
2118.18
1982.41
1861.35
1753.56
1656.41
1569.86
1492.66
1423.19
1361.34
1306.14
1257.18
1214.13
1176.63
1144.56
1117.76
1096.13
1079.64
1068.28
1062.09
1061.07
1065.27
1074.77
1089.62
1109.85
1135.44
1166.36
1202.58
1243.81
1289.68
1339.6
1392.81
1448.4
1505.3
1562.35
1618.35
1672.15
1722.73
1769.25
1811.09
1847.9
1879.56
1906.17
1927.98
1945.39
1958.82
1968.76
1975.67
1979.97
1982.04
1982.21
1980.75
1977.86
1973.72
1968.47
1962.23
1955.09
1947.17
1938.54
1929.31
1919.57
1909.45
1899.07
1888.55
1878.04
1867.68
1857.59
1847.94
1838.85
1830.46
1822.9
1816.27
1810.68
1806.19
1802.86
1800.84
1799.65
1799.19
1799.38
1800.15
1801.4
1803.03
1804.95
1807.02
1809.14
1811.17
1812.99
1814.48
1815.55
1816.09
1816.01
1815.23
1813.67
1811.27
1807.96
1803.67
1798.31
1791.76
1783.85
1774.3
1763.41
1751.66
1739.02
1725.65
1711.69
1697.28
1682.56
1667.64
1652.66
1637.74
1623
1608.55
1594.49
1580.93
1567.92
1555.55
1543.86
1532.92
1522.76
1513.49
1505.15
1497.89
1491.79
1487.14
1484.17
1483.55
1486.24
1495.02
1512.68
1543.1
501.188
504.764
508.354
511.957
515.574
519.204
522.847
526.502
530.169
533.848
537.538
541.239
544.95
548.673
552.405
556.148
559.901
563.663
567.435
571.216
575.007
578.807
582.617
586.435
590.262
594.098
597.943
601.796
605.658
609.528
613.406
617.292
621.185
625.086
628.995
632.91
636.831
640.759
644.692
648.63
652.573
656.52
660.472
664.426
668.384
672.344
676.306
680.27
684.236
688.202
692.169
696.135
700.101
704.066
708.028
711.988
715.944
719.896
723.842
727.781
731.712
735.634
739.544
743.442
747.326
751.193
755.043
758.873
762.681
766.466
770.225
773.956
777.658
781.33
784.969
788.575
792.147
795.685
799.187
802.654
806.085
809.481
812.841
816.166
819.457
822.712
825.933
829.12
832.273
835.393
838.481
841.536
844.56
847.554
850.518
853.452
856.346
859.178
861.997
864.824
867.66
870.507
873.37
876.25
879.15
882.076
885.03
888.018
891.046
894.119
897.245
900.431
903.685
907.015
910.431
913.94
917.55
921.27
925.107
929.07
933.165
937.4
941.782
946.319
951.019
955.888
960.942
966.203
971.801
977.704
983.896
990.392
997.212
1004.37
1011.89
1019.79
1028.09
1036.82
1046
1055.65
1065.81
1076.52
1087.83
1099.79
1112.47
1125.94
1140.27
1155.54
1171.83
1189.2
1207.73
1227.48
1248.51
1270.88
1294.67
1319.93
1346.75
1375.2
1405.36
1437.32
1471.19
1507.1
1545.23
1585.81
1629.08
1675.28
1724.67
1777.43
1833.78
1893.89
1957.97
2026.11
2098.53
2175.49
2257.2
2343.89
2435.86
2533.56
2637.59
2748.61
2867.49
2995.14
3132.34
3279.85
3438.38
3608.66
3791.89
3989.69
4202.27
4429.67
4671.76
4928.3
5198.83
5481.78
5775.55
6078.36
6388.02
6701.51
7016.41
7329.66
7637.47
7935.13
8216.79
8475.29
8701.91
8885.64
9013.96
9071.61
9045.86
8928.61
8719.49
8426.78
8066.07
7653.99
7207.21
6740.42
6268.4
5801.23
5348.94
4920.16
4519.99
4151.05
3814.06
3509.17
3234.23
2987.53
2766.83
2569.53
2393.95
2237.51
2097.88
1974.08
1863.2
1763.75
1675.58
1596.11
1524.83
1460.76
1402.94
1351.06
1304.56
1263.15
1226.65
1194.89
1167.82
1145.41
1127.67
1114.65
1106.4
1102.9
1104.29
1110.73
1122.34
1139.25
1161.58
1189.4
1222.76
1261.57
1305.96
1355.82
1410.78
1470.17
1533.18
1598.69
1665.42
1731.91
1796.7
1858.36
1915.65
1967.6
2013.53
2053.13
2086.37
2113.49
2134.96
2151.32
2163.21
2171.27
2176.08
2178.19
2178.04
2176
2172.36
2167.33
2161.09
2153.76
2145.45
2136.25
2126.23
2115.49
2104.1
2092.18
2079.85
2067.25
2054.52
2041.81
2029.27
2017.07
2005.37
1994.31
1984.05
1974.73
1966.47
1959.37
1953.45
1949.21
1945.97
1943.5
1941.71
1940.5
1939.79
1939.5
1939.54
1939.81
1940.19
1940.58
1940.86
1940.94
1940.7
1940.07
1938.96
1937.28
1934.98
1931.99
1928.26
1923.71
1918.27
1911.84
1904.26
1895.27
1884.83
1873.66
1861.77
1849.33
1836.48
1823.36
1810.1
1796.81
1783.59
1770.56
1757.81
1745.45
1733.58
1722.27
1711.6
1701.62
1692.39
1683.98
1676.43
1669.84
1664.28
1659.94
1656.91
1655.61
1656.33
1659.98
1668.17
1684.78
1713.69
1761.28
641.439
646.948
652.472
658.01
663.562
669.127
674.706
680.298
685.902
691.519
697.149
702.79
708.444
714.111
719.79
725.482
731.187
736.905
742.637
748.382
754.142
759.916
765.704
771.507
777.325
783.158
789.006
794.87
800.749
806.642
812.551
818.475
824.414
830.367
836.334
842.315
848.309
854.316
860.335
866.367
872.41
878.466
884.535
890.616
896.711
902.821
908.946
915.088
921.247
927.423
933.617
939.83
946.06
952.308
958.572
964.852
971.146
977.452
983.769
990.093
996.422
1002.75
1009.08
1015.41
1021.73
1028.03
1034.32
1040.59
1046.84
1053.05
1059.24
1065.4
1071.52
1077.62
1083.68
1089.72
1095.73
1101.73
1107.71
1113.67
1119.62
1125.57
1131.49
1137.41
1143.32
1149.21
1155.08
1160.94
1166.77
1172.59
1178.38
1184.14
1189.88
1195.59
1201.28
1206.93
1212.55
1218.14
1223.66
1229.13
1234.64
1240.2
1245.8
1251.46
1257.17
1262.95
1268.81
1274.77
1280.86
1287.1
1293.52
1300.13
1306.97
1314.05
1321.38
1328.97
1336.84
1344.98
1353.41
1362.11
1371.11
1380.38
1389.95
1399.81
1409.97
1420.43
1431.32
1442.74
1454.58
1466.88
1479.63
1492.87
1506.62
1520.89
1535.7
1551.08
1567.04
1583.62
1600.85
1618.76
1637.4
1656.82
1677.09
1698.28
1720.49
1743.82
1768.36
1794.21
1821.46
1850.19
1880.45
1912.32
1945.83
1981.04
2018.01
2056.78
2097.43
2140.02
2184.6
2231.15
2279.8
2330.64
2383.76
2439.22
2497.13
2557.6
2620.82
2687.05
2756.6
2829.84
2907.19
2989.13
3076.23
3169.05
3268.16
3374.1
3487.43
3608.7
3738.48
3877.55
4027.44
4189.13
4363.04
4549.52
4748.9
4961.52
5187.9
5428.3
5681.82
5947.51
6224.36
6511.1
6804.84
7104.1
7407.05
7711.4
8014.36
8312.57
8602
8877.74
9133.71
9362.58
9555.41
9701.29
9786.7
9796.98
9719.96
9549.1
9285.72
8940.5
8529.45
8069.8
7577.93
7071.71
6564.15
6067.15
5592.28
5145.96
4732.45
4352.44
4006.85
3694.48
3413.19
3160.9
2935.01
2733.69
2554.04
2393.24
2250.67
2123.36
2008.51
1907.47
1816.83
1735.39
1662.43
1596.46
1536.88
1482.92
1433.95
1389.65
1349.68
1313.88
1282.17
1254.52
1230.98
1211.62
1196.54
1185.75
1179.24
1177.26
1180.01
1187.7
1200.53
1218.73
1242.49
1272.01
1307.45
1348.93
1396.48
1450.14
1510.28
1576.49
1648.15
1724.17
1803.23
1883.64
1963.49
2040.85
2113.82
2180.8
2240.55
2292.33
2335.82
2371.17
2398.86
2419.65
2434.39
2443.98
2449.31
2451.16
2450.21
2447.01
2441.98
2435.44
2427.6
2418.63
2408.63
2397.68
2385.82
2373.12
2359.63
2345.44
2330.66
2315.42
2299.88
2284.2
2268.55
2253.09
2238.03
2223.54
2209.81
2197.03
2185.35
2174.92
2165.69
2158.65
2153.06
2148.39
2144.46
2141.17
2138.4
2136.09
2134.15
2132.5
2131.04
2129.69
2128.34
2126.89
2125.26
2123.37
2121.14
2118.5
2115.39
2111.76
2107.56
2102.73
2097.22
2090.93
2083.72
2075.35
2065.59
2055.04
2043.98
2032.54
2020.9
2009.22
1997.61
1986.18
1975
1964.17
1953.76
1943.89
1934.62
1926.05
1918.22
1911.22
1905.06
1899.85
1895.61
1892.5
1890.56
1890.09
1891.19
1894.43
1900.23
1909.9
1926.47
1954.76
2000.62
2075
895.655
904.505
913.371
922.255
931.156
940.074
949.009
957.962
966.933
975.924
984.937
993.972
1003.03
1012.12
1021.23
1030.37
1039.55
1048.76
1058
1067.27
1076.58
1085.93
1095.32
1104.75
1114.21
1123.71
1133.25
1142.83
1152.45
1162.11
1171.8
1181.53
1191.3
1201.11
1210.95
1220.82
1230.73
1240.68
1250.66
1260.67
1270.74
1280.86
1291.03
1301.28
1311.6
1322.01
1332.51
1343.11
1353.8
1364.6
1375.49
1386.49
1397.58
1408.76
1420.03
1431.39
1442.81
1454.31
1465.86
1477.46
1489.1
1500.77
1512.46
1524.16
1535.86
1547.55
1559.22
1570.86
1582.46
1594.04
1605.59
1617.16
1628.77
1640.45
1652.26
1664.21
1676.34
1688.65
1701.15
1713.82
1726.66
1739.64
1752.74
1765.93
1779.2
1792.52
1805.87
1819.22
1832.55
1845.86
1859.12
1872.32
1885.45
1898.5
1911.46
1924.32
1937.08
1949.73
1962.27
1974.67
1986.97
1999.27
2011.58
2023.9
2036.24
2048.6
2061.01
2073.52
2086.14
2098.95
2111.96
2125.24
2138.8
2152.69
2166.91
2181.49
2196.41
2211.69
2227.31
2243.27
2259.57
2276.21
2293.17
2310.46
2328.09
2346.22
2364.89
2384.01
2403.58
2423.62
2444.15
2465.2
2486.78
2508.89
2531.5
2554.63
2578.33
2602.65
2627.61
2653.27
2679.65
2706.8
2734.74
2763.48
2793.04
2823.45
2854.73
2886.92
2920.07
2954.28
2989.63
3026.23
3064.21
3103.69
3144.83
3187.77
3232.68
3279.72
3329.05
3380.83
3435.29
3492.62
3553.03
3616.75
3684
3755.05
3830.18
3909.7
3993.99
4083.45
4178.56
4280.43
4389.87
4507.37
4633.47
4768.67
4913.51
5068.54
5234.28
5411.27
5600.67
5802.65
6016.72
6242.46
6479.45
6727.24
6984.76
7249.93
7522.32
7801.24
8085.61
8373.93
8664.09
8953.43
9238.61
9515.64
9779.84
10025.7
10246.6
10435.3
10582.2
10676.7
10705
10653.6
10511.5
10274.9
9945.89
9537.66
9066.54
8549.86
8008.07
7457.2
6911.73
6386.71
5890.28
5427.89
5000.49
4609.81
4255.56
3935.21
3646.79
3388.53
3157.91
2951.73
2767.16
2603.63
2457.52
2325.24
2209.06
2105.06
2011.42
1928
1852.9
1785.17
1724.04
1668.53
1618.05
1571.98
1529.85
1491.39
1456.39
1424.77
1396.54
1371.81
1350.71
1333.44
1319.85
1310
1304.22
1302.77
1305.95
1314.04
1327.33
1346.13
1370.76
1401.53
1438.76
1482.77
1533.81
1592.09
1657.54
1730.74
1812.04
1900.51
1994.99
2093.66
2194.28
2294.26
2390.77
2481.16
2563.13
2635
2695.78
2745.23
2783.76
2812.26
2831.94
2844.14
2850.2
2851.36
2848.74
2843.23
2835.52
2826.13
2815.39
2803.52
2790.64
2776.82
2762.08
2746.41
2729.82
2712.33
2694.03
2675.04
2655.52
2635.63
2615.56
2595.51
2575.68
2556.32
2537.66
2519.93
2503.38
2488.24
2474.55
2463
2454.22
2446.85
2440.45
2434.81
2429.76
2425.21
2421.1
2417.34
2413.87
2410.59
2407.43
2404.31
2401.15
2397.87
2394.41
2390.71
2386.71
2382.39
2377.7
2372.6
2367.06
2361
2354.3
2346.74
2338
2328.32
2318.31
2308.13
2298
2288.11
2278.59
2269.54
2260.98
2253
2245.66
2239.07
2233.29
2228.4
2224.45
2221.53
2219.65
2218.94
2219.4
2221.27
2224.59
2229.78
2236.96
2246.97
2260.45
2279.47
2310.68
2357.13
2430.05
2548.87
1399.96
1415.23
1430.53
1445.86
1461.22
1476.61
1492.06
1507.55
1523.12
1538.75
1554.48
1570.29
1586.21
1602.23
1618.36
1634.61
1650.98
1667.47
1684.07
1700.79
1717.63
1734.58
1751.65
1768.83
1786.11
1803.5
1820.98
1838.57
1856.25
1874.02
1891.88
1909.82
1927.84
1945.95
1964.13
1982.39
2000.73
2019.2
2037.81
2056.65
2075.77
2095.26
2115.16
2135.53
2156.38
2177.73
2199.55
2221.84
2244.55
2267.66
2291.13
2314.92
2339
2363.32
2387.85
2412.54
2437.36
2462.26
2487.22
2512.19
2537.16
2562.08
2586.93
2611.69
2636.33
2660.82
2685.14
2709.28
2733.23
2756.99
2780.6
2804.12
2827.62
2851.2
2874.94
2898.93
2923.19
2947.75
2972.61
2997.72
3023.03
3048.5
3074.05
3099.63
3125.16
3150.61
3175.9
3201
3225.86
3250.45
3274.73
3298.7
3322.32
3345.54
3368.29
3390.58
3412.42
3433.85
3454.89
3475.58
3496.05
3516.18
3535.94
3555.34
3574.35
3592.96
3611.17
3628.94
3646.27
3663.13
3679.52
3695.43
3710.87
3725.88
3740.48
3754.72
3768.64
3782.3
3795.77
3809.09
3822.33
3835.55
3848.81
3862.16
3875.66
3889.45
3903.53
3917.98
3932.84
3948.17
3964.02
3980.44
3997.5
4015.23
4033.69
4052.95
4073.06
4094.11
4116.14
4139.22
4163.42
4188.8
4215.42
4243.34
4272.65
4303.4
4335.68
4369.57
4405.17
4442.56
4481.85
4523.16
4566.61
4612.34
4660.5
4711.34
4765.05
4821.78
4881.79
4945.39
5012.79
5084.2
5159.87
5240.07
5325.12
5415.35
5511.15
5612.96
5721.27
5836.6
5959.54
6091.17
6232.13
6382.71
6543.16
6713.76
6894.69
7086.06
7287.86
7499.91
7720.52
7948.58
8183.79
8425.86
8674.53
8929.43
9190.04
9455.49
9724.57
9995.57
10266.2
10533.2
10792.9
11040.2
11269.6
11474.4
11647.3
11780
11863.4
11887.9
11839.3
11705.9
11480
11158.2
10746.9
10259.9
9714.33
9131.71
8531.24
7931.16
7349.93
6797.54
6280.69
5801.38
5361.36
4960.61
4595.96
4266.93
3971.87
3707.57
3470.29
3258.96
3071.35
2903.36
2751.4
2618.52
2499.48
2392.06
2296.43
2210.37
2132.74
2062.97
1999.95
1942.91
1891.19
1844.04
1800.91
1761.25
1724.67
1690.93
1659.89
1631.52
1605.94
1583.44
1564.25
1547.99
1534.76
1524.98
1519.04
1517.3
1520.12
1527.87
1540.97
1559.81
1584.83
1616.5
1655.3
1701.77
1756.4
1819.68
1892.01
1973.64
2064.55
2166.39
2278.8
2400.34
2528.73
2660.72
2792.69
2920.37
3039.62
3146.83
3239.46
3316.01
3376.23
3420.93
3451.62
3470.25
3478.92
3479.73
3474.58
3465.07
3452.47
3437.71
3421.42
3404
3385.68
3366.55
3346.58
3325.69
3303.77
3280.72
3256.56
3231.38
3205.36
3178.65
3151.45
3123.99
3096.52
3069.34
3042.73
3017.01
2992.55
2969.7
2948.57
2929.42
2915.03
2903.41
2893.56
2884.89
2876.97
2869.68
2862.95
2856.67
2850.77
2845.2
2839.9
2834.79
2829.81
2824.9
2820.02
2815.1
2810.12
2805.04
2799.86
2794.56
2789.12
2783.52
2777.65
2771.29
2764.15
2756.04
2747.68
2739.41
2731.53
2724.27
2717.86
2712.35
2707.74
2704.07
2701.4
2699.84
2699.42
2700.27
2702.4
2705.95
2710.89
2717.42
2725.52
2735.55
2747.5
2762.05
2779.35
2800.63
2827.16
2862.58
2919.44
2998.18
3117.56
3315.37
2528.5
2557.56
2586.68
2615.91
2645.34
2675.05
2705.12
2735.63
2766.62
2798.13
2830.16
2862.72
2895.79
2929.35
2963.37
2997.8
3032.61
3067.76
3103.2
3138.91
3174.85
3210.99
3247.31
3283.78
3320.38
3357.08
3393.88
3430.74
3467.66
3504.63
3541.65
3578.7
3615.79
3652.92
3690.07
3727.25
3764.49
3801.85
3839.44
3877.43
3915.99
3955.32
3995.56
4036.8
4079.07
4122.35
4166.56
4211.59
4257.33
4303.64
4350.39
4397.45
4444.69
4492
4539.24
4586.2
4632.8
4678.96
4724.6
4769.67
4814.11
4857.86
4900.9
4943.17
4984.63
5025.27
5065.04
5103.91
5141.85
5178.81
5214.75
5249.57
5283.2
5315.53
5346.49
5376.03
5404.14
5430.81
5456.09
5480.04
5502.71
5524.19
5544.54
5563.85
5582.19
5599.62
5616.19
5631.98
5647.02
5661.36
5675.04
5688.11
5700.63
5712.63
5724.19
5735.43
5746.44
5757.54
5768.71
5779.83
5790.59
5800.99
5811.04
5820.74
5830.11
5839.17
5847.93
5856.41
5864.64
5872.63
5880.41
5888.01
5895.46
5902.78
5910.02
5917.2
5924.38
5931.59
5938.88
5946.29
5953.87
5961.67
5969.75
5978.15
5986.93
5995.91
6005.53
6015.85
6026.95
6038.88
6051.71
6065.51
6080.37
6096.41
6113.77
6132.51
6152.7
6174.42
6197.72
6222.69
6249.41
6277.96
6308.42
6340.91
6375.52
6412.36
6451.54
6493.19
6537.44
6584.42
6634.3
6687.21
6743.34
6802.85
6865.92
6932.94
7004.07
7079.46
7159.28
7243.7
7332.92
7427.17
7526.67
7631.69
7742.49
7859.36
7982.58
8112.47
8249.33
8393.45
8545.12
8703.97
8870
9043.62
9225.15
9414.84
9612.82
9819.06
10033.4
10255.4
10484.2
10718.9
10958.2
11201.1
11446.8
11694
11941.4
12186.9
12427.8
12660.5
12880.4
13081.7
13257.8
13401.2
13503.5
13555.8
13548.8
13473.3
13319.6
13076.6
12738.2
12304.2
11784.2
11195.4
10558.5
9894.65
9227.74
8579.31
7962.22
7383.56
6845.13
6349.21
5896.51
5483.91
5110.55
4773.86
4469.34
4197.05
3954.94
3739.23
3544.26
3371.37
3219.37
3083.13
2960.53
2851.88
2754.14
2665.83
2586.42
2514.56
2449.54
2390.79
2337.66
2289.52
2245.88
2206.06
2169.56
2135.81
2104.42
2075.15
2047.97
2022.88
2000.02
1980.13
1962.03
1946.05
1932.74
1922.52
1915.89
1913.28
1915.21
1922.13
1934.6
1953.1
1978.25
2010.63
2050.92
2099.84
2158.17
2226.72
2306.33
2397.73
2501.54
2617.71
2747.12
2893.14
3054.24
3227.85
3410.12
3594.66
3775.72
3945.99
4099.81
4232.36
4341.15
4425.56
4486.57
4526.37
4547.96
4554.72
4549.98
4536.79
4517.63
4494.45
4468.66
4441.21
4412.68
4383.35
4353.28
4322.29
4290.06
4256.32
4220.93
4183.95
4145.55
4105.93
4065.32
4023.97
3982.21
3940.39
3898.93
3858.24
3818.81
3781.31
3745.91
3713.22
3684.67
3663.8
3647.26
3633.24
3620.63
3609.13
3598.51
3588.54
3579.15
3570.3
3561.95
3554.04
3546.55
3539.42
3532.62
3526.12
3519.9
3513.95
3508.29
3502.95
3497.94
3493.31
3489.02
3484.84
3480.45
3475.52
3470.39
3465.79
3462.08
3459.61
3458.83
3459.77
3462.34
3466.54
3472.42
3480.09
3489.6
3501.11
3514.6
3530.29
3548.08
3568.36
3590.97
3616.55
3645.01
3677.44
3714.11
3756.87
3808.93
3878.61
3985.83
4125.7
4329.04
4677.35
5404.57
5463.37
5522.05
5580.84
5639.98
5699.74
5760.36
5822.05
5884.95
5949.1
6014.47
6080.97
6148.48
6216.84
6285.9
6355.34
6424.95
6494.56
6564.04
6633.27
6702.13
6770.53
6838.41
6905.69
6972.33
7038.28
7103.51
7167.98
7231.7
7294.95
7357.87
7420.44
7482.61
7544.36
7605.65
7666.43
7726.62
7786.13
7844.82
7902.52
7959.05
8014.26
8068.01
8120.25
8170.97
8220.18
8267.94
8314.32
8359.38
8403.07
8445.45
8486.57
8526.48
8565.22
8602.79
8639.19
8674.45
8708.61
8741.67
8773.64
8804.51
8834.29
8862.95
8890.5
8916.91
8942.16
8966.26
8989.16
9010.88
9031.41
9050.76
9068.92
9085.89
9101.65
9116.2
9129.54
9141.67
9152.62
9162.4
9171.02
9178.51
9184.89
9190.22
9194.53
9197.88
9200.33
9201.97
9202.86
9203.06
9202.59
9201.53
9199.98
9198.54
9197.3
9196.28
9195.61
9195.21
9194.6
9193.77
9192.73
9191.52
9190.15
9188.66
9187.09
9185.47
9183.84
9182.26
9180.75
9179.38
9178.19
9177.23
9176.54
9176.19
9176.22
9176.69
9177.64
9179.14
9181.24
9184
9187.47
9191.7
9196.75
9202.68
9209.55
9217.42
9226.25
9235.86
9247.06
9259.91
9274.46
9290.75
9308.87
9328.88
9350.85
9374.8
9400.8
9428.91
9459.2
9491.74
9526.58
9563.81
9603.5
9645.71
9690.52
9738.02
9788.28
9841.38
9897.42
9956.49
10018.7
10084.1
10152.9
10225.1
10300.9
10380.5
10463.8
10550.9
10642.2
10737.9
10838
10943
11053
11168.1
11288.7
11415
11547.2
11685.5
11830.2
11981.6
12139.9
12305.2
12477.8
12657.7
12845.1
13039.9
13242
13451.1
13666.6
13887.6
14112.9
14340.8
14568.5
14793.3
15012.8
15225
15427.2
15616.3
15788
15937.2
16057.6
16142
16182.1
16169.8
16096.8
15954.2
15733.3
15426
15029.3
14539.2
13955.5
13295.7
12578.4
11823.5
11062.5
10321.8
9620.24
8963.39
8354.52
7796.8
7287.51
6820.63
6396.27
6013.63
5668.86
5360.31
5083.14
4830.59
4606.92
4411.07
4237.81
4082.68
3944.95
3823.1
3713.92
3615.92
3528.49
3449.64
3378.29
3313.77
3255.17
3202.17
3154.32
3111.36
3072.71
3038.12
3006.95
2978.69
2952.7
2928.52
2905.89
2885.19
2866.43
2848.99
2831.82
2815.75
2801.24
2788.83
2778.94
2772.25
2769.3
2770.79
2777.27
2789.46
2807.94
2833.47
2866.77
2908.64
2959.98
3021.83
3095.27
3181.44
3281.71
3397.32
3529.41
3679.31
3845.62
4030.87
4243.12
4481.2
4737.63
5008.22
5279.25
5541.9
5785.4
6001.77
6185.73
6334.4
6447.33
6526.41
6575.32
6599.03
6602.71
6591
6567.85
6536.45
6499.25
6457.99
6413.89
6367.6
6319.16
6268.1
6213.82
6155.9
6094.43
6029.84
5962.49
5892.75
5821.03
5747.78
5673.6
5599.09
5524.89
5451.73
5380.73
5312.28
5247.02
5185.93
5134.77
5097.86
5069.72
5045.43
5023.89
5004.82
4986.99
4970.3
4954.71
4940.18
4926.69
4914.24
4902.81
4892.37
4882.93
4874.51
4867.12
4860.84
4855.74
4851.93
4849.55
4848.69
4849.18
4850.59
4852.56
4855.18
4859.31
4865.27
4873.87
4885.94
4901.66
4920.66
4942.87
4968.32
4997.2
5029.52
5065.56
5105.23
5148.93
5196.39
5248.33
5304.3
5365.51
5431.57
5504.32
5584.54
5675.05
5787.36
5941.81
6152.49
6414.86
6768.38
7414.49
12698.6
12793.1
12885.6
12976
13064.1
13149.8
13232.8
13313.1
13390.6
13465.4
13537.6
13607.2
13674.5
13739.5
13802.5
13863.3
13922.3
13979.4
14035
14089.1
14141.7
14193
14243
14291.7
14339.4
14385.9
14431.3
14475.7
14519.1
14562.3
14605.6
14648.8
14691.7
14734.2
14776.2
14817.5
14858.1
14897.9
14936.7
14974.6
15011.3
15046.8
15081
15114
15145.6
15175.7
15204.4
15231.6
15257.2
15281.3
15303.7
15324.5
15343.7
15361.4
15377.7
15392.7
15406.4
15418.8
15429.9
15439.7
15448.3
15455.6
15461.7
15466.5
15470.1
15472.5
15473.7
15473.7
15472.5
15470.2
15466.9
15462.6
15457.2
15450.8
15443.4
15435.1
15425.9
15415.9
15405.1
15393.5
15381.3
15368.3
15354.7
15340.5
15325.9
15311.8
15298.1
15284.7
15271.4
15258.2
15245.1
15231.9
15217.9
15203.3
15188.1
15172.2
15155.9
15139.1
15122.1
15105
15087.9
15070.9
15054.2
15037.8
15021.8
15006.3
14991.4
14977.2
14963.8
14951.3
14939.7
14929.1
14919.5
14911.1
14903.9
14898
14893.4
14890.3
14888.5
14888.3
14889.7
14892.6
14897.3
14903.6
14911.8
14921.7
14933.5
14948.1
14965.6
14985.8
15008.8
15034.5
15063.1
15094.5
15128.6
15165.6
15205.5
15248.3
15294
15342.7
15394.4
15449.1
15506.9
15567.9
15632
15699.3
15769.9
15843.8
15921
16001.7
16086
16173.7
16265.2
16360.4
16459.4
16562.4
16669.5
16780.6
16896
17015.7
17139.7
17268.2
17401.3
17539.1
17681.6
17829.1
17981.6
18139.1
18301.8
18469.7
18642.7
18820.7
19003.5
19190.8
19382.1
19576.4
19772.7
19969.4
20164.1
20353.7
20534.3
20699.3
20841.3
20955.6
21038.5
21085.7
21091.9
21051.3
20957.5
20804.6
20585.9
20293.9
19926.9
19477.3
18942.1
18321.7
17620.1
16854.2
16021
15144.1
14259.7
13396.3
12565.5
11778.6
11061.2
10429.4
9857.77
9338.46
8873.48
8454.12
8072.58
7727.01
7420.61
7149.81
6911.22
6698.15
6506.76
6339.65
6193.3
6068.87
5960.59
5865.73
5782.72
5709.61
5645.18
5588.5
5538.28
5493.62
5454.03
5418.79
5387.88
5360.87
5337.85
5318.47
5302.62
5289.77
5279.69
5271.81
5265.7
5260.86
5256.36
5251.46
5246.33
5240.77
5234.92
5229.33
5224.69
5221.37
5220.34
5222.16
5227.82
5237.85
5253.15
5274.14
5301.77
5336.6
5379.5
5431.29
5493.15
5566.3
5651.66
5751.15
5866.53
5999.67
6152.34
6325.78
6522.61
6739.87
6977.5
7255.85
7598.13
7965.63
8360.43
8763.76
9161.97
9544.55
9900.7
10220.5
10496.1
10723.6
10905
11045
11148.4
11220.4
11265.4
11287.7
11291
11278.5
11252.5
11214.2
11163.3
11098.4
11018.2
10923.5
10816.3
10697.8
10569.4
10432.2
10287.5
10136.6
9981.01
9822.03
9661.12
9500.97
9342.01
9186.32
9034.01
8887.29
8754.86
8666.74
8593.56
8532.45
8483.1
8437.31
8394.88
8355.7
8319.72
8286.95
8257.39
8231.06
8207.99
8188.22
8171.83
8158.93
8149.66
8144.2
8142.79
8145.82
8153.69
8166.41
8183.46
8204.33
8229.51
8260.53
8296.17
8338.63
8389.79
8450.29
8518.74
8594.9
8678.75
8770.55
8870.21
8978.11
9093.87
9218.08
9349.95
9490.54
9638.69
9796.13
9961.98
10138.4
10329.3
10540.4
10828.2
11152.1
11563.8
12057.6
12609
13751.9
28781.8
28861.7
28938.6
29012.4
29083.3
29151.1
29215.8
29277.5
29336.1
29391.6
29444
29493.4
29539.7
29583.1
29623.4
29661.2
29696.3
29728.8
29758.7
29786
29810.8
29833.1
29853
29870.4
29885.4
29898.1
29908.4
29916.5
29922.4
29925.3
29924.9
29921.6
29915.6
29907
29896
29882.9
29867.7
29850.6
29831.7
29811.1
29788.8
29765.1
29740
29713.5
29685.8
29656.9
29627
29596
29564
29531.4
29498.4
29464.7
29430.6
29395.9
29360.7
29325
29288.7
29251.9
29214.5
29176.7
29138.4
29099.7
29060.7
29021.3
28981.6
28941.5
28901.4
28860.9
28819.9
28778.9
28738.2
28697.9
28657.8
28617.9
28578.2
28539.9
28503.7
28469.3
28436.4
28404.8
28374.4
28345.1
28316.8
28289.5
28263.1
28236.5
28210
28183.8
28158.2
28133.4
28109.8
28087.2
28065.9
28045.8
28027.2
28010
27994.4
27980.3
27967.9
27957.2
27948.3
27941.2
27935.8
27932.4
27930.9
27931.2
27933.6
27937.9
27944.2
27952.6
27963
27975.5
27990.1
28006.8
28025.6
28046.6
28069.7
28095
28122.4
28152
28183.7
28217.6
28253.7
28291.9
28332.3
28374.8
28422.2
28473
28527.5
28584.8
28644.1
28705.9
28770.1
28836.9
28906
28977.5
29051.5
29128
29206.8
29287.8
29371.2
29456.8
29544.6
29634.6
29726.7
29820.9
29917.1
30015.3
30115.4
30217.5
30321.4
30427.1
30534.7
30644
30755.1
30868.1
30983
31099.5
31217.9
31338.3
31460.6
31584.8
31710.9
31838.8
31968.4
32099.6
32232.2
32366
32500.6
32635.8
32771
32905.5
33038.4
33168.5
33294
33412.7
33521.5
33616.3
33691.5
33739.5
33751.9
33710.7
33580.6
33354.1
33033
32619.4
32115.2
31521.9
30839.8
30074.8
29235.3
28319.9
27352.2
26356.6
25334.9
24307.4
23286.4
22295.2
21346.2
20443.4
19619
18886.6
18216.1
17577.9
17031.9
16649.7
16319.2
16032.4
15786.8
15578.7
15402.2
15253.8
15132.5
15034.6
14956.8
14895.9
14849.4
14816.3
14794.3
14779.9
14773.5
14774.3
14781.9
14794.8
14811.8
14832.8
14857
14883.7
14913.1
14944.7
14979.2
15016.1
15056.1
15098.5
15143.4
15189.8
15237.4
15285.3
15332.6
15378.5
15422.2
15463.2
15501.1
15536.1
15568
15597.3
15625
15651.2
15677.3
15703.6
15731.2
15760.4
15792.3
15826.5
15864.2
15905.3
15950.3
15999.7
16054
16114.2
16179.8
16252.4
16333.5
16425.2
16526.8
16640.5
16768.4
16911
17070.7
17253.1
17428.4
17630.9
17947.2
18324.4
18737.9
19190.4
19680
20197.8
20731.2
21274.7
21823.7
22366.8
22894.8
23402.2
23883.8
24335.4
24755
25143.1
25498.9
25820.4
26103.9
26339.6
26514.4
26630.7
26694.5
26706.1
26668.2
26582.8
26452.3
26280
26069.1
25822.8
25545.1
25244.1
24920.8
24580.8
24217.2
23852.5
23477.2
23091
22732.5
22442.8
22252.8
22075
21908.7
21753.5
21609.8
21478.1
21358.7
21252
21158.4
21078.3
21012.1
20960.4
20923.6
20902.4
20897.5
20909.6
20939.4
20987.5
21054.3
21139.9
21244.7
21369.6
21516.3
21686.4
21883.9
22110.2
22358.1
22625.9
22912.5
23216.7
23537.1
23872.1
24219.6
24577.6
24943.9
25315.9
25692.3
26070
26449.4
26827.2
27226.8
27698.7
28179
28663.5
29209.1
29829.3
30265.9
31710.7
71796.2
71775.7
71758
71742.7
71729.9
71719.4
71711.1
71704.9
71700.9
71698.9
71698.9
71700.9
71704.8
71710.7
71718.3
71727.9
71739.2
71752.4
71767.4
71784.2
71802.7
71822.9
71844.9
71868.5
71893.8
71920.7
71949.2
71979.3
72011
72044.2
72078.8
72115
72152.6
72191.6
72232
72273.9
72317
72361.5
72407.3
72454.5
72502.9
72552.5
72603.4
72655.6
72708.9
72763.5
72819.3
72876.2
72934.4
72993.6
73054.1
73115.7
73178.4
73242.3
73307.4
73373.5
73440.8
73509.3
73578.9
73649.7
73721.6
73794.7
73868.9
73944.4
74021
74098.8
74177.8
74257.9
74339.4
74422.2
74506.2
74591.4
74677.7
74765.3
74854.1
74944.5
75036.3
75129.6
75224.2
75320.1
75417.3
75515.7
75615.3
75716.1
75818
75921.1
76025.3
76130.7
76237.1
76344.6
76453.2
76562.9
76673.6
76785.4
76898.3
77012.1
77127
77242.8
77359.7
77477.4
77596.1
77715.6
77835.9
77957
78078.9
78201.6
78324.8
78448.8
78573.3
78698.3
78823.8
78949.7
79075.9
79202.5
79329.2
79456.2
79583.2
79710.2
79837.2
79964
80090.7
80217
80342.9
80468.4
80593.3
80717.6
80841.6
80965.2
81087.9
81209.6
81330.4
81450
81568.3
81685.2
81800.4
81913.9
82025.5
82135
82242.3
82347.2
82449.7
82549.5
82646.5
82740.5
82831.5
82919.1
83003.4
83084
83160.9
83233.9
83302.7
83367.3
83427.3
83482.7
83533.1
83578.5
83618.4
83652.5
83680.5
83702.1
83717.3
83725.6
83727.1
83721.5
83708.6
83688.3
83660.6
83625.3
83582.5
83532.2
83474.6
83410
83338.9
83261.8
83179.7
83093.7
83005.5
82917
82830.7
82749.7
82677.4
82617.1
82576.8
82557.2
82557.8
82576.7
82612
82662.1
82726.2
82803.1
82892.5
82994.8
83121.6
83295.7
83472.8
83652.5
83834.6
84018
84201.3
84382.1
84560.4
84737.7
84914
85088.6
85262.2
85437.1
85613.5
85791.3
85971
86152.9
86336.9
86522.7
86710.8
86901.1
87093.4
87287.8
87484.1
87682.5
87883
88085.5
88290
88496.5
88704.9
88915.3
89127.7
89341.9
89558
89775.9
89995.7
90217.3
90440.7
90666
90893.2
91122.3
91353.5
91586.7
91822
92059.3
92298.8
92540.4
92784
93029.7
93277.4
93527.1
93778.7
94032.3
94287.7
94545
94804.3
95065.5
95328.6
95593.8
95861.2
96130.7
96402.5
96676.5
96953
97231.8
97513.1
97797
98083.3
98372.2
98665.5
98962
99261
99562.6
99866.8
100173
100482
100794
101108
101424
101742
102063
102387
102712
103041
103372
103706
104048
104396
104750
105110
105477
105851
106232
106622
107020
107429
107848
108278
108721
109177
109646
110128
110622
111128
111645
112170
112704
113242
113784
114326
114867
115404
115934
116455
116966
117464
117949
118421
118881
119326
119758
120177
120584
120982
121373
121757
122137
122516
122895
123277
123663
124057
124458
124871
125294
125731
126181
126646
127126
127621
128131
128653
129190
129763
130372
130988
131610
132240
132875
133517
134165
134818
135476
136139
136807
137481
138159
138842
139530
140222
140920
141621
142325
143034
143732
144462
145114
15911.5
16164
16421.6
16666.6
16906.1
17146.1
17387.6
17630.3
17875.4
18123.5
18375.5
18632.1
18894.2
19162.7
19438.3
19721.9
20014.4
20316.4
20628.9
20952.8
21288.7
21637.5
22000
22377.1
22769.9
23179.5
23607.1
24053.8
24521.1
25010.3
25523
26060.9
26625.8
27219.6
27844.5
28502.6
29196.7
29929.4
30704
31523.8
32392.7
33315.2
34295
35340
36450.7
37644.1
38907.4
40294.8
41723.3
43417.3
6816.4
6522.81
6287.94
6119.52
6000.56
5916.8
5860.56
5826.47
5809.96
5808.34
5819.57
5842.07
5874.62
5916.27
5966.3
6024.15
6089.43
6161.83
6241.14
6327.25
6419.89
6518.98
6624.76
6737.51
6857.49
6985.02
7120.42
7264.06
7416.32
7577.63
7748.45
7930.42
8124.7
8331.2
8550.12
8781.23
9025.06
9282.7
9555.31
9843.74
10149.8
10473
10819.1
11180.2
11578.6
11981.5
12448.8
12884.2
13459.8
13794.5
4179.04
4015.86
3871.23
3748.4
3644.55
3555.88
3480.4
3416.43
3362.45
3317.35
3280.23
3250.31
3226.98
3209.72
3198.1
3191.74
3190.37
3193.76
3201.73
3214.16
3230.85
3251.63
3276.47
3305.36
3338.33
3375.47
3416.86
3462.64
3512.96
3568
3627.97
3693.18
3764.01
3840.75
3923.71
4014.02
4112.26
4218.02
4331.57
4453.35
4584.16
4723.9
4875.07
5034.42
5211.04
5388.58
5598.3
5780.83
6047.31
6170.97
2861.43
2771.71
2691.3
2620.17
2557.14
2500.52
2449.53
2403.58
2362.14
2324.81
2291.25
2261.2
2234.45
2210.82
2190.17
2172.38
2157.35
2145.01
2135.31
2128.21
2123.66
2121.62
2122.08
2125.01
2130.41
2138.32
2148.75
2161.77
2177.43
2195.83
2217.05
2241.22
2268.5
2299.03
2333
2370.67
2412.34
2458.75
2509.84
2565.74
2626.84
2693.19
2765.91
2843.76
2930.39
3018.62
3122.1
3214
3343.89
3404.84
2092.28
2039.74
1992.41
1949.79
1911.38
1876.39
1844.32
1814.81
1787.56
1762.34
1738.95
1717.26
1697.16
1678.57
1661.42
1645.69
1631.36
1618.4
1606.82
1596.63
1587.83
1580.45
1574.49
1569.97
1566.91
1565.33
1565.28
1566.78
1569.87
1574.61
1581.05
1589.27
1599.34
1611.35
1625.4
1641.62
1660.13
1681.16
1705.08
1731.94
1761.94
1795.14
1832.12
1872.29
1917.5
1964.36
2019.23
2069.08
2137.45
2170.11
1618.18
1585.19
1555.09
1527.71
1502.79
1479.89
1458.73
1439.09
1420.77
1403.63
1387.54
1372.4
1358.13
1344.68
1332
1320.05
1308.84
1298.34
1288.56
1279.52
1271.23
1263.7
1256.96
1251.03
1245.95
1241.73
1238.41
1236.03
1234.61
1234.2
1234.84
1236.58
1239.48
1243.58
1248.95
1255.67
1263.82
1273.49
1284.85
1298.07
1313.28
1330.52
1350.11
1371.76
1396.46
1422.45
1453.06
1481.32
1519.44
1537.18
1314.9
1292.61
1272.09
1253.21
1235.83
1219.7
1204.67
1190.6
1177.38
1164.92
1153.15
1141.99
1131.38
1121.3
1111.7
1102.55
1093.83
1085.55
1077.68
1070.24
1063.23
1056.67
1050.55
1044.92
1039.77
1035.15
1031.06
1027.54
1024.62
1022.33
1020.7
1019.76
1019.56
1020.14
1021.54
1023.81
1027
1031.17
1036.4
1042.85
1050.59
1059.67
1070.3
1082.29
1096.24
1111.15
1128.91
1145.46
1167.73
1177.34
1114.3
1098.12
1083.09
1069.09
1056.05
1043.82
1032.31
1021.45
1011.16
1001.38
992.083
983.213
974.739
966.631
958.865
951.421
944.284
937.442
930.889
924.62
918.637
912.942
907.542
902.446
897.666
893.216
889.112
885.372
882.018
879.07
876.554
874.495
872.922
871.866
871.359
871.436
872.128
873.446
875.514
878.398
882.165
886.847
892.577
899.253
907.253
915.941
926.517
936.398
949.872
954.9
976.737
964.24
952.492
941.428
931
921.121
911.73
902.781
894.233
886.054
878.213
870.686
863.452
856.494
849.795
843.343
837.127
831.139
825.373
819.823
814.489
809.369
804.467
799.785
795.329
791.108
787.13
783.406
779.951
776.778
773.904
771.348
769.13
767.27
765.792
764.718
764.058
763.851
764.182
765.089
766.618
768.796
771.716
775.312
779.841
784.874
791.224
797.131
805.452
807.813
878.98
868.798
859.121
849.911
841.133
832.736
824.681
816.939
809.485
802.299
795.363
788.662
782.183
775.917
769.854
763.987
758.31
752.816
747.503
742.368
737.408
732.623
728.013
723.58
719.327
715.257
711.375
707.689
704.207
700.937
697.891
695.081
692.52
690.222
688.202
686.467
685.032
683.963
683.286
683.031
683.233
683.913
685.138
686.863
689.275
692.062
695.812
699.252
704.415
705.173
807.143
798.481
790.168
782.18
774.495
767.082
759.913
752.971
746.241
739.71
733.367
727.204
721.213
715.389
709.726
704.221
698.871
693.673
688.625
683.727
678.978
674.376
669.924
665.622
661.471
657.474
653.634
649.956
646.444
643.105
639.945
636.972
634.194
631.62
629.252
627.104
625.219
623.615
622.314
621.335
620.706
620.443
620.597
621.134
622.197
623.546
625.633
627.483
630.634
630.403
752.706
745.08
737.7
730.553
723.623
716.89
710.337
703.952
697.726
691.651
685.721
679.93
674.274
668.751
663.358
658.094
652.957
647.947
643.064
638.308
633.68
629.18
624.809
620.568
616.46
612.486
608.648
604.95
601.395
597.987
594.73
591.63
588.69
585.909
583.305
580.903
578.716
576.756
575.039
573.582
572.404
571.518
570.965
570.716
570.885
571.279
572.261
573.054
574.876
574.022
710.274
703.378
696.661
690.113
683.724
677.482
671.374
665.394
659.536
653.795
648.166
642.648
637.238
631.935
626.738
621.647
616.662
611.784
607.013
602.351
597.8
593.36
589.032
584.82
580.725
576.748
572.892
569.16
565.555
562.078
558.733
555.52
552.442
549.519
546.759
544.172
541.767
539.554
537.546
535.754
534.196
532.88
531.84
531.049
530.605
530.344
530.57
530.637
531.555
530.302
676.322
669.958
663.726
657.621
651.635
645.759
639.987
634.314
628.736
623.25
617.854
612.546
607.327
602.195
597.151
592.195
587.328
582.552
577.868
573.277
568.782
564.384
560.086
555.889
551.795
547.808
543.93
540.161
536.506
532.964
529.538
526.236
523.07
520.043
517.161
514.432
511.863
509.463
507.241
505.207
503.375
501.751
500.364
499.19
498.311
497.587
497.28
496.837
497.124
495.612
648.476
642.514
636.65
630.883
625.207
619.617
614.107
608.676
603.32
598.038
592.83
587.694
582.63
577.64
572.723
567.88
563.113
558.423
553.812
549.282
544.835
540.474
536.2
532.017
527.927
523.932
520.034
516.234
512.536
508.947
505.473
502.115
498.88
495.772
492.795
489.957
487.264
484.722
482.341
480.127
478.094
476.244
474.604
473.15
471.958
470.898
470.208
469.4
469.237
467.556
625.099
619.45
613.876
608.377
602.949
597.588
592.292
587.059
581.887
576.776
571.726
566.736
561.806
556.938
552.131
547.388
542.709
538.096
533.552
529.079
524.68
520.355
516.109
511.944
507.863
503.868
499.965
496.157
492.446
488.835
485.329
481.93
478.645
475.476
472.43
469.511
466.725
464.078
461.578
459.231
457.048
455.031
453.205
451.546
450.123
448.818
447.848
446.773
446.284
444.493
605.034
599.638
594.301
589.023
583.801
578.633
573.517
568.453
563.44
558.477
553.565
548.703
543.892
539.132
534.425
529.771
525.171
520.63
516.149
511.734
507.385
503.107
498.903
494.773
490.72
486.747
482.858
479.056
475.344
471.724
468.202
464.78
461.464
458.256
455.162
452.186
449.335
446.613
444.027
441.584
439.291
437.153
435.19
433.38
431.787
430.302
429.127
427.857
427.13
425.265
587.449
582.268
577.132
572.043
566.999
561.998
557.041
552.126
547.254
542.424
537.636
532.889
528.185
523.52
518.901
514.331
509.815
505.355
500.951
496.605
492.32
488.099
483.945
479.859
475.844
471.904
468.04
464.257
460.558
456.946
453.424
449.996
446.667
443.44
440.319
437.31
434.418
431.647
429.003
426.493
424.125
421.9
419.839
417.92
416.204
414.588
413.262
411.85
410.949
409.03
571.743
566.75
561.791
556.87
551.985
547.135
542.321
537.542
532.798
528.088
523.41
518.764
514.156
509.592
505.072
500.598
496.173
491.796
487.472
483.2
478.985
474.829
470.733
466.7
462.734
458.837
455.012
451.261
447.589
443.999
440.493
437.077
433.752
430.524
427.397
424.375
421.462
418.665
415.989
413.437
411.02
408.738
406.611
404.616
402.814
401.104
399.669
398.156
397.128
395.182
557.475
552.652
547.855
543.087
538.348
533.638
528.955
524.3
519.67
515.064
510.491
505.955
501.457
496.998
492.579
488.202
483.868
479.58
475.34
471.148
467.009
462.924
458.895
454.925
451.018
447.175
443.399
439.694
436.062
432.508
429.033
425.642
422.339
419.127
416.01
412.993
410.081
407.277
404.588
402.018
399.576
397.261
395.093
393.05
391.191
389.417
387.908
386.324
385.207
383.26
544.323
539.657
535.011
530.386
525.782
521.199
516.633
512.087
507.568
503.08
498.624
494.201
489.813
485.459
481.143
476.865
472.627
468.431
464.279
460.174
456.116
452.109
448.155
444.257
440.417
436.638
432.922
429.273
425.694
422.188
418.757
415.406
412.138
408.957
405.867
402.871
399.975
397.183
394.5
391.93
389.481
387.154
384.967
382.898
381.006
379.193
377.635
376.006
374.828
372.896
532.052
527.534
523.026
518.531
514.046
509.576
505.129
500.707
496.312
491.944
487.605
483.296
479.017
474.772
470.56
466.384
462.245
458.145
454.087
450.072
446.102
442.18
438.308
434.489
430.725
427.018
423.372
419.789
416.272
412.824
409.449
406.15
402.93
399.792
396.741
393.781
390.916
388.15
385.487
382.934
380.495
378.173
375.985
373.909
372.003
370.172
368.587
366.932
365.717
363.81
520.489
516.099
511.713
507.338
502.982
498.644
494.326
490.03
485.757
481.508
477.286
473.091
468.924
464.787
460.682
456.611
452.574
448.575
444.614
440.694
436.817
432.985
429.201
425.467
421.785
418.158
414.589
411.08
407.634
404.255
400.945
397.707
394.545
391.462
388.462
385.548
382.725
379.998
377.369
374.845
372.431
370.128
367.954
365.886
363.983
362.148
360.554
358.891
357.656
355.781
509.515
505.251
500.998
496.757
492.53
488.319
484.126
479.952
475.799
471.669
467.562
463.481
459.427
455.401
451.404
447.439
443.507
439.611
435.751
431.93
428.149
424.412
420.721
417.077
413.483
409.942
406.456
403.028
399.66
396.356
393.118
389.95
386.854
383.834
380.894
378.036
375.266
372.587
370.003
367.518
365.14
362.868
360.72
358.672
356.784
354.961
353.371
351.712
350.473
348.635
499.093
494.959
490.834
486.719
482.616
478.528
474.456
470.402
466.367
462.353
458.362
454.395
450.453
446.537
442.651
438.794
434.968
431.176
427.419
423.7
420.02
416.381
412.785
409.235
405.734
402.283
398.885
395.542
392.258
389.035
385.875
382.782
379.759
376.809
373.935
371.141
368.431
365.808
363.276
360.84
358.506
356.274
354.161
352.144
350.282
348.48
346.906
345.262
344.029
342.234
489.161
485.157
481.16
477.17
473.189
469.221
465.268
461.331
457.413
453.514
449.637
445.782
441.952
438.147
434.37
430.621
426.903
423.217
419.565
415.948
412.37
408.831
405.334
401.881
398.474
395.116
391.809
388.556
385.358
382.22
379.143
376.13
373.184
370.308
367.506
364.78
362.135
359.574
357.102
354.72
352.437
350.251
348.181
346.203
344.375
342.602
341.053
339.432
338.216
336.465
479.69
475.815
471.943
468.076
464.216
460.367
456.53
452.709
448.905
445.119
441.354
437.611
433.891
430.196
426.528
422.887
419.276
415.695
412.148
408.635
405.159
401.721
398.323
394.968
391.658
388.394
385.18
382.018
378.91
375.858
372.866
369.935
367.069
364.271
361.544
358.89
356.314
353.819
351.409
349.087
346.86
344.725
342.704
340.769
338.981
337.244
335.726
334.135
332.943
331.239
470.667
466.918
463.168
459.421
455.679
451.946
448.224
444.516
440.824
437.149
433.494
429.861
426.249
422.662
419.101
415.567
412.061
408.585
405.142
401.732
398.357
395.02
391.722
388.464
385.251
382.082
378.961
375.891
372.872
369.908
367.001
364.154
361.37
358.651
356
353.42
350.915
348.488
346.143
343.883
341.714
339.635
337.665
335.779
334.035
332.338
330.857
329.3
328.138
326.483
462.088
458.46
454.829
451.199
447.572
443.952
440.341
436.743
433.16
429.594
426.046
422.519
419.014
415.532
412.075
408.645
405.242
401.87
398.528
395.219
391.945
388.706
385.506
382.346
379.227
376.153
373.124
370.144
367.215
364.338
361.517
358.753
356.05
353.41
350.835
348.33
345.896
343.538
341.26
339.063
336.955
334.933
333.017
331.181
329.483
327.831
326.389
324.871
323.742
322.137
453.955
450.441
446.925
443.408
439.892
436.381
432.878
429.387
425.909
422.447
419.003
415.579
412.176
408.796
405.441
402.111
398.809
395.536
392.293
389.083
385.906
382.764
379.659
376.593
373.568
370.585
367.647
364.756
361.914
359.123
356.385
353.704
351.08
348.518
346.019
343.587
341.225
338.935
336.723
334.589
332.542
330.578
328.717
326.933
325.284
323.677
322.278
320.8
319.709
318.153
446.276
442.871
439.461
436.051
432.641
429.235
425.835
422.445
419.068
415.706
412.362
409.036
405.731
402.449
399.191
395.958
392.752
389.575
386.427
383.311
380.228
377.179
374.167
371.192
368.257
365.363
362.513
359.708
356.95
354.242
351.586
348.984
346.438
343.951
341.526
339.166
336.873
334.651
332.503
330.433
328.445
326.539
324.733
323.001
321.402
319.842
318.487
317.051
315.999
314.494
439.056
435.755
432.444
429.132
425.821
422.513
419.21
415.917
412.636
409.369
406.118
402.887
399.675
396.486
393.32
390.179
387.065
383.979
380.922
377.896
374.902
371.942
369.018
366.13
363.281
360.473
357.706
354.983
352.307
349.678
347.1
344.574
342.103
339.69
337.336
335.045
332.82
330.663
328.578
326.569
324.64
322.791
321.039
319.359
317.809
316.296
314.986
313.592
312.583
311.127
432.289
429.086
425.872
422.651
419.431
416.212
413.002
409.8
406.609
403.431
400.27
397.126
394.002
390.9
387.822
384.768
381.74
378.74
375.769
372.828
369.919
367.043
364.201
361.396
358.629
355.901
353.214
350.57
347.97
345.417
342.913
340.461
338.061
335.717
333.431
331.207
329.046
326.952
324.928
322.977
321.106
319.312
317.613
315.984
314.484
313.017
311.752
310.401
309.435
308.028
425.974
422.861
419.737
416.605
413.469
410.334
407.207
404.09
400.983
397.889
394.81
391.749
388.708
385.687
382.69
379.717
376.77
373.851
370.96
368.099
365.269
362.471
359.708
356.981
354.29
351.638
349.025
346.455
343.928
341.447
339.013
336.629
334.297
332.019
329.798
327.636
325.537
323.503
321.538
319.644
317.827
316.086
314.439
312.86
311.408
309.988
308.767
307.459
306.538
305.18
420.103
417.073
414.032
410.982
407.928
404.874
401.822
398.78
395.751
392.734
389.733
386.749
383.783
380.839
377.918
375.02
372.148
369.304
366.487
363.7
360.944
358.22
355.53
352.874
350.255
347.674
345.131
342.63
340.172
337.758
335.39
333.07
330.801
328.586
326.426
324.324
322.282
320.305
318.395
316.555
314.792
313.102
311.505
309.974
308.568
307.195
306.016
304.752
303.876
302.569
414.666
411.713
408.747
405.772
402.794
399.814
396.837
393.864
390.904
387.96
385.029
382.116
379.221
376.348
373.496
370.668
367.866
365.09
362.343
359.624
356.936
354.28
351.657
349.069
346.516
344
341.523
339.086
336.691
334.339
332.033
329.774
327.565
325.407
323.305
321.259
319.272
317.349
315.492
313.704
311.991
310.35
308.8
307.317
305.956
304.628
303.49
302.273
301.436
300.187
409.632
406.745
403.844
400.935
398.02
395.105
392.192
389.284
386.383
383.497
380.629
377.776
374.943
372.129
369.338
366.57
363.827
361.111
358.422
355.763
353.133
350.535
347.97
345.439
342.942
340.483
338.061
335.679
333.338
331.04
328.787
326.58
324.421
322.314
320.259
318.261
316.322
314.444
312.632
310.887
309.217
307.618
306.108
304.665
303.34
302.051
300.945
299.768
298.959
297.767
404.981
402.149
399.303
396.449
393.589
390.727
387.868
385.013
382.166
379.329
376.509
373.708
370.925
368.161
365.42
362.702
360.008
357.341
354.701
352.09
349.509
346.959
344.442
341.957
339.508
337.095
334.719
332.383
330.086
327.832
325.623
323.459
321.342
319.276
317.262
315.304
313.403
311.563
309.788
308.079
306.444
304.879
303.402
301.991
300.697
299.439
298.358
297.213
296.429
295.279
400.708
397.924
395.126
392.319
389.507
386.693
383.88
381.072
378.271
375.481
372.703
369.943
367.205
364.485
361.787
359.112
356.461
353.837
351.24
348.671
346.132
343.624
341.148
338.705
336.296
333.924
331.588
329.291
327.035
324.82
322.649
320.523
318.444
316.415
314.438
312.515
310.65
308.844
307.103
305.427
303.824
302.291
300.845
299.464
298.199
296.97
295.916
294.798
294.045
292.926
396.791
394.048
391.292
388.527
385.755
382.982
380.21
377.442
374.681
371.93
369.192
366.468
363.764
361.08
358.42
355.783
353.169
350.582
348.021
345.489
342.986
340.514
338.073
335.666
333.293
330.956
328.655
326.393
324.171
321.991
319.854
317.762
315.717
313.721
311.777
309.886
308.053
306.279
304.569
302.924
301.351
299.848
298.431
297.079
295.842
294.64
293.613
292.519
291.797
290.705
393.207
390.499
387.778
385.048
382.311
379.573
376.835
374.101
371.374
368.656
365.951
363.261
360.586
357.932
355.302
352.696
350.114
347.558
345.029
342.527
340.055
337.613
335.203
332.826
330.483
328.176
325.906
323.674
321.483
319.332
317.225
315.163
313.148
311.182
309.268
307.407
305.603
303.858
302.177
300.561
299.017
297.542
296.153
294.828
293.619
292.443
291.443
290.373
289.682
288.616
389.934
387.255
384.562
381.86
379.153
376.442
373.733
371.027
368.328
365.638
362.961
360.298
357.651
355.023
352.415
349.833
347.278
344.747
342.244
339.768
337.321
334.905
332.52
330.169
327.852
325.571
323.326
321.121
318.955
316.831
314.751
312.715
310.727
308.788
306.901
305.068
303.291
301.574
299.92
298.331
296.814
295.366
294.005
292.707
291.525
290.376
289.402
288.357
287.694
286.655
386.95
384.293
381.622
378.943
376.257
373.57
370.883
368.2
365.523
362.855
360.2
357.558
354.933
352.327
349.741
347.177
344.642
342.132
339.649
337.194
334.768
332.373
330.009
327.68
325.384
323.125
320.903
318.72
316.577
314.477
312.42
310.408
308.444
306.53
304.668
302.86
301.109
299.418
297.79
296.228
294.738
293.317
291.982
290.711
289.556
288.433
287.487
286.467
285.834
284.821
384.233
381.591
378.937
376.273
373.605
370.934
368.264
365.598
362.938
360.288
357.649
355.024
352.416
349.826
347.257
344.71
342.188
339.694
337.227
334.789
332.38
330.002
327.657
325.345
323.068
320.827
318.624
316.461
314.338
312.258
310.222
308.233
306.291
304.4
302.561
300.778
299.052
297.386
295.783
294.247
292.783
291.389
290.081
288.837
287.709
286.614
285.697
284.703
284.098
283.112
381.764
379.131
376.486
373.833
371.175
368.516
365.858
363.203
360.555
357.917
355.29
352.678
350.082
347.505
344.948
342.413
339.901
337.418
334.965
332.54
330.145
327.781
325.45
323.153
320.891
318.666
316.48
314.334
312.229
310.168
308.152
306.182
304.262
302.392
300.576
298.816
297.114
295.473
293.896
292.386
290.948
289.581
288.301
287.084
285.984
284.916
284.033
283.064
282.488
281.529
379.525
376.894
374.253
371.605
368.952
366.299
363.647
360.999
358.359
355.728
353.109
350.504
347.917
345.348
342.799
340.273
337.772
335.295
332.85
330.435
328.051
325.698
323.379
321.095
318.846
316.636
314.464
312.334
310.245
308.201
306.203
304.253
302.352
300.504
298.71
296.972
295.294
293.678
292.127
290.643
289.232
287.892
286.64
285.453
284.382
283.342
282.493
281.551
281.003
280.073
377.501
374.867
372.223
369.573
366.921
364.268
361.617
358.972
356.334
353.706
351.091
348.491
345.908
343.344
340.801
338.281
335.786
333.316
330.875
328.466
326.091
323.748
321.439
319.165
316.928
314.73
312.572
310.456
308.383
306.355
304.375
302.443
300.562
298.734
296.962
295.247
293.593
292.002
290.477
289.021
287.638
286.326
285.103
283.945
282.904
281.893
281.077
280.164
279.645
278.745
375.679
373.035
370.383
367.727
365.069
362.412
359.758
357.111
354.472
351.843
349.228
346.629
344.047
341.485
338.945
336.428
333.937
331.472
329.037
326.631
324.26
321.925
319.625
317.361
315.135
312.949
310.803
308.701
306.643
304.631
302.668
300.754
298.893
297.086
295.336
293.644
292.014
290.449
288.951
287.522
286.168
284.885
283.692
282.565
281.554
280.574
279.789
278.907
278.42
277.551
374.049
371.389
368.724
366.056
363.388
360.722
358.062
355.408
352.764
350.131
347.513
344.912
342.329
339.766
337.227
334.711
332.222
329.761
327.329
324.928
322.561
320.23
317.939
315.684
313.468
311.293
309.16
307.071
305.028
303.032
301.086
299.191
297.35
295.564
293.836
292.169
290.564
289.024
287.553
286.153
284.828
283.576
282.414
281.318
280.338
279.388
278.635
277.786
277.33
276.492
372.604
369.923
367.24
364.555
361.873
359.194
356.522
353.859
351.206
348.567
345.943
343.337
340.751
338.186
335.645
333.13
330.641
328.182
325.754
323.357
320.995
318.668
316.384
314.138
311.932
309.768
307.648
305.573
303.545
301.566
299.637
297.762
295.941
294.177
292.472
290.828
289.249
287.736
286.293
284.921
283.627
282.406
281.276
280.211
279.263
278.344
277.623
276.808
276.381
275.576
371.341
368.634
365.927
363.222
360.521
357.826
355.139
352.463
349.8
347.151
344.52
341.907
339.315
336.747
334.204
331.687
329.199
326.741
324.315
321.923
319.566
317.246
314.967
312.729
310.534
308.382
306.275
304.215
302.203
300.241
298.331
296.475
294.675
292.934
291.252
289.634
288.08
286.595
285.18
283.837
282.573
281.383
280.285
279.252
278.336
277.448
276.758
275.976
275.579
274.807
370.261
367.523
364.788
362.058
359.335
356.62
353.916
351.225
348.548
345.888
343.247
340.626
338.028
335.455
332.909
330.391
327.903
325.446
323.023
320.636
318.284
315.971
313.698
311.469
309.285
307.146
305.054
303.009
301.014
299.07
297.179
295.344
293.566
291.847
290.19
288.597
287.07
285.611
284.225
282.911
281.677
280.518
279.451
278.449
277.565
276.708
276.047
275.298
274.93
274.189
369.367
366.595
363.829
361.071
358.322
355.585
352.861
350.151
347.459
344.786
342.134
339.505
336.9
334.322
331.772
329.252
326.764
324.31
321.89
319.507
317.162
314.857
312.594
310.373
308.201
306.076
303.999
301.97
299.993
298.068
296.197
294.383
292.627
290.932
289.299
287.73
286.23
284.798
283.44
282.155
280.95
279.82
278.783
277.812
276.958
276.13
275.499
274.778
274.44
273.727
368.672
365.861
363.06
360.271
357.494
354.731
351.985
349.256
346.547
343.86
341.196
338.557
335.945
333.361
330.808
328.287
325.8
323.347
320.932
318.554
316.217
313.921
311.668
309.459
307.298
305.189
303.128
301.116
299.157
297.251
295.401
293.608
291.874
290.202
288.593
287.05
285.574
284.169
282.837
281.58
280.403
279.301
278.293
277.349
276.524
275.722
275.12
274.424
274.117
273.423
368.195
365.342
362.503
359.68
356.872
354.082
351.312
348.563
345.836
343.133
340.457
337.808
335.188
332.6
330.044
327.522
325.036
322.586
320.176
317.806
315.477
313.191
310.949
308.754
306.609
304.514
302.469
300.475
298.535
296.649
294.819
293.047
291.336
289.686
288.101
286.581
285.13
283.75
282.443
281.211
280.059
278.983
278.001
277.082
276.283
275.505
274.929
274.253
273.977
273.295
367.956
365.057
362.176
359.315
356.474
353.654
350.858
348.086
345.34
342.621
339.931
337.272
334.644
332.05
329.492
326.969
324.484
322.039
319.634
317.271
314.952
312.676
310.448
308.268
306.139
304.059
302.031
300.055
298.133
296.267
294.458
292.707
291.018
289.39
287.827
286.331
284.903
283.546
282.262
281.054
279.926
278.873
277.913
277.016
276.239
275.483
274.929
274.271
274.019
273.349
367.957
365.007
362.08
359.176
356.298
353.445
350.62
347.822
345.055
342.318
339.613
336.942
334.305
331.705
329.143
326.62
324.137
321.695
319.296
316.941
314.63
312.367
310.151
307.988
305.873
303.81
301.799
299.842
297.94
296.093
294.305
292.576
290.908
289.302
287.761
286.287
284.882
283.547
282.286
281.1
279.993
278.962
278.023
277.145
276.388
275.651
275.116
274.476
274.242
273.585
368.204
365.197
362.218
359.269
356.349
353.46
350.602
347.777
344.985
342.228
339.506
336.822
334.176
331.569
329.003
326.478
323.996
321.558
319.164
316.817
314.517
312.265
310.064
307.915
305.817
303.77
301.777
299.839
297.956
296.13
294.362
292.654
291.007
289.423
287.904
286.452
285.068
283.755
282.515
281.349
280.263
279.25
278.33
277.469
276.73
276.009
275.491
274.866
274.647
274.002
368.705
365.635
362.6
359.6
356.635
353.706
350.813
347.957
345.139
342.359
339.62
336.921
334.263
331.648
329.077
326.551
324.069
321.635
319.247
316.907
314.617
312.378
310.191
308.056
305.974
303.945
301.97
300.05
298.186
296.38
294.633
292.946
291.32
289.757
288.259
286.827
285.464
284.171
282.95
281.803
280.735
279.739
278.836
277.99
277.265
276.56
276.056
275.442
275.236
274.599
369.471
366.333
363.237
360.182
357.168
354.194
351.263
348.373
345.526
342.723
339.963
337.248
334.578
331.954
329.377
326.848
324.367
321.935
319.553
317.221
314.941
312.715
310.541
308.421
306.354
304.341
302.384
300.483
298.638
296.852
295.124
293.457
291.851
290.308
288.829
287.417
286.073
284.798
283.595
282.464
281.411
280.431
279.541
278.708
277.997
277.303
276.81
276.207
276.009
275.379
370.515
367.306
364.143
361.029
357.961
354.94
351.967
349.041
346.163
343.333
340.551
337.818
335.134
332.5
329.916
327.384
324.902
322.472
320.095
317.771
315.501
313.286
311.125
309.019
306.967
304.97
303.03
301.146
299.32
297.552
295.843
294.194
292.607
291.082
289.622
288.228
286.9
285.641
284.453
283.336
282.297
281.328
280.449
279.626
278.926
278.241
277.757
277.161
276.969
276.341
371.857
368.569
365.336
362.158
359.033
355.962
352.943
349.978
347.066
344.206
341.4
338.647
335.948
333.303
330.711
328.174
325.691
323.262
320.889
318.572
316.312
314.107
311.957
309.863
307.825
305.844
303.919
302.052
300.242
298.491
296.799
295.167
293.596
292.089
290.645
289.265
287.951
286.705
285.529
284.424
283.394
282.435
281.564
280.748
280.056
279.378
278.899
278.307
278.119
277.489
373.516
370.146
366.838
363.592
360.406
357.28
354.213
351.205
348.256
345.365
342.533
339.758
337.042
334.383
331.781
329.238
326.752
324.323
321.952
319.642
317.388
315.192
313.052
310.97
308.944
306.976
305.065
303.212
301.417
299.68
298.003
296.385
294.83
293.336
291.904
290.536
289.234
287.998
286.831
285.733
284.71
283.756
282.889
282.078
281.391
280.716
280.239
279.648
279.461
278.825
375.521
372.063
368.676
365.357
362.105
358.921
355.803
352.749
349.76
346.835
343.973
341.174
338.438
335.763
333.15
330.598
328.107
325.676
323.307
321
318.751
316.561
314.429
312.356
310.34
308.383
306.483
304.642
302.858
301.133
299.467
297.861
296.317
294.833
293.41
292.051
290.755
289.525
288.363
287.269
286.249
285.297
284.431
283.621
282.935
282.259
281.782
281.189
280.998
280.35
377.906
374.355
370.882
367.485
364.164
360.917
357.743
354.64
351.608
348.645
345.751
342.924
340.165
337.472
334.844
332.281
329.782
327.347
324.977
322.669
320.422
318.235
316.108
314.04
312.031
310.081
308.189
306.356
304.58
302.863
301.205
299.607
298.069
296.59
295.173
293.817
292.524
291.296
290.135
289.041
288.019
287.065
286.196
285.382
284.693
284.012
283.531
282.933
282.736
282.069
380.712
377.061
373.497
370.018
366.622
363.308
360.072
356.915
353.835
350.83
347.899
345.042
342.255
339.54
336.893
334.314
331.805
329.363
326.987
324.674
322.424
320.236
318.11
316.043
314.037
312.089
310.201
308.37
306.598
304.884
303.23
301.635
300.098
298.62
297.202
295.845
294.551
293.32
292.155
291.056
290.029
289.067
288.191
287.369
286.67
285.977
285.493
284.886
284.679
283.99
383.993
380.235
376.573
373.005
369.527
366.138
362.836
359.619
356.485
353.432
350.459
347.563
344.745
342.001
339.329
336.732
334.207
331.751
329.363
327.04
324.782
322.588
320.457
318.386
316.377
314.427
312.536
310.703
308.929
307.212
305.556
303.957
302.416
300.933
299.51
298.146
296.845
295.605
294.431
293.323
292.285
291.312
290.424
289.589
288.874
288.166
287.675
287.053
286.834
286.12
387.813
383.939
380.17
376.503
372.935
369.463
366.085
362.799
359.602
356.493
353.47
350.529
347.67
344.89
342.189
339.566
337.017
334.539
332.132
329.793
327.52
325.313
323.17
321.089
319.07
317.11
315.211
313.369
311.586
309.862
308.196
306.587
305.035
303.541
302.106
300.731
299.416
298.163
296.975
295.851
294.798
293.809
292.904
292.052
291.315
290.59
290.087
289.44
289.206
288.466
392.499
388.49
384.594
380.807
377.128
373.553
370.08
366.707
363.431
360.249
357.159
354.159
351.244
348.417
345.673
343.01
340.423
337.912
335.474
333.106
330.808
328.576
326.41
324.308
322.268
320.288
318.369
316.509
314.707
312.961
311.274
309.643
308.07
306.555
305.098
303.699
302.361
301.085
299.872
298.723
297.644
296.628
295.696
294.817
294.051
293.299
292.77
292.086
291.827
291.055
397.962
393.798
389.758
385.837
382.033
378.343
374.763
371.291
367.924
364.659
361.491
358.42
355.443
352.558
349.761
347.047
344.414
341.86
339.382
336.977
334.643
332.378
330.18
328.047
325.976
323.968
322.02
320.131
318.3
316.526
314.807
313.146
311.542
309.994
308.505
307.074
305.702
304.392
303.144
301.96
300.844
299.792
298.823
297.906
297.101
296.311
295.744
295.015
294.72
293.903
404.009
399.678
395.481
391.415
387.475
383.66
379.964
376.384
372.917
369.559
366.308
363.16
360.113
357.161
354.301
351.53
348.844
346.24
343.714
341.265
338.889
336.584
334.347
332.176
330.069
328.025
326.042
324.118
322.252
320.443
318.688
316.991
315.35
313.765
312.238
310.768
309.358
308.008
306.721
305.496
304.34
303.246
302.234
301.276
300.428
299.595
298.981
298.207
297.874
297.006
410.699
406.186
401.82
397.595
393.509
389.556
385.732
382.034
378.457
374.998
371.656
368.422
365.294
362.266
359.336
356.498
353.75
351.088
348.508
346.006
343.58
341.227
338.944
336.728
334.578
332.49
330.464
328.498
326.59
324.74
322.943
321.203
319.519
317.891
316.32
314.807
313.352
311.957
310.624
309.353
308.15
307.01
305.951
304.945
304.05
303.17
302.493
301.676
301.305
300.38
418.103
413.392
408.84
404.442
400.194
396.09
392.126
388.297
384.6
381.032
377.584
374.253
371.033
367.92
364.91
361.997
359.178
356.448
353.804
351.241
348.757
346.347
344.009
341.74
339.538
337.399
335.323
333.307
331.35
329.45
327.605
325.815
324.08
322.402
320.781
319.217
317.711
316.264
314.88
313.557
312.302
311.109
309.997
308.938
307.99
307.056
306.311
305.447
305.033
304.046
426.304
421.374
416.618
412.03
407.603
403.332
399.213
395.242
391.413
387.719
384.154
380.713
377.391
374.181
371.08
368.081
365.18
362.373
359.654
357.021
354.468
351.992
349.59
347.258
344.995
342.796
340.66
338.586
336.571
334.614
332.712
330.864
329.072
327.336
325.656
324.034
322.469
320.964
319.52
318.138
316.824
315.572
314.4
313.282
312.274
311.281
310.471
309.548
309.084
308.025
435.395
430.225
425.244
420.445
415.821
411.368
407.078
402.949
398.971
395.136
391.44
387.875
384.437
381.117
377.912
374.815
371.821
368.924
366.12
363.404
360.772
358.219
355.742
353.338
351.003
348.734
346.529
344.386
342.303
340.279
338.312
336.397
334.538
332.734
330.988
329.298
327.667
326.094
324.583
323.134
321.752
320.432
319.194
318.008
316.934
315.874
314.995
314.006
313.477
312.341
445.486
440.052
434.821
429.789
424.95
420.297
415.82
411.511
407.365
403.374
399.53
395.826
392.255
388.812
385.489
382.279
379.178
376.179
373.276
370.465
367.741
365.099
362.535
360.045
357.627
355.276
352.99
350.768
348.606
346.503
344.458
342.468
340.53
338.649
336.825
335.057
333.348
331.698
330.11
328.584
327.125
325.729
324.414
323.152
322.003
320.868
319.914
318.851
318.232
317.023
456.704
450.977
445.475
440.188
435.112
430.234
425.546
421.039
416.706
412.539
408.529
404.668
400.949
397.365
393.907
390.57
387.345
384.228
381.212
378.291
375.46
372.714
370.049
367.46
364.944
362.497
360.117
357.801
355.547
353.352
351.216
349.137
347.109
345.137
343.222
341.365
339.566
337.826
336.149
334.534
332.986
331.503
330.101
328.753
327.518
326.299
325.261
324.115
323.384
322.099
469.19
463.147
457.349
451.783
446.441
441.314
436.391
431.664
427.123
422.759
418.563
414.526
410.639
406.894
403.283
399.799
396.434
393.18
390.032
386.983
384.028
381.161
378.377
375.672
373.042
370.482
367.991
365.565
363.201
360.899
358.656
356.47
354.34
352.261
350.24
348.277
346.374
344.53
342.749
341.031
339.383
337.798
336.297
334.851
333.519
332.205
331.073
329.834
328.988
327.609
483.114
476.727
470.601
464.726
459.094
453.692
448.511
443.539
438.766
434.182
429.777
425.54
421.463
417.536
413.75
410.097
406.568
403.157
399.856
396.658
393.558
390.548
387.625
384.783
382.017
379.325
376.701
374.145
371.652
369.222
366.851
364.54
362.286
360.087
357.941
355.855
353.829
351.864
349.963
348.127
346.361
344.662
343.046
341.489
340.047
338.624
337.388
336.047
335.089
333.595
498.655
491.891
485.408
479.197
473.247
467.544
462.077
456.833
451.802
446.972
442.331
437.869
433.575
429.439
425.452
421.604
417.887
414.292
410.812
407.439
404.167
400.99
397.901
394.896
391.97
389.119
386.339
383.628
380.982
378.399
375.878
373.418
371.017
368.674
366.387
364.156
361.987
359.881
357.842
355.869
353.968
352.137
350.392
348.708
347.141
345.599
344.244
342.793
341.719
340.094
516.002
508.833
501.964
495.387
489.089
483.056
477.274
471.729
466.41
461.303
456.396
451.677
447.136
442.76
438.54
434.466
430.529
426.719
423.028
419.449
415.974
412.597
409.312
406.113
402.996
399.957
396.99
394.094
391.266
388.503
385.804
383.168
380.594
378.08
375.627
373.233
370.899
368.631
366.432
364.302
362.249
360.267
358.376
356.549
354.844
353.167
351.682
350.107
348.908
347.138
535.362
527.755
520.469
513.494
506.815
500.418
494.287
488.407
482.764
477.345
472.136
467.125
462.299
457.647
453.157
448.819
444.623
440.56
436.621
432.797
429.082
425.469
421.951
418.522
415.178
411.915
408.728
405.613
402.57
399.595
396.687
393.844
391.067
388.355
385.708
383.125
380.608
378.156
375.774
373.467
371.241
369.091
367.036
365.052
363.193
361.371
359.744
358.026
356.689
354.763
556.932
548.852
541.11
533.699
526.602
519.802
513.282
507.026
501.019
495.246
489.693
484.346
479.192
474.219
469.415
464.769
460.271
455.91
451.678
447.567
443.569
439.676
435.883
432.183
428.572
425.045
421.599
418.23
414.935
411.713
408.563
405.482
402.472
399.531
396.661
393.861
391.133
388.478
385.899
383.397
380.979
378.644
376.409
374.252
372.227
370.244
368.461
366.587
365.102
363.009
580.882
572.281
564.038
556.145
548.584
541.335
534.38
527.7
521.281
515.105
509.157
503.424
497.892
492.547
487.379
482.374
477.523
472.815
468.242
463.794
459.465
455.246
451.133
447.118
443.197
439.365
435.62
431.957
428.374
424.871
421.444
418.094
414.82
411.623
408.502
405.46
402.497
399.614
396.815
394.102
391.479
388.946
386.519
384.176
381.972
379.815
377.866
375.83
374.189
371.92
607.309
598.128
589.327
580.897
572.817
565.064
557.618
550.46
543.572
536.938
530.54
524.365
518.399
512.627
507.039
501.621
496.363
491.255
486.289
481.454
476.745
472.153
467.673
463.299
459.025
454.849
450.765
446.772
442.868
439.049
435.316
431.667
428.103
424.624
421.23
417.923
414.704
411.575
408.539
405.598
402.756
400.013
397.384
394.847
392.456
390.121
388.001
385.799
384
381.551
636.189
626.357
616.93
607.898
599.238
590.921
582.924
575.227
567.811
560.658
553.751
547.075
540.616
534.36
528.295
522.409
516.691
511.132
505.722
500.453
495.317
490.308
485.419
480.646
475.982
471.425
466.971
462.617
458.361
454.202
450.137
446.167
442.292
438.512
434.828
431.241
427.753
424.365
421.081
417.902
414.834
411.873
409.038
406.304
403.726
401.212
398.922
396.557
394.601
391.972
667.306
656.749
646.629
636.933
627.63
618.687
610.079
601.784
593.779
586.049
578.574
571.341
564.334
557.54
550.947
544.544
538.319
532.263
526.367
520.623
515.023
509.561
504.231
499.028
493.947
488.985
484.137
479.401
474.775
470.258
465.848
461.544
457.347
453.258
449.276
445.402
441.64
437.99
434.456
431.039
427.743
424.568
421.528
418.601
415.84
413.155
410.702
408.183
406.077
403.276
700.193
688.864
678.006
667.595
657.598
647.977
638.704
629.755
621.111
612.752
604.662
596.824
589.226
581.853
574.693
567.736
560.971
554.388
547.978
541.734
535.648
529.714
523.926
518.279
512.768
507.39
502.14
497.016
492.016
487.138
482.382
477.745
473.229
468.833
464.558
460.405
456.375
452.471
448.695
445.049
441.538
438.158
434.926
431.82
428.89
426.049
423.446
420.794
418.547
415.597
736.343
724.221
712.567
701.372
690.605
680.23
670.218
660.547
651.195
642.144
633.377
624.879
616.636
608.636
600.865
593.314
585.972
578.828
571.876
565.106
558.512
552.086
545.824
539.719
533.767
527.965
522.309
516.795
511.421
506.185
501.086
496.124
491.297
486.605
482.05
477.631
473.351
469.212
465.215
461.362
457.658
454.101
450.705
447.451
444.383
441.423
438.707
435.964
433.612
430.557
772.892
759.883
747.426
735.478
723.99
712.915
702.223
691.885
681.882
672.194
662.805
653.7
644.866
636.29
627.96
619.866
611.997
604.345
596.901
589.657
582.605
575.74
569.056
562.546
556.207
550.035
544.026
538.176
532.483
526.945
521.56
516.328
511.247
506.319
501.542
496.919
492.45
488.137
483.982
479.988
476.159
472.493
469.003
465.672
462.543
459.537
456.789
454.025
451.656
448.529
806.594
792.879
779.752
767.161
755.052
743.373
732.091
721.177
710.612
700.375
690.453
680.83
671.493
662.431
653.631
645.085
636.781
628.711
620.866
613.239
605.822
598.608
591.592
584.768
578.131
571.678
565.404
559.305
553.38
547.625
542.04
536.623
531.373
526.29
521.375
516.628
512.051
507.646
503.415
499.36
495.486
491.791
488.289
484.961
481.853
478.882
476.189
473.48
471.188
468.043
836.984
822.794
809.197
796.141
783.569
771.431
759.694
748.334
737.33
726.668
716.331
706.307
696.585
687.151
677.997
669.111
660.483
652.106
643.97
636.068
628.392
620.935
613.692
606.656
599.822
593.187
586.746
580.496
574.434
568.558
562.865
557.355
552.027
546.88
541.916
537.135
532.54
528.131
523.913
519.886
516.057
512.423
509
505.766
502.772
499.927
497.386
494.822
492.705
489.606
864.085
849.669
835.831
822.516
809.671
797.249
785.223
773.572
762.281
751.337
740.728
730.442
720.468
710.796
701.415
692.317
683.49
674.928
666.621
658.561
650.741
643.154
635.794
628.654
621.731
615.019
608.515
602.215
596.117
590.217
584.515
579.009
573.699
568.585
563.668
558.949
554.43
550.114
546.005
542.103
538.417
534.944
531.7
528.662
525.887
523.274
520.991
518.679
516.846
513.866
888.406
874.006
860.149
846.784
833.86
821.338
809.196
797.421
786.004
774.934
764.202
753.8
743.717
733.945
724.474
715.294
706.398
697.775
689.419
681.321
673.474
665.871
658.506
651.373
644.467
637.785
631.322
625.075
619.043
613.222
607.612
602.211
597.02
592.039
587.27
582.715
578.376
574.257
570.362
566.694
563.26
560.059
557.108
554.384
551.947
549.686
547.788
545.849
544.428
541.649
910.907
896.723
883.041
869.811
856.986
844.534
832.441
820.703
809.314
798.269
787.562
777.187
767.134
757.397
747.967
738.835
729.992
721.432
713.145
705.125
697.364
689.856
682.596
675.577
668.796
662.248
655.931
649.843
643.981
638.343
632.929
627.74
622.774
618.035
613.524
609.244
605.199
601.393
597.832
594.519
591.463
588.662
586.137
583.862
581.904
580.14
578.777
577.358
576.506
574.02
932.912
919.094
905.734
892.785
880.202
867.962
856.06
844.498
833.276
822.392
811.842
801.623
791.728
782.15
772.881
763.914
755.242
746.856
738.75
730.917
723.351
716.045
708.995
702.197
695.646
689.34
683.276
677.454
671.871
666.528
661.423
656.559
651.937
647.559
643.429
639.551
635.93
632.572
629.483
626.668
624.138
621.892
619.954
618.293
616.987
615.896
615.257
614.539
614.451
612.368
956.082
942.7
929.743
917.165
904.924
893
881.398
870.123
859.179
848.567
838.287
828.335
818.707
809.395
800.394
791.698
783.299
775.192
767.37
759.827
752.559
745.561
738.828
732.357
726.146
720.193
714.496
709.056
703.873
698.947
694.279
689.872
685.728
681.852
678.249
674.924
671.883
669.135
666.688
664.548
662.729
661.229
660.077
659.24
658.805
658.613
658.936
659.15
660.081
658.538
982.348
969.383
956.838
944.663
932.811
921.265
910.032
899.121
888.538
878.284
868.36
858.764
849.491
840.537
831.896
823.563
815.532
807.8
800.362
793.212
786.347
779.765
773.461
767.434
761.683
756.207
751.008
746.086
741.443
737.081
733.003
729.212
725.713
722.512
719.616
717.032
714.77
712.839
711.25
710.011
709.14
708.635
708.531
708.788
709.512
710.514
712.118
713.571
715.863
715.034
1013.91
1001.25
989.055
977.254
965.788
954.637
943.805
933.301
923.129
913.291
903.786
894.613
885.768
877.248
869.048
861.165
853.595
846.336
839.384
832.737
826.392
820.348
814.604
809.158
804.011
799.166
794.625
790.389
786.464
782.852
779.558
776.589
773.949
771.649
769.696
768.102
766.879
766.038
765.595
765.56
765.954
766.778
768.072
769.791
772.063
774.661
777.98
781.087
785.214
785.333
1053.28
1040.75
1028.77
1017.26
1006.13
995.342
984.906
974.818
965.079
955.689
946.646
937.948
929.592
921.577
913.899
906.557
899.55
892.875
886.533
880.522
874.841
869.491
864.472
859.784
855.431
851.417
847.745
844.42
841.45
838.838
836.593
834.722
833.235
832.142
831.456
831.191
831.364
831.99
833.089
834.675
836.774
839.388
842.568
846.259
850.624
855.375
861.023
866.364
872.994
874.386
1103.55
1090.85
1078.87
1067.49
1056.6
1046.11
1036.03
1026.33
1017.02
1008.1
999.543
991.367
983.565
976.135
969.077
962.391
956.077
950.136
944.568
939.375
934.556
930.114
926.051
922.369
919.072
916.168
913.664
911.566
909.884
908.626
907.801
907.421
907.498
908.047
909.085
910.632
912.709
915.338
918.543
922.343
926.773
931.836
937.598
943.989
951.227
958.932
967.79
976.194
986.304
989.422
1168.6
1155.32
1143.03
1131.58
1120.75
1110.45
1100.63
1091.28
1082.38
1073.92
1065.89
1058.3
1051.14
1044.41
1038.11
1032.25
1026.83
1021.84
1017.29
1013.18
1009.52
1006.3
1003.53
1001.22
999.368
997.986
997.086
996.677
996.773
997.385
998.526
1000.21
1002.46
1005.29
1008.72
1012.78
1017.51
1022.92
1029.06
1035.94
1043.62
1052.09
1061.46
1071.62
1082.88
1094.71
1108.08
1120.76
1135.8
1141.3
1253.72
1239.25
1226.23
1214.37
1203.38
1193.08
1183.41
1174.32
1165.8
1157.82
1150.38
1143.48
1137.12
1131.29
1125.99
1121.23
1117.01
1113.33
1110.18
1107.58
1105.53
1104.03
1103.08
1102.69
1102.87
1103.64
1105.01
1106.99
1109.61
1112.87
1116.8
1121.42
1126.75
1132.82
1139.66
1147.31
1155.8
1165.19
1175.5
1186.77
1199.07
1212.41
1226.91
1242.43
1259.44
1277.14
1296.99
1315.75
1337.93
1346.77
1366.42
1349.89
1335.48
1322.76
1311.25
1300.71
1291.02
1282.11
1273.96
1266.54
1259.84
1253.85
1248.57
1244
1240.12
1236.94
1234.45
1232.65
1231.54
1231.13
1231.42
1232.41
1234.11
1236.53
1239.69
1243.6
1248.28
1253.77
1260.07
1267.23
1275.24
1284.15
1293.99
1304.8
1316.61
1329.5
1343.51
1358.69
1375.09
1392.77
1411.82
1432.21
1454.21
1477.53
1502.94
1529.16
1558.55
1586.09
1618.82
1632.38
1518.1
1498.15
1481.37
1467.05
1454.51
1443.36
1433.44
1424.66
1416.97
1410.33
1404.71
1400.1
1396.48
1393.83
1392.12
1391.35
1391.51
1392.59
1394.59
1397.51
1401.36
1406.15
1411.88
1418.56
1426.23
1434.9
1444.62
1455.41
1467.3
1480.34
1494.52
1509.92
1526.58
1544.52
1563.83
1584.54
1606.77
1630.57
1656.05
1683.28
1712.41
1743.41
1776.67
1811.53
1849.58
1888.27
1932.02
1972.41
2021.08
2041.31
1727.01
1701.37
1680.58
1663.49
1649.13
1636.88
1626.55
1617.98
1611.1
1605.81
1602.06
1599.79
1598.94
1599.46
1601.32
1604.49
1608.93
1614.64
1621.62
1629.88
1639.41
1650.23
1662.34
1675.79
1690.59
1706.79
1724.46
1743.6
1764.3
1786.57
1810.41
1835.82
1862.89
1891.75
1922.49
1955.23
1990.07
2027.1
2066.47
2108.28
2152.78
2199.92
2250.3
2302.98
2360.16
2417.47
2483.37
2542.6
2615.86
2645.34
2024.35
1988.89
1961.17
1939.32
1921.91
1908.02
1897.32
1889.54
1884.48
1881.94
1881.77
1883.83
1887.99
1894.16
1902.24
1912.19
1923.96
1937.54
1952.93
1970.13
1989.18
2010.07
2032.81
2057.48
2084.1
2112.74
2143.52
2176.36
2211.19
2248.05
2287.07
2328.34
2371.98
2418.16
2467.03
2518.73
2573.35
2631.04
2692.02
2756.46
2824.74
2896.75
2973.49
3053.28
3139.71
3225.13
3324.86
3412.29
3524.68
3566.09
2467.34
2413.89
2373.7
2343.63
2321.53
2305.79
2295.7
2290.65
2290.12
2293.67
2300.92
2311.57
2325.38
2342.16
2361.77
2384.12
2409.14
2436.82
2467.22
2500.3
2536.16
2574.77
2616.07
2660.38
2707.48
2757.3
2809.74
2864.9
2922.86
2983.73
3047.67
3114.82
3185.38
3259.54
3337.53
3419.43
3505.3
3595.4
3690.15
3789.82
3895.01
4005.39
4122.73
4243.8
4374.75
4502.53
4654.29
4783.94
4956.92
5014.04
3170.44
3081.2
3017.6
2973.75
2945.73
2930
2924.7
2928.26
2939.4
2957.12
2980.64
3009.39
3042.93
3080.93
3123.2
3169.62
3220.07
3274.63
3333.42
3396.24
3463.49
3534.89
3610.05
3688.47
3770.39
3856.05
3945.3
4038.18
4134.87
4235.63
4340.66
4450.18
4564.41
4683.61
4808.04
4937.53
5072.05
5212.5
5359.65
5513.82
5675.98
5845.29
6024.96
6208.59
6410.36
6604.3
6842.04
7035.94
7311.9
7389.71
4387.46
4220.76
4113.12
4049.62
4020.14
4015.13
4029.34
4058.84
4100.77
4153.06
4214.21
4283.32
4359.67
4442.63
4532.11
4628
4729.86
4838.22
4953.32
5073.96
5198.96
5328.12
5461.6
5599.34
5741.42
5888.05
6038.68
6193.61
6353.53
6518.91
6690.01
6867.07
7050.32
7240.05
7436.56
7640.29
7852.26
8073.5
8304.85
8546.35
8799.52
9062.27
9341.14
9623.01
9938.61
10233.5
10610.8
10905
11348.8
11447.4
6753.4
6414.49
6239.06
6170.5
6175.01
6225.26
6307.89
6414.36
6538.98
6678.01
6828.99
6991.11
7162.96
7343.11
7533.02
7731.93
7937.65
8148.18
8362.72
8580.98
8803.07
9029.08
9258.96
9492.77
9730.62
9972.63
10219.7
10473.1
10733.7
11001.7
11277.1
11560.1
11851.1
12150.3
12458.3
12777.1
13108.9
13454.1
13813.7
14187.6
14578.9
14983.2
15414.1
15846.4
16331.9
16779
17358.1
17828.4
18499.1
18632.6
12134.9
11512.9
11364.1
11443.2
11645.1
11904.3
12197.5
12512.2
12840.6
13177.9
13522
13878.5
14240.4
14603.9
14965.2
15323.7
15681.2
16037.8
16394.2
16751.9
17112.3
17475.3
17840.7
18208.9
18580.3
18955.6
19338.7
19731.1
20133.2
20545.5
20968.3
21402.4
21848.6
22308.2
22782.7
23273.2
23780.9
24308
24857.9
25431.2
26034.3
26660.1
27332.7
28013.3
28780.3
29516.2
30420.2
31241
32260.5
32667.2
28443.4
28320.8
29041.7
29830.7
30587.5
31283.8
31947.1
32584.9
33196.8
33786.7
34357
34906.3
35446.2
35979.8
36508.6
37034.4
37560
38086.9
38618.2
39159.2
39709.9
40270.6
40842.3
41426.9
42026.4
42643.8
43280.4
43937.6
44617.5
45322.9
46056
46819.6
47616.4
48449.5
49322
50236.6
51196.3
52203.7
53263.7
54378
55556.2
56792.2
58118.1
59492.4
60998.4
62568.1
64273.1
66056.1
67963.3
69817.9
147857
149234
150553
151862
153209
154599
156032
157513
159042
160623
162257
163949
165699
167511
169389
171335
173352
175445
177616
179871
182212
184646
187177
189809
192550
195404
198379
201480
204716
208095
211624
215314
219174
223216
227450
231891
236550
241444
246589
252003
257704
263716
270058
276764
283848
291367
299312
307794
316737
326423
)
;
boundaryField
{
inlet
{
type fixedValue;
value uniform 314.4;
}
outlet
{
type zeroGradient;
}
upperWall
{
type omegaWallFunction;
value nonuniform List<scalar>
446
(
71643.3
74450.8
76458.4
77778.2
78564.2
78959.6
79076.6
79000.6
78794.9
78504.9
78162.6
77790.9
77405.4
77017.2
76633.7
76260.4
75900.7
75556.8
75229.9
74920.5
74628.3
74353.6
74095
73852
73623
73407.9
73205.2
73014.8
72835.4
72667
72508.2
72359.4
72219
72087.5
71963.3
71847.3
71796.2
71775.7
71758
71742.7
71729.9
71719.4
71711.1
71704.9
71700.9
71698.9
71698.9
71700.9
71704.8
71710.7
71718.3
71727.9
71739.2
71752.4
71767.4
71784.2
71802.7
71822.9
71844.9
71868.5
71893.8
71920.7
71949.2
71979.3
72011
72044.2
72078.8
72115
72152.6
72191.6
72232
72273.9
72317
72361.5
72407.3
72454.5
72502.9
72552.5
72603.4
72655.6
72708.9
72763.5
72819.3
72876.2
72934.4
72993.6
73054.1
73115.7
73178.4
73242.3
73307.4
73373.5
73440.8
73509.3
73578.9
73649.7
73721.6
73794.7
73868.9
73944.4
74021
74098.8
74177.8
74257.9
74339.4
74422.2
74506.2
74591.4
74677.7
74765.3
74854.1
74944.5
75036.3
75129.6
75224.2
75320.1
75417.3
75515.7
75615.3
75716.1
75818
75921.1
76025.3
76130.7
76237.1
76344.6
76453.2
76562.9
76673.6
76785.4
76898.3
77012.1
77127
77242.8
77359.7
77477.4
77596.1
77715.6
77835.9
77957
78078.9
78201.6
78324.8
78448.8
78573.3
78698.3
78823.8
78949.7
79075.9
79202.5
79329.2
79456.2
79583.2
79710.2
79837.2
79964
80090.7
80217
80342.9
80468.4
80593.3
80717.6
80841.6
80965.2
81087.9
81209.6
81330.4
81450
81568.3
81685.2
81800.4
81913.9
82025.5
82135
82242.3
82347.2
82449.7
82549.5
82646.5
82740.5
82831.5
82919.1
83003.4
83084
83160.9
83233.9
83302.7
83367.3
83427.3
83482.7
83533.1
83578.5
83618.4
83652.5
83680.5
83702.1
83717.3
83725.6
83727.1
83721.5
83708.6
83688.3
83660.6
83625.3
83582.5
83532.2
83474.6
83410
83338.9
83261.8
83179.7
83093.7
83005.5
82917
82830.7
82749.7
82677.4
82617.1
82576.8
82557.2
82557.8
82576.7
82612
82662.1
82726.2
82803.1
82892.5
82994.8
83121.6
83295.7
83472.8
83652.5
83834.6
84018
84201.3
84382.1
84560.4
84737.7
84914
85088.6
85262.2
85437.1
85613.5
85791.3
85971
86152.9
86336.9
86522.7
86710.8
86901.1
87093.4
87287.8
87484.1
87682.5
87883
88085.5
88290
88496.5
88704.9
88915.3
89127.7
89341.9
89558
89775.9
89995.7
90217.3
90440.7
90666
90893.2
91122.3
91353.5
91586.7
91822
92059.3
92298.8
92540.4
92784
93029.7
93277.4
93527.1
93778.7
94032.3
94287.7
94545
94804.3
95065.5
95328.6
95593.8
95861.2
96130.7
96402.5
96676.5
96953
97231.8
97513.1
97797
98083.3
98372.2
98665.5
98962
99261
99562.6
99866.8
100173
100482
100794
101108
101424
101742
102063
102387
102712
103041
103372
103706
104048
104396
104750
105110
105477
105851
106232
106622
107020
107429
107848
108278
108721
109177
109646
110128
110622
111128
111645
112170
112704
113242
113784
114326
114867
115404
115934
116455
116966
117464
117949
118421
118881
119326
119758
120177
120584
120982
121373
121757
122137
122516
122895
123277
123663
124057
124458
124871
125294
125731
126181
126646
127126
127621
128131
128653
129190
129763
130372
130988
131610
132240
132875
133517
134165
134818
135476
136139
136807
137481
138159
138842
139530
140222
140920
141621
142325
143034
143732
144462
145114
147857
149234
150553
151862
153209
154599
156032
157513
159042
160623
162257
163949
165699
167511
169389
171335
173352
175445
177616
179871
182212
184646
187177
189809
192550
195404
198379
201480
204716
208095
211624
215314
219174
223216
227450
231891
236550
241444
246589
252003
257704
263716
270058
276764
283848
291367
299312
307794
316737
326423
)
;
Cmu 0.09;
kappa 0.41;
E 9.8;
beta1 0.075;
}
lowerWall
{
type omegaWallFunction;
value nonuniform List<scalar>
500
(
141364
145609
147521
147898
147395
146438
145275
144055
142864
141749
140729
139811
138998
138283
137656
137108
136633
136221
135868
135564
135306
135087
134902
134745
134613
134501
134408
134328
134261
134203
134154
134111
134077
134044
134026
133999
47190.8
47085.5
46957.1
46826.8
46700.6
46570.3
46435.6
46300.2
46169.3
46049.3
45948.1
45872.8
45828.5
45808.1
45806.1
45825.3
45884.8
46120.5
45828.8
45848.1
45853.9
45843.1
45821.7
45813.1
45815.1
45823.4
45828.4
45831.2
45835.3
45837.6
45841.6
45927.8
46122.8
46370.4
46602.6
46802.8
46967.1
47102.9
47227.8
47332.9
47405.3
47450.6
47470.9
47470.3
47453.1
47423.2
47380.8
47326.4
47265.4
47326.2
47382.6
47393
47357.9
47280.2
45828.8
10090.4
10177.6
10264.3
10351.6
10440
10531.4
10629.3
10739.5
10864.5
10991.7
11117.7
11238.8
11349.3
11441.4
11524.6
11633.8
11741.3
11843.1
11937.5
12024
12103
12175.2
12241.5
12302.4
12357.9
12406.6
12449.7
12488.2
12522.4
12553
12580.1
12604.2
12625.7
12644.7
12661.7
12676.7
12690
12701.6
12711.7
12720.3
12727.5
12733.3
12737.7
12740.6
12742.1
12742.1
12740.5
12737.3
12733.1
12728
12721.6
12713.5
12703.3
12690.7
12675.3
12656.8
12634.7
12608.6
12577.9
12542.3
12501
12453.3
12398.5
12335.6
12263.6
12181.2
12087.2
11979.8
11857
11716.9
11556.8
11374.7
11168.9
10940.8
10710.7
10521.5
10426.9
10417.4
10418.4
10418.9
10420
10429.2
10452.1
10487.4
10532.9
10584.9
10640.4
10698.2
10758.9
10826.1
10908.3
10999.5
11097.4
11194.7
11283.1
11351.8
11399.5
11408.9
11384
11332.4
11261.9
11179.8
11095.4
11026.6
10971.8
10927.6
10894.5
10874.9
10878.4
10915.8
10985
11062.9
11107
11119.1
11206.4
11915.5
12630
13227
13717.8
14131.8
14489.7
14805.2
15088.1
15345.5
15582.8
15803.9
16012
16210
16400
16584
16761.5
16930
17090.3
17243.1
17389.1
17528.7
17662.4
17790.7
17913.8
18032.1
18145.9
18255.3
18360.6
18462.1
18559.8
18653.9
18744.5
18831.8
18915.9
18996.8
19074.7
19149.7
19221.8
19291
19357.5
19421.4
19482.6
19541.2
19597.3
19650.9
19702
19750.8
19797.2
19841.4
19883.2
19922.9
19960.4
19995.7
20029
20060.2
20089.4
20116.6
20141.9
20165.4
20187
20206.8
20224.9
20241.3
20256
20269.1
20280.7
20290.6
20298.8
20305.3
20310.1
20313.2
20314.8
20314.9
20313.3
20310.3
20305.8
20299.7
20292.2
20283.3
20273
20261.2
20248.1
20233.5
20217.6
20200.4
20181.8
20161.8
20140.6
20118
20094.1
20068.9
20042.3
20014.5
19985.3
19954.8
19922.9
19889.7
19855.2
19819.2
19781.9
19743.1
19702.9
19661.2
19618
19573.3
19527
19479.2
19429.8
19378.7
19325.9
19271.3
19215
19156.8
19096.7
19034.8
18971.1
18905.6
18838.2
18769.2
18698.5
18626.2
18552.6
18477.9
18402.7
18327.3
18246.8
18161.5
18071.9
17978.2
17880.8
17779.9
17675.5
17567.7
17456.7
17342.7
17226.3
17108.8
16992.7
16882.4
16812
16842
16884.8
16923.6
16959.4
16993.4
17024.5
17052.7
17078.6
17102.9
17126.1
17148.4
17169.9
17191.1
17211
17230.3
17249.2
17268
17286.8
17305.7
17324.7
17343.8
17362.8
17381.9
17400.9
17419.9
17438.8
17457.6
17476.1
17494.4
17512.4
17529.9
17546.9
17563.2
17578.9
17593.7
17607.7
17620.6
17632.4
17642.9
17652.1
17660
17666.3
17671.5
17675.6
17678.2
17678.9
17677.6
17674.1
17668.3
17660
17649.1
17635.6
17619.5
17600.7
17579.3
17555.2
17528.5
17499.2
17467.3
17432.9
17396.1
17357
17315.6
17272.1
17226.5
17179.1
17129.9
17079.1
17026.9
16973.5
16919
16863.6
16807.7
16751.3
16694.7
16638.2
16581.9
16526.3
16471.4
16417.5
16364.9
16313.8
16264.5
16216.9
16171
16126.9
16084.8
16044.6
16006.5
15970.5
15936.6
15904.7
15874.9
15846.7
15820.2
15794.7
15770.2
15745.6
15720.9
15692.5
15665
15623.2
15593
15508
15911.5
16164
16421.6
16666.6
16906.1
17146.1
17387.6
17630.3
17875.4
18123.5
18375.5
18632.1
18894.2
19162.7
19438.3
19721.9
20014.4
20316.4
20628.9
20952.8
21288.7
21637.5
22000
22377.1
22769.9
23179.5
23607.1
24053.8
24521.1
25010.3
25523
26060.9
26625.8
27219.6
27844.5
28502.6
29196.7
29929.4
30704
31523.8
32392.7
33315.2
34295
35340
36450.7
37644.1
38907.4
40294.8
41723.3
43417.3
)
;
Cmu 0.09;
kappa 0.41;
E 9.8;
beta1 0.075;
}
frontAndBack
{
type empty;
}
}
// ************************************************************************* //
| [
"brennankharris@gmail.com"
] | brennankharris@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.